@univerjs-pro/collaboration-client 0.5.0-alpha.0 → 0.5.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/cjs/locale/en-US.js +1 -1
  3. package/lib/cjs/locale/fa-IR.js +1 -1
  4. package/lib/cjs/locale/ru-RU.js +1 -1
  5. package/lib/cjs/locale/vi-VN.js +1 -1
  6. package/lib/cjs/locale/zh-CN.js +1 -1
  7. package/lib/cjs/locale/zh-TW.js +1 -1
  8. package/lib/es/index.js +1 -1
  9. package/lib/es/locale/en-US.js +1 -1
  10. package/lib/es/locale/fa-IR.js +1 -1
  11. package/lib/es/locale/ru-RU.js +1 -1
  12. package/lib/es/locale/vi-VN.js +1 -1
  13. package/lib/es/locale/zh-CN.js +1 -1
  14. package/lib/es/locale/zh-TW.js +1 -1
  15. package/lib/types/config/config.d.ts +49 -0
  16. package/lib/types/controllers/collab-cursor/__tests__/doc-collab-cursor.controller.spec.d.ts +23 -0
  17. package/lib/types/controllers/collab-cursor/__tests__/serialize-text-ranges.spec.d.ts +1 -0
  18. package/lib/types/controllers/collab-cursor/__tests__/sheet-collab-cursor.controller.spec.d.ts +1 -0
  19. package/lib/types/controllers/collab-cursor/collab-cursor.controller.d.ts +22 -0
  20. package/lib/types/controllers/collab-cursor/doc-collab-cursor-entity.d.ts +38 -0
  21. package/lib/types/controllers/collab-cursor/doc-collab-cursor-render.controller.d.ts +24 -0
  22. package/lib/types/controllers/collab-cursor/serialize-text-ranges.d.ts +3 -0
  23. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-entity.d.ts +39 -0
  24. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-render.controller.d.ts +21 -0
  25. package/lib/types/controllers/collab-status/collab-status.controller.d.ts +18 -0
  26. package/lib/types/controllers/collaboration/__tests__/collaboration.controller.spec.d.ts +4 -0
  27. package/lib/types/controllers/collaboration/__tests__/mock-text-selection-render-manager.service.d.ts +0 -0
  28. package/lib/types/controllers/collaboration/__tests__/mocks.d.ts +58 -0
  29. package/lib/types/controllers/collaboration/collaboration-entity.d.ts +91 -0
  30. package/lib/types/controllers/collaboration/collaboration-state.d.ts +303 -0
  31. package/lib/types/controllers/collaboration/collaboration.controller.d.ts +24 -0
  32. package/lib/types/controllers/collaboration/utils/changeset-utils.d.ts +18 -0
  33. package/lib/types/controllers/collaboration/utils/empty.d.ts +2 -0
  34. package/lib/types/controllers/config.schema.d.ts +33 -0
  35. package/lib/types/controllers/data-loader/__tests__/data-loader.controller.spec.d.ts +1 -0
  36. package/lib/types/controllers/data-loader/data-loader.controller.d.ts +22 -0
  37. package/lib/types/controllers/file-name/file-name.controller.d.ts +12 -0
  38. package/lib/types/controllers/telemetry.d.ts +11 -0
  39. package/lib/types/index.d.ts +35 -890
  40. package/lib/types/locale/en-US.d.ts +3 -0
  41. package/lib/types/locale/fa-IR.d.ts +3 -0
  42. package/lib/types/locale/ru-RU.d.ts +3 -0
  43. package/lib/types/locale/vi-VN.d.ts +3 -0
  44. package/lib/types/locale/zh-CN.d.ts +39 -0
  45. package/lib/types/locale/zh-TW.d.ts +3 -0
  46. package/lib/types/models/cursor.d.ts +30 -0
  47. package/lib/types/plugin.d.ts +18 -0
  48. package/lib/types/services/auth-server/auth-server.service.d.ts +10 -0
  49. package/lib/types/services/auth-server/authz-io-http.service.d.ts +30 -0
  50. package/lib/types/services/auth-server/domain-request.service.d.ts +6 -0
  51. package/lib/types/services/auth-server/util.d.ts +1 -0
  52. package/lib/types/services/collaboration-session/collaboration-session.d.ts +59 -0
  53. package/lib/types/services/collaboration-session/collaboration-session.service.d.ts +75 -0
  54. package/lib/types/services/color-assign/color-assign.service.d.ts +10 -0
  55. package/lib/types/services/comment/comment.service.d.ts +6 -0
  56. package/lib/types/services/image-remote/image-io.service.d.ts +34 -0
  57. package/lib/types/services/ime-cache-transform/doc-transform-ime-cache.service.d.ts +13 -0
  58. package/lib/types/services/local-cache/local-cache.service.d.ts +37 -0
  59. package/lib/types/services/member/member.service.d.ts +77 -0
  60. package/lib/types/services/permission/permission.service.d.ts +12 -0
  61. package/lib/types/services/range-selection/sheet-transform-selections.service.d.ts +13 -0
  62. package/lib/types/services/single-active-unit/single-active-unit.service.d.ts +39 -0
  63. package/lib/types/services/snapshot-server/snapshot-server.service.d.ts +21 -0
  64. package/lib/types/services/socket/collaboration-socket.service.d.ts +34 -0
  65. package/lib/types/services/socket/serialize.d.ts +3 -0
  66. package/lib/types/services/state-cache-transform/doc-transform-state-cache.service.d.ts +12 -0
  67. package/lib/types/services/sync-editing-collab-cursor/doc-sync-editing-collab-cursor.service.d.ts +13 -0
  68. package/lib/types/services/text-selection/doc-transform-selections.service.d.ts +8 -0
  69. package/lib/types/services/undoredo/collaborative-undoredo.service.d.ts +19 -0
  70. package/lib/types/services/url/url.service.d.ts +12 -0
  71. package/lib/types/services/url/web-url.service.d.ts +10 -0
  72. package/lib/types/views/components/CollabStatus.d.ts +10 -0
  73. package/lib/types/views/components/CollabStatus.stories.d.ts +8 -0
  74. package/lib/types/views/shapes/doc-collab-cursor.d.ts +27 -0
  75. package/lib/types/views/shapes/sheet-collab-cursor.shape.d.ts +27 -0
  76. package/lib/types/views/shapes/text-bubble.shape.d.ts +19 -0
  77. package/lib/umd/index.js +1 -1
  78. package/lib/umd/locale/en-US.js +1 -1
  79. package/lib/umd/locale/fa-IR.js +1 -1
  80. package/lib/umd/locale/ru-RU.js +1 -1
  81. package/lib/umd/locale/vi-VN.js +1 -1
  82. package/lib/umd/locale/zh-CN.js +1 -1
  83. package/lib/umd/locale/zh-TW.js +1 -1
  84. package/package.json +23 -24
package/lib/umd/index.js CHANGED
@@ -1 +1 @@
1
- function _0x5201(_0x5e7c1f,_0x268db3){const _0x4f955f=_0x4f95();return _0x5201=function(_0x5201b7,_0x31e041){_0x5201b7=_0x5201b7-0x13d;let _0x23ea87=_0x4f955f[_0x5201b7];return _0x23ea87;},_0x5201(_0x5e7c1f,_0x268db3);}(function(_0x44e55b,_0x275671){const _0x34c76d=_0x5201,_0x4b1e02=_0x44e55b();while(!![]){try{const _0x5abe83=parseInt(_0x34c76d(0x5fd))/0x1*(-parseInt(_0x34c76d(0x518))/0x2)+-parseInt(_0x34c76d(0x2cf))/0x3*(-parseInt(_0x34c76d(0x2bd))/0x4)+-parseInt(_0x34c76d(0x3ae))/0x5+-parseInt(_0x34c76d(0x5ce))/0x6*(parseInt(_0x34c76d(0x193))/0x7)+parseInt(_0x34c76d(0x487))/0x8*(-parseInt(_0x34c76d(0x56e))/0x9)+-parseInt(_0x34c76d(0x2a0))/0xa+parseInt(_0x34c76d(0x591))/0xb;if(_0x5abe83===_0x275671)break;else _0x4b1e02['push'](_0x4b1e02['shift']());}catch(_0x37f3a8){_0x4b1e02['push'](_0x4b1e02['shift']());}}}(_0x4f95,0x76944),function(_0x2907bf,_0x163025){const _0x31b328=_0x5201;typeof exports==_0x31b328(0x355)&&typeof module<'u'?_0x163025(exports,require('@univerjs/core'),require('rxjs'),require(_0x31b328(0x523)),require(_0x31b328(0x33d)),require(_0x31b328(0x2eb)),require('@univerjs/network'),require(_0x31b328(0x413)),require('@univerjs/telemetry'),require(_0x31b328(0x222)),require(_0x31b328(0x470)),require(_0x31b328(0x3b0)),require(_0x31b328(0x2ea)),require(_0x31b328(0x328)),require('@univerjs/engine-formula'),require(_0x31b328(0x2bb)),require(_0x31b328(0x169)),require(_0x31b328(0x32c))):typeof define==_0x31b328(0x172)&&define[_0x31b328(0x5e9)]?define([_0x31b328(0x29b),_0x31b328(0x248),'rxjs',_0x31b328(0x523),_0x31b328(0x33d),_0x31b328(0x2eb),_0x31b328(0x27d),'@univerjs-pro/collaboration','@univerjs/telemetry',_0x31b328(0x222),'@univerjs/sheets',_0x31b328(0x3b0),'@univerjs/docs',_0x31b328(0x328),'@univerjs/engine-formula',_0x31b328(0x2bb),_0x31b328(0x169),'@univerjs/rpc'],_0x163025):(_0x2907bf=typeof globalThis<'u'?globalThis:_0x2907bf||self,_0x163025(_0x2907bf[_0x31b328(0x4a9)]={},_0x2907bf['UniverCore'],_0x2907bf[_0x31b328(0x187)],_0x2907bf[_0x31b328(0x187)][_0x31b328(0x539)],_0x2907bf[_0x31b328(0x466)],_0x2907bf[_0x31b328(0x4d9)],_0x2907bf[_0x31b328(0x1b3)],_0x2907bf[_0x31b328(0x2a5)],_0x2907bf[_0x31b328(0x1d9)],_0x2907bf['UniverDocsUi'],_0x2907bf[_0x31b328(0x4ea)],_0x2907bf[_0x31b328(0x1af)],_0x2907bf['UniverDocs'],_0x2907bf['UniverDrawing'],_0x2907bf[_0x31b328(0x457)],_0x2907bf[_0x31b328(0x429)],_0x2907bf[_0x31b328(0x4fa)],_0x2907bf[_0x31b328(0x491)]));}(this,function(_0x24454f,_0x223914,_0x3fbd04,_0x4da2a9,_0x3fa11f,_0x405b11,_0x1ddba4,_0x9ea725,_0x1bec3e,_0x13e81e,_0x59e5a9,_0xdd060a,_0x4a2356,_0x5008e0,_0x2199c2,_0x133108,_0x220425,_0x193116){'use strict';const _0x3948cf=_0x5201;var _0x5c8b4b=Object['defineProperty'],_0x54276b=(_0x129fc8,_0x41cd30,_0x4c2844)=>_0x41cd30 in _0x129fc8?_0x5c8b4b(_0x129fc8,_0x41cd30,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4c2844}):_0x129fc8[_0x41cd30]=_0x4c2844,_0xeb55cc=(_0x4eee83,_0x2cc8f8,_0x1db2e4)=>_0x54276b(_0x4eee83,typeof _0x2cc8f8!=_0x3948cf(0x606)?_0x2cc8f8+'':_0x2cc8f8,_0x1db2e4);const _0x454abe=_0x3948cf(0x198),_0x3dc583=_0x3948cf(0x502),_0x102c98=_0x3948cf(0x46d),_0x224844=_0x3948cf(0x5ad),_0x2c6078=_0x3948cf(0x218),_0x13b7a4='ws://127.0.0.1:8000/universer-api/comb/connect',_0x224248='HEARTBEAT_INTERVAL',_0x44eea9='HEARTBEAT_TIMEOUT',_0x5b3dc5=_0x3948cf(0x5da),_0x5e1c84=_0x3948cf(0x45e),_0x38f10d=_0x3948cf(0x33b),_0x1959f8=_0x3948cf(0x1ae),_0x5d6ffa=_0x3948cf(0x325),_0x446363='/universer-api/oidc/authpage';var _0x1a04e9=(_0x226860=>(_0x226860[_0x226860[_0x3948cf(0x19c)]=0x0]=_0x3948cf(0x19c),_0x226860[_0x226860['OK']=0x1]='OK',_0x226860[_0x226860['INTERNAL_ERROR']=0x2]=_0x3948cf(0x14f),_0x226860[_0x226860[_0x3948cf(0x29e)]=0x3]=_0x3948cf(0x29e),_0x226860[_0x226860[_0x3948cf(0x446)]=0x4]=_0x3948cf(0x446),_0x226860[_0x226860[_0x3948cf(0x5f7)]=0x5]='UNAUTHENTICATED',_0x226860[_0x226860[_0x3948cf(0x482)]=0x6]=_0x3948cf(0x482),_0x226860[_0x226860[_0x3948cf(0x419)]=0x7]=_0x3948cf(0x419),_0x226860[_0x226860[_0x3948cf(0x4de)]=0x8]='TOO_MANY_REQUESTS',_0x226860[_0x226860[_0x3948cf(0x13d)]=0x9]=_0x3948cf(0x13d),_0x226860[_0x226860['CHANGESET_REVISION_CONFILICT']=0x1389]='CHANGESET_REVISION_CONFILICT',_0x226860[_0x226860[_0x3948cf(0x5a7)]=0x1771]=_0x3948cf(0x5a7),_0x226860[_0x226860[_0x3948cf(0x1e4)]=0x1772]=_0x3948cf(0x1e4),_0x226860[_0x226860['ENSURE_SNAPSHOT_EXECUTION']=0x1773]=_0x3948cf(0x568),_0x226860[_0x226860[_0x3948cf(0x1e5)]=0x1b59]=_0x3948cf(0x1e5),_0x226860[_0x226860[_0x3948cf(0x39a)]=0x1b5a]=_0x3948cf(0x39a),_0x226860[_0x226860['APPLY_REVISION_CONFILICT']=0x1b5b]=_0x3948cf(0x19d),_0x226860[_0x226860[_0x3948cf(0x5ec)]=0x1b5c]=_0x3948cf(0x5ec),_0x226860[_0x226860[_0x3948cf(0x454)]=0x1b5d]='APPLY_DUPLICATED',_0x226860[_0x226860[_0x3948cf(0x37a)]=0x1f41]='CONNECTOR_DATA_TOO_LARGE',_0x226860[_0x226860[_0x3948cf(0x455)]=0x2329]=_0x3948cf(0x455),_0x226860[_0x226860['LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED']=0x232a]='LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED',_0x226860[_0x226860[_0x3948cf(0x533)]=0x232b]=_0x3948cf(0x533),_0x226860[_0x226860[_0x3948cf(0x15d)]=0x232c]='LICENSE_EXPORT_SIZE_EXCEEDED',_0x226860[_0x226860[_0x3948cf(0x437)]=0x232d]=_0x3948cf(0x437),_0x226860[_0x226860[_0x3948cf(0x5db)]=0x2711]='YUUMI_UNABLE_LOAD_URL',_0x226860[_0x226860[_0x3948cf(0x59a)]=0x2712]=_0x3948cf(0x59a),_0x226860[_0x226860[_0x3948cf(0x51a)]=0x2713]=_0x3948cf(0x51a),_0x226860[_0x226860[_0x3948cf(0x1fe)]=0x2714]=_0x3948cf(0x1fe),_0x226860[_0x226860[_0x3948cf(0x4c8)]=-0x1]='UNRECOGNIZED',_0x226860))(_0x1a04e9||{}),_0x50449d=(_0x28e85b=>(_0x28e85b[_0x28e85b[_0x3948cf(0x598)]=0x0]=_0x3948cf(0x598),_0x28e85b[_0x28e85b[_0x3948cf(0x30c)]=0x1]=_0x3948cf(0x30c),_0x28e85b[_0x28e85b[_0x3948cf(0x18d)]=0x2]='UNIVER_SHEET',_0x28e85b[_0x28e85b[_0x3948cf(0x548)]=0x3]=_0x3948cf(0x548),_0x28e85b[_0x28e85b[_0x3948cf(0x1a6)]=0x4]=_0x3948cf(0x1a6),_0x28e85b[_0x28e85b['UNRECOGNIZED']=-0x1]=_0x3948cf(0x4c8),_0x28e85b))(_0x50449d||{}),_0x5a968c=(_0x262881=>(_0x262881[_0x262881[_0x3948cf(0x535)]=0x0]=_0x3948cf(0x535),_0x262881[_0x262881[_0x3948cf(0x1ad)]=0x1]=_0x3948cf(0x1ad),_0x262881[_0x262881['JOIN']=0x2]='JOIN',_0x262881[_0x262881[_0x3948cf(0x3bc)]=0x3]=_0x3948cf(0x3bc),_0x262881[_0x262881['INGEST']=0x4]='INGEST',_0x262881[_0x262881['HEARTBEAT']=0x5]=_0x3948cf(0x32e),_0x262881[_0x262881[_0x3948cf(0x484)]=0x6]=_0x3948cf(0x484),_0x262881[_0x262881[_0x3948cf(0x4c8)]=-0x1]='UNRECOGNIZED',_0x262881))(_0x5a968c||{}),_0x38e304=(_0x8240dc=>(_0x8240dc[_0x8240dc[_0x3948cf(0x422)]=0x0]=_0x3948cf(0x422),_0x8240dc[_0x8240dc['OK']=0x1]='OK',_0x8240dc[_0x8240dc[_0x3948cf(0x414)]=0x2]=_0x3948cf(0x414),_0x8240dc[_0x8240dc[_0x3948cf(0x4c8)]=-0x1]=_0x3948cf(0x4c8),_0x8240dc))(_0x38e304||{}),_0x7e832b=(_0x1d92a1=>(_0x1d92a1[_0x1d92a1[_0x3948cf(0x582)]=0x0]=_0x3948cf(0x582),_0x1d92a1[_0x1d92a1['HttpImport']=0x1]=_0x3948cf(0x34f),_0x1d92a1[_0x1d92a1['HttpExport']=0x2]=_0x3948cf(0x24b),_0x1d92a1[_0x1d92a1[_0x3948cf(0x209)]=0x3]=_0x3948cf(0x209),_0x1d92a1[_0x1d92a1['UnitSnapshot']=0x4]=_0x3948cf(0x3af),_0x1d92a1[_0x1d92a1[_0x3948cf(0x4c8)]=-0x1]=_0x3948cf(0x4c8),_0x1d92a1))(_0x7e832b||{});const _0x59012f=_0x3948cf(0x247),_0x2741d3={};function _0x592c55(_0x5d9812){const _0x58f19d=_0x3948cf;var _0x412046,_0xab10d9,_0x1eb070,_0x8ba5b,_0x4f5951;const _0x288d39=_0x5d9812[_0x58f19d(0x390)],_0x278ceb=JSON['parse'](_0x288d39);switch(_0x278ceb[_0x58f19d(0x27e)]){case _0x5a968c[_0x58f19d(0x32e)]:case _0x5a968c[_0x58f19d(0x1ad)]:{const _0x18ac93=_0x278ceb[_0x58f19d(0x5c4)];return{..._0x278ceb,'data':_0x18ac93,'cmd':_0x278ceb[_0x58f19d(0x27e)]};}case _0x5a968c[_0x58f19d(0x28b)]:{const _0x15ebb2=_0x278ceb[_0x58f19d(0x299)];return{..._0x278ceb,'data':_0x15ebb2,'cmd':_0x278ceb['cmd']};}case _0x5a968c[_0x58f19d(0x484)]:{const _0x43d16a=_0x278ceb[_0x58f19d(0x504)];switch(_0x43d16a[_0x58f19d(0x5ea)]){case _0x9ea725['CollaborationEvent']['PERMISSION_REJ']:return{..._0x278ceb,'data':{..._0x43d16a,'data':(_0x412046=_0x43d16a['permissionRejEvent'])==null?void 0x0:_0x412046['cs']},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725['CollaborationEvent'][_0x58f19d(0x31c)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':(_0xab10d9=_0x43d16a[_0x58f19d(0x34d)])==null?void 0x0:_0xab10d9['cs']},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x234)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':(_0x1eb070=_0x43d16a[_0x58f19d(0x19e)])==null?void 0x0:_0x1eb070['cs']},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x2db)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':(_0x8ba5b=_0x43d16a[_0x58f19d(0x5d2)])==null?void 0x0:_0x8ba5b['cs']},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725['CollaborationEvent'][_0x58f19d(0x5e5)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':(_0x4f5951=_0x43d16a[_0x58f19d(0x5c7)])==null?void 0x0:_0x4f5951['cs']},'cmd':_0x278ceb['cmd']};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x48e)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x3d9)]},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x329)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x1bc)]},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x5a3)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a['leaveEvent']},'cmd':_0x278ceb['cmd']};case _0x9ea725['CollaborationEvent'][_0x58f19d(0x1ea)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x5f1)]},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725['CollaborationEvent']['LIVESHARE_FETCH_OPERATIONS']:case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x369)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x17b)]},'cmd':_0x278ceb['cmd']};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x3ab)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a['liveShareNewHost']},'cmd':_0x278ceb['cmd']};case _0x9ea725['CollaborationEvent'][_0x58f19d(0x3b2)]:return{..._0x278ceb,'data':_0x43d16a,'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)]['COMMENT_UPDATE']:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x298)]},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)]['UPDATE_PERMISSION_OBJ']:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x501)]},'cmd':_0x278ceb[_0x58f19d(0x27e)]};case _0x9ea725[_0x58f19d(0x140)][_0x58f19d(0x59c)]:return{..._0x278ceb,'data':{..._0x43d16a,'data':_0x43d16a[_0x58f19d(0x2bf)]},'cmd':_0x278ceb[_0x58f19d(0x27e)]};default:return _0x278ceb;}}default:return _0x278ceb;}}function _0x2a8bc0(_0x5ccd34){const _0x1a7bd9=_0x3948cf;switch(_0x5ccd34['cmd']){case _0x5a968c[_0x1a7bd9(0x32e)]:case _0x5a968c[_0x1a7bd9(0x1ad)]:return JSON[_0x1a7bd9(0x2ec)]({'cmd':_0x5ccd34[_0x1a7bd9(0x27e)],'routeKey':_0x5ccd34[_0x1a7bd9(0x459)]});case _0x5a968c['INGEST']:{let _0x506de5;switch(_0x5ccd34[_0x1a7bd9(0x390)][_0x1a7bd9(0x5ea)]){case _0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x48e)]:{_0x506de5={'eventID':_0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x48e)],'updateCursorEvent':_0x5ccd34[_0x1a7bd9(0x390)][_0x1a7bd9(0x390)]};break;}case _0x9ea725[_0x1a7bd9(0x140)]['USERS_LEAVE']:{_0x506de5={'eventID':_0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x5a3)],'leaveEvent':_0x5ccd34[_0x1a7bd9(0x390)]['data']};break;}case _0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x329)]:{_0x506de5={'eventID':_0x9ea725['CollaborationEvent'][_0x1a7bd9(0x329)],'joinEvent':_0x5ccd34[_0x1a7bd9(0x390)]['data']};break;}case _0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x1ea)]:{_0x506de5={'eventID':_0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x1ea)],'liveShareNewHost':_0x5ccd34['data'][_0x1a7bd9(0x390)]};break;}case _0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x369)]:{_0x506de5={'eventID':_0x9ea725['CollaborationEvent']['LIVESHARE_OPERATION'],'liveShareOperation':_0x5ccd34[_0x1a7bd9(0x390)]['data']};break;}case _0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x3ab)]:{_0x506de5={'eventID':_0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x3ab)],'liveShareTerminate':_0x5ccd34[_0x1a7bd9(0x390)][_0x1a7bd9(0x390)]};break;}case _0x9ea725['CollaborationEvent'][_0x1a7bd9(0x1a7)]:{_0x506de5={'eventID':_0x9ea725[_0x1a7bd9(0x140)][_0x1a7bd9(0x1a7)],'liveShareRequestHost':_0x5ccd34[_0x1a7bd9(0x390)][_0x1a7bd9(0x390)]};break;}case _0x9ea725['CollaborationEvent'][_0x1a7bd9(0x2de)]:{_0x506de5={'eventID':_0x9ea725[_0x1a7bd9(0x140)]['LIVESHARE_FETCH_OPERATIONS']};break;}default:_0x506de5={'eventID':_0x5ccd34[_0x1a7bd9(0x390)]['eventID']};}return JSON[_0x1a7bd9(0x2ec)]({'cmd':_0x5ccd34[_0x1a7bd9(0x27e)],'routeKey':_0x5ccd34['routeKey'],'collaMsg':_0x506de5});}case _0x5a968c[_0x1a7bd9(0x28b)]:return JSON[_0x1a7bd9(0x2ec)]({'cmd':_0x5ccd34[_0x1a7bd9(0x27e)],'routeKey':_0x5ccd34[_0x1a7bd9(0x459)],'joinReq':_0x5ccd34[_0x1a7bd9(0x390)]});case _0x5a968c[_0x1a7bd9(0x3bc)]:return JSON[_0x1a7bd9(0x2ec)]({'cmd':_0x5ccd34[_0x1a7bd9(0x27e)],'routeKey':_0x5ccd34[_0x1a7bd9(0x459)],'leaveReq':_0x5ccd34[_0x1a7bd9(0x390)]});default:throw new Error(_0x1a7bd9(0x511));}}var _0x3d95e=Object[_0x3948cf(0x149)],_0x4757b3=Object[_0x3948cf(0x16b)],_0x108969=(_0x714797,_0x54edc0,_0x4bfec9,_0x4326af)=>{const _0x481c89=_0x3948cf;for(var _0xa0b6a1=_0x4326af>0x1?void 0x0:_0x4326af?_0x4757b3(_0x54edc0,_0x4bfec9):_0x54edc0,_0x3d5a19=_0x714797[_0x481c89(0x24c)]-0x1,_0x18ffb2;_0x3d5a19>=0x0;_0x3d5a19--)(_0x18ffb2=_0x714797[_0x3d5a19])&&(_0xa0b6a1=(_0x4326af?_0x18ffb2(_0x54edc0,_0x4bfec9,_0xa0b6a1):_0x18ffb2(_0xa0b6a1))||_0xa0b6a1);return _0x4326af&&_0xa0b6a1&&_0x3d95e(_0x54edc0,_0x4bfec9,_0xa0b6a1),_0xa0b6a1;},_0x1996f9=(_0x1b83b0,_0xdaa999)=>(_0x306c09,_0x51d453)=>_0xdaa999(_0x306c09,_0x51d453,_0x1b83b0);const _0x1a1032=_0x223914['createIdentifier'](_0x3948cf(0x2d0));function _0x4ea8a7(_0x32ede6,_0x5b0aa7,_0x2fa890){const _0x482656=_0x3948cf;return _0x32ede6+'/'+_0x5b0aa7+'/unit/'+_0x2fa890+_0x482656(0x1d8);}_0x24454f[_0x3948cf(0x5d7)]=class extends _0x223914[_0x3948cf(0x2aa)]{constructor(_0x5597c5,_0x6e6af1,_0x5bc6df,_0x5980f9,_0x161f8f){const _0x203f61=_0x3948cf;super(),this[_0x203f61(0x372)]=_0x5597c5,this[_0x203f61(0x423)]=_0x6e6af1,this[_0x203f61(0x164)]=_0x5bc6df,this['_logService']=_0x5980f9,this['_snapshotServerService']=_0x161f8f;}[_0x3948cf(0x145)](_0x3c6d0a){const _0xe3b783=_0x3948cf,_0x41676e=this[_0xe3b783(0x423)]['createSocket'](_0x3c6d0a);if(!_0x41676e)throw new Error(_0xe3b783(0x1f8));const _0x131c3b=new _0x223914['DisposableCollection'](),_0x22d37c=new _0x3fbd04[(_0xe3b783(0x1f4))]();_0x131c3b[_0xe3b783(0x240)](_0x41676e[_0xe3b783(0x4e3)][_0xe3b783(0x577)](_0x1119f8=>_0x22d37c['next'](_0x1119f8))),_0x131c3b[_0xe3b783(0x240)](_0x223914['toDisposable'](()=>_0x22d37c[_0xe3b783(0x14b)]()));const _0x1e3a4a=new _0x3fbd04[(_0xe3b783(0x1f4))]();_0x131c3b['add'](_0x41676e[_0xe3b783(0x602)][_0xe3b783(0x577)](_0x312994=>_0x1e3a4a['next'](_0x312994))),_0x131c3b[_0xe3b783(0x240)](_0x223914[_0xe3b783(0x238)](()=>_0x1e3a4a[_0xe3b783(0x14b)]()));const _0x157ea9=new _0x3fbd04[(_0xe3b783(0x1f4))]();_0x131c3b[_0xe3b783(0x240)](_0x41676e['message$'][_0xe3b783(0x577)](_0xdd778c=>{const _0x5744fc=_0xe3b783,_0x1efcea=_0x592c55(_0xdd778c);_0x157ea9[_0x5744fc(0x490)](_0x1efcea);})),_0x131c3b['add'](_0x223914[_0xe3b783(0x238)](()=>_0x157ea9['complete']()));let _0x51f4f0;const _0x17d2a5=()=>{const _0x142471=_0xe3b783;_0x1e3a4a[_0x142471(0x490)](new Event('connection\x20error')),_0x22d37c[_0x142471(0x490)](new CloseEvent(_0x142471(0x54a))),_0x51f4f0[_0x142471(0x1ef)]();};return _0x51f4f0={'memberID':'','close$':_0x22d37c['asObservable'](),'error$':_0x1e3a4a[_0xe3b783(0x29a)](),'open$':_0x41676e[_0xe3b783(0x30f)],'message$':_0x157ea9[_0xe3b783(0x29a)](),'send':_0x5602f7=>{const _0x5da22b=_0xe3b783;if(_0x5602f7[_0x5da22b(0x27e)]===_0x5a968c[_0x5da22b(0x508)]){if(_0x5602f7[_0x5da22b(0x390)]['eventID']===_0x9ea725[_0x5da22b(0x140)][_0x5da22b(0x506)]){this[_0x5da22b(0x556)](_0x51f4f0,_0x5602f7[_0x5da22b(0x390)])[_0x5da22b(0x400)](_0x2800f5=>{const _0x5f1128=_0x5da22b;this[_0x5f1128(0x3fb)][_0x5f1128(0x41b)](_0x2800f5),_0x17d2a5();});return;}if(_0x5602f7[_0x5da22b(0x390)][_0x5da22b(0x5ea)]===_0x9ea725[_0x5da22b(0x140)][_0x5da22b(0x17e)]){const _0x47fcbb=_0x5602f7[_0x5da22b(0x390)];this['_fetchMissChangesets'](_0x47fcbb)[_0x5da22b(0x1ed)](_0x38425c=>{const _0x6a63ea=_0x5da22b;_0x157ea9['next']({'cmd':_0x5a968c[_0x6a63ea(0x484)],'code':_0x38e304['OK'],'routeKey':_0x47fcbb['data'][_0x6a63ea(0x397)],'routeType':'','data':{'eventID':_0x9ea725[_0x6a63ea(0x140)]['PSEUDO_FETCH_MISSING_RESULT'],'data':{'changesets':_0x38425c}}});})[_0x5da22b(0x400)](_0x3f027e=>{const _0x43181c=_0x5da22b;this[_0x43181c(0x3fb)]['error'](_0x3f027e),_0x17d2a5();});return;}}_0x41676e[_0x5da22b(0x28f)](_0x2a8bc0(_0x5602f7));},'close':()=>{const _0x2c59ba=_0xe3b783;_0x41676e[_0x2c59ba(0x1ef)](),_0x131c3b[_0x2c59ba(0x287)]();}},_0x51f4f0;}async[_0x3948cf(0x556)](_0x5e1105,_0x13163){const _0x2e127b=_0x3948cf;var _0x572e48,_0x495bc4;const {unitType:_0x358a3a,unitID:_0x15ced2,changeset:_0x58f99f}=_0x13163[_0x2e127b(0x390)],_0x30ef4a={'unitID':_0x15ced2,'memberID':_0x5e1105[_0x2e127b(0x3f3)],'type':_0x358a3a,'changeset':_0x9ea725[_0x2e127b(0x543)](_0x58f99f)},_0x23be62=this[_0x2e127b(0x164)][_0x2e127b(0x52b)](_0x38f10d),_0x75a091=this[_0x2e127b(0x164)][_0x2e127b(0x52b)](_0x59012f),_0x4106ed=_0x4ea8a7((_0x495bc4=(_0x572e48=_0x75a091==null?void 0x0:_0x75a091['collabSubmitChangesetUrl'])!=null?_0x572e48:_0x23be62)!=null?_0x495bc4:_0x1959f8,_0x358a3a,_0x15ced2);try{await this['_http'][_0x2e127b(0x39f)](_0x4106ed,{'body':_0x30ef4a});}catch(_0x5e1a82){throw this[_0x2e127b(0x3fb)][_0x2e127b(0x41b)](_0x2e127b(0x49d),_0x2e127b(0x17f)),_0x5e1a82;}}async[_0x3948cf(0x495)](_0x347d84){const _0x39471a=_0x3948cf,{unitID:_0x5dee8e,from:_0x350509,to:_0x58f4c0,unitType:_0x27948b}=_0x347d84[_0x39471a(0x390)];return(await this[_0x39471a(0x51e)][_0x39471a(0x5bf)]({'metadata':void 0x0},{'unitID':_0x5dee8e,'type':_0x27948b,'from':_0x350509,'to':_0x58f4c0}))['changesets'];}},_0x24454f[_0x3948cf(0x5d7)]=_0x108969([_0x1996f9(0x0,_0x223914[_0x3948cf(0x25f)](_0x1ddba4[_0x3948cf(0x171)])),_0x1996f9(0x1,_0x223914[_0x3948cf(0x25f)](_0x1ddba4[_0x3948cf(0x393)])),_0x1996f9(0x2,_0x223914['IConfigService']),_0x1996f9(0x3,_0x223914[_0x3948cf(0x5b0)]),_0x1996f9(0x4,_0x9ea725[_0x3948cf(0x58f)])],_0x24454f[_0x3948cf(0x5d7)]);const _0x118e81=_0x3948cf(0x47d);function _0x1a08d9(_0x5ea086){const _0x1c69f4=_0x3948cf;return JSON[_0x1c69f4(0x2ec)](_0x5ea086)['length'];}class _0x257017{constructor(){const _0x296d54=_0x3948cf;_0xeb55cc(this,'_commentUpdate$',new _0x3fbd04[(_0x296d54(0x1f4))]()),_0xeb55cc(this,_0x296d54(0x4f6),this[_0x296d54(0x5c9)][_0x296d54(0x29a)]());}[_0x3948cf(0x314)](_0x50b253){const _0x163d78=_0x3948cf;this[_0x163d78(0x5c9)][_0x163d78(0x490)](_0x50b253);}}var _0x2c9b70=Object[_0x3948cf(0x149)],_0x5b4c1b=Object['getOwnPropertyDescriptor'],_0x70672b=(_0x18057a,_0x206a56,_0x4ac5db,_0x3ba212)=>{const _0x49ff2f=_0x3948cf;for(var _0x35dc50=_0x3ba212>0x1?void 0x0:_0x3ba212?_0x5b4c1b(_0x206a56,_0x4ac5db):_0x206a56,_0x2744ca=_0x18057a[_0x49ff2f(0x24c)]-0x1,_0x4e8105;_0x2744ca>=0x0;_0x2744ca--)(_0x4e8105=_0x18057a[_0x2744ca])&&(_0x35dc50=(_0x3ba212?_0x4e8105(_0x206a56,_0x4ac5db,_0x35dc50):_0x4e8105(_0x35dc50))||_0x35dc50);return _0x3ba212&&_0x35dc50&&_0x2c9b70(_0x206a56,_0x4ac5db,_0x35dc50),_0x35dc50;},_0x5cc0d4=(_0xbcf946,_0x1211bf)=>(_0x4a9a9d,_0x55d020)=>_0x1211bf(_0x4a9a9d,_0x55d020,_0xbcf946);_0x24454f['MemberService']=class extends _0x223914[_0x3948cf(0x2aa)]{constructor(_0x34da1a,_0x42705e){const _0x3af82c=_0x3948cf;super(),_0xeb55cc(this,'_roomMembers',new Map()),(this['_univerInstanceService']=_0x34da1a,this[_0x3af82c(0x224)]=_0x42705e,this[_0x3af82c(0x345)](_0x223914[_0x3af82c(0x238)](_0x3fbd04[_0x3af82c(0x54c)](this['_univerInstanceService']['getTypeOfUnitDisposed$'](_0x223914['UniverInstanceType']['UNIVER_SHEET'])[_0x3af82c(0x3c1)](_0x4da2a9[_0x3af82c(0x26b)](_0x388d4f=>_0x388d4f[_0x3af82c(0x38c)]())),this[_0x3af82c(0x4ba)]['getTypeOfUnitDisposed$'](_0x223914[_0x3af82c(0x53b)]['UNIVER_DOC'])[_0x3af82c(0x3c1)](_0x4da2a9[_0x3af82c(0x26b)](_0x5b2c71=>_0x5b2c71[_0x3af82c(0x38c)]())),this[_0x3af82c(0x4ba)][_0x3af82c(0x5ae)](_0x223914[_0x3af82c(0x53b)][_0x3af82c(0x548)])['pipe'](_0x4da2a9[_0x3af82c(0x26b)](_0x1bbd4e=>_0x1bbd4e[_0x3af82c(0x38c)]())))[_0x3af82c(0x577)](_0x7031cc=>this['_removeRoom'](_0x7031cc)))));}[_0x3948cf(0x3a7)](_0x4c682a){const _0x5ada0b=_0x3948cf;this[_0x5ada0b(0x224)][_0x5ada0b(0x3a7)](_0x4c682a);}['getCurrentUser'](){const _0x510700=_0x3948cf;return this[_0x510700(0x224)][_0x510700(0x1d5)]();}['updateMember'](_0x5eaf30,_0x5d91d3){const _0x2be521=_0x3948cf;let _0x257ada=this[_0x2be521(0x5e4)][_0x2be521(0x55a)](_0x5eaf30);_0x257ada||(_0x257ada=new _0x29cbaf(),this[_0x2be521(0x5e4)][_0x2be521(0x1f2)](_0x5eaf30,_0x257ada)),_0x257ada[_0x2be521(0x497)](_0x5d91d3);}[_0x3948cf(0x2fb)](_0x55e41e,_0x2d94c0){const _0x1b74b8=_0x3948cf,_0x1ccb6e=this[_0x1b74b8(0x5e4)][_0x1b74b8(0x55a)](_0x55e41e);_0x1ccb6e&&_0x1ccb6e[_0x1b74b8(0x2fb)](_0x2d94c0);}[_0x3948cf(0x14a)](_0x9dac21){const _0x16d775=_0x3948cf;return this[_0x16d775(0x5e4)][_0x16d775(0x55a)](_0x9dac21);}[_0x3948cf(0x1d0)](_0x59d893,_0x108c75){const _0x325180=_0x3948cf,_0x4dcd85=this['_roomMembers'][_0x325180(0x55a)](_0x59d893);if(_0x4dcd85)return _0x4dcd85[_0x325180(0x1d0)](_0x108c75);}['_removeRoom'](_0x50ea74){const _0x20ac44=_0x3948cf,_0x5a0727=this[_0x20ac44(0x5e4)][_0x20ac44(0x55a)](_0x50ea74);_0x5a0727&&(_0x5a0727[_0x20ac44(0x287)](),this['_roomMembers'][_0x20ac44(0x45a)](_0x50ea74));}[_0x3948cf(0x287)](){const _0xbbadda=_0x3948cf;this[_0xbbadda(0x5e4)][_0xbbadda(0x24f)](_0x22e66a=>_0x22e66a[_0xbbadda(0x287)]()),this[_0xbbadda(0x5e4)][_0xbbadda(0x2da)]();}},_0x24454f['MemberService']=_0x70672b([_0x5cc0d4(0x0,_0x223914[_0x3948cf(0x2dd)]),_0x5cc0d4(0x1,_0x223914['Inject'](_0x223914[_0x3948cf(0x445)]))],_0x24454f['MemberService']);class _0x29cbaf extends _0x223914[_0x3948cf(0x2aa)]{constructor(){const _0x1a967d=_0x3948cf;super(...arguments),_0xeb55cc(this,_0x1a967d(0x3bb),new Map());}[_0x3948cf(0x287)](){const _0x46f9bc=_0x3948cf;this['_members'][_0x46f9bc(0x2da)]();}[_0x3948cf(0x497)](_0x25632e){const _0x22748f=_0x3948cf;this[_0x22748f(0x3bb)][_0x22748f(0x1f2)](_0x25632e[_0x22748f(0x3f3)],_0x25632e);}[_0x3948cf(0x2fb)](_0xd6b865){const _0x2ab369=_0x3948cf;this[_0x2ab369(0x3bb)][_0x2ab369(0x45a)](_0xd6b865);}[_0x3948cf(0x1d0)](_0x3206cc){const _0x489d55=_0x3948cf;return this['_members'][_0x489d55(0x55a)](_0x3206cc);}[_0x3948cf(0x385)](){const _0x3096f8=_0x3948cf;return Array[_0x3096f8(0x275)](this['_members']['values']());}}var _0x33823e=Object['defineProperty'],_0x6ed4ad=Object[_0x3948cf(0x16b)],_0x237a59=(_0x24409c,_0x114a3f,_0x1c81ed,_0x466a34)=>{const _0x5b6134=_0x3948cf;for(var _0x2c3469=_0x466a34>0x1?void 0x0:_0x466a34?_0x6ed4ad(_0x114a3f,_0x1c81ed):_0x114a3f,_0x31c64c=_0x24409c[_0x5b6134(0x24c)]-0x1,_0xefbb8e;_0x31c64c>=0x0;_0x31c64c--)(_0xefbb8e=_0x24409c[_0x31c64c])&&(_0x2c3469=(_0x466a34?_0xefbb8e(_0x114a3f,_0x1c81ed,_0x2c3469):_0xefbb8e(_0x2c3469))||_0x2c3469);return _0x466a34&&_0x2c3469&&_0x33823e(_0x114a3f,_0x1c81ed,_0x2c3469),_0x2c3469;},_0x5671e0=(_0xa5e4a6,_0x44a0e9)=>(_0x1f241d,_0x3808bf)=>_0x44a0e9(_0x1f241d,_0x3808bf,_0xa5e4a6),_0x1efc5b=(_0x309613=>(_0x309613[_0x309613['IDLE']=0x0]='IDLE',_0x309613[_0x309613[_0x3948cf(0x5cb)]=0x1]=_0x3948cf(0x5cb),_0x309613[_0x309613['OFFLINE']=0x2]=_0x3948cf(0x239),_0x309613[_0x309613[_0x3948cf(0x3c6)]=0x3]=_0x3948cf(0x3c6),_0x309613))(_0x1efc5b||{});_0x24454f[_0x3948cf(0x436)]=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0x151338,_0x597168,_0x358aeb,_0x229c40,_0x237c99,_0x5b1c4a,_0x258b6f,_0x20a0f3,_0x4c6836,_0x21fafc){const _0x518047=_0x3948cf;super(),_0xeb55cc(this,'_sessionStatus$',new _0x3fbd04[(_0x518047(0x2e0))](0x0)),_0xeb55cc(this,'sessionStatus$',this['_sessionStatus$']['asObservable']()),_0xeb55cc(this,'_event$',new _0x3fbd04[(_0x518047(0x1f4))]()),_0xeb55cc(this,'event$',this['_event$']['asObservable']()),_0xeb55cc(this,_0x518047(0x52c)),_0xeb55cc(this,'_socketMessageSubscription'),_0xeb55cc(this,'_collaborationTimeoutTimer'),_0xeb55cc(this,_0x518047(0x1e7),!0x1),_0xeb55cc(this,_0x518047(0x2ad),null),(this[_0x518047(0x3fd)]=_0x151338,this[_0x518047(0x3fb)]=_0x358aeb,this[_0x518047(0x2c1)]=_0x229c40,this[_0x518047(0x14c)]=_0x237c99,this['_configService']=_0x5b1c4a,this[_0x518047(0x147)]=_0x258b6f,this['_memberService']=_0x20a0f3,this[_0x518047(0x560)]=_0x4c6836,this['_telemetryService']=_0x21fafc,this[_0x518047(0x1e7)]=!!this[_0x518047(0x41a)],_0x597168[_0x518047(0x3c1)](_0x3fbd04[_0x518047(0x233)](this[_0x518047(0x1a1)]))[_0x518047(0x577)](_0x5c54a8=>{const _0x3a8c31=_0x518047;var _0x295265;typeof _0x5c54a8>'u'||(this[_0x3a8c31(0x52c)]=_0x5c54a8,_0x5c54a8?(this[_0x3a8c31(0x17c)](_0x5c54a8),this[_0x3a8c31(0x407)]=_0x5c54a8[_0x3a8c31(0x1e8)]['subscribe'](_0x32f5ce=>{const _0x5452fe=_0x3a8c31;_0x32f5ce[_0x5452fe(0x459)]===this[_0x5452fe(0x3fd)]&&this['_onCombEvent'](_0x32f5ce);})):(this[_0x3a8c31(0x2d5)](),this[_0x3a8c31(0x33c)][_0x3a8c31(0x490)](0x2),(_0x295265=this['_socketMessageSubscription'])==null||_0x295265[_0x3a8c31(0x4b1)](),this['_socketMessageSubscription']=null));}),this[_0x518047(0x345)](this[_0x518047(0x2c1)][_0x518047(0x1d7)](()=>{const _0x3f0e00=_0x518047;var _0x3ac4fa;(_0x3ac4fa=this['_socket'])==null||_0x3ac4fa[_0x3f0e00(0x28f)]({'cmd':_0x5a968c[_0x3f0e00(0x3bc)],'data':{'roomID':this[_0x3f0e00(0x3fd)]}});})));}get[_0x3948cf(0x60f)](){const _0xae812d=_0x3948cf;return this[_0xae812d(0x33c)][_0xae812d(0x4ff)]();}[_0x3948cf(0x1d1)](){const _0x2e10cd=_0x3948cf;var _0x28565f,_0x4fe642;return(_0x4fe642=(_0x28565f=this['_socket'])==null?void 0x0:_0x28565f[_0x2e10cd(0x3f3)])!=null?_0x4fe642:null;}[_0x3948cf(0x287)](){const _0x1d9500=_0x3948cf;super[_0x1d9500(0x287)](),this[_0x1d9500(0x1a1)][_0x1d9500(0x490)](),this[_0x1d9500(0x1a1)][_0x1d9500(0x14b)]();}[_0x3948cf(0x1ef)](){const _0x337bdf=_0x3948cf;var _0x1ca4cc,_0x54ecfa;this[_0x337bdf(0x2d5)](),(_0x1ca4cc=this[_0x337bdf(0x52c)])==null||_0x1ca4cc[_0x337bdf(0x28f)]({'cmd':_0x5a968c[_0x337bdf(0x3bc)],'data':{'roomID':this['_unitID']}}),(_0x54ecfa=this['_socket'])==null||_0x54ecfa[_0x337bdf(0x1ef)](),this[_0x337bdf(0x44b)]['complete'](),this[_0x337bdf(0x33c)][_0x337bdf(0x14b)](),this[_0x337bdf(0x287)]();}[_0x3948cf(0x2cc)](_0x3b32ea){const _0x2eb2c3=_0x3948cf;_0x3b32ea[_0x2eb2c3(0x27e)]===_0x5a968c['JOIN']?this['_onJoinRoomEvent'](_0x3b32ea):_0x3b32ea[_0x2eb2c3(0x27e)]===_0x5a968c[_0x2eb2c3(0x484)]&&this[_0x2eb2c3(0x580)](_0x3b32ea);}['_joinRoom'](_0xfa5410){const _0xbd51a=_0x3948cf;this[_0xbd51a(0x33c)][_0xbd51a(0x490)](0x1),_0xfa5410[_0xbd51a(0x28f)]({'cmd':_0x5a968c[_0xbd51a(0x28b)],'routeKey':this[_0xbd51a(0x3fd)],'routeType':'','data':{'rooms':[{'roomID':this[_0xbd51a(0x3fd)]}]}});}[_0x3948cf(0x2ee)](_0x524e93){const _0xde538c=_0x3948cf;var _0x5a04a8;if(_0x524e93['code']===_0x38e304['FAIL']){this[_0xde538c(0x14c)][_0xde538c(0x46e)]({'type':_0x3fa11f['MessageType'][_0xde538c(0x143)],'content':this[_0xde538c(0x147)]['t'](_0xde538c(0x1a8))}),this[_0xde538c(0x33c)][_0xde538c(0x490)](0x2);return;}this[_0xde538c(0x33c)]['next'](0x3);const _0x47744b=(_0x5a04a8=_0x524e93[_0xde538c(0x390)]['roomInfos'][this['_unitID']])==null?void 0x0:_0x5a04a8[_0xde538c(0x2b0)];_0x47744b&&_0x47744b[_0xde538c(0x24f)](_0x5a992d=>this[_0xde538c(0x438)][_0xde538c(0x497)](this['_unitID'],_0x5a992d));}[_0x3948cf(0x580)](_0x13065e){const _0x4fab37=_0x3948cf;try{const _0x42efcb=_0x13065e[_0x4fab37(0x390)];switch(_0x42efcb[_0x4fab37(0x5ea)]){case _0x9ea725[_0x4fab37(0x140)]['USERS_ENTER']:this['_onUserJoin'](_0x42efcb),this[_0x4fab37(0x44b)]['next'](_0x42efcb);break;case _0x9ea725['CollaborationEvent'][_0x4fab37(0x5a3)]:this[_0x4fab37(0x60b)](_0x42efcb),this[_0x4fab37(0x44b)][_0x4fab37(0x490)](_0x42efcb);break;case _0x9ea725[_0x4fab37(0x140)][_0x4fab37(0x31c)]:case _0x9ea725['CollaborationEvent'][_0x4fab37(0x5e5)]:this['_stopTelemetryCollaborationNewChangeset'](),this[_0x4fab37(0x5e6)](),this[_0x4fab37(0x44b)]['next'](_0x42efcb);break;case _0x9ea725['CollaborationEvent']['MSG_FOR_ERROR']:this[_0x4fab37(0x3fb)][_0x4fab37(0x41b)](_0x4fab37(0x50c)+JSON['stringify'](_0x42efcb)),this['_event$'][_0x4fab37(0x490)](_0x42efcb);break;case _0x9ea725[_0x4fab37(0x140)][_0x4fab37(0x242)]:this['_commentService'][_0x4fab37(0x314)](_0x42efcb[_0x4fab37(0x390)]),this['_event$']['next'](_0x42efcb);break;default:this[_0x4fab37(0x44b)]['next'](_0x42efcb);}}catch(_0x1e6093){this['_logService'][_0x4fab37(0x41b)](_0x1e6093,_0x13065e);}}[_0x3948cf(0x1bf)](_0x46b5b1){const _0x56bb24=_0x3948cf;this[_0x56bb24(0x438)][_0x56bb24(0x497)](this['_unitID'],_0x46b5b1[_0x56bb24(0x390)]);}[_0x3948cf(0x60b)](_0x2a7f44){const _0x3f2914=_0x3948cf;this['_memberService']['removeMember'](this[_0x3f2914(0x3fd)],_0x2a7f44['data'][_0x3f2914(0x3f3)]);}async[_0x3948cf(0x28f)](_0x408a9f,_0x2cdf7a){const _0x4fd923=_0x3948cf;if(this[_0x4fd923(0x60f)]!==0x3||!this[_0x4fd923(0x52c)])throw new Error(_0x4fd923(0x532));try{_0x408a9f[_0x4fd923(0x5ea)]===_0x9ea725['CollaborationEvent'][_0x4fd923(0x506)]&&(this['_scheduleCollaborationTimeoutTimer'](),this[_0x4fd923(0x37e)](_0x408a9f)),this['_socket']['send']({'cmd':_0x5a968c[_0x4fd923(0x508)],'routeKey':_0x2cdf7a,'routeType':'','data':_0x408a9f});}catch(_0x28eae4){this['_logService'][_0x4fd923(0x41b)](_0x28eae4);}}[_0x3948cf(0x176)](){const _0x2f4b0a=_0x3948cf;var _0x3878bf;this['_collaborationTimeoutTimer']=window[_0x2f4b0a(0x3da)](()=>{const _0xd7c76d=_0x2f4b0a;this[_0xd7c76d(0x2be)]=null,this[_0xd7c76d(0x14c)]['show']({'type':_0x3fa11f[_0xd7c76d(0x21a)][_0xd7c76d(0x3c3)],'content':this[_0xd7c76d(0x147)]['t']('session.collaboration-timeout')});},(_0x3878bf=this[_0x2f4b0a(0x164)][_0x2f4b0a(0x52b)](_0x44eea9))!=null?_0x3878bf:0x4e20);}[_0x3948cf(0x5e6)](){const _0x29ddb4=_0x3948cf;this[_0x29ddb4(0x2be)]&&(clearTimeout(this[_0x29ddb4(0x2be)]),this['_collaborationTimeoutTimer']=null);}[_0x3948cf(0x37e)](_0xfa12bf){const _0x31b7bb=_0x3948cf;if(!this['_shouldReportTelemetry'])return;const {data:_0x48b046}=_0xfa12bf,{unitID:_0x37fa69,changeset:_0x377cc1}=_0x48b046,{mutations:_0x4d7010,type:_0x4072ed}=_0x377cc1;this['_telemetryInfo']={'unitId':_0x37fa69,'type':_0x4072ed,'startTime':performance[_0x31b7bb(0x189)](),'stopTime':0x0,'duration':0x0,'size':_0x1a08d9(_0x4d7010)};}['_stopTelemetryCollaborationNewChangeset'](){const _0x5ecec5=_0x3948cf;if(this[_0x5ecec5(0x1e7)]){if(!this[_0x5ecec5(0x2ad)]){this[_0x5ecec5(0x3fb)][_0x5ecec5(0x41b)](_0x5ecec5(0x49d),_0x5ecec5(0x479));return;}this['_telemetryInfo'][_0x5ecec5(0x2f3)]=performance[_0x5ecec5(0x189)](),this['_telemetryInfo']['duration']=this[_0x5ecec5(0x2ad)][_0x5ecec5(0x2f3)]-this[_0x5ecec5(0x2ad)][_0x5ecec5(0x31f)],this['_telemetryService'][_0x5ecec5(0x200)](_0x118e81,this[_0x5ecec5(0x2ad)]),this[_0x5ecec5(0x2ad)]=null;}}[_0x3948cf(0x2d5)](){const _0x1b39b1=_0x3948cf;this[_0x1b39b1(0x2ad)]=null;}},_0x24454f[_0x3948cf(0x436)]=_0x237a59([_0x5671e0(0x2,_0x223914['ILogService']),_0x5671e0(0x3,_0x405b11[_0x3948cf(0x3ea)]),_0x5671e0(0x4,_0x405b11[_0x3948cf(0x1cc)]),_0x5671e0(0x5,_0x223914[_0x3948cf(0x1ff)]),_0x5671e0(0x6,_0x223914['Inject'](_0x223914[_0x3948cf(0x570)])),_0x5671e0(0x7,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x48b)])),_0x5671e0(0x8,_0x223914[_0x3948cf(0x25f)](_0x257017)),_0x5671e0(0x9,_0x223914[_0x3948cf(0x2b9)](_0x1bec3e[_0x3948cf(0x420)]))],_0x24454f[_0x3948cf(0x436)]);var _0x5965b2=Object[_0x3948cf(0x149)],_0x25db7f=Object[_0x3948cf(0x16b)],_0x120013=(_0xee7178,_0xc686c8,_0x111234,_0x3bcb26)=>{for(var _0x31309f=_0x3bcb26>0x1?void 0x0:_0x3bcb26?_0x25db7f(_0xc686c8,_0x111234):_0xc686c8,_0x14ade7=_0xee7178['length']-0x1,_0x35d22f;_0x14ade7>=0x0;_0x14ade7--)(_0x35d22f=_0xee7178[_0x14ade7])&&(_0x31309f=(_0x3bcb26?_0x35d22f(_0xc686c8,_0x111234,_0x31309f):_0x35d22f(_0x31309f))||_0x31309f);return _0x3bcb26&&_0x31309f&&_0x5965b2(_0xc686c8,_0x111234,_0x31309f),_0x31309f;},_0x33de4d=(_0x1aacee,_0x1b2b6e)=>(_0x31c474,_0x10dd5f)=>_0x1b2b6e(_0x31c474,_0x10dd5f,_0x1aacee);_0x24454f[_0x3948cf(0x228)]=class extends _0x223914[_0x3948cf(0x2aa)]{constructor(_0x30c58f,_0xb75ba0,_0x39d051,_0x8186ce,_0x3e01a7,_0x5a1b43){const _0x185179=_0x3948cf;super(),_0xeb55cc(this,'_socket$',new _0x3fbd04[(_0x185179(0x2e0))](void 0x0)),_0xeb55cc(this,_0x185179(0x500),this[_0x185179(0x3a1)]['asObservable']()),_0xeb55cc(this,_0x185179(0x2c5),null),_0xeb55cc(this,_0x185179(0x430),new Map()),_0xeb55cc(this,_0x185179(0x19b),new _0x3fbd04[(_0x185179(0x2e0))](_0x1efc5b[_0x185179(0x401)])),_0xeb55cc(this,_0x185179(0x55f),this['_status$'][_0x185179(0x29a)]()),_0xeb55cc(this,_0x185179(0x1d6),!0x1),_0xeb55cc(this,'_retryConnectingTimer'),_0xeb55cc(this,_0x185179(0x2ce),0x0),_0xeb55cc(this,_0x185179(0x232)),_0xeb55cc(this,_0x185179(0x49c)),(this['_injector']=_0x30c58f,this['_localeService']=_0xb75ba0,this['_messageService']=_0x39d051,this[_0x185179(0x3fb)]=_0x8186ce,this[_0x185179(0x164)]=_0x3e01a7,this[_0x185179(0x498)]=_0x5a1b43,this['_initEventListeners']());}get[_0x3948cf(0x52c)](){return this['_socket$']['getValue']();}[_0x3948cf(0x46c)](){const _0xbd5c73=_0x3948cf;this[_0xbd5c73(0x4ed)](),this['_listenToOnlineEvent']();}['dispose'](){const _0x40ee94=_0x3948cf;super[_0x40ee94(0x287)](),this[_0x40ee94(0x430)]['forEach'](_0x15a511=>_0x15a511[_0x40ee94(0x287)]()),this['_sessions'][_0x40ee94(0x2da)](),this[_0x40ee94(0x19b)][_0x40ee94(0x14b)]();}async['requireSession'](_0x16ceef){const _0x45737c=_0x3948cf;if(this[_0x45737c(0x430)][_0x45737c(0x58e)](_0x16ceef))return this['_sessions'][_0x45737c(0x55a)](_0x16ceef);this['_tryEnsureSocket']();const _0x4bdd62=this[_0x45737c(0x488)]['createInstance'](_0x24454f[_0x45737c(0x436)],_0x16ceef,this[_0x45737c(0x3a1)][_0x45737c(0x29a)]());return this['_sessions']['set'](_0x16ceef,_0x4bdd62),_0x4bdd62;}[_0x3948cf(0x34a)](_0x3b49f3){const _0x3918ef=_0x3948cf;var _0x1554c9;const _0x40b0f2=this[_0x3918ef(0x430)][_0x3918ef(0x55a)](_0x3b49f3);_0x40b0f2&&(this['_sessions'][_0x3918ef(0x45a)](_0x3b49f3),_0x40b0f2['close']()),this['_sessions'][_0x3918ef(0x416)]||(_0x1554c9=this['_socket'])==null||_0x1554c9[_0x3918ef(0x1ef)]();}[_0x3948cf(0x1c3)](){const _0x401b3e=_0x3948cf;this[_0x401b3e(0x2ce)]=0x0,this[_0x401b3e(0x435)]!=null&&(clearTimeout(this[_0x401b3e(0x435)]),this[_0x401b3e(0x435)]=null),this[_0x401b3e(0x1b8)]();}[_0x3948cf(0x32b)](){const _0x3e3ba5=_0x3948cf;var _0x5f438e,_0x9042f4;const _0xea733=this[_0x3e3ba5(0x164)][_0x3e3ba5(0x52b)](_0x2c6078),_0x5862f6=this[_0x3e3ba5(0x164)][_0x3e3ba5(0x52b)](_0x59012f),_0x352e0c=(_0x9042f4=(_0x5f438e=_0x5862f6==null?void 0x0:_0x5862f6[_0x3e3ba5(0x468)])!=null?_0x5f438e:_0xea733)!=null?_0x9042f4:_0x13b7a4,_0x19bc69=this[_0x3e3ba5(0x498)]['createSocket'](_0x352e0c);return this[_0x3e3ba5(0x2c5)]=_0x19bc69,_0x19bc69;}[_0x3948cf(0x2e6)](){const _0x178ebf=_0x3948cf;var _0x224f83,_0x493247;try{const _0x3ca241=(_0x493247=(_0x224f83=this[_0x178ebf(0x52c)])!=null?_0x224f83:this[_0x178ebf(0x2c5)])!=null?_0x493247:this['_createSocket']();if(_0x3ca241){const _0x5ecfaf=_0x3ca241[_0x178ebf(0x28f)];_0x3ca241[_0x178ebf(0x28f)]=_0x2135e2=>(this['_rescheduleHeartbeat'](),_0x5ecfaf[_0x178ebf(0x476)](_0x3ca241,[_0x2135e2])),_0x3ca241[_0x178ebf(0x1e8)]['subscribe'](_0x4f095d=>this[_0x178ebf(0x569)](_0x3ca241,_0x4f095d)),_0x3ca241['error$'][_0x178ebf(0x3c1)](_0x4da2a9[_0x178ebf(0x2b5)](0x1))[_0x178ebf(0x577)](_0x40775b=>this[_0x178ebf(0x3fb)][_0x178ebf(0x41b)]('[CollaborationSessionService]:\x20socket\x20error',_0x40775b)),_0x3ca241[_0x178ebf(0x30f)][_0x178ebf(0x3c1)](_0x4da2a9[_0x178ebf(0x2b5)](0x1))['subscribe'](()=>{this['_onConnectionOpen'](_0x3ca241);}),_0x3ca241[_0x178ebf(0x4e3)][_0x178ebf(0x3c1)](_0x4da2a9[_0x178ebf(0x2b5)](0x1))[_0x178ebf(0x577)](_0x3e7c50=>{const _0xc2d40d=_0x178ebf;this['_logService'][_0xc2d40d(0x346)](_0xc2d40d(0x3ee),_0xc2d40d(0x415),_0x3e7c50),this[_0xc2d40d(0x5a4)]();});}}catch(_0x524318){this[_0x178ebf(0x3fb)][_0x178ebf(0x41b)](_0x524318),this['_onConnectionFailed']();}}[_0x3948cf(0x35e)](_0x5c1a23){const _0xa5f63e=_0x3948cf;this[_0xa5f63e(0x3fb)][_0xa5f63e(0x346)](_0xa5f63e(0x3ee),_0xa5f63e(0x221)),_0x5c1a23[_0xa5f63e(0x28f)]({'cmd':_0x5a968c['HELLO']}),this[_0xa5f63e(0x3f7)]();}[_0x3948cf(0x4ed)](){const _0x31ab00=_0x3948cf;window['addEventListener'](_0x31ab00(0x492),()=>this['_onOffline']());}['_onOffline'](){const _0x16da0d=_0x3948cf;this['_socketReady']=!0x1,this[_0x16da0d(0x2c5)]=null,this[_0x16da0d(0x19b)][_0x16da0d(0x490)](_0x1efc5b[_0x16da0d(0x239)]),this['_socket$'][_0x16da0d(0x490)](null),this[_0x16da0d(0x353)](),this[_0x16da0d(0x266)]();}[_0x3948cf(0x5a4)](){const _0x50a86a=_0x3948cf;var _0x312839;this['_onOffline'](),this['_retryCount']<((_0x312839=this[_0x50a86a(0x164)][_0x50a86a(0x52b)](_0x5b3dc5))!=null?_0x312839:0x3)?(this[_0x50a86a(0x14c)]['show']({'key':_0x50a86a(0x279),'type':_0x3fa11f[_0x50a86a(0x21a)]['Warning'],'content':this['_localeService']['t']('session.will-retry')}),this['_tryReconnect']()):this[_0x50a86a(0x14c)][_0x50a86a(0x46e)]({'key':'collaboration-session-retry','type':_0x3fa11f[_0x50a86a(0x21a)][_0x50a86a(0x3c3)],'content':this[_0x50a86a(0x147)]['t'](_0x50a86a(0x578))});}[_0x3948cf(0x25e)](){const _0x156c08=_0x3948cf,_0x47032f=()=>{const _0x1587c5=_0x5201;this[_0x1587c5(0x52c)]||this['reconnect']();},_0x156d5b=()=>{const _0x436660=_0x5201;this[_0x436660(0x52c)]||document[_0x436660(0x36e)]==='hidden'||this[_0x436660(0x1c3)]();};window[_0x156c08(0x1d2)]('online',_0x47032f),document[_0x156c08(0x1d2)](_0x156c08(0x5b5),_0x156d5b);}[_0x3948cf(0x1b8)](){const _0x1be8fe=_0x3948cf;var _0x43722f;const _0x266525=this['_retryCount'],_0xbe89ba=this[_0x1be8fe(0x164)][_0x1be8fe(0x52b)](_0x59012f),_0x48d5a3=_0x266525===0x0?0x0:((_0x43722f=_0xbe89ba==null?void 0x0:_0xbe89ba['retryConnectingInterval'])!=null?_0x43722f:0x4e20)*0x2**_0x266525;this[_0x1be8fe(0x435)]=window['setTimeout'](()=>{const _0x36113a=_0x1be8fe;clearTimeout(this['_retryConnectingTimer']),this[_0x36113a(0x435)]=null,this[_0x36113a(0x2e6)]();},_0x48d5a3),this['_retryCount']+=0x1;}[_0x3948cf(0x569)](_0x298a4a,_0x1f3070){const _0x572179=_0x3948cf,{cmd:_0x1420f0}=_0x1f3070;_0x1420f0===_0x5a968c[_0x572179(0x1ad)]&&!this[_0x572179(0x1d6)]&&(_0x298a4a[_0x572179(0x3f3)]=_0x1f3070[_0x572179(0x390)][_0x572179(0x3f3)],this[_0x572179(0x3a1)]['next'](_0x298a4a),this[_0x572179(0x19b)]['next'](_0x1efc5b[_0x572179(0x3c6)]),this[_0x572179(0x1d6)]=!0x0,this[_0x572179(0x2c5)]=null),_0x1420f0===_0x5a968c[_0x572179(0x32e)]&&this[_0x572179(0x353)](),this[_0x572179(0x3f7)]();}['_rescheduleHeartbeat'](){const _0x3eb351=_0x3948cf;var _0x5ba040;this[_0x3eb351(0x266)](),this[_0x3eb351(0x232)]=window[_0x3eb351(0x3da)](()=>this['_sendHeartbeat'](),(_0x5ba040=this[_0x3eb351(0x164)][_0x3eb351(0x52b)](_0x224248))!=null?_0x5ba040:0x7530);}['_sendHeartbeat'](){const _0x1f0459=_0x3948cf;this[_0x1f0459(0x52c)][_0x1f0459(0x28f)]({'cmd':_0x5a968c[_0x1f0459(0x32e)]}),this[_0x1f0459(0x20d)]();}['_waitForHeartbeatResponse'](){const _0x5b9fae=_0x3948cf;var _0x2ad273;this[_0x5b9fae(0x49c)]=window['setTimeout'](()=>this[_0x5b9fae(0x5a4)](),(_0x2ad273=this[_0x5b9fae(0x164)][_0x5b9fae(0x52b)](_0x44eea9))!=null?_0x2ad273:0x4e20);}[_0x3948cf(0x266)](){const _0x5b2b11=_0x3948cf;this[_0x5b2b11(0x232)]!=null&&(clearTimeout(this['_sendHeartbeatTimer']),this[_0x5b2b11(0x232)]=null);}[_0x3948cf(0x353)](){const _0x4274e2=_0x3948cf;this[_0x4274e2(0x49c)]!=null&&(clearTimeout(this[_0x4274e2(0x49c)]),this[_0x4274e2(0x49c)]=null);}},_0x24454f[_0x3948cf(0x228)]=_0x120013([_0x33de4d(0x0,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x33de4d(0x1,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x570)])),_0x33de4d(0x2,_0x405b11['IMessageService']),_0x33de4d(0x3,_0x223914[_0x3948cf(0x5b0)]),_0x33de4d(0x4,_0x223914[_0x3948cf(0x1ff)]),_0x33de4d(0x5,_0x1a1032)],_0x24454f[_0x3948cf(0x228)]);const _0x55bcfc=[];for(let _0x193332=0x0;_0x193332<0x100;++_0x193332)_0x55bcfc[_0x3948cf(0x4ef)]((_0x193332+0x100)[_0x3948cf(0x4ec)](0x10)['slice'](0x1));function _0x1b08e6(_0x328fcd,_0x270e0f=0x0){const _0x3d8913=_0x3948cf;return(_0x55bcfc[_0x328fcd[_0x270e0f+0x0]]+_0x55bcfc[_0x328fcd[_0x270e0f+0x1]]+_0x55bcfc[_0x328fcd[_0x270e0f+0x2]]+_0x55bcfc[_0x328fcd[_0x270e0f+0x3]]+'-'+_0x55bcfc[_0x328fcd[_0x270e0f+0x4]]+_0x55bcfc[_0x328fcd[_0x270e0f+0x5]]+'-'+_0x55bcfc[_0x328fcd[_0x270e0f+0x6]]+_0x55bcfc[_0x328fcd[_0x270e0f+0x7]]+'-'+_0x55bcfc[_0x328fcd[_0x270e0f+0x8]]+_0x55bcfc[_0x328fcd[_0x270e0f+0x9]]+'-'+_0x55bcfc[_0x328fcd[_0x270e0f+0xa]]+_0x55bcfc[_0x328fcd[_0x270e0f+0xb]]+_0x55bcfc[_0x328fcd[_0x270e0f+0xc]]+_0x55bcfc[_0x328fcd[_0x270e0f+0xd]]+_0x55bcfc[_0x328fcd[_0x270e0f+0xe]]+_0x55bcfc[_0x328fcd[_0x270e0f+0xf]])[_0x3d8913(0x151)]();}let _0x42f61d;const _0x2f1e00=new Uint8Array(0x10);function _0x5689d8(){const _0x4fbbca=_0x3948cf;if(!_0x42f61d){if(typeof crypto>'u'||!crypto[_0x4fbbca(0x60a)])throw new Error('crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported');_0x42f61d=crypto[_0x4fbbca(0x60a)][_0x4fbbca(0x27f)](crypto);}return _0x42f61d(_0x2f1e00);}const _0x307e43={'randomUUID':typeof crypto<'u'&&crypto['randomUUID']&&crypto[_0x3948cf(0x3d7)][_0x3948cf(0x27f)](crypto)};function _0x1a222b(_0x4a07df,_0xa0bc4a,_0x29b29b){const _0x18b955=_0x3948cf;if(_0x307e43[_0x18b955(0x3d7)]&&!_0xa0bc4a&&!_0x4a07df)return _0x307e43[_0x18b955(0x3d7)]();_0x4a07df=_0x4a07df||{};const _0x25f7b5=_0x4a07df[_0x18b955(0x589)]||(_0x4a07df[_0x18b955(0x2ae)]||_0x5689d8)();return _0x25f7b5[0x6]=_0x25f7b5[0x6]&0xf|0x40,_0x25f7b5[0x8]=_0x25f7b5[0x8]&0x3f|0x80,_0x1b08e6(_0x25f7b5);}var _0x3b8f16=Object[_0x3948cf(0x149)],_0x5a07fc=Object[_0x3948cf(0x16b)],_0x5e37e5=(_0x6356dd,_0x1af826,_0x355d8f,_0x2063fc)=>{const _0x4b7a33=_0x3948cf;for(var _0x2a2144=_0x2063fc>0x1?void 0x0:_0x2063fc?_0x5a07fc(_0x1af826,_0x355d8f):_0x1af826,_0x172c89=_0x6356dd[_0x4b7a33(0x24c)]-0x1,_0x5dc876;_0x172c89>=0x0;_0x172c89--)(_0x5dc876=_0x6356dd[_0x172c89])&&(_0x2a2144=(_0x2063fc?_0x5dc876(_0x1af826,_0x355d8f,_0x2a2144):_0x5dc876(_0x2a2144))||_0x2a2144);return _0x2063fc&&_0x2a2144&&_0x3b8f16(_0x1af826,_0x355d8f,_0x2a2144),_0x2a2144;},_0x102dce=(_0x443ad3,_0x5918dd)=>(_0x50c462,_0x3709cd)=>_0x5918dd(_0x50c462,_0x3709cd,_0x443ad3);let _0x2e6349=class{constructor(_0x5edbbf,_0x4212c9,_0x55370b){const _0x280551=_0x3948cf;this[_0x280551(0x488)]=_0x5edbbf,this['_transformService']=_0x4212c9,this[_0x280551(0x4c2)]=_0x55370b;}[_0x3948cf(0x549)](_0x494dfd){const _0x5cce35=_0x3948cf;this[_0x5cce35(0x3f2)](_0x494dfd),this[_0x5cce35(0x536)](_0x494dfd);}[_0x3948cf(0x5b4)](_0x104444){const _0xc9f43b=_0x3948cf,{unitID:_0x4c621e}=_0x104444,_0x59d89c=this[_0xc9f43b(0x4c2)][_0xc9f43b(0x214)](_0x4c621e)[_0xc9f43b(0x15e)](_0x13e81e[_0xc9f43b(0x5ba)]),{redoCache:_0x566edf}=_0x59d89c['getUndoRedoMutationParamsCache']();if(_0x566edf['length']===0x0)return _0x104444;let _0xee2204=_0x223914[_0xc9f43b(0x5af)]['deepClone'](_0x104444['mutations'][0x0]);for(let _0x24121f=0x0;_0x24121f<_0x566edf[_0xc9f43b(0x24c)];_0x24121f++){const _0x1d1717={'id':'doc.mutation.rich-text-editing','params':{..._0x566edf[_0x24121f]}},_0x4f145b=this[_0xc9f43b(0x42b)]['transformMutation'](_0xee2204,_0x1d1717,!0x1);if(_0x9ea725[_0xc9f43b(0x375)](_0x4f145b))throw _0x4f145b[_0xc9f43b(0x41b)];_0xee2204=_0x4f145b['m1Prime'];}return{..._0x223914[_0xc9f43b(0x5af)]['deepClone'](_0x104444),'mutations':[_0xee2204]};}[_0x3948cf(0x3f2)](_0x28fe4c){const _0x59ce83=_0x3948cf,{unitID:_0x4e4904}=_0x28fe4c,_0x15de8b=this[_0x59ce83(0x4c2)]['getRenderById'](_0x4e4904)[_0x59ce83(0x15e)](_0x13e81e[_0x59ce83(0x5ba)]),{undoCache:_0x3f6916,redoCache:_0x47ad78}=_0x15de8b[_0x59ce83(0x1b7)]();if(_0x3f6916['length']===0x0||_0x47ad78[_0x59ce83(0x24c)]===0x0)return;const _0x45ee1c=[],_0x114027=[];let _0xd770ec=_0x223914[_0x59ce83(0x5af)]['deepClone'](_0x28fe4c[_0x59ce83(0x53f)][0x0]),_0x371d09=_0x223914[_0x59ce83(0x5af)]['deepClone'](_0x28fe4c[_0x59ce83(0x53f)][0x0]);for(let _0xc3468a=_0x3f6916[_0x59ce83(0x24c)]-0x1;_0xc3468a>=0x0;_0xc3468a--){const _0x5da3be={'id':_0x59ce83(0x3d8),'params':{..._0x3f6916[_0xc3468a]}},_0x32a9cf={'id':'doc.mutation.rich-text-editing','params':{..._0x47ad78[_0xc3468a]}},_0x21a4b4=this[_0x59ce83(0x42b)][_0x59ce83(0x212)](_0xd770ec,_0x5da3be,!0x1),_0x32b514=this['_transformService']['transformMutation'](_0x371d09,_0x32a9cf,!0x1);if(_0x9ea725[_0x59ce83(0x375)](_0x21a4b4))throw _0x21a4b4['error'];if(_0x9ea725['isTransformMutationFailure'](_0x32b514))throw _0x32b514[_0x59ce83(0x41b)];_0x45ee1c[_0x59ce83(0x5ef)](_0x21a4b4[_0x59ce83(0x521)]['params']),_0x114027['unshift'](_0x32b514[_0x59ce83(0x521)][_0x59ce83(0x54d)]),_0xd770ec=_0x21a4b4[_0x59ce83(0x5d5)],_0x371d09=_0x32b514[_0x59ce83(0x5d5)];}_0x15de8b[_0x59ce83(0x21b)]({'undoCache':_0x45ee1c,'redoCache':_0x114027});}[_0x3948cf(0x536)](_0x42ee1b){const _0x182f37=_0x3948cf,{unitID:_0x5a6471}=_0x42ee1b,_0x2947b9=this['_renderManagerService'][_0x182f37(0x214)](_0x5a6471)[_0x182f37(0x15e)](_0x13e81e[_0x182f37(0x5ba)]),_0x15e4e5=_0x2947b9[_0x182f37(0x3f8)]();if(_0x15e4e5==null)return;const _0x3f2328=[{'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x42ee1b[_0x182f37(0x397)],'actions':null,'textRanges':[_0x15e4e5]}}],_0x8e0d3b=this['_transformService']['transformMutationsWithChangeset'](_0x42ee1b,_0x3f2328);if(!_0x9ea725['isTransformMutationsWithChangesetSuccess'](_0x8e0d3b))throw _0x8e0d3b[_0x182f37(0x41b)];const _0x516222=_0x8e0d3b['m2Prime'][0x0]['params'][_0x182f37(0x27b)];Array['isArray'](_0x516222)&&_0x516222['length']&&_0x2947b9[_0x182f37(0x252)](_0x516222[0x0]);}};_0x2e6349=_0x5e37e5([_0x102dce(0x0,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x102dce(0x1,_0x9ea725['ITransformService']),_0x102dce(0x2,_0xdd060a[_0x3948cf(0x349)])],_0x2e6349);var _0x323112=Object[_0x3948cf(0x149)],_0x1d0c5b=Object[_0x3948cf(0x16b)],_0x5f8f2d=(_0x12229d,_0x548a97,_0x288882,_0x4b95b3)=>{const _0x246c03=_0x3948cf;for(var _0x5d41cb=_0x4b95b3>0x1?void 0x0:_0x4b95b3?_0x1d0c5b(_0x548a97,_0x288882):_0x548a97,_0x5e26c7=_0x12229d[_0x246c03(0x24c)]-0x1,_0xf962f8;_0x5e26c7>=0x0;_0x5e26c7--)(_0xf962f8=_0x12229d[_0x5e26c7])&&(_0x5d41cb=(_0x4b95b3?_0xf962f8(_0x548a97,_0x288882,_0x5d41cb):_0xf962f8(_0x5d41cb))||_0x5d41cb);return _0x4b95b3&&_0x5d41cb&&_0x323112(_0x548a97,_0x288882,_0x5d41cb),_0x5d41cb;},_0x2c6869=(_0x375a36,_0x165d5a)=>(_0x894592,_0x4903b3)=>_0x165d5a(_0x894592,_0x4903b3,_0x375a36);_0x24454f[_0x3948cf(0x30e)]=class extends _0x223914[_0x3948cf(0x2aa)]{constructor(_0x11cfc9,_0x19410d,_0x5184a0,_0x4b546c,_0x548ec0){const _0x73071a=_0x3948cf;super(),_0xeb55cc(this,'_cachedData',new Map()),_0xeb55cc(this,_0x73071a(0x303),new Map()),_0xeb55cc(this,'_disabled',!0x1),(this['_configService']=_0x11cfc9,this[_0x73071a(0x3d5)]=_0x19410d,this[_0x73071a(0x2c1)]=_0x5184a0,this[_0x73071a(0x147)]=_0x4b546c,this[_0x73071a(0x14d)]=_0x548ec0,this['_setupBeforeClosingHandler']());}[_0x3948cf(0x1cb)](){const _0x11ec06=_0x3948cf;this[_0x11ec06(0x4f2)]=!0x0;}[_0x3948cf(0x40d)](){this['_disabled']=!0x1;}[_0x3948cf(0x287)](){const _0x1d25e5=_0x3948cf;this['exhaustSavingTask']()[_0x1d25e5(0x1ed)](()=>super[_0x1d25e5(0x287)]());}async[_0x3948cf(0x546)](_0x474258){const _0x5e234b=_0x3948cf;return this[_0x5e234b(0x4f2)]?null:this[_0x5e234b(0x3d5)][_0x5e234b(0x338)](_0x5d1ba4(_0x474258));}async['saveOfflineData'](_0x5ad52b,_0x4188e2){const _0x35d23d=_0x3948cf;return!!this[_0x35d23d(0x3d5)][_0x35d23d(0x1c8)](_0x5ad52b,_0x4188e2);}[_0x3948cf(0x223)](_0x2cfaa7,_0x544516,_0x41b1a7,_0x5fd6db){const _0x4d0d42=_0x3948cf,_0x3c89d2=this['_revisionService'][_0x4d0d42(0x356)](_0x2cfaa7);this[_0x4d0d42(0x449)][_0x4d0d42(0x1f2)](_0x2cfaa7,{'unitID':_0x2cfaa7,'type':_0x544516,'awaitingChangeset':_0x41b1a7,'mutations':_0x5fd6db,'rev':_0x3c89d2}),this[_0x4d0d42(0x303)][_0x4d0d42(0x58e)](_0x2cfaa7)||this[_0x4d0d42(0x45c)](_0x2cfaa7);}[_0x3948cf(0x45c)](_0x163afc){const _0x59f062=_0x3948cf,_0x4e5cea=this['_getSaveTimeout']();_0x4e5cea===0x0?this[_0x59f062(0x29f)](_0x163afc):this[_0x59f062(0x303)][_0x59f062(0x1f2)](_0x163afc,setTimeout(()=>this[_0x59f062(0x29f)](_0x163afc),_0x4e5cea));}[_0x3948cf(0x4a7)](){const _0x4fed7d=_0x3948cf;var _0x490404;return(_0x490404=this[_0x4fed7d(0x164)][_0x4fed7d(0x52b)](_0x5e1c84))!=null?_0x490404:0x3e8;}[_0x3948cf(0x29f)](_0xdf8b8a){const _0x1e0e31=_0x3948cf,_0xaf2da6=this[_0x1e0e31(0x303)][_0x1e0e31(0x55a)](_0xdf8b8a);return _0xaf2da6!==void 0x0&&window[_0x1e0e31(0x186)](_0xaf2da6),this[_0x1e0e31(0x3d5)]['setItem'](_0x5d1ba4(_0xdf8b8a),this['_cachedData']['get'](_0xdf8b8a))[_0x1e0e31(0x1ed)](()=>this[_0x1e0e31(0x303)][_0x1e0e31(0x45a)](_0xdf8b8a));}async[_0x3948cf(0x201)](){const _0x1e9b3a=_0x3948cf,_0x106790=[];this['_saveTaskMap'][_0x1e9b3a(0x24f)]((_0x28c280,_0x27fb56)=>{const _0x7adb2d=_0x1e9b3a;window[_0x7adb2d(0x186)](_0x28c280),_0x106790['push'](this[_0x7adb2d(0x29f)](_0x27fb56)[_0x7adb2d(0x1ed)](()=>{const _0x4cf14a=_0x7adb2d;this[_0x4cf14a(0x303)][_0x4cf14a(0x45a)](_0x27fb56);}));}),await Promise[_0x1e9b3a(0x1f9)](_0x106790);}[_0x3948cf(0x33e)](){const _0x493103=_0x3948cf;this[_0x493103(0x345)](this[_0x493103(0x2c1)][_0x493103(0x274)](()=>{const _0x56a8ee=_0x493103;if(this[_0x56a8ee(0x303)]['size'])return this[_0x56a8ee(0x147)]['t']('collaboration-client.offline-data-not-saved');}));}},_0x24454f[_0x3948cf(0x30e)]=_0x5f8f2d([_0x2c6869(0x0,_0x223914['IConfigService']),_0x2c6869(0x1,_0x223914[_0x3948cf(0x1a3)]),_0x2c6869(0x2,_0x405b11[_0x3948cf(0x3ea)]),_0x2c6869(0x3,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x570)])),_0x2c6869(0x4,_0x223914[_0x3948cf(0x25f)](_0x9ea725['RevisionService']))],_0x24454f['LocalCacheService']);function _0x5d1ba4(_0x19f964){return'unit-cache-'+_0x19f964;}var _0x19ec2c=Object[_0x3948cf(0x149)],_0x14a1a3=Object['getOwnPropertyDescriptor'],_0x4bc135=(_0x56b7eb,_0xac656c,_0x5c0f5b,_0x4bef58)=>{const _0x58431d=_0x3948cf;for(var _0x504b2=_0x4bef58>0x1?void 0x0:_0x4bef58?_0x14a1a3(_0xac656c,_0x5c0f5b):_0xac656c,_0x22c509=_0x56b7eb[_0x58431d(0x24c)]-0x1,_0x53ea7c;_0x22c509>=0x0;_0x22c509--)(_0x53ea7c=_0x56b7eb[_0x22c509])&&(_0x504b2=(_0x4bef58?_0x53ea7c(_0xac656c,_0x5c0f5b,_0x504b2):_0x53ea7c(_0x504b2))||_0x504b2);return _0x4bef58&&_0x504b2&&_0x19ec2c(_0xac656c,_0x5c0f5b,_0x504b2),_0x504b2;},_0x499435=(_0x5c16cd,_0x1a8f32)=>(_0x155313,_0x2afbd7)=>_0x1a8f32(_0x155313,_0x2afbd7,_0x5c16cd);function _0x455370(_0x15d4f6){const _0x2aa89d=_0x3948cf,{unitID:_0x33a612,mutations:_0x2a193f}=_0x15d4f6;return{'unitId':_0x33a612,'subUnitId':_0x2a193f[0x0][_0x2aa89d(0x54d)][_0x2aa89d(0x1e6)]};}let _0x42d852=class{constructor(_0x536205,_0x410c8c,_0x55973c){const _0x576abc=_0x3948cf;this[_0x576abc(0x488)]=_0x536205,this['_transformService']=_0x410c8c,this[_0x576abc(0x294)]=_0x55973c;}[_0x3948cf(0x2e1)](_0x427528){const _0x93dc67=_0x3948cf;var _0x7cc070,_0x1e578b,_0x40fc69,_0x1d453a;const _0x4b38ba=this[_0x93dc67(0x488)][_0x93dc67(0x55a)](_0x59e5a9[_0x93dc67(0x30b)]),{unitId:_0x34be46,subUnitId:_0x431259}=_0x455370(_0x427528),_0x33899b=_0x4b38ba[_0x93dc67(0x453)](_0x34be46)['getCurrentSelections'](),_0x487ff8=(_0x1e578b=(_0x7cc070=this[_0x93dc67(0x294)][_0x93dc67(0x2cd)](_0x34be46))==null?void 0x0:_0x7cc070[_0x93dc67(0x3d2)]())==null?void 0x0:_0x1e578b[_0x93dc67(0x1b4)]();if(_0x33899b[_0x93dc67(0x24c)]===0x0||!_0x34be46||!_0x431259)return;const _0x36d7bf=[{'id':_0x59e5a9[_0x93dc67(0x25d)]['id'],'params':{'unitId':_0x34be46,'subUnitId':_0x487ff8,'selections':_0x223914['Tools'][_0x93dc67(0x566)](_0x33899b)}}],_0x2eabee=this[_0x93dc67(0x42b)][_0x93dc67(0x57d)](_0x427528,_0x36d7bf);if(!_0x9ea725[_0x93dc67(0x333)](_0x2eabee))throw _0x2eabee[_0x93dc67(0x41b)];const _0x420d99=(_0x1d453a=(_0x40fc69=_0x2eabee[_0x93dc67(0x521)][0x0])==null?void 0x0:_0x40fc69[_0x93dc67(0x54d)])==null?void 0x0:_0x1d453a[_0x93dc67(0x35b)];if(Array[_0x93dc67(0x462)](_0x420d99)&&_0x420d99[_0x93dc67(0x24c)]){if(_0x420d99['length']===_0x36d7bf[0x0]['params'][_0x93dc67(0x35b)][_0x93dc67(0x24c)]&&_0x420d99[_0x93dc67(0x374)]((_0x17c254,_0x480c3b)=>_0x223914['Rectangle'][_0x93dc67(0x360)](_0x17c254[_0x93dc67(0x3c0)],_0x36d7bf[0x0][_0x93dc67(0x54d)][_0x93dc67(0x35b)][_0x480c3b][_0x93dc67(0x3c0)])))return;this[_0x93dc67(0x488)][_0x93dc67(0x55a)](_0x223914[_0x93dc67(0x38e)])[_0x93dc67(0x3d0)](_0x59e5a9[_0x93dc67(0x25d)]['id'],{'unitId':_0x34be46,'subUnitId':_0x487ff8,'selections':_0x420d99});}}};_0x42d852=_0x4bc135([_0x499435(0x0,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x499435(0x1,_0x9ea725[_0x3948cf(0x1b6)]),_0x499435(0x2,_0x223914[_0x3948cf(0x2dd)])],_0x42d852);const _0x1b2f34=_0x223914['createIdentifier'](_0x3948cf(0x4e0));var _0x4ef9dc=(_0x32a7d7=>(_0x32a7d7[_0x32a7d7[_0x3948cf(0x1ec)]=0x0]='NO_OTHER_CLIENTS_EDITING',_0x32a7d7[_0x32a7d7[_0x3948cf(0x284)]=0x1]=_0x3948cf(0x284),_0x32a7d7))(_0x4ef9dc||{});const _0x289613=0x7530,_0x6fe964=_0x3948cf(0x259);class _0x4b8d7b extends _0x223914['Disposable']{constructor(){const _0x54d2c6=_0x3948cf;super(),_0xeb55cc(this,_0x54d2c6(0x2b3),_0x223914[_0x54d2c6(0x5af)]['generateRandomId']()),_0xeb55cc(this,_0x54d2c6(0x5a9),new Set()),_0xeb55cc(this,_0x54d2c6(0x405),new Map()),_0xeb55cc(this,_0x54d2c6(0x208),null),_0xeb55cc(this,_0x54d2c6(0x39e),new Map()),_0xeb55cc(this,_0x54d2c6(0x4b9),new Map()),this[_0x54d2c6(0x528)]();}[_0x3948cf(0x287)](){const _0x325944=_0x3948cf;super[_0x325944(0x287)](),this[_0x325944(0x39e)][_0x325944(0x24f)]((_0x507bbc,_0x4048f2)=>this['_removeClearOtherTimer'](_0x4048f2)),this[_0x325944(0x208)]&&window[_0x325944(0x3a2)](this['_heartbeatTimer']);}[_0x3948cf(0x373)](_0x2baa35){const _0x48be72=_0x3948cf;return this[_0x48be72(0x473)](_0x2baa35)[_0x48be72(0x3c1)](_0x3fbd04[_0x48be72(0x2c3)]());}[_0x3948cf(0x590)](_0xd11184){const _0x8108c=_0x3948cf;this['_selfUnitIDs']['size']===0x0&&this[_0x8108c(0x25c)](),this[_0x8108c(0x5a9)]['add'](_0xd11184),this[_0x8108c(0x5c3)]({'type':0x0,'memberID':this[_0x8108c(0x2b3)],'unitIDs':[_0xd11184],'isForwarded':!0x1});}['disposeUnit'](_0x1845b0){const _0x48ce99=_0x3948cf;this[_0x48ce99(0x5a9)][_0x48ce99(0x45a)](_0x1845b0),this['_selfUnitIDs'][_0x48ce99(0x416)]===0x0&&this[_0x48ce99(0x208)]&&window['clearInterval'](this[_0x48ce99(0x208)]);}['_init'](){const _0x207c93=_0x3948cf;this['disposeWithMe'](_0x223914[_0x207c93(0x238)](_0x3fbd04['fromEvent'](window,_0x207c93(0x178))['subscribe'](_0x48f3b5=>{const _0x1e5509=_0x207c93;if(_0x48f3b5[_0x1e5509(0x206)]!==_0x6fe964||!_0x48f3b5['newValue'])return;const _0x2b09fe=JSON[_0x1e5509(0x517)](_0x48f3b5['newValue']);this['_handleEvent'](_0x2b09fe);}))),window[_0x207c93(0x1d2)](_0x207c93(0x183),()=>this[_0x207c93(0x5c3)]({'type':0x1,'memberID':this['_id'],'unitIDs':Array[_0x207c93(0x275)](this[_0x207c93(0x5a9)])}));}[_0x3948cf(0x5de)](_0x533512){const _0x297606=_0x3948cf;switch(_0x533512[_0x297606(0x181)]){case 0x0:this[_0x297606(0x5b1)](_0x533512);break;case 0x1:this[_0x297606(0x29d)](_0x533512);break;case 0x2:this['_handleHeartbeatEvent'](_0x533512);break;}}[_0x3948cf(0x5b1)](_0x43bebe){const _0x53d3f4=_0x3948cf,{unitIDs:_0x4d8b57,memberID:_0x3e9f03,isForwarded:_0x4f83c4}=_0x43bebe;_0x4d8b57[_0x53d3f4(0x24f)](_0x153041=>{const _0x376af0=_0x53d3f4;if(!_0x4f83c4&&this[_0x376af0(0x405)]['has'](_0x153041)&&this[_0x376af0(0x473)](_0x153041)['next'](0x1),!this[_0x376af0(0x405)][_0x376af0(0x58e)](_0x153041)||!this['_unitOnClients'][_0x376af0(0x55a)](_0x153041)['has'](_0x3e9f03)){const _0x19024a=this[_0x376af0(0x405)][_0x376af0(0x55a)](_0x153041)||new Set();_0x19024a[_0x376af0(0x240)](_0x3e9f03),this[_0x376af0(0x405)][_0x376af0(0x1f2)](_0x153041,_0x19024a),this['_scheduleClearOtherTimer'](_0x3e9f03);}}),_0x4f83c4||this[_0x53d3f4(0x5c3)]({'type':0x0,'memberID':this[_0x53d3f4(0x2b3)],'unitIDs':[...this['_selfUnitIDs']],'isForwarded':!0x0});}[_0x3948cf(0x5be)](_0x2f9508){const _0x25ca27=_0x3948cf;this[_0x25ca27(0x371)](_0x2f9508);const _0x31c891=window[_0x25ca27(0x3da)](()=>{const _0x5349a2=_0x25ca27;this[_0x5349a2(0x405)][_0x5349a2(0x24f)](_0x4c7465=>{_0x4c7465['delete'](_0x2f9508);});},_0x289613*0x2);this[_0x25ca27(0x39e)][_0x25ca27(0x1f2)](_0x2f9508,_0x31c891);}['_removeClearOtherTimer'](_0x311d63){const _0x3e761e=_0x3948cf;if(this[_0x3e761e(0x39e)][_0x3e761e(0x58e)](_0x311d63)){const _0x23e92c=this[_0x3e761e(0x39e)]['get'](_0x311d63);_0x23e92c&&window['clearTimeout'](_0x23e92c),this[_0x3e761e(0x39e)]['set'](_0x311d63,null);}}[_0x3948cf(0x29d)](_0x140de9){const _0x59ce23=_0x3948cf,{memberID:_0x5c217a,unitIDs:_0x367fc1}=_0x140de9;_0x367fc1[_0x59ce23(0x24f)](_0x11d36f=>{const _0x223802=_0x59ce23;var _0x1c7aa0;const _0x1228c6=this[_0x223802(0x405)]['get'](_0x11d36f);_0x1228c6&&(_0x1228c6[_0x223802(0x45a)](_0x5c217a),(_0x1c7aa0=this[_0x223802(0x473)](_0x11d36f))==null||_0x1c7aa0['next'](_0x1228c6['size']===0x0?0x0:0x1));}),this[_0x59ce23(0x371)](_0x5c217a);}['_handleHeartbeatEvent'](_0x51a962){const _0x24ff6c=_0x3948cf;this[_0x24ff6c(0x5be)](_0x51a962[_0x24ff6c(0x3f3)]);}[_0x3948cf(0x5c3)](_0x27e34b){const _0x45cf23=_0x3948cf;localStorage['setItem'](_0x6fe964,JSON[_0x45cf23(0x2ec)](_0x27e34b));}['_scheduleHeartbeat'](){this['_heartbeatTimer']=window['setInterval'](()=>{const _0x450136=_0x5201;this[_0x450136(0x5c3)]({'type':0x2,'memberID':this[_0x450136(0x2b3)]});},_0x289613);}[_0x3948cf(0x473)](_0x96da38){const _0x192c1d=_0x3948cf;return this[_0x192c1d(0x4b9)][_0x192c1d(0x58e)](_0x96da38)||this[_0x192c1d(0x4b9)][_0x192c1d(0x1f2)](_0x96da38,new _0x3fbd04[(_0x192c1d(0x2e0))](0x0)),this[_0x192c1d(0x4b9)][_0x192c1d(0x55a)](_0x96da38);}}var _0x4a0c7e=Object[_0x3948cf(0x149)],_0x550d9c=Object['getOwnPropertyDescriptor'],_0x37a445=(_0x30b39b,_0x39a399,_0x436c1e,_0x21cfb9)=>{const _0x5c3760=_0x3948cf;for(var _0x3fddb8=_0x21cfb9>0x1?void 0x0:_0x21cfb9?_0x550d9c(_0x39a399,_0x436c1e):_0x39a399,_0x1b7600=_0x30b39b[_0x5c3760(0x24c)]-0x1,_0x467cee;_0x1b7600>=0x0;_0x1b7600--)(_0x467cee=_0x30b39b[_0x1b7600])&&(_0x3fddb8=(_0x21cfb9?_0x467cee(_0x39a399,_0x436c1e,_0x3fddb8):_0x467cee(_0x3fddb8))||_0x3fddb8);return _0x21cfb9&&_0x3fddb8&&_0x4a0c7e(_0x39a399,_0x436c1e,_0x3fddb8),_0x3fddb8;},_0x593882=(_0x7c7feb,_0x33fb2e)=>(_0x7fea0,_0xfb5e0e)=>_0x33fb2e(_0x7fea0,_0xfb5e0e,_0x7c7feb);let _0x5cf7bf=class{constructor(_0x2ab9a7,_0x44d607,_0x3c2621){const _0x56e369=_0x3948cf;this[_0x56e369(0x488)]=_0x2ab9a7,this[_0x56e369(0x42b)]=_0x44d607,this['_docStateChangeManagerService']=_0x3c2621;}['transformStateCache'](_0x45c8c1){const _0x56ef6b=_0x3948cf;this[_0x56ef6b(0x342)](_0x45c8c1);}[_0x3948cf(0x5b4)](_0x193490){const _0x1aa5b7=_0x3948cf,{unitID:_0x2a52cf}=_0x193490,{collaboration:_0x3902f9}=this['_docStateChangeManagerService']['getStateCache'](_0x2a52cf);if(_0x3902f9[_0x1aa5b7(0x24c)]===0x0)return _0x193490;let _0x59248a=_0x223914[_0x1aa5b7(0x5af)][_0x1aa5b7(0x566)](_0x193490['mutations'][0x0]);for(let _0x4d4595=0x0;_0x4d4595<_0x3902f9[_0x1aa5b7(0x24c)];_0x4d4595++){const _0x3dc4d5={'id':_0x1aa5b7(0x3d8),'params':{'unitId':_0x3902f9[_0x4d4595][_0x1aa5b7(0x362)],..._0x3902f9[_0x4d4595]['redoState']}},_0xd21789=this['_transformService'][_0x1aa5b7(0x212)](_0x59248a,_0x3dc4d5,!0x1);if(_0x9ea725[_0x1aa5b7(0x375)](_0xd21789))throw _0xd21789[_0x1aa5b7(0x41b)];_0x59248a=_0xd21789[_0x1aa5b7(0x5d5)];}return{..._0x223914[_0x1aa5b7(0x5af)][_0x1aa5b7(0x566)](_0x193490),'mutations':[_0x59248a]};}[_0x3948cf(0x342)](_0x4b88b2){const _0x4c7ca0=_0x3948cf,{unitID:_0x2801fd}=_0x4b88b2,{history:_0x34f8f3,collaboration:_0x1e6be4}=this[_0x4c7ca0(0x5fc)][_0x4c7ca0(0x1d4)](_0x2801fd);if(_0x34f8f3['length']===0x0&&_0x1e6be4[_0x4c7ca0(0x24c)]===0x0)return;const _0x525987=[],_0x316b82=[];let _0x48252e=_0x223914[_0x4c7ca0(0x5af)]['deepClone'](_0x4b88b2[_0x4c7ca0(0x53f)][0x0]),_0x4c2251=_0x223914[_0x4c7ca0(0x5af)][_0x4c7ca0(0x566)](_0x4b88b2[_0x4c7ca0(0x53f)][0x0]);for(let _0x17e2f8=_0x34f8f3[_0x4c7ca0(0x24c)]-0x1;_0x17e2f8>=0x0;_0x17e2f8--){const _0x133f48={'id':_0x4c7ca0(0x3d8),'params':{'unitId':_0x34f8f3[_0x17e2f8][_0x4c7ca0(0x362)],..._0x34f8f3[_0x17e2f8][_0x4c7ca0(0x4fb)]}},_0x3705b6={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x34f8f3[_0x17e2f8][_0x4c7ca0(0x362)],..._0x34f8f3[_0x17e2f8]['redoState']}},_0x1d0828=this[_0x4c7ca0(0x42b)][_0x4c7ca0(0x212)](_0x48252e,_0x133f48,!0x1),_0x22fe75=this[_0x4c7ca0(0x42b)]['transformMutation'](_0x4c2251,_0x3705b6,!0x1);if(_0x9ea725['isTransformMutationFailure'](_0x1d0828))throw _0x1d0828[_0x4c7ca0(0x41b)];if(_0x9ea725['isTransformMutationFailure'](_0x22fe75))throw _0x22fe75[_0x4c7ca0(0x41b)];_0x525987[_0x4c7ca0(0x5ef)]({..._0x34f8f3[_0x17e2f8],'undoState':_0x1d0828['m2Prime'][_0x4c7ca0(0x54d)],'redoState':_0x22fe75[_0x4c7ca0(0x521)][_0x4c7ca0(0x54d)]}),_0x48252e=_0x1d0828['m1Prime'],_0x4c2251=_0x22fe75[_0x4c7ca0(0x5d5)];}_0x48252e=_0x223914[_0x4c7ca0(0x5af)][_0x4c7ca0(0x566)](_0x4b88b2[_0x4c7ca0(0x53f)][0x0]),_0x4c2251=_0x223914[_0x4c7ca0(0x5af)]['deepClone'](_0x4b88b2['mutations'][0x0]);for(let _0x16a5ee=_0x1e6be4[_0x4c7ca0(0x24c)]-0x1;_0x16a5ee>=0x0;_0x16a5ee--){const _0x49e87b={'id':_0x4c7ca0(0x3d8),'params':{'unitId':_0x1e6be4[_0x16a5ee][_0x4c7ca0(0x362)],..._0x1e6be4[_0x16a5ee][_0x4c7ca0(0x4fb)]}},_0x56655e={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x1e6be4[_0x16a5ee][_0x4c7ca0(0x362)],..._0x1e6be4[_0x16a5ee][_0x4c7ca0(0x334)]}},_0x4ae30b=this[_0x4c7ca0(0x42b)][_0x4c7ca0(0x212)](_0x48252e,_0x49e87b,!0x1),_0x2a224e=this[_0x4c7ca0(0x42b)][_0x4c7ca0(0x212)](_0x4c2251,_0x56655e,!0x1);if(_0x9ea725['isTransformMutationFailure'](_0x4ae30b))throw _0x4ae30b[_0x4c7ca0(0x41b)];if(_0x9ea725[_0x4c7ca0(0x375)](_0x2a224e))throw _0x2a224e[_0x4c7ca0(0x41b)];_0x316b82['unshift']({..._0x1e6be4[_0x16a5ee],'undoState':_0x4ae30b['m2Prime'][_0x4c7ca0(0x54d)],'redoState':_0x2a224e[_0x4c7ca0(0x521)][_0x4c7ca0(0x54d)]}),_0x48252e=_0x4ae30b[_0x4c7ca0(0x5d5)],_0x4c2251=_0x2a224e[_0x4c7ca0(0x5d5)];}this[_0x4c7ca0(0x5fc)][_0x4c7ca0(0x3a6)](_0x2801fd,{'history':_0x525987,'collaboration':_0x316b82});}};_0x5cf7bf=_0x37a445([_0x593882(0x0,_0x223914['Inject'](_0x223914[_0x3948cf(0x478)])),_0x593882(0x1,_0x9ea725[_0x3948cf(0x1b6)]),_0x593882(0x2,_0x223914[_0x3948cf(0x25f)](_0x13e81e[_0x3948cf(0x534)]))],_0x5cf7bf);function _0x1ccc89(_0x4f28e3){const _0x21b4ca=_0x3948cf;let _0x4bca3d='';for(const _0xd52e6 of _0x4f28e3){const {startOffset:_0x106a1c,endOffset:_0x567e5e,isActive:_0x544802,rangeType:_0x4ef395,segmentId:_0x71bffe,segmentPage:_0xb2cd59}=_0xd52e6;_0x4bca3d[_0x21b4ca(0x24c)]&&(_0x4bca3d+=','),_0x4bca3d+=_0x106a1c+':'+_0x567e5e+':'+(_0x544802?'1':'0')+':'+_0x4ef395+':'+_0x71bffe+':'+_0xb2cd59;}return _0x4bca3d;}function _0x1529db(_0x32ca3b){const _0xcf1ffd=_0x3948cf,_0x3723ea=_0x32ca3b[_0xcf1ffd(0x3ce)](','),_0x52bd15=[];for(const _0x3125f1 of _0x3723ea){const [_0x4e72a4,_0x34c2ea,_0xc938c5,_0xe9c91a,_0x3b3959,_0x3bec4c]=_0x3125f1[_0xcf1ffd(0x3ce)](':');_0x52bd15['push']({'startOffset':Number(_0x4e72a4),'endOffset':Number(_0x34c2ea),'collapsed':_0x4e72a4===_0x34c2ea,'isActive':_0xc938c5==='1','rangeType':_0xe9c91a===_0x223914[_0xcf1ffd(0x1ee)][_0xcf1ffd(0x154)]?_0x223914['DOC_RANGE_TYPE'][_0xcf1ffd(0x154)]:_0x223914[_0xcf1ffd(0x1ee)][_0xcf1ffd(0x38d)],'segmentId':typeof _0x3b3959==_0xcf1ffd(0x277)?String(_0x3b3959):'','segmentPage':Number(_0x3bec4c!=null?_0x3bec4c:-0x1)});}return _0x52bd15[_0xcf1ffd(0x26e)](_0x16db2f=>_0x16db2f[_0xcf1ffd(0x15c)])||(_0x52bd15[0x0]['isActive']=!0x0),_0x52bd15;}class _0x4de645 extends _0x223914[_0x3948cf(0x52f)]{constructor(){const _0x17903d=_0x3948cf;super(...arguments),_0xeb55cc(this,_0x17903d(0x58a),new _0x3fbd04[(_0x17903d(0x2e0))](null)),_0xeb55cc(this,_0x17903d(0x152),this['_collabCursorState$'][_0x17903d(0x29a)]());}[_0x3948cf(0x3bf)](_0x368357){const _0x5d30a7=_0x3948cf,{unitID:_0x21918c,memberID:_0x2109dd,textRanges:_0x4cf3b3}=_0x368357,_0x3789f8=_0x1ccc89(_0x4cf3b3);if(_0x3789f8==='')return;const _0x2458bf={'unitID':_0x21918c,'memberID':_0x2109dd,'selection':_0x3789f8};this[_0x5d30a7(0x58a)][_0x5d30a7(0x490)](_0x2458bf);}}var _0x127478=Object[_0x3948cf(0x149)],_0x1ee1a6=Object[_0x3948cf(0x16b)],_0x3feb8b=(_0x5bf66f,_0x122369,_0x420481,_0x323c01)=>{const _0x3620b2=_0x3948cf;for(var _0xc25856=_0x323c01>0x1?void 0x0:_0x323c01?_0x1ee1a6(_0x122369,_0x420481):_0x122369,_0x180949=_0x5bf66f[_0x3620b2(0x24c)]-0x1,_0x102df5;_0x180949>=0x0;_0x180949--)(_0x102df5=_0x5bf66f[_0x180949])&&(_0xc25856=(_0x323c01?_0x102df5(_0x122369,_0x420481,_0xc25856):_0x102df5(_0xc25856))||_0xc25856);return _0x323c01&&_0xc25856&&_0x127478(_0x122369,_0x420481,_0xc25856),_0xc25856;},_0x3ee9a2=(_0x6da0ce,_0x1bcaa5)=>(_0x325f4f,_0x9d4971)=>_0x1bcaa5(_0x325f4f,_0x9d4971,_0x6da0ce);let _0x5cbe2c=class{constructor(_0xc7d3f6,_0x4ba53e){const _0x148792=_0x3948cf;this[_0x148792(0x488)]=_0xc7d3f6,this[_0x148792(0x42b)]=_0x4ba53e;}[_0x3948cf(0x2e1)](_0x1a0503){const _0x1e4822=_0x3948cf;var _0x5a0e73;const _0x2c18d6=this[_0x1e4822(0x488)][_0x1e4822(0x55a)](_0x4a2356['DocSelectionManagerService']),_0x13a23e=(_0x5a0e73=_0x2c18d6[_0x1e4822(0x3b4)]())!=null?_0x5a0e73:[];if(_0x13a23e['length']===0x0)return;const _0x4f2d9=_0x1a0503[_0x1e4822(0x397)],_0x2d2841=[{'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x4f2d9,'actions':null,'textRanges':_0x13a23e}}],_0x208104=this[_0x1e4822(0x42b)][_0x1e4822(0x57d)](_0x1a0503,_0x2d2841);if(!_0x9ea725['isTransformMutationsWithChangesetSuccess'](_0x208104))throw _0x208104[_0x1e4822(0x41b)];const _0xd80d75=_0x208104[_0x1e4822(0x521)][0x0][_0x1e4822(0x54d)][_0x1e4822(0x27b)];Array['isArray'](_0xd80d75)&&_0xd80d75['length']&&_0x2c18d6[_0x1e4822(0x18b)](_0xd80d75,{'unitId':_0x4f2d9,'subUnitId':_0x4f2d9},!0x1);}};_0x5cbe2c=_0x3feb8b([_0x3ee9a2(0x0,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x3ee9a2(0x1,_0x9ea725['ITransformService'])],_0x5cbe2c);const _0x15a7a1=new Set([_0x59e5a9[_0x3948cf(0x584)]['id']]);function _0x34c099(_0x186b4a,_0x4a4828,_0x4ffbb9,_0x4154d9,_0x33ae8d){const _0x59e96a=_0x3948cf;var _0x3f1365,_0x2b51b5,_0x44f77e,_0x576605;const _0x6b7d1a=[];for(const _0x1e3160 of _0x186b4a)if(_0x15a7a1[_0x59e96a(0x58e)](_0x1e3160['id'])){if(_0x6b7d1a['length']>0x0)break;_0x6b7d1a[_0x59e96a(0x4ef)](_0x1e3160);break;}else _0x6b7d1a[_0x59e96a(0x4ef)](_0x1e3160);const _0x5ed136=(_0x2b51b5=(_0x3f1365=_0x33ae8d['getCurrentUser']())==null?void 0x0:_0x3f1365['userID'])!=null?_0x2b51b5:'unknown',_0x47b348=(_0x576605=(_0x44f77e=_0x33ae8d['getCurrentUser']())==null?void 0x0:_0x44f77e[_0x59e96a(0x3f3)])!=null?_0x576605:'unknown';return{'changeset':{'unitID':_0x4a4828,'type':_0x9ea725[_0x59e96a(0x520)](_0x4ffbb9[_0x59e96a(0x47b)](_0x4a4828)),'baseRev':_0x4154d9['getCurrentRevOfUnit'](_0x4a4828),'revision':0x0,'userID':_0x5ed136,'memberID':_0x47b348,'mutations':_0x6b7d1a},'pendingMutations':_0x186b4a[_0x59e96a(0x26f)](_0x6b7d1a[_0x59e96a(0x24c)])};}function _0x13b41b(_0x3de4ed,_0x442711,_0x569b5e,_0x55b6b4,_0x5d154b){const _0x1c7a3e=_0x3948cf;var _0x2defdb,_0x25fe66,_0x1b01c8,_0x1c509e;const _0x5ee09f=[_0x3de4ed[_0x1c7a3e(0x421)]((_0x8d924b,_0x266f4b)=>{const _0x275b9a=_0x1c7a3e;var _0x5619e8;const {id:_0x1fd562}=_0x8d924b,{id:_0x316d77,type:_0x3214fe}=_0x266f4b,_0x553cdb=(_0x5619e8=_0x8d924b[_0x275b9a(0x54d)])!=null?_0x5619e8:{'actions':null},_0x4d2965=_0x266f4b[_0x275b9a(0x54d)];if(_0x1fd562&&_0x1fd562!==_0x316d77)throw new Error(_0x275b9a(0x18f)+_0x1fd562+_0x275b9a(0x5ac)+_0x316d77+'.');return{..._0x8d924b,'id':_0x316d77,'type':_0x3214fe,'params':{'unitId':_0x4d2965[_0x275b9a(0x362)],'textRanges':_0x4d2965[_0x275b9a(0x27b)],'actions':_0x223914[_0x275b9a(0x458)][_0x275b9a(0x331)](_0x553cdb[_0x275b9a(0x352)],_0x4d2965['actions'])}};},{})],_0x282351=(_0x25fe66=(_0x2defdb=_0x5d154b[_0x1c7a3e(0x1d5)]())==null?void 0x0:_0x2defdb[_0x1c7a3e(0x21c)])!=null?_0x25fe66:_0x1c7a3e(0x583),_0x4ff44a=(_0x1c509e=(_0x1b01c8=_0x5d154b['getCurrentUser']())==null?void 0x0:_0x1b01c8['memberID'])!=null?_0x1c509e:_0x1c7a3e(0x583);return{'changeset':{'unitID':_0x442711,'type':_0x9ea725['mapDocumentTypeToUniverType'](_0x569b5e[_0x1c7a3e(0x47b)](_0x442711)),'baseRev':_0x55b6b4['getCurrentRevOfUnit'](_0x442711),'revision':0x0,'userID':_0x282351,'memberID':_0x4ff44a,'mutations':_0x5ee09f},'pendingMutations':[]};}function _0x3f7431(_0x28683f,_0x25457c){const _0x454253=_0x3948cf,_0x1f019e=new _0x3fbd04[(_0x454253(0x402))](0x1);return setTimeout(()=>_0x1f019e['next'](_0x25457c),_0x28683f),_0x1f019e[_0x454253(0x29a)]()['pipe'](_0x3fbd04[_0x454253(0x2b5)](0x1));}const _0x2669ac={'id':_0x59e5a9['EmptyMutation']['id'],'type':_0x223914[_0x3948cf(0x203)][_0x3948cf(0x5c5)],'params':{}};var _0x416799=Object[_0x3948cf(0x149)],_0x26f092=Object[_0x3948cf(0x16b)],_0x348bbc=(_0x26440c,_0x35abb1,_0x4abb53,_0x2c4a55)=>{const _0x1e6b29=_0x3948cf;for(var _0x28dcb2=_0x2c4a55>0x1?void 0x0:_0x2c4a55?_0x26f092(_0x35abb1,_0x4abb53):_0x35abb1,_0x42a5f2=_0x26440c[_0x1e6b29(0x24c)]-0x1,_0x513c15;_0x42a5f2>=0x0;_0x42a5f2--)(_0x513c15=_0x26440c[_0x42a5f2])&&(_0x28dcb2=(_0x2c4a55?_0x513c15(_0x35abb1,_0x4abb53,_0x28dcb2):_0x513c15(_0x28dcb2))||_0x28dcb2);return _0x2c4a55&&_0x28dcb2&&_0x416799(_0x35abb1,_0x4abb53,_0x28dcb2),_0x28dcb2;},_0x6d8d82=(_0x550215,_0x4db97a)=>(_0x2b41bb,_0x368dfe)=>_0x4db97a(_0x2b41bb,_0x368dfe,_0x550215),_0x1de127=(_0x3a8c7c=>(_0x3a8c7c[_0x3948cf(0x344)]=_0x3948cf(0x3a5),_0x3a8c7c['SYNCED']=_0x3948cf(0x507),_0x3a8c7c[_0x3948cf(0x2e4)]=_0x3948cf(0x4af),_0x3a8c7c[_0x3948cf(0x3d3)]=_0x3948cf(0x47f),_0x3a8c7c['AWAITING_WITH_PENDING']=_0x3948cf(0x33a),_0x3a8c7c['FETCH_MISS']=_0x3948cf(0x1df),_0x3a8c7c[_0x3948cf(0x318)]='conflict',_0x3a8c7c[_0x3948cf(0x239)]='offline',_0x3a8c7c))(_0x1de127||{});const _0x123174=0xea60;class _0xb2b441{constructor(_0x2e5188,_0x28cb3d,_0x2438f9,_0x15ad27,_0xea0f31,_0x4e6d23,_0x3990ef,_0x2de1de,_0x3a6ffc){const _0x5f3de8=_0x3948cf;_0xeb55cc(this,_0x5f3de8(0x185),null),_0xeb55cc(this,'_pendingMutations',[]),(this['unitID']=_0x2e5188,this['type']=_0x28cb3d,this[_0x5f3de8(0x304)]=_0xea0f31,this[_0x5f3de8(0x1b9)]=_0x4e6d23,this[_0x5f3de8(0x2b7)]=_0x3990ef,this['_revisionService']=_0x2de1de,this[_0x5f3de8(0x337)]=_0x3a6ffc,this[_0x5f3de8(0x185)]=_0x2438f9,this[_0x5f3de8(0x48f)]=_0x15ad27);}[_0x3948cf(0x225)](_0x43016f){const _0x393988=_0x3948cf,_0x2ae06f=this['_revisionService'][_0x393988(0x356)](this[_0x393988(0x397)]);return _0x43016f[_0x393988(0x1fc)]>_0x2ae06f+0x1?(this[_0x393988(0x304)][_0x393988(0x36f)]({'from':_0x2ae06f,'to':_0x43016f[_0x393988(0x1fc)]-0x1}),!0x0):!0x1;}[_0x3948cf(0x5ff)](_0x359ed7){const _0x25de86=_0x3948cf;this[_0x25de86(0x2b7)]['transformUndoRedo'](this[_0x25de86(0x397)],_0x359ed7);}['_transformSelections'](_0x4c4a78){const _0x3aec8c=_0x3948cf;var _0x5d5f05,_0xaa38a4;(_0xaa38a4=(_0x5d5f05=this[_0x3aec8c(0x304)])[_0x3aec8c(0x2e7)])==null||_0xaa38a4['call'](_0x5d5f05,_0x4c4a78);}[_0x3948cf(0x158)](_0x3e1f80){const _0x16cc20=_0x3948cf;var _0x3162ae,_0x17f0ff;return(_0x17f0ff=(_0x3162ae=this[_0x16cc20(0x304)])[_0x16cc20(0x20a)])==null?void 0x0:_0x17f0ff[_0x16cc20(0x56a)](_0x3162ae,_0x3e1f80);}[_0x3948cf(0x49e)](_0x2381f0){const _0x3f8e8f=_0x3948cf;var _0x277044,_0x3d1471;return(_0x3d1471=(_0x277044=this[_0x3f8e8f(0x304)])['onTransformState'])==null?void 0x0:_0x3d1471['call'](_0x277044,_0x2381f0);}[_0x3948cf(0x45f)](_0x34df91){const _0xa0429e=_0x3948cf;var _0xa16d92,_0x5eb68e,_0x54e190;return(_0x54e190=(_0x5eb68e=(_0xa16d92=this['_handler'])['onTransformRemoteChangesetByIMECache'])==null?void 0x0:_0x5eb68e[_0xa0429e(0x56a)](_0xa16d92,_0x34df91))!=null?_0x54e190:_0x34df91;}[_0x3948cf(0x4ae)](_0x47a1c7){const _0x5bc02d=_0x3948cf;var _0x1f56c7,_0x506121,_0x285839;return(_0x285839=(_0x506121=(_0x1f56c7=this[_0x5bc02d(0x304)])[_0x5bc02d(0x5b7)])==null?void 0x0:_0x506121['call'](_0x1f56c7,_0x47a1c7))!=null?_0x285839:_0x47a1c7;}[_0x3948cf(0x3a4)](_0x48f63b){const _0x425fd5=_0x3948cf;var _0x886327,_0x3c520e;if(this['type']===_0x50449d[_0x425fd5(0x30c)]){const {unitID:_0x4a4e27,mutations:_0x8b0831,memberID:_0x1897b1}=_0x48f63b,_0x181156=_0x8b0831[0x0]['params'][_0x425fd5(0x27b)];Array['isArray'](_0x181156)&&_0x181156['length']>0x0&&((_0x3c520e=(_0x886327=this[_0x425fd5(0x304)])[_0x425fd5(0x388)])==null||_0x3c520e[_0x425fd5(0x56a)](_0x886327,{'unitID':_0x4a4e27,'memberID':_0x1897b1,'textRanges':_0x181156}));}}[_0x3948cf(0x4c3)](){const _0x4daeda=_0x3948cf;this[_0x4daeda(0x337)][_0x4daeda(0x223)](this[_0x4daeda(0x397)],this[_0x4daeda(0x181)],this[_0x4daeda(0x185)],this['_pendingMutations']);}['_getCurrentRevision'](){const _0x211269=_0x3948cf;return this[_0x211269(0x14d)]['getCurrentRevOfUnit'](this[_0x211269(0x397)]);}[_0x3948cf(0x251)](){const _0x1d2e35=_0x3948cf;this[_0x1d2e35(0x14d)][_0x1d2e35(0x1bb)](this[_0x1d2e35(0x397)]);}[_0x3948cf(0x561)](_0x5a4574){const _0x9acc8e=_0x3948cf;var _0x3566cf;let _0x3c7ec1=this[_0x9acc8e(0x45f)](_0x5a4574);_0x3c7ec1=this[_0x9acc8e(0x4ae)](_0x3c7ec1);const _0x5df24a=_0x223914[_0x9acc8e(0x469)](_0x3c7ec1['mutations'],this[_0x9acc8e(0x1b9)],{'fromCollab':!0x0});if(!_0x5df24a['result'])throw _0x5df24a[_0x9acc8e(0x41b)]instanceof Error?_0x5df24a[_0x9acc8e(0x41b)]:new Error((_0x3566cf=_0x5df24a[_0x9acc8e(0x41b)])!=null?_0x3566cf:'[CollaborationState]:\x20apply\x20error!');this[_0x9acc8e(0x158)](_0x3c7ec1),this[_0x9acc8e(0x49e)](_0x3c7ec1),this['_transformUndoredo'](_0x5a4574),this[_0x9acc8e(0x4fe)](_0x3c7ec1),this[_0x9acc8e(0x3a4)](_0x3c7ec1),this['_incrementRevisionNumber']();}}let _0x21ae29=class extends _0xb2b441{constructor(_0x7816cb,_0x2572f5,_0x1571eb,_0x46b947,_0x307293,_0x3df2f2,_0x4c2cb6,_0x3ff9fd,_0x52ee5e,_0x4d7a12){const _0x5eb063=_0x3948cf;super(_0x7816cb,_0x2572f5,null,[],_0x1571eb,_0x3ff9fd,_0x4c2cb6,_0x46b947,_0x307293),_0xeb55cc(this,_0x5eb063(0x5e2),_0x5eb063(0x507)),(this[_0x5eb063(0x488)]=_0x3df2f2,this[_0x5eb063(0x3fb)]=_0x52ee5e,this['_transformService']=_0x4d7a12);}[_0x3948cf(0x2e2)](_0x81261c){const _0x481262=_0x3948cf,_0x429f89=this['_injector']['createInstance'](_0x7c6960,this[_0x481262(0x397)],this[_0x481262(0x181)],[_0x81261c],this['_handler']);return _0x429f89['_schedule'](),_0x429f89[_0x481262(0x4c3)](),_0x429f89;}['onRemoteChangeset'](_0x3a01f4){const _0x362e89=_0x3948cf;if(this['_checkMissing'](_0x3a01f4))return this[_0x362e89(0x488)][_0x362e89(0x565)](_0x5e1d3d,this['unitID'],this[_0x362e89(0x181)],null,[],null,[_0x3a01f4],this[_0x362e89(0x304)]);try{const _0x5ddb1f=this[_0x362e89(0x42b)][_0x362e89(0x57d)](_0x3a01f4,[_0x2669ac]);if(_0x9ea725[_0x362e89(0x333)](_0x5ddb1f)){const {c1Prime:_0xd16170}=_0x5ddb1f;return this[_0x362e89(0x561)](_0xd16170),this;}throw _0x5ddb1f['error'];}catch(_0x1464c7){return this[_0x362e89(0x3fb)][_0x362e89(0x41b)](_0x1464c7),this[_0x362e89(0x408)](!0x1);}}['_onConflict'](_0x15d694){const _0x1abfc0=_0x3948cf;return this[_0x1abfc0(0x488)][_0x1abfc0(0x565)](_0x580845,this['unitID'],this['type'],null,[],this[_0x1abfc0(0x304)],_0x15d694);}[_0x3948cf(0x544)](){const _0x381c16=_0x3948cf;throw new Error(_0x381c16(0x1a9));}[_0x3948cf(0x327)](){const _0x4b5e46=_0x3948cf;throw new Error(_0x4b5e46(0x2e5));}[_0x3948cf(0x26c)](){return this;}[_0x3948cf(0x387)](){const _0x4b5e2d=_0x3948cf;return this[_0x4b5e2d(0x488)]['createInstance'](_0x3caa94,this[_0x4b5e2d(0x397)],this['type'],null,[],this[_0x4b5e2d(0x304)]);}[_0x3948cf(0x4b6)](){return this;}['resend'](){const _0x19d36f=_0x3948cf;throw new Error(_0x19d36f(0x1b1));}[_0x3948cf(0x463)](){const _0x422ae2=_0x3948cf,_0x4e5262=this['_revisionService'][_0x422ae2(0x356)](this[_0x422ae2(0x397)]);return this[_0x422ae2(0x304)][_0x422ae2(0x36f)]({'from':_0x4e5262,'to':0x0}),this['_injector'][_0x422ae2(0x565)](_0x5e1d3d,this[_0x422ae2(0x397)],this[_0x422ae2(0x181)],null,[],null,[],this['_handler']);}};_0x21ae29=_0x348bbc([_0x6d8d82(0x3,_0x223914[_0x3948cf(0x25f)](_0x9ea725[_0x3948cf(0x364)])),_0x6d8d82(0x4,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x6d8d82(0x5,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x6d8d82(0x6,_0x223914[_0x3948cf(0x4d1)]),_0x6d8d82(0x7,_0x223914[_0x3948cf(0x38e)]),_0x6d8d82(0x8,_0x223914[_0x3948cf(0x5b0)]),_0x6d8d82(0x9,_0x9ea725[_0x3948cf(0x1b6)])],_0x21ae29);let _0x7c6960=class extends _0xb2b441{constructor(_0x432c1c,_0x10e4ac,_0x3e0755,_0x4a8d86,_0x381e19,_0x3eb87b,_0x65e282,_0x41496d,_0xd7e151,_0x10e37b,_0x3e243a,_0x533297,_0x38e817,_0x2d1ee6){const _0x17bba9=_0x3948cf;super(_0x432c1c,_0x10e4ac,null,_0x3e0755,_0x4a8d86,_0x10e37b,_0x2d1ee6,_0x3eb87b,_0x65e282),_0xeb55cc(this,'status','pending'),_0xeb55cc(this,'_scheduleTimestamp',null),_0xeb55cc(this,_0x17bba9(0x199),null),(this[_0x17bba9(0x488)]=_0x381e19,this[_0x17bba9(0x438)]=_0x41496d,this['_logService']=_0xd7e151,this[_0x17bba9(0x164)]=_0x3e243a,this[_0x17bba9(0x42b)]=_0x533297,this['_univerInstanceService']=_0x38e817);}[_0x3948cf(0x2e2)](_0x4d4fd5){const _0x112447=_0x3948cf;return this[_0x112447(0x48f)][_0x112447(0x4ef)](_0x4d4fd5),this[_0x112447(0x4c3)](),this;}[_0x3948cf(0x5d8)](_0x29f491){const _0x5b7f47=_0x3948cf;if(this[_0x5b7f47(0x225)](_0x29f491))return this[_0x5b7f47(0x241)](),this[_0x5b7f47(0x488)][_0x5b7f47(0x565)](_0x5e1d3d,this[_0x5b7f47(0x397)],this[_0x5b7f47(0x181)],null,this[_0x5b7f47(0x48f)],null,[_0x29f491],this[_0x5b7f47(0x304)]);try{const _0xb81994=this[_0x5b7f47(0x42b)]['transformMutationsWithChangeset'](_0x29f491,this[_0x5b7f47(0x48f)]);if(_0x9ea725[_0x5b7f47(0x333)](_0xb81994)){const {c1Prime:_0x245315,m2Prime:_0x36b5a2}=_0xb81994;this[_0x5b7f47(0x561)](_0x245315);const _0x4c8684=this[_0x5b7f47(0x488)][_0x5b7f47(0x565)](_0x7c6960,this['unitID'],this['type'],_0x36b5a2,this['_handler']);return this[_0x5b7f47(0x241)](),_0x4c8684[_0x5b7f47(0x4ca)](this['_scheduleTimestamp']?Math[_0x5b7f47(0x4d5)](0x0,new Date()['getTime']()-this[_0x5b7f47(0x524)]):this['_getSendChangesetTimeout']()),_0x4c8684;}throw _0xb81994[_0x5b7f47(0x41b)];}catch(_0x479905){return this[_0x5b7f47(0x3fb)][_0x5b7f47(0x41b)](_0x479905),this[_0x5b7f47(0x408)](!0x1);}}['onRemoteAck'](){throw new Error('[PendingState]:\x20received\x20acknowledgement.');}[_0x3948cf(0x327)](){throw new Error('[PendingState]:\x20received\x20rejection.');}[_0x3948cf(0x26c)](){return this;}[_0x3948cf(0x387)](){const _0x2c06d6=_0x3948cf;return this[_0x2c06d6(0x241)](),this[_0x2c06d6(0x488)]['createInstance'](_0x3caa94,this[_0x2c06d6(0x397)],this[_0x2c06d6(0x181)],null,this[_0x2c06d6(0x48f)],this[_0x2c06d6(0x304)]);}[_0x3948cf(0x4b6)](){return this;}['_schedule'](_0xe609ef){const _0x3fcf2e=_0x3948cf,_0x24ac6c=_0xe609ef!=null?_0xe609ef:this[_0x3fcf2e(0x432)]();this[_0x3fcf2e(0x524)]=new Date()[_0x3fcf2e(0x230)](),this[_0x3fcf2e(0x199)]=window[_0x3fcf2e(0x3da)](()=>{const _0x467b7d=_0x3fcf2e;this['_clearScheduledTask']();let _0x297c99=null;switch(this[_0x467b7d(0x181)]){case _0x50449d['UNIVER_SHEET']:{_0x297c99=_0x34c099(this['_pendingMutations'],this['unitID'],this['_univerInstanceService'],this[_0x467b7d(0x14d)],this[_0x467b7d(0x438)]);break;}case _0x50449d[_0x467b7d(0x30c)]:{this[_0x467b7d(0x48f)][_0x467b7d(0x374)](_0x33b735=>_0x33b735['id']===_0x4a2356['RichTextEditingMutation']['id'])?_0x297c99=_0x13b41b(this['_pendingMutations'],this[_0x467b7d(0x397)],this[_0x467b7d(0x4ba)],this[_0x467b7d(0x14d)],this['_memberService']):_0x297c99=_0x34c099(this['_pendingMutations'],this[_0x467b7d(0x397)],this[_0x467b7d(0x4ba)],this[_0x467b7d(0x14d)],this[_0x467b7d(0x438)]);break;}default:throw new Error(_0x467b7d(0x48d)+this[_0x467b7d(0x181)]+_0x467b7d(0x13f));}const {changeset:_0x335a67,pendingMutations:_0x52be7e}=_0x297c99;this['_handler'][_0x467b7d(0x4e1)](_0x335a67);const _0xb9e1d5=_0x52be7e[_0x467b7d(0x24c)]?this[_0x467b7d(0x488)][_0x467b7d(0x565)](_0x435bfd,this[_0x467b7d(0x397)],this[_0x467b7d(0x181)],_0x335a67,_0x52be7e,this[_0x467b7d(0x304)],void 0x0):this[_0x467b7d(0x488)]['createInstance'](_0x8286ca,this[_0x467b7d(0x397)],this[_0x467b7d(0x181)],_0x335a67,this[_0x467b7d(0x304)]);_0xb9e1d5[_0x467b7d(0x4c3)](),this[_0x467b7d(0x304)][_0x467b7d(0x249)](this,_0xb9e1d5);},_0x24ac6c);}[_0x3948cf(0x432)](){const _0xf4f718=_0x3948cf;var _0x391117;const _0x31e8f6=this[_0xf4f718(0x164)]['getConfig'](_0x59012f);return(_0x391117=_0x31e8f6==null?void 0x0:_0x31e8f6['sendChangesetTimeout'])!=null?_0x391117:0x7d0;}[_0x3948cf(0x486)](){throw new Error('[PendingState]:\x20invalid\x20calling\x20to\x20`resend`.');}[_0x3948cf(0x241)](){const _0x239ee9=_0x3948cf;this[_0x239ee9(0x199)]!=null&&(clearTimeout(this[_0x239ee9(0x199)]),this['_sendingTimer']=null);}[_0x3948cf(0x408)](_0x5d80ac){const _0x415d49=_0x3948cf;return this[_0x415d49(0x241)](),this[_0x415d49(0x488)]['createInstance'](_0x580845,this[_0x415d49(0x397)],this['type'],null,this[_0x415d49(0x48f)],this[_0x415d49(0x304)],_0x5d80ac);}};_0x7c6960=_0x348bbc([_0x6d8d82(0x4,_0x223914[_0x3948cf(0x25f)](_0x223914['Injector'])),_0x6d8d82(0x5,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x364)])),_0x6d8d82(0x6,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x6d8d82(0x7,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x48b)])),_0x6d8d82(0x8,_0x223914[_0x3948cf(0x5b0)]),_0x6d8d82(0x9,_0x223914[_0x3948cf(0x38e)]),_0x6d8d82(0xa,_0x223914[_0x3948cf(0x1ff)]),_0x6d8d82(0xb,_0x9ea725['ITransformService']),_0x6d8d82(0xc,_0x223914[_0x3948cf(0x2dd)]),_0x6d8d82(0xd,_0x223914[_0x3948cf(0x4d1)])],_0x7c6960);let _0x8286ca=class extends _0xb2b441{constructor(_0x488e38,_0x5d00d2,_0x2d775c,_0x4c1cde,_0x361e41,_0x2565e3,_0x21eab6,_0x339e55,_0xb7f4dc,_0x12bca1,_0x4c01ca){const _0x3ca637=_0x3948cf;super(_0x488e38,_0x5d00d2,_0x2d775c,[],_0x4c1cde,_0x339e55,_0x4c01ca,_0x2565e3,_0x21eab6),_0xeb55cc(this,_0x3ca637(0x5e2),'awaiting'),_0xeb55cc(this,_0x3ca637(0x53d),0x0),_0xeb55cc(this,_0x3ca637(0x3fe)),_0xeb55cc(this,'_sender'),(this[_0x3ca637(0x488)]=_0x361e41,this['_logService']=_0xb7f4dc,this[_0x3ca637(0x42b)]=_0x12bca1);}[_0x3948cf(0x2e2)](_0x2cd735){const _0x33c790=_0x3948cf;this[_0x33c790(0x241)]();const _0x25b2eb=this[_0x33c790(0x488)]['createInstance'](_0x435bfd,this[_0x33c790(0x397)],this[_0x33c790(0x181)],this[_0x33c790(0x185)],[_0x2cd735],this[_0x33c790(0x304)],this[_0x33c790(0x3fe)]);return _0x25b2eb['_updateLocalCache'](),_0x25b2eb;}['onRemoteChangeset'](_0x11fe5d){const _0x2597c4=_0x3948cf;if(this[_0x2597c4(0x225)](_0x11fe5d))return this[_0x2597c4(0x241)](),this[_0x2597c4(0x488)][_0x2597c4(0x565)](_0x5e1d3d,this[_0x2597c4(0x397)],this[_0x2597c4(0x181)],this[_0x2597c4(0x185)],[],null,[_0x11fe5d],this[_0x2597c4(0x304)]);try{const _0x1cd51d=this[_0x2597c4(0x42b)]['transformChangesets']([_0x11fe5d],[this['_awaitingChangeset']],!0x1);if(_0x9ea725[_0x2597c4(0x558)](_0x1cd51d)){const {c1Prime:_0x3651d8,c2Prime:_0x308ecd}=_0x1cd51d;this[_0x2597c4(0x561)](_0x3651d8[0x0]),_0x308ecd[0x0][_0x2597c4(0x3f0)]=this[_0x2597c4(0x3b5)](),this[_0x2597c4(0x241)]();const _0x367b4b=this[_0x2597c4(0x488)][_0x2597c4(0x565)](_0x8286ca,this[_0x2597c4(0x397)],this[_0x2597c4(0x181)],_0x308ecd[0x0],this['_handler']);return _0x367b4b[_0x2597c4(0x4c3)](),_0x367b4b;}return this[_0x2597c4(0x408)](!0x1);}catch(_0x34ba14){return this[_0x2597c4(0x3fb)][_0x2597c4(0x41b)](_0x34ba14),this[_0x2597c4(0x408)](!0x1);}}[_0x3948cf(0x544)](_0x1d2a80){const _0x1f8749=_0x3948cf;this[_0x1f8749(0x241)]();const _0x11def4=this[_0x1f8749(0x14d)][_0x1f8749(0x356)](this[_0x1f8749(0x397)]);if(_0x1d2a80['revision']<_0x11def4-0x1)return this;if(this[_0x1f8749(0x225)](_0x1d2a80))return this[_0x1f8749(0x488)]['createInstance'](_0x5e1d3d,this['unitID'],this[_0x1f8749(0x181)],null,[],this[_0x1f8749(0x185)],[],this[_0x1f8749(0x304)]);this[_0x1f8749(0x251)]();const _0x5961c6=this[_0x1f8749(0x488)][_0x1f8749(0x565)](_0x21ae29,this[_0x1f8749(0x397)],this[_0x1f8749(0x181)],this[_0x1f8749(0x304)]);return _0x5961c6[_0x1f8749(0x4c3)](),_0x5961c6;}[_0x3948cf(0x327)](_0x46fdef){const _0x62a896=_0x3948cf;return this[_0x62a896(0x408)](!!(_0x46fdef!=null&&_0x46fdef[_0x62a896(0x150)]));}['onRemoteRetry'](_0x18fccc){const _0x457c8c=_0x3948cf;return this['_resendTimeout']>_0x123174?this[_0x457c8c(0x387)]():(this['_resendTimer']=_0x3f7431(this[_0x457c8c(0x53d)],{'timeout':this[_0x457c8c(0x53d)],'reqId':_0x18fccc[_0x457c8c(0x46a)]}),this[_0x457c8c(0x5c2)]=this[_0x457c8c(0x3fe)][_0x457c8c(0x577)](({reqId:_0x3cdbd3,timeout:_0x3e498b})=>{const _0x31c057=_0x457c8c;this[_0x31c057(0x184)](_0x3cdbd3,_0x3e498b);}),this);}[_0x3948cf(0x387)](){const _0x34569b=_0x3948cf;return this['_clearScheduledTask'](),this[_0x34569b(0x488)]['createInstance'](_0x3caa94,this[_0x34569b(0x397)],this[_0x34569b(0x181)],this[_0x34569b(0x185)],[],this[_0x34569b(0x304)]);}[_0x3948cf(0x4b6)](){return this;}[_0x3948cf(0x486)](){const _0x3d470b=_0x3948cf;this['_handler'][_0x3d470b(0x4e1)](this[_0x3d470b(0x185)]);}['_onConflict'](_0x11394c){const _0x98f2a=_0x3948cf;return this['_clearScheduledTask'](),this['_injector'][_0x98f2a(0x565)](_0x580845,this[_0x98f2a(0x397)],this[_0x98f2a(0x181)],this[_0x98f2a(0x185)],[],this[_0x98f2a(0x304)],_0x11394c);}[_0x3948cf(0x184)](_0x1a0a93,_0x310c9c){const _0x4d7bfe=_0x3948cf;var _0x278e0e;_0x1a0a93===((_0x278e0e=this[_0x4d7bfe(0x185)])==null?void 0x0:_0x278e0e[_0x4d7bfe(0x46a)])&&(this[_0x4d7bfe(0x486)](),this[_0x4d7bfe(0x53d)]=_0x310c9c===0x0?0x3e8:_0x310c9c*0x2);}[_0x3948cf(0x241)](){const _0xf508a0=_0x3948cf;var _0x5a255f;(_0x5a255f=this[_0xf508a0(0x5c2)])==null||_0x5a255f[_0xf508a0(0x4b1)](),this[_0xf508a0(0x53d)]=0x0;}};_0x8286ca=_0x348bbc([_0x6d8d82(0x4,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x6d8d82(0x5,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x364)])),_0x6d8d82(0x6,_0x223914[_0x3948cf(0x25f)](_0x24454f['LocalCacheService'])),_0x6d8d82(0x7,_0x223914[_0x3948cf(0x38e)]),_0x6d8d82(0x8,_0x223914[_0x3948cf(0x5b0)]),_0x6d8d82(0x9,_0x9ea725['ITransformService']),_0x6d8d82(0xa,_0x223914[_0x3948cf(0x4d1)])],_0x8286ca);let _0x435bfd=class extends _0xb2b441{constructor(_0x2f6483,_0x26a870,_0x1ce5b6,_0x4ad809,_0x251ac7,_0x5db8ae,_0x2f44a2,_0x4c7208,_0x3bb1f0,_0x1d4b90,_0x16be20,_0x230922,_0x1c960d){const _0x311f07=_0x3948cf;super(_0x2f6483,_0x26a870,_0x1ce5b6,_0x4ad809,_0x251ac7,_0x1d4b90,_0x1c960d,_0x4c7208,_0x3bb1f0),_0xeb55cc(this,_0x311f07(0x5e2),'awaiting_with_pending'),_0xeb55cc(this,'_resendTimeout',0x0),_0xeb55cc(this,_0x311f07(0x3fe)),_0xeb55cc(this,_0x311f07(0x5c2)),(this[_0x311f07(0x488)]=_0x2f44a2,this[_0x311f07(0x3fb)]=_0x16be20,this[_0x311f07(0x42b)]=_0x230922,_0x5db8ae&&(this[_0x311f07(0x3fe)]=_0x5db8ae,this[_0x311f07(0x5c2)]=this[_0x311f07(0x3fe)]['subscribe'](({reqId:_0x8cfc18,timeout:_0x28dff5})=>{const _0x33e1a3=_0x311f07;this[_0x33e1a3(0x184)](_0x8cfc18,_0x28dff5);})));}[_0x3948cf(0x2e2)](_0x198f52){const _0x576562=_0x3948cf;return this['_pendingMutations'][_0x576562(0x4ef)](_0x198f52),this;}[_0x3948cf(0x5d8)](_0x1f7105){const _0x427404=_0x3948cf;if(this[_0x427404(0x225)](_0x1f7105))return this[_0x427404(0x241)](),this['_injector'][_0x427404(0x565)](_0x5e1d3d,this['unitID'],this[_0x427404(0x181)],this['_awaitingChangeset'],this['_pendingMutations'],null,[_0x1f7105],this[_0x427404(0x304)]);try{const _0x431499=this[_0x427404(0x42b)][_0x427404(0x4dd)]([_0x1f7105],[this[_0x427404(0x185)]],!0x1);if(_0x9ea725['isTransformChangesetsSuccess'](_0x431499)){const {c1Prime:_0x7cd7c5,c2Prime:_0x44c676}=_0x431499,_0x144cf2=this['_transformService'][_0x427404(0x57d)](_0x7cd7c5[0x0],this[_0x427404(0x48f)]);if(_0x9ea725['isTransformMutationsWithChangesetSuccess'](_0x144cf2)){const {c1Prime:_0x935973,m2Prime:_0x28d595}=_0x144cf2;return this[_0x427404(0x561)](_0x935973),_0x44c676[0x0][_0x427404(0x3f0)]=this['_getCurrentRevision'](),this[_0x427404(0x241)](),this['_injector'][_0x427404(0x565)](_0x435bfd,this[_0x427404(0x397)],this[_0x427404(0x181)],_0x44c676[0x0],_0x28d595,this[_0x427404(0x304)],void 0x0);}throw _0x144cf2['error'];}throw _0x431499[_0x427404(0x41b)];}catch(_0x9bc52){return this[_0x427404(0x3fb)]['error'](_0x9bc52),this[_0x427404(0x408)](!0x1);}}['onRemoteAck'](_0xf21772){const _0x35d03c=_0x3948cf;if(this[_0x35d03c(0x241)](),this['_checkMissing'](_0xf21772))return this[_0x35d03c(0x488)]['createInstance'](_0x5e1d3d,this['unitID'],this['type'],null,this[_0x35d03c(0x48f)],this['_awaitingChangeset'],[],this[_0x35d03c(0x304)]);this[_0x35d03c(0x251)]();const _0x1e1aee=this['_injector'][_0x35d03c(0x565)](_0x7c6960,this[_0x35d03c(0x397)],this[_0x35d03c(0x181)],this[_0x35d03c(0x48f)],this[_0x35d03c(0x304)]);return _0x1e1aee[_0x35d03c(0x4ca)](),_0x1e1aee[_0x35d03c(0x4c3)](),_0x1e1aee;}[_0x3948cf(0x327)](_0x4fd2f8){const _0x1f52f0=_0x3948cf;return this['_onConflict'](!!(_0x4fd2f8!=null&&_0x4fd2f8[_0x1f52f0(0x150)]));}[_0x3948cf(0x26c)](_0x2e2a92){const _0x375509=_0x3948cf;return this[_0x375509(0x53d)]>_0x123174?this[_0x375509(0x387)]():(this[_0x375509(0x3fe)]=_0x3f7431(this[_0x375509(0x53d)],{'timeout':this[_0x375509(0x53d)],'reqId':_0x2e2a92['reqId']}),this[_0x375509(0x5c2)]=this[_0x375509(0x3fe)]['subscribe'](({reqId:_0x3898bb,timeout:_0xfec1b})=>{this['_resendWithTimeout'](_0x3898bb,_0xfec1b);}),this);}['toggleOffline'](){const _0x42d5f7=_0x3948cf;return this[_0x42d5f7(0x241)](),this[_0x42d5f7(0x488)][_0x42d5f7(0x565)](_0x3caa94,this[_0x42d5f7(0x397)],this['type'],this['_awaitingChangeset'],this[_0x42d5f7(0x48f)],this[_0x42d5f7(0x304)]);}['toggleOnline'](){return this;}[_0x3948cf(0x486)](){const _0x483f48=_0x3948cf;this[_0x483f48(0x304)][_0x483f48(0x4e1)](this[_0x483f48(0x185)]);}[_0x3948cf(0x408)](_0x330f06){const _0x422a74=_0x3948cf;return this['_clearScheduledTask'](),this[_0x422a74(0x488)][_0x422a74(0x565)](_0x580845,this[_0x422a74(0x397)],this[_0x422a74(0x181)],null,this['_pendingMutations'],this[_0x422a74(0x304)],_0x330f06);}[_0x3948cf(0x184)](_0x1ee5de,_0x269faf){const _0x45fca8=_0x3948cf;var _0x1c8531;_0x1ee5de===((_0x1c8531=this[_0x45fca8(0x185)])==null?void 0x0:_0x1c8531[_0x45fca8(0x46a)])&&(this[_0x45fca8(0x486)](),this[_0x45fca8(0x53d)]=_0x269faf===0x0?0x3e8:_0x269faf*0x2);}[_0x3948cf(0x241)](){const _0x3d4318=_0x3948cf;var _0x2cf96c;(_0x2cf96c=this[_0x3d4318(0x5c2)])==null||_0x2cf96c[_0x3d4318(0x4b1)](),this['_resendTimeout']=0x0;}};_0x435bfd=_0x348bbc([_0x6d8d82(0x6,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x6d8d82(0x7,_0x223914[_0x3948cf(0x25f)](_0x9ea725['RevisionService'])),_0x6d8d82(0x8,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x6d8d82(0x9,_0x223914[_0x3948cf(0x38e)]),_0x6d8d82(0xa,_0x223914[_0x3948cf(0x5b0)]),_0x6d8d82(0xb,_0x9ea725[_0x3948cf(0x1b6)]),_0x6d8d82(0xc,_0x223914['IUndoRedoService'])],_0x435bfd);let _0x580845=class extends _0xb2b441{constructor(_0x95c94c,_0x2ea2b7,_0x412d81,_0x7c022b,_0x5df9f9,_0x798054=!0x1,_0x47ccdf,_0x2fbecb,_0x54a3ce,_0x40c007,_0x29bef6,_0x181123,_0x30671c){const _0x589806=_0x3948cf;super(_0x95c94c,_0x2ea2b7,_0x412d81,_0x7c022b,_0x5df9f9,_0x2fbecb,_0x54a3ce,_0x29bef6,_0x40c007),_0xeb55cc(this,_0x589806(0x5e2),'conflict'),(this[_0x589806(0x4d4)]=_0x798054,this[_0x589806(0x1c5)]=_0x47ccdf,this[_0x589806(0x147)]=_0x181123,this[_0x589806(0x542)]=_0x30671c,this[_0x589806(0x610)](),this[_0x589806(0x174)](),this['_disableEditing']());}[_0x3948cf(0x2e2)](){return this;}['onRemoteChangeset'](){return this;}[_0x3948cf(0x544)](){return this;}[_0x3948cf(0x327)](){return this;}[_0x3948cf(0x26c)](){return this;}[_0x3948cf(0x387)](){return this;}['toggleOnline'](){return this;}[_0x3948cf(0x486)](){const _0x5c961b=_0x3948cf;throw new Error(_0x5c961b(0x425));}['_clearLocalCache'](){const _0x5de32e=_0x3948cf;this['_localCacheService'][_0x5de32e(0x223)](this['unitID'],this['type'],null,[]);}[_0x3948cf(0x610)](){const _0x1140db=_0x3948cf;this[_0x1140db(0x4d4)]?this[_0x1140db(0x542)]['show']({'title':this[_0x1140db(0x147)]['t'](_0x1140db(0x4f5)),'content':this[_0x1140db(0x147)]['t']('permission.content'),'type':'error','duration':0x0}):this[_0x1140db(0x542)][_0x1140db(0x46e)]({'title':this['_localeService']['t'](_0x1140db(0x3ba)),'content':this[_0x1140db(0x147)]['t'](_0x1140db(0x398)),'type':_0x1140db(0x41b),'duration':0x0});}['_disableEditing'](){const _0x4ba9a5=_0x3948cf;this['_permissionService'][_0x4ba9a5(0x18e)](new _0x59e5a9['WorkbookEditablePermission'](this[_0x4ba9a5(0x397)])['id'],!0x1);}};_0x580845=_0x348bbc([_0x6d8d82(0x6,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x1ac)])),_0x6d8d82(0x7,_0x223914[_0x3948cf(0x38e)]),_0x6d8d82(0x8,_0x223914[_0x3948cf(0x4d1)]),_0x6d8d82(0x9,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x6d8d82(0xa,_0x223914[_0x3948cf(0x25f)](_0x9ea725[_0x3948cf(0x364)])),_0x6d8d82(0xb,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x570)])),_0x6d8d82(0xc,_0x405b11['INotificationService'])],_0x580845);let _0x3caa94=class extends _0xb2b441{constructor(_0x454cb8,_0x42a577,_0x4b81ed,_0x5a012c,_0x1b2fd9,_0x61d8a8,_0x3df635,_0x3b2217,_0x5b4e8e,_0x291145){const _0x5364f9=_0x3948cf;super(_0x454cb8,_0x42a577,_0x4b81ed,_0x5a012c,_0x1b2fd9,_0x5b4e8e,_0x291145,_0x3df635,_0x3b2217),_0xeb55cc(this,_0x5364f9(0x5e2),'offline'),this[_0x5364f9(0x488)]=_0x61d8a8;}['appendMutation'](_0x28589b){const _0x30af65=_0x3948cf;return this['_pendingMutations']['push'](_0x28589b),this[_0x30af65(0x4c3)](),this;}[_0x3948cf(0x5d8)](_0x4812d8){const _0x67c638=_0x3948cf;throw new Error(_0x67c638(0x52a));}[_0x3948cf(0x544)](){const _0x50c4ea=_0x3948cf;throw new Error(_0x50c4ea(0x4a4));}[_0x3948cf(0x327)](){throw new Error('[OfflineState]:\x20received\x20rejection.');}[_0x3948cf(0x26c)](){return this;}[_0x3948cf(0x387)](){return this;}[_0x3948cf(0x4b6)](){const {_injector:_0x4c57ab,_pendingMutations:_0xb49d3a,_awaitingChangeset:_0x1da9d0,unitID:_0x599a31,_handler:_0x565105,type:_0x392f10}=this,_0x100d25=_0x246506(_0x4c57ab,_0x599a31,_0x392f10,_0x1da9d0,_0xb49d3a,_0x565105);return _0x100d25 instanceof _0x7c6960?_0x100d25['_schedule']():(_0x100d25 instanceof _0x435bfd||_0x100d25 instanceof _0x8286ca)&&_0x100d25['resend'](),_0x100d25;}[_0x3948cf(0x486)](){const _0x4a3ea2=_0x3948cf;throw new Error(_0x4a3ea2(0x215));}};_0x3caa94=_0x348bbc([_0x6d8d82(0x5,_0x223914['Inject'](_0x223914[_0x3948cf(0x478)])),_0x6d8d82(0x6,_0x223914[_0x3948cf(0x25f)](_0x9ea725[_0x3948cf(0x364)])),_0x6d8d82(0x7,_0x223914[_0x3948cf(0x25f)](_0x24454f['LocalCacheService'])),_0x6d8d82(0x8,_0x223914[_0x3948cf(0x38e)]),_0x6d8d82(0x9,_0x223914[_0x3948cf(0x4d1)])],_0x3caa94);let _0x5e1d3d=class extends _0xb2b441{constructor(_0xdcd87a,_0x3cbbd3,_0x5aa37c,_0x23d339,_0x3b64df,_0x368354,_0x3dd909,_0x3b1e44,_0x478cad,_0xadfc77,_0xb8a5ea,_0x2476e9,_0x1c739a,_0x20348e){const _0x56cf9a=_0x3948cf;super(_0xdcd87a,_0x3cbbd3,_0x5aa37c,_0x23d339,_0x3dd909,_0x2476e9,_0x1c739a,_0x478cad,_0xadfc77),_0xeb55cc(this,_0x56cf9a(0x5e2),_0x56cf9a(0x1df)),(this[_0x56cf9a(0x2ef)]=_0x3b64df,this[_0x56cf9a(0x2ac)]=_0x368354,this[_0x56cf9a(0x488)]=_0x3b1e44,this['_logService']=_0xb8a5ea,this[_0x56cf9a(0x42b)]=_0x20348e);}[_0x3948cf(0x550)](_0x69d640){const _0x5ec534=_0x3948cf;try{const _0xbabc3c=[..._0x69d640,...this[_0x5ec534(0x2ac)]],_0x53944e=[this['_awaitingChangeset']||this['_acknowledgedAwaitingChangeset']][_0x5ec534(0x256)](_0x542757=>!!_0x542757);let _0x28a46d,_0x47af11;if(_0x53944e['length']){const _0x4a79a4=this[_0x5ec534(0x42b)]['transformChangesets'](_0xbabc3c,_0x53944e,!0x1);if(!_0x9ea725[_0x5ec534(0x558)](_0x4a79a4))throw _0x4a79a4[_0x5ec534(0x41b)];_0x28a46d=_0x4a79a4[_0x5ec534(0x257)],_0x47af11=_0x4a79a4[_0x5ec534(0x50d)];}else _0x28a46d=_0xbabc3c,_0x47af11=[];let _0x719499=this[_0x5ec534(0x48f)];_0x28a46d[_0x5ec534(0x24f)](_0x30738b=>{const _0x3c3b09=_0x5ec534;let _0x5a36fe;if(_0x719499['length']){const _0x19ac8f=this['_transformService'][_0x3c3b09(0x57d)](_0x30738b,_0x719499);if(!_0x9ea725[_0x3c3b09(0x333)](_0x19ac8f))throw _0x19ac8f[_0x3c3b09(0x41b)];_0x5a36fe=_0x19ac8f['c1Prime'],_0x719499=_0x19ac8f[_0x3c3b09(0x521)];}else _0x5a36fe=_0x30738b;this[_0x3c3b09(0x561)](_0x5a36fe);}),this['_acknowledgedAwaitingChangeset']&&this[_0x5ec534(0x251)](),this[_0x5ec534(0x185)]&&_0x47af11[_0x5ec534(0x24c)]&&(_0x47af11[0x0][_0x5ec534(0x3f0)]=this[_0x5ec534(0x3b5)]());let _0x13ce86;if(this[_0x5ec534(0x185)]&&_0x719499[_0x5ec534(0x24c)]!==0x0)_0x13ce86=this[_0x5ec534(0x488)]['createInstance'](_0x435bfd,this[_0x5ec534(0x397)],this[_0x5ec534(0x181)],_0x47af11[0x0],_0x719499,this[_0x5ec534(0x304)],void 0x0);else{if(this[_0x5ec534(0x185)]&&_0x719499[_0x5ec534(0x24c)]===0x0)_0x47af11[0x0][_0x5ec534(0x3f0)]=this[_0x5ec534(0x3b5)](),_0x13ce86=this[_0x5ec534(0x488)]['createInstance'](_0x8286ca,this[_0x5ec534(0x397)],this[_0x5ec534(0x181)],_0x47af11[0x0],this[_0x5ec534(0x304)]);else{if(_0x719499['length']!==0x0){const _0x4cbc26=this[_0x5ec534(0x488)][_0x5ec534(0x565)](_0x7c6960,this['unitID'],this[_0x5ec534(0x181)],_0x719499,this[_0x5ec534(0x304)]);_0x4cbc26[_0x5ec534(0x4ca)](),_0x13ce86=_0x4cbc26;}else _0x13ce86=this['_injector'][_0x5ec534(0x565)](_0x21ae29,this[_0x5ec534(0x397)],this[_0x5ec534(0x181)],this[_0x5ec534(0x304)]);}}return _0x13ce86[_0x5ec534(0x4c3)](),_0x13ce86;}catch(_0x563be7){return this[_0x5ec534(0x3fb)][_0x5ec534(0x41b)](_0x5ec534(0x4e7),_0x5ec534(0x44d),_0x563be7),this[_0x5ec534(0x488)][_0x5ec534(0x565)](_0x580845,this[_0x5ec534(0x397)],this[_0x5ec534(0x181)],this[_0x5ec534(0x185)],this[_0x5ec534(0x48f)],this['_handler'],!0x1);}}[_0x3948cf(0x486)](){throw new Error('[FetchingMissState]:\x20invalid\x20calling\x20to\x20`resend`.');}[_0x3948cf(0x2e2)](_0x26c9a2){const _0xd397ff=_0x3948cf;return this[_0xd397ff(0x48f)]['push'](_0x26c9a2),this;}[_0x3948cf(0x5d8)](_0x55edcf){const _0x4b79bf=_0x3948cf;return this[_0x4b79bf(0x2ac)][_0x4b79bf(0x4ef)](_0x55edcf),this;}[_0x3948cf(0x544)](_0x4d331f){const _0x218b00=_0x3948cf;if(this[_0x218b00(0x185)])return this['_acknowledgedAwaitingChangeset']=this[_0x218b00(0x185)],this['_awaitingChangeset']=null,this;throw new Error(_0x218b00(0x1e2));}['onRemoteRej'](_0x543d9a){const _0x202c20=_0x3948cf;return this[_0x202c20(0x408)](!!(_0x543d9a!=null&&_0x543d9a[_0x202c20(0x150)]));}[_0x3948cf(0x26c)](){return this;}['toggleOffline'](){const _0x5c34be=_0x3948cf;return this[_0x5c34be(0x488)]['createInstance'](_0x3caa94,this[_0x5c34be(0x397)],this[_0x5c34be(0x181)],this[_0x5c34be(0x185)],this['_pendingMutations'],this[_0x5c34be(0x304)]);}[_0x3948cf(0x4b6)](){return this;}[_0x3948cf(0x408)](_0x672815){const _0x16026a=_0x3948cf;return this[_0x16026a(0x488)]['createInstance'](_0x580845,this[_0x16026a(0x397)],this[_0x16026a(0x181)],this[_0x16026a(0x185)],this[_0x16026a(0x48f)],this[_0x16026a(0x304)],_0x672815);}};_0x5e1d3d=_0x348bbc([_0x6d8d82(0x7,_0x223914[_0x3948cf(0x25f)](_0x223914['Injector'])),_0x6d8d82(0x8,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x364)])),_0x6d8d82(0x9,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x6d8d82(0xa,_0x223914['ILogService']),_0x6d8d82(0xb,_0x223914['ICommandService']),_0x6d8d82(0xc,_0x223914[_0x3948cf(0x4d1)]),_0x6d8d82(0xd,_0x9ea725[_0x3948cf(0x1b6)])],_0x5e1d3d);function _0x246506(_0x37bdf5,_0x1dee9e,_0x40a3e5,_0x2fa199,_0x556819,_0x507529){const _0x10892f=_0x3948cf;return _0x2fa199&&_0x556819[_0x10892f(0x24c)]?_0x37bdf5[_0x10892f(0x565)](_0x435bfd,_0x1dee9e,_0x40a3e5,_0x2fa199,_0x556819,_0x507529,void 0x0):_0x2fa199?_0x37bdf5[_0x10892f(0x565)](_0x8286ca,_0x1dee9e,_0x40a3e5,_0x2fa199,_0x507529):_0x556819['length']?_0x37bdf5['createInstance'](_0x7c6960,_0x1dee9e,_0x40a3e5,_0x556819,_0x507529):_0x37bdf5[_0x10892f(0x565)](_0x21ae29,_0x1dee9e,_0x40a3e5,_0x507529);}var _0x109a62=Object[_0x3948cf(0x149)],_0xf02ee2=Object[_0x3948cf(0x16b)],_0x33de33=(_0x5ea1ba,_0x3525c1,_0x277d03,_0x41e19c)=>{for(var _0x25dff9=_0x41e19c>0x1?void 0x0:_0x41e19c?_0xf02ee2(_0x3525c1,_0x277d03):_0x3525c1,_0x3ab126=_0x5ea1ba['length']-0x1,_0x511e78;_0x3ab126>=0x0;_0x3ab126--)(_0x511e78=_0x5ea1ba[_0x3ab126])&&(_0x25dff9=(_0x41e19c?_0x511e78(_0x3525c1,_0x277d03,_0x25dff9):_0x511e78(_0x25dff9))||_0x25dff9);return _0x41e19c&&_0x25dff9&&_0x109a62(_0x3525c1,_0x277d03,_0x25dff9),_0x25dff9;},_0x15ab00=(_0x524d97,_0x1f5307)=>(_0x422be9,_0x550fc6)=>_0x1f5307(_0x422be9,_0x550fc6,_0x524d97);_0x24454f[_0x3948cf(0x40f)]=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0x29be48,_0x260b8c,_0x23f619,_0x2586c4,_0x3ccf06,_0x432823,_0x289fd1,_0xb54bab,_0x5cb39c,_0x180462,_0x885119,_0x9c7e28,_0x16a3a6){const _0x37331e=_0x3948cf;super(),_0xeb55cc(this,'_state$',new _0x3fbd04[(_0x37331e(0x2e0))](null)),_0xeb55cc(this,_0x37331e(0x3a9),this['_state$'][_0x37331e(0x29a)]()),_0xeb55cc(this,_0x37331e(0x379)),_0xeb55cc(this,_0x37331e(0x22f),!0x1),_0xeb55cc(this,_0x37331e(0x2c9),''),_0xeb55cc(this,_0x37331e(0x5c1),0x0),_0xeb55cc(this,_0x37331e(0x55f),this[_0x37331e(0x3a9)][_0x37331e(0x3c1)](_0x3fbd04[_0x37331e(0x26b)](_0x2591ab=>_0x2591ab?_0x2591ab[_0x37331e(0x5e2)]:_0x1de127[_0x37331e(0x239)]),_0x3fbd04[_0x37331e(0x410)](0x1))),_0xeb55cc(this,_0x37331e(0x42a),!0x1),_0xeb55cc(this,_0x37331e(0x5dd),[]),(this[_0x37331e(0x397)]=_0x29be48,this[_0x37331e(0x4d6)]=_0x260b8c,this[_0x37331e(0x5fb)]=_0x23f619,this[_0x37331e(0x488)]=_0x2586c4,this[_0x37331e(0x337)]=_0x3ccf06,this[_0x37331e(0x510)]=_0x432823,this[_0x37331e(0x147)]=_0x289fd1,this[_0x37331e(0x14d)]=_0xb54bab,this[_0x37331e(0x3fb)]=_0x5cb39c,this[_0x37331e(0x1b9)]=_0x180462,this['_messageService']=_0x885119,this[_0x37331e(0x1c5)]=_0x9c7e28,this['_singleActiveUnitService']=_0x16a3a6);}get['state'](){const _0x349a93=_0x3948cf;return this[_0x349a93(0x379)];}async[_0x3948cf(0x49a)](){const _0x580c5c=_0x3948cf;if(this[_0x580c5c(0x452)])throw new Error('[CollaborationEntity]:\x20initial\x20state\x20has\x20been\x20created\x20before.\x20You\x20should\x20not\x20call\x20\x22init\x22\x20twice.');await this[_0x580c5c(0x528)]();}[_0x3948cf(0x563)](){const _0xacb21b=_0x3948cf;return this['_collaborationPaused']=!0x0,_0x223914[_0xacb21b(0x238)](()=>{const _0x329c06=_0xacb21b;this[_0x329c06(0x22f)]=!0x1,this[_0x329c06(0x57b)]();});}[_0x3948cf(0x319)](_0x1f395c){const _0x22fb88=_0x3948cf;this[_0x22fb88(0x379)]=_0x1f395c,this[_0x22fb88(0x41d)][_0x22fb88(0x490)](_0x1f395c);}async[_0x3948cf(0x528)](){const _0x72fe9e=_0x3948cf;var _0x2c4239;this[_0x72fe9e(0x319)](await this[_0x72fe9e(0x204)]()),this['_singleActiveUnitService']&&((_0x2c4239=this[_0x72fe9e(0x1bd)])==null||_0x2c4239[_0x72fe9e(0x590)](this[_0x72fe9e(0x397)]),this[_0x72fe9e(0x345)](this[_0x72fe9e(0x1bd)]['getUnitStatus$'](this[_0x72fe9e(0x397)])[_0x72fe9e(0x577)](_0x57c29b=>{const _0x224e00=_0x72fe9e;this[_0x224e00(0x3fb)][_0x224e00(0x346)]('[CollaborationEntity]',_0x224e00(0x32f),_0x57c29b),_0x57c29b===_0x4ef9dc['OTHER_CLIENTS_EDITING']?(this[_0x224e00(0x14c)][_0x224e00(0x46e)]({'content':this[_0x224e00(0x147)]['t'](_0x224e00(0x427)),'type':_0x3fa11f[_0x224e00(0x21a)][_0x224e00(0x143)]}),this[_0x224e00(0x1c5)][_0x224e00(0x18e)](new _0x59e5a9[(_0x224e00(0x263))](this[_0x224e00(0x397)])['id'],!0x1),this[_0x224e00(0x1c5)][_0x224e00(0x14e)](!0x1)):(this[_0x224e00(0x1c5)][_0x224e00(0x18e)](new _0x59e5a9['WorkbookEditablePermission'](this['unitID'])['id'],!0x0),this['_permissionService'][_0x224e00(0x14e)](!0x0));})));let _0x2825d7=!0x1;return this[_0x72fe9e(0x345)](this[_0x72fe9e(0x4d6)]['sessionStatus$']['subscribe'](_0x8db13c=>{const _0x522c55=_0x72fe9e;_0x8db13c===_0x1efc5b[_0x522c55(0x3c6)]?this[_0x522c55(0x25a)](_0x2825d7):_0x8db13c===_0x1efc5b[_0x522c55(0x239)]&&(_0x2825d7=!0x0,this[_0x522c55(0x196)]());})),this[_0x72fe9e(0x345)](this['session'][_0x72fe9e(0x581)][_0x72fe9e(0x577)](_0x526250=>{const _0x14f2b2=_0x72fe9e;try{switch(_0x526250[_0x14f2b2(0x5ea)]){case _0x9ea725[_0x14f2b2(0x140)][_0x14f2b2(0x234)]:{this['_onRemoteChangeset'](_0x9ea725[_0x14f2b2(0x1eb)](_0x526250['data']));break;}case _0x9ea725[_0x14f2b2(0x140)][_0x14f2b2(0x31c)]:{this[_0x14f2b2(0x5df)](_0x526250['data']);break;}case _0x9ea725[_0x14f2b2(0x140)]['CHANGESET_REJ']:{this[_0x14f2b2(0x1e9)]();break;}case _0x9ea725[_0x14f2b2(0x140)][_0x14f2b2(0x5e5)]:{this[_0x14f2b2(0x428)](_0x526250[_0x14f2b2(0x390)]);break;}case _0x9ea725[_0x14f2b2(0x140)]['PSEUDO_FETCH_MISSING_RESULT']:{this[_0x14f2b2(0x553)](_0x526250['data'][_0x14f2b2(0x2d6)]['map'](_0x577047=>_0x9ea725[_0x14f2b2(0x1eb)](_0x577047)));break;}case _0x9ea725[_0x14f2b2(0x140)][_0x14f2b2(0x288)]:this[_0x14f2b2(0x1e9)]({'isPermissionRej':!0x0});}}catch(_0xe53bcd){throw console[_0x14f2b2(0x41b)](_0x14f2b2(0x572),_0xe53bcd),_0xe53bcd;}})),this[_0x72fe9e(0x379)];}[_0x3948cf(0x2ff)](){this['_transitionLocked']=!0x1;}['_lockTransition'](){const _0x22ec04=_0x3948cf;if(this['_transitionLocked'])throw new Error(_0x22ec04(0x1de));this[_0x22ec04(0x42a)]=!0x0;}['_onLocalMutation'](_0xd3644){const _0x172d3a=_0x3948cf;this[_0x172d3a(0x1b0)](),this[_0x172d3a(0x319)](this[_0x172d3a(0x379)][_0x172d3a(0x2e2)](_0xd3644)),this['_unlockTransition']();}[_0x3948cf(0x273)](_0x3f9138){const _0xdbe2a7=_0x3948cf;if(!(_0x3f9138[_0xdbe2a7(0x1fc)]<=this['_revisionService'][_0xdbe2a7(0x356)](this[_0xdbe2a7(0x397)]))){if(this[_0xdbe2a7(0x22f)]){this[_0xdbe2a7(0x5dd)][_0xdbe2a7(0x4ef)](_0x3f9138);return;}this['_applyRemoteChangeset'](_0x3f9138);}}[_0x3948cf(0x57b)](){const _0x22f8f3=_0x3948cf;this['_remoteChangesetQueue'][_0x22f8f3(0x24f)](_0xc72c25=>this[_0x22f8f3(0x2f4)](_0xc72c25)),this[_0x22f8f3(0x5dd)]=[];}[_0x3948cf(0x2f4)](_0x9b8079){const _0x180011=_0x3948cf,_0x52ad8c=this[_0x180011(0x510)][_0x180011(0x4e9)]['fetchThroughInterceptors'](this[_0x180011(0x510)]['interceptor']['getInterceptPoints']()[_0x180011(0x148)])(_0x9b8079['mutations'],null)||_0x9b8079[_0x180011(0x53f)],_0x909732={..._0x9b8079,'mutations':_0x52ad8c};this[_0x180011(0x1b0)](),this[_0x180011(0x319)](this[_0x180011(0x379)][_0x180011(0x5d8)](_0x909732)),this[_0x180011(0x2ff)]();}['_onRemoteACK'](_0x14f405){const _0x31da55=_0x3948cf;this[_0x31da55(0x1b0)](),this['_updateState'](this[_0x31da55(0x379)]['onRemoteAck'](_0x14f405)),this[_0x31da55(0x2ff)]();}['_onRemoteRejected'](_0x2f0ba8){const _0x3a0ad0=_0x3948cf;this['_lockTransition'](),this[_0x3a0ad0(0x319)](this[_0x3a0ad0(0x379)]['onRemoteRej'](_0x2f0ba8)),this[_0x3a0ad0(0x2ff)]();}[_0x3948cf(0x428)](_0x1991ae){const _0x39af81=_0x3948cf;this['_lockTransition'](),this[_0x39af81(0x319)](this['_state'][_0x39af81(0x26c)](_0x1991ae)),this['_unlockTransition']();}[_0x3948cf(0x553)](_0x4a253b){const _0x47fc99=_0x3948cf;if(!(this[_0x47fc99(0x379)]instanceof _0x5e1d3d))throw new TypeError(_0x47fc99(0x4d0));const _0x3ccb5d=_0x4a253b[_0x47fc99(0x26b)](_0x596ec4=>{const _0x33e17b=_0x47fc99,_0x4f8a1e=this[_0x33e17b(0x510)][_0x33e17b(0x4e9)][_0x33e17b(0x5ca)](this[_0x33e17b(0x510)]['interceptor'][_0x33e17b(0x5b8)]()[_0x33e17b(0x148)])(_0x596ec4['mutations'],null)||_0x596ec4[_0x33e17b(0x53f)];return{..._0x596ec4,'mutations':_0x4f8a1e};});this[_0x47fc99(0x1b0)](),this[_0x47fc99(0x319)](this[_0x47fc99(0x379)][_0x47fc99(0x550)](_0x3ccb5d)),this[_0x47fc99(0x2ff)]();}['_toggleOffline'](){const _0x8a45f2=_0x3948cf;this['_lockTransition'](),this['_updateState'](this['_state']['toggleOffline']()),this[_0x8a45f2(0x2ff)]();}[_0x3948cf(0x25a)](_0x12a2fb=!0x1){const _0x324fac=_0x3948cf;this[_0x324fac(0x1b0)](),this['_updateState'](this[_0x324fac(0x379)][_0x324fac(0x4b6)]()),this[_0x324fac(0x2ff)]();const _0xdae838=this[_0x324fac(0x379)];_0x12a2fb&&_0xdae838 instanceof _0x21ae29&&(this[_0x324fac(0x1b0)](),this['_updateState'](_0xdae838['fetchMiss']()),this['_unlockTransition']());}async['_createInitialState'](){return new Promise(_0x4c789c=>{const _0x50f050=_0x5201;this['session'][_0x50f050(0x343)]['pipe'](_0x3fbd04[_0x50f050(0x2b5)](0x1))[_0x50f050(0x577)](async _0x2fc7de=>{const _0xb3a784=_0x50f050;_0x4c789c(await this[_0xb3a784(0x2f8)](_0x2fc7de===_0x1efc5b[_0xb3a784(0x3c6)]));});});}[_0x3948cf(0x53e)](){const _0xd7bee0=_0x3948cf,_0x37b340=this[_0xd7bee0(0x397)];return{'onStateChange':(_0x5ee213,_0x4c0e0d)=>{const _0x5eeb10=_0xd7bee0;if(_0x5ee213!==this[_0x5eeb10(0x379)])throw new Error(_0x5eeb10(0x4f0)+_0x5ee213[_0x5eeb10(0x5e2)]+_0x5eeb10(0x34b)+_0x4c0e0d['status']+_0x5eeb10(0x4e2)+this[_0x5eeb10(0x379)][_0x5eeb10(0x5e2)]);this[_0x5eeb10(0x319)](_0x4c0e0d);},'onSendChangeset':_0x1850a4=>{const _0x131f39=_0xd7bee0;_0x1850a4['sid']||(_0x1850a4[_0x131f39(0x2a8)]=this[_0x131f39(0x2c9)],_0x1850a4[_0x131f39(0x46a)]=++this['_changesetReqId']);const _0x209aa7={'eventID':_0x9ea725[_0x131f39(0x140)][_0x131f39(0x506)],'data':{'unitID':_0x1850a4[_0x131f39(0x397)],'unitType':this[_0x131f39(0x5fb)],'changeset':_0x1850a4,'memberID':this[_0x131f39(0x4d6)][_0x131f39(0x1d1)]()}};this[_0x131f39(0x4d6)]['send'](_0x209aa7,this[_0x131f39(0x397)]);},'onMissingChangesets':({from:_0x14ac57,to:_0x2e99ae})=>{const _0x5ed0c0=_0xd7bee0;this['_logService'][_0x5ed0c0(0x346)](_0x5ed0c0(0x442),'fetching\x20missing\x20changesets\x20from\x20'+_0x14ac57+_0x5ed0c0(0x439)+_0x2e99ae);const _0x184e3e={'eventID':_0x9ea725[_0x5ed0c0(0x140)][_0x5ed0c0(0x17e)],'data':{'unitID':_0x37b340,'unitType':this[_0x5ed0c0(0x5fb)],'from':_0x14ac57,'to':_0x2e99ae}};this[_0x5ed0c0(0x4d6)][_0x5ed0c0(0x28f)](_0x184e3e,this[_0x5ed0c0(0x397)]);}};}async[_0x3948cf(0x2f8)](_0x34f27d){const _0x39f396=_0x3948cf;var _0x4e56f0,_0x123bcb;const _0xb88c81=await this['_localCacheService'][_0x39f396(0x546)](this[_0x39f396(0x397)]),_0x2ae731=(_0x4e56f0=_0xb88c81==null?void 0x0:_0xb88c81[_0x39f396(0x53f)])!=null?_0x4e56f0:[],_0x20d7ab=(_0x123bcb=_0xb88c81==null?void 0x0:_0xb88c81[_0x39f396(0x348)])!=null?_0x123bcb:null,_0x225730=!!(_0x20d7ab!=null&&_0x20d7ab[_0x39f396(0x2a8)])&&!!(_0x20d7ab!=null&&_0x20d7ab[_0x39f396(0x46a)]);this[_0x39f396(0x2c9)]=_0x225730?_0x20d7ab[_0x39f396(0x2a8)]:_0x1a222b(),this[_0x39f396(0x5c1)]=_0x225730?_0x20d7ab[_0x39f396(0x46a)]:0x0;const _0x53692b=this[_0x39f396(0x397)];try{this['_replayCachedMutations'](_0x20d7ab,_0x2ae731);}catch(_0x2dc79e){this[_0x39f396(0x3fb)]['error'](_0x2dc79e);}const _0x229c28=this['_createHandler']();if(_0x34f27d){const _0x3be8c9=_0x246506(this[_0x39f396(0x488)],_0x53692b,this[_0x39f396(0x5fb)],_0x20d7ab,_0x2ae731,_0x229c28);return _0x3be8c9 instanceof _0x7c6960?_0x3be8c9[_0x39f396(0x4ca)]():(_0x3be8c9 instanceof _0x435bfd||_0x3be8c9 instanceof _0x8286ca)&&_0x3be8c9['resend'](),_0x3be8c9;}return this[_0x39f396(0x488)]['createInstance'](_0x3caa94,_0x53692b,this[_0x39f396(0x5fb)],_0x20d7ab,_0x2ae731,_0x229c28);}[_0x3948cf(0x246)](_0x104bc4,_0x261c2c){const _0x11dfff=_0x3948cf;var _0x480965,_0x216a99;const _0x27a0fc=this[_0x11dfff(0x510)][_0x11dfff(0x4e9)][_0x11dfff(0x5ca)](this['_compressMutationService']['interceptor'][_0x11dfff(0x5b8)]()[_0x11dfff(0x148)]);(_0x480965=_0x27a0fc((_0x104bc4==null?void 0x0:_0x104bc4['mutations'])||[],null))==null||_0x480965[_0x11dfff(0x24f)](_0x18ea26=>this['_commandService'][_0x11dfff(0x3d0)](_0x18ea26['id'],_0x18ea26[_0x11dfff(0x54d)])),(_0x216a99=_0x27a0fc(_0x261c2c||[],null))==null||_0x216a99['forEach'](_0x397ca1=>this[_0x11dfff(0x1b9)][_0x11dfff(0x3d0)](_0x397ca1['id'],_0x397ca1[_0x11dfff(0x54d)]));}},_0x24454f[_0x3948cf(0x40f)]=_0x33de33([_0x15ab00(0x3,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x15ab00(0x4,_0x223914['Inject'](_0x24454f[_0x3948cf(0x30e)])),_0x15ab00(0x5,_0x223914[_0x3948cf(0x25f)](_0x9ea725['CompressMutationService'])),_0x15ab00(0x6,_0x223914['Inject'](_0x223914[_0x3948cf(0x570)])),_0x15ab00(0x7,_0x223914['Inject'](_0x9ea725['RevisionService'])),_0x15ab00(0x8,_0x223914[_0x3948cf(0x5b0)]),_0x15ab00(0x9,_0x223914['ICommandService']),_0x15ab00(0xa,_0x405b11[_0x3948cf(0x1cc)]),_0x15ab00(0xb,_0x223914[_0x3948cf(0x1ac)]),_0x15ab00(0xc,_0x223914[_0x3948cf(0x2b9)](_0x1b2f34))],_0x24454f['CollaborationEntity']),_0x24454f['DocCollaborationEntity']=class extends _0x24454f[_0x3948cf(0x40f)]{constructor(_0x2a077a,_0x996b05,_0x19cf81,_0x14b06a,_0x30739d,_0x584de9,_0x581449,_0x198b54,_0x5275ef,_0x41d984,_0x103417,_0xaa2a7d,_0x5778cc,_0x5463e8,_0x26d8cb,_0x12d2b0,_0x44cbc6,_0x202d71){const _0x10bff7=_0x3948cf;super(_0x2a077a,_0x19cf81,_0x996b05,_0x14b06a,_0x30739d,_0x584de9,_0x581449,_0x198b54,_0x5463e8,_0x26d8cb,_0x12d2b0,_0x44cbc6,_0x202d71),this[_0x10bff7(0x397)]=_0x2a077a,this[_0x10bff7(0x181)]=_0x996b05,this['_docStateChangeManagerService']=_0x5275ef,this[_0x10bff7(0x286)]=_0x41d984,this[_0x10bff7(0x359)]=_0x103417,this['_docTransformSelectionsService']=_0xaa2a7d,this['_docSyncEditingCollabCursorService']=_0x5778cc;}['_createHandler'](){const _0x5b4e5a=_0x3948cf,_0x27d3dd=super[_0x5b4e5a(0x53e)]();return _0x27d3dd[_0x5b4e5a(0x20a)]=_0x31f7b3=>this['_docTransformIMECacheService'][_0x5b4e5a(0x549)](_0x31f7b3),_0x27d3dd[_0x5b4e5a(0x322)]=_0x18a088=>this['_docTransformStateCacheService'][_0x5b4e5a(0x2c2)](_0x18a088),_0x27d3dd['onTransformSelections']=_0x9bffaf=>this['_docTransformSelectionsService']['transformSelections'](_0x9bffaf),_0x27d3dd[_0x5b4e5a(0x388)]=_0xf3801f=>this[_0x5b4e5a(0x531)][_0x5b4e5a(0x3bf)](_0xf3801f),_0x27d3dd[_0x5b4e5a(0x57e)]=_0x3aad3d=>this[_0x5b4e5a(0x286)][_0x5b4e5a(0x5b4)](_0x3aad3d),_0x27d3dd[_0x5b4e5a(0x5b7)]=_0x31ba24=>this['_docTransformStateCacheService'][_0x5b4e5a(0x5b4)](_0x31ba24),_0x27d3dd;}async[_0x3948cf(0x528)](){const _0x54bd44=_0x3948cf,_0x38861d=await super['_init']();return this['_docStateChangeManagerService'][_0x54bd44(0x608)][_0x54bd44(0x3c1)](_0x3fbd04[_0x54bd44(0x233)](this[_0x54bd44(0x1a1)]))[_0x54bd44(0x577)](_0x3eeef6=>{const _0x518c48=_0x54bd44;if(_0x3eeef6==null)return;const {unitId:_0xe16916,redoState:_0x56a9e4,commandId:_0x53000a}=_0x3eeef6;if(_0xe16916!==this['unitID'])return;const _0x2fab2a={'id':_0x53000a,'type':_0x223914[_0x518c48(0x203)][_0x518c48(0x5c5)],'params':{'unitId':_0xe16916,'actions':_0x56a9e4[_0x518c48(0x352)],'textRanges':null}};this['_onLocalMutation'](_0x2fab2a);}),_0x38861d;}},_0x24454f[_0x3948cf(0x19f)]=_0x33de33([_0x15ab00(0x3,_0x223914['Inject'](_0x223914[_0x3948cf(0x478)])),_0x15ab00(0x4,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x15ab00(0x5,_0x223914[_0x3948cf(0x25f)](_0x9ea725['CompressMutationService'])),_0x15ab00(0x6,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x570)])),_0x15ab00(0x7,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x364)])),_0x15ab00(0x8,_0x223914[_0x3948cf(0x25f)](_0x13e81e[_0x3948cf(0x534)])),_0x15ab00(0x9,_0x223914[_0x3948cf(0x25f)](_0x2e6349)),_0x15ab00(0xa,_0x223914[_0x3948cf(0x25f)](_0x5cf7bf)),_0x15ab00(0xb,_0x223914[_0x3948cf(0x25f)](_0x5cbe2c)),_0x15ab00(0xc,_0x223914[_0x3948cf(0x25f)](_0x4de645)),_0x15ab00(0xd,_0x223914[_0x3948cf(0x5b0)]),_0x15ab00(0xe,_0x223914[_0x3948cf(0x38e)]),_0x15ab00(0xf,_0x405b11[_0x3948cf(0x1cc)]),_0x15ab00(0x10,_0x223914[_0x3948cf(0x1ac)]),_0x15ab00(0x11,_0x223914[_0x3948cf(0x2b9)](_0x1b2f34))],_0x24454f[_0x3948cf(0x19f)]),_0x24454f[_0x3948cf(0x4cc)]=class extends _0x24454f['CollaborationEntity']{constructor(_0x133968,_0x50e276,_0x51c256,_0x5da431,_0x2cfa65,_0x44df37,_0x2a8c6d,_0x39e7f2,_0x5d69db,_0x3a4780,_0x405665,_0x51ac95,_0xee6512,_0x4e752d){const _0x498120=_0x3948cf;super(_0x133968,_0x51c256,_0x50e276,_0x5da431,_0x2cfa65,_0x44df37,_0x2a8c6d,_0x39e7f2,_0x3a4780,_0x405665,_0x51ac95,_0xee6512,_0x4e752d),this[_0x498120(0x397)]=_0x133968,this['type']=_0x50e276,this[_0x498120(0x51b)]=_0x5d69db;}[_0x3948cf(0x53e)](){const _0x5dc575=_0x3948cf,_0x5c092a=super[_0x5dc575(0x53e)]();return _0x5c092a['onTransformSelections']=_0x2f2f36=>this[_0x5dc575(0x51b)][_0x5dc575(0x2e1)](_0x2f2f36),_0x5c092a;}async[_0x3948cf(0x528)](){const _0x238aa3=_0x3948cf,_0x547770=await super[_0x238aa3(0x528)]();return this[_0x238aa3(0x345)](this[_0x238aa3(0x1b9)][_0x238aa3(0x509)]((_0x1c3f00,_0x1837a9)=>{const _0x3ac587=_0x238aa3;if(_0x1c3f00['type']!==_0x223914[_0x3ac587(0x203)][_0x3ac587(0x5c5)]||_0x1837a9!=null&&_0x1837a9[_0x3ac587(0x5e8)]||_0x1837a9!=null&&_0x1837a9[_0x3ac587(0x585)])return;const _0x166d86=_0x1c3f00[_0x3ac587(0x54d)];if((_0x166d86==null?void 0x0:_0x166d86[_0x3ac587(0x362)])!==this['unitID'])return;const _0x4f3511=_0x1c3f00,_0x28bdbf=this[_0x3ac587(0x510)][_0x3ac587(0x4e9)]['fetchThroughInterceptors'](this[_0x3ac587(0x510)]['interceptor'][_0x3ac587(0x5b8)]()[_0x3ac587(0x40b)])([_0x4f3511],null)||[_0x4f3511];this[_0x3ac587(0x3cf)](_0x28bdbf[0x0]);})),_0x547770;}},_0x24454f['SheetCollaborationEntity']=_0x33de33([_0x15ab00(0x3,_0x223914['Inject'](_0x223914[_0x3948cf(0x478)])),_0x15ab00(0x4,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x15ab00(0x5,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x494)])),_0x15ab00(0x6,_0x223914['Inject'](_0x223914[_0x3948cf(0x570)])),_0x15ab00(0x7,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x364)])),_0x15ab00(0x8,_0x223914[_0x3948cf(0x25f)](_0x42d852)),_0x15ab00(0x9,_0x223914[_0x3948cf(0x5b0)]),_0x15ab00(0xa,_0x223914['ICommandService']),_0x15ab00(0xb,_0x405b11[_0x3948cf(0x1cc)]),_0x15ab00(0xc,_0x223914[_0x3948cf(0x1ac)]),_0x15ab00(0xd,_0x223914['Optional'](_0x1b2f34))],_0x24454f[_0x3948cf(0x4cc)]);var _0x5588a0=Object['defineProperty'],_0x217fe1=Object[_0x3948cf(0x16b)],_0x445b70=(_0x5e6a47,_0x5dcd5e,_0xb5f5d7,_0x5bbd94)=>{const _0x56bd4b=_0x3948cf;for(var _0x1be19c=_0x5bbd94>0x1?void 0x0:_0x5bbd94?_0x217fe1(_0x5dcd5e,_0xb5f5d7):_0x5dcd5e,_0x5f0cf2=_0x5e6a47[_0x56bd4b(0x24c)]-0x1,_0x4a811e;_0x5f0cf2>=0x0;_0x5f0cf2--)(_0x4a811e=_0x5e6a47[_0x5f0cf2])&&(_0x1be19c=(_0x5bbd94?_0x4a811e(_0x5dcd5e,_0xb5f5d7,_0x1be19c):_0x4a811e(_0x1be19c))||_0x1be19c);return _0x5bbd94&&_0x1be19c&&_0x5588a0(_0x5dcd5e,_0xb5f5d7,_0x1be19c),_0x1be19c;},_0xcfdc0e=(_0x3ef3bf,_0x2eb5ef)=>(_0x19de4e,_0x15f661)=>_0x2eb5ef(_0x19de4e,_0x15f661,_0x3ef3bf);_0x24454f[_0x3948cf(0x35c)]=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0x78a52b,_0x4bda22,_0x16a185){const _0x1a8f89=_0x3948cf;super(),_0xeb55cc(this,'_entities',new Map()),_0xeb55cc(this,_0x1a8f89(0x15f),new _0x3fbd04['Subject']()),(this[_0x1a8f89(0x488)]=_0x78a52b,this[_0x1a8f89(0x253)]=_0x4bda22,this[_0x1a8f89(0x4ba)]=_0x16a185,this[_0x1a8f89(0x528)]());}[_0x3948cf(0x287)](){const _0x3d15dc=_0x3948cf;super[_0x3d15dc(0x287)](),this[_0x3d15dc(0x599)]['forEach'](_0x1b7231=>_0x1b7231[_0x3d15dc(0x287)]()),this[_0x3d15dc(0x599)][_0x3d15dc(0x2da)]();}[_0x3948cf(0x159)](_0x187ef7){const _0x45931a=_0x3948cf;var _0x272521;return(_0x272521=this['_entities'][_0x45931a(0x55a)](_0x187ef7))!=null?_0x272521:null;}['getCollabEntity$'](_0xa24c05){const _0x407d03=_0x3948cf,_0x8a424f=this[_0x407d03(0x159)](_0xa24c05);return _0x8a424f?_0x3fbd04['of'](_0x8a424f):this[_0x407d03(0x15f)][_0x407d03(0x3c1)](_0x4da2a9[_0x407d03(0x256)](_0x595c47=>_0x595c47[_0x407d03(0x397)]===_0xa24c05));}[_0x3948cf(0x528)](){const _0x26eea5=_0x3948cf;this[_0x26eea5(0x4ba)][_0x26eea5(0x42e)](_0x223914['UniverInstanceType'][_0x26eea5(0x18d)])[_0x26eea5(0x3c1)](_0x3fbd04[_0x26eea5(0x233)](this['dispose$']),_0x4da2a9[_0x26eea5(0x301)](0x10))[_0x26eea5(0x577)](async _0x4a1c68=>{const _0x434ad2=_0x26eea5,_0x560210=_0x4a1c68[_0x434ad2(0x38c)](),_0x335385=await this['_startCollaboration'](_0x560210,_0x50449d[_0x434ad2(0x18d)]);this['_entities'][_0x434ad2(0x1f2)](_0x560210,_0x335385);}),this[_0x26eea5(0x4ba)][_0x26eea5(0x42e)](_0x223914[_0x26eea5(0x53b)][_0x26eea5(0x30c)])[_0x26eea5(0x3c1)](_0x3fbd04[_0x26eea5(0x233)](this[_0x26eea5(0x1a1)]),_0x4da2a9[_0x26eea5(0x301)](0x10))[_0x26eea5(0x3c1)](_0x4da2a9[_0x26eea5(0x256)](_0x45c7c4=>!_0x45c7c4[_0x26eea5(0x38c)]()[_0x26eea5(0x285)]('__')))['subscribe'](async _0x4f5f67=>{const _0x29a966=_0x26eea5,_0x459dba=_0x4f5f67['getUnitId'](),_0x30a3b4=await this[_0x29a966(0x324)](_0x459dba,_0x50449d[_0x29a966(0x30c)]);this[_0x29a966(0x599)]['set'](_0x459dba,_0x30a3b4);}),_0x3fbd04['merge'](this[_0x26eea5(0x4ba)][_0x26eea5(0x5ae)](_0x223914[_0x26eea5(0x53b)]['UNIVER_SHEET']),this[_0x26eea5(0x4ba)]['getTypeOfUnitDisposed$'](_0x223914['UniverInstanceType'][_0x26eea5(0x30c)]))[_0x26eea5(0x3c1)](_0x3fbd04['takeUntil'](this[_0x26eea5(0x1a1)]))[_0x26eea5(0x577)](_0x3d0ce4=>{const _0x4a1d0e=_0x26eea5,_0x3c34f9=_0x3d0ce4[_0x4a1d0e(0x38c)](),_0x528424=this['_entities'][_0x4a1d0e(0x55a)](_0x3c34f9);_0x528424&&(_0x528424[_0x4a1d0e(0x287)](),this['_entities']['delete'](_0x3c34f9));});}async['_startCollaboration'](_0x16df40,_0x44f24b){const _0x5a62fb=_0x3948cf,_0x25d4af=await this['_collabSessionService'][_0x5a62fb(0x4f3)](_0x16df40),_0xf77b96=this['_injector']['createInstance'](this[_0x5a62fb(0x403)](_0x44f24b),_0x16df40,_0x44f24b,_0x25d4af);return await _0xf77b96[_0x5a62fb(0x49a)](),this[_0x5a62fb(0x15f)][_0x5a62fb(0x490)](_0xf77b96),_0xf77b96;}[_0x3948cf(0x403)](_0x17114f){const _0xb02680=_0x3948cf;switch(_0x17114f){case _0x50449d[_0xb02680(0x30c)]:return _0x24454f[_0xb02680(0x19f)];case _0x50449d[_0xb02680(0x18d)]:return _0x24454f[_0xb02680(0x4cc)];default:throw new Error(_0xb02680(0x392)+_0x17114f);}}},_0x24454f[_0x3948cf(0x35c)]=_0x445b70([_0xcfdc0e(0x0,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0xcfdc0e(0x1,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x228)])),_0xcfdc0e(0x2,_0x223914[_0x3948cf(0x2dd)])],_0x24454f[_0x3948cf(0x35c)]);const _0x59ab9d=['purple300','jiqing500',_0x3948cf(0x576),_0x3948cf(0x551),_0x3948cf(0x4e6),_0x3948cf(0x282)];class _0x1f0109 extends _0x223914[_0x3948cf(0x2aa)]{constructor(){const _0x2272cb=_0x3948cf;super(...arguments),_0xeb55cc(this,_0x2272cb(0x37d),new Map()),_0xeb55cc(this,_0x2272cb(0x5b3),0x0);}[_0x3948cf(0x1b2)](_0x6d87d8){const _0x41143f=_0x3948cf;if(this[_0x41143f(0x37d)][_0x41143f(0x58e)](_0x6d87d8))return this[_0x41143f(0x37d)][_0x41143f(0x55a)](_0x6d87d8);const _0x31f3d9=_0x59ab9d[this['_colorIndex']];return this[_0x41143f(0x5b3)]=(this[_0x41143f(0x5b3)]+0x1)%_0x59ab9d['length'],this[_0x41143f(0x37d)][_0x41143f(0x1f2)](_0x6d87d8,_0x31f3d9),_0x31f3d9;}}var _0x19f6af=Object[_0x3948cf(0x149)],_0x3e994c=Object[_0x3948cf(0x16b)],_0x56b135=(_0x2e5591,_0x5c2194,_0x45ccd5,_0x12131d)=>{const _0x55c061=_0x3948cf;for(var _0x47eec8=_0x12131d>0x1?void 0x0:_0x12131d?_0x3e994c(_0x5c2194,_0x45ccd5):_0x5c2194,_0x2b7343=_0x2e5591[_0x55c061(0x24c)]-0x1,_0x3b502a;_0x2b7343>=0x0;_0x2b7343--)(_0x3b502a=_0x2e5591[_0x2b7343])&&(_0x47eec8=(_0x12131d?_0x3b502a(_0x5c2194,_0x45ccd5,_0x47eec8):_0x3b502a(_0x47eec8))||_0x47eec8);return _0x12131d&&_0x47eec8&&_0x19f6af(_0x5c2194,_0x45ccd5,_0x47eec8),_0x47eec8;},_0x5693ab=(_0x25729a,_0x5ca460)=>(_0x3cfe72,_0x53a69c)=>_0x5ca460(_0x3cfe72,_0x53a69c,_0x25729a);const _0x1a4e41=0x12c,_0x2bf579=0x64;let _0x3d9b3f=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0x1f9749,_0x3333bb,_0x36e642,_0x8f9026,_0x2373e3,_0x163e45,_0x35c35b,_0x2f3f22,_0x48078c){const _0x3f3e46=_0x3948cf;super(),_0xeb55cc(this,'_online',!0x1),_0xeb55cc(this,_0x3f3e46(0x528),!0x1),_0xeb55cc(this,_0x3f3e46(0x283),new _0x3fbd04[(_0x3f3e46(0x2e0))](new Map())),_0xeb55cc(this,_0x3f3e46(0x377),this['_cursorInfo$']['asObservable']()),_0xeb55cc(this,_0x3f3e46(0x1da),new _0x3fbd04[(_0x3f3e46(0x2e0))]([])),_0xeb55cc(this,_0x3f3e46(0x5b9),this['_roomMembers$'][_0x3f3e46(0x3c1)](_0x3fbd04[_0x3f3e46(0x42f)](_0x1a4e41))),_0xeb55cc(this,'_updateLocalCursor',_0x223914[_0x3f3e46(0x1aa)](_0x4c4605=>{const _0xff2a25=_0x3f3e46,_0x5e80c9={'eventID':_0x9ea725[_0xff2a25(0x140)][_0xff2a25(0x48e)],'data':{'unitID':this[_0xff2a25(0x397)],'memberID':this['_session'][_0xff2a25(0x1d1)](),'selection':_0x1ccc89(_0x4c4605)}};this[_0xff2a25(0x57c)]['send'](_0x5e80c9,this['unitID']);},_0x2bf579)),(this[_0x3f3e46(0x397)]=_0x1f9749,this['_session']=_0x3333bb,this[_0x3f3e46(0x488)]=_0x36e642,this[_0x3f3e46(0x4a5)]=_0x8f9026,this[_0x3f3e46(0x438)]=_0x2373e3,this[_0x3f3e46(0x3fa)]=_0x163e45,this[_0x3f3e46(0x42b)]=_0x35c35b,this[_0x3f3e46(0x4ba)]=_0x2f3f22,this[_0x3f3e46(0x1b9)]=_0x48078c);}get[_0x3948cf(0x2f5)](){const _0x7762e6=_0x3948cf;return this[_0x7762e6(0x283)][_0x7762e6(0x4ff)]();}get['roomMembers'](){const _0x535bf2=_0x3948cf;return this[_0x535bf2(0x1da)][_0x535bf2(0x4ff)]();}[_0x3948cf(0x287)](){const _0x4ff6da=_0x3948cf;super[_0x4ff6da(0x287)](),this[_0x4ff6da(0x283)][_0x4ff6da(0x490)](new Map()),this['_cursorInfo$'][_0x4ff6da(0x14b)](),this['_roomMembers$'][_0x4ff6da(0x490)]([]),this[_0x4ff6da(0x1da)][_0x4ff6da(0x14b)]();}['init'](){const _0x13c33e=_0x3948cf;this[_0x13c33e(0x528)]||(this['_init']=!0x0,this[_0x13c33e(0x57c)][_0x13c33e(0x343)]['pipe'](_0x3fbd04[_0x13c33e(0x233)](this[_0x13c33e(0x1a1)]))[_0x13c33e(0x577)](_0x3beebc=>{const _0x3d5501=_0x13c33e;_0x3beebc===_0x1efc5b[_0x3d5501(0x3c6)]?this[_0x3d5501(0x25a)]():this[_0x3d5501(0x196)]();}),this[_0x13c33e(0x57c)][_0x13c33e(0x581)][_0x13c33e(0x3c1)](_0x3fbd04['takeUntil'](this['dispose$']))[_0x13c33e(0x577)](_0x4b1134=>{const _0x180733=_0x13c33e,_0x33af4b=_0x4b1134[_0x180733(0x5ea)];_0x33af4b===_0x9ea725[_0x180733(0x140)][_0x180733(0x48e)]&&this[_0x180733(0x162)](_0x4b1134),_0x33af4b===_0x9ea725['CollaborationEvent'][_0x180733(0x5a3)]&&this[_0x180733(0x44a)](_0x4b1134);}),this[_0x13c33e(0x345)](this['_commandService'][_0x13c33e(0x509)](_0x251fa1=>{const _0x1fb37c=_0x13c33e,_0xb1b3a9=_0x251fa1[_0x1fb37c(0x54d)];_0xb1b3a9!=null&&this[_0x1fb37c(0x529)]&&_0x251fa1['id']===_0x4a2356['SetTextSelectionsOperation']['id']&&_0xb1b3a9['unitId']===this[_0x1fb37c(0x397)]&&_0xb1b3a9[_0x1fb37c(0x5e1)]===!0x1&&_0xb1b3a9['ranges'][_0x1fb37c(0x24c)]>0x0&&this[_0x1fb37c(0x28e)](_0xb1b3a9[_0x1fb37c(0x3e0)]);})),this[_0x13c33e(0x3fa)][_0x13c33e(0x152)][_0x13c33e(0x3c1)](_0x3fbd04[_0x13c33e(0x233)](this[_0x13c33e(0x1a1)]))['subscribe'](_0x35f688=>{const _0x16231c=_0x13c33e;if((_0x35f688==null?void 0x0:_0x35f688[_0x16231c(0x397)])!==this[_0x16231c(0x397)])return;const _0x4c513a={'eventID':_0x9ea725[_0x16231c(0x140)][_0x16231c(0x48e)],'data':_0x35f688};this[_0x16231c(0x162)](_0x4c513a);}),this[_0x13c33e(0x345)](this[_0x13c33e(0x1b9)][_0x13c33e(0x509)](_0x2b90e9=>{const _0x149ca6=_0x13c33e;if(_0x2b90e9[_0x149ca6(0x54d)]==null)return;const _0x20fe98=_0x2b90e9[_0x149ca6(0x54d)];if(_0x2b90e9['id']!==_0x4a2356['RichTextEditingMutation']['id']||_0x20fe98[_0x149ca6(0x362)]!==this['unitID'])return;const _0x5e3d7a={'id':'doc.mutation.rich-text-editing','params':_0x20fe98},_0x14a89e=this['cursorInfo'];for(const [_0x1eb3e6,_0x2446c8]of _0x14a89e){const _0x393477={'id':_0x149ca6(0x3d8),'params':{'unitId':this[_0x149ca6(0x397)],'actions':null,'textRanges':_0x2446c8[_0x149ca6(0x3e0)]}},_0x3c4772=this[_0x149ca6(0x42b)][_0x149ca6(0x212)](_0x5e3d7a,_0x393477,!0x1);if(_0x9ea725[_0x149ca6(0x375)](_0x3c4772))throw _0x3c4772['error'];_0x14a89e[_0x149ca6(0x1f2)](_0x1eb3e6,{..._0x2446c8,'ranges':_0x3c4772[_0x149ca6(0x521)][_0x149ca6(0x54d)][_0x149ca6(0x27b)]});}queueMicrotask(()=>{const _0x1012eb=_0x149ca6;this[_0x1012eb(0x283)][_0x1012eb(0x490)](_0x14a89e);});})));}[_0x3948cf(0x162)](_0xa61288){const _0x2dd09f=_0x3948cf;var _0x507f06,_0x3d35c9;const {memberID:_0x4cec20,selection:_0x49ac63}=_0xa61288[_0x2dd09f(0x390)],_0x515a13=_0x1529db(_0x49ac63),_0x1c1a77=(_0x3d35c9=(_0x507f06=this[_0x2dd09f(0x438)]['getMember'](this[_0x2dd09f(0x397)],_0x4cec20))==null?void 0x0:_0x507f06[_0x2dd09f(0x289)])!=null?_0x3d35c9:_0x2dd09f(0x4c0),_0x34c535={'color':this[_0x2dd09f(0x4a5)][_0x2dd09f(0x1b2)](_0x4cec20),'name':_0x1c1a77,'ranges':_0x515a13},_0x469f4a=this[_0x2dd09f(0x2f5)];_0x469f4a['set'](_0x4cec20,_0x34c535),this['_cursorInfo$'][_0x2dd09f(0x490)](_0x469f4a);}['_onCursorDelete'](_0x5a54f5){const _0x31a691=_0x3948cf,{memberID:_0x489092}=_0x5a54f5[_0x31a691(0x390)],_0xbe4b30=this[_0x31a691(0x2f5)];_0xbe4b30[_0x31a691(0x45a)](_0x489092),this[_0x31a691(0x283)][_0x31a691(0x490)](_0xbe4b30);}['_toggleOnline'](){const _0x6a2046=_0x3948cf;var _0x2da9fa;if(this[_0x6a2046(0x529)]=!0x0,((_0x2da9fa=this[_0x6a2046(0x4ba)][_0x6a2046(0x3ac)]())==null?void 0x0:_0x2da9fa[_0x6a2046(0x38c)]())!==this['unitID'])return;const _0x2b6133=this[_0x6a2046(0x488)]['get'](_0x4a2356[_0x6a2046(0x31a)])[_0x6a2046(0x3b4)]();Array[_0x6a2046(0x462)](_0x2b6133)&&_0x2b6133['length']>0x0&&this[_0x6a2046(0x28e)](_0x2b6133);}['_toggleOffline'](){const _0x4e1953=_0x3948cf;this[_0x4e1953(0x529)]=!0x1;}};_0x3d9b3f=_0x56b135([_0x5693ab(0x2,_0x223914[_0x3948cf(0x25f)](_0x223914['Injector'])),_0x5693ab(0x3,_0x223914['Inject'](_0x1f0109)),_0x5693ab(0x4,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x48b)])),_0x5693ab(0x5,_0x223914[_0x3948cf(0x25f)](_0x4de645)),_0x5693ab(0x6,_0x9ea725[_0x3948cf(0x1b6)]),_0x5693ab(0x7,_0x223914[_0x3948cf(0x2dd)]),_0x5693ab(0x8,_0x223914[_0x3948cf(0x38e)])],_0x3d9b3f);var _0x2f2742=Object['defineProperty'],_0x34c798=Object[_0x3948cf(0x16b)],_0x2f9bed=(_0x32a034,_0x24e73a,_0x2fd43c,_0x5d4c83)=>{const _0x541413=_0x3948cf;for(var _0x21be7c=_0x5d4c83>0x1?void 0x0:_0x5d4c83?_0x34c798(_0x24e73a,_0x2fd43c):_0x24e73a,_0x4ef739=_0x32a034[_0x541413(0x24c)]-0x1,_0x36edb5;_0x4ef739>=0x0;_0x4ef739--)(_0x36edb5=_0x32a034[_0x4ef739])&&(_0x21be7c=(_0x5d4c83?_0x36edb5(_0x24e73a,_0x2fd43c,_0x21be7c):_0x36edb5(_0x21be7c))||_0x21be7c);return _0x5d4c83&&_0x21be7c&&_0x2f2742(_0x24e73a,_0x2fd43c,_0x21be7c),_0x21be7c;},_0x18efa0=(_0x44eece,_0x34270f)=>(_0x107e97,_0x411556)=>_0x34270f(_0x107e97,_0x411556,_0x44eece);const _0x219894=0x12c,_0x4f2a6f=0x64,_0x236e6d=()=>{let _0x2a2153=[],_0x4ce0c7=!0x1;return _0x3c4316=>{const _0x3f5be6=_0x5201;_0x2a2153[_0x3f5be6(0x4ef)](_0x3c4316),_0x4ce0c7||(_0x4ce0c7=!0x0,setTimeout(()=>{const _0x45c3aa=_0x3f5be6;_0x2a2153[_0x45c3aa(0x24f)](_0x4a32ee=>_0x4a32ee()),_0x2a2153=[],_0x4ce0c7=!0x1;}));};};let _0x15bcb2=class extends _0x223914['RxDisposable']{constructor(_0x149632,_0x448861,_0x497356,_0x384729,_0x425f6d,_0x43e1ce,_0x217066,_0x3d038b){const _0x413e22=_0x3948cf;super(),_0xeb55cc(this,_0x413e22(0x529),!0x1),_0xeb55cc(this,'_init',!0x1),_0xeb55cc(this,_0x413e22(0x283),new _0x3fbd04['BehaviorSubject'](new Map())),_0xeb55cc(this,_0x413e22(0x377),this[_0x413e22(0x283)]['asObservable']()),_0xeb55cc(this,'_roomMembers$',new _0x3fbd04[(_0x413e22(0x2e0))]([])),_0xeb55cc(this,_0x413e22(0x5b9),this[_0x413e22(0x1da)][_0x413e22(0x3c1)](_0x3fbd04[_0x413e22(0x42f)](_0x219894))),_0xeb55cc(this,_0x413e22(0x28e),_0x223914[_0x413e22(0x1aa)]((_0x2d39a8,_0x15e9da)=>{const _0x9dbf9=_0x413e22,_0x31773e={'eventID':_0x9ea725[_0x9dbf9(0x140)][_0x9dbf9(0x48e)],'data':{'unitID':this[_0x9dbf9(0x397)],'memberID':this[_0x9dbf9(0x57c)][_0x9dbf9(0x1d1)](),'selection':_0x2199c2[_0x9dbf9(0x43d)](_0x2d39a8,_0x15e9da[_0x9dbf9(0x3c0)])}};this[_0x9dbf9(0x57c)][_0x9dbf9(0x28f)](_0x31773e,this[_0x9dbf9(0x397)]);},_0x4f2a6f)),(this[_0x413e22(0x397)]=_0x149632,this[_0x413e22(0x57c)]=_0x448861,this[_0x413e22(0x488)]=_0x497356,this[_0x413e22(0x4a5)]=_0x384729,this[_0x413e22(0x438)]=_0x425f6d,this[_0x413e22(0x4ba)]=_0x43e1ce,this[_0x413e22(0x1b9)]=_0x217066,this[_0x413e22(0x3b6)]=_0x3d038b);}get[_0x3948cf(0x2f5)](){const _0x1ec1b9=_0x3948cf;return this[_0x1ec1b9(0x283)][_0x1ec1b9(0x4ff)]();}get[_0x3948cf(0x412)](){const _0x380d84=_0x3948cf;return this[_0x380d84(0x1da)][_0x380d84(0x4ff)]();}[_0x3948cf(0x287)](){const _0xc4d20=_0x3948cf;super[_0xc4d20(0x287)](),this[_0xc4d20(0x283)]['next'](new Map()),this['_cursorInfo$'][_0xc4d20(0x14b)](),this['_roomMembers$'][_0xc4d20(0x490)]([]),this[_0xc4d20(0x1da)][_0xc4d20(0x14b)]();}[_0x3948cf(0x49a)](){const _0x9bd98e=_0x3948cf;this[_0x9bd98e(0x528)]||(this[_0x9bd98e(0x528)]=!0x0,this[_0x9bd98e(0x57c)][_0x9bd98e(0x343)][_0x9bd98e(0x3c1)](_0x3fbd04[_0x9bd98e(0x233)](this[_0x9bd98e(0x1a1)]))[_0x9bd98e(0x577)](_0x56724=>{const _0x3135c9=_0x9bd98e;_0x56724===_0x1efc5b['ONLINE']?this['_toggleOnline']():this[_0x3135c9(0x196)]();}),this[_0x9bd98e(0x57c)][_0x9bd98e(0x581)][_0x9bd98e(0x3c1)](_0x3fbd04[_0x9bd98e(0x233)](this[_0x9bd98e(0x1a1)]))[_0x9bd98e(0x577)](_0xc1e6ce=>{const _0x1c07e4=_0x9bd98e,_0x26d173=_0xc1e6ce['eventID'];_0x26d173===_0x9ea725[_0x1c07e4(0x140)]['UPDATE_CURSOR']&&this[_0x1c07e4(0x162)](_0xc1e6ce),_0x26d173===_0x9ea725[_0x1c07e4(0x140)][_0x1c07e4(0x5a3)]&&this[_0x1c07e4(0x44a)](_0xc1e6ce);}),this[_0x9bd98e(0x219)](),this[_0x9bd98e(0x345)](this[_0x9bd98e(0x1b9)][_0x9bd98e(0x509)](_0x4bda2a=>{const _0x22f963=_0x9bd98e;if(this[_0x22f963(0x529)]&&_0x4bda2a['id']===_0x59e5a9[_0x22f963(0x25d)]['id']&&_0x4bda2a['params']['unitId']===this['unitID']){const _0x405058=_0x4bda2a['params'];this[_0x22f963(0x28e)](_0x405058[_0x22f963(0x1e6)],_0x405058[_0x22f963(0x35b)][0x0]);}})));}['_onCursorUpdate'](_0xa0e18b){const _0x3b08d3=_0x3948cf;var _0x1edcc5,_0x3d02a8;const {memberID:_0x20b390,selection:_0x50cf27}=_0xa0e18b[_0x3b08d3(0x390)],{sheetName:_0x5abb65,range:_0x712ac8}=_0x2199c2[_0x3b08d3(0x20b)](_0x50cf27),_0x1c245c={'name':(_0x3d02a8=(_0x1edcc5=this[_0x3b08d3(0x438)][_0x3b08d3(0x1d0)](this[_0x3b08d3(0x397)],_0x20b390))==null?void 0x0:_0x1edcc5[_0x3b08d3(0x289)])!=null?_0x3d02a8:_0x3b08d3(0x4c0),'range':this['_getMergeRange'](_0x5abb65,_0x712ac8),'sheetID':_0x5abb65,'color':this[_0x3b08d3(0x4a5)][_0x3b08d3(0x1b2)](_0x20b390),'selection':_0x50cf27},_0xbf8729=this['cursorInfo'];_0xbf8729[_0x3b08d3(0x1f2)](_0x20b390,_0x1c245c),this[_0x3b08d3(0x283)]['next'](_0xbf8729);}['_onCursorDelete'](_0x200b3a){const _0x37290f=_0x3948cf,{memberID:_0x479f13}=_0x200b3a[_0x37290f(0x390)],_0x184e59=this['cursorInfo'];_0x184e59['delete'](_0x479f13),this[_0x37290f(0x283)][_0x37290f(0x490)](_0x184e59);}[_0x3948cf(0x16a)](_0xaf7f7d,_0x378012){const _0x123bb7=_0x3948cf;var _0xd6b8d2,_0x128663;const _0x1a73e9=(_0x128663=(_0xd6b8d2=this[_0x123bb7(0x4ba)][_0x123bb7(0x417)](this[_0x123bb7(0x397)]))==null?void 0x0:_0xd6b8d2[_0x123bb7(0x460)](_0xaf7f7d))==null?void 0x0:_0x128663[_0x123bb7(0x4c6)]();return(_0x1a73e9==null?void 0x0:_0x1a73e9[_0x123bb7(0x26d)](_0x778698=>_0x223914[_0x123bb7(0x461)][_0x123bb7(0x5aa)](_0x778698,_0x378012)))||_0x378012;}[_0x3948cf(0x219)](){const _0x5ebaff=_0x3948cf,_0x1aeffa=new _0x223914[(_0x5ebaff(0x382))](),_0x260890=_0x236e6d(),_0x56edf4=()=>{const _0x3ff71d=_0x5ebaff;_0x1aeffa[_0x3ff71d(0x287)]();const _0x3e966e=(_0x1378ec,_0x3d1167,_0x65f843,_0x35ce2c)=>{const _0x141ee2=_0x3ff71d;let _0x954bf6=[];switch(_0x1378ec['id']){case _0x59e5a9[_0x141ee2(0x317)][_0x141ee2(0x17a)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x4ad)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9['EffectRefRangId'][_0x141ee2(0x444)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x57a)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9[_0x141ee2(0x317)][_0x141ee2(0x465)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x573)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9[_0x141ee2(0x317)][_0x141ee2(0x1c2)]:{_0x954bf6=_0x59e5a9['handleInsertRangeMoveDown'](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9['EffectRefRangId'][_0x141ee2(0x34c)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x202)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9['EffectRefRangId'][_0x141ee2(0x3a8)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x3c7)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9[_0x141ee2(0x317)][_0x141ee2(0x5f9)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x597)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9[_0x141ee2(0x317)][_0x141ee2(0x5e7)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x22b)](_0x1378ec,_0x35ce2c);break;}case _0x59e5a9['EffectRefRangId'][_0x141ee2(0x296)]:{_0x954bf6=_0x59e5a9[_0x141ee2(0x567)](_0x1378ec,_0x35ce2c);break;}}const _0x2da787=_0x59e5a9[_0x141ee2(0x4eb)](_0x954bf6,_0x35ce2c),_0x199be0=this[_0x141ee2(0x2f5)][_0x141ee2(0x55a)](_0x3d1167);if(_0x199be0&&_0x2da787){const _0x35737e={..._0x199be0,'range':_0x2da787};this['cursorInfo']['set'](_0x3d1167,_0x35737e),_0x260890(()=>{const _0x4421f4=_0x141ee2,_0x59f98d=this[_0x4421f4(0x3b6)][_0x4421f4(0x175)](_0x2da787,_0x3771b1=>(_0x59f98d['dispose'](),_0x3e966e(_0x3771b1,_0x3d1167,_0x65f843,_0x2da787)));_0x1aeffa[_0x4421f4(0x240)](_0x59f98d);});}return{'redos':[],'undos':[]};};this[_0x3ff71d(0x2f5)][_0x3ff71d(0x24f)]((_0xdc2308,_0x24d38b)=>{const _0x11f810=_0x3ff71d,{range:_0x3dcbfd,sheetID:_0x588629}=_0xdc2308,_0x1a98b2=this['_refRangeService'][_0x11f810(0x175)](_0x3dcbfd,_0x41fc09=>(_0x1a98b2[_0x11f810(0x287)](),_0x3e966e(_0x41fc09,_0x24d38b,_0x588629,_0x3dcbfd)));_0x1aeffa['add'](_0x1a98b2);});};this[_0x5ebaff(0x345)](_0x223914[_0x5ebaff(0x238)](this[_0x5ebaff(0x283)]['subscribe'](()=>{_0x56edf4();})));}[_0x3948cf(0x25a)](){const _0x5d5548=_0x3948cf;var _0x5c6ec6,_0x10645d;if(this[_0x5d5548(0x529)]=!0x0,((_0x5c6ec6=this[_0x5d5548(0x4ba)][_0x5d5548(0x3ac)]())==null?void 0x0:_0x5c6ec6[_0x5d5548(0x38c)]())!==this[_0x5d5548(0x397)])return;const _0x22b1a0=(_0x10645d=this['_injector'][_0x5d5548(0x55a)](_0x59e5a9['SheetsSelectionsService'])[_0x5d5548(0x21e)]())==null?void 0x0:_0x10645d[0x0],_0x10c48b=this['_univerInstanceService']['getCurrentUnitForType'](_0x223914[_0x5d5548(0x53b)]['UNIVER_SHEET'])[_0x5d5548(0x3d2)]();_0x22b1a0&&_0x10c48b&&this[_0x5d5548(0x28e)](_0x10c48b[_0x5d5548(0x1b4)](),_0x22b1a0);}[_0x3948cf(0x196)](){const _0x4df74a=_0x3948cf;this[_0x4df74a(0x529)]=!0x1;}};_0x15bcb2=_0x2f9bed([_0x18efa0(0x2,_0x223914[_0x3948cf(0x25f)](_0x223914['Injector'])),_0x18efa0(0x3,_0x223914['Inject'](_0x1f0109)),_0x18efa0(0x4,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x48b)])),_0x18efa0(0x5,_0x223914['IUniverInstanceService']),_0x18efa0(0x6,_0x223914[_0x3948cf(0x38e)]),_0x18efa0(0x7,_0x223914[_0x3948cf(0x25f)](_0x59e5a9[_0x3948cf(0x237)]))],_0x15bcb2);var _0xda7584=Object[_0x3948cf(0x149)],_0x9df8f7=Object[_0x3948cf(0x16b)],_0x522800=(_0x429296,_0x4f95ca,_0x1a05f0,_0x58e7c5)=>{const _0x2a0b66=_0x3948cf;for(var _0x3895f7=_0x58e7c5>0x1?void 0x0:_0x58e7c5?_0x9df8f7(_0x4f95ca,_0x1a05f0):_0x4f95ca,_0x4f7dd5=_0x429296[_0x2a0b66(0x24c)]-0x1,_0x5a6405;_0x4f7dd5>=0x0;_0x4f7dd5--)(_0x5a6405=_0x429296[_0x4f7dd5])&&(_0x3895f7=(_0x58e7c5?_0x5a6405(_0x4f95ca,_0x1a05f0,_0x3895f7):_0x5a6405(_0x3895f7))||_0x3895f7);return _0x58e7c5&&_0x3895f7&&_0xda7584(_0x4f95ca,_0x1a05f0,_0x3895f7),_0x3895f7;},_0x453710=(_0x4c6d30,_0x3945e3)=>(_0x301532,_0x1f857b)=>_0x3945e3(_0x301532,_0x1f857b,_0x4c6d30);let _0x167308=class extends _0x223914['RxDisposable']{constructor(_0x5dc582,_0x1b01fd,_0x2573b4){const _0x30782e=_0x3948cf;super(),_0xeb55cc(this,_0x30782e(0x599),new Map()),_0xeb55cc(this,_0x30782e(0x15f),new _0x3fbd04[(_0x30782e(0x1f4))]()),(this[_0x30782e(0x4ba)]=_0x5dc582,this[_0x30782e(0x488)]=_0x1b01fd,this[_0x30782e(0x253)]=_0x2573b4,this['_init']());}[_0x3948cf(0x287)](){const _0x17c5ee=_0x3948cf;super['dispose'](),this[_0x17c5ee(0x15f)][_0x17c5ee(0x14b)](),this['_entities'][_0x17c5ee(0x24f)](_0x3afef8=>_0x3afef8[_0x17c5ee(0x287)]());}['getCollabCursors$'](_0x12037c){const _0x314e42=_0x3948cf;return this[_0x314e42(0x599)][_0x314e42(0x58e)](_0x12037c)?this[_0x314e42(0x599)]['get'](_0x12037c)[_0x314e42(0x377)]:this[_0x314e42(0x15f)]['pipe'](_0x3fbd04[_0x314e42(0x256)](_0x475074=>_0x475074[_0x314e42(0x397)]===_0x12037c),_0x3fbd04['switchMap'](_0x251cdc=>_0x251cdc[_0x314e42(0x377)]));}[_0x3948cf(0x528)](){const _0x1089b2=_0x3948cf;this[_0x1089b2(0x4ba)][_0x1089b2(0x42e)](_0x223914[_0x1089b2(0x53b)][_0x1089b2(0x18d)])[_0x1089b2(0x3c1)](_0x3fbd04[_0x1089b2(0x233)](this[_0x1089b2(0x1a1)]))[_0x1089b2(0x577)](async _0x482f95=>{const _0x5d1f5a=_0x1089b2,_0x343357=_0x482f95['getUnitId'](),_0x22aa6e=await this[_0x5d1f5a(0x22a)](_0x343357);this['_entityInit$'][_0x5d1f5a(0x490)](_0x22aa6e),this[_0x5d1f5a(0x599)][_0x5d1f5a(0x1f2)](_0x343357,_0x22aa6e);}),this[_0x1089b2(0x4ba)][_0x1089b2(0x42e)](_0x223914[_0x1089b2(0x53b)]['UNIVER_DOC'])[_0x1089b2(0x3c1)](_0x3fbd04[_0x1089b2(0x233)](this[_0x1089b2(0x1a1)]))[_0x1089b2(0x3c1)](_0x3fbd04[_0x1089b2(0x256)](_0x5b44d5=>!_0x5b44d5[_0x1089b2(0x38c)]()[_0x1089b2(0x285)]('__')))[_0x1089b2(0x577)](async _0x539b13=>{const _0x5ef752=_0x1089b2,_0x43566f=_0x539b13[_0x5ef752(0x38c)](),_0x4cdb0a=await this[_0x5ef752(0x58c)](_0x43566f);this[_0x5ef752(0x15f)][_0x5ef752(0x490)](_0x4cdb0a),this[_0x5ef752(0x599)]['set'](_0x43566f,_0x4cdb0a);}),_0x3fbd04[_0x1089b2(0x54c)](this[_0x1089b2(0x4ba)]['getTypeOfUnitDisposed$'](_0x223914['UniverInstanceType'][_0x1089b2(0x30c)]),this[_0x1089b2(0x4ba)][_0x1089b2(0x5ae)](_0x223914['UniverInstanceType']['UNIVER_SHEET']))[_0x1089b2(0x3c1)](_0x3fbd04[_0x1089b2(0x233)](this[_0x1089b2(0x1a1)]))[_0x1089b2(0x577)](_0x578b12=>{const _0x4aec29=_0x1089b2,_0x2d5f3e=_0x578b12['getUnitId'](),_0x1a2d3e=this['_entities'][_0x4aec29(0x55a)](_0x2d5f3e);_0x1a2d3e&&(_0x1a2d3e[_0x4aec29(0x287)](),this[_0x4aec29(0x599)]['delete'](_0x2d5f3e));});}async['_startSheetCollabCursor'](_0xfafa97){const _0x290849=_0x3948cf,_0x395362=await this[_0x290849(0x253)][_0x290849(0x4f3)](_0xfafa97),_0x589cab=this[_0x290849(0x488)]['createInstance'](_0x15bcb2,_0xfafa97,_0x395362);return _0x589cab[_0x290849(0x49a)](),_0x589cab;}async[_0x3948cf(0x58c)](_0x34be28){const _0x119d91=_0x3948cf,_0x2ff56b=await this['_collabSessionService']['requireSession'](_0x34be28),_0xe388dd=this['_injector'][_0x119d91(0x565)](_0x3d9b3f,_0x34be28,_0x2ff56b);return _0xe388dd[_0x119d91(0x49a)](),_0xe388dd;}};_0x167308=_0x522800([_0x453710(0x0,_0x223914['IUniverInstanceService']),_0x453710(0x1,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x453710(0x2,_0x223914['Inject'](_0x24454f[_0x3948cf(0x228)]))],_0x167308);const _0x597808=0x14,_0x5d063d=0xc8,_0x3b9a40=0x4,_0x1a2fb2=0x5;function _0x12e8bf(_0x1f00e4,_0x418037){const _0x142797=_0x3948cf;let {radius:_0x4fd39f,width:_0x230b76,height:_0x185c4b}=_0x418037;_0x4fd39f=_0x4fd39f!=null?_0x4fd39f:0x0,_0x230b76=_0x230b76!=null?_0x230b76:0x1e,_0x185c4b=_0x185c4b!=null?_0x185c4b:0x1e;let _0x2e9b15=0x0,_0x56dc12=0x0,_0x198320=0x0;_0x2e9b15=_0x56dc12=_0x198320=Math['min'](_0x4fd39f,_0x230b76/0x2,_0x185c4b/0x2),_0x1f00e4[_0x142797(0x323)](),_0x1f00e4[_0x142797(0x4fc)](_0x2e9b15,0x0),_0x1f00e4['lineTo'](_0x230b76-_0x56dc12,0x0),_0x1f00e4[_0x142797(0x168)](_0x230b76-_0x56dc12,_0x56dc12,_0x56dc12,Math['PI']*0x3/0x2,0x0,!0x1),_0x1f00e4[_0x142797(0x292)](_0x230b76,_0x185c4b-_0x198320),_0x1f00e4[_0x142797(0x168)](_0x230b76-_0x198320,_0x185c4b-_0x198320,_0x198320,0x0,Math['PI']/0x2,!0x1),_0x1f00e4[_0x142797(0x292)](0x0,_0x185c4b),_0x1f00e4[_0x142797(0x292)](0x0,_0x2e9b15),_0x1f00e4['arc'](_0x2e9b15,_0x2e9b15,_0x2e9b15,Math['PI'],Math['PI']*0x3/0x2,!0x1),_0x1f00e4[_0x142797(0x522)](),_0x418037[_0x142797(0x1c1)]&&(_0x1f00e4[_0x142797(0x4a1)](),_0x1f00e4[_0x142797(0x481)]=_0x418037[_0x142797(0x1c1)],_0x418037[_0x142797(0x5c8)]===_0x142797(0x418)?_0x1f00e4[_0x142797(0x1c1)]('evenodd'):_0x1f00e4[_0x142797(0x1c1)](),_0x1f00e4['restore']());}class _0x10e821 extends _0xdd060a[_0x3948cf(0x4c5)]{constructor(_0x4bdde4,_0x411705){const _0x1e8bde=_0x3948cf;super(_0x4bdde4,_0x411705),_0xeb55cc(this,'color'),_0xeb55cc(this,'text'),(this[_0x1e8bde(0x231)]=_0x411705==null?void 0x0:_0x411705[_0x1e8bde(0x231)],this['text']=_0x411705==null?void 0x0:_0x411705[_0x1e8bde(0x394)]);}static[_0x3948cf(0x3b1)](_0x3f3d52,_0x2744d4){const _0x493236=_0x3948cf,{text:_0x9b946b,color:_0x59cbcd}=_0x2744d4;_0x3f3d52[_0x493236(0x4a1)](),_0x3f3d52[_0x493236(0x2dc)]=_0x493236(0x3e2);const _0x3cfb9c=_0x3f3d52[_0x493236(0x58b)](_0x9b946b)[_0x493236(0x30d)],_0x31a5e1=Math['min'](_0x3cfb9c+0x2*_0x3b9a40,_0x5d063d);_0x12e8bf(_0x3f3d52,{'height':_0x597808,'radius':0x4,'width':_0x31a5e1,'fill':_0x59cbcd,'evented':!0x1}),_0x3f3d52[_0x493236(0x481)]=_0x493236(0x35a);const _0x910619=_0x3b9a40,_0x1a0e76=_0x597808-_0x1a2fb2,_0x42034f=_0x5d063d-0x2*_0x3b9a40;if(_0x3cfb9c>_0x42034f){let _0x1115d0='',_0x2b4cb2=0x0;for(const _0x171af9 of _0x9b946b){const _0x3febff=_0x3f3d52[_0x493236(0x58b)](_0x171af9)['width'];if(_0x2b4cb2+_0x3febff<=_0x42034f-_0x3f3d52[_0x493236(0x58b)](_0x493236(0x3dd))[_0x493236(0x30d)])_0x1115d0+=_0x171af9,_0x2b4cb2+=_0x3febff;else{_0x1115d0+='...';break;}}_0x3f3d52[_0x493236(0x433)](_0x1115d0,_0x910619,_0x1a0e76);}else _0x3f3d52[_0x493236(0x433)](_0x9b946b,_0x910619,_0x1a0e76);_0x3f3d52[_0x493236(0x167)]();}['_draw'](_0x32621a){const _0xfca496=_0x3948cf;_0x10e821[_0xfca496(0x3b1)](_0x32621a,this);}}const _0x2f2326=_0x3948cf(0x557),_0x3b532f=_0x3948cf(0x2a6),_0x51b801=_0x3948cf(0x4da),_0x44c31d=0x6,_0xa5f3f4=1.5,_0x28d53f=0x4,_0x1703df=1.5,_0x1b5fa4=_0x3948cf(0x5f0);class _0x3993da{constructor(_0x14d0bc,_0x5eba02,_0x4da2ac,_0x99a8d2){const _0x17e73d=_0x3948cf;_0xeb55cc(this,_0x17e73d(0x1a5),[]),_0xeb55cc(this,_0x17e73d(0x144),null),_0xeb55cc(this,_0x17e73d(0x5b6),null),_0xeb55cc(this,'_anchorDot',null),_0xeb55cc(this,_0x17e73d(0x36d),null),_0xeb55cc(this,_0x17e73d(0x4f9),null),(this[_0x17e73d(0x3be)]=_0x14d0bc,this['_scene']=_0x5eba02,this[_0x17e73d(0x596)]=_0x4da2ac,this['_document']=_0x99a8d2,this[_0x17e73d(0x499)]());}set['_hover'](_0x29318b){const _0xa56572=_0x3948cf;_0x29318b?(this[_0xa56572(0x16f)]&&this[_0xa56572(0x16f)]['hide'](),this[_0xa56572(0x5b6)]&&this[_0xa56572(0x5b6)][_0xa56572(0x46e)]()):(this[_0xa56572(0x16f)]&&this['_anchorDot'][_0xa56572(0x46e)](),this['_textBubble']&&this['_textBubble']['hide']());}[_0x3948cf(0x287)](){const _0x5e1844=_0x3948cf;for(const _0x4d4751 of this['_shapes'])_0x4d4751[_0x5e1844(0x287)]();this[_0x5e1844(0x5b6)]&&this[_0x5e1844(0x5b6)][_0x5e1844(0x287)](),this[_0x5e1844(0x16f)]&&this[_0x5e1844(0x16f)][_0x5e1844(0x287)](),this[_0x5e1844(0x144)]&&this['_anchor'][_0x5e1844(0x287)](),this[_0x5e1844(0x4f9)]&&this[_0x5e1844(0x4f9)]();}[_0x3948cf(0x499)](){const _0x1a5dfc=_0x3948cf;var _0x563ea9;const {_docSkeleton:_0x2d1c75,_document:_0x5cc7f0}=this,{color:_0x4b1193,name:_0xee1497,ranges:_0x2a093c}=this['_cursor'],_0xe691c=_0x5cc7f0[_0x1a5dfc(0x395)](),{docsLeft:_0x4fab0b,docsTop:_0x39e2b5}=_0xe691c,_0xca3b44=new _0x13e81e[(_0x1a5dfc(0x307))](_0xe691c,_0x2d1c75);for(const {startOffset:_0x4d6885,endOffset:_0x43279a,rangeType:_0x4fdd92,segmentId:_0x540dce,segmentPage:_0x216e16,collapsed:_0x223bf9,isActive:_0x10ce5f}of _0x2a093c){const _0x3d6932=_0x2d1c75[_0x1a5dfc(0x50b)](_0x4d6885,!0x0,_0x540dce,_0x216e16);let _0x1ed356=_0x2d1c75[_0x1a5dfc(0x50b)](_0x43279a,!0x0,_0x540dce,_0x216e16);if(_0x1ed356==null&&(_0x1ed356=_0x2d1c75[_0x1a5dfc(0x50b)](_0x43279a-0x1,!0x1,_0x540dce,_0x216e16)),_0x10ce5f){const {contentBoxPointGroup:_0x5de9d9}=_0xca3b44['getRangePointData'](_0x1ed356,_0x1ed356);if(_0x5de9d9[_0x1a5dfc(0x24c)]===0x0)continue;this[_0x1a5dfc(0x389)](_0x4b1193,_0x5de9d9,_0x4fab0b,_0x39e2b5,_0xee1497),this[_0x1a5dfc(0x4f9)]=this[_0x1a5dfc(0x173)]();}if(_0x3d6932&&_0x1ed356){if(_0x4fdd92===_0x223914[_0x1a5dfc(0x1ee)][_0x1a5dfc(0x38d)]){const _0x1f2fc4=new _0x13e81e['NodePositionConvertToRectRange'](_0xe691c,_0x2d1c75),{pointGroup:_0x388075}=(_0x563ea9=_0x1f2fc4[_0x1a5dfc(0x4bc)](_0x3d6932,_0x1ed356))!=null?_0x563ea9:{};if(_0x388075==null||_0x388075[_0x1a5dfc(0x24c)]===0x0)continue;this['_drawRectRange'](_0x4b1193,_0x388075,_0x4fab0b,_0x39e2b5);}else{if(!_0x223bf9){const {borderBoxPointGroup:_0x1e6030}=_0xca3b44[_0x1a5dfc(0x4bc)](_0x3d6932,_0x1ed356);if(_0x1e6030[_0x1a5dfc(0x24c)]===0x0)continue;this[_0x1a5dfc(0x56c)](_0x4b1193,_0x1e6030,_0x4fab0b,_0x39e2b5);}}}}}[_0x3948cf(0x389)](_0x473d04,_0x445d19,_0x276692,_0x340232,_0x2cf9b2){const _0x1b2a69=_0x3948cf,_0x5c4345=this[_0x1b2a69(0x1ce)](_0x445d19),{left:_0x1f0d29,top:_0x58bc93,height:_0x2123c6}=_0x5c4345,_0x302883=this[_0x1b2a69(0x2b4)](),_0xf5de28=_0x1703df/_0x302883,_0x565732=new _0xdd060a['Rect'](_0x2f2326+_0x223914[_0x1b2a69(0x5af)]['generateRandomId'](_0x44c31d),{'left':_0x1f0d29+_0x276692-_0xf5de28,'top':_0x58bc93+_0x340232,'height':_0x2123c6,'width':_0xa5f3f4,'fill':_0x473d04||_0xdd060a[_0x1b2a69(0x4bb)](_0x223914[_0x1b2a69(0x2a1)][_0x1b2a69(0x3e7)],0x0),'strokeWidth':_0xf5de28,'stroke':_0x1b5fa4,'evented':!0x0});this[_0x1b2a69(0x144)]=_0x565732,this['_scene'][_0x1b2a69(0x217)](_0x565732,_0x13e81e[_0x1b2a69(0x526)]);const _0x572965=new _0xdd060a[(_0x1b2a69(0x52e))](_0x2f2326+_0x223914[_0x1b2a69(0x5af)][_0x1b2a69(0x1fa)](_0x44c31d),{'left':_0x1f0d29+_0x276692-_0xf5de28,'top':_0x58bc93+_0x340232-_0x28d53f/0x2,'height':_0x28d53f,'width':_0x28d53f,'fill':_0x473d04||_0xdd060a[_0x1b2a69(0x4bb)](_0x223914[_0x1b2a69(0x2a1)][_0x1b2a69(0x3e7)],0x0),'strokeWidth':0x0,'stroke':_0x473d04||_0xdd060a['getColor'](_0x223914['COLORS'][_0x1b2a69(0x3e7)],0x0),'evented':!0x1});this[_0x1b2a69(0x16f)]=_0x572965,this['_scene'][_0x1b2a69(0x217)](_0x572965,_0x13e81e[_0x1b2a69(0x526)]);const _0x13e719=new _0x10e821(_0x2f2326+_0x223914[_0x1b2a69(0x5af)][_0x1b2a69(0x1fa)](_0x44c31d),{'left':_0x1f0d29+_0x276692-_0xf5de28,'top':_0x58bc93+_0x340232-_0x597808,'text':_0x2cf9b2,'color':_0x473d04});this[_0x1b2a69(0x5b6)]=_0x13e719,this['_scene'][_0x1b2a69(0x217)](_0x13e719,_0x13e81e[_0x1b2a69(0x526)]),this[_0x1b2a69(0x612)]=!0x1;}['_handleHover'](){const _0x4c5560=_0x3948cf,_0x363fbc=this['_anchor'][_0x4c5560(0x2fe)][_0x4c5560(0x56b)](()=>{const _0x18ef39=_0x4c5560;this[_0x18ef39(0x612)]=!0x0;}),_0x50c99d=this[_0x4c5560(0x144)][_0x4c5560(0x179)][_0x4c5560(0x56b)](()=>{const _0x57f2c7=_0x4c5560;this[_0x57f2c7(0x36d)]&&clearTimeout(this[_0x57f2c7(0x36d)]),this[_0x57f2c7(0x36d)]=setTimeout(()=>{const _0x41e11b=_0x57f2c7;this[_0x41e11b(0x612)]=!0x1;},0x7d0);});return()=>{_0x363fbc['unsubscribe'](),_0x50c99d['unsubscribe']();};}[_0x3948cf(0x56c)](_0x3eaa46,_0xf1f26,_0x475a04,_0x367879){const _0x1192f7=_0x3948cf,_0x530a72=new _0x223914[(_0x1192f7(0x48c))](_0x3eaa46)[_0x1192f7(0x156)](0.2)[_0x1192f7(0x365)](),_0x3e1199=new _0xdd060a[(_0x1192f7(0x2ca))](_0x3b532f+_0x223914['Tools'][_0x1192f7(0x1fa)](_0x44c31d),{'pointsGroup':_0xf1f26,'fill':_0x530a72||_0xdd060a[_0x1192f7(0x4bb)](_0x223914[_0x1192f7(0x2a1)][_0x1192f7(0x3e7)],0.2),'left':_0x475a04,'top':_0x367879,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x1192f7(0x1a5)][_0x1192f7(0x4ef)](_0x3e1199),this['_scene'][_0x1192f7(0x217)](_0x3e1199,_0x13e81e[_0x1192f7(0x526)]);}[_0x3948cf(0x399)](_0x34d090,_0x23b1db,_0x4d27cf,_0x6a986c){const _0x1b6053=_0x3948cf,_0xd73506=new _0x223914['ColorKit'](_0x34d090)['setAlpha'](0.2)['toRgbString'](),_0x5bf5f2=new _0xdd060a['RegularPolygon'](_0x51b801+_0x223914[_0x1b6053(0x5af)]['generateRandomId'](_0x44c31d),{'pointsGroup':_0x23b1db,'fill':_0xd73506||_0xdd060a['getColor'](_0x223914[_0x1b6053(0x2a1)][_0x1b6053(0x3e7)],0.2),'left':_0x4d27cf,'top':_0x6a986c,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x1b6053(0x1a5)][_0x1b6053(0x4ef)](_0x5bf5f2),this[_0x1b6053(0x44f)][_0x1b6053(0x217)](_0x5bf5f2,_0x13e81e[_0x1b6053(0x526)]);}[_0x3948cf(0x1ce)](_0x5f0599){const _0x47873d=_0x5f0599[0x0],_0x2b954c=_0x47873d[0x0],_0x468b1c=_0x47873d[0x2],{x:_0x3b0915,y:_0x242388}=_0x2b954c,{x:_0x57cd04,y:_0x215339}=_0x468b1c;return{'left':_0x3b0915,'top':_0x242388,'width':_0x57cd04-_0x3b0915,'height':_0x215339-_0x242388};}[_0x3948cf(0x2b4)](){const _0x10d527=_0x3948cf,{scaleX:_0x140b80,scaleY:_0x49f029}=this['_scene']['getAncestorScale']();return Math[_0x10d527(0x4d5)](_0x140b80,_0x49f029);}}var _0x43c241=Object[_0x3948cf(0x149)],_0x446b64=Object['getOwnPropertyDescriptor'],_0x3ad29d=(_0x466108,_0x2fbdeb,_0x1af7b6,_0x3b2181)=>{const _0x3015c8=_0x3948cf;for(var _0x46a77c=_0x3b2181>0x1?void 0x0:_0x3b2181?_0x446b64(_0x2fbdeb,_0x1af7b6):_0x2fbdeb,_0x341bb7=_0x466108[_0x3015c8(0x24c)]-0x1,_0x10fc84;_0x341bb7>=0x0;_0x341bb7--)(_0x10fc84=_0x466108[_0x341bb7])&&(_0x46a77c=(_0x3b2181?_0x10fc84(_0x2fbdeb,_0x1af7b6,_0x46a77c):_0x10fc84(_0x46a77c))||_0x46a77c);return _0x3b2181&&_0x46a77c&&_0x43c241(_0x2fbdeb,_0x1af7b6,_0x46a77c),_0x46a77c;},_0x59a716=(_0x226618,_0x4f2f53)=>(_0x58fff1,_0x18acf7)=>_0x4f2f53(_0x58fff1,_0x18acf7,_0x226618);let _0x4ea386=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0x46a6be,_0x273656,_0x2e134f,_0x57727a,_0x54ac52){const _0x89f343=_0x3948cf;super(),_0xeb55cc(this,_0x89f343(0x47e),[]),_0xeb55cc(this,'_cursors',[]),(this[_0x89f343(0x1ba)]=_0x46a6be,this[_0x89f343(0x4f7)]=_0x273656,this[_0x89f343(0x592)]=_0x2e134f,this[_0x89f343(0x1b9)]=_0x57727a,this[_0x89f343(0x515)]=_0x54ac52,this[_0x89f343(0x528)]());}[_0x3948cf(0x528)](){const _0x4d03d5=_0x3948cf,_0x3e4986=this[_0x4d03d5(0x1ba)][_0x4d03d5(0x362)],_0xaf77cb=this[_0x4d03d5(0x4f7)];this[_0x4d03d5(0x345)](_0x3fbd04[_0x4d03d5(0x3dc)]([this['_collabCursorController'][_0x4d03d5(0x351)](_0x3e4986),this[_0x4d03d5(0x515)][_0x4d03d5(0x43c)]])[_0x4d03d5(0x3c1)](_0x4da2a9['map'](([_0xb49f7d,_0xf42fe1])=>({'skeleton':_0xaf77cb[_0x4d03d5(0x3a3)](),'cursors':[..._0xb49f7d[_0x4d03d5(0x2f9)]()][_0x4d03d5(0x54e)](_0x45ca74=>({..._0x45ca74,'color':_0xf42fe1[_0x45ca74['color']]}))})))[_0x4d03d5(0x577)](_0x4a9fab=>{const _0x4f621=_0x4d03d5;if(this['_removeCollabCursors'](),_0x4a9fab){const {skeleton:_0x145849,cursors:_0x55f3b9}=_0x4a9fab;this[_0x4f621(0x42c)](_0x145849,_0x55f3b9);}})),this[_0x4d03d5(0x4cb)](),this['_initCommandExecutedListener']();}[_0x3948cf(0x42c)](_0x19df58,_0x33317b){const _0x51cc7a=_0x3948cf,{scene:_0x49d96a,mainComponent:_0x374b49}=this[_0x51cc7a(0x1ba)],_0x1f08d7=_0x33317b['map'](_0x20d800=>new _0x3993da(_0x20d800,_0x49d96a,_0x19df58,_0x374b49));this[_0x51cc7a(0x47e)]=_0x1f08d7,this['_cursors']=_0x33317b;}['_refreshCollabCursors'](){const _0x2fb0b9=_0x3948cf;this[_0x2fb0b9(0x404)]();const {scene:_0x5cf250,mainComponent:_0x1206ab}=this[_0x2fb0b9(0x1ba)],_0x24376e=this[_0x2fb0b9(0x4f7)][_0x2fb0b9(0x3a3)](),_0x207480=this[_0x2fb0b9(0x4a8)][_0x2fb0b9(0x26b)](_0x32e94d=>new _0x3993da(_0x32e94d,_0x5cf250,_0x24376e,_0x1206ab));this[_0x2fb0b9(0x47e)]=_0x207480;}[_0x3948cf(0x404)](){const _0x4892c1=_0x3948cf;this[_0x4892c1(0x47e)]['forEach'](_0x574e0a=>_0x574e0a['dispose']()),this[_0x4892c1(0x47e)]=[];}[_0x3948cf(0x180)](){const _0x47deea=_0x3948cf,_0x277f08=[_0x13e81e[_0x47deea(0x5d6)]['id']];this[_0x47deea(0x345)](this[_0x47deea(0x1b9)][_0x47deea(0x509)](_0x1c9463=>{const _0x3cc1a9=_0x47deea;_0x277f08[_0x3cc1a9(0x464)](_0x1c9463['id'])&&_0x1c9463[_0x3cc1a9(0x54d)]['unitId']===this[_0x3cc1a9(0x1ba)][_0x3cc1a9(0x362)]&&this['_refreshCollabCursors']();}));}[_0x3948cf(0x4cb)](){const _0x5bd757=_0x3948cf;this['disposeWithMe'](_0x223914[_0x5bd757(0x5e3)](this['_context']['engine'][_0x5bd757(0x31d)])[_0x5bd757(0x3c1)](_0x4da2a9[_0x5bd757(0x256)](_0x7dbcac=>_0x7dbcac[_0x5bd757(0x181)]===_0xdd060a[_0x5bd757(0x48a)]['resize']),_0x4da2a9['throttleTime'](0x10))[_0x5bd757(0x577)](()=>{const _0x33d99a=_0x5bd757;this[_0x33d99a(0x56d)]();}));}};_0x4ea386=_0x3ad29d([_0x59a716(0x1,_0x223914[_0x3948cf(0x25f)](_0x4a2356[_0x3948cf(0x276)])),_0x59a716(0x2,_0x223914[_0x3948cf(0x25f)](_0x167308)),_0x59a716(0x3,_0x223914[_0x3948cf(0x38e)]),_0x59a716(0x4,_0x223914[_0x3948cf(0x25f)](_0x223914['ThemeService']))],_0x4ea386);const _0x1148e0=0x1,_0x24a01e=1.5;class _0x4b8f9a extends _0xdd060a[_0x3948cf(0x4c5)]{constructor(_0x1b7ad6,_0x1cf706){const _0x44bdad=_0x3948cf;super(_0x1b7ad6,_0x1cf706),_0xeb55cc(this,'_color'),_0xeb55cc(this,_0x44bdad(0x358),!0x1),_0xeb55cc(this,_0x44bdad(0x3ca)),_0xeb55cc(this,_0x44bdad(0x611),''),_0xeb55cc(this,_0x44bdad(0x2ba),_0x44bdad(0x43b)),_0xeb55cc(this,'_backgroundColor'),(_0x1cf706&&this[_0x44bdad(0x43e)](_0x1cf706),this['onPointerEnter$']['subscribeEvent'](()=>this[_0x44bdad(0x43e)]({'hovered':!0x0})),this['onPointerLeave$'][_0x44bdad(0x56b)](()=>this[_0x44bdad(0x43e)]({'hovered':!0x1})));}['setShapeProps'](_0x241dc2){const _0x220596=_0x3948cf;var _0xeaa28e,_0x4c431a,_0x52dc2a,_0x2457ab,_0x45f348,_0x5b3dea;this[_0x220596(0x293)]=(_0xeaa28e=_0x241dc2[_0x220596(0x231)])!=null?_0xeaa28e:this[_0x220596(0x293)],this[_0x220596(0x358)]=(_0x4c431a=_0x241dc2['hovered'])!=null?_0x4c431a:this['_hovered'],this[_0x220596(0x3ca)]=(_0x52dc2a=_0x241dc2[_0x220596(0x3c0)])!=null?_0x52dc2a:this[_0x220596(0x3ca)],this[_0x220596(0x611)]=(_0x2457ab=_0x241dc2[_0x220596(0x289)])!=null?_0x2457ab:this['_name'],this[_0x220596(0x2ba)]=(_0x45f348=_0x241dc2['labelPosition'])!=null?_0x45f348:this[_0x220596(0x2ba)],this['_backgroundColor']=(_0x5b3dea=_0x241dc2[_0x220596(0x5bb)])!=null?_0x5b3dea:this[_0x220596(0x310)],this['transformByState']({'width':_0x241dc2[_0x220596(0x30d)],'height':_0x241dc2[_0x220596(0x3ad)]});}[_0x3948cf(0x195)](_0x42cba5){const _0x42bb25=_0x3948cf,{row:_0x4d33d8,column:_0x292827}=_0x42cba5;if(_0x4d33d8>=this[_0x42bb25(0x3ca)][_0x42bb25(0x3db)]&&_0x4d33d8<=this[_0x42bb25(0x3ca)]['endRow']&&_0x292827>=this[_0x42bb25(0x3ca)][_0x42bb25(0x2d2)]&&_0x292827<=this[_0x42bb25(0x3ca)]['endColumn']){this[_0x42bb25(0x43e)]({'hovered':!0x0});return;}this['setShapeProps']({'hovered':!0x1});}[_0x3948cf(0x4d7)](_0x2195ae){return!0x1;}['_draw'](_0x55e3c2){const _0x47eea4=_0x3948cf;_0xdd060a[_0x47eea4(0x52e)]['drawWith'](_0x55e3c2,{'width':this['width'],'height':this[_0x47eea4(0x3ad)],'strokeWidth':_0x24a01e,'stroke':this[_0x47eea4(0x293)],'evented':!0x1,'fill':this['_backgroundColor']}),this[_0x47eea4(0x358)]&&(_0x55e3c2[_0x47eea4(0x4a1)](),_0x55e3c2[_0x47eea4(0x5f6)](0x1,0x0,0x0,0x1,this[_0x47eea4(0x30d)],this[_0x47eea4(0x2ba)]==='bottom'?0x0:-_0x597808),_0x10e821[_0x47eea4(0x3b1)](_0x55e3c2,{'text':this[_0x47eea4(0x611)],'color':this[_0x47eea4(0x293)]}),_0x55e3c2['restore']());}}var _0x196297=Object[_0x3948cf(0x149)],_0x29f38e=Object[_0x3948cf(0x16b)],_0x53c59a=(_0x37aba9,_0x557a60,_0x17f4ec,_0x41fd92)=>{const _0x1ac6f3=_0x3948cf;for(var _0x2eef0a=_0x41fd92>0x1?void 0x0:_0x41fd92?_0x29f38e(_0x557a60,_0x17f4ec):_0x557a60,_0x1625b9=_0x37aba9[_0x1ac6f3(0x24c)]-0x1,_0x5481c9;_0x1625b9>=0x0;_0x1625b9--)(_0x5481c9=_0x37aba9[_0x1625b9])&&(_0x2eef0a=(_0x41fd92?_0x5481c9(_0x557a60,_0x17f4ec,_0x2eef0a):_0x5481c9(_0x2eef0a))||_0x2eef0a);return _0x41fd92&&_0x2eef0a&&_0x196297(_0x557a60,_0x17f4ec,_0x2eef0a),_0x2eef0a;},_0x28f19c=(_0x4e2c9b,_0x517743)=>(_0x4a3f53,_0x2346cc)=>_0x517743(_0x4a3f53,_0x2346cc,_0x4e2c9b);const _0x20dc8b=0x1389;let _0x3aba73=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0xa26d41,_0x2f4af0,_0x5e1049,_0x17e640){const _0x3effd7=_0x3948cf;super(),_0xeb55cc(this,_0x3effd7(0x4a8),new Set()),_0xeb55cc(this,_0x3effd7(0x32d),null),(this[_0x3effd7(0x1ba)]=_0xa26d41,this[_0x3effd7(0x23a)]=_0x2f4af0,this['_collabCursorController']=_0x5e1049,this[_0x3effd7(0x515)]=_0x17e640,this['_init']());}[_0x3948cf(0x528)](){const _0x59c38f=_0x3948cf;this[_0x59c38f(0x23a)][_0x59c38f(0x4b3)][_0x59c38f(0x3c1)](_0x4da2a9['takeUntil'](this[_0x59c38f(0x1a1)]),_0x4da2a9['switchMap'](_0x3ac9e3=>{const _0x3fb704=_0x59c38f;if(_0x3ac9e3){const _0x33a13e=_0x3ac9e3['sheetId'];return _0x3fbd04['combineLatest'](this[_0x3fb704(0x592)][_0x3fb704(0x351)](this[_0x3fb704(0x1ba)][_0x3fb704(0x362)]),this['_themeService'][_0x3fb704(0x43c)])['pipe'](_0x4da2a9[_0x3fb704(0x26b)](([_0x4c4777,_0x4eb0df])=>{const _0x78265=new Map();return _0x4c4777['forEach']((_0x16d9d6,_0x45b18e)=>{const _0xa8e415=_0x5201;if(_0x16d9d6['sheetID']===_0x33a13e){const _0x5c86a3={..._0x16d9d6};_0x5c86a3[_0xa8e415(0x231)]=_0x4eb0df[_0x16d9d6[_0xa8e415(0x231)]],_0x78265[_0xa8e415(0x1f2)](_0x45b18e,_0x5c86a3);}}),{'skeleton':_0x3ac9e3,'cursors':_0x78265};}));}return _0x3fbd04['of']({'skeleton':null,'cursors':new Map()});}))[_0x59c38f(0x577)](({skeleton:_0x4d80f7,cursors:_0x5ed77e})=>{const _0x1de73b=_0x59c38f;this[_0x1de73b(0x404)](),_0x4d80f7&&this[_0x1de73b(0x42c)](_0x4d80f7,_0x5ed77e);}),this[_0x59c38f(0x23a)][_0x59c38f(0x4b3)][_0x59c38f(0x577)](_0xf50358=>{const _0xcd95b9=_0x59c38f;if(_0xf50358==null)return;const {skeleton:_0x531a6c}=_0xf50358,{scene:_0x44279d}=this[_0xcd95b9(0x1ba)];_0x44279d[_0xcd95b9(0x52d)][_0xcd95b9(0x56b)](_0x223914[_0xcd95b9(0x1aa)](_0x4c9faf=>{const _0x58e00b=_0xcd95b9;var _0x4995a6,_0x17f358;const {offsetX:_0x5d88dd,offsetY:_0x4af3df}=_0x4c9faf,{x:_0x45a386,y:_0x40c34b}=_0x44279d[_0x58e00b(0x160)](_0xdd060a['Vector2'][_0x58e00b(0x55b)]([_0x5d88dd,_0x4af3df])),{scaleX:_0x565f28,scaleY:_0x416113}=_0x44279d[_0x58e00b(0x31e)](),_0x1e8e27=_0x44279d['getViewport'](_0x133108['VIEWPORT_KEY']['VIEW_MAIN']),_0x3e14e7=_0x44279d[_0x58e00b(0x604)](_0xdd060a[_0x58e00b(0x2b2)][_0x58e00b(0x55b)]([_0x45a386,_0x40c34b]),_0x1e8e27),_0x2d0005=_0x531a6c[_0x58e00b(0x49b)](_0x5d88dd,_0x4af3df,_0x565f28,_0x416113,_0x3e14e7);((_0x4995a6=this[_0x58e00b(0x32d)])==null?void 0x0:_0x4995a6[_0x58e00b(0x3e8)])===_0x2d0005[_0x58e00b(0x3e8)]&&((_0x17f358=this[_0x58e00b(0x32d)])==null?void 0x0:_0x17f358['row'])===_0x2d0005[_0x58e00b(0x182)]||this[_0x58e00b(0x4a8)][_0x58e00b(0x24f)](_0x42e61e=>{const _0x8aacd5=_0x58e00b;_0x42e61e[_0x8aacd5(0x195)](_0x2d0005);});},0x64));});}['_updateCollabCursors'](_0x579e23,_0x1740f1){const _0x16fbfa=_0x3948cf;var _0x2a2116;const _0x55439f=(_0x2a2116=this[_0x16fbfa(0x23a)]['getCurrent']())==null?void 0x0:_0x2a2116[_0x16fbfa(0x2fd)];if(!_0x55439f)return;const _0x5690f3=this[_0x16fbfa(0x493)]();if(!_0x5690f3)return;this['_cursors'][_0x16fbfa(0x24f)](_0x56c127=>{const _0xf893f6=_0x16fbfa;_0x56c127[_0xf893f6(0x30a)]();});const {scene:_0x21ddc4}=_0x5690f3,_0x539e30=_0xd50f36(Array['from'](_0x1740f1['values']()))[_0x16fbfa(0x26b)](_0x1bfa5a=>{const _0x444e8d=_0x16fbfa,{color:_0x9c1ae1,range:_0x55e552,name:_0x3c4315,selection:_0x2e3cec,sheetID:_0x4ab3fa}=_0x1bfa5a,{startColumn:_0x4793e5,startRow:_0x546df6,endColumn:_0x40d0e3,endRow:_0x14e82b}=_0x55e552,_0xb461a2=_0x133108[_0x444e8d(0x44c)](_0x546df6,_0x4793e5,_0x21ddc4,_0x55439f),_0x4eddb7=_0x133108[_0x444e8d(0x44c)](_0x14e82b,_0x40d0e3,_0x21ddc4,_0x55439f),{columnHeaderHeightAndMarginTop:_0x51941b}=_0x55439f,{startX:_0x51a114,startY:_0x3d8709}=_0xb461a2,{endX:_0x24a72c,endY:_0x3e5deb}=_0x4eddb7,_0x1cf632=_0x24a72c-_0x51a114,_0x19f72a=_0x3e5deb-_0x3d8709,_0x3d2a60={'labelPosition':_0x3d8709-_0x51941b>=_0x597808?_0x444e8d(0x43b):_0x444e8d(0x1a4),'sheetID':_0x4ab3fa,'range':_0x55e552,'color':_0x9c1ae1,'name':_0x3c4315,'selection':_0x2e3cec,'left':_0x51a114,'top':_0x3d8709,'width':_0x1cf632,'height':_0x19f72a,'evented':!0x1,'zIndex':_0x20dc8b};return new _0x4b8f9a(_0x3c4315,_0x3d2a60);});_0x21ddc4[_0x16fbfa(0x261)](_0x539e30,_0x1148e0),this[_0x16fbfa(0x4a8)]=new Set(_0x539e30);}[_0x3948cf(0x404)](){const _0x5de8e1=_0x3948cf;var _0xd4763a;(_0xd4763a=this[_0x5de8e1(0x4a8)])==null||_0xd4763a[_0x5de8e1(0x24f)](_0x5a8bc4=>_0x5a8bc4[_0x5de8e1(0x287)]());}[_0x3948cf(0x493)](){const _0x44bf2d=_0x3948cf;return _0x133108[_0x44bf2d(0x477)](this[_0x44bf2d(0x1ba)]['unit'],this[_0x44bf2d(0x1ba)]);}};_0x3aba73=_0x53c59a([_0x28f19c(0x1,_0x223914[_0x3948cf(0x25f)](_0x133108[_0x3948cf(0x56f)])),_0x28f19c(0x2,_0x223914[_0x3948cf(0x25f)](_0x167308)),_0x28f19c(0x3,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x59e)]))],_0x3aba73);function _0xd50f36(_0x5aad71){const _0x247eb2=_0x3948cf,_0x1f45a7=new Map();return _0x5aad71[_0x247eb2(0x24f)](_0x14fb85=>{const _0x5b0f7=_0x247eb2;if(_0x1f45a7[_0x5b0f7(0x58e)](_0x14fb85[_0x5b0f7(0x1f3)])){const _0x329f89=_0x1f45a7[_0x5b0f7(0x55a)](_0x14fb85[_0x5b0f7(0x1f3)]);_0x329f89[_0x5b0f7(0x289)]+=',\x20'+_0x14fb85[_0x5b0f7(0x289)];}else _0x1f45a7[_0x5b0f7(0x1f2)](_0x14fb85[_0x5b0f7(0x1f3)],_0x14fb85);}),Array['from'](_0x1f45a7[_0x247eb2(0x2f9)]());}var _0x22c069=typeof globalThis<'u'?globalThis:typeof window<'u'?window:typeof global<'u'?global:typeof self<'u'?self:{};function _0x1715bf(_0x3684ec){const _0x21138a=_0x3948cf;return _0x3684ec&&_0x3684ec[_0x21138a(0x5d1)]&&Object[_0x21138a(0x3ff)]['hasOwnProperty'][_0x21138a(0x56a)](_0x3684ec,_0x21138a(0x1e0))?_0x3684ec[_0x21138a(0x1e0)]:_0x3684ec;}var _0x2d139d={'exports':{}},_0x33007c={},_0xc35e24=_0x220425,_0x48e7ab=Symbol[_0x3948cf(0x35f)](_0x3948cf(0x489)),_0x49af47=Symbol[_0x3948cf(0x35f)](_0x3948cf(0x386)),_0x5d3c91=Object[_0x3948cf(0x3ff)][_0x3948cf(0x188)],_0x5299ac=_0xc35e24[_0x3948cf(0x1c6)]['ReactCurrentOwner'],_0x965590={'key':!0x0,'ref':!0x0,'__self':!0x0,'__source':!0x0};function _0x14cf37(_0x16002d,_0x27c170,_0x19644e){const _0x1d7453=_0x3948cf;var _0x6e91dc,_0x16253e={},_0x2c393b=null,_0x517d98=null;_0x19644e!==void 0x0&&(_0x2c393b=''+_0x19644e),_0x27c170[_0x1d7453(0x206)]!==void 0x0&&(_0x2c393b=''+_0x27c170['key']),_0x27c170[_0x1d7453(0x4b4)]!==void 0x0&&(_0x517d98=_0x27c170['ref']);for(_0x6e91dc in _0x27c170)_0x5d3c91[_0x1d7453(0x56a)](_0x27c170,_0x6e91dc)&&!_0x965590['hasOwnProperty'](_0x6e91dc)&&(_0x16253e[_0x6e91dc]=_0x27c170[_0x6e91dc]);if(_0x16002d&&_0x16002d[_0x1d7453(0x23b)]){for(_0x6e91dc in(_0x27c170=_0x16002d['defaultProps'],_0x27c170))_0x16253e[_0x6e91dc]===void 0x0&&(_0x16253e[_0x6e91dc]=_0x27c170[_0x6e91dc]);}return{'$$typeof':_0x48e7ab,'type':_0x16002d,'key':_0x2c393b,'ref':_0x517d98,'props':_0x16253e,'_owner':_0x5299ac[_0x1d7453(0x339)]};}_0x33007c['Fragment']=_0x49af47,_0x33007c[_0x3948cf(0x37f)]=_0x14cf37,_0x33007c[_0x3948cf(0x367)]=_0x14cf37,_0x2d139d[_0x3948cf(0x29b)]=_0x33007c;var _0x4fce2a=_0x2d139d[_0x3948cf(0x29b)],_0x30c364=function(){const _0x2f54ff=_0x3948cf;return _0x30c364=Object['assign']||function(_0x316650){const _0x51d200=_0x5201;for(var _0x248172,_0x287f7d=0x1,_0x3d3177=arguments[_0x51d200(0x24c)];_0x287f7d<_0x3d3177;_0x287f7d++){_0x248172=arguments[_0x287f7d];for(var _0x495f25 in _0x248172)Object[_0x51d200(0x3ff)][_0x51d200(0x188)]['call'](_0x248172,_0x495f25)&&(_0x316650[_0x495f25]=_0x248172[_0x495f25]);}return _0x316650;},_0x30c364[_0x2f54ff(0x476)](this,arguments);},_0x3ecef7=function(_0x3b8813,_0x3e94e2){const _0x4236df=_0x3948cf;var _0xabbfd2={};for(var _0x8f6317 in _0x3b8813)Object[_0x4236df(0x3ff)][_0x4236df(0x188)]['call'](_0x3b8813,_0x8f6317)&&_0x3e94e2[_0x4236df(0x46b)](_0x8f6317)<0x0&&(_0xabbfd2[_0x8f6317]=_0x3b8813[_0x8f6317]);if(_0x3b8813!=null&&typeof Object[_0x4236df(0x39d)]==_0x4236df(0x172)){for(var _0x5c359e=0x0,_0x8f6317=Object[_0x4236df(0x39d)](_0x3b8813);_0x5c359e<_0x8f6317['length'];_0x5c359e++)_0x3e94e2[_0x4236df(0x46b)](_0x8f6317[_0x5c359e])<0x0&&Object[_0x4236df(0x3ff)][_0x4236df(0x16d)][_0x4236df(0x56a)](_0x3b8813,_0x8f6317[_0x5c359e])&&(_0xabbfd2[_0x8f6317[_0x5c359e]]=_0x3b8813[_0x8f6317[_0x5c359e]]);}return _0xabbfd2;},_0x314cd0=_0x220425[_0x3948cf(0x141)](function(_0x74afb6,_0x37e991){const _0x3eb6fe=_0x3948cf;var _0x44c981=_0x74afb6['icon'],_0xc14c0d=_0x74afb6['id'],_0x560945=_0x74afb6['className'],_0x28ab85=_0x74afb6[_0x3eb6fe(0x601)],_0x356a31=_0x3ecef7(_0x74afb6,[_0x3eb6fe(0x600),'id',_0x3eb6fe(0x290),_0x3eb6fe(0x601)]),_0x2d297b=_0x3eb6fe(0x308)[_0x3eb6fe(0x38a)](_0xc14c0d,'\x20')[_0x3eb6fe(0x38a)](_0x560945||'')[_0x3eb6fe(0x54b)](),_0x4ce7f9=_0x220425[_0x3eb6fe(0x255)]('_'[_0x3eb6fe(0x38a)](_0x12b6a2()));return _0x148288(_0x44c981,''[_0x3eb6fe(0x38a)](_0xc14c0d),{'defIds':_0x44c981['defIds'],'idSuffix':_0x4ce7f9['current']},_0x30c364({'ref':_0x37e991,'className':_0x2d297b},_0x356a31),_0x28ab85);});function _0x148288(_0x42d75c,_0x223928,_0x110ce6,_0x11a472,_0x4c2fd2){const _0x3083b3=_0x3948cf;return _0x220425[_0x3083b3(0x564)](_0x42d75c[_0x3083b3(0x471)],_0x30c364(_0x30c364({'key':_0x223928},_0x171703(_0x42d75c,_0x110ce6,_0x4c2fd2)),_0x11a472),(_0x437e99(_0x42d75c,_0x110ce6)['children']||[])[_0x3083b3(0x26b)](function(_0x244e4f,_0x188433){const _0x14ab82=_0x3083b3;return _0x148288(_0x244e4f,''['concat'](_0x223928,'-')['concat'](_0x42d75c[_0x14ab82(0x471)],'-')['concat'](_0x188433),_0x110ce6,void 0x0,_0x4c2fd2);}));}function _0x171703(_0x1ee077,_0xdcca01,_0x17bc2){const _0x1b6465=_0x3948cf;var _0x1ed852=_0x30c364({},_0x1ee077[_0x1b6465(0x1c9)]);_0x17bc2!=null&&_0x17bc2['colorChannel1']&&_0x1ed852[_0x1b6465(0x1c1)]==='colorChannel1'&&(_0x1ed852['fill']=_0x17bc2[_0x1b6465(0x4ce)]);var _0x94f4bd=_0xdcca01[_0x1b6465(0x335)];return!_0x94f4bd||_0x94f4bd[_0x1b6465(0x24c)]===0x0||(_0x1ee077['tag']===_0x1b6465(0x5ee)&&_0x1ed852[_0x1b6465(0x28c)]&&(_0x1ed852[_0x1b6465(0x28c)]=_0x1ed852['xlink:href']+_0xdcca01['idSuffix']),Object[_0x1b6465(0x47c)](_0x1ed852)[_0x1b6465(0x24f)](function(_0x400993){const _0x3a3136=_0x1b6465;var _0x2507fe=_0x400993[0x0],_0x1ae8b2=_0x400993[0x1];typeof _0x1ae8b2==_0x3a3136(0x277)&&(_0x1ed852[_0x2507fe]=_0x1ae8b2[_0x3a3136(0x5fa)](/url\(#(.*)\)/,_0x3a3136(0x5cf)[_0x3a3136(0x38a)](_0xdcca01[_0x3a3136(0x1f1)],')')));})),_0x1ed852;}function _0x437e99(_0x56bd7e,_0x19e8f2){const _0x57e308=_0x3948cf;var _0x4e6902,_0x11dbda=_0x19e8f2['defIds'];return!_0x11dbda||_0x11dbda['length']===0x0?_0x56bd7e:_0x56bd7e[_0x57e308(0x471)]===_0x57e308(0x24a)&&(!((_0x4e6902=_0x56bd7e[_0x57e308(0x1c7)])===null||_0x4e6902===void 0x0)&&_0x4e6902['length'])?_0x30c364(_0x30c364({},_0x56bd7e),{'children':_0x56bd7e[_0x57e308(0x1c7)][_0x57e308(0x26b)](function(_0x2e4c79){const _0x296cf5=_0x57e308;return typeof _0x2e4c79['attrs']['id']=='string'&&_0x11dbda&&_0x11dbda['indexOf'](_0x2e4c79[_0x296cf5(0x1c9)]['id'])>-0x1?_0x30c364(_0x30c364({},_0x2e4c79),{'attrs':_0x30c364(_0x30c364({},_0x2e4c79[_0x296cf5(0x1c9)]),{'id':_0x2e4c79[_0x296cf5(0x1c9)]['id']+_0x19e8f2[_0x296cf5(0x1f1)]})}):_0x2e4c79;})}):_0x56bd7e;}function _0x12b6a2(){const _0xb71fc7=_0x3948cf;return Math[_0xb71fc7(0x589)]()[_0xb71fc7(0x4ec)](0x24)[_0xb71fc7(0x53c)](0x2,0x8);}_0x314cd0[_0x3948cf(0x29c)]=_0x3948cf(0x1be);var _0x5763a8={'tag':_0x3948cf(0x2d1),'attrs':{'fill':_0x3948cf(0x33f),'viewBox':_0x3948cf(0x3de),'width':_0x3948cf(0x177),'height':_0x3948cf(0x177)},'children':[{'tag':'g','attrs':{'clipPath':_0x3948cf(0x384)},'children':[{'tag':_0x3948cf(0x5f2),'attrs':{'stroke':_0x3948cf(0x236),'d':_0x3948cf(0x3a0),'strokeLinecap':'round','strokeLinejoin':_0x3948cf(0x3e3),'strokeWidth':1.2}}]},{'tag':_0x3948cf(0x24a),'attrs':{},'children':[{'tag':_0x3948cf(0x311),'attrs':{'id':_0x3948cf(0x552)},'children':[{'tag':_0x3948cf(0x5f2),'attrs':{'fill':_0x3948cf(0x2af),'d':'M0\x200H16V16H0z'}}]}]}],'defIds':[_0x3948cf(0x552)]},_0x510c36=_0x220425[_0x3948cf(0x141)](function(_0x1ed634,_0x10ebc2){const _0x164191=_0x3948cf;return _0x220425[_0x164191(0x564)](_0x314cd0,Object[_0x164191(0x39c)]({},_0x1ed634,{'id':'off-line-single','ref':_0x10ebc2,'icon':_0x5763a8}));});_0x510c36[_0x3948cf(0x29c)]=_0x3948cf(0x192);var _0x13d7c5={'tag':'svg','attrs':{'fill':_0x3948cf(0x33f),'viewBox':_0x3948cf(0x406),'width':'1em','height':_0x3948cf(0x177)},'children':[{'tag':'g','attrs':{'clipPath':_0x3948cf(0x244)},'children':[{'tag':_0x3948cf(0x5f2),'attrs':{'stroke':_0x3948cf(0x236),'d':'M4.5865\x2011.6499C3.36983\x2011.6499\x201.6665\x2011.1024\x201.6665\x208.9124C1.6665\x206.3574\x204.2215\x205.8099\x204.9515\x205.8099C5.3165\x204.5324\x206.0465\x202.5249\x208.9665\x202.5249C11.5215\x202.5249\x2012.6165\x203.9849\x2012.9815\x205.2624C12.9815\x205.2624\x2016.2665\x205.6274\x2016.2665\x208.7299C16.2665\x2010.9199\x2014.8065\x2011.6499\x2013.3465\x2011.6499M6.7767\x2011.6497L8.9667\x2013.4747L11.8867\x209.82466','strokeLinecap':_0x3948cf(0x3e3),'strokeLinejoin':_0x3948cf(0x3e3),'strokeWidth':1.2}}]},{'tag':'defs','attrs':{},'children':[{'tag':'clipPath','attrs':{'id':'on-line-single_clip0_910_349'},'children':[{'tag':'path','attrs':{'fill':_0x3948cf(0x2af),'d':'M0\x200H16V16H0z','transform':_0x3948cf(0x51d)}}]}]}],'defIds':['on-line-single_clip0_910_349']},_0x41c632=_0x220425['forwardRef'](function(_0x15ee33,_0x325734){const _0x324bdc=_0x3948cf;return _0x220425['createElement'](_0x314cd0,Object['assign']({},_0x15ee33,{'id':_0x324bdc(0x383),'ref':_0x325734,'icon':_0x13d7c5}));});_0x41c632['displayName']=_0x3948cf(0x50f);function _0x2d59fa(_0x120f59){const _0x52a477=_0x3948cf;var _0x2e56aa,_0x50c2ad,_0x1383c8='';if(typeof _0x120f59==_0x52a477(0x277)||typeof _0x120f59=='number')_0x1383c8+=_0x120f59;else{if(typeof _0x120f59=='object'){if(Array[_0x52a477(0x462)](_0x120f59)){var _0x499771=_0x120f59[_0x52a477(0x24c)];for(_0x2e56aa=0x0;_0x2e56aa<_0x499771;_0x2e56aa++)_0x120f59[_0x2e56aa]&&(_0x50c2ad=_0x2d59fa(_0x120f59[_0x2e56aa]))&&(_0x1383c8&&(_0x1383c8+='\x20'),_0x1383c8+=_0x50c2ad);}else{for(_0x50c2ad in _0x120f59)_0x120f59[_0x50c2ad]&&(_0x1383c8&&(_0x1383c8+='\x20'),_0x1383c8+=_0x50c2ad);}}}return _0x1383c8;}function _0x217999(){const _0x232cb0=_0x3948cf;for(var _0x278594,_0x2cd948,_0x45f7d4=0x0,_0x231722='',_0xab2095=arguments[_0x232cb0(0x24c)];_0x45f7d4<_0xab2095;_0x45f7d4++)(_0x278594=arguments[_0x45f7d4])&&(_0x2cd948=_0x2d59fa(_0x278594))&&(_0x231722&&(_0x231722+='\x20'),_0x231722+=_0x2cd948);return _0x231722;}const _0x31882d={'onlineStatusIcon':_0x3948cf(0x3e5),'onlineStatusTitle':'univer-online-status-title','onlineStatus':'univer-online-status','online':_0x3948cf(0x5a2),'offline':_0x3948cf(0x5c0)};function _0x13f3f0(_0xb78acd){const _0x48a715=_0x3948cf;switch(_0xb78acd){case _0x1de127[_0x48a715(0x239)]:return _0x48a715(0x53a);case _0x1de127['CONFLICT']:return _0x48a715(0x5a1);case _0x1de127[_0x48a715(0x28d)]:return _0x48a715(0x505);case _0x1de127['NOT_COLLAB']:return _0x48a715(0x574);case _0x1de127[_0x48a715(0x3d3)]:case _0x1de127[_0x48a715(0x519)]:return'collabStatus.syncing';case _0x1de127['SYNCED']:case _0x1de127[_0x48a715(0x2e4)]:return _0x48a715(0x5bc);}}function _0x409637(_0x19f7d8){const _0x1f494d=_0x3948cf,{status$:_0xfdb40a}=_0x19f7d8,_0x1e9800=_0x405b11[_0x1f494d(0x4c4)](_0xfdb40a,_0x1de127[_0x1f494d(0x344)]),_0x573efb=_0x223914['useDependency'](_0x223914['LocaleService']),_0x298ff7=_0x223914[_0x1f494d(0x291)](_0x24454f[_0x1f494d(0x228)]),_0x6e3dd6=_0x1e9800!==_0x1de127[_0x1f494d(0x239)],_0x3b2488=_0x573efb['t'](_0x13f3f0(_0x1e9800)),_0x54e062=_0x217999(_0x31882d[_0x1f494d(0x2f7)],{[_0x31882d[_0x1f494d(0x595)]]:_0x6e3dd6,[_0x31882d[_0x1f494d(0x492)]]:!_0x6e3dd6}),_0x30cadc=_0x6e3dd6?_0x4fce2a[_0x1f494d(0x37f)](_0x41c632,{}):_0x4fce2a['jsx'](_0x510c36,{}),_0x2721ba=_0x220425['useCallback'](()=>{const _0x450630=_0x1f494d;_0x6e3dd6||_0x298ff7[_0x450630(0x1c3)]();},[_0x6e3dd6,_0x298ff7]);function _0x3b8cb5(){const _0x375200=_0x1f494d;return _0x4fce2a[_0x375200(0x367)]('div',{'className':_0x54e062,'onClick':_0x2721ba,'children':[_0x4fce2a[_0x375200(0x37f)](_0x375200(0x3c4),{'className':_0x31882d[_0x375200(0x207)],'children':_0x30cadc}),_0x4fce2a[_0x375200(0x37f)](_0x375200(0x3c4),{'className':_0x31882d['onlineStatusTitle'],'children':_0x3b2488})]});}return _0x6e3dd6?_0x3b8cb5():_0x4fce2a['jsx'](_0x3fa11f[_0x1f494d(0x57f)],{'title':_0x573efb['t'](_0x1f494d(0x396)),'children':_0x3b8cb5()});}var _0x39e31f=Object[_0x3948cf(0x149)],_0x42ba1e=Object[_0x3948cf(0x16b)],_0x3916ab=(_0x2293e4,_0x4dca54,_0x2b75fa,_0x50acfc)=>{const _0x49a829=_0x3948cf;for(var _0x506022=_0x50acfc>0x1?void 0x0:_0x50acfc?_0x42ba1e(_0x4dca54,_0x2b75fa):_0x4dca54,_0x16c519=_0x2293e4[_0x49a829(0x24c)]-0x1,_0x3a2f1e;_0x16c519>=0x0;_0x16c519--)(_0x3a2f1e=_0x2293e4[_0x16c519])&&(_0x506022=(_0x50acfc?_0x3a2f1e(_0x4dca54,_0x2b75fa,_0x506022):_0x3a2f1e(_0x506022))||_0x506022);return _0x50acfc&&_0x506022&&_0x39e31f(_0x4dca54,_0x2b75fa,_0x506022),_0x506022;},_0x378ac3=(_0x1cdf19,_0x2c204c)=>(_0x4c5a88,_0xecb805)=>_0x2c204c(_0x4c5a88,_0xecb805,_0x1cdf19);_0x24454f[_0x3948cf(0x1c4)]=class extends _0x223914[_0x3948cf(0x2aa)]{constructor(_0x1b2e15,_0x462725,_0x2ab5ee,_0x13e342){const _0x59a8bf=_0x3948cf;super(),_0xeb55cc(this,_0x59a8bf(0x19b),new _0x3fbd04[(_0x59a8bf(0x2e0))](_0x1de127[_0x59a8bf(0x344)])),(this[_0x59a8bf(0x4ba)]=_0x1b2e15,this[_0x59a8bf(0x51f)]=_0x462725,this[_0x59a8bf(0x488)]=_0x2ab5ee,this[_0x59a8bf(0x3f1)]=_0x13e342,this['_initStatusComponent'](),this['_initStatusListener']());}[_0x3948cf(0x278)](){const _0x35d1dd=_0x3948cf;this[_0x35d1dd(0x345)](this['_univerInstanceService']['focused$']['pipe'](_0x3fbd04['switchMap'](()=>{const _0x401fe6=_0x35d1dd,_0x52f6bc=this['_univerInstanceService'][_0x401fe6(0x3ac)]();return _0x52f6bc?this['_collaborationController'][_0x401fe6(0x3e1)](_0x52f6bc[_0x401fe6(0x38c)]()):_0x3fbd04['of'](null);}),_0x3fbd04[_0x35d1dd(0x4b0)](_0x49533c=>_0x49533c?_0x49533c['status$']:_0x3fbd04['of'](_0x1de127['NOT_COLLAB'])))['subscribe'](_0x49947e=>{const _0xafee4e=_0x35d1dd;this['_status$'][_0xafee4e(0x490)](_0x49947e);}));}[_0x3948cf(0x3e9)](){const _0x1c6a5d=_0x3948cf;this[_0x1c6a5d(0x345)](this[_0x1c6a5d(0x51f)][_0x1c6a5d(0x5a8)](_0x405b11[_0x1c6a5d(0x15b)][_0x1c6a5d(0x4b5)],()=>_0x223914[_0x1c6a5d(0x4fd)](_0x2baa5d({'status$':this[_0x1c6a5d(0x19b)][_0x1c6a5d(0x29a)]()}),this[_0x1c6a5d(0x488)])));}},_0x24454f['DesktopCollaborationStatusDisplayController']=_0x3916ab([_0x378ac3(0x0,_0x223914['IUniverInstanceService']),_0x378ac3(0x1,_0x405b11[_0x3948cf(0x312)]),_0x378ac3(0x2,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x378ac3(0x3,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x35c)]))],_0x24454f[_0x3948cf(0x1c4)]);function _0x2baa5d(_0x384212){const {status$:_0x216b25}=_0x384212;return function(){return _0x4fce2a['jsx'](_0x409637,{'status$':_0x216b25});};}const _0x22100a=_0x223914[_0x3948cf(0x32a)]('uni.network.url-service');var _0x5677b3=Object['defineProperty'],_0x5b73d6=Object[_0x3948cf(0x16b)],_0x27a5ab=(_0x3b8950,_0x5e797f,_0x4e169b,_0x39955b)=>{for(var _0x2655d7=_0x39955b>0x1?void 0x0:_0x39955b?_0x5b73d6(_0x5e797f,_0x4e169b):_0x5e797f,_0x109e63=_0x3b8950['length']-0x1,_0x19e87e;_0x109e63>=0x0;_0x109e63--)(_0x19e87e=_0x3b8950[_0x109e63])&&(_0x2655d7=(_0x39955b?_0x19e87e(_0x5e797f,_0x4e169b,_0x2655d7):_0x19e87e(_0x2655d7))||_0x2655d7);return _0x39955b&&_0x2655d7&&_0x5677b3(_0x5e797f,_0x4e169b,_0x2655d7),_0x2655d7;},_0x141d1c=(_0x5324f3,_0xf011c0)=>(_0x315496,_0x3bcf04)=>_0xf011c0(_0x315496,_0x3bcf04,_0x5324f3);_0x24454f['DataLoaderController']=class extends _0x223914[_0x3948cf(0x52f)]{constructor(_0x44e4a1,_0x3697fa,_0x4e3d09,_0x19c3e5,_0x39d6d9,_0x43b624){const _0x46982a=_0x3948cf;super(),this[_0x46982a(0x5ed)]=_0x44e4a1,this['_logService']=_0x3697fa,this[_0x46982a(0x1b9)]=_0x4e3d09,this[_0x46982a(0x337)]=_0x19c3e5,this[_0x46982a(0x211)]=_0x39d6d9,_0x43b624?_0x43b624==null||_0x43b624['whenReady']()['then'](()=>this['_init']()):(this[_0x46982a(0x3fb)]['debug'](_0x46982a(0x3c9),'No\x20remote\x20instance\x20service\x20injected.\x20May\x20not\x20syncing\x20edits\x20to\x20the\x20web\x20worker.'),this[_0x46982a(0x528)]());}async[_0x3948cf(0x528)](){const _0x3fedd8=_0x3948cf,_0x52a346=this[_0x3fedd8(0x5ed)][_0x3fedd8(0x18a)](_0x3fedd8(0x326)),_0x55fc71=this[_0x3fedd8(0x5ed)][_0x3fedd8(0x18a)]('type');if(!_0x52a346||!_0x55fc71){this[_0x3fedd8(0x3fb)][_0x3fedd8(0x346)](_0x3fedd8(0x3c9),'No\x20unitID\x20or\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.');return;}switch(Number(_0x55fc71)){case _0x50449d[_0x3fedd8(0x18d)]:{const _0x3e6bbf=await this[_0x3fedd8(0x4b2)](_0x52a346);this['_setupSubUnitSync'](_0x3e6bbf);break;}case _0x50449d[_0x3fedd8(0x30c)]:{await this[_0x3fedd8(0x15a)](_0x52a346);break;}default:{this[_0x3fedd8(0x3fb)]['error'](_0x3fedd8(0x3c9),_0x3fedd8(0x5f4));break;}}}async[_0x3948cf(0x295)](_0xc6ee61){const _0x1c16a8=_0x3948cf;await this[_0x1c16a8(0x38f)](_0xc6ee61),_0xc6ee61[_0x1c16a8(0x2fa)][_0x1c16a8(0x3c1)](_0x3fbd04[_0x1c16a8(0x233)](this[_0x1c16a8(0x1a1)]))[_0x1c16a8(0x577)](_0x994288=>{const _0x10f95e=_0x1c16a8;_0x994288&&this[_0x10f95e(0x2a4)](_0x994288);}),this[_0x1c16a8(0x5ed)][_0x1c16a8(0x297)][_0x1c16a8(0x3c1)](_0x3fbd04[_0x1c16a8(0x233)](this[_0x1c16a8(0x1a1)]))[_0x1c16a8(0x577)](()=>this[_0x1c16a8(0x38f)](_0xc6ee61));}[_0x3948cf(0x2a4)](_0x2c0530,_0x1ef97d=!0x1){const _0x549aed=_0x3948cf,_0x104fed=this[_0x549aed(0x5ed)][_0x549aed(0x18a)]('subunit');_0x2c0530[_0x549aed(0x1b4)]()!==_0x104fed&&this[_0x549aed(0x5ed)][_0x549aed(0x25b)](_0x549aed(0x4e8),_0x2c0530[_0x549aed(0x1b4)](),_0x1ef97d);}async[_0x3948cf(0x38f)](_0x1f3ff0){const _0x4d463e=_0x3948cf;var _0x5b6e17;const _0x1624cf=this['_urlService'][_0x4d463e(0x18a)](_0x4d463e(0x4e8));if(!_0x1624cf||!_0x1f3ff0[_0x4d463e(0x460)](_0x1624cf)){const _0x45a849=_0x1f3ff0[_0x4d463e(0x213)]()[0x0],_0x4945df=_0x1f3ff0[_0x4d463e(0x460)](_0x45a849);if(!_0x4945df)return;this[_0x4d463e(0x2a4)](_0x4945df,!0x0),await this[_0x4d463e(0x1b9)][_0x4d463e(0x3d0)](_0x59e5a9[_0x4d463e(0x197)]['id'],{'unitId':_0x1f3ff0[_0x4d463e(0x38c)](),'subUnitId':_0x45a849});return;}((_0x5b6e17=_0x1f3ff0[_0x4d463e(0x3d2)]())==null?void 0x0:_0x5b6e17[_0x4d463e(0x1b4)]())!==_0x1624cf&&await this[_0x4d463e(0x1b9)]['executeCommand'](_0x59e5a9[_0x4d463e(0x197)]['id'],{'unitId':_0x1f3ff0[_0x4d463e(0x38c)](),'subUnitId':_0x1624cf});}async[_0x3948cf(0x4b2)](_0x33e3b2){const _0x5c7f53=_0x3948cf;let _0x33d77e=0x0;const _0x404852=await this[_0x5c7f53(0x337)][_0x5c7f53(0x546)](_0x33e3b2);return _0x404852&&(_0x404852['awaitingChangeset']||_0x404852[_0x5c7f53(0x53f)][_0x5c7f53(0x24c)]!==0x0)&&(_0x33d77e=_0x404852[_0x5c7f53(0x1cf)]),_0x33d77e===0x0&&this[_0x5c7f53(0x3fb)][_0x5c7f53(0x346)]('[DataLoaderController]',_0x5c7f53(0x3df)),this['_snapshotService'][_0x5c7f53(0x3f4)](_0x33e3b2,_0x33d77e);}async[_0x3948cf(0x15a)](_0x22b71c){const _0x30527a=_0x3948cf;let _0x2bd5c0=0x0;const _0x436daf=await this[_0x30527a(0x337)][_0x30527a(0x546)](_0x22b71c);return _0x436daf&&(_0x436daf[_0x30527a(0x348)]||_0x436daf['mutations'][_0x30527a(0x24c)]!==0x0)&&(_0x2bd5c0=_0x436daf[_0x30527a(0x1cf)]),_0x2bd5c0===0x0&&this[_0x30527a(0x3fb)]['debug'](_0x30527a(0x3c9),_0x30527a(0x3df)),this[_0x30527a(0x211)][_0x30527a(0x270)](_0x22b71c,_0x2bd5c0);}},_0x24454f[_0x3948cf(0x2d9)]=_0x27a5ab([_0x141d1c(0x0,_0x22100a),_0x141d1c(0x1,_0x223914['ILogService']),_0x141d1c(0x2,_0x223914[_0x3948cf(0x38e)]),_0x141d1c(0x3,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x30e)])),_0x141d1c(0x4,_0x223914['Inject'](_0x9ea725[_0x3948cf(0x166)])),_0x141d1c(0x5,_0x223914[_0x3948cf(0x2b9)](_0x193116['IRemoteInstanceService']))],_0x24454f[_0x3948cf(0x2d9)]);var _0x230cd0=Object[_0x3948cf(0x149)],_0x29c39b=Object[_0x3948cf(0x16b)],_0x5c8d7d=(_0x4f91a4,_0x507ad7,_0x3b61f5,_0x21727c)=>{const _0x368031=_0x3948cf;for(var _0x5d18ea=_0x21727c>0x1?void 0x0:_0x21727c?_0x29c39b(_0x507ad7,_0x3b61f5):_0x507ad7,_0xec1ace=_0x4f91a4[_0x368031(0x24c)]-0x1,_0x1db86b;_0xec1ace>=0x0;_0xec1ace--)(_0x1db86b=_0x4f91a4[_0xec1ace])&&(_0x5d18ea=(_0x21727c?_0x1db86b(_0x507ad7,_0x3b61f5,_0x5d18ea):_0x1db86b(_0x5d18ea))||_0x5d18ea);return _0x21727c&&_0x5d18ea&&_0x230cd0(_0x507ad7,_0x3b61f5,_0x5d18ea),_0x5d18ea;},_0x39a67c=(_0x222fdb,_0x4d8332)=>(_0x136fc2,_0x3cf0a4)=>_0x4d8332(_0x136fc2,_0x3cf0a4,_0x222fdb);const _0x37f9ea=_0x3948cf(0x58d),_0x247082=_0x3948cf(0x447);let _0x5583a5=class extends _0x223914['Disposable']{constructor(_0x38358d,_0x4e33f3){const _0x58c985=_0x3948cf;super(),this[_0x58c985(0x4ba)]=_0x38358d,this[_0x58c985(0x164)]=_0x4e33f3,this[_0x58c985(0x528)]();}[_0x3948cf(0x528)](){const _0x493149=_0x3948cf;this[_0x493149(0x345)](this[_0x493149(0x4ba)][_0x493149(0x254)][_0x493149(0x577)](()=>{const _0x4b48f1=_0x493149;var _0x551888;const _0x3bf62c=this[_0x4b48f1(0x4ba)]['getFocusedUnit']();let _0x2b3364=(_0x551888=this[_0x4b48f1(0x164)][_0x4b48f1(0x52b)](_0x37f9ea))!=null?_0x551888:_0x247082;_0x3bf62c instanceof _0x223914['Workbook']&&(_0x2b3364=_0x3bf62c[_0x4b48f1(0x289)]),document[_0x4b48f1(0x40a)]=_0x2b3364;}));}};_0x5583a5=_0x5c8d7d([_0x39a67c(0x0,_0x223914[_0x3948cf(0x2dd)]),_0x39a67c(0x1,_0x223914[_0x3948cf(0x1ff)])],_0x5583a5);var _0x10aa4a=Object[_0x3948cf(0x149)],_0x23b22d=Object[_0x3948cf(0x16b)],_0x146522=(_0x1c9cb7,_0x3f619e,_0x253d81,_0x577a00)=>{const _0x12aac8=_0x3948cf;for(var _0x420f36=_0x577a00>0x1?void 0x0:_0x577a00?_0x23b22d(_0x3f619e,_0x253d81):_0x3f619e,_0x1b038b=_0x1c9cb7[_0x12aac8(0x24c)]-0x1,_0xd317b4;_0x1b038b>=0x0;_0x1b038b--)(_0xd317b4=_0x1c9cb7[_0x1b038b])&&(_0x420f36=(_0x577a00?_0xd317b4(_0x3f619e,_0x253d81,_0x420f36):_0xd317b4(_0x420f36))||_0x420f36);return _0x577a00&&_0x420f36&&_0x10aa4a(_0x3f619e,_0x253d81,_0x420f36),_0x420f36;},_0x5b6d74=(_0xb23dd4,_0x4d77e3)=>(_0x582131,_0x4f9967)=>_0x4d77e3(_0x582131,_0x4f9967,_0xb23dd4);let _0x27f981=class{constructor(_0x516d13,_0x273622,_0x7ebc16){const _0x53e6e8=_0x3948cf;this['_configService']=_0x516d13,this[_0x53e6e8(0x3cc)]=_0x273622,this['localeService']=_0x7ebc16,this[_0x53e6e8(0x49a)]();}[_0x3948cf(0x49a)](){const _0x52a50a=_0x3948cf;this[_0x52a50a(0x3cc)][_0x52a50a(0x3ec)]({'priority':0x1,'interceptor':(_0x1d018e,_0x27bc10)=>_0x27bc10(_0x1d018e)[_0x52a50a(0x3c1)](_0x3fbd04['concatMap'](async _0x3c1d31=>{const _0x2b6ad0=_0x52a50a,_0x517c7b=_0x3c1d31;if(_0x517c7b[_0x2b6ad0(0x5e2)]===0x191&&window[_0x2b6ad0(0x60d)](this[_0x2b6ad0(0x306)]['t'](_0x2b6ad0(0x28a)))){const _0x7ff3e7=window[_0x2b6ad0(0x2b1)](window['location'][_0x2b6ad0(0x4bf)]);window[_0x2b6ad0(0x2bc)][_0x2b6ad0(0x4bf)]=this['_getLoginPath']()+_0x2b6ad0(0x46f)+_0x7ff3e7;}return _0x517c7b;}))});}[_0x3948cf(0x26a)](){const _0x31fa77=_0x3948cf;var _0x4433e9,_0x17df6e;const _0x8c1cdf=this[_0x31fa77(0x164)][_0x31fa77(0x52b)](_0x5d6ffa),_0x496ea8=this['_configService'][_0x31fa77(0x52b)](_0x59012f);return(_0x17df6e=(_0x4433e9=_0x496ea8==null?void 0x0:_0x496ea8['loginUrlKey'])!=null?_0x4433e9:_0x8c1cdf)!=null?_0x17df6e:_0x446363;}};_0x27f981=_0x146522([_0x5b6d74(0x0,_0x223914[_0x3948cf(0x1ff)]),_0x5b6d74(0x1,_0x223914['Inject'](_0x1ddba4[_0x3948cf(0x171)])),_0x5b6d74(0x2,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x570)]))],_0x27f981);var _0x395dd1=Object[_0x3948cf(0x149)],_0x2bda7d=Object[_0x3948cf(0x16b)],_0x578ef8=(_0x5f3ffa,_0x110aa0,_0x5a49ab,_0x468e8a)=>{const _0x33c9e4=_0x3948cf;for(var _0x15744e=_0x468e8a>0x1?void 0x0:_0x468e8a?_0x2bda7d(_0x110aa0,_0x5a49ab):_0x110aa0,_0x4694d6=_0x5f3ffa[_0x33c9e4(0x24c)]-0x1,_0x34966d;_0x4694d6>=0x0;_0x4694d6--)(_0x34966d=_0x5f3ffa[_0x4694d6])&&(_0x15744e=(_0x468e8a?_0x34966d(_0x110aa0,_0x5a49ab,_0x15744e):_0x34966d(_0x15744e))||_0x15744e);return _0x468e8a&&_0x15744e&&_0x395dd1(_0x110aa0,_0x5a49ab,_0x15744e),_0x15744e;},_0x2ec122=(_0x4f6388,_0x12699a)=>(_0x2b8f5a,_0x5a12cf)=>_0x12699a(_0x2b8f5a,_0x5a12cf,_0x4f6388);const _0x45e840=_0x3948cf(0x485),_0x32e81f=_0x3948cf(0x142);_0x24454f[_0x3948cf(0x3d1)]=class extends _0x223914[_0x3948cf(0x2aa)]{constructor(_0x185d1c,_0x410709){const _0x1b3279=_0x3948cf;super(),this[_0x1b3279(0x190)]=_0x185d1c,this[_0x1b3279(0x164)]=_0x410709,this[_0x1b3279(0x313)]();}[_0x3948cf(0x313)](){const _0x17ebd0=_0x3948cf,_0x547023=this;this[_0x17ebd0(0x345)](this[_0x17ebd0(0x190)][_0x17ebd0(0x3ec)]({'priority':0x3e7,'interceptor':_0x1ddba4[_0x17ebd0(0x37c)]({'isMatch'(_0x3c5985){const _0x10d5e8=_0x17ebd0;var _0x4bac4f;if(_0x3c5985[_0x10d5e8(0x2f6)]===_0x10d5e8(0x2d3)&&((_0x4bac4f=_0x3c5985[_0x10d5e8(0x41c)])!=null&&_0x4bac4f[_0x10d5e8(0x579)])){const {objectID:_0x5423c4,objectType:_0xc570b5}=_0x3c5985[_0x10d5e8(0x41c)]['body']||{};if(!_0x5423c4||_0xc570b5===void 0x0)return!0x1;const _0x21693f=_0x547023[_0x10d5e8(0x55c)]()+'/'+_0xc570b5+_0x10d5e8(0x3f5)+_0x5423c4+'/allowed';if(_0x3c5985[_0x10d5e8(0x4be)]===_0x21693f)return!0x0;}return!0x1;},'getParamsFromRequest'(_0xd4ba66){const _0x5ec316=_0x17ebd0;var _0x42340d;return(_0x42340d=_0xd4ba66[_0x5ec316(0x41c)])==null?void 0x0:_0x42340d['body'];},'mergeParamsToRequest'(_0x5cd249,_0x2b3fec){const _0x3c4ce0=_0x17ebd0,_0x5e9172=_0x547023[_0x3c4ce0(0x55c)]()+_0x3c4ce0(0x2e3),_0x205fd9=_0x5cd249[_0x3c4ce0(0x421)]((_0x8bc89f,_0x4e4f50)=>{const _0x1b1ebe=_0x3c4ce0,{unitID:_0x32b2c0,objectID:_0x2032ae,objectType:_0x10ca71,actions:_0xc6fcfd}=_0x4e4f50;return _0x8bc89f[_0x32b2c0]||(_0x8bc89f[_0x32b2c0]={}),_0x8bc89f[_0x32b2c0][_0x2032ae]||(_0x8bc89f[_0x32b2c0][_0x2032ae]={'objectID':_0x2032ae,'objectType':_0x10ca71,'actions':[]}),_0x8bc89f[_0x32b2c0][_0x2032ae][_0x1b1ebe(0x352)][_0x1b1ebe(0x4ef)](..._0xc6fcfd),_0x8bc89f;},{}),_0x9444ba=[];for(const _0x5c1004 in _0x205fd9)for(const _0x104575 in _0x205fd9[_0x5c1004]){const {actions:_0x5d49c5,objectType:_0x3bb955}=_0x205fd9[_0x5c1004][_0x104575],_0x1af188=[...new Set(_0x5d49c5)];_0x9444ba['push']({'unitID':_0x5c1004,'objectID':_0x104575,'objectType':_0x3bb955,'actions':_0x1af188});}return new _0x1ddba4[(_0x3c4ce0(0x24e))](_0x3c4ce0(0x2d3),_0x5e9172,{'headers':_0x2b3fec[_0x3c4ce0(0x594)],'withCredentials':_0x2b3fec[_0x3c4ce0(0x4a0)],'responseType':_0x2b3fec['responseType'],'body':{'requests':_0x9444ba}});}},{'distributeResult'(_0x1b789f,_0x3c1697){const _0xab5e36=_0x17ebd0,{objectActions:_0x44c50f}=_0x1b789f;return _0x3c1697[_0xab5e36(0x26b)](_0x5ce545=>{const _0x4a4682=_0xab5e36,{unitID:_0x7b92ef,objectID:_0x5006f5,actions:_0x288c64}=_0x5ce545,_0x154cfa=_0x44c50f[_0x4a4682(0x26d)](_0x843541=>_0x843541[_0x4a4682(0x397)]===_0x7b92ef&&_0x843541[_0x4a4682(0x38b)]===_0x5006f5),_0x291ce2=_0x288c64['map'](_0xa6951f=>_0x154cfa==null?void 0x0:_0x154cfa[_0x4a4682(0x352)][_0x4a4682(0x26d)](_0x2f3762=>_0x2f3762[_0x4a4682(0x559)]===_0xa6951f))[_0x4a4682(0x256)](_0x4dade3=>!!_0x4dade3);return{'config':_0x5ce545,'result':{'actions':_0x291ce2,'error':_0x1b789f[_0x4a4682(0x41b)]}};});}})}));}[_0x3948cf(0x55c)](){const _0x49a5eb=_0x3948cf;var _0x1fe2cc,_0x14e212;const _0x51f166=this[_0x49a5eb(0x164)]['getConfig'](_0x45e840),_0x442226=this[_0x49a5eb(0x164)]['getConfig'](_0x59012f);return(_0x14e212=(_0x1fe2cc=_0x442226==null?void 0x0:_0x442226[_0x49a5eb(0x4a2)])!=null?_0x1fe2cc:_0x51f166)!=null?_0x14e212:_0x32e81f;}async[_0x3948cf(0x43f)](_0x547e18){const _0x4e7ea0=_0x3948cf,_0x1808c1=this[_0x4e7ea0(0x55c)]()+'/'+_0x547e18[_0x4e7ea0(0x1ab)]+_0x4e7ea0(0x4d3);return(await this[_0x4e7ea0(0x190)]['post'](_0x1808c1,{'body':_0x547e18}))[_0x4e7ea0(0x579)]['objectID']||'';}async['list'](_0x4c0d6b){const _0x431a55=_0x3948cf,_0x400aea=this[_0x431a55(0x55c)]()+_0x431a55(0x165);return(await this['_HTTPService'][_0x431a55(0x39f)](_0x400aea,{'body':_0x4c0d6b}))[_0x431a55(0x579)][_0x431a55(0x451)];}async[_0x3948cf(0x483)](_0x4d8dda){const _0x4d27b0=_0x3948cf,_0x10ada0=this[_0x4d27b0(0x55c)]()+'/'+_0x4d8dda['objectType']+_0x4d27b0(0x3f5)+_0x4d8dda[_0x4d27b0(0x38b)];await this[_0x4d27b0(0x190)]['put'](_0x10ada0,{'body':_0x4d8dda});}async['allowed'](_0x45098f){const _0x30aae6=_0x3948cf,_0xb4cef5=this[_0x30aae6(0x55c)]()+'/'+_0x45098f[_0x30aae6(0x1ab)]+_0x30aae6(0x3f5)+_0x45098f['objectID']+_0x30aae6(0x153);return(await this[_0x30aae6(0x190)][_0x30aae6(0x39f)](_0xb4cef5,{'body':_0x45098f}))[_0x30aae6(0x579)]['actions'];}async['batchAllowed'](_0x28b814){const _0x1ae795=_0x3948cf,_0x2a6dbe=this[_0x1ae795(0x55c)]()+_0x1ae795(0x2e3);return(await this[_0x1ae795(0x190)][_0x1ae795(0x39f)](_0x2a6dbe,{'body':{'requests':_0x28b814}}))[_0x1ae795(0x579)]['objectActions'];}async[_0x3948cf(0x514)](_0x280564){const _0x4bb4f9=_0x3948cf,_0x566693=this['_getAPIPrefixPath']()+'/'+_0x280564[_0x4bb4f9(0x1ab)]+_0x4bb4f9(0x50a),_0x42f40b=await this[_0x4bb4f9(0x190)]['post'](_0x566693,{'body':_0x280564});return{'roles':_0x42f40b[_0x4bb4f9(0x579)][_0x4bb4f9(0x1f5)],'actions':_0x42f40b['body']['actions']};}async[_0x3948cf(0x5cc)](_0x4889f9){const _0xb88c18=_0x3948cf,_0x37e019=this[_0xb88c18(0x55c)]()+_0xb88c18(0x1f7);await this[_0xb88c18(0x190)]['delete'](_0x37e019,{'params':{'collaboratorID':_0x4889f9[_0xb88c18(0x269)],'objectID':_0x4889f9['objectID'],'unitID':_0x4889f9[_0xb88c18(0x397)]}});}async['updateCollaborator'](_0x1bebd2){const _0x380d77=_0x3948cf,_0x22ef0c=this['_getAPIPrefixPath']()+_0x380d77(0x1f7);await this['_HTTPService'][_0x380d77(0x49f)](_0x22ef0c,{'body':_0x1bebd2});}async[_0x3948cf(0x411)](_0x530bcc){const _0xf23352=_0x3948cf,_0x37ccf5=this[_0xf23352(0x55c)]()+_0xf23352(0x1f7);await this[_0xf23352(0x190)][_0xf23352(0x39f)](_0x37ccf5,{'body':_0x530bcc});}async[_0x3948cf(0x5f5)](_0x1612b9){const _0x2a5404=_0x3948cf,_0x1a02ed=this[_0x2a5404(0x55c)]()+_0x2a5404(0x1f7);return(await this['_HTTPService'][_0x2a5404(0x55a)](_0x1a02ed,{'params':{'objectID':_0x1612b9[_0x2a5404(0x38b)],'unitID':_0x1612b9['unitID']}}))[_0x2a5404(0x579)][_0x2a5404(0x538)];}async[_0x3948cf(0x5dc)](_0x2ec1a6){const _0x12559b=_0x3948cf,_0x581185=this[_0x12559b(0x55c)]()+'/collaborator';await this['_HTTPService']['put'](_0x581185,{'body':_0x2ec1a6});}},_0x24454f[_0x3948cf(0x3d1)]=_0x578ef8([_0x2ec122(0x0,_0x223914[_0x3948cf(0x25f)](_0x1ddba4[_0x3948cf(0x171)])),_0x2ec122(0x1,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x1ff)]))],_0x24454f[_0x3948cf(0x3d1)]);var _0x1a04ba={'exports':{}};function _0x550236(_0x352438){const _0x314eb3=_0x3948cf;throw new Error(_0x314eb3(0x530)+_0x352438+'\x22.\x20Please\x20configure\x20the\x20dynamicRequireTargets\x20or/and\x20ignoreDynamicRequires\x20option\x20of\x20@rollup/plugin-commonjs\x20appropriately\x20for\x20this\x20require\x20call\x20to\x20work.');}var _0x29b6ad={'exports':{}},_0x4fa671;function _0x28c7fc(){const _0x26e137=_0x3948cf;return _0x4fa671||(_0x4fa671=0x1,function(_0xe3c68a,_0x46e002){(function(_0x2375ca,_0x53bab1){const _0x46ce04=_0x5201;_0xe3c68a[_0x46ce04(0x29b)]=_0x53bab1();}(_0x22c069,function(){var _0x2d550b=_0x2d550b||function(_0x271559,_0x3a22b5){const _0x3fb02f=_0x5201;var _0x7caa5e;if(typeof window<'u'&&window['crypto']&&(_0x7caa5e=window[_0x3fb02f(0x235)]),typeof self<'u'&&self[_0x3fb02f(0x235)]&&(_0x7caa5e=self[_0x3fb02f(0x235)]),typeof globalThis<'u'&&globalThis[_0x3fb02f(0x235)]&&(_0x7caa5e=globalThis['crypto']),!_0x7caa5e&&typeof window<'u'&&window[_0x3fb02f(0x607)]&&(_0x7caa5e=window[_0x3fb02f(0x607)]),!_0x7caa5e&&typeof _0x22c069<'u'&&_0x22c069[_0x3fb02f(0x235)]&&(_0x7caa5e=_0x22c069['crypto']),!_0x7caa5e&&typeof _0x550236=='function')try{_0x7caa5e=require(_0x3fb02f(0x235));}catch{}var _0x50e8ab=function(){const _0x1326b4=_0x3fb02f;if(_0x7caa5e){if(typeof _0x7caa5e['getRandomValues']==_0x1326b4(0x172))try{return _0x7caa5e[_0x1326b4(0x60a)](new Uint32Array(0x1))[0x0];}catch{}if(typeof _0x7caa5e[_0x1326b4(0x588)]==_0x1326b4(0x172))try{return _0x7caa5e[_0x1326b4(0x588)](0x4)[_0x1326b4(0x4ab)]();}catch{}}throw new Error(_0x1326b4(0x4a3));},_0x29c236=Object[_0x3fb02f(0x43f)]||(function(){function _0x311cd6(){}return function(_0x5f5a58){const _0x248a62=_0x5201;var _0x1f054a;return _0x311cd6[_0x248a62(0x3ff)]=_0x5f5a58,_0x1f054a=new _0x311cd6(),_0x311cd6[_0x248a62(0x3ff)]=null,_0x1f054a;};}()),_0x45b421={},_0x2e6c1a=_0x45b421[_0x3fb02f(0x4f8)]={},_0x447169=_0x2e6c1a[_0x3fb02f(0x4c1)]=(function(){return{'extend':function(_0x2308a0){const _0x4f697=_0x5201;var _0x42abaa=_0x29c236(this);return _0x2308a0&&_0x42abaa[_0x4f697(0x586)](_0x2308a0),(!_0x42abaa[_0x4f697(0x188)](_0x4f697(0x49a))||this[_0x4f697(0x49a)]===_0x42abaa['init'])&&(_0x42abaa[_0x4f697(0x49a)]=function(){const _0x33faff=_0x4f697;_0x42abaa[_0x33faff(0x5f8)]['init'][_0x33faff(0x476)](this,arguments);}),_0x42abaa[_0x4f697(0x49a)]['prototype']=_0x42abaa,_0x42abaa['$super']=this,_0x42abaa;},'create':function(){const _0x43bf73=_0x5201;var _0x1c86ce=this[_0x43bf73(0x601)]();return _0x1c86ce[_0x43bf73(0x49a)][_0x43bf73(0x476)](_0x1c86ce,arguments),_0x1c86ce;},'init':function(){},'mixIn':function(_0x2ddab8){const _0x286827=_0x5201;for(var _0x40684c in _0x2ddab8)_0x2ddab8['hasOwnProperty'](_0x40684c)&&(this[_0x40684c]=_0x2ddab8[_0x40684c]);_0x2ddab8['hasOwnProperty'](_0x286827(0x4ec))&&(this['toString']=_0x2ddab8[_0x286827(0x4ec)]);},'clone':function(){const _0x2fa177=_0x5201;return this[_0x2fa177(0x49a)][_0x2fa177(0x3ff)][_0x2fa177(0x601)](this);}};}()),_0xb96405=_0x2e6c1a[_0x3fb02f(0x281)]=_0x447169['extend']({'init':function(_0x203eb8,_0x571f6c){const _0x3354c2=_0x3fb02f;_0x203eb8=this[_0x3354c2(0x357)]=_0x203eb8||[],_0x571f6c!=_0x3a22b5?this['sigBytes']=_0x571f6c:this['sigBytes']=_0x203eb8['length']*0x4;},'toString':function(_0x46e709){const _0x5ba056=_0x3fb02f;return(_0x46e709||_0x2ac45d)[_0x5ba056(0x2ec)](this);},'concat':function(_0x599f5c){const _0x1a0a03=_0x3fb02f;var _0x4d925d=this[_0x1a0a03(0x357)],_0x39d709=_0x599f5c[_0x1a0a03(0x357)],_0x1ffc2a=this[_0x1a0a03(0x336)],_0x452ceb=_0x599f5c[_0x1a0a03(0x336)];if(this[_0x1a0a03(0x55d)](),_0x1ffc2a%0x4)for(var _0x40601e=0x0;_0x40601e<_0x452ceb;_0x40601e++){var _0x41daac=_0x39d709[_0x40601e>>>0x2]>>>0x18-_0x40601e%0x4*0x8&0xff;_0x4d925d[_0x1ffc2a+_0x40601e>>>0x2]|=_0x41daac<<0x18-(_0x1ffc2a+_0x40601e)%0x4*0x8;}else{for(var _0xfec016=0x0;_0xfec016<_0x452ceb;_0xfec016+=0x4)_0x4d925d[_0x1ffc2a+_0xfec016>>>0x2]=_0x39d709[_0xfec016>>>0x2];}return this[_0x1a0a03(0x336)]+=_0x452ceb,this;},'clamp':function(){const _0x434285=_0x3fb02f;var _0x165330=this[_0x434285(0x357)],_0x5e103b=this[_0x434285(0x336)];_0x165330[_0x5e103b>>>0x2]&=0xffffffff<<0x20-_0x5e103b%0x4*0x8,_0x165330[_0x434285(0x24c)]=_0x271559['ceil'](_0x5e103b/0x4);},'clone':function(){const _0x14af50=_0x3fb02f;var _0x25e0f8=_0x447169[_0x14af50(0x5a6)][_0x14af50(0x56a)](this);return _0x25e0f8['words']=this[_0x14af50(0x357)][_0x14af50(0x26f)](0x0),_0x25e0f8;},'random':function(_0x100092){const _0x5ba1ea=_0x3fb02f;for(var _0x4fa3c7=[],_0x11ae16=0x0;_0x11ae16<_0x100092;_0x11ae16+=0x4)_0x4fa3c7[_0x5ba1ea(0x4ef)](_0x50e8ab());return new _0xb96405[(_0x5ba1ea(0x49a))](_0x4fa3c7,_0x100092);}}),_0x4fb3b8=_0x45b421[_0x3fb02f(0x272)]={},_0x2ac45d=_0x4fb3b8['Hex']={'stringify':function(_0x3902cb){const _0x12689c=_0x3fb02f;for(var _0x309dad=_0x3902cb[_0x12689c(0x357)],_0x5af21f=_0x3902cb[_0x12689c(0x336)],_0x48d88f=[],_0x5d156d=0x0;_0x5d156d<_0x5af21f;_0x5d156d++){var _0x11dfa1=_0x309dad[_0x5d156d>>>0x2]>>>0x18-_0x5d156d%0x4*0x8&0xff;_0x48d88f[_0x12689c(0x4ef)]((_0x11dfa1>>>0x4)[_0x12689c(0x4ec)](0x10)),_0x48d88f[_0x12689c(0x4ef)]((_0x11dfa1&0xf)['toString'](0x10));}return _0x48d88f[_0x12689c(0x5d0)]('');},'parse':function(_0x2fdd21){const _0x38fe14=_0x3fb02f;for(var _0x42c506=_0x2fdd21['length'],_0x3e805c=[],_0x34f92b=0x0;_0x34f92b<_0x42c506;_0x34f92b+=0x2)_0x3e805c[_0x34f92b>>>0x3]|=parseInt(_0x2fdd21[_0x38fe14(0x1b5)](_0x34f92b,0x2),0x10)<<0x18-_0x34f92b%0x8*0x4;return new _0xb96405[(_0x38fe14(0x49a))](_0x3e805c,_0x42c506/0x2);}},_0x3ec7d0=_0x4fb3b8['Latin1']={'stringify':function(_0x270c18){const _0x19975d=_0x3fb02f;for(var _0x22cd03=_0x270c18[_0x19975d(0x357)],_0x44ba69=_0x270c18[_0x19975d(0x336)],_0x460976=[],_0xd14e54=0x0;_0xd14e54<_0x44ba69;_0xd14e54++){var _0x3934d9=_0x22cd03[_0xd14e54>>>0x2]>>>0x18-_0xd14e54%0x4*0x8&0xff;_0x460976[_0x19975d(0x4ef)](String[_0x19975d(0x361)](_0x3934d9));}return _0x460976[_0x19975d(0x5d0)]('');},'parse':function(_0x11e9ad){const _0x1a0836=_0x3fb02f;for(var _0x3cf021=_0x11e9ad[_0x1a0836(0x24c)],_0x13e987=[],_0x4bb3ad=0x0;_0x4bb3ad<_0x3cf021;_0x4bb3ad++)_0x13e987[_0x4bb3ad>>>0x2]|=(_0x11e9ad[_0x1a0836(0x163)](_0x4bb3ad)&0xff)<<0x18-_0x4bb3ad%0x4*0x8;return new _0xb96405[(_0x1a0836(0x49a))](_0x13e987,_0x3cf021);}},_0x580534=_0x4fb3b8[_0x3fb02f(0x5d4)]={'stringify':function(_0x51db67){const _0x8c9d75=_0x3fb02f;try{return decodeURIComponent(escape(_0x3ec7d0[_0x8c9d75(0x2ec)](_0x51db67)));}catch{throw new Error(_0x8c9d75(0x2ed));}},'parse':function(_0x5be4f1){return _0x3ec7d0['parse'](unescape(encodeURIComponent(_0x5be4f1)));}},_0x31ad10=_0x2e6c1a[_0x3fb02f(0x2fc)]=_0x447169[_0x3fb02f(0x601)]({'reset':function(){this['_data']=new _0xb96405['init'](),this['_nDataBytes']=0x0;},'_append':function(_0x12b63b){const _0x500e7e=_0x3fb02f;typeof _0x12b63b==_0x500e7e(0x277)&&(_0x12b63b=_0x580534[_0x500e7e(0x517)](_0x12b63b)),this[_0x500e7e(0x264)]['concat'](_0x12b63b),this[_0x500e7e(0x155)]+=_0x12b63b[_0x500e7e(0x336)];},'_process':function(_0x196b7f){const _0x15fde4=_0x3fb02f;var _0xd3494f,_0x59dbf9=this['_data'],_0x28dd89=_0x59dbf9[_0x15fde4(0x357)],_0x535235=_0x59dbf9[_0x15fde4(0x336)],_0x4be289=this['blockSize'],_0x32e48c=_0x4be289*0x4,_0x29c622=_0x535235/_0x32e48c;_0x196b7f?_0x29c622=_0x271559['ceil'](_0x29c622):_0x29c622=_0x271559['max']((_0x29c622|0x0)-this[_0x15fde4(0x366)],0x0);var _0x70dbbf=_0x29c622*_0x4be289,_0x2d7174=_0x271559[_0x15fde4(0x496)](_0x70dbbf*0x4,_0x535235);if(_0x70dbbf){for(var _0x55899e=0x0;_0x55899e<_0x70dbbf;_0x55899e+=_0x4be289)this[_0x15fde4(0x3cd)](_0x28dd89,_0x55899e);_0xd3494f=_0x28dd89[_0x15fde4(0x5f3)](0x0,_0x70dbbf),_0x59dbf9['sigBytes']-=_0x2d7174;}return new _0xb96405[(_0x15fde4(0x49a))](_0xd3494f,_0x2d7174);},'clone':function(){const _0x4331bb=_0x3fb02f;var _0x220219=_0x447169[_0x4331bb(0x5a6)]['call'](this);return _0x220219[_0x4331bb(0x264)]=this[_0x4331bb(0x264)][_0x4331bb(0x5a6)](),_0x220219;},'_minBufferSize':0x0});_0x2e6c1a[_0x3fb02f(0x5c6)]=_0x31ad10['extend']({'cfg':_0x447169[_0x3fb02f(0x601)](),'init':function(_0x521478){const _0x2e867d=_0x3fb02f;this[_0x2e867d(0x516)]=this['cfg'][_0x2e867d(0x601)](_0x521478),this[_0x2e867d(0x37b)]();},'reset':function(){const _0x42892b=_0x3fb02f;_0x31ad10[_0x42892b(0x37b)]['call'](this),this[_0x42892b(0x170)]();},'update':function(_0x1bad10){const _0x5820b4=_0x3fb02f;return this[_0x5820b4(0x210)](_0x1bad10),this[_0x5820b4(0x1f0)](),this;},'finalize':function(_0x52ccf2){const _0x48c052=_0x3fb02f;_0x52ccf2&&this['_append'](_0x52ccf2);var _0x14bdac=this[_0x48c052(0x2c8)]();return _0x14bdac;},'blockSize':0x10,'_createHelper':function(_0x29674a){return function(_0x2f6fb7,_0x4ff1aa){const _0x5688d5=_0x5201;return new _0x29674a[(_0x5688d5(0x49a))](_0x4ff1aa)[_0x5688d5(0x3eb)](_0x2f6fb7);};},'_createHmacHelper':function(_0x567dce){return function(_0x511313,_0x25859e){return new _0x65f36c['HMAC']['init'](_0x567dce,_0x25859e)['finalize'](_0x511313);};}});var _0x65f36c=_0x45b421[_0x3fb02f(0x2c7)]={};return _0x45b421;}(Math);return _0x2d550b;}));}(_0x29b6ad)),_0x29b6ad[_0x26e137(0x29b)];}var _0x29cde7={'exports':{}},_0x43161a;function _0x624310(){const _0x145051=_0x3948cf;return _0x43161a||(_0x43161a=0x1,function(_0x402e53,_0x249a91){(function(_0x41e597,_0x228416){const _0x26a633=_0x5201;_0x402e53[_0x26a633(0x29b)]=_0x228416(_0x28c7fc());}(_0x22c069,function(_0x2a6196){const _0x57c583=_0x5201;return(function(){const _0x44ca90=_0x5201;var _0x64f47b=_0x2a6196,_0x52863c=_0x64f47b[_0x44ca90(0x4f8)],_0x2037dd=_0x52863c[_0x44ca90(0x281)],_0x1f5c9c=_0x64f47b[_0x44ca90(0x272)];_0x1f5c9c[_0x44ca90(0x354)]={'stringify':function(_0x3eecfb){const _0x24bcfb=_0x44ca90;var _0x2ce802=_0x3eecfb['words'],_0x117730=_0x3eecfb[_0x24bcfb(0x336)],_0x24a4c5=this[_0x24bcfb(0x467)];_0x3eecfb[_0x24bcfb(0x55d)]();for(var _0x3d6210=[],_0x160e4c=0x0;_0x160e4c<_0x117730;_0x160e4c+=0x3)for(var _0x29855d=_0x2ce802[_0x160e4c>>>0x2]>>>0x18-_0x160e4c%0x4*0x8&0xff,_0x523227=_0x2ce802[_0x160e4c+0x1>>>0x2]>>>0x18-(_0x160e4c+0x1)%0x4*0x8&0xff,_0x17da00=_0x2ce802[_0x160e4c+0x2>>>0x2]>>>0x18-(_0x160e4c+0x2)%0x4*0x8&0xff,_0x2fc4f0=_0x29855d<<0x10|_0x523227<<0x8|_0x17da00,_0x4e948a=0x0;_0x4e948a<0x4&&_0x160e4c+_0x4e948a*0.75<_0x117730;_0x4e948a++)_0x3d6210[_0x24bcfb(0x4ef)](_0x24a4c5[_0x24bcfb(0x3c5)](_0x2fc4f0>>>0x6*(0x3-_0x4e948a)&0x3f));var _0x5a2f86=_0x24a4c5[_0x24bcfb(0x3c5)](0x40);if(_0x5a2f86){for(;_0x3d6210['length']%0x4;)_0x3d6210[_0x24bcfb(0x4ef)](_0x5a2f86);}return _0x3d6210['join']('');},'parse':function(_0x291b51){const _0x4662a5=_0x44ca90;var _0x284a2e=_0x291b51['length'],_0xccb79b=this['_map'],_0x51f0a5=this[_0x4662a5(0x2c0)];if(!_0x51f0a5){_0x51f0a5=this[_0x4662a5(0x2c0)]=[];for(var _0x337c1a=0x0;_0x337c1a<_0xccb79b[_0x4662a5(0x24c)];_0x337c1a++)_0x51f0a5[_0xccb79b[_0x4662a5(0x163)](_0x337c1a)]=_0x337c1a;}var _0x497bb7=_0xccb79b[_0x4662a5(0x3c5)](0x40);if(_0x497bb7){var _0x454179=_0x291b51[_0x4662a5(0x46b)](_0x497bb7);_0x454179!==-0x1&&(_0x284a2e=_0x454179);}return _0x564bbe(_0x291b51,_0x284a2e,_0x51f0a5);},'_map':_0x44ca90(0x5e0)};function _0x564bbe(_0xb1a44f,_0x5b25d9,_0x11b37d){const _0x64c698=_0x44ca90;for(var _0x2a9c37=[],_0x101c7a=0x0,_0x223f6a=0x0;_0x223f6a<_0x5b25d9;_0x223f6a++)if(_0x223f6a%0x4){var _0x276cdc=_0x11b37d[_0xb1a44f['charCodeAt'](_0x223f6a-0x1)]<<_0x223f6a%0x4*0x2,_0x4c4c29=_0x11b37d[_0xb1a44f[_0x64c698(0x163)](_0x223f6a)]>>>0x6-_0x223f6a%0x4*0x2,_0x3352e7=_0x276cdc|_0x4c4c29;_0x2a9c37[_0x101c7a>>>0x2]|=_0x3352e7<<0x18-_0x101c7a%0x4*0x8,_0x101c7a++;}return _0x2037dd['create'](_0x2a9c37,_0x101c7a);}}()),_0x2a6196[_0x57c583(0x272)][_0x57c583(0x354)];}));}(_0x29cde7)),_0x29cde7[_0x145051(0x29b)];}var _0x40353e={'exports':{}},_0x352767;function _0x4e384c(){const _0x3c5342=_0x3948cf;return _0x352767||(_0x352767=0x1,function(_0x39f983,_0x5df705){(function(_0x3ed16d,_0x1d6a5b){const _0x20e7f6=_0x5201;_0x39f983[_0x20e7f6(0x29b)]=_0x1d6a5b(_0x28c7fc());}(_0x22c069,function(_0x56a773){const _0x4f11d4=_0x5201;return function(_0x14bafb){const _0x523b08=_0x5201;var _0x4c4085=_0x56a773,_0x2a0b2b=_0x4c4085[_0x523b08(0x4f8)],_0x397531=_0x2a0b2b[_0x523b08(0x281)],_0x28aed3=_0x2a0b2b['Hasher'],_0xe4576=_0x4c4085[_0x523b08(0x2c7)],_0x4f08d3=[];(function(){const _0x1048f2=_0x523b08;for(var _0x5ddca4=0x0;_0x5ddca4<0x40;_0x5ddca4++)_0x4f08d3[_0x5ddca4]=_0x14bafb[_0x1048f2(0x47a)](_0x14bafb[_0x1048f2(0x3c2)](_0x5ddca4+0x1))*0x100000000|0x0;}());var _0x5461c5=_0xe4576['MD5']=_0x28aed3[_0x523b08(0x601)]({'_doReset':function(){const _0x190758=_0x523b08;this['_hash']=new _0x397531[(_0x190758(0x49a))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);},'_doProcessBlock':function(_0x184737,_0x3aff9f){const _0x302412=_0x523b08;for(var _0x38bc8d=0x0;_0x38bc8d<0x10;_0x38bc8d++){var _0x24dcbf=_0x3aff9f+_0x38bc8d,_0x26485d=_0x184737[_0x24dcbf];_0x184737[_0x24dcbf]=(_0x26485d<<0x8|_0x26485d>>>0x18)&0xff00ff|(_0x26485d<<0x18|_0x26485d>>>0x8)&0xff00ff00;}var _0x527edd=this['_hash'][_0x302412(0x357)],_0x22098f=_0x184737[_0x3aff9f+0x0],_0xb13954=_0x184737[_0x3aff9f+0x1],_0x475b6e=_0x184737[_0x3aff9f+0x2],_0x2d75ec=_0x184737[_0x3aff9f+0x3],_0x1e00af=_0x184737[_0x3aff9f+0x4],_0x33af4e=_0x184737[_0x3aff9f+0x5],_0x1b3008=_0x184737[_0x3aff9f+0x6],_0x47dfff=_0x184737[_0x3aff9f+0x7],_0x5cc5ce=_0x184737[_0x3aff9f+0x8],_0x3344eb=_0x184737[_0x3aff9f+0x9],_0xabbce6=_0x184737[_0x3aff9f+0xa],_0x29a54c=_0x184737[_0x3aff9f+0xb],_0x2dd79d=_0x184737[_0x3aff9f+0xc],_0x13b06a=_0x184737[_0x3aff9f+0xd],_0x1ecaba=_0x184737[_0x3aff9f+0xe],_0x17520a=_0x184737[_0x3aff9f+0xf],_0x3ff374=_0x527edd[0x0],_0x1e4416=_0x527edd[0x1],_0x2c1d70=_0x527edd[0x2],_0x79dbeb=_0x527edd[0x3];_0x3ff374=_0x12ca75(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x22098f,0x7,_0x4f08d3[0x0]),_0x79dbeb=_0x12ca75(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0xb13954,0xc,_0x4f08d3[0x1]),_0x2c1d70=_0x12ca75(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x475b6e,0x11,_0x4f08d3[0x2]),_0x1e4416=_0x12ca75(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x2d75ec,0x16,_0x4f08d3[0x3]),_0x3ff374=_0x12ca75(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x1e00af,0x7,_0x4f08d3[0x4]),_0x79dbeb=_0x12ca75(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x33af4e,0xc,_0x4f08d3[0x5]),_0x2c1d70=_0x12ca75(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x1b3008,0x11,_0x4f08d3[0x6]),_0x1e4416=_0x12ca75(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x47dfff,0x16,_0x4f08d3[0x7]),_0x3ff374=_0x12ca75(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x5cc5ce,0x7,_0x4f08d3[0x8]),_0x79dbeb=_0x12ca75(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x3344eb,0xc,_0x4f08d3[0x9]),_0x2c1d70=_0x12ca75(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0xabbce6,0x11,_0x4f08d3[0xa]),_0x1e4416=_0x12ca75(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x29a54c,0x16,_0x4f08d3[0xb]),_0x3ff374=_0x12ca75(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x2dd79d,0x7,_0x4f08d3[0xc]),_0x79dbeb=_0x12ca75(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x13b06a,0xc,_0x4f08d3[0xd]),_0x2c1d70=_0x12ca75(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x1ecaba,0x11,_0x4f08d3[0xe]),_0x1e4416=_0x12ca75(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x17520a,0x16,_0x4f08d3[0xf]),_0x3ff374=_0x5f1ff7(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0xb13954,0x5,_0x4f08d3[0x10]),_0x79dbeb=_0x5f1ff7(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x1b3008,0x9,_0x4f08d3[0x11]),_0x2c1d70=_0x5f1ff7(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x29a54c,0xe,_0x4f08d3[0x12]),_0x1e4416=_0x5f1ff7(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x22098f,0x14,_0x4f08d3[0x13]),_0x3ff374=_0x5f1ff7(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x33af4e,0x5,_0x4f08d3[0x14]),_0x79dbeb=_0x5f1ff7(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0xabbce6,0x9,_0x4f08d3[0x15]),_0x2c1d70=_0x5f1ff7(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x17520a,0xe,_0x4f08d3[0x16]),_0x1e4416=_0x5f1ff7(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e00af,0x14,_0x4f08d3[0x17]),_0x3ff374=_0x5f1ff7(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3344eb,0x5,_0x4f08d3[0x18]),_0x79dbeb=_0x5f1ff7(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x1ecaba,0x9,_0x4f08d3[0x19]),_0x2c1d70=_0x5f1ff7(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x2d75ec,0xe,_0x4f08d3[0x1a]),_0x1e4416=_0x5f1ff7(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x5cc5ce,0x14,_0x4f08d3[0x1b]),_0x3ff374=_0x5f1ff7(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x13b06a,0x5,_0x4f08d3[0x1c]),_0x79dbeb=_0x5f1ff7(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x475b6e,0x9,_0x4f08d3[0x1d]),_0x2c1d70=_0x5f1ff7(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x47dfff,0xe,_0x4f08d3[0x1e]),_0x1e4416=_0x5f1ff7(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x2dd79d,0x14,_0x4f08d3[0x1f]),_0x3ff374=_0xe9e70c(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x33af4e,0x4,_0x4f08d3[0x20]),_0x79dbeb=_0xe9e70c(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x5cc5ce,0xb,_0x4f08d3[0x21]),_0x2c1d70=_0xe9e70c(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x29a54c,0x10,_0x4f08d3[0x22]),_0x1e4416=_0xe9e70c(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1ecaba,0x17,_0x4f08d3[0x23]),_0x3ff374=_0xe9e70c(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0xb13954,0x4,_0x4f08d3[0x24]),_0x79dbeb=_0xe9e70c(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x1e00af,0xb,_0x4f08d3[0x25]),_0x2c1d70=_0xe9e70c(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x47dfff,0x10,_0x4f08d3[0x26]),_0x1e4416=_0xe9e70c(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0xabbce6,0x17,_0x4f08d3[0x27]),_0x3ff374=_0xe9e70c(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x13b06a,0x4,_0x4f08d3[0x28]),_0x79dbeb=_0xe9e70c(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x22098f,0xb,_0x4f08d3[0x29]),_0x2c1d70=_0xe9e70c(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x2d75ec,0x10,_0x4f08d3[0x2a]),_0x1e4416=_0xe9e70c(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1b3008,0x17,_0x4f08d3[0x2b]),_0x3ff374=_0xe9e70c(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3344eb,0x4,_0x4f08d3[0x2c]),_0x79dbeb=_0xe9e70c(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x2dd79d,0xb,_0x4f08d3[0x2d]),_0x2c1d70=_0xe9e70c(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x17520a,0x10,_0x4f08d3[0x2e]),_0x1e4416=_0xe9e70c(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x475b6e,0x17,_0x4f08d3[0x2f]),_0x3ff374=_0x42a592(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x22098f,0x6,_0x4f08d3[0x30]),_0x79dbeb=_0x42a592(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x47dfff,0xa,_0x4f08d3[0x31]),_0x2c1d70=_0x42a592(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x1ecaba,0xf,_0x4f08d3[0x32]),_0x1e4416=_0x42a592(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x33af4e,0x15,_0x4f08d3[0x33]),_0x3ff374=_0x42a592(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x2dd79d,0x6,_0x4f08d3[0x34]),_0x79dbeb=_0x42a592(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x2d75ec,0xa,_0x4f08d3[0x35]),_0x2c1d70=_0x42a592(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0xabbce6,0xf,_0x4f08d3[0x36]),_0x1e4416=_0x42a592(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0xb13954,0x15,_0x4f08d3[0x37]),_0x3ff374=_0x42a592(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x5cc5ce,0x6,_0x4f08d3[0x38]),_0x79dbeb=_0x42a592(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x17520a,0xa,_0x4f08d3[0x39]),_0x2c1d70=_0x42a592(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x1b3008,0xf,_0x4f08d3[0x3a]),_0x1e4416=_0x42a592(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x13b06a,0x15,_0x4f08d3[0x3b]),_0x3ff374=_0x42a592(_0x3ff374,_0x1e4416,_0x2c1d70,_0x79dbeb,_0x1e00af,0x6,_0x4f08d3[0x3c]),_0x79dbeb=_0x42a592(_0x79dbeb,_0x3ff374,_0x1e4416,_0x2c1d70,_0x29a54c,0xa,_0x4f08d3[0x3d]),_0x2c1d70=_0x42a592(_0x2c1d70,_0x79dbeb,_0x3ff374,_0x1e4416,_0x475b6e,0xf,_0x4f08d3[0x3e]),_0x1e4416=_0x42a592(_0x1e4416,_0x2c1d70,_0x79dbeb,_0x3ff374,_0x3344eb,0x15,_0x4f08d3[0x3f]),_0x527edd[0x0]=_0x527edd[0x0]+_0x3ff374|0x0,_0x527edd[0x1]=_0x527edd[0x1]+_0x1e4416|0x0,_0x527edd[0x2]=_0x527edd[0x2]+_0x2c1d70|0x0,_0x527edd[0x3]=_0x527edd[0x3]+_0x79dbeb|0x0;},'_doFinalize':function(){const _0xe149b8=_0x523b08;var _0xbcc117=this[_0xe149b8(0x264)],_0x3c751f=_0xbcc117[_0xe149b8(0x357)],_0x48d539=this[_0xe149b8(0x155)]*0x8,_0x5f1b3a=_0xbcc117[_0xe149b8(0x336)]*0x8;_0x3c751f[_0x5f1b3a>>>0x5]|=0x80<<0x18-_0x5f1b3a%0x20;var _0x55153b=_0x14bafb[_0xe149b8(0x3d6)](_0x48d539/0x100000000),_0x4db481=_0x48d539;_0x3c751f[(_0x5f1b3a+0x40>>>0x9<<0x4)+0xf]=(_0x55153b<<0x8|_0x55153b>>>0x18)&0xff00ff|(_0x55153b<<0x18|_0x55153b>>>0x8)&0xff00ff00,_0x3c751f[(_0x5f1b3a+0x40>>>0x9<<0x4)+0xe]=(_0x4db481<<0x8|_0x4db481>>>0x18)&0xff00ff|(_0x4db481<<0x18|_0x4db481>>>0x8)&0xff00ff00,_0xbcc117[_0xe149b8(0x336)]=(_0x3c751f[_0xe149b8(0x24c)]+0x1)*0x4,this[_0xe149b8(0x1f0)]();for(var _0x7dd0fe=this['_hash'],_0xd48c7=_0x7dd0fe[_0xe149b8(0x357)],_0x11d2b3=0x0;_0x11d2b3<0x4;_0x11d2b3++){var _0x49e364=_0xd48c7[_0x11d2b3];_0xd48c7[_0x11d2b3]=(_0x49e364<<0x8|_0x49e364>>>0x18)&0xff00ff|(_0x49e364<<0x18|_0x49e364>>>0x8)&0xff00ff00;}return _0x7dd0fe;},'clone':function(){const _0x89c87c=_0x523b08;var _0x501622=_0x28aed3[_0x89c87c(0x5a6)][_0x89c87c(0x56a)](this);return _0x501622[_0x89c87c(0x23f)]=this['_hash'][_0x89c87c(0x5a6)](),_0x501622;}});function _0x12ca75(_0x1d5ad9,_0x4375cd,_0x178f13,_0x20dc04,_0x583419,_0x181d3f,_0x3fa8c1){var _0x5b6761=_0x1d5ad9+(_0x4375cd&_0x178f13|~_0x4375cd&_0x20dc04)+_0x583419+_0x3fa8c1;return(_0x5b6761<<_0x181d3f|_0x5b6761>>>0x20-_0x181d3f)+_0x4375cd;}function _0x5f1ff7(_0x459830,_0x4cc46b,_0x5d2ca2,_0x2b9d3a,_0x436654,_0x408ce1,_0x3da94d){var _0x3b890b=_0x459830+(_0x4cc46b&_0x2b9d3a|_0x5d2ca2&~_0x2b9d3a)+_0x436654+_0x3da94d;return(_0x3b890b<<_0x408ce1|_0x3b890b>>>0x20-_0x408ce1)+_0x4cc46b;}function _0xe9e70c(_0x25945e,_0x4bb3e8,_0x199a57,_0x16402b,_0x4fd593,_0x3c22df,_0xe00ca7){var _0x1db341=_0x25945e+(_0x4bb3e8^_0x199a57^_0x16402b)+_0x4fd593+_0xe00ca7;return(_0x1db341<<_0x3c22df|_0x1db341>>>0x20-_0x3c22df)+_0x4bb3e8;}function _0x42a592(_0x29742f,_0x4b1d38,_0x314a20,_0x2d0db8,_0x468085,_0x2d3eaa,_0x32d46f){var _0x3fcc0d=_0x29742f+(_0x314a20^(_0x4b1d38|~_0x2d0db8))+_0x468085+_0x32d46f;return(_0x3fcc0d<<_0x2d3eaa|_0x3fcc0d>>>0x20-_0x2d3eaa)+_0x4b1d38;}_0x4c4085['MD5']=_0x28aed3[_0x523b08(0x431)](_0x5461c5),_0x4c4085[_0x523b08(0x60c)]=_0x28aed3[_0x523b08(0x4cd)](_0x5461c5);}(Math),_0x56a773[_0x4f11d4(0x1e3)];}));}(_0x40353e)),_0x40353e[_0x3c5342(0x29b)];}var _0x3cd628={'exports':{}},_0x502c8d={'exports':{}},_0x437d89;function _0x42cd84(){const _0x1f5cd0=_0x3948cf;return _0x437d89||(_0x437d89=0x1,function(_0x2c1ac3,_0x2c20eb){(function(_0x34280e,_0x1b9980){const _0x46f06d=_0x5201;_0x2c1ac3[_0x46f06d(0x29b)]=_0x1b9980(_0x28c7fc());}(_0x22c069,function(_0x41e0fd){const _0x2f678e=_0x5201;return(function(){const _0x342985=_0x5201;var _0x507556=_0x41e0fd,_0x24067e=_0x507556[_0x342985(0x4f8)],_0x46b981=_0x24067e[_0x342985(0x281)],_0x23eab2=_0x24067e['Hasher'],_0x1fde55=_0x507556[_0x342985(0x2c7)],_0x8efe27=[],_0x3df66b=_0x1fde55['SHA1']=_0x23eab2[_0x342985(0x601)]({'_doReset':function(){const _0x328cad=_0x342985;this[_0x328cad(0x23f)]=new _0x46b981[(_0x328cad(0x49a))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]);},'_doProcessBlock':function(_0x513517,_0x54b579){for(var _0x273068=this['_hash']['words'],_0x36f924=_0x273068[0x0],_0x34e85e=_0x273068[0x1],_0x12fbf6=_0x273068[0x2],_0x5afa2b=_0x273068[0x3],_0x5b4076=_0x273068[0x4],_0x4f2012=0x0;_0x4f2012<0x50;_0x4f2012++){if(_0x4f2012<0x10)_0x8efe27[_0x4f2012]=_0x513517[_0x54b579+_0x4f2012]|0x0;else{var _0x56a619=_0x8efe27[_0x4f2012-0x3]^_0x8efe27[_0x4f2012-0x8]^_0x8efe27[_0x4f2012-0xe]^_0x8efe27[_0x4f2012-0x10];_0x8efe27[_0x4f2012]=_0x56a619<<0x1|_0x56a619>>>0x1f;}var _0x443400=(_0x36f924<<0x5|_0x36f924>>>0x1b)+_0x5b4076+_0x8efe27[_0x4f2012];_0x4f2012<0x14?_0x443400+=(_0x34e85e&_0x12fbf6|~_0x34e85e&_0x5afa2b)+0x5a827999:_0x4f2012<0x28?_0x443400+=(_0x34e85e^_0x12fbf6^_0x5afa2b)+0x6ed9eba1:_0x4f2012<0x3c?_0x443400+=(_0x34e85e&_0x12fbf6|_0x34e85e&_0x5afa2b|_0x12fbf6&_0x5afa2b)-0x70e44324:_0x443400+=(_0x34e85e^_0x12fbf6^_0x5afa2b)-0x359d3e2a,_0x5b4076=_0x5afa2b,_0x5afa2b=_0x12fbf6,_0x12fbf6=_0x34e85e<<0x1e|_0x34e85e>>>0x2,_0x34e85e=_0x36f924,_0x36f924=_0x443400;}_0x273068[0x0]=_0x273068[0x0]+_0x36f924|0x0,_0x273068[0x1]=_0x273068[0x1]+_0x34e85e|0x0,_0x273068[0x2]=_0x273068[0x2]+_0x12fbf6|0x0,_0x273068[0x3]=_0x273068[0x3]+_0x5afa2b|0x0,_0x273068[0x4]=_0x273068[0x4]+_0x5b4076|0x0;},'_doFinalize':function(){const _0x5c8d96=_0x342985;var _0x33d643=this[_0x5c8d96(0x264)],_0x486f93=_0x33d643[_0x5c8d96(0x357)],_0x39ccba=this[_0x5c8d96(0x155)]*0x8,_0x27f803=_0x33d643[_0x5c8d96(0x336)]*0x8;return _0x486f93[_0x27f803>>>0x5]|=0x80<<0x18-_0x27f803%0x20,_0x486f93[(_0x27f803+0x40>>>0x9<<0x4)+0xe]=Math[_0x5c8d96(0x3d6)](_0x39ccba/0x100000000),_0x486f93[(_0x27f803+0x40>>>0x9<<0x4)+0xf]=_0x39ccba,_0x33d643[_0x5c8d96(0x336)]=_0x486f93[_0x5c8d96(0x24c)]*0x4,this['_process'](),this[_0x5c8d96(0x23f)];},'clone':function(){const _0x216a22=_0x342985;var _0x404e50=_0x23eab2[_0x216a22(0x5a6)][_0x216a22(0x56a)](this);return _0x404e50[_0x216a22(0x23f)]=this[_0x216a22(0x23f)]['clone'](),_0x404e50;}});_0x507556[_0x342985(0x3e6)]=_0x23eab2[_0x342985(0x431)](_0x3df66b),_0x507556[_0x342985(0x5bd)]=_0x23eab2['_createHmacHelper'](_0x3df66b);}()),_0x41e0fd[_0x2f678e(0x3e6)];}));}(_0x502c8d)),_0x502c8d[_0x1f5cd0(0x29b)];}var _0x54f66a={'exports':{}},_0x3447e0;function _0x6da63c(){const _0x5b9740=_0x3948cf;return _0x3447e0||(_0x3447e0=0x1,function(_0x201020,_0x384324){(function(_0x1f0d9c,_0x148ee4){const _0x311625=_0x5201;_0x201020[_0x311625(0x29b)]=_0x148ee4(_0x28c7fc());}(_0x22c069,function(_0x118d32){(function(){const _0x10fc6f=_0x5201;var _0x364f69=_0x118d32,_0x168ece=_0x364f69[_0x10fc6f(0x4f8)],_0x2cb76e=_0x168ece['Base'],_0x590c65=_0x364f69[_0x10fc6f(0x272)],_0x3e0709=_0x590c65[_0x10fc6f(0x5d4)],_0xe0b250=_0x364f69[_0x10fc6f(0x2c7)];_0xe0b250['HMAC']=_0x2cb76e[_0x10fc6f(0x601)]({'init':function(_0x2b130c,_0x411dc0){const _0x5f15ee=_0x10fc6f;_0x2b130c=this['_hasher']=new _0x2b130c['init'](),typeof _0x411dc0==_0x5f15ee(0x277)&&(_0x411dc0=_0x3e0709[_0x5f15ee(0x517)](_0x411dc0));var _0x2b3d7e=_0x2b130c[_0x5f15ee(0x44e)],_0x5ae132=_0x2b3d7e*0x4;_0x411dc0[_0x5f15ee(0x336)]>_0x5ae132&&(_0x411dc0=_0x2b130c[_0x5f15ee(0x3eb)](_0x411dc0)),_0x411dc0[_0x5f15ee(0x55d)]();for(var _0x34c9ff=this[_0x5f15ee(0x562)]=_0x411dc0[_0x5f15ee(0x5a6)](),_0x241f20=this[_0x5f15ee(0x40e)]=_0x411dc0['clone'](),_0x1d2c58=_0x34c9ff[_0x5f15ee(0x357)],_0x545898=_0x241f20['words'],_0x49d509=0x0;_0x49d509<_0x2b3d7e;_0x49d509++)_0x1d2c58[_0x49d509]^=0x5c5c5c5c,_0x545898[_0x49d509]^=0x36363636;_0x34c9ff[_0x5f15ee(0x336)]=_0x241f20[_0x5f15ee(0x336)]=_0x5ae132,this[_0x5f15ee(0x37b)]();},'reset':function(){const _0x452652=_0x10fc6f;var _0x541df2=this['_hasher'];_0x541df2[_0x452652(0x37b)](),_0x541df2[_0x452652(0x483)](this[_0x452652(0x40e)]);},'update':function(_0x1105ee){const _0x55866c=_0x10fc6f;return this[_0x55866c(0x2b6)][_0x55866c(0x483)](_0x1105ee),this;},'finalize':function(_0x232cf2){const _0x176e04=_0x10fc6f;var _0x6f92a=this[_0x176e04(0x2b6)],_0x31a74c=_0x6f92a['finalize'](_0x232cf2);_0x6f92a[_0x176e04(0x37b)]();var _0x3162b3=_0x6f92a[_0x176e04(0x3eb)](this[_0x176e04(0x562)][_0x176e04(0x5a6)]()['concat'](_0x31a74c));return _0x3162b3;}});}());}));}(_0x54f66a)),_0x54f66a[_0x5b9740(0x29b)];}var _0xbe969f;function _0x57ed33(){const _0x4081a9=_0x3948cf;return _0xbe969f||(_0xbe969f=0x1,function(_0x371055,_0x24a162){(function(_0x3dd7f4,_0x249eb5,_0x4ce107){_0x371055['exports']=_0x249eb5(_0x28c7fc(),_0x42cd84(),_0x6da63c());}(_0x22c069,function(_0x4e971c){const _0x15a651=_0x5201;return(function(){const _0x59b8a5=_0x5201;var _0x49cf7e=_0x4e971c,_0x2e876f=_0x49cf7e[_0x59b8a5(0x4f8)],_0xfb09c5=_0x2e876f[_0x59b8a5(0x4c1)],_0x11a0a1=_0x2e876f[_0x59b8a5(0x281)],_0x1f4ce3=_0x49cf7e[_0x59b8a5(0x2c7)],_0x17d149=_0x1f4ce3[_0x59b8a5(0x1e3)],_0x26649f=_0x1f4ce3['EvpKDF']=_0xfb09c5[_0x59b8a5(0x601)]({'cfg':_0xfb09c5['extend']({'keySize':0x80/0x20,'hasher':_0x17d149,'iterations':0x1}),'init':function(_0x2b751f){const _0x491da9=_0x59b8a5;this[_0x491da9(0x516)]=this[_0x491da9(0x516)]['extend'](_0x2b751f);},'compute':function(_0x4ecc5c,_0x11fa9c){const _0x3c4895=_0x59b8a5;for(var _0x4409f4,_0x165f79=this[_0x3c4895(0x516)],_0x16329c=_0x165f79['hasher'][_0x3c4895(0x43f)](),_0x2f0e8f=_0x11a0a1['create'](),_0x457c23=_0x2f0e8f[_0x3c4895(0x357)],_0x440013=_0x165f79[_0x3c4895(0x45b)],_0x40f296=_0x165f79['iterations'];_0x457c23[_0x3c4895(0x24c)]<_0x440013;){_0x4409f4&&_0x16329c[_0x3c4895(0x483)](_0x4409f4),_0x4409f4=_0x16329c[_0x3c4895(0x483)](_0x4ecc5c)[_0x3c4895(0x3eb)](_0x11fa9c),_0x16329c[_0x3c4895(0x37b)]();for(var _0x135336=0x1;_0x135336<_0x40f296;_0x135336++)_0x4409f4=_0x16329c['finalize'](_0x4409f4),_0x16329c[_0x3c4895(0x37b)]();_0x2f0e8f['concat'](_0x4409f4);}return _0x2f0e8f[_0x3c4895(0x336)]=_0x440013*0x4,_0x2f0e8f;}});_0x49cf7e[_0x59b8a5(0x3ef)]=function(_0x5cabaa,_0x3ef5f2,_0x322791){const _0x4e8383=_0x59b8a5;return _0x26649f[_0x4e8383(0x43f)](_0x322791)[_0x4e8383(0x3f6)](_0x5cabaa,_0x3ef5f2);};}()),_0x4e971c[_0x15a651(0x3ef)];}));}(_0x3cd628)),_0x3cd628[_0x4081a9(0x29b)];}var _0x588ad5={'exports':{}},_0x38c4bc;function _0x28b97f(){const _0xad37a6=_0x3948cf;return _0x38c4bc||(_0x38c4bc=0x1,function(_0x370c1e,_0x28be94){(function(_0x114043,_0x72e927,_0x28369e){const _0x51289a=_0x5201;_0x370c1e[_0x51289a(0x29b)]=_0x72e927(_0x28c7fc(),_0x57ed33());}(_0x22c069,function(_0x548db2){const _0x28f359=_0x5201;_0x548db2[_0x28f359(0x4f8)][_0x28f359(0x31b)]||function(_0x464521){const _0x56e3b2=_0x28f359;var _0x1dc763=_0x548db2,_0x436384=_0x1dc763[_0x56e3b2(0x4f8)],_0xc0d415=_0x436384[_0x56e3b2(0x4c1)],_0x185e1a=_0x436384[_0x56e3b2(0x281)],_0x11115f=_0x436384['BufferedBlockAlgorithm'],_0xf953cf=_0x1dc763['enc'];_0xf953cf['Utf8'];var _0x15fda3=_0xf953cf['Base64'],_0x578518=_0x1dc763['algo'],_0x4d65dc=_0x578518[_0x56e3b2(0x3ef)],_0x115313=_0x436384[_0x56e3b2(0x31b)]=_0x11115f[_0x56e3b2(0x601)]({'cfg':_0xc0d415[_0x56e3b2(0x601)](),'createEncryptor':function(_0x2805b6,_0x8131f0){const _0x3e5d76=_0x56e3b2;return this[_0x3e5d76(0x43f)](this[_0x3e5d76(0x245)],_0x2805b6,_0x8131f0);},'createDecryptor':function(_0x691c17,_0x22843a){const _0x224500=_0x56e3b2;return this['create'](this[_0x224500(0x593)],_0x691c17,_0x22843a);},'init':function(_0x22d575,_0x4569ab,_0x1cb03c){const _0x135105=_0x56e3b2;this[_0x135105(0x516)]=this['cfg'][_0x135105(0x601)](_0x1cb03c),this[_0x135105(0x60e)]=_0x22d575,this['_key']=_0x4569ab,this[_0x135105(0x37b)]();},'reset':function(){const _0x2c15e8=_0x56e3b2;_0x11115f[_0x2c15e8(0x37b)][_0x2c15e8(0x56a)](this),this[_0x2c15e8(0x170)]();},'process':function(_0x15d7b1){const _0x19bdd1=_0x56e3b2;return this[_0x19bdd1(0x210)](_0x15d7b1),this[_0x19bdd1(0x1f0)]();},'finalize':function(_0xddd385){const _0x50fe5a=_0x56e3b2;_0xddd385&&this[_0x50fe5a(0x210)](_0xddd385);var _0xcb1012=this['_doFinalize']();return _0xcb1012;},'keySize':0x80/0x20,'ivSize':0x80/0x20,'_ENC_XFORM_MODE':0x1,'_DEC_XFORM_MODE':0x2,'_createHelper':(function(){function _0x571874(_0x40556e){const _0x148902=_0x5201;return typeof _0x40556e==_0x148902(0x277)?_0x293727:_0x104e97;}return function(_0x2ea191){return{'encrypt':function(_0x5a9ca8,_0xacd78c,_0x4796e9){const _0x182296=_0x5201;return _0x571874(_0xacd78c)[_0x182296(0x440)](_0x2ea191,_0x5a9ca8,_0xacd78c,_0x4796e9);},'decrypt':function(_0x27b6f6,_0x2fddb9,_0x5d97bf){const _0x3add32=_0x5201;return _0x571874(_0x2fddb9)[_0x3add32(0x587)](_0x2ea191,_0x27b6f6,_0x2fddb9,_0x5d97bf);}};};}())});_0x436384[_0x56e3b2(0x527)]=_0x115313['extend']({'_doFinalize':function(){var _0x3fdda8=this['_process'](!0x0);return _0x3fdda8;},'blockSize':0x1});var _0x45c14f=_0x1dc763[_0x56e3b2(0x434)]={},_0x2bd6de=_0x436384[_0x56e3b2(0x456)]=_0xc0d415[_0x56e3b2(0x601)]({'createEncryptor':function(_0xe09f5f,_0x29dc55){const _0x3d38f3=_0x56e3b2;return this[_0x3d38f3(0x23e)]['create'](_0xe09f5f,_0x29dc55);},'createDecryptor':function(_0x5050b6,_0x58270b){const _0x1673fe=_0x56e3b2;return this[_0x1673fe(0x1a2)][_0x1673fe(0x43f)](_0x5050b6,_0x58270b);},'init':function(_0x52d05b,_0x334352){const _0x287bfb=_0x56e3b2;this[_0x287bfb(0x3ed)]=_0x52d05b,this[_0x287bfb(0x340)]=_0x334352;}}),_0x394a02=_0x45c14f[_0x56e3b2(0x330)]=(function(){const _0x1873c3=_0x56e3b2;var _0x403686=_0x2bd6de[_0x1873c3(0x601)]();_0x403686[_0x1873c3(0x23e)]=_0x403686[_0x1873c3(0x601)]({'processBlock':function(_0x16e1db,_0x2ef115){const _0x4eb144=_0x1873c3;var _0x5cdbd4=this[_0x4eb144(0x3ed)],_0x1a9256=_0x5cdbd4['blockSize'];_0x5617be['call'](this,_0x16e1db,_0x2ef115,_0x1a9256),_0x5cdbd4[_0x4eb144(0x20f)](_0x16e1db,_0x2ef115),this['_prevBlock']=_0x16e1db[_0x4eb144(0x26f)](_0x2ef115,_0x2ef115+_0x1a9256);}}),_0x403686[_0x1873c3(0x1a2)]=_0x403686['extend']({'processBlock':function(_0x3c3b47,_0x4f24c3){const _0x4bcd6e=_0x1873c3;var _0x5b0790=this[_0x4bcd6e(0x3ed)],_0x3b5780=_0x5b0790[_0x4bcd6e(0x44e)],_0xa4ac39=_0x3c3b47[_0x4bcd6e(0x26f)](_0x4f24c3,_0x4f24c3+_0x3b5780);_0x5b0790[_0x4bcd6e(0x50e)](_0x3c3b47,_0x4f24c3),_0x5617be['call'](this,_0x3c3b47,_0x4f24c3,_0x3b5780),this['_prevBlock']=_0xa4ac39;}});function _0x5617be(_0x1a2d6f,_0xc746ad,_0x2ee7e4){const _0x18c36a=_0x1873c3;var _0x77cfa5,_0x3a4da4=this[_0x18c36a(0x340)];_0x3a4da4?(_0x77cfa5=_0x3a4da4,this['_iv']=_0x464521):_0x77cfa5=this[_0x18c36a(0x4ee)];for(var _0x4f3a29=0x0;_0x4f3a29<_0x2ee7e4;_0x4f3a29++)_0x1a2d6f[_0xc746ad+_0x4f3a29]^=_0x77cfa5[_0x4f3a29];}return _0x403686;}()),_0x2431ce=_0x1dc763[_0x56e3b2(0x4ac)]={},_0x54cf48=_0x2431ce['Pkcs7']={'pad':function(_0x739c6d,_0x146ace){const _0x57ce62=_0x56e3b2;for(var _0x45a97d=_0x146ace*0x4,_0x371df6=_0x45a97d-_0x739c6d['sigBytes']%_0x45a97d,_0x28f5e3=_0x371df6<<0x18|_0x371df6<<0x10|_0x371df6<<0x8|_0x371df6,_0x51af17=[],_0x4a8d67=0x0;_0x4a8d67<_0x371df6;_0x4a8d67+=0x4)_0x51af17['push'](_0x28f5e3);var _0xf58d84=_0x185e1a[_0x57ce62(0x43f)](_0x51af17,_0x371df6);_0x739c6d[_0x57ce62(0x38a)](_0xf58d84);},'unpad':function(_0x160bbc){const _0x2baf8d=_0x56e3b2;var _0x55e3aa=_0x160bbc[_0x2baf8d(0x357)][_0x160bbc['sigBytes']-0x1>>>0x2]&0xff;_0x160bbc[_0x2baf8d(0x336)]-=_0x55e3aa;}};_0x436384[_0x56e3b2(0x243)]=_0x115313[_0x56e3b2(0x601)]({'cfg':_0x115313[_0x56e3b2(0x516)]['extend']({'mode':_0x394a02,'padding':_0x54cf48}),'reset':function(){const _0x529b15=_0x56e3b2;var _0x497844;_0x115313['reset'][_0x529b15(0x56a)](this);var _0x57aaf6=this[_0x529b15(0x516)],_0x553c2e=_0x57aaf6['iv'],_0x41647f=_0x57aaf6[_0x529b15(0x434)];this[_0x529b15(0x60e)]==this['_ENC_XFORM_MODE']?_0x497844=_0x41647f[_0x529b15(0x227)]:(_0x497844=_0x41647f[_0x529b15(0x22d)],this[_0x529b15(0x366)]=0x1),this['_mode']&&this[_0x529b15(0x36c)]['__creator']==_0x497844?this[_0x529b15(0x36c)][_0x529b15(0x49a)](this,_0x553c2e&&_0x553c2e[_0x529b15(0x357)]):(this[_0x529b15(0x36c)]=_0x497844['call'](_0x41647f,this,_0x553c2e&&_0x553c2e[_0x529b15(0x357)]),this[_0x529b15(0x36c)][_0x529b15(0x146)]=_0x497844);},'_doProcessBlock':function(_0x529a75,_0x276ee4){this['_mode']['processBlock'](_0x529a75,_0x276ee4);},'_doFinalize':function(){const _0x2022d6=_0x56e3b2;var _0x48e949,_0x489c9f=this['cfg']['padding'];return this[_0x2022d6(0x60e)]==this[_0x2022d6(0x245)]?(_0x489c9f[_0x2022d6(0x4ac)](this[_0x2022d6(0x264)],this[_0x2022d6(0x44e)]),_0x48e949=this[_0x2022d6(0x1f0)](!0x0)):(_0x48e949=this['_process'](!0x0),_0x489c9f[_0x2022d6(0x1db)](_0x48e949)),_0x48e949;},'blockSize':0x80/0x20});var _0x3bfc0a=_0x436384[_0x56e3b2(0x480)]=_0xc0d415[_0x56e3b2(0x601)]({'init':function(_0x6e4092){const _0x1e3ffb=_0x56e3b2;this[_0x1e3ffb(0x586)](_0x6e4092);},'toString':function(_0x64e614){const _0x7fcbc0=_0x56e3b2;return(_0x64e614||this[_0x7fcbc0(0x305)])[_0x7fcbc0(0x2ec)](this);}}),_0x3e6b1a=_0x1dc763['format']={},_0x256add=_0x3e6b1a['OpenSSL']={'stringify':function(_0x564910){const _0x46c509=_0x56e3b2;var _0x1dc979,_0xd3b236=_0x564910['ciphertext'],_0x5f3fee=_0x564910[_0x46c509(0x554)];return _0x5f3fee?_0x1dc979=_0x185e1a['create']([0x53616c74,0x65645f5f])['concat'](_0x5f3fee)[_0x46c509(0x38a)](_0xd3b236):_0x1dc979=_0xd3b236,_0x1dc979[_0x46c509(0x4ec)](_0x15fda3);},'parse':function(_0x2892b3){const _0x6bbc7=_0x56e3b2;var _0x871b7,_0x5ad708=_0x15fda3[_0x6bbc7(0x517)](_0x2892b3),_0x36c8f5=_0x5ad708[_0x6bbc7(0x357)];return _0x36c8f5[0x0]==0x53616c74&&_0x36c8f5[0x1]==0x65645f5f&&(_0x871b7=_0x185e1a['create'](_0x36c8f5[_0x6bbc7(0x26f)](0x2,0x4)),_0x36c8f5[_0x6bbc7(0x5f3)](0x0,0x4),_0x5ad708[_0x6bbc7(0x336)]-=0x10),_0x3bfc0a[_0x6bbc7(0x43f)]({'ciphertext':_0x5ad708,'salt':_0x871b7});}},_0x104e97=_0x436384[_0x56e3b2(0x474)]=_0xc0d415[_0x56e3b2(0x601)]({'cfg':_0xc0d415[_0x56e3b2(0x601)]({'format':_0x256add}),'encrypt':function(_0x246831,_0x11c101,_0x678be6,_0x5bc79d){const _0x5d2288=_0x56e3b2;_0x5bc79d=this['cfg'][_0x5d2288(0x601)](_0x5bc79d);var _0x5f113e=_0x246831[_0x5d2288(0x227)](_0x678be6,_0x5bc79d),_0x43d4ad=_0x5f113e['finalize'](_0x11c101),_0x1a6554=_0x5f113e[_0x5d2288(0x516)];return _0x3bfc0a[_0x5d2288(0x43f)]({'ciphertext':_0x43d4ad,'key':_0x678be6,'iv':_0x1a6554['iv'],'algorithm':_0x246831,'mode':_0x1a6554[_0x5d2288(0x434)],'padding':_0x1a6554[_0x5d2288(0x571)],'blockSize':_0x246831['blockSize'],'formatter':_0x5bc79d['format']});},'decrypt':function(_0x125dbf,_0x1d6514,_0x4a150f,_0x360759){const _0x5bf375=_0x56e3b2;_0x360759=this[_0x5bf375(0x516)][_0x5bf375(0x601)](_0x360759),_0x1d6514=this['_parse'](_0x1d6514,_0x360759[_0x5bf375(0x39b)]);var _0x3054ef=_0x125dbf[_0x5bf375(0x22d)](_0x4a150f,_0x360759)[_0x5bf375(0x3eb)](_0x1d6514[_0x5bf375(0x191)]);return _0x3054ef;},'_parse':function(_0x163f2d,_0x5d0da5){const _0x59ef4a=_0x56e3b2;return typeof _0x163f2d==_0x59ef4a(0x277)?_0x5d0da5[_0x59ef4a(0x517)](_0x163f2d,this):_0x163f2d;}}),_0x574c4e=_0x1dc763[_0x56e3b2(0x363)]={},_0x40b8c7=_0x574c4e[_0x56e3b2(0x3b3)]={'execute':function(_0x40667e,_0x3c7a51,_0x40ba1f,_0xd36998,_0x307996){const _0x39ebf4=_0x56e3b2;if(_0xd36998||(_0xd36998=_0x185e1a[_0x39ebf4(0x589)](0x40/0x8)),_0x307996)var _0x3e3945=_0x4d65dc[_0x39ebf4(0x43f)]({'keySize':_0x3c7a51+_0x40ba1f,'hasher':_0x307996})[_0x39ebf4(0x3f6)](_0x40667e,_0xd36998);else var _0x3e3945=_0x4d65dc[_0x39ebf4(0x43f)]({'keySize':_0x3c7a51+_0x40ba1f})[_0x39ebf4(0x3f6)](_0x40667e,_0xd36998);var _0xe956e3=_0x185e1a[_0x39ebf4(0x43f)](_0x3e3945['words'][_0x39ebf4(0x26f)](_0x3c7a51),_0x40ba1f*0x4);return _0x3e3945[_0x39ebf4(0x336)]=_0x3c7a51*0x4,_0x3bfc0a['create']({'key':_0x3e3945,'iv':_0xe956e3,'salt':_0xd36998});}},_0x293727=_0x436384[_0x56e3b2(0x45d)]=_0x104e97[_0x56e3b2(0x601)]({'cfg':_0x104e97['cfg'][_0x56e3b2(0x601)]({'kdf':_0x40b8c7}),'encrypt':function(_0x470e3c,_0x51008b,_0x2db886,_0x427ba1){const _0x670db6=_0x56e3b2;_0x427ba1=this['cfg'][_0x670db6(0x601)](_0x427ba1);var _0x944331=_0x427ba1[_0x670db6(0x363)][_0x670db6(0x24d)](_0x2db886,_0x470e3c['keySize'],_0x470e3c['ivSize'],_0x427ba1['salt'],_0x427ba1['hasher']);_0x427ba1['iv']=_0x944331['iv'];var _0x353074=_0x104e97['encrypt'][_0x670db6(0x56a)](this,_0x470e3c,_0x51008b,_0x944331['key'],_0x427ba1);return _0x353074[_0x670db6(0x586)](_0x944331),_0x353074;},'decrypt':function(_0x5561cf,_0x533dbf,_0x321bf8,_0x38d19a){const _0x48852d=_0x56e3b2;_0x38d19a=this[_0x48852d(0x516)][_0x48852d(0x601)](_0x38d19a),_0x533dbf=this[_0x48852d(0x547)](_0x533dbf,_0x38d19a[_0x48852d(0x39b)]);var _0x21640e=_0x38d19a[_0x48852d(0x363)][_0x48852d(0x24d)](_0x321bf8,_0x5561cf[_0x48852d(0x45b)],_0x5561cf[_0x48852d(0x3bd)],_0x533dbf['salt'],_0x38d19a[_0x48852d(0x555)]);_0x38d19a['iv']=_0x21640e['iv'];var _0x42e9e8=_0x104e97[_0x48852d(0x587)]['call'](this,_0x5561cf,_0x533dbf,_0x21640e[_0x48852d(0x206)],_0x38d19a);return _0x42e9e8;}});}();}));}(_0x588ad5)),_0x588ad5[_0xad37a6(0x29b)];}(function(_0x494cc9,_0x1edfa1){(function(_0xef662e,_0xe1bb0e,_0x2a4417){const _0x4e3dbc=_0x5201;_0x494cc9[_0x4e3dbc(0x29b)]=_0xe1bb0e(_0x28c7fc(),_0x624310(),_0x4e384c(),_0x57ed33(),_0x28b97f());}(_0x22c069,function(_0x4e4303){const _0x3af351=_0x5201;return(function(){const _0x292bce=_0x5201;var _0x4d2374=_0x4e4303,_0x44a92e=_0x4d2374[_0x292bce(0x4f8)],_0x483327=_0x44a92e['BlockCipher'],_0x4a2194=_0x4d2374['algo'],_0x444c1e=[],_0x4add3d=[],_0x2d3590=[],_0x4f5920=[],_0x57839a=[],_0x4d8a86=[],_0x7e3f8=[],_0xbb05a1=[],_0x58c9ac=[],_0x27473a=[];(function(){for(var _0x1d351d=[],_0x40db3d=0x0;_0x40db3d<0x100;_0x40db3d++)_0x40db3d<0x80?_0x1d351d[_0x40db3d]=_0x40db3d<<0x1:_0x1d351d[_0x40db3d]=_0x40db3d<<0x1^0x11b;for(var _0x3b8a4e=0x0,_0x3721a8=0x0,_0x40db3d=0x0;_0x40db3d<0x100;_0x40db3d++){var _0x452ae8=_0x3721a8^_0x3721a8<<0x1^_0x3721a8<<0x2^_0x3721a8<<0x3^_0x3721a8<<0x4;_0x452ae8=_0x452ae8>>>0x8^_0x452ae8&0xff^0x63,_0x444c1e[_0x3b8a4e]=_0x452ae8,_0x4add3d[_0x452ae8]=_0x3b8a4e;var _0xc18cb8=_0x1d351d[_0x3b8a4e],_0x46b3dd=_0x1d351d[_0xc18cb8],_0x264db5=_0x1d351d[_0x46b3dd],_0x431bfc=_0x1d351d[_0x452ae8]*0x101^_0x452ae8*0x1010100;_0x2d3590[_0x3b8a4e]=_0x431bfc<<0x18|_0x431bfc>>>0x8,_0x4f5920[_0x3b8a4e]=_0x431bfc<<0x10|_0x431bfc>>>0x10,_0x57839a[_0x3b8a4e]=_0x431bfc<<0x8|_0x431bfc>>>0x18,_0x4d8a86[_0x3b8a4e]=_0x431bfc;var _0x431bfc=_0x264db5*0x1010101^_0x46b3dd*0x10001^_0xc18cb8*0x101^_0x3b8a4e*0x1010100;_0x7e3f8[_0x452ae8]=_0x431bfc<<0x18|_0x431bfc>>>0x8,_0xbb05a1[_0x452ae8]=_0x431bfc<<0x10|_0x431bfc>>>0x10,_0x58c9ac[_0x452ae8]=_0x431bfc<<0x8|_0x431bfc>>>0x18,_0x27473a[_0x452ae8]=_0x431bfc,_0x3b8a4e?(_0x3b8a4e=_0xc18cb8^_0x1d351d[_0x1d351d[_0x1d351d[_0x264db5^_0xc18cb8]]],_0x3721a8^=_0x1d351d[_0x1d351d[_0x3721a8]]):_0x3b8a4e=_0x3721a8=0x1;}}());var _0x34b5a9=[0x0,0x1,0x2,0x4,0x8,0x10,0x20,0x40,0x80,0x1b,0x36],_0x365b13=_0x4a2194[_0x292bce(0x271)]=_0x483327[_0x292bce(0x601)]({'_doReset':function(){const _0x5501b9=_0x292bce;var _0x4e598e;if(!(this['_nRounds']&&this['_keyPriorReset']===this[_0x5501b9(0x220)])){for(var _0x255776=this[_0x5501b9(0x43a)]=this[_0x5501b9(0x220)],_0x3b291f=_0x255776[_0x5501b9(0x357)],_0x5c1256=_0x255776[_0x5501b9(0x336)]/0x4,_0x165ba1=this[_0x5501b9(0x448)]=_0x5c1256+0x6,_0x57c0f3=(_0x165ba1+0x1)*0x4,_0x479111=this[_0x5501b9(0x302)]=[],_0x494417=0x0;_0x494417<_0x57c0f3;_0x494417++)_0x494417<_0x5c1256?_0x479111[_0x494417]=_0x3b291f[_0x494417]:(_0x4e598e=_0x479111[_0x494417-0x1],_0x494417%_0x5c1256?_0x5c1256>0x6&&_0x494417%_0x5c1256==0x4&&(_0x4e598e=_0x444c1e[_0x4e598e>>>0x18]<<0x18|_0x444c1e[_0x4e598e>>>0x10&0xff]<<0x10|_0x444c1e[_0x4e598e>>>0x8&0xff]<<0x8|_0x444c1e[_0x4e598e&0xff]):(_0x4e598e=_0x4e598e<<0x8|_0x4e598e>>>0x18,_0x4e598e=_0x444c1e[_0x4e598e>>>0x18]<<0x18|_0x444c1e[_0x4e598e>>>0x10&0xff]<<0x10|_0x444c1e[_0x4e598e>>>0x8&0xff]<<0x8|_0x444c1e[_0x4e598e&0xff],_0x4e598e^=_0x34b5a9[_0x494417/_0x5c1256|0x0]<<0x18),_0x479111[_0x494417]=_0x479111[_0x494417-_0x5c1256]^_0x4e598e);for(var _0x77fd48=this['_invKeySchedule']=[],_0x12d7e6=0x0;_0x12d7e6<_0x57c0f3;_0x12d7e6++){var _0x494417=_0x57c0f3-_0x12d7e6;if(_0x12d7e6%0x4)var _0x4e598e=_0x479111[_0x494417];else var _0x4e598e=_0x479111[_0x494417-0x4];_0x12d7e6<0x4||_0x494417<=0x4?_0x77fd48[_0x12d7e6]=_0x4e598e:_0x77fd48[_0x12d7e6]=_0x7e3f8[_0x444c1e[_0x4e598e>>>0x18]]^_0xbb05a1[_0x444c1e[_0x4e598e>>>0x10&0xff]]^_0x58c9ac[_0x444c1e[_0x4e598e>>>0x8&0xff]]^_0x27473a[_0x444c1e[_0x4e598e&0xff]];}}},'encryptBlock':function(_0x889867,_0x323530){const _0x210f2b=_0x292bce;this[_0x210f2b(0x605)](_0x889867,_0x323530,this[_0x210f2b(0x302)],_0x2d3590,_0x4f5920,_0x57839a,_0x4d8a86,_0x444c1e);},'decryptBlock':function(_0x3675e4,_0x29632a){const _0x21f134=_0x292bce;var _0x5ace92=_0x3675e4[_0x29632a+0x1];_0x3675e4[_0x29632a+0x1]=_0x3675e4[_0x29632a+0x3],_0x3675e4[_0x29632a+0x3]=_0x5ace92,this[_0x21f134(0x605)](_0x3675e4,_0x29632a,this['_invKeySchedule'],_0x7e3f8,_0xbb05a1,_0x58c9ac,_0x27473a,_0x4add3d);var _0x5ace92=_0x3675e4[_0x29632a+0x1];_0x3675e4[_0x29632a+0x1]=_0x3675e4[_0x29632a+0x3],_0x3675e4[_0x29632a+0x3]=_0x5ace92;},'_doCryptBlock':function(_0x5ed222,_0x47d580,_0x1f4878,_0x2ad524,_0x4f6ba0,_0x5c54c5,_0x326fcf,_0xb0468e){const _0x3f147c=_0x292bce;for(var _0x352671=this[_0x3f147c(0x448)],_0x1a4339=_0x5ed222[_0x47d580]^_0x1f4878[0x0],_0x12d807=_0x5ed222[_0x47d580+0x1]^_0x1f4878[0x1],_0x443476=_0x5ed222[_0x47d580+0x2]^_0x1f4878[0x2],_0x16ab9b=_0x5ed222[_0x47d580+0x3]^_0x1f4878[0x3],_0x13619b=0x4,_0x3627d8=0x1;_0x3627d8<_0x352671;_0x3627d8++){var _0x466324=_0x2ad524[_0x1a4339>>>0x18]^_0x4f6ba0[_0x12d807>>>0x10&0xff]^_0x5c54c5[_0x443476>>>0x8&0xff]^_0x326fcf[_0x16ab9b&0xff]^_0x1f4878[_0x13619b++],_0x361a75=_0x2ad524[_0x12d807>>>0x18]^_0x4f6ba0[_0x443476>>>0x10&0xff]^_0x5c54c5[_0x16ab9b>>>0x8&0xff]^_0x326fcf[_0x1a4339&0xff]^_0x1f4878[_0x13619b++],_0x3cce5d=_0x2ad524[_0x443476>>>0x18]^_0x4f6ba0[_0x16ab9b>>>0x10&0xff]^_0x5c54c5[_0x1a4339>>>0x8&0xff]^_0x326fcf[_0x12d807&0xff]^_0x1f4878[_0x13619b++],_0x288d05=_0x2ad524[_0x16ab9b>>>0x18]^_0x4f6ba0[_0x1a4339>>>0x10&0xff]^_0x5c54c5[_0x12d807>>>0x8&0xff]^_0x326fcf[_0x443476&0xff]^_0x1f4878[_0x13619b++];_0x1a4339=_0x466324,_0x12d807=_0x361a75,_0x443476=_0x3cce5d,_0x16ab9b=_0x288d05;}var _0x466324=(_0xb0468e[_0x1a4339>>>0x18]<<0x18|_0xb0468e[_0x12d807>>>0x10&0xff]<<0x10|_0xb0468e[_0x443476>>>0x8&0xff]<<0x8|_0xb0468e[_0x16ab9b&0xff])^_0x1f4878[_0x13619b++],_0x361a75=(_0xb0468e[_0x12d807>>>0x18]<<0x18|_0xb0468e[_0x443476>>>0x10&0xff]<<0x10|_0xb0468e[_0x16ab9b>>>0x8&0xff]<<0x8|_0xb0468e[_0x1a4339&0xff])^_0x1f4878[_0x13619b++],_0x3cce5d=(_0xb0468e[_0x443476>>>0x18]<<0x18|_0xb0468e[_0x16ab9b>>>0x10&0xff]<<0x10|_0xb0468e[_0x1a4339>>>0x8&0xff]<<0x8|_0xb0468e[_0x12d807&0xff])^_0x1f4878[_0x13619b++],_0x288d05=(_0xb0468e[_0x16ab9b>>>0x18]<<0x18|_0xb0468e[_0x1a4339>>>0x10&0xff]<<0x10|_0xb0468e[_0x12d807>>>0x8&0xff]<<0x8|_0xb0468e[_0x443476&0xff])^_0x1f4878[_0x13619b++];_0x5ed222[_0x47d580]=_0x466324,_0x5ed222[_0x47d580+0x1]=_0x361a75,_0x5ed222[_0x47d580+0x2]=_0x3cce5d,_0x5ed222[_0x47d580+0x3]=_0x288d05;},'keySize':0x100/0x20});_0x4d2374[_0x292bce(0x271)]=_0x483327[_0x292bce(0x431)](_0x365b13);}()),_0x4e4303[_0x3af351(0x271)];}));}(_0x1a04ba));var _0x4725bc=_0x1a04ba['exports'];const _0x5e12e5=_0x1715bf(_0x4725bc);var _0x4afe01=_0x624310();const _0x2cf63b=_0x1715bf(_0x4afe01);var _0x571f83={'exports':{}};(function(_0x269411,_0x394aa6){(function(_0x86b328,_0x3d296e){const _0x13c2ee=_0x5201;_0x269411[_0x13c2ee(0x29b)]=_0x3d296e(_0x28c7fc());}(_0x22c069,function(_0x33e420){const _0x2431dd=_0x5201;return _0x33e420[_0x2431dd(0x272)][_0x2431dd(0x5d4)];}));}(_0x571f83));var _0x2e7ff7=_0x571f83['exports'];const _0xcbd44=_0x1715bf(_0x2e7ff7);var _0x126521={'exports':{}};(function(_0x170aa6,_0x2f8dbb){(function(_0x1f5032,_0x2b342f){const _0x3d8dd1=_0x5201;_0x170aa6[_0x3d8dd1(0x29b)]=_0x2b342f(_0x28c7fc());}(_0x22c069,function(_0x1381d2){const _0x641f2=_0x5201;return(function(){const _0x2dbbc4=_0x5201;if(typeof ArrayBuffer==_0x2dbbc4(0x172)){var _0x34b954=_0x1381d2,_0x364894=_0x34b954[_0x2dbbc4(0x4f8)],_0x4a280d=_0x364894[_0x2dbbc4(0x281)],_0x307333=_0x4a280d[_0x2dbbc4(0x49a)],_0x59b9d2=_0x4a280d[_0x2dbbc4(0x49a)]=function(_0x4bf5c1){const _0x5f3ea8=_0x2dbbc4;if(_0x4bf5c1 instanceof ArrayBuffer&&(_0x4bf5c1=new Uint8Array(_0x4bf5c1)),(_0x4bf5c1 instanceof Int8Array||typeof Uint8ClampedArray<'u'&&_0x4bf5c1 instanceof Uint8ClampedArray||_0x4bf5c1 instanceof Int16Array||_0x4bf5c1 instanceof Uint16Array||_0x4bf5c1 instanceof Int32Array||_0x4bf5c1 instanceof Uint32Array||_0x4bf5c1 instanceof Float32Array||_0x4bf5c1 instanceof Float64Array)&&(_0x4bf5c1=new Uint8Array(_0x4bf5c1['buffer'],_0x4bf5c1[_0x5f3ea8(0x2c4)],_0x4bf5c1['byteLength'])),_0x4bf5c1 instanceof Uint8Array){for(var _0xf38401=_0x4bf5c1[_0x5f3ea8(0x609)],_0x2f5f4e=[],_0x1e9b02=0x0;_0x1e9b02<_0xf38401;_0x1e9b02++)_0x2f5f4e[_0x1e9b02>>>0x2]|=_0x4bf5c1[_0x1e9b02]<<0x18-_0x1e9b02%0x4*0x8;_0x307333[_0x5f3ea8(0x56a)](this,_0x2f5f4e,_0xf38401);}else _0x307333[_0x5f3ea8(0x476)](this,arguments);};_0x59b9d2[_0x2dbbc4(0x3ff)]=_0x4a280d;}}()),_0x1381d2['lib'][_0x641f2(0x281)];}));}(_0x126521));var _0x1869c4=_0x126521[_0x3948cf(0x29b)];const _0x4323cb=_0x1715bf(_0x1869c4);var _0x48f5e4={'exports':{}};(function(_0x58c49d,_0x4dcb18){(function(_0x47997b,_0x4c0d36,_0x1d8644){_0x58c49d['exports']=_0x4c0d36(_0x28c7fc(),_0x28b97f());}(_0x22c069,function(_0xf4d382){const _0x381fba=_0x5201;return _0xf4d382[_0x381fba(0x4ac)][_0x381fba(0x4f4)]={'pad':function(){},'unpad':function(){}},_0xf4d382[_0x381fba(0x4ac)][_0x381fba(0x4f4)];}));}(_0x48f5e4));var _0x14137f=_0x48f5e4[_0x3948cf(0x29b)];const _0x3ed580=_0x1715bf(_0x14137f);function _0x5eaea1(_0x349db0,_0x492e95){const _0x544e65=_0x3948cf,_0x3b5717=_0x492e95-_0x349db0[_0x544e65(0x24c)]%_0x492e95,_0x445ee2=String['fromCharCode'](_0x3b5717)[_0x544e65(0x22c)](_0x3b5717);return _0x349db0+_0x445ee2;}function _0x3cdfd3(_0x34ce8d,_0x1e23bb){const _0x3172ac=_0x3948cf,_0x11c7f4=_0x4323cb[_0x3172ac(0x589)](0x10),_0x226ca4=_0x5eaea1(_0x34ce8d,0x10),_0x470ef4=_0x5e12e5[_0x3172ac(0x440)](_0xcbd44[_0x3172ac(0x517)](_0x226ca4),_0x2cf63b[_0x3172ac(0x517)](_0x1e23bb),{'iv':_0x11c7f4,'padding':_0x3ed580});return _0x11c7f4[_0x3172ac(0x38a)](_0x470ef4['ciphertext'])[_0x3172ac(0x4ec)](_0x2cf63b);}function _0x326a81(){const _0xa1dc92=_0x3948cf,_0x4fe518=(typeof WorkerGlobalScope<'u'&&self instanceof WorkerGlobalScope?self:window)[_0xa1dc92(0x260)];if(_0x4fe518){const _0x5e4d72={'time':Math[_0xa1dc92(0x3d6)](Date[_0xa1dc92(0x189)]()/0x3e8),'domain':location[_0xa1dc92(0x2cb)]};return _0x3cdfd3(JSON[_0xa1dc92(0x2ec)](_0x5e4d72),_0x4fe518);}}var _0x3dec4e=Object['defineProperty'],_0x7fb655=Object[_0x3948cf(0x16b)],_0x506bf7=(_0x35d70f,_0x344ea6,_0x37efd0,_0x401c4d)=>{const _0x35fc0e=_0x3948cf;for(var _0x12f131=_0x401c4d>0x1?void 0x0:_0x401c4d?_0x7fb655(_0x344ea6,_0x37efd0):_0x344ea6,_0x36b8bc=_0x35d70f[_0x35fc0e(0x24c)]-0x1,_0xa79d4a;_0x36b8bc>=0x0;_0x36b8bc--)(_0xa79d4a=_0x35d70f[_0x36b8bc])&&(_0x12f131=(_0x401c4d?_0xa79d4a(_0x344ea6,_0x37efd0,_0x12f131):_0xa79d4a(_0x12f131))||_0x12f131);return _0x401c4d&&_0x12f131&&_0x3dec4e(_0x344ea6,_0x37efd0,_0x12f131),_0x12f131;},_0x5eeb18=(_0x55b151,_0x5d3c06)=>(_0x545cb9,_0x3cb995)=>_0x5d3c06(_0x545cb9,_0x3cb995,_0x55b151);let _0x1daeed=class{constructor(_0x235667){this['_httpService']=_0x235667,this['_initRequestHeader']();}[_0x3948cf(0x161)](){const _0x3a5757=_0x3948cf;this[_0x3a5757(0x3cc)][_0x3a5757(0x3ec)]({'interceptor':(_0x1e4ed9,_0x251169)=>{const _0x138472=_0x3a5757,_0x52773c=_0x1e4ed9['headers'],_0x2deb5f=_0x326a81();return _0x2deb5f&&_0x52773c[_0x138472(0x1f2)]('x-univer-host',_0x2deb5f),_0x251169(_0x1e4ed9);}});}};_0x1daeed=_0x506bf7([_0x5eeb18(0x0,_0x223914[_0x3948cf(0x25f)](_0x1ddba4[_0x3948cf(0x171)]))],_0x1daeed);var _0x39a56f=Object[_0x3948cf(0x149)],_0x159d68=Object[_0x3948cf(0x16b)],_0x3fa273=(_0x3b77a4,_0x5c1316,_0x2a39eb,_0x2fe6ee)=>{const _0x2f30a7=_0x3948cf;for(var _0x84098b=_0x2fe6ee>0x1?void 0x0:_0x2fe6ee?_0x159d68(_0x5c1316,_0x2a39eb):_0x5c1316,_0x462169=_0x3b77a4[_0x2f30a7(0x24c)]-0x1,_0x1058dc;_0x462169>=0x0;_0x462169--)(_0x1058dc=_0x3b77a4[_0x462169])&&(_0x84098b=(_0x2fe6ee?_0x1058dc(_0x5c1316,_0x2a39eb,_0x84098b):_0x1058dc(_0x84098b))||_0x84098b);return _0x2fe6ee&&_0x84098b&&_0x39a56f(_0x5c1316,_0x2a39eb,_0x84098b),_0x84098b;},_0x5db238=(_0x193d2e,_0x26f7c7)=>(_0x404f4d,_0x4ff2bb)=>_0x26f7c7(_0x404f4d,_0x4ff2bb,_0x193d2e);const _0x300542=[_0x3948cf(0x41f),'image/jpeg',_0x3948cf(0x380),_0x3948cf(0x262),_0x3948cf(0x5eb)],_0x592f52=0x5*0x400*0x400,_0x809b70=_0x3948cf(0x2a2),_0x3946cd=_0x3948cf(0x4d8),_0x1dc2d9=_0x3948cf(0x22e),_0x2ce9a8='/universer-api/file/{fileID}/sign-url';_0x24454f[_0x3948cf(0x3b8)]=class{constructor(_0x4575e0,_0x2a7ae1,_0x56a057){const _0x43af51=_0x3948cf;_0xeb55cc(this,'_waitCount',0x0),_0xeb55cc(this,_0x43af51(0x341),new _0x3fbd04[(_0x43af51(0x1f4))]()),_0xeb55cc(this,_0x43af51(0x503),this[_0x43af51(0x341)]),_0xeb55cc(this,'_imageSourceCache',new Map()),(this['_httpService']=_0x4575e0,this['_configService']=_0x2a7ae1,this[_0x43af51(0x4ba)]=_0x56a057);}[_0x3948cf(0x3d4)](_0x1e87ad){const _0x52c498=_0x3948cf;this[_0x52c498(0x4c7)]=_0x1e87ad,this[_0x52c498(0x341)]['next'](_0x1e87ad);}[_0x3948cf(0x4dc)](_0x6ce98f,_0x2f2a0a){const _0x4e627f=_0x3948cf;if(_0x2f2a0a===_0x5008e0[_0x4e627f(0x2f0)]['BASE64']){const _0x5a859f=new Image();return _0x5a859f['src']=_0x6ce98f,_0x5a859f;}return this[_0x4e627f(0x475)][_0x4e627f(0x55a)](_0x6ce98f);}[_0x3948cf(0x42d)](_0x3a2253,_0x638ae4,_0x40ff48){const _0xb17f5f=_0x3948cf;_0x638ae4===_0x5008e0[_0xb17f5f(0x2f0)][_0xb17f5f(0x315)]||_0x40ff48==null||this[_0xb17f5f(0x475)][_0xb17f5f(0x1f2)](_0x3a2253,_0x40ff48);}async['getImage'](_0x247a97){const _0x37fe66=_0x3948cf;try{const _0x6cb7d8=this[_0x37fe66(0x268)](this[_0x37fe66(0x300)](),''+_0x247a97),_0x3bbc70=(await this[_0x37fe66(0x3cc)]['get'](_0x6cb7d8))['body'];if(_0x3bbc70[_0x37fe66(0x41b)]&&_0x3bbc70['error'][_0x37fe66(0x347)]===_0x1a04e9['OK']){const _0xe26824=new URL(_0x3bbc70['url'],this[_0x37fe66(0x1d3)]())[_0x37fe66(0x4ec)]();return Promise[_0x37fe66(0x2a3)](_0xe26824);}return Promise[_0x37fe66(0x575)](_0x3bbc70[_0x37fe66(0x41b)]);}catch(_0x2347f6){return Promise[_0x37fe66(0x575)](_0x2347f6);}}async[_0x3948cf(0x540)](_0x39b811){const _0x8d2318=_0x3948cf;let _0x196a9b='';if(!_0x300542[_0x8d2318(0x464)](_0x39b811['type']))return this[_0x8d2318(0x409)](),Promise[_0x8d2318(0x575)](new Error(_0x5008e0[_0x8d2318(0x541)][_0x8d2318(0x378)]));if(_0x39b811[_0x8d2318(0x416)]>_0x592f52)return this[_0x8d2318(0x409)](),Promise[_0x8d2318(0x575)](new Error(_0x5008e0[_0x8d2318(0x541)][_0x8d2318(0x525)]));try{const _0x36b0bf=new FormData();_0x36b0bf[_0x8d2318(0x5d3)](_0x8d2318(0x391),_0x39b811);const _0x3c3ffd=this[_0x8d2318(0x4ba)][_0x8d2318(0x3ac)](),_0x3972db=_0x3c3ffd==null?void 0x0:_0x3c3ffd[_0x8d2318(0x38c)]();if(!_0x3972db)throw new Error(_0x8d2318(0x443));const _0x15f9c1=this[_0x8d2318(0x472)]()+'?size='+_0x39b811[_0x8d2318(0x416)][_0x8d2318(0x4ec)]()+_0x8d2318(0x2a9)+_0x7e832b[_0x8d2318(0x209)]+'&assign='+encodeURIComponent(_0x3972db),_0x2da687=await(await fetch(_0x15f9c1,{'method':_0x8d2318(0x2d3),'body':_0x36b0bf}))[_0x8d2318(0x4aa)]();if(typeof _0x2da687['FileId']!='string')return this[_0x8d2318(0x409)](),Promise[_0x8d2318(0x575)](new Error(_0x5008e0[_0x8d2318(0x541)]['ERROR_IMAGE']));_0x196a9b=_0x2da687['FileId'];}catch{return this[_0x8d2318(0x409)](),Promise[_0x8d2318(0x575)](new Error(_0x5008e0[_0x8d2318(0x541)][_0x8d2318(0x426)]));}return new Promise((_0xe5adba,_0x1ccdd5)=>{const _0x23b26e=_0x8d2318,_0x343bae=new FileReader();_0x343bae[_0x23b26e(0x3b7)](_0x39b811),_0x343bae[_0x23b26e(0x27a)]=_0xd37138=>{const _0x40bc57=_0x23b26e;var _0x599c1c;const _0x1270fe=(_0x599c1c=_0xd37138[_0x40bc57(0x537)])==null?void 0x0:_0x599c1c[_0x40bc57(0x2d8)];if(_0x1270fe==null){this[_0x40bc57(0x409)](),_0x1ccdd5(new Error(_0x5008e0[_0x40bc57(0x541)][_0x40bc57(0x426)]));return;}const _0x3e03d6=_0x223914[_0x40bc57(0x5af)]['generateRandomId'](0x6);_0xe5adba({'imageId':_0x3e03d6,'imageSourceType':_0x5008e0[_0x40bc57(0x2f0)][_0x40bc57(0x5cd)],'source':_0x196a9b,'base64Cache':_0x1270fe,'status':_0x5008e0[_0x40bc57(0x541)][_0x40bc57(0x1dd)]}),this[_0x40bc57(0x409)]();};});}[_0x3948cf(0x472)](){const _0x3fb732=_0x3948cf;var _0x4491fe,_0x430249;const _0x4af3d3=this['_configService']['getConfig'](_0x809b70),_0x5bfc36=this[_0x3fb732(0x164)][_0x3fb732(0x52b)](_0x59012f);return(_0x430249=(_0x4491fe=_0x5bfc36==null?void 0x0:_0x5bfc36[_0x3fb732(0x512)])!=null?_0x4491fe:_0x4af3d3)!=null?_0x430249:_0x3946cd;}[_0x3948cf(0x300)](){const _0x4c3803=_0x3948cf;var _0x141293,_0xe0764;const _0x2d8871=this[_0x4c3803(0x164)][_0x4c3803(0x52b)](_0x1dc2d9),_0x17a317=this[_0x4c3803(0x164)][_0x4c3803(0x52b)](_0x59012f);return(_0xe0764=(_0x141293=_0x17a317==null?void 0x0:_0x17a317[_0x4c3803(0x34e)])!=null?_0x141293:_0x2d8871)!=null?_0xe0764:_0x2ce9a8;}[_0x3948cf(0x1d3)](){const _0x47b6fc=_0x3948cf;var _0x1a54ab;const _0x2e117b=this[_0x47b6fc(0x164)][_0x47b6fc(0x52b)](_0x59012f);return(_0x1a54ab=_0x2e117b==null?void 0x0:_0x2e117b[_0x47b6fc(0x35d)])!=null?_0x1a54ab:location[_0x47b6fc(0x2d7)];}[_0x3948cf(0x268)](_0xf11abe,_0x1b0ae2){const _0x1de5e4=_0x3948cf;return _0xf11abe[_0x1de5e4(0x5fa)](_0x1de5e4(0x4bd),_0x1b0ae2);}[_0x3948cf(0x409)](){const _0x34a8dc=_0x3948cf;this['_waitCount']-=0x1,this[_0x34a8dc(0x341)][_0x34a8dc(0x490)](this['_waitCount']);}},_0x24454f[_0x3948cf(0x3b8)]=_0x3fa273([_0x5db238(0x0,_0x223914[_0x3948cf(0x25f)](_0x1ddba4[_0x3948cf(0x171)])),_0x5db238(0x1,_0x223914[_0x3948cf(0x1ff)]),_0x5db238(0x2,_0x223914['Inject'](_0x223914[_0x3948cf(0x2dd)]))],_0x24454f[_0x3948cf(0x3b8)]);var _0x4c82d2=Object[_0x3948cf(0x149)],_0x22e999=Object['getOwnPropertyDescriptor'],_0x57a417=(_0x5f1bf0,_0x4e4883,_0x5a1e7a,_0xa87501)=>{const _0x22ba22=_0x3948cf;for(var _0x1a0a98=_0xa87501>0x1?void 0x0:_0xa87501?_0x22e999(_0x4e4883,_0x5a1e7a):_0x4e4883,_0xb613e5=_0x5f1bf0[_0x22ba22(0x24c)]-0x1,_0xac692d;_0xb613e5>=0x0;_0xb613e5--)(_0xac692d=_0x5f1bf0[_0xb613e5])&&(_0x1a0a98=(_0xa87501?_0xac692d(_0x4e4883,_0x5a1e7a,_0x1a0a98):_0xac692d(_0x1a0a98))||_0x1a0a98);return _0xa87501&&_0x1a0a98&&_0x4c82d2(_0x4e4883,_0x5a1e7a,_0x1a0a98),_0x1a0a98;},_0x24a0bc=(_0x51065f,_0x5679da)=>(_0x1b7268,_0x142533)=>_0x5679da(_0x1b7268,_0x142533,_0x51065f);let _0x5459b7=class extends _0x223914['RxDisposable']{constructor(_0x37b4fd,_0x36aa91,_0xf17acd,_0x437744,_0x1f14d3){const _0x25dfd4=_0x3948cf;super(),this[_0x25dfd4(0x488)]=_0x37b4fd,this[_0x25dfd4(0x4ba)]=_0x36aa91,this[_0x25dfd4(0x1c5)]=_0xf17acd,this['_collaborationSessionService']=_0x437744,this[_0x25dfd4(0x147)]=_0x1f14d3,this[_0x25dfd4(0x5d9)](),this[_0x25dfd4(0x157)]();}[_0x3948cf(0x157)](){const _0x5ddce9=_0x3948cf,_0x5ab547=async _0x534d00=>{const _0x20aa30=_0x5201;(await this['_collaborationSessionService'][_0x20aa30(0x4f3)](_0x534d00))['event$'][_0x20aa30(0x3c1)](_0x4da2a9[_0x20aa30(0x256)](_0x402396=>_0x402396[_0x20aa30(0x5ea)]===_0x9ea725[_0x20aa30(0x140)]['SHOULD_CLOSE_CONN']),_0x4da2a9[_0x20aa30(0x233)](this[_0x20aa30(0x1a1)]))[_0x20aa30(0x577)](_0x23029f=>{const _0x48a095=_0x20aa30,_0x4c6e5a=_0x23029f,{reason:_0xf28e84}=_0x4c6e5a[_0x48a095(0x390)];this[_0x48a095(0x488)][_0x48a095(0x55a)](_0x405b11['IMessageService'])[_0x48a095(0x46e)]({'type':_0x3fa11f[_0x48a095(0x21a)][_0x48a095(0x3c3)],'content':this['_localeService']['t'](_0x48a095(0x1e1))+'('+_0xf28e84+')'}),this[_0x48a095(0x1c5)][_0x48a095(0x18e)](new _0x59e5a9['WorkbookEditablePermission'](_0x534d00)['id'],!0x1),this['_collaborationSessionService'][_0x48a095(0x34a)](_0x534d00);});};_0x3fbd04[_0x5ddce9(0x54c)](this[_0x5ddce9(0x4ba)][_0x5ddce9(0x42e)](_0x223914[_0x5ddce9(0x53b)][_0x5ddce9(0x18d)]),this['_univerInstanceService'][_0x5ddce9(0x42e)](_0x223914[_0x5ddce9(0x53b)]['UNIVER_DOC']))[_0x5ddce9(0x3c1)](_0x4da2a9['map'](_0x37b4ec=>_0x37b4ec['getUnitId']()),_0x4da2a9[_0x5ddce9(0x256)](_0x316a23=>!_0x223914[_0x5ddce9(0x2c6)](_0x316a23)),_0x4da2a9[_0x5ddce9(0x233)](this[_0x5ddce9(0x1a1)]))[_0x5ddce9(0x577)](_0x1d7edd=>{_0x5ab547(_0x1d7edd);});}[_0x3948cf(0x5d9)](){const _0x55bb43=_0x3948cf,_0x26e791=async _0x5f4790=>{const _0x407bfb=_0x5201;(await this[_0x407bfb(0x3b9)][_0x407bfb(0x4f3)](_0x5f4790))['event$'][_0x407bfb(0x3c1)](_0x4da2a9[_0x407bfb(0x256)](_0x577bab=>_0x577bab[_0x407bfb(0x5ea)]===_0x9ea725[_0x407bfb(0x140)]['UPDATE_PERMISSION_OBJ']),_0x4da2a9[_0x407bfb(0x233)](this['dispose$']))[_0x407bfb(0x577)](_0x5b5518=>{const _0x2e1c64=_0x407bfb,_0x4986ba=_0x5b5518,{objectId:_0x4da259}=_0x4986ba[_0x2e1c64(0x390)],_0x5a7317=this[_0x2e1c64(0x488)][_0x2e1c64(0x55a)](_0x133108[_0x2e1c64(0x258)]);_0x4da259===_0x5f4790?_0x5a7317[_0x2e1c64(0x368)](_0x5f4790):_0x5a7317[_0x2e1c64(0x350)](_0x5f4790,_0x4da259);});};_0x3fbd04[_0x55bb43(0x54c)](this[_0x55bb43(0x4ba)]['getTypeOfUnitAdded$'](_0x223914[_0x55bb43(0x53b)][_0x55bb43(0x18d)]),this['_univerInstanceService'][_0x55bb43(0x42e)](_0x223914[_0x55bb43(0x53b)][_0x55bb43(0x30c)]))[_0x55bb43(0x3c1)](_0x4da2a9[_0x55bb43(0x26b)](_0x10904d=>_0x10904d[_0x55bb43(0x38c)]()),_0x4da2a9[_0x55bb43(0x256)](_0x47601f=>!_0x223914['isInternalEditorID'](_0x47601f)),_0x4da2a9[_0x55bb43(0x233)](this[_0x55bb43(0x1a1)]))['subscribe'](_0x6403b0=>{_0x26e791(_0x6403b0);});}};_0x5459b7=_0x57a417([_0x24a0bc(0x0,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x24a0bc(0x1,_0x223914[_0x3948cf(0x2dd)]),_0x24a0bc(0x2,_0x223914[_0x3948cf(0x1ac)]),_0x24a0bc(0x3,_0x223914[_0x3948cf(0x25f)](_0x24454f[_0x3948cf(0x228)])),_0x24a0bc(0x4,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x570)]))],_0x5459b7);var _0xce62df=Object[_0x3948cf(0x149)],_0x45d032=Object[_0x3948cf(0x16b)],_0x128f2e=(_0x106cc4,_0x2db0b1,_0x436d81,_0x307628)=>{const _0x4df619=_0x3948cf;for(var _0x16189a=_0x307628>0x1?void 0x0:_0x307628?_0x45d032(_0x2db0b1,_0x436d81):_0x2db0b1,_0x2ded67=_0x106cc4[_0x4df619(0x24c)]-0x1,_0x5bbd5f;_0x2ded67>=0x0;_0x2ded67--)(_0x5bbd5f=_0x106cc4[_0x2ded67])&&(_0x16189a=(_0x307628?_0x5bbd5f(_0x2db0b1,_0x436d81,_0x16189a):_0x5bbd5f(_0x16189a))||_0x16189a);return _0x307628&&_0x16189a&&_0xce62df(_0x2db0b1,_0x436d81,_0x16189a),_0x16189a;},_0x486597=(_0x54f4e6,_0x5c3dc4)=>(_0x2859bb,_0x4c5b68)=>_0x5c3dc4(_0x2859bb,_0x4c5b68,_0x54f4e6);_0x24454f[_0x3948cf(0x5a5)]=class{constructor(_0x173064,_0x32b145){this['_configService']=_0x173064,this['_httpService']=_0x32b145;}async[_0x3948cf(0x1fd)](_0xcf6ebd,_0x2a0106){const _0x1db132=_0x3948cf;var _0x4f1f6a;const {unitID:_0x469217,type:_0x3cca0a,revision:_0x897d80=0x0}=_0x2a0106,_0x2ed337=this[_0x1db132(0x450)]()+'/'+_0x3cca0a+_0x1db132(0x1f6)+_0x469217+_0x1db132(0x2a7)+_0x897d80,_0xf0eca3=(await this['_httpService'][_0x1db132(0x55a)](_0x2ed337))[_0x1db132(0x579)],_0x9acb15=(_0x4f1f6a=_0xf0eca3[_0x1db132(0x1dc)])==null?void 0x0:_0x4f1f6a[_0x1db132(0x23c)];if(_0x9acb15){const _0x4ad4e5=_0x9acb15==null?void 0x0:_0x9acb15[_0x1db132(0x2ab)],_0x78952b=_0x9ea725[_0x1db132(0x250)][_0x1db132(0x1cd)](_0x9ea725[_0x1db132(0x424)](_0x4ad4e5));_0x9acb15[_0x1db132(0x2ab)]=_0x78952b,Object[_0x1db132(0x47c)](_0x9acb15[_0x1db132(0x5fe)])[_0x1db132(0x24f)](([,_0xc1dbe9])=>{const _0x3e4c8b=_0x1db132,_0x268682=_0xc1dbe9['originalMeta'],_0x109ee5=_0x9ea725[_0x3e4c8b(0x250)][_0x3e4c8b(0x1cd)](_0x9ea725[_0x3e4c8b(0x424)](_0x268682));_0xc1dbe9[_0x3e4c8b(0x2ab)]=_0x109ee5;});}return _0xf0eca3;}async['getSheetBlock'](_0x39d0fd,_0x41b60a){const _0x1cb2c5=_0x3948cf,{unitID:_0x21b554,type:_0x48abc3,blockID:_0x34621e}=_0x41b60a,_0x582d57=this[_0x1cb2c5(0x5b2)]()+'/'+_0x48abc3+_0x1cb2c5(0x1f6)+_0x21b554+_0x1cb2c5(0x376)+_0x34621e;return(await this[_0x1cb2c5(0x3cc)][_0x1cb2c5(0x55a)](_0x582d57))[_0x1cb2c5(0x579)];}async[_0x3948cf(0x40c)](_0x436b65,_0x21f74f){const _0x221d2b=_0x3948cf,{unitID:_0x2e6297,type:_0x2cde30,blockID:_0x2b237}=_0x21f74f,_0x473816=this[_0x221d2b(0x5b2)]()+_0x221d2b(0x376)+_0x2cde30+_0x221d2b(0x1f6)+_0x2e6297+_0x221d2b(0x376)+_0x2b237;return(await this[_0x221d2b(0x3cc)]['get'](_0x473816))[_0x221d2b(0x579)];}async[_0x3948cf(0x5bf)](_0x44e9a8,_0x2bd0b2){const _0x2b250b=_0x3948cf,{unitID:_0x1a6c29,type:_0x5d15fa,from:_0x22860b,to:_0x1ebee6}=_0x2bd0b2,_0x246c30=this['_getAPIPrefix']()+'/'+_0x5d15fa+'/unit/'+_0x1a6c29+_0x2b250b(0x1c0)+_0x22860b+_0x2b250b(0x2d4)+_0x1ebee6;return(await this[_0x2b250b(0x3cc)][_0x2b250b(0x55a)](_0x246c30))[_0x2b250b(0x579)];}[_0x3948cf(0x450)](){const _0x48325d=_0x3948cf;var _0x5e63f1;return(_0x5e63f1=this[_0x48325d(0x164)][_0x48325d(0x52b)](_0x102c98))!=null?_0x5e63f1:this[_0x48325d(0x5b2)]();}[_0x3948cf(0x5b2)](){const _0x55b92f=_0x3948cf;var _0x1d93d4,_0x2d664a;const _0x4e5d8d=this[_0x55b92f(0x164)][_0x55b92f(0x52b)](_0x454abe),_0x177971=this[_0x55b92f(0x164)][_0x55b92f(0x52b)](_0x59012f);return(_0x2d664a=(_0x1d93d4=_0x177971==null?void 0x0:_0x177971[_0x55b92f(0x5a0)])!=null?_0x1d93d4:_0x4e5d8d)!=null?_0x2d664a:_0x3dc583;}async[_0x3948cf(0x41e)](_0x308d4f,_0x345c0b){const _0x40b059=_0x3948cf,_0x3a0f86=_0x40b059(0x19a)+_0x345c0b[_0x40b059(0x181)]+_0x40b059(0x1f6)+_0x345c0b[_0x40b059(0x397)]+_0x40b059(0x3cb);return(await this[_0x40b059(0x3cc)]['get'](_0x3a0f86,{'params':{'resourceId':JSON[_0x40b059(0x2ec)](_0x345c0b[_0x40b059(0x59f)])}}))[_0x40b059(0x579)];}[_0x3948cf(0x51c)](){const _0x354e78=_0x3948cf;throw new Error(_0x354e78(0x513));}[_0x3948cf(0x18c)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x3948cf(0x5ab)](){const _0x35ee07=_0x3948cf;throw new Error(_0x35ee07(0x513));}[_0x3948cf(0x3e4)](){const _0x503575=_0x3948cf;throw new Error(_0x503575(0x513));}['getLatestCsReqIdBySid'](){const _0x5d89f3=_0x3948cf;throw new Error(_0x5d89f3(0x513));}},_0x24454f[_0x3948cf(0x5a5)]=_0x128f2e([_0x486597(0x0,_0x223914[_0x3948cf(0x1ff)]),_0x486597(0x1,_0x223914[_0x3948cf(0x25f)](_0x1ddba4['HTTPService']))],_0x24454f[_0x3948cf(0x5a5)]);var _0x211c4f=Object[_0x3948cf(0x149)],_0x4d6d5c=Object['getOwnPropertyDescriptor'],_0x416c0a=(_0x10775b,_0x59b4d1,_0x3facaa,_0x25968f)=>{const _0x5aaef1=_0x3948cf;for(var _0x5bc5e6=_0x25968f>0x1?void 0x0:_0x25968f?_0x4d6d5c(_0x59b4d1,_0x3facaa):_0x59b4d1,_0x2a3e27=_0x10775b[_0x5aaef1(0x24c)]-0x1,_0x518340;_0x2a3e27>=0x0;_0x2a3e27--)(_0x518340=_0x10775b[_0x2a3e27])&&(_0x5bc5e6=(_0x25968f?_0x518340(_0x59b4d1,_0x3facaa,_0x5bc5e6):_0x518340(_0x5bc5e6))||_0x5bc5e6);return _0x25968f&&_0x5bc5e6&&_0x211c4f(_0x59b4d1,_0x3facaa,_0x5bc5e6),_0x5bc5e6;},_0x42d6ad=(_0x309caf,_0x556e78)=>(_0x575691,_0x15b7c2)=>_0x556e78(_0x575691,_0x15b7c2,_0x309caf);let _0x160fe1=class extends _0x223914[_0x3948cf(0x4cf)]{constructor(_0x400737,_0x3aa5bd,_0x32f6e0,_0x1b1184,_0x4adcaf){const _0xc2614c=_0x3948cf;super(_0x400737,_0x3aa5bd,_0x32f6e0),this[_0xc2614c(0x42b)]=_0x1b1184,this[_0xc2614c(0x3fb)]=_0x4adcaf;}[_0x3948cf(0x4e4)](_0x47555d,_0x7b85fc){const _0xda3dff=_0x3948cf,_0x11c75e=this['_getUndoStack'](_0x47555d);if(_0x11c75e)try{const _0x19c768=this['_transformStack'](_0x11c75e,_0x7b85fc);this['_substituteUndoStack'](_0x47555d,_0x19c768);}catch(_0x8578d9){this['_logService']['error']('[CollaborationUndoRedoService]',_0x8578d9),this[_0xda3dff(0x370)](_0x47555d);}const _0x492952=this[_0xda3dff(0x603)](_0x47555d);if(_0x492952)try{const _0x13cd05=this[_0xda3dff(0x4b7)](_0x492952,_0x7b85fc);this[_0xda3dff(0x4db)](_0x47555d,_0x13cd05);}catch(_0x1580fc){this['_logService'][_0xda3dff(0x41b)](_0x1580fc),this[_0xda3dff(0x4c9)](_0x47555d);}}[_0x3948cf(0x370)](_0x42887b){const _0xdbe426=_0x3948cf,_0x4c87d6=this['_getUndoStack'](_0x42887b);_0x4c87d6&&(_0x4c87d6[_0xdbe426(0x24c)]=0x0,this[_0xdbe426(0x16c)]());}['_clearRedo'](_0x2916fc){const _0x2f59bd=_0x3948cf,_0x544544=this[_0x2f59bd(0x603)](_0x2916fc);_0x544544&&(_0x544544[_0x2f59bd(0x24c)]=0x0,this[_0x2f59bd(0x16c)]());}['_substituteUndoStack'](_0x2cc984,_0x2076d0){const _0x44d51f=_0x3948cf;this['_undoStacks'][_0x44d51f(0x1f2)](_0x2cc984,_0x2076d0),this[_0x44d51f(0x16c)]();}['_substituteRedoStack'](_0x3fc6a3,_0x3dfc5c){const _0x552aac=_0x3948cf;this[_0x552aac(0x2df)][_0x552aac(0x1f2)](_0x3fc6a3,_0x3dfc5c),this[_0x552aac(0x16c)]();}[_0x3948cf(0x4b7)](_0xf5136f,_0x4576b7){const _0x18790e=_0x3948cf,_0x278820=[];let _0x3d84c2=_0x4576b7,_0x258738=_0x4576b7;for(let _0x352c3a=_0xf5136f['length']-0x1;_0x352c3a>=0x0;_0x352c3a--){const {unitID:_0x8beb3d,undoMutations:_0x4d01f8,redoMutations:_0x171313}=_0xf5136f[_0x352c3a],_0x4fe598=this[_0x18790e(0x42b)][_0x18790e(0x57d)](_0x3d84c2,_0x4d01f8),_0x12ed01=this[_0x18790e(0x42b)]['transformMutationsWithChangeset'](_0x258738,_0x171313);if(_0x9ea725[_0x18790e(0x54f)](_0x4fe598)||_0x9ea725[_0x18790e(0x54f)](_0x12ed01)){this[_0x18790e(0x3fb)][_0x18790e(0x41b)](_0x18790e(0x226),_0x18790e(0x267),_0x4fe598,_0x12ed01);break;}_0x3d84c2=_0x4fe598['c1Prime'],_0x258738=_0x12ed01['c1Prime'],_0x278820[_0x18790e(0x4ef)]({'unitID':_0x8beb3d,'undoMutations':_0x4fe598[_0x18790e(0x521)],'redoMutations':_0x12ed01[_0x18790e(0x521)]});}return _0x278820[_0x18790e(0x229)]();}};_0x160fe1=_0x416c0a([_0x42d6ad(0x0,_0x223914[_0x3948cf(0x2dd)]),_0x42d6ad(0x1,_0x223914[_0x3948cf(0x38e)]),_0x42d6ad(0x2,_0x223914[_0x3948cf(0x4d2)]),_0x42d6ad(0x3,_0x9ea725[_0x3948cf(0x1b6)]),_0x42d6ad(0x4,_0x223914[_0x3948cf(0x5b0)])],_0x160fe1);class _0x1158f8 extends _0x223914[_0x3948cf(0x52f)]{constructor(){const _0x44dc2f=_0x3948cf;super(),_0xeb55cc(this,'urlChange$'),this[_0x44dc2f(0x297)]=_0x3fbd04['fromEvent'](window,_0x44dc2f(0x4df))[_0x44dc2f(0x3c1)](_0x3fbd04[_0x44dc2f(0x233)](this['dispose$']),_0x3fbd04[_0x44dc2f(0x410)](0x1),_0x3fbd04[_0x44dc2f(0x21f)](void 0x0));}[_0x3948cf(0x25b)](_0x1bf2bb,_0x3a17ee,_0x40c8d1=!0x1){const _0x301899=_0x3948cf,_0x4fb219=new URL(window['location'][_0x301899(0x4bf)]);_0x4fb219[_0x301899(0x4f1)][_0x301899(0x1f2)](_0x1bf2bb,_0x3a17ee),_0x40c8d1?window[_0x301899(0x441)][_0x301899(0x320)]('','',_0x4fb219[_0x301899(0x4ec)]()):window[_0x301899(0x441)][_0x301899(0x4e5)]('','',_0x4fb219[_0x301899(0x4ec)]());}['removeParam'](_0x1ef9f6,_0x4c7cc6=!0x1){const _0x14c19a=_0x3948cf,_0x5960a1=new URL(window[_0x14c19a(0x2bc)][_0x14c19a(0x4bf)]);_0x5960a1[_0x14c19a(0x4f1)][_0x14c19a(0x45a)](_0x1ef9f6),_0x4c7cc6?window[_0x14c19a(0x441)][_0x14c19a(0x320)]('','',_0x5960a1[_0x14c19a(0x4ec)]()):window[_0x14c19a(0x441)]['pushState']('','',_0x5960a1[_0x14c19a(0x4ec)]());}[_0x3948cf(0x18a)](_0xaaf4fc){const _0x281a30=_0x3948cf;var _0x209e4e;return(_0x209e4e=new URL(window[_0x281a30(0x2bc)][_0x281a30(0x4bf)])['searchParams'][_0x281a30(0x55a)](_0xaaf4fc))!=null?_0x209e4e:void 0x0;}}var _0x337363=Object[_0x3948cf(0x149)],_0x4c6dc8=Object[_0x3948cf(0x16b)],_0x2df55c=(_0x29d24e,_0x38eadb,_0x302ba9)=>_0x38eadb in _0x29d24e?_0x337363(_0x29d24e,_0x38eadb,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x302ba9}):_0x29d24e[_0x38eadb]=_0x302ba9,_0x47fafc=(_0x434043,_0x1edcce,_0x67eb86,_0x386290)=>{for(var _0xbff8d=_0x386290>0x1?void 0x0:_0x386290?_0x4c6dc8(_0x1edcce,_0x67eb86):_0x1edcce,_0x5ec989=_0x434043['length']-0x1,_0x231ea1;_0x5ec989>=0x0;_0x5ec989--)(_0x231ea1=_0x434043[_0x5ec989])&&(_0xbff8d=(_0x386290?_0x231ea1(_0x1edcce,_0x67eb86,_0xbff8d):_0x231ea1(_0xbff8d))||_0xbff8d);return _0x386290&&_0xbff8d&&_0x337363(_0x1edcce,_0x67eb86,_0xbff8d),_0xbff8d;},_0x56052c=(_0x32703e,_0xd1157e)=>(_0x39f622,_0x19706c)=>_0xd1157e(_0x39f622,_0x19706c,_0x32703e),_0x21a2c1=(_0x16fff7,_0x97a6f6,_0x42129a)=>_0x2df55c(_0x16fff7,_0x97a6f6+'',_0x42129a);const _0xb65709=_0x3948cf(0x265);_0x24454f['UniverCollaborationClientPlugin']=class extends _0x223914['Plugin']{constructor(_0x52fd62=_0x2741d3,_0x134bd1,_0x1b3cca,_0x2732ae,_0xfa5015){const _0x3a5ca3=_0x3948cf;super(),this[_0x3a5ca3(0x332)]=_0x52fd62,this[_0x3a5ca3(0x3fb)]=_0x134bd1,this[_0x3a5ca3(0x4c2)]=_0x1b3cca,this['_injector']=_0x2732ae,this['_configService']=_0xfa5015;const {..._0x476b9f}=this[_0x3a5ca3(0x332)];this[_0x3a5ca3(0x164)][_0x3a5ca3(0x55e)](_0x59012f,_0x476b9f);}['onStarting'](){const _0x4c2e39=_0x3948cf;this[_0x4c2e39(0x216)](),this[_0x4c2e39(0x2f1)]();}[_0x3948cf(0x1fb)](){const _0x50110e=_0x3948cf;_0x223914[_0x50110e(0x17d)](this[_0x50110e(0x488)],[[_0x5583a5]]);}[_0x3948cf(0x36a)](){const _0xb21983=_0x3948cf;this[_0xb21983(0x2e9)]();}[_0x3948cf(0x216)](){const _0x42691a=_0x3948cf;var _0x2ce7fa,_0x445419,_0x1132e0,_0x62d8ec;this[_0x42691a(0x488)]['has'](_0x223914['IUndoRedoService'])&&this['_logService']['error'](_0x42691a(0x3c8),_0x42691a(0x36b));const _0x3b42d9=[[_0x223914['IUndoRedoService'],{'useClass':_0x160fe1}],[_0x24454f[_0x42691a(0x228)]],[_0x1f0109],[_0x22100a,{'useClass':_0x1158f8}],[_0x24454f[_0x42691a(0x48b)]],[_0x24454f[_0x42691a(0x30e)]],[_0x1ddba4[_0x42691a(0x393)]],[_0x42d852],[_0x5cbe2c],[_0x2e6349],[_0x5cf7bf],[_0x4de645],[_0x27f981],[_0x1daeed],[_0x257017],[_0x5459b7],[_0x1a1032,{'useClass':(_0x445419=(_0x2ce7fa=this[_0x42691a(0x332)])==null?void 0x0:_0x2ce7fa[_0x42691a(0x2f2)])!=null?_0x445419:_0x24454f[_0x42691a(0x5d7)]}],[_0x9ea725['ISnapshotServerService'],{'useClass':_0x24454f[_0x42691a(0x5a5)]}],[_0x223914[_0x42691a(0x309)],{'useClass':_0x24454f[_0x42691a(0x3d1)]}],[_0x5008e0[_0x42691a(0x2b8)],{'useClass':_0x24454f[_0x42691a(0x3b8)]}],[_0x24454f[_0x42691a(0x35c)]],[_0x24454f['DataLoaderController']],[_0x24454f[_0x42691a(0x1c4)]],[_0x5583a5],[_0x167308]];(_0x1132e0=this[_0x42691a(0x332)])!=null&&_0x1132e0[_0x42691a(0x545)]&&_0x3b42d9['push']([_0x1b2f34,{'useClass':_0x4b8d7b}]),_0x223914[_0x42691a(0x59b)](this[_0x42691a(0x488)],_0x223914[_0x42691a(0x2e8)](_0x3b42d9,(_0x62d8ec=this[_0x42691a(0x332)])==null?void 0x0:_0x62d8ec[_0x42691a(0x194)]));}[_0x3948cf(0x2e9)](){const _0x4b3ea6=_0x3948cf;this[_0x4b3ea6(0x345)](this[_0x4b3ea6(0x4c2)][_0x4b3ea6(0x316)](_0x223914[_0x4b3ea6(0x53b)][_0x4b3ea6(0x30c)],[_0x4ea386])),this['disposeWithMe'](this['_renderManagerService']['registerRenderModule'](_0x223914[_0x4b3ea6(0x53b)][_0x4b3ea6(0x18d)],[_0x3aba73]));}[_0x3948cf(0x2f1)](){const _0x477a3c=_0x3948cf;var _0x4c49af,_0x558798;this['_injector']['get'](_0x1ddba4[_0x477a3c(0x171)])['registerHTTPInterceptor']({'priority':0x14,'interceptor':_0x1ddba4['ThresholdInterceptorFactory']({'maxParallel':0x6})}),(_0x4c49af=this[_0x477a3c(0x332)])!=null&&_0x4c49af[_0x477a3c(0x20e)]||this[_0x477a3c(0x488)][_0x477a3c(0x55a)](_0x24454f[_0x477a3c(0x30e)])['disableLocalCache'](),(_0x558798=this[_0x477a3c(0x332)])!=null&&_0x558798[_0x477a3c(0x4a6)]&&_0x223914[_0x477a3c(0x17d)](this[_0x477a3c(0x488)],[[_0x27f981]]),_0x223914[_0x477a3c(0x17d)](this[_0x477a3c(0x488)],[[_0x1daeed],[_0x167308],[_0x24454f[_0x477a3c(0x2d9)]],[_0x24454f['CollaborationController']],[_0x24454f['DesktopCollaborationStatusDisplayController']],[_0x5459b7]]);}},_0x21a2c1(_0x24454f['UniverCollaborationClientPlugin'],'pluginName',_0xb65709),_0x24454f[_0x3948cf(0x1a0)]=_0x47fafc([_0x223914['DependentOn'](_0x9ea725[_0x3948cf(0x4b8)],_0x1ddba4[_0x3948cf(0x20c)]),_0x56052c(0x1,_0x223914[_0x3948cf(0x5b0)]),_0x56052c(0x2,_0xdd060a[_0x3948cf(0x349)]),_0x56052c(0x3,_0x223914[_0x3948cf(0x25f)](_0x223914[_0x3948cf(0x478)])),_0x56052c(0x4,_0x223914[_0x3948cf(0x1ff)])],_0x24454f[_0x3948cf(0x1a0)]),_0x24454f['AUTHZ_URL_KEY']=_0x45e840,_0x24454f[_0x3948cf(0x23d)]=_0x38f10d,_0x24454f[_0x3948cf(0x3aa)]=_0x2c6078,_0x24454f[_0x3948cf(0x16e)]=_0x1de127,_0x24454f[_0x3948cf(0x59d)]=_0x409637,_0x24454f[_0x3948cf(0x205)]=_0x257017,_0x24454f[_0x3948cf(0x21d)]=_0x224248,_0x24454f[_0x3948cf(0x13e)]=_0x44eea9,_0x24454f[_0x3948cf(0x3fc)]=_0x1a1032,_0x24454f['IURLService']=_0x22100a,_0x24454f[_0x3948cf(0x3f9)]=_0x5e1c84,_0x24454f[_0x3948cf(0x325)]=_0x5d6ffa,_0x24454f['RETRY_CONNECTING_MAX_COUNT_KEY']=_0x5b3dc5,_0x24454f[_0x3948cf(0x280)]=_0x224844,_0x24454f[_0x3948cf(0x198)]=_0x454abe,_0x24454f['SNAPSHOT_URL_KEY']=_0x102c98,_0x24454f[_0x3948cf(0x27c)]=_0x1efc5b,_0x24454f[_0x3948cf(0x381)]=_0x4b8f9a,_0x24454f[_0x3948cf(0x321)]=_0x1158f8,_0x24454f['deserializeToCombResponse']=_0x592c55,_0x24454f['serializeCombRequest']=_0x2a8bc0,Object['defineProperty'](_0x24454f,Symbol[_0x3948cf(0x1ca)],{'value':'Module'});}));function _0x4f95(){const _0x2b89d2=['_transformService','_updateCollabCursors','addImageSourceCache','getTypeOfUnitAdded$','debounceTime','_sessions','_createHelper','_getSendChangesetTimeout','fillText','mode','_retryConnectingTimer','CollaborationSession','LICENSE_DISTRO_REJECTED','_memberService','\x20to\x20','_keyPriorReset','top','currentTheme$','serializeRangeWithSheet','setShapeProps','create','encrypt','history','[CollaborationEntity]','unitId\x20is\x20not\x20found','DeleteRangeMoveUpCommandId','UserManagerService','NOT_FOUND','Univer','_nRounds','_cachedData','_onCursorDelete','_event$','getCoordByCell','failed\x20to\x20apply\x20missed\x20changesets!','blockSize','_scene','_getSnapshotAPIPrefix','objects','state','getWorkbookSelections','APPLY_DUPLICATED','LICENSE_MAX_UNITS_EXCEEDED','BlockCipherMode','UniverEngineFormula','JSONX','routeKey','delete','keySize','_scheduleSaving','PasswordBasedCipher','LOCAL_CACHE_INTERVAL','_transformRemoteChangesetByIMECache','getSheetBySheetId','Rectangle','isArray','fetchMiss','includes','InsertColCommandId','UniverDesign','_map','collabWebSocketUrl','sequenceExecute','reqId','indexOf','_initEventListeners','SNAPSHOT_URL_KEY','show','?url=','@univerjs/sheets','tag','_getUploadFileURL','_ensureSubject','SerializableCipher','_imageSourceCache','apply','getSheetObject','Injector','telemetry\x20info\x20is\x20not\x20initialized','abs','getUnitType','entries','collaboration_new_changeset','_cursorShapes','awaiting','CipherParams','fillStyle','ALREADY_EXISTS','update','RECV','AUTHZ_URL_KEY','resend','762296ITIDLH','_injector','react.element','TRANSFORM_CHANGE_OBSERVABLE_TYPE','MemberService','ColorKit','[PendingState]:\x20unhandled\x20univer\x20type:\x20','UPDATE_CURSOR','_pendingMutations','next','UniverRpc','offline','_getSheetObject','CompressMutationService','_fetchMissChangesets','min','updateMember','_socketService','_render','init','getCellPositionByOffset','_timeoutTimer','[CollaborationSession]','_transformStateCache','patch','withCredentials','save','authzUrl','Native\x20crypto\x20module\x20could\x20not\x20be\x20used\x20to\x20get\x20secure\x20random\x20number.','[OfflineState]:\x20received\x20acknowledgement.','_colorAssignService','enableAuthServer','_getSaveTimeout','_cursors','UniverCollaborationClient','json','readInt32LE','pad','handleDeleteRangeMoveLeft','_transformRemoteChangesetByStateCache','pending','switchMap','unsubscribe','_loadSheet','currentSkeleton$','ref','HEADER_MENU','toggleOnline','_transformStack','UniverCollaborationPlugin','_unitStatus','_univerInstanceService','getColor','getRangePointData','{fileID}','url','href','Unknown\x20user','Base','_renderManagerService','_updateLocalCache','useObservable','Shape','getMergeData','_waitCount','UNRECOGNIZED','_clearRedo','_schedule','_initResize','SheetCollaborationEntity','_createHmacHelper','colorChannel1','LocalUndoRedoService','[CollaborationEntity]:\x20cannot\x20apply\x20missing\x20results\x20on\x20other\x20states!','IUndoRedoService','IContextService','/object','_isPermissionRej','max','session','triggerDblclick','/universer-api/stream/file/upload','UniverUi','collab-rect-range-','_substituteRedoStack','getImageSourceCache','transformChangesets','TOO_MANY_REQUESTS','popstate','univer-pro.collaboration-client.single-active-unit-service','onSendChangeset','\x0aCurrent:\x20','close$','transformUndoRedo','pushState','blue400','[FetchMissState]','subunit','interceptor','UniverSheets','runRefRangeMutations','toString','_listenToOfflineEvent','_prevBlock','push','[CollaborationEntity]:\x20invalid\x20state\x20transition!\x20State\x20transferred\x20from\x20is\x20not\x20the\x20current\x20state.\x0aBefore:\x20','searchParams','_disabled','requireSession','NoPadding','permission.title','commentUpdate$','_docSkeletonManagerService','lib','_eventUnsubscribe','React','undoState','moveTo','connectInjector','_transformSelections','getValue','socket$','updatePermissionObjEvent','/universer-api/snapshot','change$','collaMsg','collabStatus.fetchMiss','SUBMIT_CHANGESET','synced','INGEST','onCommandExecuted','/role','findNodePositionByCharIndex','save\x20fail\x20reason\x20is\x20','c2Prime','decryptBlock','OnLineSingle','_compressMutationService','[serializeCombRequest]:\x20should\x20not\x20fall\x20into\x20default\x20branch!','uploadFileServerUrl','This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!','listRoles','_themeService','cfg','parse','2Intpgf','AWAITING_WITH_PENDING','YUUMI_RATE_OVER_LIMIT','_sheetTransformSelectionsService','saveSnapshot','translate(.97)','_snapshotServerService','_uiPartsService','mapDocumentTypeToUniverType','m2Prime','closePath','rxjs/operators','_scheduleTimestamp','ERROR_EXCEED_SIZE','TEXT_RANGE_LAYER_INDEX','StreamCipher','_init','_online','[OfflineState]:\x20received\x20changeset.','getConfig','_socket','onPointerMove$','Rect','RxDisposable','Could\x20not\x20dynamically\x20require\x20\x22','_docSyncEditingCollabCursorService','[CollaborationSession]:\x20should\x20not\x20send\x20message\x20when\x20the\x20session\x20is\x20offline!','LICENSE_IMPORT_SIZE_EXCEEDED','DocStateChangeManagerService','UNKNOWN_CMD','_transformPreviousActiveRange','target','collaborators','operators','collabStatus.offline','UniverInstanceType','substring','_resendTimeout','_createHandler','mutations','saveImage','ImageUploadStatusType','_notificationService','parseChangesetToProtocol','onRemoteAck','enableSingleActiveInstanceLock','loadOfflineData','_parse','UNIVER_SLIDE','transformIMECache','connection\x20error','trim','merge','params','flatMap','isTransformMutationsWithChangesetFailure','onMissedChangesetFetched','red300','off-line-single_clip0_910_343','_onFetchMissResult','salt','hasher','_submitChangeset','collab-text-anchor-','isTransformChangesetsSuccess','action','get','FromArray','_getAPIPrefixPath','clamp','setConfig','status$','_commentService','_executeRemoteChangeset','_oKey','pauseCollaboration','createElement','createInstance','deepClone','handleIRemoveRow','ENSURE_SNAPSHOT_EXECUTION','_onMessage','call','subscribeEvent','_drawTextRange','_refreshCollabCursors','9eKxuqC','SheetSkeletonManagerService','LocaleService','padding','Error\x20on\x20receiving\x20event','handleInsertCol','collabStatus.notCollab','reject','verdancy600','subscribe','session.connection-failed','body','handleDeleteRangeMoveUp','_exhaustRemoteChangesetQueue','_session','transformMutationsWithChangeset','onTransformRemoteChangesetByIMECache','Tooltip','_onRecvEvent','event$','Undefined','unknown','InsertSheetMutation','onlyLocal','mixIn','decrypt','randomBytes','random','_collabCursorState$','measureText','_startDocCollabCursor','DEFAULT_FILE_NAME','has','ISnapshotServerService','editingUnit','27627534DExNGP','_collabCursorController','_DEC_XFORM_MODE','headers','online','_docSkeleton','handleMoveRange','UNIVER_UNKNOWN','_entities','YUUMI_URL_COL_OUT_OF_RANGE','registerDependencies','SHOULD_CLOSE_CONN','CollaborationStatusDisplay','ThemeService','resourceIDs','snapshotServerUrl','collabStatus.conflict','univer-online','USERS_LEAVE','_onConnectionFailed','SnapshotServerOverHTTPService','clone','SNAPSHOT_INVALID_SNAPSHOT','registerComponent','_selfUnitIDs','contains','saveChangeset','\x20-\x20','SEND_CHANGESET_TIMEOUT','getTypeOfUnitDisposed$','Tools','ILogService','_handleJoinEvent','_getAPIPrefix','_colorIndex','transformRemoteChangeset','visibilitychange','_textBubble','onTransformRemoteChangesetByStateCache','getInterceptPoints','roomMembers$','DocIMEInputManagerService','backgroundColor','collabStatus.synced','HmacSHA1','_scheduleClearOtherTimer','fetchMissingChangesets','univer-offline','_changesetReqId','_sender','_send','infoRsp','MUTATION','Hasher','csShouldRetryEvent','fillRule','_commentUpdate$','fetchThroughInterceptors','JOINING','deleteCollaborator','UUID','6ohvgzX','url(#$1','join','__esModule','csRejEvent','append','Utf8','m1Prime','SetDocZoomRatioOperation','CollaborationSocketService','onRemoteChangeset','_initUnitPermissionChange','RETRY_CONNECTING_MAX_COUNT','YUUMI_UNABLE_LOAD_URL','putCollaborators','_remoteChangesetQueue','_handleEvent','_onRemoteACK','ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=','isEditing','status','fromEventSubject','_roomMembers','CHANGESET_SHOULD_RETRY','_clearCollaborationTimeoutTimer','RemoveColCommandId','fromCollab','amd','eventID','image/bmp','APPLY_PERMISSION_DENIED','_urlService','use','unshift','rgba(255,\x20255,\x20255,\x200.01)','liveShareNewHost','path','splice','Unknown\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','listCollaborators','transform','UNAUTHENTICATED','$super','MoveRangeCommandId','replace','_type','_docStateChangeManagerService','780901jJLsLx','sheets','_transformUndoredo','icon','extend','error$','_getRedoStack','getVpScrollXYInfoByPosToVp','_doCryptBlock','symbol','msCrypto','docStateChange$','byteLength','getRandomValues','_onUserLeave','HmacMD5','confirm','_xformMode','sessionStatus','_showConflictNotification','_name','_hover','COMPLETION_FINISHED','HEARTBEAT_TIMEOUT_KEY','\x20in\x20_schedule.','CollaborationEvent','forwardRef','/universer-api/authz','Warning','_anchor','createSocket','__creator','_localeService','COMPRESS_MUTATION_APPLY','defineProperty','getRoom','complete','_messageService','_revisionService','setShowComponents','INTERNAL_ERROR','isPermissionRej','toLowerCase','collabCursorState$','/allowed','TEXT','_nDataBytes','setAlpha','_initCloseConn','_transformIMECache','getCollabEntity','_loadDoc','BuiltInUIPart','isActive','LICENSE_EXPORT_SIZE_EXCEEDED','with','_entityInit$','getRelativeToViewportCoord','_initRequestHeader','_onCursorUpdate','charCodeAt','_configService','/-/object/list','SnapshotService','restore','arc','react','_getMergeRange','getOwnPropertyDescriptor','_updateStatus','propertyIsEnumerable','CollaborationStatus','_anchorDot','_doReset','HTTPService','function','_handleHover','_clearLocalCache','registerRefRange','_scheduleCollaborationTimeoutTimer','1em','storage','onPointerLeave$','DeleteRangeMoveLeftCommandId','liveShareOperation','_joinRoom','touchDependencies','FETCH_MISSING','submit\x20changeset\x20error!','_initCommandExecutedListener','type','row','unload','_resendWithTimeout','_awaitingChangeset','clearTimeout','rxjs','hasOwnProperty','now','getParam','replaceDocRanges','saveSheetBlock','UNIVER_SHEET','updatePermissionPoint','Cannot\x20assemble\x20a\x20changeset\x20from\x20multiple\x20mutations\x20of\x20different\x20types:\x20','_HTTPService','ciphertext','OffLineSingle','4518549RlRrTF','override','onMouseMove','_toggleOffline','SetWorksheetActivateCommand','SNAPSHOT_SERVER_URL_KEY','_sendingTimer','/universer-api/snapshot/','_status$','UNDEFINED','APPLY_REVISION_CONFILICT','newCsEvent','DocCollaborationEntity','UniverCollaborationClientPlugin','dispose$','Decryptor','ILocalStorageService','bottom','_shapes','UNIVER_PROJECT','LIVESHARE_REQUEST_HOST','session.room-full','[SyncedState]:\x20received\x20acknowledgement.','debounce','objectType','IPermissionService','HELLO','/universer-api/comb','UniverEngineRender','_lockTransition','[SyncedState]:\x20invalid\x20calling\x20to\x20`resend`.','assignAColorForMemberID','UniverNetwork','getSheetId','substr','ITransformService','getUndoRedoMutationParamsCache','_tryReconnect','_commandService','_context','incrementRevOfUnit','joinEvent','_singleActiveUnitService','UniverIcon','_onUserJoin','/fetchmissing?from=','fill','InsertRangeMoveDownCommandId','reconnect','DesktopCollaborationStatusDisplayController','_permissionService','__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED','children','setItem','attrs','toStringTag','disableLocalCache','IMessageService','encode','_getAnchorBounding','rev','getMember','getMemberID','addEventListener','_getDownloadEndpointURL','getStateCache','getCurrentUser','_socketReady','registerOnClose','/new_changes','UniverTelemetry','_roomMembers$','unpad','snapshot','SUCCUSS','[CollaborationEntity]:\x20cannot\x20lock\x20transition\x20twice!\x20This\x20is\x20an\x20implementation\x20error,\x20meaning\x20you\x20transit\x20the\x20collaboration\x20state\x20again\x20in\x20the\x20process\x20of\x20a\x20previous\x20transition.\x20This\x20should\x20never\x20happen.','fetch_missing','default','collaboration.closeRoom','[FetchingMissState]:\x20not\x20expected\x20to\x20receive\x20ack\x20when\x20`this._awaitingChangeset`\x20is\x20null!','MD5','SNAPSHOT_HAS_BEEN_REMOVED','APPLY_REJECT','subUnitId','_shouldReportTelemetry','message$','_onRemoteRejected','LIVESHARE_NEW_HOST','parseProtocolChangeset','NO_OTHER_CLIENTS_EDITING','then','DOC_RANGE_TYPE','close','_process','idSuffix','set','selection','Subject','roles','/unit/','/collaborator','[CollaborationSocketService]:\x20failed\x20to\x20create\x20socket!','all','generateRandomId','onReady','revision','getUnitOnRev','YUUMI_SUBSCRIPTION_NOT_FOUND','IConfigService','capture','exhaustSavingTask','handleInsertRangeMoveRight','CommandType','_createInitialState','CommentService','key','onlineStatusIcon','_heartbeatTimer','UnitEmbedded','onTransformIME','deserializeRangeWithSheet','UniverNetworkPlugin','_waitForHeartbeatResponse','enableOfflineEditing','encryptBlock','_append','_snapshotService','transformMutation','getUnhiddenWorksheets','getRenderById','[OfflineState]:\x20invalid\x20calling\x20to\x20`resend`.','_registerDependencies','addObject','COLLAB_WEB_SOCKET_URL','_onRefRangeChange','MessageType','setUndoRedoMutationParamsCache','userID','HEARTBEAT_INTERVAL_KEY','getCurrentSelections','mapTo','_key','socket\x20open.','@univerjs/docs-ui','updateOfflineData','_userManagerService','_checkMissing','[CollaborationUndoRedoService]','createEncryptor','CollaborationSessionService','reverse','_startSheetCollabCursor','handleIRemoveCol','repeat','createDecryptor','EXCHANGE_SIGN_URL_SERVER_URL_KEY','_collaborationPaused','getTime','color','_sendHeartbeatTimer','takeUntil','NEW_CHANGESETS','crypto','currentColor','RefRangeService','toDisposable','OFFLINE','_sheetSkeletonManagerService','defaultProps','workbook','COLLAB_SUBMIT_CHANGESET_URL_KEY','Encryptor','_hash','add','_clearScheduledTask','COMMENT_UPDATE','BlockCipher','url(#on-line-single_clip0_910_349)','_ENC_XFORM_MODE','_replayCachedMutations','collaboration-client.config','@univerjs/core','onStateChange','defs','HttpExport','length','execute','HTTPRequest','forEach','textEncoder','_incrementRevisionNumber','setActiveRange','_collabSessionService','focused$','useRef','filter','c1Prime','SheetPermissionInitController','ACTIVE_UNIT_EVENT_CHANNEL','_toggleOnline','setParam','_scheduleHeartbeat','SetSelectionsOperation','_listenToOnlineEvent','Inject','__Key__','addObjects','image/gif','WorkbookEditablePermission','_data','UNIVER_COLLABORATION_CLIENT_PLUGIN','_clearHeartbeatTimer','transformStack\x20failed!','_replaceFileID','collaboratorID','_getLoginPath','map','onRemoteRetry','find','some','slice','loadDoc','AES','enc','_onRemoteChangeset','registerBeforeClose','from','DocSkeletonManagerService','string','_initStatusListener','collaboration-session-retry','onload','textRanges','SessionStatus','@univerjs/network','cmd','bind','SEND_CHANGESET_TIMEOUT_KEY','WordArray','gold400','_cursorInfo$','OTHER_CLIENTS_EDITING','startsWith','_docTransformIMECacheService','dispose','PERMISSION_REJ','name','auth.needGotoLoginAlert','JOIN','xlink:href','FETCH_MISS','_updateLocalCursor','send','className','useDependency','lineTo','_color','_instanceService','_setupSubUnitSync','RemoveRowCommandId','urlChange$','commentUpdateEvent','joinRsp','asObservable','exports','displayName','_handleLeaveEvent','PERMISSION_DENIED','_saveCache','1668000jZUCtu','COLORS','EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY','resolve','_updateURLWithCurrentState','UniverCollaboration','collab-text-range-','/rev/','sid','&source=','Disposable','originalMeta','_queuedRemoteChangesets','_telemetryInfo','rng','#fff','members','encodeURIComponent','Vector2','_id','_getScale','take','_hasher','_undoRedoService','IImageIoService','Optional','_labelPosition','@univerjs/sheets-ui','location','84hhakAU','_collaborationTimeoutTimer','shouldCloseConn','_reverseMap','_beforeCloseService','transformStateCache','distinctUntilChanged','byteOffset','_candidateSocket','isInternalEditorID','algo','_doFinalize','_changesetSessionId','RegularPolygon','hostname','_onCombEvent','getUnit','_retryCount','89109qNHosF','univer-pro.collaboration-client-socket-service','svg','startColumn','POST','&to=','_throwTelemetryCollaborationNewChangeset','changesets','origin','result','DataLoaderController','clear','CHANGESET_REJ','font','IUniverInstanceService','LIVESHARE_FETCH_OPERATIONS','_redoStacks','BehaviorSubject','transformSelections','appendMutation','/-/object/-/batch_allowed','PENDING','[SyncedState]:\x20received\x20rejection.','_tryEnsureSocket','onTransformSelections','mergeOverrideWithDependencies','_registerRenderDependencies','@univerjs/docs','@univerjs/ui','stringify','Malformed\x20UTF-8\x20data','_onJoinRoomEvent','_acknowledgedAwaitingChangeset','ImageSourceType','_initDependencies','socketService','stopTime','_applyRemoteChangeset','cursorInfo','method','onlineStatus','_createInitialStateImpl','values','activeSheet$','removeMember','BufferedBlockAlgorithm','skeleton','onPointerEnter$','_unlockTransition','_getSignURL','delay','_keySchedule','_saveTaskMap','_handler','formatter','localeService','NodePositionConvertToCursor','univerjs-icon\x20univerjs-icon-','IAuthzIoService','makeDirty','SheetsSelectionsService','UNIVER_DOC','width','LocalCacheService','open$','_backgroundColor','clipPath','IUIPartsService','_initMergeInterceptor','onCommentUpdate','BASE64','registerRenderModule','EffectRefRangId','CONFLICT','_updateState','DocSelectionManagerService','Cipher','CHANGESET_ACK','onTransformChange$','getAncestorScale','startTime','replaceState','WebURLService','onTransformState','beginPath','_startCollaboration','LOGIN_URL_KEY','unit','onRemoteRej','@univerjs/drawing','USERS_ENTER','createIdentifier','_createSocket','@univerjs/rpc','_lastPointer','HEARTBEAT','editing\x20status\x20changed\x20to','CBC','compose','_config','isTransformMutationsWithChangesetSuccess','redoState','defIds','sigBytes','_localCacheService','getItem','current','awaiting_with_pending','COLLAB_SUBMIT_CHANGESET_URL','_sessionStatus$','@univerjs/design','_setupBeforeClosingHandler','none','_iv','_change$','_transformHistoryAndStateStack','sessionStatus$','NOT_COLLAB','disposeWithMe','debug','code','awaitingChangeset','IRenderManagerService','closeSession','\x0aAfter:\x20','InsertRangeMoveRightCommandId','csAckEvent','signUrlServerUrl','HttpImport','refreshPermission','getCollabCursors$','actions','_clearTimeoutTimer','Base64','object','getCurrentRevOfUnit','words','_hovered','_docTransformStateCacheService','#FFF','selections','CollaborationController','downloadEndpointUrl','_onConnectionOpen','for','equals','fromCharCode','unitId','kdf','RevisionService','toRgbString','_minBufferSize','jsxs','initWorkbookPermissionChange','LIVESHARE_OPERATION','onRendered','you\x20should\x20override\x20\x22IUndoRedoService\x22\x20provided\x20in\x20\x22core\x22\x20package!','_mode','_hideTimer','visibilityState','onMissingChangesets','_clearUndo','_removeClearOtherTimer','_http','getUnitStatus$','every','isTransformMutationFailure','/block/','cursorInfo$','ERROR_IMAGE_TYPE','_state','CONNECTOR_DATA_TOO_LARGE','reset','MergeInterceptorFactory','_assignedColors','_startTelemetryCollaborationNewChangeset','jsx','image/jpg','SheetCollabCursorShape','DisposableCollection','on-line-single','url(#off-line-single_clip0_910_343)','getAllMembers','react.fragment','toggleOffline','onSyncEditingCollabCursor','_drawAnchor','concat','objectID','getUnitId','RECT','ICommandService','_updateSubUnitFromURLParams','data','file','[CollaborationController]:\x20invalid\x20univer\x20type:\x20','WebSocketService','text','getOffsetConfig','collab-client.tooltip.reconnect','unitID','conflict.content','_drawRectRange','APPLY_NON_SEQUENTIAL_REVISION','format','assign','getOwnPropertySymbols','_clearOtherTimers','post','M3.61971\x2011.6499C2.40304\x2011.6499\x200.699707\x2011.1024\x200.699707\x208.9124C0.699707\x206.3574\x203.25471\x205.8099\x203.98471\x205.8099C4.34971\x204.5324\x205.07971\x202.5249\x207.99971\x202.5249C10.5547\x202.5249\x2011.6497\x203.9849\x2012.0147\x205.2624C12.0147\x205.2624\x2015.2997\x205.6274\x2015.2997\x208.7299C15.2997\x2010.9199\x2013.8397\x2011.6499\x2012.3797\x2011.6499M9.82471\x209.82466L6.17471\x2013.4747M6.17471\x209.82466L9.82471\x2013.4747','_socket$','clearInterval','getSkeleton','_syncEditingCollabCursor','not_collab','setStateCache','setCurrentUser','InsertRowCommandId','state$','COLLAB_WEB_SOCKET_URL_KEY','LIVESHARE_TERMINATE','getFocusedUnit','height','4805810JqzahF','UnitSnapshot','@univerjs/engine-render','drawWith','MSG_FOR_ERROR','OpenSSL','getDocRanges','_getCurrentRevision','_refRangeService','readAsDataURL','ImageIoService','_collaborationSessionService','conflict.title','_members','LEAVE','ivSize','_cursor','syncEditingCollabCursor','range','pipe','sin','Error','div','charAt','ONLINE','handleInsertRow','[UniverCollaborationClientPlugin]','[DataLoaderController]','_range','/resources','_httpService','_doProcessBlock','split','_onLocalMutation','executeCommand','AuthzIoHttpService','getActiveSheet','AWAITING','setWaitCount','_localStorageService','floor','randomUUID','doc.mutation.rich-text-editing','updateCursorEvent','setTimeout','startRow','combineLatest','...','0\x200\x2016\x2016','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.','ranges','getCollabEntity$','bold\x2013px\x20Source\x20Han\x20Sans\x20CN','round','copyFileMeta','univer-online-status-icon','SHA1','black','column','_initStatusComponent','IBeforeCloseService','finalize','registerHTTPInterceptor','_cipher','[CollaborationSessionService]','EvpKDF','baseRev','_collaborationController','_transformUndoRedoStack','memberID','loadSheet','/object/','compute','_rescheduleHeartbeat','getActiveRange','LOCAL_CACHE_INTERVAL_KEY','_syncEditingCollabCursorService','_logService','ICollaborationSocketService','_unitID','_resendTimer','prototype','catch','IDLE','ReplaySubject','_getCtorByUniverType','_removeCollabCursors','_unitOnClients','0\x200\x2017\x2016','_socketMessageSubscription','_onConflict','_decreaseWaiting','title','COMPRESS_MUTATION_SEND','getDeserializedSheetBlock','enableLocalCache','_iKey','CollaborationEntity','shareReplay','createCollaborator','roomMembers','@univerjs-pro/collaboration','FAIL','socket\x20close','size','getUniverSheetInstance','evenodd','INVALID_ARGUMENT','_telemetryService','error','requestParams','_state$','getResourcesRequest','image/png','ITelemetryService','reduce','UNKNOWN_CODE','_ws','b64DecodeUnicode','[ConflictState]:\x20invalid\x20calling\x20to\x20`resend`.','ERROR_IMAGE','collaboration.single-unit.warning','_onRemoteRetry','UniverSheetsUi','_transitionLocked'];_0x4f95=function(){return _0x2b89d2;};return _0x4f95();}
1
+ function _0x57aa(_0x2fe638,_0x1951fa){const _0x1dddaf=_0x1ddd();return _0x57aa=function(_0x57aa4d,_0xde4677){_0x57aa4d=_0x57aa4d-0x1f3;let _0x4c9c51=_0x1dddaf[_0x57aa4d];return _0x4c9c51;},_0x57aa(_0x2fe638,_0x1951fa);}(function(_0x5a9857,_0x1b6b50){const _0x5e8e63=_0x57aa,_0x15d550=_0x5a9857();while(!![]){try{const _0x35abcd=parseInt(_0x5e8e63(0x338))/0x1+-parseInt(_0x5e8e63(0x648))/0x2+parseInt(_0x5e8e63(0x665))/0x3*(-parseInt(_0x5e8e63(0x5e9))/0x4)+parseInt(_0x5e8e63(0x3af))/0x5+-parseInt(_0x5e8e63(0x204))/0x6*(-parseInt(_0x5e8e63(0x66b))/0x7)+-parseInt(_0x5e8e63(0x39d))/0x8+parseInt(_0x5e8e63(0x5d4))/0x9;if(_0x35abcd===_0x1b6b50)break;else _0x15d550['push'](_0x15d550['shift']());}catch(_0x50533d){_0x15d550['push'](_0x15d550['shift']());}}}(_0x1ddd,0xb1aa4),function(_0x18335e,_0x15f13a){const _0x3df16d=_0x57aa;typeof exports=='object'&&typeof module<'u'?_0x15f13a(exports,require(_0x3df16d(0x364)),require(_0x3df16d(0x574)),require(_0x3df16d(0x264)),require(_0x3df16d(0x233)),require(_0x3df16d(0x413)),require(_0x3df16d(0x328)),require('@univerjs-pro/collaboration'),require(_0x3df16d(0x404)),require(_0x3df16d(0x694)),require(_0x3df16d(0x422)),require(_0x3df16d(0x68d)),require(_0x3df16d(0x258)),require(_0x3df16d(0x208)),require('@univerjs/engine-formula'),require('@univerjs/sheets-ui'),require(_0x3df16d(0x6a6)),require(_0x3df16d(0x359))):typeof define=='function'&&define[_0x3df16d(0x45f)]?define(['exports','@univerjs/core',_0x3df16d(0x574),_0x3df16d(0x264),_0x3df16d(0x233),_0x3df16d(0x413),_0x3df16d(0x328),_0x3df16d(0x438),'@univerjs/telemetry',_0x3df16d(0x694),'@univerjs/sheets','@univerjs/engine-render','@univerjs/docs',_0x3df16d(0x208),'@univerjs/engine-formula',_0x3df16d(0x327),_0x3df16d(0x6a6),_0x3df16d(0x359)],_0x15f13a):(_0x18335e=typeof globalThis<'u'?globalThis:_0x18335e||self,_0x15f13a(_0x18335e['UniverProCollaborationClient']={},_0x18335e[_0x3df16d(0x6bc)],_0x18335e['rxjs'],_0x18335e['rxjs'][_0x3df16d(0x5d5)],_0x18335e['UniverDesign'],_0x18335e[_0x3df16d(0x301)],_0x18335e['UniverUi'],_0x18335e[_0x3df16d(0x540)],_0x18335e[_0x3df16d(0x64b)],_0x18335e[_0x3df16d(0x31d)],_0x18335e['UniverSheets'],_0x18335e[_0x3df16d(0x367)],_0x18335e[_0x3df16d(0x2f3)],_0x18335e[_0x3df16d(0x225)],_0x18335e[_0x3df16d(0x22d)],_0x18335e['UniverSheetsUi'],_0x18335e[_0x3df16d(0x229)],_0x18335e['UniverRpc']));}(this,function(_0x1e9522,_0x121236,_0x2d6fea,_0x5443e6,_0xb84fce,_0x5bb5df,_0x3f9dc7,_0x254697,_0x3000a1,_0x72fb5c,_0x3eed56,_0x328527,_0x22ba07,_0x185cf6,_0x38294c,_0x55783b,_0x4bcf07,_0x26fac9){'use strict';const _0x3ff78d=_0x57aa;var _0x2752ab=Object['defineProperty'],_0xdf8b65=(_0x2000ff,_0x575c67,_0x51bb41)=>_0x575c67 in _0x2000ff?_0x2752ab(_0x2000ff,_0x575c67,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x51bb41}):_0x2000ff[_0x575c67]=_0x51bb41,_0x3661de=(_0x39c025,_0x2a7790,_0x1929f0)=>_0xdf8b65(_0x39c025,typeof _0x2a7790!=_0x3ff78d(0x669)?_0x2a7790+'':_0x2a7790,_0x1929f0);const _0x4509fd='SNAPSHOT_SERVER_URL_KEY',_0x11e377=_0x3ff78d(0x4e1),_0x5f505b=_0x3ff78d(0x602),_0xcdc001='SEND_CHANGESET_TIMEOUT',_0x5ae336=_0x3ff78d(0x518),_0x38d383=_0x3ff78d(0x46e),_0x300fa8='/universer-api/user/session-ticket',_0x1de31c=_0x3ff78d(0x390),_0x318c82=_0x3ff78d(0x42c),_0x2b6ba2=_0x3ff78d(0x54c),_0x90eef6=_0x3ff78d(0x2f8),_0x146725=_0x3ff78d(0x51d),_0x9ab118=_0x3ff78d(0x353),_0x1377db=_0x3ff78d(0x572),_0x5b77e2=_0x3ff78d(0x3f5);var _0x5cde6d=(_0x9733e0=>(_0x9733e0[_0x9733e0[_0x3ff78d(0x567)]=0x0]='UNDEFINED',_0x9733e0[_0x9733e0['OK']=0x1]='OK',_0x9733e0[_0x9733e0['INTERNAL_ERROR']=0x2]=_0x3ff78d(0x4c6),_0x9733e0[_0x9733e0[_0x3ff78d(0x487)]=0x3]=_0x3ff78d(0x487),_0x9733e0[_0x9733e0[_0x3ff78d(0x318)]=0x4]='NOT_FOUND',_0x9733e0[_0x9733e0[_0x3ff78d(0x3e7)]=0x5]=_0x3ff78d(0x3e7),_0x9733e0[_0x9733e0[_0x3ff78d(0x56f)]=0x6]='ALREADY_EXISTS',_0x9733e0[_0x9733e0['INVALID_ARGUMENT']=0x7]=_0x3ff78d(0x573),_0x9733e0[_0x9733e0[_0x3ff78d(0x5ee)]=0x8]='TOO_MANY_REQUESTS',_0x9733e0[_0x9733e0[_0x3ff78d(0x216)]=0x9]='COMPLETION_FINISHED',_0x9733e0[_0x9733e0[_0x3ff78d(0x223)]=0x1389]=_0x3ff78d(0x223),_0x9733e0[_0x9733e0[_0x3ff78d(0x5ea)]=0x1771]=_0x3ff78d(0x5ea),_0x9733e0[_0x9733e0['SNAPSHOT_HAS_BEEN_REMOVED']=0x1772]=_0x3ff78d(0x40b),_0x9733e0[_0x9733e0['ENSURE_SNAPSHOT_EXECUTION']=0x1773]='ENSURE_SNAPSHOT_EXECUTION',_0x9733e0[_0x9733e0[_0x3ff78d(0x621)]=0x1b59]=_0x3ff78d(0x621),_0x9733e0[_0x9733e0[_0x3ff78d(0x571)]=0x1b5a]='APPLY_NON_SEQUENTIAL_REVISION',_0x9733e0[_0x9733e0['APPLY_REVISION_CONFILICT']=0x1b5b]=_0x3ff78d(0x654),_0x9733e0[_0x9733e0[_0x3ff78d(0x29a)]=0x1b5c]=_0x3ff78d(0x29a),_0x9733e0[_0x9733e0[_0x3ff78d(0x3b1)]=0x1b5d]='APPLY_DUPLICATED',_0x9733e0[_0x9733e0['CONNECTOR_DATA_TOO_LARGE']=0x1f41]=_0x3ff78d(0x211),_0x9733e0[_0x9733e0[_0x3ff78d(0x36c)]=0x2329]=_0x3ff78d(0x36c),_0x9733e0[_0x9733e0[_0x3ff78d(0x3c9)]=0x232a]=_0x3ff78d(0x3c9),_0x9733e0[_0x9733e0[_0x3ff78d(0x546)]=0x232b]='LICENSE_IMPORT_SIZE_EXCEEDED',_0x9733e0[_0x9733e0[_0x3ff78d(0x6a8)]=0x232c]=_0x3ff78d(0x6a8),_0x9733e0[_0x9733e0['LICENSE_DISTRO_REJECTED']=0x232d]=_0x3ff78d(0x32b),_0x9733e0[_0x9733e0['YUUMI_UNABLE_LOAD_URL']=0x2711]=_0x3ff78d(0x3d8),_0x9733e0[_0x9733e0[_0x3ff78d(0x3d7)]=0x2712]=_0x3ff78d(0x3d7),_0x9733e0[_0x9733e0['YUUMI_RATE_OVER_LIMIT']=0x2713]='YUUMI_RATE_OVER_LIMIT',_0x9733e0[_0x9733e0[_0x3ff78d(0x270)]=0x2714]=_0x3ff78d(0x270),_0x9733e0[_0x9733e0[_0x3ff78d(0x26e)]=-0x1]=_0x3ff78d(0x26e),_0x9733e0))(_0x5cde6d||{}),_0x4651ca=(_0x510f48=>(_0x510f48[_0x510f48[_0x3ff78d(0x5a3)]=0x0]=_0x3ff78d(0x5a3),_0x510f48[_0x510f48[_0x3ff78d(0x54f)]=0x1]=_0x3ff78d(0x54f),_0x510f48[_0x510f48[_0x3ff78d(0x63c)]=0x2]=_0x3ff78d(0x63c),_0x510f48[_0x510f48[_0x3ff78d(0x5f3)]=0x3]=_0x3ff78d(0x5f3),_0x510f48[_0x510f48[_0x3ff78d(0x379)]=0x4]=_0x3ff78d(0x379),_0x510f48[_0x510f48[_0x3ff78d(0x26e)]=-0x1]='UNRECOGNIZED',_0x510f48))(_0x4651ca||{}),_0x4788da=(_0x1084e1=>(_0x1084e1[_0x1084e1[_0x3ff78d(0x54a)]=0x0]=_0x3ff78d(0x54a),_0x1084e1[_0x1084e1['HELLO']=0x1]=_0x3ff78d(0x4cd),_0x1084e1[_0x1084e1['JOIN']=0x2]=_0x3ff78d(0x5ca),_0x1084e1[_0x1084e1[_0x3ff78d(0x5e7)]=0x3]=_0x3ff78d(0x5e7),_0x1084e1[_0x1084e1['INGEST']=0x4]=_0x3ff78d(0x1f8),_0x1084e1[_0x1084e1[_0x3ff78d(0x407)]=0x5]='HEARTBEAT',_0x1084e1[_0x1084e1[_0x3ff78d(0x5cc)]=0x6]=_0x3ff78d(0x5cc),_0x1084e1[_0x1084e1[_0x3ff78d(0x26e)]=-0x1]=_0x3ff78d(0x26e),_0x1084e1))(_0x4788da||{}),_0x4160f0=(_0x5168af=>(_0x5168af[_0x5168af[_0x3ff78d(0x560)]=0x0]='UNKNOWN_CODE',_0x5168af[_0x5168af['OK']=0x1]='OK',_0x5168af[_0x5168af[_0x3ff78d(0x30e)]=0x2]='FAIL',_0x5168af[_0x5168af[_0x3ff78d(0x51c)]=0x3e9]='JOIN_ROOM_FULL',_0x5168af[_0x5168af['JOIN_ROOM_NOT_ALLOWED']=0x3ea]='JOIN_ROOM_NOT_ALLOWED',_0x5168af[_0x5168af['UNRECOGNIZED']=-0x1]=_0x3ff78d(0x26e),_0x5168af))(_0x4160f0||{}),_0x116a13=(_0x19139b=>(_0x19139b[_0x19139b['Undefined']=0x0]=_0x3ff78d(0x3f7),_0x19139b[_0x19139b[_0x3ff78d(0x2ce)]=0x1]=_0x3ff78d(0x2ce),_0x19139b[_0x19139b[_0x3ff78d(0x4a3)]=0x2]='HttpExport',_0x19139b[_0x19139b['UnitEmbedded']=0x3]=_0x3ff78d(0x309),_0x19139b[_0x19139b[_0x3ff78d(0x492)]=0x4]=_0x3ff78d(0x492),_0x19139b[_0x19139b['UNRECOGNIZED']=-0x1]=_0x3ff78d(0x26e),_0x19139b))(_0x116a13||{});const _0x304b09='collaboration-client.config',_0x50b2a5={};function _0x489c1a(_0x36845b){const _0x4b40af=_0x3ff78d;var _0x5bbe94,_0x464d08,_0x47fb5e,_0x1cd3ff,_0x11dbb5;const _0x5cb237=_0x36845b[_0x4b40af(0x509)],_0x3a471b=JSON[_0x4b40af(0x6b6)](_0x5cb237);switch(_0x3a471b[_0x4b40af(0x489)]){case _0x4788da[_0x4b40af(0x407)]:case _0x4788da[_0x4b40af(0x4cd)]:{const _0xf59e4f=_0x3a471b[_0x4b40af(0x637)];return{..._0x3a471b,'data':_0xf59e4f,'cmd':_0x3a471b['cmd']};}case _0x4788da[_0x4b40af(0x5ca)]:{const _0xfa48b9=_0x3a471b[_0x4b40af(0x65d)];return{..._0x3a471b,'data':_0xfa48b9,'cmd':_0x3a471b[_0x4b40af(0x489)]};}case _0x4788da[_0x4b40af(0x5cc)]:{const _0x3b1d96=_0x3a471b[_0x4b40af(0x43c)];switch(_0x3b1d96[_0x4b40af(0x502)]){case _0x254697[_0x4b40af(0x332)]['PERMISSION_REJ']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':(_0x5bbe94=_0x3b1d96[_0x4b40af(0x529)])==null?void 0x0:_0x5bbe94['cs']},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697['CollaborationEvent'][_0x4b40af(0x508)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':(_0x464d08=_0x3b1d96[_0x4b40af(0x565)])==null?void 0x0:_0x464d08['cs']},'cmd':_0x3a471b['cmd']};case _0x254697['CollaborationEvent']['NEW_CHANGESETS']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':(_0x47fb5e=_0x3b1d96[_0x4b40af(0x6ad)])==null?void 0x0:_0x47fb5e['cs']},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x2ff)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':(_0x1cd3ff=_0x3b1d96[_0x4b40af(0x52b)])==null?void 0x0:_0x1cd3ff['cs']},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)]['CHANGESET_SHOULD_RETRY']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':(_0x11dbb5=_0x3b1d96[_0x4b40af(0x324)])==null?void 0x0:_0x11dbb5['cs']},'cmd':_0x3a471b['cmd']};case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x446)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96[_0x4b40af(0x470)]},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)]['USERS_ENTER']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96['joinEvent']},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x36b)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96[_0x4b40af(0x4d0)]},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x448)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96['liveShareNewHost']},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x368)]:case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x4f1)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96[_0x4b40af(0x2dd)]},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)][_0x4b40af(0x58b)]:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96['liveShareNewHost']},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697[_0x4b40af(0x332)]['MSG_FOR_ERROR']:return{..._0x3a471b,'data':_0x3b1d96,'cmd':_0x3a471b['cmd']};case _0x254697[_0x4b40af(0x332)]['COMMENT_UPDATE']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96[_0x4b40af(0x377)]},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697['CollaborationEvent']['UPDATE_PERMISSION_OBJ']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96[_0x4b40af(0x466)]},'cmd':_0x3a471b[_0x4b40af(0x489)]};case _0x254697['CollaborationEvent']['SHOULD_CLOSE_CONN']:return{..._0x3a471b,'data':{..._0x3b1d96,'data':_0x3b1d96[_0x4b40af(0x6c7)]},'cmd':_0x3a471b[_0x4b40af(0x489)]};default:return _0x3a471b;}}default:return _0x3a471b;}}function _0x18b5ce(_0x79356e){const _0x2c96fc=_0x3ff78d;switch(_0x79356e[_0x2c96fc(0x489)]){case _0x4788da[_0x2c96fc(0x407)]:case _0x4788da[_0x2c96fc(0x4cd)]:return JSON['stringify']({'cmd':_0x79356e[_0x2c96fc(0x489)],'routeKey':_0x79356e[_0x2c96fc(0x5b8)]});case _0x4788da[_0x2c96fc(0x1f8)]:{let _0x2acde9;switch(_0x79356e[_0x2c96fc(0x509)]['eventID']){case _0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x446)]:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x446)],'updateCursorEvent':_0x79356e[_0x2c96fc(0x509)][_0x2c96fc(0x509)]};break;}case _0x254697[_0x2c96fc(0x332)]['USERS_LEAVE']:{_0x2acde9={'eventID':_0x254697['CollaborationEvent'][_0x2c96fc(0x36b)],'leaveEvent':_0x79356e[_0x2c96fc(0x509)][_0x2c96fc(0x509)]};break;}case _0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x601)]:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x601)],'joinEvent':_0x79356e[_0x2c96fc(0x509)][_0x2c96fc(0x509)]};break;}case _0x254697['CollaborationEvent']['LIVESHARE_NEW_HOST']:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x448)],'liveShareNewHost':_0x79356e[_0x2c96fc(0x509)][_0x2c96fc(0x509)]};break;}case _0x254697[_0x2c96fc(0x332)]['LIVESHARE_OPERATION']:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)]['LIVESHARE_OPERATION'],'liveShareOperation':_0x79356e[_0x2c96fc(0x509)]['data']};break;}case _0x254697['CollaborationEvent'][_0x2c96fc(0x58b)]:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x58b)],'liveShareTerminate':_0x79356e['data']['data']};break;}case _0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x3c2)]:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)]['LIVESHARE_REQUEST_HOST'],'liveShareRequestHost':_0x79356e[_0x2c96fc(0x509)][_0x2c96fc(0x509)]};break;}case _0x254697[_0x2c96fc(0x332)]['LIVESHARE_FETCH_OPERATIONS']:{_0x2acde9={'eventID':_0x254697[_0x2c96fc(0x332)][_0x2c96fc(0x368)]};break;}default:_0x2acde9={'eventID':_0x79356e[_0x2c96fc(0x509)][_0x2c96fc(0x502)]};}return JSON['stringify']({'cmd':_0x79356e[_0x2c96fc(0x489)],'routeKey':_0x79356e[_0x2c96fc(0x5b8)],'collaMsg':_0x2acde9});}case _0x4788da[_0x2c96fc(0x5ca)]:return JSON['stringify']({'cmd':_0x79356e[_0x2c96fc(0x489)],'routeKey':_0x79356e[_0x2c96fc(0x5b8)],'joinReq':_0x79356e['data']});case _0x4788da[_0x2c96fc(0x5e7)]:return JSON[_0x2c96fc(0x411)]({'cmd':_0x79356e['cmd'],'routeKey':_0x79356e[_0x2c96fc(0x5b8)],'leaveReq':_0x79356e[_0x2c96fc(0x509)]});default:throw new Error(_0x2c96fc(0x535));}}var _0x39cc33=Object[_0x3ff78d(0x675)],_0x4c6a87=Object[_0x3ff78d(0x570)],_0x10e4bd=(_0x35cb69,_0x1edfb3,_0x21c10f,_0x280b7b)=>{const _0x5aa90d=_0x3ff78d;for(var _0x1d620f=_0x280b7b>0x1?void 0x0:_0x280b7b?_0x4c6a87(_0x1edfb3,_0x21c10f):_0x1edfb3,_0x3877fb=_0x35cb69[_0x5aa90d(0x453)]-0x1,_0x6b36dc;_0x3877fb>=0x0;_0x3877fb--)(_0x6b36dc=_0x35cb69[_0x3877fb])&&(_0x1d620f=(_0x280b7b?_0x6b36dc(_0x1edfb3,_0x21c10f,_0x1d620f):_0x6b36dc(_0x1d620f))||_0x1d620f);return _0x280b7b&&_0x1d620f&&_0x39cc33(_0x1edfb3,_0x21c10f,_0x1d620f),_0x1d620f;},_0x37f54f=(_0x14f378,_0x35ff1e)=>(_0x918e50,_0x50a013)=>_0x35ff1e(_0x918e50,_0x50a013,_0x14f378);const _0x2880a6=_0x121236[_0x3ff78d(0x5f4)]('univer-pro.collaboration-client-socket-service');function _0x5094ec(_0x2266db,_0xe25f31,_0x65337b){const _0x7a267=_0x3ff78d;return _0x2266db+'/'+_0xe25f31+_0x7a267(0x5df)+_0x65337b+_0x7a267(0x5da);}_0x1e9522['CollaborationSocketService']=class extends _0x121236[_0x3ff78d(0x3c0)]{constructor(_0xcece36,_0x217180,_0x2590bf,_0x20a005,_0x2b2fbe){const _0xabe665=_0x3ff78d;super(),this['_http']=_0xcece36,this[_0xabe665(0x4c5)]=_0x217180,this[_0xabe665(0x4da)]=_0x2590bf,this[_0xabe665(0x659)]=_0x20a005,this[_0xabe665(0x38f)]=_0x2b2fbe;}[_0x3ff78d(0x2fd)](_0x4b4c9e){const _0x2c64dd=_0x3ff78d,_0x37117c=this[_0x2c64dd(0x4c5)]['createSocket'](_0x4b4c9e);if(!_0x37117c)throw new Error('[CollaborationSocketService]:\x20failed\x20to\x20create\x20socket!');const _0x4e7e12=new _0x121236[(_0x2c64dd(0x64e))](),_0xa12b55=new _0x2d6fea[(_0x2c64dd(0x6c2))]();_0x4e7e12[_0x2c64dd(0x623)](_0x37117c[_0x2c64dd(0x638)][_0x2c64dd(0x4e0)](_0x4b42fc=>_0xa12b55[_0x2c64dd(0x5f8)](_0x4b42fc))),_0x4e7e12['add'](_0x121236[_0x2c64dd(0x56c)](()=>_0xa12b55[_0x2c64dd(0x203)]()));const _0x532d7f=new _0x2d6fea[(_0x2c64dd(0x6c2))]();_0x4e7e12[_0x2c64dd(0x623)](_0x37117c[_0x2c64dd(0x583)]['subscribe'](_0x36d285=>_0x532d7f['next'](_0x36d285))),_0x4e7e12[_0x2c64dd(0x623)](_0x121236[_0x2c64dd(0x56c)](()=>_0x532d7f[_0x2c64dd(0x203)]()));const _0x1850ba=new _0x2d6fea[(_0x2c64dd(0x6c2))]();_0x4e7e12[_0x2c64dd(0x623)](_0x37117c[_0x2c64dd(0x49f)][_0x2c64dd(0x4e0)](_0x3c8417=>{const _0x173edd=_0x2c64dd,_0x59643b=_0x489c1a(_0x3c8417);_0x1850ba[_0x173edd(0x5f8)](_0x59643b);})),_0x4e7e12[_0x2c64dd(0x623)](_0x121236[_0x2c64dd(0x56c)](()=>_0x1850ba[_0x2c64dd(0x203)]()));let _0x46d16f;const _0x253e18=()=>{const _0x4b8808=_0x2c64dd;_0x532d7f[_0x4b8808(0x5f8)](new Event(_0x4b8808(0x480))),_0xa12b55[_0x4b8808(0x5f8)](new CloseEvent(_0x4b8808(0x480))),_0x46d16f[_0x4b8808(0x24a)]();};return _0x46d16f={'memberID':'','close$':_0xa12b55[_0x2c64dd(0x37c)](),'error$':_0x532d7f[_0x2c64dd(0x37c)](),'open$':_0x37117c['open$'],'message$':_0x1850ba[_0x2c64dd(0x37c)](),'send':_0x439dce=>{const _0x3d05f2=_0x2c64dd;if(_0x439dce['cmd']===_0x4788da['INGEST']){if(_0x439dce[_0x3d05f2(0x509)]['eventID']===_0x254697['CollaborationEvent'][_0x3d05f2(0x2e3)]){this[_0x3d05f2(0x2bc)](_0x46d16f,_0x439dce[_0x3d05f2(0x509)])[_0x3d05f2(0x50b)](_0x409c10=>{const _0x2d96aa=_0x3d05f2;this[_0x2d96aa(0x659)][_0x2d96aa(0x421)](_0x409c10),_0x253e18();});return;}if(_0x439dce[_0x3d05f2(0x509)][_0x3d05f2(0x502)]===_0x254697[_0x3d05f2(0x332)][_0x3d05f2(0x54d)]){const _0x27f493=_0x439dce[_0x3d05f2(0x509)];this[_0x3d05f2(0x341)](_0x27f493)[_0x3d05f2(0x437)](_0x48ade2=>{const _0x7d9757=_0x3d05f2;_0x1850ba[_0x7d9757(0x5f8)]({'cmd':_0x4788da['RECV'],'code':_0x4160f0['OK'],'routeKey':_0x27f493[_0x7d9757(0x509)][_0x7d9757(0x4d1)],'routeType':'','data':{'eventID':_0x254697[_0x7d9757(0x332)][_0x7d9757(0x652)],'data':{'changesets':_0x48ade2}}});})[_0x3d05f2(0x50b)](_0x502919=>{const _0x38471c=_0x3d05f2;this[_0x38471c(0x659)][_0x38471c(0x421)](_0x502919),_0x253e18();});return;}}_0x37117c[_0x3d05f2(0x65f)](_0x18b5ce(_0x439dce));},'close':()=>{const _0x596d8f=_0x2c64dd;_0x37117c[_0x596d8f(0x24a)](),_0x4e7e12[_0x596d8f(0x2d3)]();}},_0x46d16f;}async[_0x3ff78d(0x2bc)](_0x5dd5f1,_0x13638b){const _0x3c836a=_0x3ff78d;var _0x22e35a,_0x3b0e90;const {unitType:_0x1802fd,unitID:_0x53ab7a,changeset:_0x6818bd}=_0x13638b[_0x3c836a(0x509)],_0x642db4={'unitID':_0x53ab7a,'memberID':_0x5dd5f1[_0x3c836a(0x217)],'type':_0x1802fd,'changeset':_0x254697[_0x3c836a(0x5b4)](_0x6818bd)},_0x44474c=this[_0x3c836a(0x4da)][_0x3c836a(0x606)](_0x146725),_0x244990=this[_0x3c836a(0x4da)]['getConfig'](_0x304b09),_0x438557=_0x5094ec((_0x3b0e90=(_0x22e35a=_0x244990==null?void 0x0:_0x244990['collabSubmitChangesetUrl'])!=null?_0x22e35a:_0x44474c)!=null?_0x3b0e90:_0x9ab118,_0x1802fd,_0x53ab7a);try{await this[_0x3c836a(0x4a0)][_0x3c836a(0x4a2)](_0x438557,{'body':_0x642db4});}catch(_0x1e1def){throw this[_0x3c836a(0x659)]['error']('[CollaborationSession]',_0x3c836a(0x674)),_0x1e1def;}}async['_fetchMissChangesets'](_0x2d2be5){const _0x5c4a5e=_0x3ff78d,{unitID:_0x526c83,from:_0xf7d66c,to:_0x177a71,unitType:_0x4d60d9}=_0x2d2be5['data'];return(await this['_snapshotServerService'][_0x5c4a5e(0x650)]({'metadata':void 0x0},{'unitID':_0x526c83,'type':_0x4d60d9,'from':_0xf7d66c,'to':_0x177a71}))['changesets'];}},_0x1e9522[_0x3ff78d(0x3c4)]=_0x10e4bd([_0x37f54f(0x0,_0x121236['Inject'](_0x5bb5df[_0x3ff78d(0x228)])),_0x37f54f(0x1,_0x121236['Inject'](_0x5bb5df['WebSocketService'])),_0x37f54f(0x2,_0x121236[_0x3ff78d(0x3f8)]),_0x37f54f(0x3,_0x121236[_0x3ff78d(0x3fa)]),_0x37f54f(0x4,_0x254697['ISnapshotServerService'])],_0x1e9522['CollaborationSocketService']);const _0x48281b=_0x3ff78d(0x40f);function _0x472c6d(_0x4d43da){return JSON['stringify'](_0x4d43da)['length'];}class _0xb9ed00{constructor(){const _0x1696db=_0x3ff78d;_0x3661de(this,'_commentUpdate$',new _0x2d6fea['Subject']()),_0x3661de(this,_0x1696db(0x506),this[_0x1696db(0x46c)]['asObservable']());}[_0x3ff78d(0x591)](_0xf7ba09){this['_commentUpdate$']['next'](_0xf7ba09);}}var _0x441b01=Object[_0x3ff78d(0x675)],_0x4ca966=Object['getOwnPropertyDescriptor'],_0x297237=(_0x35fb18,_0x4b4bcd,_0x58766c,_0x1c64e3)=>{const _0x1853a8=_0x3ff78d;for(var _0x4d1fe9=_0x1c64e3>0x1?void 0x0:_0x1c64e3?_0x4ca966(_0x4b4bcd,_0x58766c):_0x4b4bcd,_0x542eea=_0x35fb18[_0x1853a8(0x453)]-0x1,_0x55f0ad;_0x542eea>=0x0;_0x542eea--)(_0x55f0ad=_0x35fb18[_0x542eea])&&(_0x4d1fe9=(_0x1c64e3?_0x55f0ad(_0x4b4bcd,_0x58766c,_0x4d1fe9):_0x55f0ad(_0x4d1fe9))||_0x4d1fe9);return _0x1c64e3&&_0x4d1fe9&&_0x441b01(_0x4b4bcd,_0x58766c,_0x4d1fe9),_0x4d1fe9;},_0x4a3b46=(_0x2e7643,_0x4148e7)=>(_0x19b4f9,_0x3262d8)=>_0x4148e7(_0x19b4f9,_0x3262d8,_0x2e7643);_0x1e9522[_0x3ff78d(0x21c)]=class extends _0x121236[_0x3ff78d(0x3c0)]{constructor(_0x3a769f,_0x266811){const _0x39f626=_0x3ff78d;super(),_0x3661de(this,_0x39f626(0x218),new Map()),(this[_0x39f626(0x22b)]=_0x3a769f,this[_0x39f626(0x26d)]=_0x266811,this[_0x39f626(0x5e2)](_0x121236[_0x39f626(0x56c)](_0x2d6fea[_0x39f626(0x5fe)](this[_0x39f626(0x22b)]['getTypeOfUnitDisposed$'](_0x121236[_0x39f626(0x5a5)][_0x39f626(0x63c)])[_0x39f626(0x252)](_0x5443e6[_0x39f626(0x43e)](_0x270b5f=>_0x270b5f[_0x39f626(0x62a)]())),this[_0x39f626(0x22b)][_0x39f626(0x396)](_0x121236[_0x39f626(0x5a5)][_0x39f626(0x54f)])[_0x39f626(0x252)](_0x5443e6[_0x39f626(0x43e)](_0x538185=>_0x538185['getUnitId']())),this[_0x39f626(0x22b)][_0x39f626(0x396)](_0x121236['UniverInstanceType'][_0x39f626(0x5f3)])[_0x39f626(0x252)](_0x5443e6['map'](_0x1ab419=>_0x1ab419[_0x39f626(0x62a)]())))[_0x39f626(0x4e0)](_0x147392=>this[_0x39f626(0x625)](_0x147392)))));}[_0x3ff78d(0x23e)](_0x224bda){this['_userManagerService']['setCurrentUser'](_0x224bda);}[_0x3ff78d(0x2d9)](){const _0x31d476=_0x3ff78d;return this['_userManagerService'][_0x31d476(0x2d9)]();}['updateMember'](_0x5b1a96,_0x538381){const _0x4a5bce=_0x3ff78d;let _0x3f6ee6=this[_0x4a5bce(0x218)][_0x4a5bce(0x295)](_0x5b1a96);_0x3f6ee6||(_0x3f6ee6=new _0x4f6d74(),this[_0x4a5bce(0x218)][_0x4a5bce(0x30d)](_0x5b1a96,_0x3f6ee6)),_0x3f6ee6[_0x4a5bce(0x6ba)](_0x538381);}[_0x3ff78d(0x406)](_0x1dad1d,_0x462e18){const _0x38d9eb=_0x3ff78d,_0x6736a3=this['_roomMembers'][_0x38d9eb(0x295)](_0x1dad1d);_0x6736a3&&_0x6736a3['removeMember'](_0x462e18);}[_0x3ff78d(0x2d7)](_0x2693d1){const _0x5073d2=_0x3ff78d;return this['_roomMembers'][_0x5073d2(0x295)](_0x2693d1);}[_0x3ff78d(0x2fb)](_0x54536b,_0x2e967c){const _0x1bc955=_0x3ff78d,_0x211255=this[_0x1bc955(0x218)][_0x1bc955(0x295)](_0x54536b);if(_0x211255)return _0x211255['getMember'](_0x2e967c);}[_0x3ff78d(0x625)](_0x28c9ca){const _0x8bc2d8=_0x3ff78d,_0x27e326=this[_0x8bc2d8(0x218)]['get'](_0x28c9ca);_0x27e326&&(_0x27e326['dispose'](),this[_0x8bc2d8(0x218)][_0x8bc2d8(0x52a)](_0x28c9ca));}[_0x3ff78d(0x2d3)](){const _0x2e8b86=_0x3ff78d;this[_0x2e8b86(0x218)][_0x2e8b86(0x6c3)](_0x1c5ab3=>_0x1c5ab3[_0x2e8b86(0x2d3)]()),this[_0x2e8b86(0x218)]['clear']();}},_0x1e9522['MemberService']=_0x297237([_0x4a3b46(0x0,_0x121236[_0x3ff78d(0x289)]),_0x4a3b46(0x1,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x45e)]))],_0x1e9522['MemberService']);class _0x4f6d74 extends _0x121236[_0x3ff78d(0x3c0)]{constructor(){const _0x1ba6f2=_0x3ff78d;super(...arguments),_0x3661de(this,_0x1ba6f2(0x30f),new Map());}[_0x3ff78d(0x2d3)](){const _0x26fde4=_0x3ff78d;this[_0x26fde4(0x30f)][_0x26fde4(0x1fd)]();}[_0x3ff78d(0x6ba)](_0x1fbf98){const _0x58555e=_0x3ff78d;this[_0x58555e(0x30f)][_0x58555e(0x30d)](_0x1fbf98['memberID'],_0x1fbf98);}[_0x3ff78d(0x406)](_0x55e691){const _0x117803=_0x3ff78d;this[_0x117803(0x30f)]['delete'](_0x55e691);}[_0x3ff78d(0x2fb)](_0x16cb13){const _0x1ed7f8=_0x3ff78d;return this['_members'][_0x1ed7f8(0x295)](_0x16cb13);}[_0x3ff78d(0x31e)](){const _0x14fe27=_0x3ff78d;return Array[_0x14fe27(0x5ef)](this[_0x14fe27(0x30f)][_0x14fe27(0x56d)]());}}var _0x2e3337=Object['defineProperty'],_0x121abb=Object[_0x3ff78d(0x570)],_0x8a20dc=(_0x5e7fef,_0x36bc13,_0x523a33,_0x2d883d)=>{const _0x4a8f80=_0x3ff78d;for(var _0x263cdc=_0x2d883d>0x1?void 0x0:_0x2d883d?_0x121abb(_0x36bc13,_0x523a33):_0x36bc13,_0x2dd6f6=_0x5e7fef[_0x4a8f80(0x453)]-0x1,_0x21f1bd;_0x2dd6f6>=0x0;_0x2dd6f6--)(_0x21f1bd=_0x5e7fef[_0x2dd6f6])&&(_0x263cdc=(_0x2d883d?_0x21f1bd(_0x36bc13,_0x523a33,_0x263cdc):_0x21f1bd(_0x263cdc))||_0x263cdc);return _0x2d883d&&_0x263cdc&&_0x2e3337(_0x36bc13,_0x523a33,_0x263cdc),_0x263cdc;},_0x12f600=(_0x2f2b23,_0x43d741)=>(_0x22bc34,_0x36d704)=>_0x43d741(_0x22bc34,_0x36d704,_0x2f2b23),_0x2ac566=(_0x1574cf=>(_0x1574cf[_0x1574cf[_0x3ff78d(0x39f)]=0x0]=_0x3ff78d(0x39f),_0x1574cf[_0x1574cf['JOINING']=0x1]=_0x3ff78d(0x418),_0x1574cf[_0x1574cf[_0x3ff78d(0x275)]=0x2]=_0x3ff78d(0x275),_0x1574cf[_0x1574cf[_0x3ff78d(0x416)]=0x3]=_0x3ff78d(0x416),_0x1574cf))(_0x2ac566||{});_0x1e9522[_0x3ff78d(0x55f)]=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x4b21f3,_0x23ad6e,_0x9d64cb,_0x1bb20d,_0x2ad92c,_0x2635eb,_0x29e412,_0x5a33f7,_0x44164c,_0x48e674){const _0x6e625c=_0x3ff78d;super(),_0x3661de(this,_0x6e625c(0x2e4),new _0x2d6fea[(_0x6e625c(0x3d6))](0x0)),_0x3661de(this,'sessionStatus$',this[_0x6e625c(0x2e4)][_0x6e625c(0x37c)]()),_0x3661de(this,_0x6e625c(0x3e6),new _0x2d6fea['Subject']()),_0x3661de(this,'event$',this[_0x6e625c(0x3e6)][_0x6e625c(0x37c)]()),_0x3661de(this,_0x6e625c(0x313)),_0x3661de(this,'_socketMessageSubscription'),_0x3661de(this,_0x6e625c(0x696)),_0x3661de(this,_0x6e625c(0x680),!0x1),_0x3661de(this,_0x6e625c(0x537),null),(this[_0x6e625c(0x302)]=_0x4b21f3,this[_0x6e625c(0x659)]=_0x9d64cb,this[_0x6e625c(0x474)]=_0x1bb20d,this[_0x6e625c(0x557)]=_0x2ad92c,this['_configService']=_0x2635eb,this[_0x6e625c(0x244)]=_0x29e412,this['_memberService']=_0x5a33f7,this[_0x6e625c(0x50a)]=_0x44164c,this[_0x6e625c(0x543)]=_0x48e674,this[_0x6e625c(0x680)]=!!this['_telemetryService'],_0x23ad6e[_0x6e625c(0x252)](_0x2d6fea[_0x6e625c(0x3c1)](this['dispose$']))[_0x6e625c(0x4e0)](_0x3f5ce5=>{const _0x3c026e=_0x6e625c;var _0x20bb63;typeof _0x3f5ce5>'u'||(this[_0x3c026e(0x313)]=_0x3f5ce5,_0x3f5ce5?(this[_0x3c026e(0x2e0)](_0x3f5ce5),this['_socketMessageSubscription']=_0x3f5ce5[_0x3c026e(0x49f)][_0x3c026e(0x4e0)](_0x1fc915=>{const _0x6035fa=_0x3c026e;_0x1fc915[_0x6035fa(0x5b8)]===this[_0x6035fa(0x302)]&&this[_0x6035fa(0x59a)](_0x1fc915);})):(this[_0x3c026e(0x47d)](),this[_0x3c026e(0x2e4)][_0x3c026e(0x5f8)](0x2),(_0x20bb63=this[_0x3c026e(0x521)])==null||_0x20bb63[_0x3c026e(0x494)](),this['_socketMessageSubscription']=null));}),this['disposeWithMe'](this[_0x6e625c(0x474)][_0x6e625c(0x52f)](()=>{const _0x3056fd=_0x6e625c;var _0x464241;(_0x464241=this['_socket'])==null||_0x464241[_0x3056fd(0x65f)]({'cmd':_0x4788da[_0x3056fd(0x5e7)],'data':{'roomID':this[_0x3056fd(0x302)]}});})));}get['sessionStatus'](){const _0x25e123=_0x3ff78d;return this[_0x25e123(0x2e4)][_0x25e123(0x67f)]();}['getMemberID'](){const _0x406169=_0x3ff78d;var _0x3ab42f,_0x436e6c;return(_0x436e6c=(_0x3ab42f=this[_0x406169(0x313)])==null?void 0x0:_0x3ab42f[_0x406169(0x217)])!=null?_0x436e6c:null;}[_0x3ff78d(0x2d3)](){const _0x304ff9=_0x3ff78d;super['dispose'](),this['dispose$']['next'](),this['dispose$'][_0x304ff9(0x203)]();}[_0x3ff78d(0x24a)](){const _0x5a2bed=_0x3ff78d;var _0xf85e81,_0x122697;this['_throwTelemetryCollaborationNewChangeset'](),(_0xf85e81=this[_0x5a2bed(0x313)])==null||_0xf85e81[_0x5a2bed(0x65f)]({'cmd':_0x4788da['LEAVE'],'data':{'roomID':this['_unitID']}}),(_0x122697=this[_0x5a2bed(0x313)])==null||_0x122697[_0x5a2bed(0x24a)](),this['_event$']['complete'](),this[_0x5a2bed(0x2e4)]['complete'](),this[_0x5a2bed(0x2d3)]();}[_0x3ff78d(0x59a)](_0x8c915e){const _0x585c1e=_0x3ff78d;_0x8c915e['cmd']===_0x4788da[_0x585c1e(0x5ca)]?this['_onJoinRoomEvent'](_0x8c915e):_0x8c915e[_0x585c1e(0x489)]===_0x4788da['RECV']&&this['_onRecvEvent'](_0x8c915e);}[_0x3ff78d(0x2e0)](_0x31ca18){const _0x1e84a8=_0x3ff78d;this[_0x1e84a8(0x2e4)]['next'](0x1),_0x31ca18[_0x1e84a8(0x65f)]({'cmd':_0x4788da['JOIN'],'routeKey':this[_0x1e84a8(0x302)],'routeType':'','data':{'rooms':[{'roomID':this['_unitID']}]}});}[_0x3ff78d(0x6b2)](_0x2b8aec){const _0x4e4ec3=_0x3ff78d;var _0x2ae72c;if(_0x2b8aec[_0x4e4ec3(0x3e5)]===_0x4160f0[_0x4e4ec3(0x30e)]){this[_0x4e4ec3(0x557)][_0x4e4ec3(0x35d)]({'type':_0xb84fce[_0x4e4ec3(0x690)][_0x4e4ec3(0x308)],'content':this[_0x4e4ec3(0x244)]['t'](_0x4e4ec3(0x4d6))}),this['_sessionStatus$']['next'](0x2);return;}this[_0x4e4ec3(0x2e4)][_0x4e4ec3(0x5f8)](0x3);const _0xe71d04=(_0x2ae72c=_0x2b8aec['data'][_0x4e4ec3(0x486)][this[_0x4e4ec3(0x302)]])==null?void 0x0:_0x2ae72c[_0x4e4ec3(0x3de)];_0xe71d04&&_0xe71d04[_0x4e4ec3(0x6c3)](_0x346fae=>this[_0x4e4ec3(0x257)][_0x4e4ec3(0x6ba)](this[_0x4e4ec3(0x302)],_0x346fae));}[_0x3ff78d(0x360)](_0x569d79){const _0x1ee69e=_0x3ff78d;try{const _0xc1c9be=_0x569d79['data'];switch(_0xc1c9be[_0x1ee69e(0x502)]){case _0x254697['CollaborationEvent'][_0x1ee69e(0x601)]:this[_0x1ee69e(0x592)](_0xc1c9be),this[_0x1ee69e(0x3e6)][_0x1ee69e(0x5f8)](_0xc1c9be);break;case _0x254697['CollaborationEvent'][_0x1ee69e(0x36b)]:this[_0x1ee69e(0x5bf)](_0xc1c9be),this[_0x1ee69e(0x3e6)][_0x1ee69e(0x5f8)](_0xc1c9be);break;case _0x254697['CollaborationEvent'][_0x1ee69e(0x508)]:case _0x254697[_0x1ee69e(0x332)][_0x1ee69e(0x207)]:this[_0x1ee69e(0x51a)](),this[_0x1ee69e(0x54e)](),this[_0x1ee69e(0x3e6)][_0x1ee69e(0x5f8)](_0xc1c9be);break;case _0x254697['CollaborationEvent'][_0x1ee69e(0x498)]:this[_0x1ee69e(0x659)][_0x1ee69e(0x421)]('save\x20fail\x20reason\x20is\x20'+JSON[_0x1ee69e(0x411)](_0xc1c9be)),this[_0x1ee69e(0x3e6)][_0x1ee69e(0x5f8)](_0xc1c9be);break;case _0x254697[_0x1ee69e(0x332)][_0x1ee69e(0x461)]:this[_0x1ee69e(0x50a)][_0x1ee69e(0x591)](_0xc1c9be[_0x1ee69e(0x509)]),this['_event$'][_0x1ee69e(0x5f8)](_0xc1c9be);break;default:this[_0x1ee69e(0x3e6)][_0x1ee69e(0x5f8)](_0xc1c9be);}}catch(_0x2ba9a2){this[_0x1ee69e(0x659)][_0x1ee69e(0x421)](_0x2ba9a2,_0x569d79);}}[_0x3ff78d(0x592)](_0x320c77){const _0x227220=_0x3ff78d;this[_0x227220(0x257)][_0x227220(0x6ba)](this[_0x227220(0x302)],_0x320c77['data']);}[_0x3ff78d(0x5bf)](_0x40d72b){const _0x1b42f5=_0x3ff78d;this[_0x1b42f5(0x257)][_0x1b42f5(0x406)](this[_0x1b42f5(0x302)],_0x40d72b[_0x1b42f5(0x509)][_0x1b42f5(0x217)]);}async[_0x3ff78d(0x65f)](_0x4f346c,_0x3c4cac){const _0x2e17a4=_0x3ff78d;if(this[_0x2e17a4(0x587)]!==0x3||!this[_0x2e17a4(0x313)])throw new Error('[CollaborationSession]:\x20should\x20not\x20send\x20message\x20when\x20the\x20session\x20is\x20offline!');try{_0x4f346c['eventID']===_0x254697[_0x2e17a4(0x332)][_0x2e17a4(0x2e3)]&&(this[_0x2e17a4(0x22c)](),this[_0x2e17a4(0x513)](_0x4f346c)),this[_0x2e17a4(0x313)][_0x2e17a4(0x65f)]({'cmd':_0x4788da[_0x2e17a4(0x1f8)],'routeKey':_0x3c4cac,'routeType':'','data':_0x4f346c});}catch(_0x52ba9d){this[_0x2e17a4(0x659)]['error'](_0x52ba9d);}}[_0x3ff78d(0x22c)](){const _0x491be9=_0x3ff78d;var _0x5cb80e;this[_0x491be9(0x696)]=window[_0x491be9(0x3bd)](()=>{const _0x15c0e5=_0x491be9;this[_0x15c0e5(0x696)]=null,this[_0x15c0e5(0x557)][_0x15c0e5(0x35d)]({'type':_0xb84fce[_0x15c0e5(0x690)][_0x15c0e5(0x21f)],'content':this[_0x15c0e5(0x244)]['t'](_0x15c0e5(0x314))});},(_0x5cb80e=this['_configService'][_0x491be9(0x606)](_0x318c82))!=null?_0x5cb80e:0x4e20);}['_clearCollaborationTimeoutTimer'](){const _0x38db90=_0x3ff78d;this['_collaborationTimeoutTimer']&&(clearTimeout(this[_0x38db90(0x696)]),this[_0x38db90(0x696)]=null);}['_startTelemetryCollaborationNewChangeset'](_0x46b7b3){const _0x2be740=_0x3ff78d;if(!this[_0x2be740(0x680)])return;const {data:_0x18497d}=_0x46b7b3,{unitID:_0xf2b1e8,changeset:_0x394810}=_0x18497d,{mutations:_0x99e8e5,type:_0x443a8e}=_0x394810;this[_0x2be740(0x537)]={'unitId':_0xf2b1e8,'type':_0x443a8e,'startTime':performance[_0x2be740(0x354)](),'stopTime':0x0,'duration':0x0,'size':_0x472c6d(_0x99e8e5)};}[_0x3ff78d(0x51a)](){const _0x3d6457=_0x3ff78d;if(this['_shouldReportTelemetry']){if(!this[_0x3d6457(0x537)]){this[_0x3d6457(0x659)][_0x3d6457(0x421)](_0x3d6457(0x3a9),_0x3d6457(0x5cf));return;}this[_0x3d6457(0x537)][_0x3d6457(0x24c)]=performance[_0x3d6457(0x354)](),this[_0x3d6457(0x537)][_0x3d6457(0x479)]=this[_0x3d6457(0x537)][_0x3d6457(0x24c)]-this[_0x3d6457(0x537)][_0x3d6457(0x5b2)],this['_telemetryService']['capture'](_0x48281b,this['_telemetryInfo']),this['_telemetryInfo']=null;}}[_0x3ff78d(0x47d)](){const _0x403f6d=_0x3ff78d;this[_0x403f6d(0x537)]=null;}},_0x1e9522[_0x3ff78d(0x55f)]=_0x8a20dc([_0x12f600(0x2,_0x121236['ILogService']),_0x12f600(0x3,_0x3f9dc7['IBeforeCloseService']),_0x12f600(0x4,_0x3f9dc7['IMessageService']),_0x12f600(0x5,_0x121236[_0x3ff78d(0x3f8)]),_0x12f600(0x6,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)])),_0x12f600(0x7,_0x121236['Inject'](_0x1e9522['MemberService'])),_0x12f600(0x8,_0x121236['Inject'](_0xb9ed00)),_0x12f600(0x9,_0x121236['Optional'](_0x3000a1[_0x3ff78d(0x40e)]))],_0x1e9522['CollaborationSession']);var _0x154a46=Object[_0x3ff78d(0x675)],_0x2f54ab=Object[_0x3ff78d(0x570)],_0x10d6f0=(_0x5594fa,_0x2a6051,_0x450ab7,_0x42fbd0)=>{const _0x3578bf=_0x3ff78d;for(var _0x2c543a=_0x42fbd0>0x1?void 0x0:_0x42fbd0?_0x2f54ab(_0x2a6051,_0x450ab7):_0x2a6051,_0x42c5b4=_0x5594fa[_0x3578bf(0x453)]-0x1,_0x33881c;_0x42c5b4>=0x0;_0x42c5b4--)(_0x33881c=_0x5594fa[_0x42c5b4])&&(_0x2c543a=(_0x42fbd0?_0x33881c(_0x2a6051,_0x450ab7,_0x2c543a):_0x33881c(_0x2c543a))||_0x2c543a);return _0x42fbd0&&_0x2c543a&&_0x154a46(_0x2a6051,_0x450ab7,_0x2c543a),_0x2c543a;},_0x5b457d=(_0x1aa526,_0x46b32c)=>(_0x366d52,_0x592b25)=>_0x46b32c(_0x366d52,_0x592b25,_0x1aa526);_0x1e9522[_0x3ff78d(0x3ee)]=class extends _0x121236[_0x3ff78d(0x3c0)]{constructor(_0xdd527b,_0x58cb00,_0x740502,_0x437c2f,_0x485844,_0x2a3b23,_0x3b8c02){const _0x2a98d9=_0x3ff78d;super(),_0x3661de(this,_0x2a98d9(0x647),new _0x2d6fea[(_0x2a98d9(0x3d6))](void 0x0)),_0x3661de(this,'socket$',this[_0x2a98d9(0x647)][_0x2a98d9(0x37c)]()),_0x3661de(this,_0x2a98d9(0x27a),null),_0x3661de(this,_0x2a98d9(0x3c8),new Map()),_0x3661de(this,'_status$',new _0x2d6fea['BehaviorSubject'](_0x2ac566[_0x2a98d9(0x39f)])),_0x3661de(this,_0x2a98d9(0x440),this[_0x2a98d9(0x510)][_0x2a98d9(0x37c)]()),_0x3661de(this,'_socketReady',!0x1),_0x3661de(this,_0x2a98d9(0x232)),_0x3661de(this,_0x2a98d9(0x588),0x0),_0x3661de(this,_0x2a98d9(0x393)),_0x3661de(this,_0x2a98d9(0x347)),(this[_0x2a98d9(0x45b)]=_0xdd527b,this[_0x2a98d9(0x244)]=_0x58cb00,this[_0x2a98d9(0x557)]=_0x740502,this[_0x2a98d9(0x659)]=_0x437c2f,this[_0x2a98d9(0x4da)]=_0x485844,this[_0x2a98d9(0x2ac)]=_0x2a3b23,this[_0x2a98d9(0x2e9)]=_0x3b8c02,this[_0x2a98d9(0x5d0)]());}get[_0x3ff78d(0x313)](){const _0x1ba74e=_0x3ff78d;return this[_0x1ba74e(0x647)][_0x1ba74e(0x67f)]();}['_initEventListeners'](){this['_listenToOfflineEvent'](),this['_listenToOnlineEvent']();}[_0x3ff78d(0x2d3)](){const _0x263416=_0x3ff78d;super[_0x263416(0x2d3)](),this[_0x263416(0x3c8)][_0x263416(0x6c3)](_0x503fbe=>_0x503fbe[_0x263416(0x2d3)]()),this[_0x263416(0x3c8)][_0x263416(0x1fd)](),this[_0x263416(0x510)][_0x263416(0x203)]();}async['requireSession'](_0x13b363){const _0x16136d=_0x3ff78d;if(this[_0x16136d(0x3c8)]['has'](_0x13b363))return this['_sessions'][_0x16136d(0x295)](_0x13b363);this[_0x16136d(0x4b7)]();const _0x5c75f5=this['_injector'][_0x16136d(0x695)](_0x1e9522[_0x16136d(0x55f)],_0x13b363,this[_0x16136d(0x647)]['asObservable']());return this['_sessions'][_0x16136d(0x30d)](_0x13b363,_0x5c75f5),_0x5c75f5;}['closeSession'](_0x2f9381){const _0x40fbe9=_0x3ff78d;var _0x319f93;const _0x52cd6d=this[_0x40fbe9(0x3c8)][_0x40fbe9(0x295)](_0x2f9381);_0x52cd6d&&(this[_0x40fbe9(0x3c8)]['delete'](_0x2f9381),_0x52cd6d[_0x40fbe9(0x24a)]()),this[_0x40fbe9(0x3c8)][_0x40fbe9(0x387)]||(_0x319f93=this[_0x40fbe9(0x313)])==null||_0x319f93['close']();}[_0x3ff78d(0x451)](){const _0x25d2ef=_0x3ff78d;this[_0x25d2ef(0x588)]=0x0,this['_retryConnectingTimer']!=null&&(clearTimeout(this['_retryConnectingTimer']),this[_0x25d2ef(0x232)]=null),this[_0x25d2ef(0x6c0)]();}async[_0x3ff78d(0x5e3)](){const _0x4f0725=_0x3ff78d;var _0x31d2fa,_0x5836dd,_0x531972;const _0x567bac=this[_0x4f0725(0x4da)]['getConfig'](_0x304b09),_0x4da195=(_0x31d2fa=_0x567bac==null?void 0x0:_0x567bac[_0x4f0725(0x231)])!=null?_0x31d2fa:_0x300fa8;return(_0x531972=(_0x5836dd=(await this['_httpService'][_0x4f0725(0x295)](_0x4da195,{'headers':{'Content-Type':'application/json'}}))[_0x4f0725(0x23d)])==null?void 0x0:_0x5836dd[_0x4f0725(0x640)])!=null?_0x531972:'';}[_0x3ff78d(0x5a7)](_0x3d28d2){const _0x1b5d10=_0x3ff78d;var _0x533a0b,_0x3886db;const _0x407f2d=this['_configService']['getConfig'](_0x5ae336),_0xdd2d96=this[_0x1b5d10(0x4da)][_0x1b5d10(0x606)](_0x304b09),_0x16a60d=(_0x3886db=(_0x533a0b=_0xdd2d96==null?void 0x0:_0xdd2d96['collabWebSocketUrl'])!=null?_0x533a0b:_0x407f2d)!=null?_0x3886db:_0x38d383,_0x2a4f7b=new URL(_0x16a60d,window[_0x1b5d10(0x2b0)][_0x1b5d10(0x3f0)]);return _0x2a4f7b['searchParams'][_0x1b5d10(0x30d)](_0x1b5d10(0x541),_0x3d28d2),_0x2a4f7b[_0x1b5d10(0x44c)]();}async['_createSocket'](){const _0x1944de=_0x3ff78d,_0x408e2e=await this['_getSessionTicket'](),_0x2fa052=this[_0x1944de(0x5a7)](_0x408e2e),_0x51b813=this[_0x1944de(0x2ac)][_0x1944de(0x2fd)](_0x2fa052);return this[_0x1944de(0x27a)]=_0x51b813,_0x51b813;}async[_0x3ff78d(0x4b7)](){const _0x3f50e8=_0x3ff78d;var _0x4a62df,_0x5d4e5b;try{const _0x5bae58=(_0x5d4e5b=(_0x4a62df=this[_0x3f50e8(0x313)])!=null?_0x4a62df:this['_candidateSocket'])!=null?_0x5d4e5b:await this[_0x3f50e8(0x39a)]();if(_0x5bae58){const _0xf622e5=_0x5bae58['send'];_0x5bae58['send']=_0x1f3b22=>(this[_0x3f50e8(0x593)](),_0xf622e5[_0x3f50e8(0x419)](_0x5bae58,[_0x1f3b22])),_0x5bae58[_0x3f50e8(0x49f)][_0x3f50e8(0x4e0)](_0x144718=>this[_0x3f50e8(0x337)](_0x5bae58,_0x144718)),_0x5bae58['error$']['pipe'](_0x5443e6['take'](0x1))[_0x3f50e8(0x4e0)](_0x28f2dc=>this[_0x3f50e8(0x659)][_0x3f50e8(0x421)]('[CollaborationSessionService]:\x20socket\x20error',_0x28f2dc)),_0x5bae58[_0x3f50e8(0x6a1)][_0x3f50e8(0x252)](_0x5443e6['take'](0x1))[_0x3f50e8(0x4e0)](()=>{const _0x23fe57=_0x3f50e8;this[_0x23fe57(0x363)](_0x5bae58);}),_0x5bae58['close$'][_0x3f50e8(0x252)](_0x5443e6[_0x3f50e8(0x53a)](0x1))[_0x3f50e8(0x4e0)](_0x46ca68=>{const _0x14d82c=_0x3f50e8;this[_0x14d82c(0x659)][_0x14d82c(0x374)](_0x14d82c(0x33c),'socket\x20close',_0x46ca68),this[_0x14d82c(0x515)]();});}}catch(_0x33d403){this['_logService']['error'](_0x33d403),this['_onConnectionFailed']();}}[_0x3ff78d(0x363)](_0x4cbc7e){const _0x496e62=_0x3ff78d;this[_0x496e62(0x659)][_0x496e62(0x374)](_0x496e62(0x33c),_0x496e62(0x4c4)),_0x4cbc7e[_0x496e62(0x65f)]({'cmd':_0x4788da[_0x496e62(0x4cd)]}),this[_0x496e62(0x593)]();}[_0x3ff78d(0x4d7)](){const _0x5493f2=_0x3ff78d;window[_0x5493f2(0x417)](_0x5493f2(0x267),()=>this[_0x5493f2(0x681)]());}[_0x3ff78d(0x681)](){const _0x3f8661=_0x3ff78d;this[_0x3f8661(0x3a4)]=!0x1,this[_0x3f8661(0x27a)]=null,this['_status$']['next'](_0x2ac566[_0x3f8661(0x275)]),this[_0x3f8661(0x647)][_0x3f8661(0x5f8)](null),this[_0x3f8661(0x1fb)](),this[_0x3f8661(0x370)]();}[_0x3ff78d(0x515)](){const _0xd13457=_0x3ff78d;var _0x47b975;this['_onOffline'](),this[_0xd13457(0x588)]<((_0x47b975=this['_configService'][_0xd13457(0x606)](_0x2b6ba2))!=null?_0x47b975:0x3)?(this[_0xd13457(0x557)]['show']({'key':_0xd13457(0x4c9),'type':_0xb84fce['MessageType']['Warning'],'content':this[_0xd13457(0x244)]['t'](_0xd13457(0x5a0))}),this['_tryReconnect']()):this['_messageService'][_0xd13457(0x35d)]({'key':_0xd13457(0x4c9),'type':_0xb84fce[_0xd13457(0x690)][_0xd13457(0x21f)],'content':this[_0xd13457(0x244)]['t'](_0xd13457(0x2f6))});}[_0x3ff78d(0x3e3)](){const _0x3234eb=_0x3ff78d,_0x211401=()=>{const _0x3e5364=_0x57aa;this[_0x3e5364(0x313)]||this[_0x3e5364(0x451)]();},_0x34b66f=()=>{const _0x26e906=_0x57aa;this['_socket']||document[_0x26e906(0x5c7)]==='hidden'||this[_0x26e906(0x451)]();};window[_0x3234eb(0x417)]('online',_0x211401),document[_0x3234eb(0x417)](_0x3234eb(0x662),_0x34b66f);}[_0x3ff78d(0x6c0)](){const _0x1df027=_0x3ff78d;var _0x26ef2a;const _0x327148=this[_0x1df027(0x588)],_0x36b07c=this[_0x1df027(0x4da)][_0x1df027(0x606)](_0x304b09),_0x3b2395=_0x327148===0x0?0x0:((_0x26ef2a=_0x36b07c==null?void 0x0:_0x36b07c[_0x1df027(0x5ad)])!=null?_0x26ef2a:0x4e20)*0x2**_0x327148;this['_retryConnectingTimer']=window['setTimeout'](()=>{const _0x313381=_0x1df027;clearTimeout(this['_retryConnectingTimer']),this[_0x313381(0x232)]=null,this[_0x313381(0x4b7)]();},_0x3b2395),this['_retryCount']+=0x1;}[_0x3ff78d(0x337)](_0x5a27c6,_0x286f67){const _0x273cfe=_0x3ff78d,{cmd:_0xdee1c5}=_0x286f67;_0xdee1c5===_0x4788da[_0x273cfe(0x4cd)]&&!this['_socketReady']&&(_0x5a27c6[_0x273cfe(0x217)]=_0x286f67['data'][_0x273cfe(0x217)],this['_socket$']['next'](_0x5a27c6),this[_0x273cfe(0x510)][_0x273cfe(0x5f8)](_0x2ac566['ONLINE']),this[_0x273cfe(0x3a4)]=!0x0,this['_candidateSocket']=null),_0xdee1c5===_0x4788da['HEARTBEAT']&&this['_clearTimeoutTimer'](),this[_0x273cfe(0x593)]();}[_0x3ff78d(0x593)](){const _0x2a0443=_0x3ff78d;var _0x55b3e2;this['_clearHeartbeatTimer'](),this[_0x2a0443(0x393)]=window['setTimeout'](()=>this['_sendHeartbeat'](),(_0x55b3e2=this[_0x2a0443(0x4da)]['getConfig'](_0x1de31c))!=null?_0x55b3e2:0x7530);}[_0x3ff78d(0x57c)](){const _0x24e840=_0x3ff78d;this['_socket'][_0x24e840(0x65f)]({'cmd':_0x4788da[_0x24e840(0x407)]}),this[_0x24e840(0x485)]();}['_waitForHeartbeatResponse'](){const _0x472365=_0x3ff78d;var _0x296c89;this['_timeoutTimer']=window[_0x472365(0x3bd)](()=>this[_0x472365(0x515)](),(_0x296c89=this[_0x472365(0x4da)][_0x472365(0x606)](_0x318c82))!=null?_0x296c89:0x4e20);}[_0x3ff78d(0x370)](){const _0x3b9519=_0x3ff78d;this['_sendHeartbeatTimer']!=null&&(clearTimeout(this[_0x3b9519(0x393)]),this[_0x3b9519(0x393)]=null);}['_clearTimeoutTimer'](){const _0xa3e25b=_0x3ff78d;this['_timeoutTimer']!=null&&(clearTimeout(this[_0xa3e25b(0x347)]),this[_0xa3e25b(0x347)]=null);}},_0x1e9522[_0x3ff78d(0x3ee)]=_0x10d6f0([_0x5b457d(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x5b457d(0x1,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)])),_0x5b457d(0x2,_0x3f9dc7['IMessageService']),_0x5b457d(0x3,_0x121236[_0x3ff78d(0x3fa)]),_0x5b457d(0x4,_0x121236[_0x3ff78d(0x3f8)]),_0x5b457d(0x5,_0x2880a6),_0x5b457d(0x6,_0x121236[_0x3ff78d(0x64f)](_0x5bb5df['HTTPService']))],_0x1e9522[_0x3ff78d(0x3ee)]);const _0xebb889=[];for(let _0x38fda5=0x0;_0x38fda5<0x100;++_0x38fda5)_0xebb889[_0x3ff78d(0x3f3)]((_0x38fda5+0x100)[_0x3ff78d(0x44c)](0x10)['slice'](0x1));function _0x5f4ada(_0xc87a30,_0x24c402=0x0){const _0x2afbdc=_0x3ff78d;return(_0xebb889[_0xc87a30[_0x24c402+0x0]]+_0xebb889[_0xc87a30[_0x24c402+0x1]]+_0xebb889[_0xc87a30[_0x24c402+0x2]]+_0xebb889[_0xc87a30[_0x24c402+0x3]]+'-'+_0xebb889[_0xc87a30[_0x24c402+0x4]]+_0xebb889[_0xc87a30[_0x24c402+0x5]]+'-'+_0xebb889[_0xc87a30[_0x24c402+0x6]]+_0xebb889[_0xc87a30[_0x24c402+0x7]]+'-'+_0xebb889[_0xc87a30[_0x24c402+0x8]]+_0xebb889[_0xc87a30[_0x24c402+0x9]]+'-'+_0xebb889[_0xc87a30[_0x24c402+0xa]]+_0xebb889[_0xc87a30[_0x24c402+0xb]]+_0xebb889[_0xc87a30[_0x24c402+0xc]]+_0xebb889[_0xc87a30[_0x24c402+0xd]]+_0xebb889[_0xc87a30[_0x24c402+0xe]]+_0xebb889[_0xc87a30[_0x24c402+0xf]])[_0x2afbdc(0x684)]();}let _0x2d3e02;const _0xa9e7b8=new Uint8Array(0x10);function _0x905259(){const _0xda9dd6=_0x3ff78d;if(!_0x2d3e02){if(typeof crypto>'u'||!crypto[_0xda9dd6(0x692)])throw new Error(_0xda9dd6(0x319));_0x2d3e02=crypto[_0xda9dd6(0x692)][_0xda9dd6(0x5bc)](crypto);}return _0x2d3e02(_0xa9e7b8);}const _0x3158a0={'randomUUID':typeof crypto<'u'&&crypto[_0x3ff78d(0x605)]&&crypto['randomUUID']['bind'](crypto)};function _0x3f2b24(_0x28350d,_0x5d589c,_0x23dbee){const _0x93970f=_0x3ff78d;if(_0x3158a0[_0x93970f(0x605)]&&!_0x5d589c&&!_0x28350d)return _0x3158a0[_0x93970f(0x605)]();_0x28350d=_0x28350d||{};const _0x2a71be=_0x28350d[_0x93970f(0x655)]||(_0x28350d['rng']||_0x905259)();return _0x2a71be[0x6]=_0x2a71be[0x6]&0xf|0x40,_0x2a71be[0x8]=_0x2a71be[0x8]&0x3f|0x80,_0x5f4ada(_0x2a71be);}var _0x22d729=Object[_0x3ff78d(0x675)],_0xa201c4=Object[_0x3ff78d(0x570)],_0x18ed88=(_0xab0900,_0x7b2e25,_0x1717fe,_0x1ffdb0)=>{for(var _0x4e4829=_0x1ffdb0>0x1?void 0x0:_0x1ffdb0?_0xa201c4(_0x7b2e25,_0x1717fe):_0x7b2e25,_0x2bafca=_0xab0900['length']-0x1,_0x5cf747;_0x2bafca>=0x0;_0x2bafca--)(_0x5cf747=_0xab0900[_0x2bafca])&&(_0x4e4829=(_0x1ffdb0?_0x5cf747(_0x7b2e25,_0x1717fe,_0x4e4829):_0x5cf747(_0x4e4829))||_0x4e4829);return _0x1ffdb0&&_0x4e4829&&_0x22d729(_0x7b2e25,_0x1717fe,_0x4e4829),_0x4e4829;},_0x33ea74=(_0x566120,_0x10e92f)=>(_0x3d8860,_0x529af7)=>_0x10e92f(_0x3d8860,_0x529af7,_0x566120);let _0xcea2b9=class{constructor(_0x5b7fd4,_0x97d5f9,_0x34f903){const _0x5d85bb=_0x3ff78d;this['_injector']=_0x5b7fd4,this[_0x5d85bb(0x66c)]=_0x97d5f9,this[_0x5d85bb(0x57f)]=_0x34f903;}[_0x3ff78d(0x3bb)](_0x143cf5){const _0x1d05e2=_0x3ff78d;this[_0x1d05e2(0x53f)](_0x143cf5),this[_0x1d05e2(0x49c)](_0x143cf5);}[_0x3ff78d(0x5ce)](_0x54d796){const _0x4de558=_0x3ff78d,{unitID:_0xc2b02f}=_0x54d796,_0x1814fa=this[_0x4de558(0x57f)][_0x4de558(0x46d)](_0xc2b02f)[_0x4de558(0x21b)](_0x72fb5c[_0x4de558(0x28a)]),{redoCache:_0x3fbf69}=_0x1814fa[_0x4de558(0x626)]();if(_0x3fbf69['length']===0x0)return _0x54d796;let _0x4f25bd=_0x121236['Tools'][_0x4de558(0x6b1)](_0x54d796[_0x4de558(0x65e)][0x0]);for(let _0xcfd03b=0x0;_0xcfd03b<_0x3fbf69[_0x4de558(0x453)];_0xcfd03b++){const _0xff32ab={'id':_0x4de558(0x4cb),'params':{..._0x3fbf69[_0xcfd03b]}},_0x5f41c4=this['_transformService'][_0x4de558(0x4a9)](_0x4f25bd,_0xff32ab,!0x1);if(_0x254697[_0x4de558(0x2b9)](_0x5f41c4))throw _0x5f41c4[_0x4de558(0x421)];_0x4f25bd=_0x5f41c4[_0x4de558(0x59b)];}return{..._0x121236[_0x4de558(0x5c9)]['deepClone'](_0x54d796),'mutations':[_0x4f25bd]};}[_0x3ff78d(0x53f)](_0x143caa){const _0xe018ec=_0x3ff78d,{unitID:_0x4f3160}=_0x143caa,_0x542f3f=this['_renderManagerService'][_0xe018ec(0x46d)](_0x4f3160)['with'](_0x72fb5c[_0xe018ec(0x28a)]),{undoCache:_0x5674f1,redoCache:_0x3981f6}=_0x542f3f['getUndoRedoMutationParamsCache']();if(_0x5674f1['length']===0x0||_0x3981f6['length']===0x0)return;const _0x4a5a61=[],_0x25b881=[];let _0x55e3a1=_0x121236[_0xe018ec(0x5c9)]['deepClone'](_0x143caa[_0xe018ec(0x65e)][0x0]),_0x37d5cf=_0x121236[_0xe018ec(0x5c9)][_0xe018ec(0x6b1)](_0x143caa[_0xe018ec(0x65e)][0x0]);for(let _0x4cdcde=_0x5674f1[_0xe018ec(0x453)]-0x1;_0x4cdcde>=0x0;_0x4cdcde--){const _0x5e9295={'id':_0xe018ec(0x4cb),'params':{..._0x5674f1[_0x4cdcde]}},_0xf165e9={'id':'doc.mutation.rich-text-editing','params':{..._0x3981f6[_0x4cdcde]}},_0x393381=this[_0xe018ec(0x66c)]['transformMutation'](_0x55e3a1,_0x5e9295,!0x1),_0x1579b2=this[_0xe018ec(0x66c)][_0xe018ec(0x4a9)](_0x37d5cf,_0xf165e9,!0x1);if(_0x254697['isTransformMutationFailure'](_0x393381))throw _0x393381['error'];if(_0x254697[_0xe018ec(0x2b9)](_0x1579b2))throw _0x1579b2[_0xe018ec(0x421)];_0x4a5a61[_0xe018ec(0x27c)](_0x393381[_0xe018ec(0x4d8)][_0xe018ec(0x4fb)]),_0x25b881[_0xe018ec(0x27c)](_0x1579b2[_0xe018ec(0x4d8)]['params']),_0x55e3a1=_0x393381[_0xe018ec(0x59b)],_0x37d5cf=_0x1579b2[_0xe018ec(0x59b)];}_0x542f3f[_0xe018ec(0x2a7)]({'undoCache':_0x4a5a61,'redoCache':_0x25b881});}['_transformPreviousActiveRange'](_0x15f89a){const _0x5bfbb8=_0x3ff78d,{unitID:_0x123ec6}=_0x15f89a,_0x47779c=this['_renderManagerService'][_0x5bfbb8(0x46d)](_0x123ec6)[_0x5bfbb8(0x21b)](_0x72fb5c['DocIMEInputManagerService']),_0x40aaf2=_0x47779c[_0x5bfbb8(0x2a8)]();if(_0x40aaf2==null)return;const _0xfc764c=[{'id':_0x5bfbb8(0x4cb),'params':{'unitId':_0x15f89a[_0x5bfbb8(0x4d1)],'actions':null,'textRanges':[_0x40aaf2]}}],_0x421c8e=this['_transformService'][_0x5bfbb8(0x660)](_0x15f89a,_0xfc764c);if(!_0x254697[_0x5bfbb8(0x5b1)](_0x421c8e))throw _0x421c8e[_0x5bfbb8(0x421)];const _0x5a0dce=_0x421c8e[_0x5bfbb8(0x4d8)][0x0]['params'][_0x5bfbb8(0x349)];Array[_0x5bfbb8(0x4b8)](_0x5a0dce)&&_0x5a0dce[_0x5bfbb8(0x453)]&&_0x47779c[_0x5bfbb8(0x44f)](_0x5a0dce[0x0]);}};_0xcea2b9=_0x18ed88([_0x33ea74(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236['Injector'])),_0x33ea74(0x1,_0x254697['ITransformService']),_0x33ea74(0x2,_0x328527[_0x3ff78d(0x50e)])],_0xcea2b9);var _0x2c1255=Object['defineProperty'],_0x71e63d=Object[_0x3ff78d(0x570)],_0x56a9d7=(_0x4ccebf,_0x1f9104,_0x4d5088,_0x3f3d34)=>{const _0x3bcbf3=_0x3ff78d;for(var _0x31de93=_0x3f3d34>0x1?void 0x0:_0x3f3d34?_0x71e63d(_0x1f9104,_0x4d5088):_0x1f9104,_0x87ae5=_0x4ccebf[_0x3bcbf3(0x453)]-0x1,_0x3fb9cd;_0x87ae5>=0x0;_0x87ae5--)(_0x3fb9cd=_0x4ccebf[_0x87ae5])&&(_0x31de93=(_0x3f3d34?_0x3fb9cd(_0x1f9104,_0x4d5088,_0x31de93):_0x3fb9cd(_0x31de93))||_0x31de93);return _0x3f3d34&&_0x31de93&&_0x2c1255(_0x1f9104,_0x4d5088,_0x31de93),_0x31de93;},_0x20c558=(_0x227ff5,_0x3a292a)=>(_0x19942f,_0x465a68)=>_0x3a292a(_0x19942f,_0x465a68,_0x227ff5);_0x1e9522[_0x3ff78d(0x544)]=class extends _0x121236[_0x3ff78d(0x3c0)]{constructor(_0x1c5daf,_0x58bf77,_0x3c1311,_0x7acd76,_0x244fd6){const _0xb8bd57=_0x3ff78d;super(),_0x3661de(this,_0xb8bd57(0x3db),new Map()),_0x3661de(this,_0xb8bd57(0x668),new Map()),_0x3661de(this,_0xb8bd57(0x20d),!0x1),(this[_0xb8bd57(0x4da)]=_0x1c5daf,this[_0xb8bd57(0x441)]=_0x58bf77,this[_0xb8bd57(0x474)]=_0x3c1311,this[_0xb8bd57(0x244)]=_0x7acd76,this[_0xb8bd57(0x682)]=_0x244fd6,this[_0xb8bd57(0x2ba)]());}['disableLocalCache'](){const _0x3be312=_0x3ff78d;this[_0x3be312(0x20d)]=!0x0;}[_0x3ff78d(0x590)](){this['_disabled']=!0x1;}[_0x3ff78d(0x2d3)](){const _0x4d010e=_0x3ff78d;this[_0x4d010e(0x54b)]()['then'](()=>super['dispose']());}async['loadOfflineData'](_0x11c85f){const _0xf8fc07=_0x3ff78d;return this[_0xf8fc07(0x20d)]?null:this[_0xf8fc07(0x441)]['getItem'](_0xa024aa(_0x11c85f));}async[_0x3ff78d(0x644)](_0xe83e17,_0x3df682){const _0x2d71cd=_0x3ff78d;return!!this[_0x2d71cd(0x441)][_0x2d71cd(0x415)](_0xe83e17,_0x3df682);}[_0x3ff78d(0x4f2)](_0x350928,_0x27a33f,_0x2d4779,_0x4ea931){const _0x168bb3=_0x3ff78d,_0x3eb1be=this['_revisionService'][_0x168bb3(0x6b9)](_0x350928);this[_0x168bb3(0x3db)][_0x168bb3(0x30d)](_0x350928,{'unitID':_0x350928,'type':_0x27a33f,'awaitingChangeset':_0x2d4779,'mutations':_0x4ea931,'rev':_0x3eb1be}),this['_saveTaskMap'][_0x168bb3(0x558)](_0x350928)||this[_0x168bb3(0x642)](_0x350928);}['_scheduleSaving'](_0x3247d6){const _0x508c6c=_0x3ff78d,_0x3b7e89=this[_0x508c6c(0x67b)]();_0x3b7e89===0x0?this[_0x508c6c(0x629)](_0x3247d6):this[_0x508c6c(0x668)]['set'](_0x3247d6,setTimeout(()=>this[_0x508c6c(0x629)](_0x3247d6),_0x3b7e89));}[_0x3ff78d(0x67b)](){const _0x46d361=_0x3ff78d;var _0x212c9d;return(_0x212c9d=this[_0x46d361(0x4da)][_0x46d361(0x606)](_0x90eef6))!=null?_0x212c9d:0x3e8;}[_0x3ff78d(0x629)](_0x103b79){const _0x5d2b13=_0x3ff78d,_0x2948d0=this[_0x5d2b13(0x668)][_0x5d2b13(0x295)](_0x103b79);return _0x2948d0!==void 0x0&&window['clearTimeout'](_0x2948d0),this[_0x5d2b13(0x441)][_0x5d2b13(0x415)](_0xa024aa(_0x103b79),this[_0x5d2b13(0x3db)]['get'](_0x103b79))[_0x5d2b13(0x437)](()=>this['_saveTaskMap'][_0x5d2b13(0x52a)](_0x103b79));}async[_0x3ff78d(0x54b)](){const _0x443966=[];this['_saveTaskMap']['forEach']((_0x40bc1a,_0x423071)=>{const _0x4b2edd=_0x57aa;window[_0x4b2edd(0x6a7)](_0x40bc1a),_0x443966['push'](this[_0x4b2edd(0x629)](_0x423071)[_0x4b2edd(0x437)](()=>{const _0x5be075=_0x4b2edd;this[_0x5be075(0x668)][_0x5be075(0x52a)](_0x423071);}));}),await Promise['all'](_0x443966);}[_0x3ff78d(0x2ba)](){const _0x53ec71=_0x3ff78d;this[_0x53ec71(0x5e2)](this[_0x53ec71(0x474)][_0x53ec71(0x243)](()=>{const _0x4096cc=_0x53ec71;if(this[_0x4096cc(0x668)][_0x4096cc(0x387)])return this[_0x4096cc(0x244)]['t']('collaboration-client.offline-data-not-saved');}));}},_0x1e9522[_0x3ff78d(0x544)]=_0x56a9d7([_0x20c558(0x0,_0x121236['IConfigService']),_0x20c558(0x1,_0x121236[_0x3ff78d(0x37e)]),_0x20c558(0x2,_0x3f9dc7[_0x3ff78d(0x6be)]),_0x20c558(0x3,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)])),_0x20c558(0x4,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)]))],_0x1e9522[_0x3ff78d(0x544)]);function _0xa024aa(_0x2d25a9){const _0x32a540=_0x3ff78d;return _0x32a540(0x48c)+_0x2d25a9;}var _0x16d11b=Object[_0x3ff78d(0x675)],_0x54d680=Object['getOwnPropertyDescriptor'],_0xa0af30=(_0x470501,_0x20296e,_0x48a712,_0x2a3b10)=>{const _0xb017eb=_0x3ff78d;for(var _0x450d67=_0x2a3b10>0x1?void 0x0:_0x2a3b10?_0x54d680(_0x20296e,_0x48a712):_0x20296e,_0x397d9d=_0x470501[_0xb017eb(0x453)]-0x1,_0x1ad625;_0x397d9d>=0x0;_0x397d9d--)(_0x1ad625=_0x470501[_0x397d9d])&&(_0x450d67=(_0x2a3b10?_0x1ad625(_0x20296e,_0x48a712,_0x450d67):_0x1ad625(_0x450d67))||_0x450d67);return _0x2a3b10&&_0x450d67&&_0x16d11b(_0x20296e,_0x48a712,_0x450d67),_0x450d67;},_0x322832=(_0x2d0220,_0x3ffa69)=>(_0x3b89fd,_0x1a1a60)=>_0x3ffa69(_0x3b89fd,_0x1a1a60,_0x2d0220);function _0x1338d5(_0x372299){const {unitID:_0x3f77d6,mutations:_0x2828c4}=_0x372299;return{'unitId':_0x3f77d6,'subUnitId':_0x2828c4[0x0]['params']['subUnitId']};}let _0x45c8bc=class{constructor(_0x36406c,_0x5772a0,_0x332651){const _0x412f34=_0x3ff78d;this[_0x412f34(0x45b)]=_0x36406c,this[_0x412f34(0x66c)]=_0x5772a0,this[_0x412f34(0x345)]=_0x332651;}[_0x3ff78d(0x69e)](_0x2a2a9e){const _0x55420e=_0x3ff78d;var _0x582fbc,_0x968baa,_0x4357c4,_0x456acb;const _0x33647d=this[_0x55420e(0x45b)]['get'](_0x3eed56[_0x55420e(0x362)]),{unitId:_0x1e43cc,subUnitId:_0x4f9c40}=_0x1338d5(_0x2a2a9e),_0x556af4=_0x33647d[_0x55420e(0x5b9)](_0x1e43cc)[_0x55420e(0x2a3)](),_0x4396a8=(_0x968baa=(_0x582fbc=this[_0x55420e(0x345)][_0x55420e(0x38b)](_0x1e43cc))==null?void 0x0:_0x582fbc['getActiveSheet']())==null?void 0x0:_0x968baa['getSheetId']();if(_0x556af4[_0x55420e(0x453)]===0x0||!_0x1e43cc||!_0x4f9c40)return;const _0x991852=[{'id':_0x3eed56[_0x55420e(0x4df)]['id'],'params':{'unitId':_0x1e43cc,'subUnitId':_0x4396a8,'selections':_0x121236['Tools']['deepClone'](_0x556af4)}}],_0x4f1a06=this[_0x55420e(0x66c)][_0x55420e(0x660)](_0x2a2a9e,_0x991852);if(!_0x254697[_0x55420e(0x5b1)](_0x4f1a06))throw _0x4f1a06[_0x55420e(0x421)];const _0x39e42d=(_0x456acb=(_0x4357c4=_0x4f1a06[_0x55420e(0x4d8)][0x0])==null?void 0x0:_0x4357c4[_0x55420e(0x4fb)])==null?void 0x0:_0x456acb[_0x55420e(0x277)];if(Array['isArray'](_0x39e42d)&&_0x39e42d['length']){if(_0x39e42d[_0x55420e(0x453)]===_0x991852[0x0][_0x55420e(0x4fb)][_0x55420e(0x277)][_0x55420e(0x453)]&&_0x39e42d[_0x55420e(0x2bd)]((_0x51f796,_0x30b48c)=>_0x121236[_0x55420e(0x352)][_0x55420e(0x6b0)](_0x51f796[_0x55420e(0x3e4)],_0x991852[0x0]['params'][_0x55420e(0x277)][_0x30b48c]['range'])))return;this[_0x55420e(0x45b)]['get'](_0x121236[_0x55420e(0x2eb)])['executeCommand'](_0x3eed56['SetSelectionsOperation']['id'],{'unitId':_0x1e43cc,'subUnitId':_0x4396a8,'selections':_0x39e42d});}}};_0x45c8bc=_0xa0af30([_0x322832(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x322832(0x1,_0x254697[_0x3ff78d(0x58c)]),_0x322832(0x2,_0x121236[_0x3ff78d(0x289)])],_0x45c8bc);const _0x419a7e=_0x121236['createIdentifier']('univer-pro.collaboration-client.single-active-unit-service');var _0x51e6ce=(_0x311983=>(_0x311983[_0x311983[_0x3ff78d(0x61d)]=0x0]=_0x3ff78d(0x61d),_0x311983[_0x311983['OTHER_CLIENTS_EDITING']=0x1]=_0x3ff78d(0x5e0),_0x311983))(_0x51e6ce||{});const _0x2909b8=0x7530,_0x3cc93f=_0x3ff78d(0x41e);class _0x590071 extends _0x121236['Disposable']{constructor(){const _0x1305b4=_0x3ff78d;super(),_0x3661de(this,_0x1305b4(0x5be),_0x121236[_0x1305b4(0x5c9)][_0x1305b4(0x381)]()),_0x3661de(this,_0x1305b4(0x26a),new Set()),_0x3661de(this,_0x1305b4(0x5d3),new Map()),_0x3661de(this,_0x1305b4(0x2ae),null),_0x3661de(this,_0x1305b4(0x433),new Map()),_0x3661de(this,_0x1305b4(0x3ad),new Map()),this['_init']();}[_0x3ff78d(0x2d3)](){const _0x50973d=_0x3ff78d;super[_0x50973d(0x2d3)](),this[_0x50973d(0x433)][_0x50973d(0x6c3)]((_0x135c7d,_0x4ccb69)=>this[_0x50973d(0x686)](_0x4ccb69)),this['_heartbeatTimer']&&window[_0x50973d(0x2da)](this[_0x50973d(0x2ae)]);}['getUnitStatus$'](_0x4b7925){const _0x2fdfa9=_0x3ff78d;return this['_ensureSubject'](_0x4b7925)[_0x2fdfa9(0x252)](_0x2d6fea['distinctUntilChanged']());}[_0x3ff78d(0x4c0)](_0x28f451){const _0x2a1e0c=_0x3ff78d;this[_0x2a1e0c(0x26a)][_0x2a1e0c(0x387)]===0x0&&this['_scheduleHeartbeat'](),this[_0x2a1e0c(0x26a)][_0x2a1e0c(0x623)](_0x28f451),this[_0x2a1e0c(0x3be)]({'type':0x0,'memberID':this['_id'],'unitIDs':[_0x28f451],'isForwarded':!0x1});}[_0x3ff78d(0x230)](_0x1f3780){const _0x58ce8d=_0x3ff78d;this[_0x58ce8d(0x26a)]['delete'](_0x1f3780),this['_selfUnitIDs'][_0x58ce8d(0x387)]===0x0&&this[_0x58ce8d(0x2ae)]&&window['clearInterval'](this['_heartbeatTimer']);}[_0x3ff78d(0x55a)](){const _0x541c04=_0x3ff78d;this[_0x541c04(0x5e2)](_0x121236[_0x541c04(0x56c)](_0x2d6fea[_0x541c04(0x276)](window,_0x541c04(0x35c))[_0x541c04(0x4e0)](_0x202d5d=>{const _0xd46660=_0x541c04;if(_0x202d5d['key']!==_0x3cc93f||!_0x202d5d[_0xd46660(0x2c2)])return;const _0x273c87=JSON[_0xd46660(0x6b6)](_0x202d5d[_0xd46660(0x2c2)]);this[_0xd46660(0x531)](_0x273c87);}))),window[_0x541c04(0x417)](_0x541c04(0x585),()=>this[_0x541c04(0x3be)]({'type':0x1,'memberID':this[_0x541c04(0x5be)],'unitIDs':Array[_0x541c04(0x5ef)](this['_selfUnitIDs'])}));}[_0x3ff78d(0x531)](_0x7487d9){const _0x161ffd=_0x3ff78d;switch(_0x7487d9[_0x161ffd(0x25f)]){case 0x0:this['_handleJoinEvent'](_0x7487d9);break;case 0x1:this[_0x161ffd(0x634)](_0x7487d9);break;case 0x2:this[_0x161ffd(0x31a)](_0x7487d9);break;}}['_handleJoinEvent'](_0x25212c){const _0x294061=_0x3ff78d,{unitIDs:_0x19719b,memberID:_0x2152b2,isForwarded:_0x437633}=_0x25212c;_0x19719b[_0x294061(0x6c3)](_0x1f4b6a=>{const _0x58ec6f=_0x294061;if(!_0x437633&&this[_0x58ec6f(0x5d3)][_0x58ec6f(0x558)](_0x1f4b6a)&&this[_0x58ec6f(0x310)](_0x1f4b6a)[_0x58ec6f(0x5f8)](0x1),!this[_0x58ec6f(0x5d3)][_0x58ec6f(0x558)](_0x1f4b6a)||!this[_0x58ec6f(0x5d3)][_0x58ec6f(0x295)](_0x1f4b6a)[_0x58ec6f(0x558)](_0x2152b2)){const _0x12bfc7=this[_0x58ec6f(0x5d3)][_0x58ec6f(0x295)](_0x1f4b6a)||new Set();_0x12bfc7[_0x58ec6f(0x623)](_0x2152b2),this[_0x58ec6f(0x5d3)][_0x58ec6f(0x30d)](_0x1f4b6a,_0x12bfc7),this[_0x58ec6f(0x23f)](_0x2152b2);}}),_0x437633||this[_0x294061(0x3be)]({'type':0x0,'memberID':this['_id'],'unitIDs':[...this[_0x294061(0x26a)]],'isForwarded':!0x0});}[_0x3ff78d(0x23f)](_0x8d00a3){const _0x391cf4=_0x3ff78d;this['_removeClearOtherTimer'](_0x8d00a3);const _0x57ccb4=window[_0x391cf4(0x3bd)](()=>{const _0x4af58d=_0x391cf4;this['_unitOnClients'][_0x4af58d(0x6c3)](_0x101001=>{const _0x3c42bb=_0x4af58d;_0x101001[_0x3c42bb(0x52a)](_0x8d00a3);});},_0x2909b8*0x2);this[_0x391cf4(0x433)][_0x391cf4(0x30d)](_0x8d00a3,_0x57ccb4);}[_0x3ff78d(0x686)](_0x5eda01){const _0x1831aa=_0x3ff78d;if(this[_0x1831aa(0x433)][_0x1831aa(0x558)](_0x5eda01)){const _0x3d8573=this[_0x1831aa(0x433)][_0x1831aa(0x295)](_0x5eda01);_0x3d8573&&window['clearTimeout'](_0x3d8573),this[_0x1831aa(0x433)][_0x1831aa(0x30d)](_0x5eda01,null);}}[_0x3ff78d(0x634)](_0xd22042){const _0x1a043e=_0x3ff78d,{memberID:_0x23cad9,unitIDs:_0x335b8a}=_0xd22042;_0x335b8a['forEach'](_0x2e0fcd=>{const _0x483e43=_0x57aa;var _0xa1c69;const _0x1e928b=this[_0x483e43(0x5d3)][_0x483e43(0x295)](_0x2e0fcd);_0x1e928b&&(_0x1e928b[_0x483e43(0x52a)](_0x23cad9),(_0xa1c69=this['_ensureSubject'](_0x2e0fcd))==null||_0xa1c69[_0x483e43(0x5f8)](_0x1e928b[_0x483e43(0x387)]===0x0?0x0:0x1));}),this[_0x1a043e(0x686)](_0x23cad9);}[_0x3ff78d(0x31a)](_0x42da57){const _0x228d5a=_0x3ff78d;this[_0x228d5a(0x23f)](_0x42da57[_0x228d5a(0x217)]);}['_send'](_0x3df07a){const _0x1496e2=_0x3ff78d;localStorage[_0x1496e2(0x415)](_0x3cc93f,JSON[_0x1496e2(0x411)](_0x3df07a));}[_0x3ff78d(0x4fe)](){this['_heartbeatTimer']=window['setInterval'](()=>{const _0x73aaf5=_0x57aa;this[_0x73aaf5(0x3be)]({'type':0x2,'memberID':this[_0x73aaf5(0x5be)]});},_0x2909b8);}[_0x3ff78d(0x310)](_0xf569cf){const _0x19a9d1=_0x3ff78d;return this[_0x19a9d1(0x3ad)][_0x19a9d1(0x558)](_0xf569cf)||this[_0x19a9d1(0x3ad)][_0x19a9d1(0x30d)](_0xf569cf,new _0x2d6fea[(_0x19a9d1(0x3d6))](0x0)),this[_0x19a9d1(0x3ad)][_0x19a9d1(0x295)](_0xf569cf);}}var _0x44627a=Object[_0x3ff78d(0x675)],_0x4f8c53=Object['getOwnPropertyDescriptor'],_0x3149dc=(_0x28baf3,_0x1906e2,_0x5c2022,_0x2b85ce)=>{const _0x5b1cab=_0x3ff78d;for(var _0x1f01a6=_0x2b85ce>0x1?void 0x0:_0x2b85ce?_0x4f8c53(_0x1906e2,_0x5c2022):_0x1906e2,_0x2787c0=_0x28baf3[_0x5b1cab(0x453)]-0x1,_0x60a379;_0x2787c0>=0x0;_0x2787c0--)(_0x60a379=_0x28baf3[_0x2787c0])&&(_0x1f01a6=(_0x2b85ce?_0x60a379(_0x1906e2,_0x5c2022,_0x1f01a6):_0x60a379(_0x1f01a6))||_0x1f01a6);return _0x2b85ce&&_0x1f01a6&&_0x44627a(_0x1906e2,_0x5c2022,_0x1f01a6),_0x1f01a6;},_0x3ba61e=(_0x357b6d,_0x40b139)=>(_0x3f0683,_0x5e1046)=>_0x40b139(_0x3f0683,_0x5e1046,_0x357b6d);let _0x3b1bb2=class{constructor(_0x154f75,_0x56e82f,_0x51e0ae){const _0x3daa21=_0x3ff78d;this[_0x3daa21(0x45b)]=_0x154f75,this[_0x3daa21(0x66c)]=_0x56e82f,this['_docStateChangeManagerService']=_0x51e0ae;}[_0x3ff78d(0x34f)](_0x58baa1){this['_transformHistoryAndStateStack'](_0x58baa1);}['transformRemoteChangeset'](_0x2b9084){const _0x32e389=_0x3ff78d,{unitID:_0x1b66d6}=_0x2b9084,{collaboration:_0x241927}=this[_0x32e389(0x598)][_0x32e389(0x2b5)](_0x1b66d6);if(_0x241927[_0x32e389(0x453)]===0x0)return _0x2b9084;let _0x2762f3=_0x121236['Tools'][_0x32e389(0x6b1)](_0x2b9084['mutations'][0x0]);for(let _0x15c5a0=0x0;_0x15c5a0<_0x241927[_0x32e389(0x453)];_0x15c5a0++){const _0x2c9642={'id':_0x32e389(0x4cb),'params':{'unitId':_0x241927[_0x15c5a0][_0x32e389(0x67d)],..._0x241927[_0x15c5a0][_0x32e389(0x4e6)]}},_0x484bb8=this[_0x32e389(0x66c)][_0x32e389(0x4a9)](_0x2762f3,_0x2c9642,!0x1);if(_0x254697[_0x32e389(0x2b9)](_0x484bb8))throw _0x484bb8[_0x32e389(0x421)];_0x2762f3=_0x484bb8[_0x32e389(0x59b)];}return{..._0x121236[_0x32e389(0x5c9)]['deepClone'](_0x2b9084),'mutations':[_0x2762f3]};}[_0x3ff78d(0x4ab)](_0x1003fe){const _0x13b444=_0x3ff78d,{unitID:_0x2c76f2}=_0x1003fe,{history:_0x5bbbab,collaboration:_0x45081a}=this['_docStateChangeManagerService'][_0x13b444(0x2b5)](_0x2c76f2);if(_0x5bbbab[_0x13b444(0x453)]===0x0&&_0x45081a[_0x13b444(0x453)]===0x0)return;const _0x232960=[],_0x1a81c1=[];let _0x47cfee=_0x121236[_0x13b444(0x5c9)][_0x13b444(0x6b1)](_0x1003fe[_0x13b444(0x65e)][0x0]),_0x17d9fd=_0x121236[_0x13b444(0x5c9)]['deepClone'](_0x1003fe[_0x13b444(0x65e)][0x0]);for(let _0x2d75fd=_0x5bbbab[_0x13b444(0x453)]-0x1;_0x2d75fd>=0x0;_0x2d75fd--){const _0x4e136b={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x5bbbab[_0x2d75fd][_0x13b444(0x67d)],..._0x5bbbab[_0x2d75fd][_0x13b444(0x41a)]}},_0x1d7df8={'id':_0x13b444(0x4cb),'params':{'unitId':_0x5bbbab[_0x2d75fd][_0x13b444(0x67d)],..._0x5bbbab[_0x2d75fd][_0x13b444(0x4e6)]}},_0x1044f9=this['_transformService']['transformMutation'](_0x47cfee,_0x4e136b,!0x1),_0xc083e0=this[_0x13b444(0x66c)][_0x13b444(0x4a9)](_0x17d9fd,_0x1d7df8,!0x1);if(_0x254697[_0x13b444(0x2b9)](_0x1044f9))throw _0x1044f9[_0x13b444(0x421)];if(_0x254697[_0x13b444(0x2b9)](_0xc083e0))throw _0xc083e0['error'];_0x232960[_0x13b444(0x27c)]({..._0x5bbbab[_0x2d75fd],'undoState':_0x1044f9[_0x13b444(0x4d8)]['params'],'redoState':_0xc083e0[_0x13b444(0x4d8)][_0x13b444(0x4fb)]}),_0x47cfee=_0x1044f9[_0x13b444(0x59b)],_0x17d9fd=_0xc083e0[_0x13b444(0x59b)];}_0x47cfee=_0x121236[_0x13b444(0x5c9)][_0x13b444(0x6b1)](_0x1003fe[_0x13b444(0x65e)][0x0]),_0x17d9fd=_0x121236['Tools'][_0x13b444(0x6b1)](_0x1003fe[_0x13b444(0x65e)][0x0]);for(let _0x3debce=_0x45081a[_0x13b444(0x453)]-0x1;_0x3debce>=0x0;_0x3debce--){const _0x41d939={'id':_0x13b444(0x4cb),'params':{'unitId':_0x45081a[_0x3debce][_0x13b444(0x67d)],..._0x45081a[_0x3debce][_0x13b444(0x41a)]}},_0x4912c6={'id':_0x13b444(0x4cb),'params':{'unitId':_0x45081a[_0x3debce]['unitId'],..._0x45081a[_0x3debce][_0x13b444(0x4e6)]}},_0x586c7b=this[_0x13b444(0x66c)][_0x13b444(0x4a9)](_0x47cfee,_0x41d939,!0x1),_0x5e637b=this['_transformService'][_0x13b444(0x4a9)](_0x17d9fd,_0x4912c6,!0x1);if(_0x254697[_0x13b444(0x2b9)](_0x586c7b))throw _0x586c7b['error'];if(_0x254697[_0x13b444(0x2b9)](_0x5e637b))throw _0x5e637b[_0x13b444(0x421)];_0x1a81c1['unshift']({..._0x45081a[_0x3debce],'undoState':_0x586c7b[_0x13b444(0x4d8)][_0x13b444(0x4fb)],'redoState':_0x5e637b[_0x13b444(0x4d8)][_0x13b444(0x4fb)]}),_0x47cfee=_0x586c7b[_0x13b444(0x59b)],_0x17d9fd=_0x5e637b[_0x13b444(0x59b)];}this['_docStateChangeManagerService'][_0x13b444(0x2fa)](_0x2c76f2,{'history':_0x232960,'collaboration':_0x1a81c1});}};_0x3b1bb2=_0x3149dc([_0x3ba61e(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236['Injector'])),_0x3ba61e(0x1,_0x254697['ITransformService']),_0x3ba61e(0x2,_0x121236[_0x3ff78d(0x64f)](_0x72fb5c[_0x3ff78d(0x358)]))],_0x3b1bb2);function _0x1f34c5(_0x327d13){const _0x49b3f1=_0x3ff78d;let _0x26ce45='';for(const _0x24e1ef of _0x327d13){const {startOffset:_0x201a4e,endOffset:_0x4ba46a,isActive:_0x110412,rangeType:_0x464a78,segmentId:_0x4be4f9,segmentPage:_0x2c7203}=_0x24e1ef;_0x26ce45[_0x49b3f1(0x453)]&&(_0x26ce45+=','),_0x26ce45+=_0x201a4e+':'+_0x4ba46a+':'+(_0x110412?'1':'0')+':'+_0x464a78+':'+_0x4be4f9+':'+_0x2c7203;}return _0x26ce45;}function _0x3f7da0(_0xe9be9a){const _0x3bf823=_0x3ff78d,_0x19e2e4=_0xe9be9a[_0x3bf823(0x36f)](','),_0x1f0bf0=[];for(const _0x456293 of _0x19e2e4){const [_0x496327,_0x1ef483,_0x1defa2,_0xc149a0,_0x577b59,_0x48111a]=_0x456293[_0x3bf823(0x36f)](':');_0x1f0bf0['push']({'startOffset':Number(_0x496327),'endOffset':Number(_0x1ef483),'collapsed':_0x496327===_0x1ef483,'isActive':_0x1defa2==='1','rangeType':_0xc149a0===_0x121236[_0x3bf823(0x670)][_0x3bf823(0x2e8)]?_0x121236[_0x3bf823(0x670)][_0x3bf823(0x2e8)]:_0x121236[_0x3bf823(0x670)][_0x3bf823(0x402)],'segmentId':typeof _0x577b59==_0x3bf823(0x454)?String(_0x577b59):'','segmentPage':Number(_0x48111a!=null?_0x48111a:-0x1)});}return _0x1f0bf0[_0x3bf823(0x2d2)](_0x183273=>_0x183273[_0x3bf823(0x266)])||(_0x1f0bf0[0x0][_0x3bf823(0x266)]=!0x0),_0x1f0bf0;}class _0x3da688 extends _0x121236[_0x3ff78d(0x5ff)]{constructor(){const _0x3877dc=_0x3ff78d;super(...arguments),_0x3661de(this,_0x3877dc(0x444),new _0x2d6fea[(_0x3877dc(0x3d6))](null)),_0x3661de(this,'collabCursorState$',this[_0x3877dc(0x444)][_0x3877dc(0x37c)]());}[_0x3ff78d(0x4c8)](_0x4c3d1f){const _0x2d66d2=_0x3ff78d,{unitID:_0x197dc1,memberID:_0x43127a,textRanges:_0x151f22}=_0x4c3d1f,_0x10716d=_0x1f34c5(_0x151f22);if(_0x10716d==='')return;const _0x4b0c02={'unitID':_0x197dc1,'memberID':_0x43127a,'selection':_0x10716d};this[_0x2d66d2(0x444)]['next'](_0x4b0c02);}}var _0x26a282=Object['defineProperty'],_0x4e7302=Object[_0x3ff78d(0x570)],_0x1cefea=(_0x312dda,_0x1e20e3,_0x335b76,_0x574d1e)=>{for(var _0x1a2874=_0x574d1e>0x1?void 0x0:_0x574d1e?_0x4e7302(_0x1e20e3,_0x335b76):_0x1e20e3,_0x1485cc=_0x312dda['length']-0x1,_0x2ccffb;_0x1485cc>=0x0;_0x1485cc--)(_0x2ccffb=_0x312dda[_0x1485cc])&&(_0x1a2874=(_0x574d1e?_0x2ccffb(_0x1e20e3,_0x335b76,_0x1a2874):_0x2ccffb(_0x1a2874))||_0x1a2874);return _0x574d1e&&_0x1a2874&&_0x26a282(_0x1e20e3,_0x335b76,_0x1a2874),_0x1a2874;},_0x5eda2b=(_0xf5249a,_0x39f46b)=>(_0x3eb16b,_0x1b1205)=>_0x39f46b(_0x3eb16b,_0x1b1205,_0xf5249a);let _0x4c380d=class{constructor(_0x5d18d7,_0x270091){const _0x24995e=_0x3ff78d;this[_0x24995e(0x45b)]=_0x5d18d7,this[_0x24995e(0x66c)]=_0x270091;}[_0x3ff78d(0x69e)](_0x5d93e9){const _0x14b0e5=_0x3ff78d;var _0x56eee7;const _0x1cf379=this[_0x14b0e5(0x45b)]['get'](_0x22ba07['DocSelectionManagerService']),_0x4de8bf=(_0x56eee7=_0x1cf379[_0x14b0e5(0x483)]())!=null?_0x56eee7:[];if(_0x4de8bf[_0x14b0e5(0x453)]===0x0)return;const _0x1802e5=_0x5d93e9[_0x14b0e5(0x4d1)],_0x3df6e6=[{'id':_0x14b0e5(0x4cb),'params':{'unitId':_0x1802e5,'actions':null,'textRanges':_0x4de8bf}}],_0x1c01ae=this[_0x14b0e5(0x66c)][_0x14b0e5(0x660)](_0x5d93e9,_0x3df6e6);if(!_0x254697['isTransformMutationsWithChangesetSuccess'](_0x1c01ae))throw _0x1c01ae[_0x14b0e5(0x421)];const _0x118ff0=_0x1c01ae[_0x14b0e5(0x4d8)][0x0][_0x14b0e5(0x4fb)][_0x14b0e5(0x349)];Array[_0x14b0e5(0x4b8)](_0x118ff0)&&_0x118ff0[_0x14b0e5(0x453)]&&_0x1cf379['replaceDocRanges'](_0x118ff0,{'unitId':_0x1802e5,'subUnitId':_0x1802e5},!0x1);}};_0x4c380d=_0x1cefea([_0x5eda2b(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236['Injector'])),_0x5eda2b(0x1,_0x254697['ITransformService'])],_0x4c380d);const _0x2b97c6=new Set([_0x3eed56['InsertSheetMutation']['id']]);function _0x45535b(_0x1f6c3b,_0x4327ef,_0x297c96,_0x568d4c,_0x2f1031){const _0xbf6219=_0x3ff78d;var _0x3dfedd,_0x1d06b0,_0x259c07,_0xbd5908;const _0xf583d1=[];for(const _0x4942e4 of _0x1f6c3b)if(_0x2b97c6[_0xbf6219(0x558)](_0x4942e4['id'])){if(_0xf583d1[_0xbf6219(0x453)]>0x0)break;_0xf583d1['push'](_0x4942e4);break;}else _0xf583d1[_0xbf6219(0x3f3)](_0x4942e4);const _0x278aae=(_0x1d06b0=(_0x3dfedd=_0x2f1031[_0xbf6219(0x2d9)]())==null?void 0x0:_0x3dfedd[_0xbf6219(0x639)])!=null?_0x1d06b0:_0xbf6219(0x6bb),_0x476851=(_0xbd5908=(_0x259c07=_0x2f1031[_0xbf6219(0x2d9)]())==null?void 0x0:_0x259c07['memberID'])!=null?_0xbd5908:_0xbf6219(0x6bb);return{'changeset':{'unitID':_0x4327ef,'type':_0x254697[_0xbf6219(0x1ff)](_0x297c96[_0xbf6219(0x23c)](_0x4327ef)),'baseRev':_0x568d4c['getCurrentRevOfUnit'](_0x4327ef),'revision':0x0,'userID':_0x278aae,'memberID':_0x476851,'mutations':_0xf583d1},'pendingMutations':_0x1f6c3b['slice'](_0xf583d1[_0xbf6219(0x453)])};}function _0x46afb6(_0x3b3f7a,_0x392096,_0x4ba920,_0x218944,_0x88d914){const _0x158707=_0x3ff78d;var _0x35f498,_0x12ef16,_0xe1ac07,_0x41f33b;const _0x21e644=[_0x3b3f7a[_0x158707(0x30b)]((_0x594e93,_0x4a9fee)=>{const _0x5ee971=_0x158707;var _0x2df99a;const {id:_0x4d2474}=_0x594e93,{id:_0x2be77b,type:_0x4f1753}=_0x4a9fee,_0x4c6b76=(_0x2df99a=_0x594e93[_0x5ee971(0x4fb)])!=null?_0x2df99a:{'actions':null},_0x1aa5a9=_0x4a9fee[_0x5ee971(0x4fb)];if(_0x4d2474&&_0x4d2474!==_0x2be77b)throw new Error('Cannot\x20assemble\x20a\x20changeset\x20from\x20multiple\x20mutations\x20of\x20different\x20types:\x20'+_0x4d2474+'\x20-\x20'+_0x2be77b+'.');return{..._0x594e93,'id':_0x2be77b,'type':_0x4f1753,'params':{'unitId':_0x1aa5a9[_0x5ee971(0x67d)],'textRanges':_0x1aa5a9[_0x5ee971(0x349)],'actions':_0x121236[_0x5ee971(0x1fc)]['compose'](_0x4c6b76['actions'],_0x1aa5a9[_0x5ee971(0x305)])}};},{})],_0x2d2e49=(_0x12ef16=(_0x35f498=_0x88d914[_0x158707(0x2d9)]())==null?void 0x0:_0x35f498[_0x158707(0x639)])!=null?_0x12ef16:_0x158707(0x6bb),_0x2b0d8=(_0x41f33b=(_0xe1ac07=_0x88d914[_0x158707(0x2d9)]())==null?void 0x0:_0xe1ac07[_0x158707(0x217)])!=null?_0x41f33b:'unknown';return{'changeset':{'unitID':_0x392096,'type':_0x254697['mapDocumentTypeToUniverType'](_0x4ba920['getUnitType'](_0x392096)),'baseRev':_0x218944[_0x158707(0x6b9)](_0x392096),'revision':0x0,'userID':_0x2d2e49,'memberID':_0x2b0d8,'mutations':_0x21e644},'pendingMutations':[]};}function _0x375337(_0x322d24,_0x3e83df){const _0x5f2170=_0x3ff78d,_0x31cb1d=new _0x2d6fea[(_0x5f2170(0x290))](0x1);return setTimeout(()=>_0x31cb1d['next'](_0x3e83df),_0x322d24),_0x31cb1d[_0x5f2170(0x37c)]()[_0x5f2170(0x252)](_0x2d6fea['take'](0x1));}const _0xdda3e5={'id':_0x3eed56['EmptyMutation']['id'],'type':_0x121236[_0x3ff78d(0x475)][_0x3ff78d(0x68f)],'params':{}};var _0x3388e5=Object[_0x3ff78d(0x675)],_0x25b497=Object[_0x3ff78d(0x570)],_0x4eaf94=(_0x4e96d4,_0x14a07d,_0x4cb439,_0x5a3fd5)=>{const _0x321b23=_0x3ff78d;for(var _0x402e2c=_0x5a3fd5>0x1?void 0x0:_0x5a3fd5?_0x25b497(_0x14a07d,_0x4cb439):_0x14a07d,_0x4cd694=_0x4e96d4[_0x321b23(0x453)]-0x1,_0x557984;_0x4cd694>=0x0;_0x4cd694--)(_0x557984=_0x4e96d4[_0x4cd694])&&(_0x402e2c=(_0x5a3fd5?_0x557984(_0x14a07d,_0x4cb439,_0x402e2c):_0x557984(_0x402e2c))||_0x402e2c);return _0x5a3fd5&&_0x402e2c&&_0x3388e5(_0x14a07d,_0x4cb439,_0x402e2c),_0x402e2c;},_0x27ab22=(_0x5b4411,_0x3ee90e)=>(_0x2f08e8,_0x3fb076)=>_0x3ee90e(_0x2f08e8,_0x3fb076,_0x5b4411),_0x5728a6=(_0x17175c=>(_0x17175c[_0x3ff78d(0x568)]=_0x3ff78d(0x60c),_0x17175c[_0x3ff78d(0x609)]=_0x3ff78d(0x463),_0x17175c['PENDING']=_0x3ff78d(0x248),_0x17175c['AWAITING']=_0x3ff78d(0x30a),_0x17175c['AWAITING_WITH_PENDING']=_0x3ff78d(0x55b),_0x17175c[_0x3ff78d(0x3e0)]=_0x3ff78d(0x595),_0x17175c[_0x3ff78d(0x5d9)]='conflict',_0x17175c[_0x3ff78d(0x275)]=_0x3ff78d(0x267),_0x17175c))(_0x5728a6||{});const _0x231e04=0xea60;class _0x346f68{constructor(_0x37b177,_0x457789,_0x54bf01,_0x447c70,_0x18cf1d,_0x18f49f,_0x52490d,_0x563848,_0x469c00){const _0xc6938a=_0x3ff78d;_0x3661de(this,_0xc6938a(0x2b1),null),_0x3661de(this,_0xc6938a(0x61e),[]),(this[_0xc6938a(0x4d1)]=_0x37b177,this[_0xc6938a(0x25f)]=_0x457789,this['_handler']=_0x18cf1d,this[_0xc6938a(0x467)]=_0x18f49f,this[_0xc6938a(0x298)]=_0x52490d,this['_revisionService']=_0x563848,this[_0xc6938a(0x563)]=_0x469c00,this[_0xc6938a(0x2b1)]=_0x54bf01,this[_0xc6938a(0x61e)]=_0x447c70);}[_0x3ff78d(0x580)](_0x151316){const _0x1ff32a=_0x3ff78d,_0x23b9b2=this[_0x1ff32a(0x682)][_0x1ff32a(0x6b9)](this[_0x1ff32a(0x4d1)]);return _0x151316['revision']>_0x23b9b2+0x1?(this['_handler']['onMissingChangesets']({'from':_0x23b9b2,'to':_0x151316['revision']-0x1}),!0x0):!0x1;}[_0x3ff78d(0x20b)](_0x1ec9c3){const _0x122cea=_0x3ff78d;this[_0x122cea(0x298)][_0x122cea(0x39c)](this['unitID'],_0x1ec9c3);}[_0x3ff78d(0x311)](_0x5a120b){const _0x2ae07c=_0x3ff78d;var _0x4b92a0,_0x2d567c;(_0x2d567c=(_0x4b92a0=this[_0x2ae07c(0x200)])['onTransformSelections'])==null||_0x2d567c[_0x2ae07c(0x28f)](_0x4b92a0,_0x5a120b);}[_0x3ff78d(0x261)](_0x2eb40d){const _0x28226e=_0x3ff78d;var _0x3b172c,_0x2e82ab;return(_0x2e82ab=(_0x3b172c=this[_0x28226e(0x200)])[_0x28226e(0x608)])==null?void 0x0:_0x2e82ab[_0x28226e(0x28f)](_0x3b172c,_0x2eb40d);}[_0x3ff78d(0x299)](_0x17a433){const _0x1948d5=_0x3ff78d;var _0x40dc01,_0x217848;return(_0x217848=(_0x40dc01=this[_0x1948d5(0x200)])[_0x1948d5(0x5dc)])==null?void 0x0:_0x217848[_0x1948d5(0x28f)](_0x40dc01,_0x17a433);}[_0x3ff78d(0x5f6)](_0x3e248b){const _0x144ac3=_0x3ff78d;var _0x2badcd,_0x206f11,_0x5ac612;return(_0x5ac612=(_0x206f11=(_0x2badcd=this[_0x144ac3(0x200)])[_0x144ac3(0x3b3)])==null?void 0x0:_0x206f11[_0x144ac3(0x28f)](_0x2badcd,_0x3e248b))!=null?_0x5ac612:_0x3e248b;}['_transformRemoteChangesetByStateCache'](_0xebf4e1){const _0x8b376a=_0x3ff78d;var _0x190526,_0x383683,_0x213473;return(_0x213473=(_0x383683=(_0x190526=this[_0x8b376a(0x200)])[_0x8b376a(0x603)])==null?void 0x0:_0x383683[_0x8b376a(0x28f)](_0x190526,_0xebf4e1))!=null?_0x213473:_0xebf4e1;}[_0x3ff78d(0x38a)](_0x35feab){const _0x4cedae=_0x3ff78d;var _0x50e1b1,_0x3d3931;if(this['type']===_0x4651ca[_0x4cedae(0x54f)]){const {unitID:_0x151348,mutations:_0x123ef7,memberID:_0x3d87bd}=_0x35feab,_0xb0876a=_0x123ef7[0x0][_0x4cedae(0x4fb)][_0x4cedae(0x349)];Array['isArray'](_0xb0876a)&&_0xb0876a[_0x4cedae(0x453)]>0x0&&((_0x3d3931=(_0x50e1b1=this[_0x4cedae(0x200)])[_0x4cedae(0x35b)])==null||_0x3d3931[_0x4cedae(0x28f)](_0x50e1b1,{'unitID':_0x151348,'memberID':_0x3d87bd,'textRanges':_0xb0876a}));}}[_0x3ff78d(0x57a)](){const _0x58d354=_0x3ff78d;this[_0x58d354(0x563)][_0x58d354(0x4f2)](this[_0x58d354(0x4d1)],this[_0x58d354(0x25f)],this[_0x58d354(0x2b1)],this[_0x58d354(0x61e)]);}[_0x3ff78d(0x6c6)](){const _0x486448=_0x3ff78d;return this[_0x486448(0x682)][_0x486448(0x6b9)](this[_0x486448(0x4d1)]);}[_0x3ff78d(0x394)](){const _0x37ae43=_0x3ff78d;this[_0x37ae43(0x682)]['incrementRevOfUnit'](this['unitID']);}[_0x3ff78d(0x34b)](_0x4ea8c4){const _0x5a4bd5=_0x3ff78d;var _0x5b3027;let _0x11eff7=this[_0x5a4bd5(0x5f6)](_0x4ea8c4);_0x11eff7=this['_transformRemoteChangesetByStateCache'](_0x11eff7);const _0x45074c=_0x121236[_0x5a4bd5(0x281)](_0x11eff7[_0x5a4bd5(0x65e)],this[_0x5a4bd5(0x467)],{'fromCollab':!0x0});if(!_0x45074c[_0x5a4bd5(0x283)])throw _0x45074c[_0x5a4bd5(0x421)]instanceof Error?_0x45074c[_0x5a4bd5(0x421)]:new Error((_0x5b3027=_0x45074c[_0x5a4bd5(0x421)])!=null?_0x5b3027:_0x5a4bd5(0x478));this['_transformIMECache'](_0x11eff7),this[_0x5a4bd5(0x299)](_0x11eff7),this['_transformUndoredo'](_0x4ea8c4),this[_0x5a4bd5(0x311)](_0x11eff7),this['_syncEditingCollabCursor'](_0x11eff7),this[_0x5a4bd5(0x394)]();}}let _0x41046e=class extends _0x346f68{constructor(_0x334ed8,_0x54ba69,_0xfd94dd,_0x6c60e0,_0xaab1c0,_0x3da04c,_0x4191d2,_0x47750b,_0x46d8df,_0x5368b0){const _0x4999eb=_0x3ff78d;super(_0x334ed8,_0x54ba69,null,[],_0xfd94dd,_0x47750b,_0x4191d2,_0x6c60e0,_0xaab1c0),_0x3661de(this,'status',_0x4999eb(0x463)),(this[_0x4999eb(0x45b)]=_0x3da04c,this[_0x4999eb(0x659)]=_0x46d8df,this[_0x4999eb(0x66c)]=_0x5368b0);}[_0x3ff78d(0x582)](_0x2065bc){const _0x4c8bad=_0x3ff78d,_0x40dcfb=this['_injector'][_0x4c8bad(0x695)](_0x219c2f,this['unitID'],this[_0x4c8bad(0x25f)],[_0x2065bc],this[_0x4c8bad(0x200)]);return _0x40dcfb[_0x4c8bad(0x403)](),_0x40dcfb['_updateLocalCache'](),_0x40dcfb;}[_0x3ff78d(0x34c)](_0x44b6f5){const _0x1e14d7=_0x3ff78d;if(this[_0x1e14d7(0x580)](_0x44b6f5))return this['_injector'][_0x1e14d7(0x695)](_0x23be32,this[_0x1e14d7(0x4d1)],this[_0x1e14d7(0x25f)],null,[],null,[_0x44b6f5],this[_0x1e14d7(0x200)]);try{const _0x33907b=this[_0x1e14d7(0x66c)]['transformMutationsWithChangeset'](_0x44b6f5,[_0xdda3e5]);if(_0x254697[_0x1e14d7(0x5b1)](_0x33907b)){const {c1Prime:_0x43113d}=_0x33907b;return this[_0x1e14d7(0x34b)](_0x43113d),this;}throw _0x33907b[_0x1e14d7(0x421)];}catch(_0x5779cb){return this[_0x1e14d7(0x659)]['error'](_0x5779cb),this[_0x1e14d7(0x527)](!0x1);}}[_0x3ff78d(0x527)](_0xe5f74){const _0x3250b3=_0x3ff78d;return this[_0x3250b3(0x45b)]['createInstance'](_0x6b884c,this[_0x3250b3(0x4d1)],this[_0x3250b3(0x25f)],null,[],this[_0x3250b3(0x200)],_0xe5f74);}['onRemoteAck'](){throw new Error('[SyncedState]:\x20received\x20acknowledgement.');}[_0x3ff78d(0x434)](){const _0x407184=_0x3ff78d;throw new Error(_0x407184(0x6b5));}['onRemoteRetry'](){return this;}[_0x3ff78d(0x2df)](){const _0x5b7e5d=_0x3ff78d;return this[_0x5b7e5d(0x45b)][_0x5b7e5d(0x695)](_0x225743,this['unitID'],this['type'],null,[],this['_handler']);}[_0x3ff78d(0x325)](){return this;}[_0x3ff78d(0x493)](){throw new Error('[SyncedState]:\x20invalid\x20calling\x20to\x20`resend`.');}[_0x3ff78d(0x55d)](){const _0x4879f1=_0x3ff78d,_0x58006c=this[_0x4879f1(0x682)][_0x4879f1(0x6b9)](this['unitID']);return this[_0x4879f1(0x200)][_0x4879f1(0x564)]({'from':_0x58006c,'to':0x0}),this['_injector'][_0x4879f1(0x695)](_0x23be32,this[_0x4879f1(0x4d1)],this[_0x4879f1(0x25f)],null,[],null,[],this[_0x4879f1(0x200)]);}};_0x41046e=_0x4eaf94([_0x27ab22(0x3,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0x4,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0x5,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x27ab22(0x6,_0x121236[_0x3ff78d(0x5b7)]),_0x27ab22(0x7,_0x121236[_0x3ff78d(0x2eb)]),_0x27ab22(0x8,_0x121236['ILogService']),_0x27ab22(0x9,_0x254697[_0x3ff78d(0x58c)])],_0x41046e);let _0x219c2f=class extends _0x346f68{constructor(_0x9dc531,_0x2a7cfb,_0x45d8d5,_0x5e470f,_0x52d5c0,_0x3c6c36,_0x514311,_0xf6182a,_0x2c14e7,_0x4fb0a4,_0x1596d8,_0x2ce71d,_0x820835,_0x51f6e8){const _0x1063cb=_0x3ff78d;super(_0x9dc531,_0x2a7cfb,null,_0x45d8d5,_0x5e470f,_0x4fb0a4,_0x51f6e8,_0x3c6c36,_0x514311),_0x3661de(this,_0x1063cb(0x68a),_0x1063cb(0x248)),_0x3661de(this,_0x1063cb(0x271),null),_0x3661de(this,'_sendingTimer',null),(this[_0x1063cb(0x45b)]=_0x52d5c0,this[_0x1063cb(0x257)]=_0xf6182a,this['_logService']=_0x2c14e7,this['_configService']=_0x1596d8,this['_transformService']=_0x2ce71d,this[_0x1063cb(0x22b)]=_0x820835);}['appendMutation'](_0x3a42a0){const _0x4645c2=_0x3ff78d;return this[_0x4645c2(0x61e)][_0x4645c2(0x3f3)](_0x3a42a0),this[_0x4645c2(0x57a)](),this;}[_0x3ff78d(0x34c)](_0x2874){const _0x383d10=_0x3ff78d;if(this[_0x383d10(0x580)](_0x2874))return this[_0x383d10(0x646)](),this[_0x383d10(0x45b)][_0x383d10(0x695)](_0x23be32,this['unitID'],this[_0x383d10(0x25f)],null,this[_0x383d10(0x61e)],null,[_0x2874],this['_handler']);try{const _0x33cb90=this[_0x383d10(0x66c)][_0x383d10(0x660)](_0x2874,this[_0x383d10(0x61e)]);if(_0x254697[_0x383d10(0x5b1)](_0x33cb90)){const {c1Prime:_0x5f56c2,m2Prime:_0x50ccd2}=_0x33cb90;this['_executeRemoteChangeset'](_0x5f56c2);const _0x3f4ac1=this[_0x383d10(0x45b)][_0x383d10(0x695)](_0x219c2f,this[_0x383d10(0x4d1)],this[_0x383d10(0x25f)],_0x50ccd2,this[_0x383d10(0x200)]);return this[_0x383d10(0x646)](),_0x3f4ac1[_0x383d10(0x403)](this['_scheduleTimestamp']?Math[_0x383d10(0x2f9)](0x0,new Date()[_0x383d10(0x29f)]()-this[_0x383d10(0x271)]):this[_0x383d10(0x371)]()),_0x3f4ac1;}throw _0x33cb90[_0x383d10(0x421)];}catch(_0x479e9d){return this['_logService'][_0x383d10(0x421)](_0x479e9d),this[_0x383d10(0x527)](!0x1);}}['onRemoteAck'](){const _0xa24add=_0x3ff78d;throw new Error(_0xa24add(0x2a6));}[_0x3ff78d(0x434)](){const _0x43f46d=_0x3ff78d;throw new Error(_0x43f46d(0x530));}[_0x3ff78d(0x6c5)](){return this;}['toggleOffline'](){const _0x5772b1=_0x3ff78d;return this['_clearScheduledTask'](),this[_0x5772b1(0x45b)][_0x5772b1(0x695)](_0x225743,this[_0x5772b1(0x4d1)],this[_0x5772b1(0x25f)],null,this[_0x5772b1(0x61e)],this[_0x5772b1(0x200)]);}[_0x3ff78d(0x325)](){return this;}[_0x3ff78d(0x403)](_0x2ad1a5){const _0x1ddd39=_0x3ff78d,_0x553f00=_0x2ad1a5!=null?_0x2ad1a5:this[_0x1ddd39(0x371)]();this['_scheduleTimestamp']=new Date()[_0x1ddd39(0x29f)](),this[_0x1ddd39(0x226)]=window['setTimeout'](()=>{const _0x32402d=_0x1ddd39;this[_0x32402d(0x646)]();let _0x1eb005=null;switch(this[_0x32402d(0x25f)]){case _0x4651ca['UNIVER_SHEET']:{_0x1eb005=_0x45535b(this[_0x32402d(0x61e)],this[_0x32402d(0x4d1)],this[_0x32402d(0x22b)],this['_revisionService'],this[_0x32402d(0x257)]);break;}case _0x4651ca[_0x32402d(0x54f)]:{this[_0x32402d(0x61e)][_0x32402d(0x2bd)](_0x4bed5a=>_0x4bed5a['id']===_0x22ba07[_0x32402d(0x375)]['id'])?_0x1eb005=_0x46afb6(this[_0x32402d(0x61e)],this['unitID'],this[_0x32402d(0x22b)],this[_0x32402d(0x682)],this[_0x32402d(0x257)]):_0x1eb005=_0x45535b(this[_0x32402d(0x61e)],this[_0x32402d(0x4d1)],this[_0x32402d(0x22b)],this[_0x32402d(0x682)],this[_0x32402d(0x257)]);break;}default:throw new Error('[PendingState]:\x20unhandled\x20univer\x20type:\x20'+this[_0x32402d(0x25f)]+_0x32402d(0x2f5));}const {changeset:_0xe750b4,pendingMutations:_0x5c8208}=_0x1eb005;this[_0x32402d(0x200)][_0x32402d(0x4bb)](_0xe750b4);const _0x443de6=_0x5c8208['length']?this[_0x32402d(0x45b)]['createInstance'](_0x139912,this['unitID'],this['type'],_0xe750b4,_0x5c8208,this['_handler'],void 0x0):this['_injector'][_0x32402d(0x695)](_0x1bd38f,this[_0x32402d(0x4d1)],this[_0x32402d(0x25f)],_0xe750b4,this[_0x32402d(0x200)]);_0x443de6[_0x32402d(0x57a)](),this[_0x32402d(0x200)]['onStateChange'](this,_0x443de6);},_0x553f00);}[_0x3ff78d(0x371)](){const _0x2264b4=_0x3ff78d;var _0x55bcc3;const _0x2825eb=this[_0x2264b4(0x4da)][_0x2264b4(0x606)](_0x304b09);return(_0x55bcc3=_0x2825eb==null?void 0x0:_0x2825eb[_0x2264b4(0x265)])!=null?_0x55bcc3:0x7d0;}['resend'](){const _0x1dd32a=_0x3ff78d;throw new Error(_0x1dd32a(0x348));}[_0x3ff78d(0x646)](){const _0x4a059e=_0x3ff78d;this['_sendingTimer']!=null&&(clearTimeout(this[_0x4a059e(0x226)]),this['_sendingTimer']=null);}[_0x3ff78d(0x527)](_0x5e7a15){const _0x488a27=_0x3ff78d;return this[_0x488a27(0x646)](),this['_injector']['createInstance'](_0x6b884c,this[_0x488a27(0x4d1)],this[_0x488a27(0x25f)],null,this[_0x488a27(0x61e)],this[_0x488a27(0x200)],_0x5e7a15);}};_0x219c2f=_0x4eaf94([_0x27ab22(0x4,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x27ab22(0x5,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0x6,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0x7,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x21c)])),_0x27ab22(0x8,_0x121236['ILogService']),_0x27ab22(0x9,_0x121236[_0x3ff78d(0x2eb)]),_0x27ab22(0xa,_0x121236[_0x3ff78d(0x3f8)]),_0x27ab22(0xb,_0x254697[_0x3ff78d(0x58c)]),_0x27ab22(0xc,_0x121236[_0x3ff78d(0x289)]),_0x27ab22(0xd,_0x121236[_0x3ff78d(0x5b7)])],_0x219c2f);let _0x1bd38f=class extends _0x346f68{constructor(_0x3bb7bb,_0x1964c6,_0x383ce2,_0x2326bd,_0x93fb75,_0x419fa3,_0x36b367,_0x27cfae,_0x357268,_0x496038,_0x321e96){const _0x1574b0=_0x3ff78d;super(_0x3bb7bb,_0x1964c6,_0x383ce2,[],_0x2326bd,_0x27cfae,_0x321e96,_0x419fa3,_0x36b367),_0x3661de(this,_0x1574b0(0x68a),'awaiting'),_0x3661de(this,'_resendTimeout',0x0),_0x3661de(this,_0x1574b0(0x4ff)),_0x3661de(this,'_sender'),(this[_0x1574b0(0x45b)]=_0x93fb75,this[_0x1574b0(0x659)]=_0x357268,this[_0x1574b0(0x66c)]=_0x496038);}[_0x3ff78d(0x582)](_0x50a62e){const _0x59f4a6=_0x3ff78d;this[_0x59f4a6(0x646)]();const _0x33f011=this['_injector']['createInstance'](_0x139912,this[_0x59f4a6(0x4d1)],this[_0x59f4a6(0x25f)],this[_0x59f4a6(0x2b1)],[_0x50a62e],this[_0x59f4a6(0x200)],this['_resendTimer']);return _0x33f011['_updateLocalCache'](),_0x33f011;}[_0x3ff78d(0x34c)](_0x1d7a9c){const _0x3ae019=_0x3ff78d;if(this[_0x3ae019(0x580)](_0x1d7a9c))return this['_clearScheduledTask'](),this[_0x3ae019(0x45b)][_0x3ae019(0x695)](_0x23be32,this[_0x3ae019(0x4d1)],this[_0x3ae019(0x25f)],this['_awaitingChangeset'],[],null,[_0x1d7a9c],this['_handler']);try{const _0x14b2d7=this[_0x3ae019(0x66c)][_0x3ae019(0x699)]([_0x1d7a9c],[this[_0x3ae019(0x2b1)]],!0x1);if(_0x254697[_0x3ae019(0x657)](_0x14b2d7)){const {c1Prime:_0x17a23a,c2Prime:_0x39e6c1}=_0x14b2d7;this[_0x3ae019(0x34b)](_0x17a23a[0x0]),_0x39e6c1[0x0][_0x3ae019(0x329)]=this[_0x3ae019(0x6c6)](),this[_0x3ae019(0x646)]();const _0x241092=this[_0x3ae019(0x45b)][_0x3ae019(0x695)](_0x1bd38f,this[_0x3ae019(0x4d1)],this[_0x3ae019(0x25f)],_0x39e6c1[0x0],this[_0x3ae019(0x200)]);return _0x241092['_updateLocalCache'](),_0x241092;}return this[_0x3ae019(0x527)](!0x1);}catch(_0x17c54e){return this[_0x3ae019(0x659)][_0x3ae019(0x421)](_0x17c54e),this[_0x3ae019(0x527)](!0x1);}}[_0x3ff78d(0x616)](_0x460180){const _0x2f83b5=_0x3ff78d;this['_clearScheduledTask']();const _0xa044d1=this[_0x2f83b5(0x682)][_0x2f83b5(0x6b9)](this[_0x2f83b5(0x4d1)]);if(_0x460180['revision']<_0xa044d1-0x1)return this;if(this[_0x2f83b5(0x580)](_0x460180))return this[_0x2f83b5(0x45b)][_0x2f83b5(0x695)](_0x23be32,this[_0x2f83b5(0x4d1)],this[_0x2f83b5(0x25f)],null,[],this[_0x2f83b5(0x2b1)],[],this[_0x2f83b5(0x200)]);this[_0x2f83b5(0x394)]();const _0x36338b=this[_0x2f83b5(0x45b)][_0x2f83b5(0x695)](_0x41046e,this[_0x2f83b5(0x4d1)],this[_0x2f83b5(0x25f)],this[_0x2f83b5(0x200)]);return _0x36338b[_0x2f83b5(0x57a)](),_0x36338b;}[_0x3ff78d(0x434)](_0x3ec9a5){const _0x328cb3=_0x3ff78d;return this[_0x328cb3(0x527)](!!(_0x3ec9a5!=null&&_0x3ec9a5['isPermissionRej']));}['onRemoteRetry'](_0x25d6f8){const _0x3e5050=_0x3ff78d;return this['_resendTimeout']>_0x231e04?this['toggleOffline']():(this[_0x3e5050(0x4ff)]=_0x375337(this[_0x3e5050(0x459)],{'timeout':this[_0x3e5050(0x459)],'reqId':_0x25d6f8['reqId']}),this[_0x3e5050(0x2f4)]=this['_resendTimer'][_0x3e5050(0x4e0)](({reqId:_0x55d4c0,timeout:_0x4dfd2a})=>{const _0x7590ec=_0x3e5050;this[_0x7590ec(0x2db)](_0x55d4c0,_0x4dfd2a);}),this);}[_0x3ff78d(0x2df)](){const _0x6a9a78=_0x3ff78d;return this[_0x6a9a78(0x646)](),this['_injector']['createInstance'](_0x225743,this['unitID'],this[_0x6a9a78(0x25f)],this[_0x6a9a78(0x2b1)],[],this[_0x6a9a78(0x200)]);}[_0x3ff78d(0x325)](){return this;}[_0x3ff78d(0x493)](){const _0x44d773=_0x3ff78d;this['_handler']['onSendChangeset'](this[_0x44d773(0x2b1)]);}['_onConflict'](_0x498e3f){const _0x135158=_0x3ff78d;return this[_0x135158(0x646)](),this[_0x135158(0x45b)][_0x135158(0x695)](_0x6b884c,this[_0x135158(0x4d1)],this[_0x135158(0x25f)],this[_0x135158(0x2b1)],[],this[_0x135158(0x200)],_0x498e3f);}[_0x3ff78d(0x2db)](_0x38c3f2,_0x2b791b){const _0x3cf326=_0x3ff78d;var _0x250b3c;_0x38c3f2===((_0x250b3c=this['_awaitingChangeset'])==null?void 0x0:_0x250b3c[_0x3cf326(0x2c4)])&&(this[_0x3cf326(0x493)](),this[_0x3cf326(0x459)]=_0x2b791b===0x0?0x3e8:_0x2b791b*0x2);}['_clearScheduledTask'](){const _0x1c021a=_0x3ff78d;var _0x2c7149;(_0x2c7149=this[_0x1c021a(0x2f4)])==null||_0x2c7149['unsubscribe'](),this[_0x1c021a(0x459)]=0x0;}};_0x1bd38f=_0x4eaf94([_0x27ab22(0x4,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x27ab22(0x5,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0x6,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0x7,_0x121236[_0x3ff78d(0x2eb)]),_0x27ab22(0x8,_0x121236[_0x3ff78d(0x3fa)]),_0x27ab22(0x9,_0x254697[_0x3ff78d(0x58c)]),_0x27ab22(0xa,_0x121236['IUndoRedoService'])],_0x1bd38f);let _0x139912=class extends _0x346f68{constructor(_0x4915c8,_0x34680a,_0x37ee08,_0x159b3f,_0x4263ca,_0x1adfc9,_0x3a280d,_0x12efa3,_0x22e0e9,_0x4a511b,_0x589bed,_0x3f21ee,_0x190a39){const _0x490ae4=_0x3ff78d;super(_0x4915c8,_0x34680a,_0x37ee08,_0x159b3f,_0x4263ca,_0x4a511b,_0x190a39,_0x12efa3,_0x22e0e9),_0x3661de(this,_0x490ae4(0x68a),_0x490ae4(0x55b)),_0x3661de(this,_0x490ae4(0x459),0x0),_0x3661de(this,_0x490ae4(0x4ff)),_0x3661de(this,_0x490ae4(0x2f4)),(this[_0x490ae4(0x45b)]=_0x3a280d,this[_0x490ae4(0x659)]=_0x589bed,this[_0x490ae4(0x66c)]=_0x3f21ee,_0x1adfc9&&(this[_0x490ae4(0x4ff)]=_0x1adfc9,this[_0x490ae4(0x2f4)]=this['_resendTimer']['subscribe'](({reqId:_0x5459b5,timeout:_0x12aa07})=>{const _0x29f2fc=_0x490ae4;this[_0x29f2fc(0x2db)](_0x5459b5,_0x12aa07);})));}[_0x3ff78d(0x582)](_0x718662){const _0x210e31=_0x3ff78d;return this[_0x210e31(0x61e)][_0x210e31(0x3f3)](_0x718662),this;}['onRemoteChangeset'](_0x44e7d3){const _0x1a7865=_0x3ff78d;if(this[_0x1a7865(0x580)](_0x44e7d3))return this[_0x1a7865(0x646)](),this[_0x1a7865(0x45b)][_0x1a7865(0x695)](_0x23be32,this[_0x1a7865(0x4d1)],this[_0x1a7865(0x25f)],this[_0x1a7865(0x2b1)],this[_0x1a7865(0x61e)],null,[_0x44e7d3],this['_handler']);try{const _0x545193=this['_transformService'][_0x1a7865(0x699)]([_0x44e7d3],[this[_0x1a7865(0x2b1)]],!0x1);if(_0x254697[_0x1a7865(0x657)](_0x545193)){const {c1Prime:_0xeed9e,c2Prime:_0xf275e}=_0x545193,_0x2b685d=this[_0x1a7865(0x66c)]['transformMutationsWithChangeset'](_0xeed9e[0x0],this[_0x1a7865(0x61e)]);if(_0x254697[_0x1a7865(0x5b1)](_0x2b685d)){const {c1Prime:_0x1b2aad,m2Prime:_0x150b51}=_0x2b685d;return this[_0x1a7865(0x34b)](_0x1b2aad),_0xf275e[0x0][_0x1a7865(0x329)]=this[_0x1a7865(0x6c6)](),this['_clearScheduledTask'](),this[_0x1a7865(0x45b)][_0x1a7865(0x695)](_0x139912,this[_0x1a7865(0x4d1)],this[_0x1a7865(0x25f)],_0xf275e[0x0],_0x150b51,this[_0x1a7865(0x200)],void 0x0);}throw _0x2b685d[_0x1a7865(0x421)];}throw _0x545193[_0x1a7865(0x421)];}catch(_0x29ea56){return this['_logService'][_0x1a7865(0x421)](_0x29ea56),this[_0x1a7865(0x527)](!0x1);}}[_0x3ff78d(0x616)](_0x273d33){const _0x4c6d52=_0x3ff78d;if(this['_clearScheduledTask'](),this[_0x4c6d52(0x580)](_0x273d33))return this[_0x4c6d52(0x45b)]['createInstance'](_0x23be32,this['unitID'],this[_0x4c6d52(0x25f)],null,this['_pendingMutations'],this[_0x4c6d52(0x2b1)],[],this[_0x4c6d52(0x200)]);this[_0x4c6d52(0x394)]();const _0x35111c=this[_0x4c6d52(0x45b)]['createInstance'](_0x219c2f,this[_0x4c6d52(0x4d1)],this[_0x4c6d52(0x25f)],this[_0x4c6d52(0x61e)],this['_handler']);return _0x35111c['_schedule'](),_0x35111c['_updateLocalCache'](),_0x35111c;}[_0x3ff78d(0x434)](_0x3ad46d){const _0x3d8f2a=_0x3ff78d;return this[_0x3d8f2a(0x527)](!!(_0x3ad46d!=null&&_0x3ad46d[_0x3d8f2a(0x641)]));}[_0x3ff78d(0x6c5)](_0xb0afc1){const _0x54a7f2=_0x3ff78d;return this[_0x54a7f2(0x459)]>_0x231e04?this[_0x54a7f2(0x2df)]():(this[_0x54a7f2(0x4ff)]=_0x375337(this[_0x54a7f2(0x459)],{'timeout':this[_0x54a7f2(0x459)],'reqId':_0xb0afc1[_0x54a7f2(0x2c4)]}),this[_0x54a7f2(0x2f4)]=this[_0x54a7f2(0x4ff)][_0x54a7f2(0x4e0)](({reqId:_0x140deb,timeout:_0x2e3b1b})=>{const _0xa9e217=_0x54a7f2;this[_0xa9e217(0x2db)](_0x140deb,_0x2e3b1b);}),this);}[_0x3ff78d(0x2df)](){const _0x56d5cb=_0x3ff78d;return this[_0x56d5cb(0x646)](),this[_0x56d5cb(0x45b)][_0x56d5cb(0x695)](_0x225743,this[_0x56d5cb(0x4d1)],this[_0x56d5cb(0x25f)],this[_0x56d5cb(0x2b1)],this[_0x56d5cb(0x61e)],this[_0x56d5cb(0x200)]);}[_0x3ff78d(0x325)](){return this;}['resend'](){const _0xa700e4=_0x3ff78d;this[_0xa700e4(0x200)]['onSendChangeset'](this[_0xa700e4(0x2b1)]);}[_0x3ff78d(0x527)](_0x260802){const _0x4af086=_0x3ff78d;return this[_0x4af086(0x646)](),this[_0x4af086(0x45b)]['createInstance'](_0x6b884c,this[_0x4af086(0x4d1)],this[_0x4af086(0x25f)],null,this[_0x4af086(0x61e)],this[_0x4af086(0x200)],_0x260802);}[_0x3ff78d(0x2db)](_0x3b7847,_0x3f083f){const _0x4ec85=_0x3ff78d;var _0x4b9973;_0x3b7847===((_0x4b9973=this[_0x4ec85(0x2b1)])==null?void 0x0:_0x4b9973[_0x4ec85(0x2c4)])&&(this['resend'](),this[_0x4ec85(0x459)]=_0x3f083f===0x0?0x3e8:_0x3f083f*0x2);}['_clearScheduledTask'](){var _0x25795c;(_0x25795c=this['_sender'])==null||_0x25795c['unsubscribe'](),this['_resendTimeout']=0x0;}};_0x139912=_0x4eaf94([_0x27ab22(0x6,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x27ab22(0x7,_0x121236['Inject'](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0x8,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0x9,_0x121236[_0x3ff78d(0x2eb)]),_0x27ab22(0xa,_0x121236[_0x3ff78d(0x3fa)]),_0x27ab22(0xb,_0x254697[_0x3ff78d(0x58c)]),_0x27ab22(0xc,_0x121236[_0x3ff78d(0x5b7)])],_0x139912);let _0x6b884c=class extends _0x346f68{constructor(_0x640672,_0x3b15cc,_0x396fc0,_0x13f1fe,_0x5d1e33,_0x32be6f=!0x1,_0x2cb0c5,_0x1884b3,_0x529b4a,_0x1b590b,_0x54a305,_0x35bca7,_0x109c14){const _0xf011e7=_0x3ff78d;super(_0x640672,_0x3b15cc,_0x396fc0,_0x13f1fe,_0x5d1e33,_0x1884b3,_0x529b4a,_0x54a305,_0x1b590b),_0x3661de(this,_0xf011e7(0x68a),_0xf011e7(0x504)),(this[_0xf011e7(0x443)]=_0x32be6f,this[_0xf011e7(0x212)]=_0x2cb0c5,this[_0xf011e7(0x244)]=_0x35bca7,this[_0xf011e7(0x420)]=_0x109c14,this[_0xf011e7(0x224)](),this[_0xf011e7(0x5af)](),this[_0xf011e7(0x369)]());}[_0x3ff78d(0x582)](){return this;}[_0x3ff78d(0x34c)](){return this;}[_0x3ff78d(0x616)](){return this;}['onRemoteRej'](){return this;}['onRemoteRetry'](){return this;}[_0x3ff78d(0x2df)](){return this;}[_0x3ff78d(0x325)](){return this;}['resend'](){const _0x71880b=_0x3ff78d;throw new Error(_0x71880b(0x346));}[_0x3ff78d(0x5af)](){const _0x1a04ed=_0x3ff78d;this[_0x1a04ed(0x563)][_0x1a04ed(0x4f2)](this['unitID'],this[_0x1a04ed(0x25f)],null,[]);}['_showConflictNotification'](){const _0x32d718=_0x3ff78d;this['_isPermissionRej']?this[_0x32d718(0x420)][_0x32d718(0x35d)]({'title':this[_0x32d718(0x244)]['t'](_0x32d718(0x3b6)),'content':this['_localeService']['t'](_0x32d718(0x47c)),'type':_0x32d718(0x421),'duration':0x0}):this['_notificationService']['show']({'title':this[_0x32d718(0x244)]['t'](_0x32d718(0x3d4)),'content':this['_localeService']['t'](_0x32d718(0x355)),'type':'error','duration':0x0});}[_0x3ff78d(0x369)](){const _0x538a7f=_0x3ff78d;this[_0x538a7f(0x212)][_0x538a7f(0x3b5)](new _0x3eed56[(_0x538a7f(0x536))](this[_0x538a7f(0x4d1)])['id'],!0x1);}};_0x6b884c=_0x4eaf94([_0x27ab22(0x6,_0x121236[_0x3ff78d(0x64f)](_0x121236['IPermissionService'])),_0x27ab22(0x7,_0x121236['ICommandService']),_0x27ab22(0x8,_0x121236[_0x3ff78d(0x5b7)]),_0x27ab22(0x9,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0xa,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0xb,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)])),_0x27ab22(0xc,_0x3f9dc7[_0x3ff78d(0x273)])],_0x6b884c);let _0x225743=class extends _0x346f68{constructor(_0x437d61,_0x3acfa9,_0x6846d0,_0x1e603b,_0x5cf742,_0x4d04d2,_0x4d6da1,_0x1b54b4,_0x2e7dc3,_0x5103bb){const _0x41add0=_0x3ff78d;super(_0x437d61,_0x3acfa9,_0x6846d0,_0x1e603b,_0x5cf742,_0x2e7dc3,_0x5103bb,_0x4d6da1,_0x1b54b4),_0x3661de(this,_0x41add0(0x68a),_0x41add0(0x267)),this[_0x41add0(0x45b)]=_0x4d04d2;}['appendMutation'](_0x4b9627){const _0x1d7e45=_0x3ff78d;return this[_0x1d7e45(0x61e)]['push'](_0x4b9627),this['_updateLocalCache'](),this;}[_0x3ff78d(0x34c)](_0xa82b96){const _0x4983e2=_0x3ff78d;throw new Error(_0x4983e2(0x391));}[_0x3ff78d(0x616)](){const _0x1e6746=_0x3ff78d;throw new Error(_0x1e6746(0x45a));}['onRemoteRej'](){throw new Error('[OfflineState]:\x20received\x20rejection.');}[_0x3ff78d(0x6c5)](){return this;}[_0x3ff78d(0x2df)](){return this;}[_0x3ff78d(0x325)](){const _0x5035df=_0x3ff78d,{_injector:_0x3e4406,_pendingMutations:_0xc56ff8,_awaitingChangeset:_0x101e08,unitID:_0x2df517,_handler:_0x3004a2,type:_0x419924}=this,_0x403ab1=_0x19b095(_0x3e4406,_0x2df517,_0x419924,_0x101e08,_0xc56ff8,_0x3004a2);return _0x403ab1 instanceof _0x219c2f?_0x403ab1[_0x5035df(0x403)]():(_0x403ab1 instanceof _0x139912||_0x403ab1 instanceof _0x1bd38f)&&_0x403ab1[_0x5035df(0x493)](),_0x403ab1;}['resend'](){const _0x3484eb=_0x3ff78d;throw new Error(_0x3484eb(0x60a));}};_0x225743=_0x4eaf94([_0x27ab22(0x5,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x27ab22(0x6,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0x7,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0x8,_0x121236[_0x3ff78d(0x2eb)]),_0x27ab22(0x9,_0x121236['IUndoRedoService'])],_0x225743);let _0x23be32=class extends _0x346f68{constructor(_0x45f727,_0x11274f,_0x18eaba,_0x22cb73,_0x5053d4,_0x489e43,_0x5d8428,_0x2160de,_0x1c67df,_0x13e035,_0x31dab1,_0x1afd56,_0x4d9fe7,_0x20cc86){const _0x4818ee=_0x3ff78d;super(_0x45f727,_0x11274f,_0x18eaba,_0x22cb73,_0x5d8428,_0x1afd56,_0x4d9fe7,_0x1c67df,_0x13e035),_0x3661de(this,_0x4818ee(0x68a),_0x4818ee(0x595)),(this[_0x4818ee(0x45c)]=_0x5053d4,this[_0x4818ee(0x3b8)]=_0x489e43,this[_0x4818ee(0x45b)]=_0x2160de,this[_0x4818ee(0x659)]=_0x31dab1,this['_transformService']=_0x20cc86);}[_0x3ff78d(0x4dd)](_0x4c6150){const _0x1e387f=_0x3ff78d;try{const _0x4802c9=[..._0x4c6150,...this[_0x1e387f(0x3b8)]],_0x358695=[this[_0x1e387f(0x2b1)]||this[_0x1e387f(0x45c)]]['filter'](_0x4c76d4=>!!_0x4c76d4);let _0x310294,_0x426e51;if(_0x358695[_0x1e387f(0x453)]){const _0x1f2d80=this[_0x1e387f(0x66c)][_0x1e387f(0x699)](_0x4802c9,_0x358695,!0x1);if(!_0x254697[_0x1e387f(0x657)](_0x1f2d80))throw _0x1f2d80[_0x1e387f(0x421)];_0x310294=_0x1f2d80[_0x1e387f(0x33a)],_0x426e51=_0x1f2d80[_0x1e387f(0x263)];}else _0x310294=_0x4802c9,_0x426e51=[];let _0xdea1f2=this['_pendingMutations'];_0x310294[_0x1e387f(0x6c3)](_0x4b3d35=>{const _0x586133=_0x1e387f;let _0x4f33d1;if(_0xdea1f2[_0x586133(0x453)]){const _0x19e245=this[_0x586133(0x66c)]['transformMutationsWithChangeset'](_0x4b3d35,_0xdea1f2);if(!_0x254697['isTransformMutationsWithChangesetSuccess'](_0x19e245))throw _0x19e245[_0x586133(0x421)];_0x4f33d1=_0x19e245[_0x586133(0x33a)],_0xdea1f2=_0x19e245['m2Prime'];}else _0x4f33d1=_0x4b3d35;this[_0x586133(0x34b)](_0x4f33d1);}),this[_0x1e387f(0x45c)]&&this[_0x1e387f(0x394)](),this['_awaitingChangeset']&&_0x426e51[_0x1e387f(0x453)]&&(_0x426e51[0x0][_0x1e387f(0x329)]=this['_getCurrentRevision']());let _0x3a9749;if(this[_0x1e387f(0x2b1)]&&_0xdea1f2['length']!==0x0)_0x3a9749=this['_injector'][_0x1e387f(0x695)](_0x139912,this[_0x1e387f(0x4d1)],this[_0x1e387f(0x25f)],_0x426e51[0x0],_0xdea1f2,this[_0x1e387f(0x200)],void 0x0);else{if(this[_0x1e387f(0x2b1)]&&_0xdea1f2[_0x1e387f(0x453)]===0x0)_0x426e51[0x0]['baseRev']=this[_0x1e387f(0x6c6)](),_0x3a9749=this[_0x1e387f(0x45b)][_0x1e387f(0x695)](_0x1bd38f,this[_0x1e387f(0x4d1)],this[_0x1e387f(0x25f)],_0x426e51[0x0],this['_handler']);else{if(_0xdea1f2[_0x1e387f(0x453)]!==0x0){const _0xc9732=this[_0x1e387f(0x45b)]['createInstance'](_0x219c2f,this[_0x1e387f(0x4d1)],this[_0x1e387f(0x25f)],_0xdea1f2,this['_handler']);_0xc9732[_0x1e387f(0x403)](),_0x3a9749=_0xc9732;}else _0x3a9749=this[_0x1e387f(0x45b)]['createInstance'](_0x41046e,this['unitID'],this[_0x1e387f(0x25f)],this[_0x1e387f(0x200)]);}}return _0x3a9749[_0x1e387f(0x57a)](),_0x3a9749;}catch(_0x3cdb01){return this['_logService'][_0x1e387f(0x421)](_0x1e387f(0x4fd),_0x1e387f(0x4aa),_0x3cdb01),this[_0x1e387f(0x45b)][_0x1e387f(0x695)](_0x6b884c,this[_0x1e387f(0x4d1)],this[_0x1e387f(0x25f)],this[_0x1e387f(0x2b1)],this[_0x1e387f(0x61e)],this[_0x1e387f(0x200)],!0x1);}}[_0x3ff78d(0x493)](){const _0x2348f1=_0x3ff78d;throw new Error(_0x2348f1(0x27d));}[_0x3ff78d(0x582)](_0x1912ed){const _0x181eb5=_0x3ff78d;return this[_0x181eb5(0x61e)][_0x181eb5(0x3f3)](_0x1912ed),this;}[_0x3ff78d(0x34c)](_0x10edc1){return this['_queuedRemoteChangesets']['push'](_0x10edc1),this;}['onRemoteAck'](_0x3b5cf8){const _0x455886=_0x3ff78d;if(this[_0x455886(0x2b1)])return this[_0x455886(0x45c)]=this[_0x455886(0x2b1)],this[_0x455886(0x2b1)]=null,this;throw new Error(_0x455886(0x2c0));}[_0x3ff78d(0x434)](_0x3cae21){const _0x3e9aa7=_0x3ff78d;return this[_0x3e9aa7(0x527)](!!(_0x3cae21!=null&&_0x3cae21[_0x3e9aa7(0x641)]));}[_0x3ff78d(0x6c5)](){return this;}[_0x3ff78d(0x2df)](){const _0x419b83=_0x3ff78d;return this['_injector'][_0x419b83(0x695)](_0x225743,this[_0x419b83(0x4d1)],this[_0x419b83(0x25f)],this[_0x419b83(0x2b1)],this['_pendingMutations'],this['_handler']);}['toggleOnline'](){return this;}[_0x3ff78d(0x527)](_0x4e2dfd){const _0x2688c1=_0x3ff78d;return this[_0x2688c1(0x45b)][_0x2688c1(0x695)](_0x6b884c,this[_0x2688c1(0x4d1)],this[_0x2688c1(0x25f)],this[_0x2688c1(0x2b1)],this[_0x2688c1(0x61e)],this[_0x2688c1(0x200)],_0x4e2dfd);}};_0x23be32=_0x4eaf94([_0x27ab22(0x7,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x27ab22(0x8,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x27ab22(0x9,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x544)])),_0x27ab22(0xa,_0x121236['ILogService']),_0x27ab22(0xb,_0x121236[_0x3ff78d(0x2eb)]),_0x27ab22(0xc,_0x121236['IUndoRedoService']),_0x27ab22(0xd,_0x254697['ITransformService'])],_0x23be32);function _0x19b095(_0x940a82,_0x212b2d,_0x455fbb,_0x359637,_0x5abb4a,_0x22a90a){const _0x597f29=_0x3ff78d;return _0x359637&&_0x5abb4a[_0x597f29(0x453)]?_0x940a82[_0x597f29(0x695)](_0x139912,_0x212b2d,_0x455fbb,_0x359637,_0x5abb4a,_0x22a90a,void 0x0):_0x359637?_0x940a82[_0x597f29(0x695)](_0x1bd38f,_0x212b2d,_0x455fbb,_0x359637,_0x22a90a):_0x5abb4a['length']?_0x940a82[_0x597f29(0x695)](_0x219c2f,_0x212b2d,_0x455fbb,_0x5abb4a,_0x22a90a):_0x940a82[_0x597f29(0x695)](_0x41046e,_0x212b2d,_0x455fbb,_0x22a90a);}var _0x5ddaa3=Object[_0x3ff78d(0x675)],_0x1e8902=Object[_0x3ff78d(0x570)],_0x4da75a=(_0x4b3898,_0x931193,_0x4fb2a2,_0x484238)=>{const _0x25cfa0=_0x3ff78d;for(var _0x24822f=_0x484238>0x1?void 0x0:_0x484238?_0x1e8902(_0x931193,_0x4fb2a2):_0x931193,_0xe38109=_0x4b3898[_0x25cfa0(0x453)]-0x1,_0x45bf60;_0xe38109>=0x0;_0xe38109--)(_0x45bf60=_0x4b3898[_0xe38109])&&(_0x24822f=(_0x484238?_0x45bf60(_0x931193,_0x4fb2a2,_0x24822f):_0x45bf60(_0x24822f))||_0x24822f);return _0x484238&&_0x24822f&&_0x5ddaa3(_0x931193,_0x4fb2a2,_0x24822f),_0x24822f;},_0x3a6524=(_0x4cc5be,_0x307c96)=>(_0x101c22,_0x51757d)=>_0x307c96(_0x101c22,_0x51757d,_0x4cc5be);_0x1e9522['CollaborationEntity']=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x240d22,_0x1cb940,_0x1700a9,_0x3e031d,_0x5d2408,_0x50bb6e,_0x49c820,_0xc2f859,_0x3345d2,_0x457b2f,_0x37dd4f,_0x175ff1,_0x1b9e12){const _0x2ee909=_0x3ff78d;super(),_0x3661de(this,_0x2ee909(0x4ef),new _0x2d6fea[(_0x2ee909(0x3d6))](null)),_0x3661de(this,_0x2ee909(0x1fe),this[_0x2ee909(0x4ef)][_0x2ee909(0x37c)]()),_0x3661de(this,_0x2ee909(0x691)),_0x3661de(this,_0x2ee909(0x516),!0x1),_0x3661de(this,_0x2ee909(0x2af),''),_0x3661de(this,_0x2ee909(0x452),0x0),_0x3661de(this,_0x2ee909(0x440),this[_0x2ee909(0x1fe)][_0x2ee909(0x252)](_0x2d6fea['map'](_0x5785bf=>_0x5785bf?_0x5785bf[_0x2ee909(0x68a)]:_0x5728a6[_0x2ee909(0x275)]),_0x2d6fea[_0x2ee909(0x5ae)](0x1))),_0x3661de(this,_0x2ee909(0x4b1),!0x1),_0x3661de(this,_0x2ee909(0x613),[]),(this[_0x2ee909(0x4d1)]=_0x240d22,this[_0x2ee909(0x2dc)]=_0x1cb940,this[_0x2ee909(0x62c)]=_0x1700a9,this['_injector']=_0x3e031d,this['_localCacheService']=_0x5d2408,this[_0x2ee909(0x43a)]=_0x50bb6e,this[_0x2ee909(0x244)]=_0x49c820,this[_0x2ee909(0x682)]=_0xc2f859,this[_0x2ee909(0x659)]=_0x3345d2,this[_0x2ee909(0x467)]=_0x457b2f,this[_0x2ee909(0x557)]=_0x37dd4f,this[_0x2ee909(0x212)]=_0x175ff1,this['_singleActiveUnitService']=_0x1b9e12);}get[_0x3ff78d(0x5a4)](){const _0x1df528=_0x3ff78d;return this[_0x1df528(0x691)];}async[_0x3ff78d(0x683)](){const _0x1d9096=_0x3ff78d;if(this[_0x1d9096(0x5a4)])throw new Error(_0x1d9096(0x61c));await this['_init']();}['pauseCollaboration'](){const _0x5b8cb4=_0x3ff78d;return this['_collaborationPaused']=!0x0,_0x121236[_0x5b8cb4(0x56c)](()=>{const _0x1417eb=_0x5b8cb4;this[_0x1417eb(0x516)]=!0x1,this[_0x1417eb(0x552)]();});}[_0x3ff78d(0x597)](_0x4fd79c){const _0x117e54=_0x3ff78d;this[_0x117e54(0x691)]=_0x4fd79c,this[_0x117e54(0x4ef)][_0x117e54(0x5f8)](_0x4fd79c);}async[_0x3ff78d(0x55a)](){const _0x22efaa=_0x3ff78d;var _0x4bf21c;this[_0x22efaa(0x597)](await this[_0x22efaa(0x4e3)]()),this['_singleActiveUnitService']&&((_0x4bf21c=this[_0x22efaa(0x21d)])==null||_0x4bf21c[_0x22efaa(0x4c0)](this[_0x22efaa(0x4d1)]),this[_0x22efaa(0x5e2)](this['_singleActiveUnitService']['getUnitStatus$'](this[_0x22efaa(0x4d1)])[_0x22efaa(0x4e0)](_0x667d0e=>{const _0x36263e=_0x22efaa;this[_0x36263e(0x659)][_0x36263e(0x374)]('[CollaborationEntity]',_0x36263e(0x43b),_0x667d0e),_0x667d0e===_0x51e6ce[_0x36263e(0x5e0)]?(this[_0x36263e(0x557)][_0x36263e(0x35d)]({'content':this['_localeService']['t']('collaboration.single-unit.warning'),'type':_0xb84fce[_0x36263e(0x690)]['Warning']}),this[_0x36263e(0x212)]['updatePermissionPoint'](new _0x3eed56[(_0x36263e(0x536))](this[_0x36263e(0x4d1)])['id'],!0x1),this[_0x36263e(0x212)][_0x36263e(0x280)](!0x1)):(this[_0x36263e(0x212)][_0x36263e(0x3b5)](new _0x3eed56[(_0x36263e(0x536))](this[_0x36263e(0x4d1)])['id'],!0x0),this[_0x36263e(0x212)][_0x36263e(0x280)](!0x0));})));let _0x55de48=!0x1;return this[_0x22efaa(0x5e2)](this[_0x22efaa(0x2dc)]['sessionStatus$']['subscribe'](_0x195551=>{const _0x67f2ab=_0x22efaa;_0x195551===_0x2ac566[_0x67f2ab(0x416)]?this[_0x67f2ab(0x581)](_0x55de48):_0x195551===_0x2ac566[_0x67f2ab(0x275)]&&(_0x55de48=!0x0,this['_toggleOffline']());})),this[_0x22efaa(0x5e2)](this['session']['event$'][_0x22efaa(0x4e0)](_0x3be6a1=>{const _0x55de54=_0x22efaa;try{switch(_0x3be6a1['eventID']){case _0x254697[_0x55de54(0x332)]['NEW_CHANGESETS']:{this[_0x55de54(0x293)](_0x254697[_0x55de54(0x457)](_0x3be6a1[_0x55de54(0x509)]));break;}case _0x254697['CollaborationEvent']['CHANGESET_ACK']:{this['_onRemoteACK'](_0x3be6a1[_0x55de54(0x509)]);break;}case _0x254697[_0x55de54(0x332)][_0x55de54(0x2ff)]:{this['_onRemoteRejected']();break;}case _0x254697['CollaborationEvent'][_0x55de54(0x207)]:{this[_0x55de54(0x517)](_0x3be6a1['data']);break;}case _0x254697[_0x55de54(0x332)][_0x55de54(0x652)]:{this['_onFetchMissResult'](_0x3be6a1['data'][_0x55de54(0x658)][_0x55de54(0x43e)](_0x9e74fc=>_0x254697[_0x55de54(0x457)](_0x9e74fc)));break;}case _0x254697[_0x55de54(0x332)][_0x55de54(0x50f)]:this['_onRemoteRejected']({'isPermissionRej':!0x0});}}catch(_0x192569){throw console[_0x55de54(0x421)]('Error\x20on\x20receiving\x20event',_0x192569),_0x192569;}})),this['_state'];}[_0x3ff78d(0x31c)](){this['_transitionLocked']=!0x1;}['_lockTransition'](){const _0x3c5f39=_0x3ff78d;if(this[_0x3c5f39(0x4b1)])throw new Error('[CollaborationEntity]:\x20cannot\x20lock\x20transition\x20twice!\x20This\x20is\x20an\x20implementation\x20error,\x20meaning\x20you\x20transit\x20the\x20collaboration\x20state\x20again\x20in\x20the\x20process\x20of\x20a\x20previous\x20transition.\x20This\x20should\x20never\x20happen.');this[_0x3c5f39(0x4b1)]=!0x0;}[_0x3ff78d(0x4ee)](_0xd6b3d5){const _0x21f883=_0x3ff78d;this[_0x21f883(0x3d5)](),this[_0x21f883(0x597)](this[_0x21f883(0x691)][_0x21f883(0x582)](_0xd6b3d5)),this['_unlockTransition']();}['_onRemoteChangeset'](_0x39c702){const _0x5a9776=_0x3ff78d;if(!(_0x39c702[_0x5a9776(0x67c)]<=this[_0x5a9776(0x682)]['getCurrentRevOfUnit'](this[_0x5a9776(0x4d1)]))){if(this[_0x5a9776(0x516)]){this[_0x5a9776(0x613)]['push'](_0x39c702);return;}this[_0x5a9776(0x432)](_0x39c702);}}[_0x3ff78d(0x552)](){const _0x1f98a3=_0x3ff78d;this[_0x1f98a3(0x613)][_0x1f98a3(0x6c3)](_0x3d5b6b=>this['_applyRemoteChangeset'](_0x3d5b6b)),this[_0x1f98a3(0x613)]=[];}['_applyRemoteChangeset'](_0x4a6782){const _0x550684=_0x3ff78d,_0x425967=this[_0x550684(0x43a)][_0x550684(0x2cb)]['fetchThroughInterceptors'](this['_compressMutationService'][_0x550684(0x2cb)][_0x550684(0x4ca)]()[_0x550684(0x622)])(_0x4a6782['mutations'],null)||_0x4a6782['mutations'],_0x5ef404={..._0x4a6782,'mutations':_0x425967};this[_0x550684(0x3d5)](),this[_0x550684(0x597)](this[_0x550684(0x691)]['onRemoteChangeset'](_0x5ef404)),this[_0x550684(0x31c)]();}[_0x3ff78d(0x3a7)](_0x5d5895){const _0x407d38=_0x3ff78d;this['_lockTransition'](),this[_0x407d38(0x597)](this[_0x407d38(0x691)][_0x407d38(0x616)](_0x5d5895)),this[_0x407d38(0x31c)]();}['_onRemoteRejected'](_0x392a23){const _0x3e126d=_0x3ff78d;this[_0x3e126d(0x3d5)](),this['_updateState'](this[_0x3e126d(0x691)]['onRemoteRej'](_0x392a23)),this[_0x3e126d(0x31c)]();}[_0x3ff78d(0x517)](_0x15b889){const _0x3608c2=_0x3ff78d;this[_0x3608c2(0x3d5)](),this[_0x3608c2(0x597)](this['_state'][_0x3608c2(0x6c5)](_0x15b889)),this[_0x3608c2(0x31c)]();}[_0x3ff78d(0x412)](_0x4248c5){const _0x1318e4=_0x3ff78d;if(!(this[_0x1318e4(0x691)]instanceof _0x23be32))throw new TypeError(_0x1318e4(0x321));const _0x3180ac=_0x4248c5[_0x1318e4(0x43e)](_0x5ee6d9=>{const _0x5d02e0=_0x1318e4,_0x138f36=this[_0x5d02e0(0x43a)][_0x5d02e0(0x2cb)]['fetchThroughInterceptors'](this['_compressMutationService'][_0x5d02e0(0x2cb)]['getInterceptPoints']()[_0x5d02e0(0x622)])(_0x5ee6d9[_0x5d02e0(0x65e)],null)||_0x5ee6d9[_0x5d02e0(0x65e)];return{..._0x5ee6d9,'mutations':_0x138f36};});this[_0x1318e4(0x3d5)](),this[_0x1318e4(0x597)](this[_0x1318e4(0x691)][_0x1318e4(0x4dd)](_0x3180ac)),this['_unlockTransition']();}[_0x3ff78d(0x247)](){const _0x520166=_0x3ff78d;this[_0x520166(0x3d5)](),this[_0x520166(0x597)](this[_0x520166(0x691)]['toggleOffline']()),this[_0x520166(0x31c)]();}[_0x3ff78d(0x581)](_0x2e360a=!0x1){const _0x1594b4=_0x3ff78d;this[_0x1594b4(0x3d5)](),this[_0x1594b4(0x597)](this[_0x1594b4(0x691)]['toggleOnline']()),this[_0x1594b4(0x31c)]();const _0x269c4d=this[_0x1594b4(0x691)];_0x2e360a&&_0x269c4d instanceof _0x41046e&&(this[_0x1594b4(0x3d5)](),this[_0x1594b4(0x597)](_0x269c4d[_0x1594b4(0x55d)]()),this[_0x1594b4(0x31c)]());}async[_0x3ff78d(0x4e3)](){return new Promise(_0x44107c=>{const _0x190c88=_0x57aa;this['session'][_0x190c88(0x484)][_0x190c88(0x252)](_0x2d6fea[_0x190c88(0x53a)](0x1))[_0x190c88(0x4e0)](async _0x5ed6b4=>{const _0x28e8d0=_0x190c88;_0x44107c(await this[_0x28e8d0(0x4b0)](_0x5ed6b4===_0x2ac566[_0x28e8d0(0x416)]));});});}[_0x3ff78d(0x688)](){const _0x142fbe=_0x3ff78d,_0x5b139e=this[_0x142fbe(0x4d1)];return{'onStateChange':(_0x2565be,_0x1a171c)=>{const _0x308d97=_0x142fbe;if(_0x2565be!==this[_0x308d97(0x691)])throw new Error(_0x308d97(0x26c)+_0x2565be['status']+_0x308d97(0x312)+_0x1a171c[_0x308d97(0x68a)]+_0x308d97(0x5a6)+this[_0x308d97(0x691)][_0x308d97(0x68a)]);this[_0x308d97(0x597)](_0x1a171c);},'onSendChangeset':_0x18ff0d=>{const _0x587513=_0x142fbe;_0x18ff0d[_0x587513(0x615)]||(_0x18ff0d['sid']=this[_0x587513(0x2af)],_0x18ff0d['reqId']=++this[_0x587513(0x452)]);const _0x2643d1={'eventID':_0x254697[_0x587513(0x332)][_0x587513(0x2e3)],'data':{'unitID':_0x18ff0d['unitID'],'unitType':this['_type'],'changeset':_0x18ff0d,'memberID':this[_0x587513(0x2dc)][_0x587513(0x5fd)]()}};this[_0x587513(0x2dc)]['send'](_0x2643d1,this[_0x587513(0x4d1)]);},'onMissingChangesets':({from:_0x235064,to:_0x3b6702})=>{const _0x16195c=_0x142fbe;this[_0x16195c(0x659)][_0x16195c(0x374)]('[CollaborationEntity]',_0x16195c(0x201)+_0x235064+_0x16195c(0x545)+_0x3b6702);const _0x438b3e={'eventID':_0x254697['CollaborationEvent'][_0x16195c(0x54d)],'data':{'unitID':_0x5b139e,'unitType':this[_0x16195c(0x62c)],'from':_0x235064,'to':_0x3b6702}};this['session']['send'](_0x438b3e,this[_0x16195c(0x4d1)]);}};}async[_0x3ff78d(0x4b0)](_0x2c4bee){const _0x1aa0a7=_0x3ff78d;var _0x2b6622,_0x870e8f;const _0x413236=await this['_localCacheService'][_0x1aa0a7(0x246)](this[_0x1aa0a7(0x4d1)]),_0x3250a0=(_0x2b6622=_0x413236==null?void 0x0:_0x413236[_0x1aa0a7(0x65e)])!=null?_0x2b6622:[],_0x587d4f=(_0x870e8f=_0x413236==null?void 0x0:_0x413236[_0x1aa0a7(0x617)])!=null?_0x870e8f:null,_0x6a4f4=!!(_0x587d4f!=null&&_0x587d4f['sid'])&&!!(_0x587d4f!=null&&_0x587d4f['reqId']);this[_0x1aa0a7(0x2af)]=_0x6a4f4?_0x587d4f['sid']:_0x3f2b24(),this[_0x1aa0a7(0x452)]=_0x6a4f4?_0x587d4f['reqId']:0x0;const _0x1b6951=this[_0x1aa0a7(0x4d1)];try{this[_0x1aa0a7(0x5c5)](_0x587d4f,_0x3250a0);}catch(_0x200aa1){this['_logService'][_0x1aa0a7(0x421)](_0x200aa1);}const _0x27ff1a=this[_0x1aa0a7(0x688)]();if(_0x2c4bee){const _0x3ad935=_0x19b095(this['_injector'],_0x1b6951,this['_type'],_0x587d4f,_0x3250a0,_0x27ff1a);return _0x3ad935 instanceof _0x219c2f?_0x3ad935['_schedule']():(_0x3ad935 instanceof _0x139912||_0x3ad935 instanceof _0x1bd38f)&&_0x3ad935[_0x1aa0a7(0x493)](),_0x3ad935;}return this[_0x1aa0a7(0x45b)][_0x1aa0a7(0x695)](_0x225743,_0x1b6951,this[_0x1aa0a7(0x62c)],_0x587d4f,_0x3250a0,_0x27ff1a);}[_0x3ff78d(0x5c5)](_0x58b3e4,_0x147835){const _0x1d0560=_0x3ff78d;var _0x397c19,_0x26a30c;const _0x1122fe=this[_0x1d0560(0x43a)][_0x1d0560(0x2cb)][_0x1d0560(0x3c5)](this['_compressMutationService'][_0x1d0560(0x2cb)]['getInterceptPoints']()['COMPRESS_MUTATION_APPLY']);(_0x397c19=_0x1122fe((_0x58b3e4==null?void 0x0:_0x58b3e4['mutations'])||[],null))==null||_0x397c19[_0x1d0560(0x6c3)](_0x306ecc=>this[_0x1d0560(0x467)][_0x1d0560(0x52c)](_0x306ecc['id'],_0x306ecc[_0x1d0560(0x4fb)])),(_0x26a30c=_0x1122fe(_0x147835||[],null))==null||_0x26a30c[_0x1d0560(0x6c3)](_0x32fcde=>this[_0x1d0560(0x467)][_0x1d0560(0x52c)](_0x32fcde['id'],_0x32fcde[_0x1d0560(0x4fb)]));}},_0x1e9522['CollaborationEntity']=_0x4da75a([_0x3a6524(0x3,_0x121236['Inject'](_0x121236[_0x3ff78d(0x3da)])),_0x3a6524(0x4,_0x121236['Inject'](_0x1e9522['LocalCacheService'])),_0x3a6524(0x5,_0x121236['Inject'](_0x254697[_0x3ff78d(0x490)])),_0x3a6524(0x6,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)])),_0x3a6524(0x7,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x3a6524(0x8,_0x121236['ILogService']),_0x3a6524(0x9,_0x121236['ICommandService']),_0x3a6524(0xa,_0x3f9dc7[_0x3ff78d(0x2f2)]),_0x3a6524(0xb,_0x121236[_0x3ff78d(0x519)]),_0x3a6524(0xc,_0x121236['Optional'](_0x419a7e))],_0x1e9522[_0x3ff78d(0x4a4)]),_0x1e9522[_0x3ff78d(0x520)]=class extends _0x1e9522[_0x3ff78d(0x4a4)]{constructor(_0x295cbb,_0x2f6604,_0x4c4a93,_0x1a1c7b,_0x2e503f,_0x2e8c8b,_0x4dc3f9,_0x4b2332,_0x4aad43,_0x4f784f,_0x442200,_0x2d8ec4,_0x38bd78,_0x3f0539,_0x380ad5,_0x2ce7aa,_0x3e1331,_0x555f2e){const _0x1cd878=_0x3ff78d;super(_0x295cbb,_0x4c4a93,_0x2f6604,_0x1a1c7b,_0x2e503f,_0x2e8c8b,_0x4dc3f9,_0x4b2332,_0x3f0539,_0x380ad5,_0x2ce7aa,_0x3e1331,_0x555f2e),this[_0x1cd878(0x4d1)]=_0x295cbb,this['type']=_0x2f6604,this[_0x1cd878(0x598)]=_0x4aad43,this['_docTransformIMECacheService']=_0x4f784f,this[_0x1cd878(0x673)]=_0x442200,this[_0x1cd878(0x698)]=_0x2d8ec4,this['_docSyncEditingCollabCursorService']=_0x38bd78;}[_0x3ff78d(0x688)](){const _0x55d6ed=_0x3ff78d,_0x56cc1c=super['_createHandler']();return _0x56cc1c[_0x55d6ed(0x608)]=_0x3987ab=>this[_0x55d6ed(0x3bf)][_0x55d6ed(0x3bb)](_0x3987ab),_0x56cc1c[_0x55d6ed(0x5dc)]=_0x424527=>this[_0x55d6ed(0x673)]['transformStateCache'](_0x424527),_0x56cc1c[_0x55d6ed(0x2d8)]=_0x35d7de=>this[_0x55d6ed(0x698)][_0x55d6ed(0x69e)](_0x35d7de),_0x56cc1c[_0x55d6ed(0x35b)]=_0x513634=>this[_0x55d6ed(0x49d)][_0x55d6ed(0x4c8)](_0x513634),_0x56cc1c[_0x55d6ed(0x3b3)]=_0x467a51=>this[_0x55d6ed(0x3bf)]['transformRemoteChangeset'](_0x467a51),_0x56cc1c[_0x55d6ed(0x603)]=_0x2d3d8=>this['_docTransformStateCacheService'][_0x55d6ed(0x5ce)](_0x2d3d8),_0x56cc1c;}async[_0x3ff78d(0x55a)](){const _0xc5b3d3=_0x3ff78d,_0x1c3d63=await super[_0xc5b3d3(0x55a)]();return this['_docStateChangeManagerService'][_0xc5b3d3(0x3f6)][_0xc5b3d3(0x252)](_0x2d6fea['takeUntil'](this['dispose$']))['subscribe'](_0x39604a=>{const _0x748093=_0xc5b3d3;if(_0x39604a==null)return;const {unitId:_0x137b81,redoState:_0x360775,commandId:_0x19696a}=_0x39604a;if(_0x137b81!==this[_0x748093(0x4d1)])return;const _0x5a2561={'id':_0x19696a,'type':_0x121236[_0x748093(0x475)][_0x748093(0x68f)],'params':{'unitId':_0x137b81,'actions':_0x360775[_0x748093(0x305)],'textRanges':null}};this['_onLocalMutation'](_0x5a2561);}),_0x1c3d63;}},_0x1e9522[_0x3ff78d(0x520)]=_0x4da75a([_0x3a6524(0x3,_0x121236['Inject'](_0x121236[_0x3ff78d(0x3da)])),_0x3a6524(0x4,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x544)])),_0x3a6524(0x5,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x490)])),_0x3a6524(0x6,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)])),_0x3a6524(0x7,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x449)])),_0x3a6524(0x8,_0x121236[_0x3ff78d(0x64f)](_0x72fb5c[_0x3ff78d(0x358)])),_0x3a6524(0x9,_0x121236[_0x3ff78d(0x64f)](_0xcea2b9)),_0x3a6524(0xa,_0x121236['Inject'](_0x3b1bb2)),_0x3a6524(0xb,_0x121236[_0x3ff78d(0x64f)](_0x4c380d)),_0x3a6524(0xc,_0x121236[_0x3ff78d(0x64f)](_0x3da688)),_0x3a6524(0xd,_0x121236[_0x3ff78d(0x3fa)]),_0x3a6524(0xe,_0x121236[_0x3ff78d(0x2eb)]),_0x3a6524(0xf,_0x3f9dc7[_0x3ff78d(0x2f2)]),_0x3a6524(0x10,_0x121236[_0x3ff78d(0x519)]),_0x3a6524(0x11,_0x121236['Optional'](_0x419a7e))],_0x1e9522[_0x3ff78d(0x520)]),_0x1e9522[_0x3ff78d(0x3b7)]=class extends _0x1e9522[_0x3ff78d(0x4a4)]{constructor(_0x5e2cd7,_0x5b20fc,_0x1aacde,_0x457832,_0x1db8dc,_0x4015e6,_0xbece05,_0x3482c9,_0x1cf37b,_0x15f95f,_0x3d6a50,_0x526243,_0xd6322e,_0x1bbfb2){const _0x3fdf4f=_0x3ff78d;super(_0x5e2cd7,_0x1aacde,_0x5b20fc,_0x457832,_0x1db8dc,_0x4015e6,_0xbece05,_0x3482c9,_0x15f95f,_0x3d6a50,_0x526243,_0xd6322e,_0x1bbfb2),this[_0x3fdf4f(0x4d1)]=_0x5e2cd7,this['type']=_0x5b20fc,this['_sheetTransformSelectionsService']=_0x1cf37b;}[_0x3ff78d(0x688)](){const _0x3d5490=_0x3ff78d,_0x2add6a=super[_0x3d5490(0x688)]();return _0x2add6a[_0x3d5490(0x2d8)]=_0x1dd613=>this[_0x3d5490(0x26f)]['transformSelections'](_0x1dd613),_0x2add6a;}async[_0x3ff78d(0x55a)](){const _0xa6305f=_0x3ff78d,_0x365564=await super[_0xa6305f(0x55a)]();return this['disposeWithMe'](this[_0xa6305f(0x467)][_0xa6305f(0x3c3)]((_0x3dabdf,_0x2e1291)=>{const _0x57ba9f=_0xa6305f;if(_0x3dabdf[_0x57ba9f(0x25f)]!==_0x121236[_0x57ba9f(0x475)]['MUTATION']||_0x2e1291!=null&&_0x2e1291[_0x57ba9f(0x336)]||_0x2e1291!=null&&_0x2e1291[_0x57ba9f(0x649)])return;const _0x4172f7=_0x3dabdf['params'];if((_0x4172f7==null?void 0x0:_0x4172f7[_0x57ba9f(0x67d)])!==this['unitID'])return;const _0xbf8f1b=_0x3dabdf,_0x11cdb3=this[_0x57ba9f(0x43a)][_0x57ba9f(0x2cb)][_0x57ba9f(0x3c5)](this['_compressMutationService'][_0x57ba9f(0x2cb)][_0x57ba9f(0x4ca)]()[_0x57ba9f(0x5f9)])([_0xbf8f1b],null)||[_0xbf8f1b];this[_0x57ba9f(0x4ee)](_0x11cdb3[0x0]);})),_0x365564;}},_0x1e9522[_0x3ff78d(0x3b7)]=_0x4da75a([_0x3a6524(0x3,_0x121236['Inject'](_0x121236[_0x3ff78d(0x3da)])),_0x3a6524(0x4,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x544)])),_0x3a6524(0x5,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x490)])),_0x3a6524(0x6,_0x121236[_0x3ff78d(0x64f)](_0x121236['LocaleService'])),_0x3a6524(0x7,_0x121236[_0x3ff78d(0x64f)](_0x254697['RevisionService'])),_0x3a6524(0x8,_0x121236['Inject'](_0x45c8bc)),_0x3a6524(0x9,_0x121236[_0x3ff78d(0x3fa)]),_0x3a6524(0xa,_0x121236['ICommandService']),_0x3a6524(0xb,_0x3f9dc7['IMessageService']),_0x3a6524(0xc,_0x121236[_0x3ff78d(0x519)]),_0x3a6524(0xd,_0x121236[_0x3ff78d(0x4f5)](_0x419a7e))],_0x1e9522[_0x3ff78d(0x3b7)]);var _0xa9643=Object[_0x3ff78d(0x675)],_0x1a3d7c=Object[_0x3ff78d(0x570)],_0x4a6e18=(_0x35154d,_0x407cfb,_0x22e153,_0x17fed6)=>{for(var _0x14030a=_0x17fed6>0x1?void 0x0:_0x17fed6?_0x1a3d7c(_0x407cfb,_0x22e153):_0x407cfb,_0x4349f6=_0x35154d['length']-0x1,_0x38b30e;_0x4349f6>=0x0;_0x4349f6--)(_0x38b30e=_0x35154d[_0x4349f6])&&(_0x14030a=(_0x17fed6?_0x38b30e(_0x407cfb,_0x22e153,_0x14030a):_0x38b30e(_0x14030a))||_0x14030a);return _0x17fed6&&_0x14030a&&_0xa9643(_0x407cfb,_0x22e153,_0x14030a),_0x14030a;},_0x33eebc=(_0x2847f0,_0x954aa2)=>(_0x545c36,_0x104223)=>_0x954aa2(_0x545c36,_0x104223,_0x2847f0);_0x1e9522[_0x3ff78d(0x3a2)]=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x3791a7,_0x300bcd,_0x36f323){const _0x5c581c=_0x3ff78d;super(),_0x3661de(this,'_entities',new Map()),_0x3661de(this,_0x5c581c(0x400),new _0x2d6fea[(_0x5c581c(0x6c2))]()),(this['_injector']=_0x3791a7,this[_0x5c581c(0x5c0)]=_0x300bcd,this[_0x5c581c(0x22b)]=_0x36f323,this[_0x5c581c(0x55a)]());}[_0x3ff78d(0x2d3)](){const _0x226ed3=_0x3ff78d;super[_0x226ed3(0x2d3)](),this['_entities'][_0x226ed3(0x6c3)](_0x245d6d=>_0x245d6d['dispose']()),this[_0x226ed3(0x431)][_0x226ed3(0x1fd)]();}['getCollabEntity'](_0x246333){const _0xde4a09=_0x3ff78d;var _0x5e6cb0;return(_0x5e6cb0=this[_0xde4a09(0x431)][_0xde4a09(0x295)](_0x246333))!=null?_0x5e6cb0:null;}[_0x3ff78d(0x548)](_0xa4de0f){const _0x298101=_0x3ff78d,_0xf5827e=this[_0x298101(0x3ba)](_0xa4de0f);return _0xf5827e?_0x2d6fea['of'](_0xf5827e):this[_0x298101(0x400)][_0x298101(0x252)](_0x5443e6[_0x298101(0x65c)](_0x3838e8=>_0x3838e8['unitID']===_0xa4de0f));}[_0x3ff78d(0x55a)](){const _0x53bc16=_0x3ff78d;this[_0x53bc16(0x22b)][_0x53bc16(0x4ba)](_0x121236[_0x53bc16(0x5a5)][_0x53bc16(0x63c)])[_0x53bc16(0x252)](_0x2d6fea[_0x53bc16(0x3c1)](this[_0x53bc16(0x268)]),_0x5443e6[_0x53bc16(0x66a)](0x10))[_0x53bc16(0x4e0)](async _0x3ab1d5=>{const _0x20fbdb=_0x53bc16,_0x86e43c=_0x3ab1d5[_0x20fbdb(0x62a)](),_0x228781=await this[_0x20fbdb(0x33f)](_0x86e43c,_0x4651ca['UNIVER_SHEET']);this[_0x20fbdb(0x431)][_0x20fbdb(0x30d)](_0x86e43c,_0x228781);}),this[_0x53bc16(0x22b)][_0x53bc16(0x4ba)](_0x121236[_0x53bc16(0x5a5)][_0x53bc16(0x54f)])[_0x53bc16(0x252)](_0x2d6fea[_0x53bc16(0x3c1)](this[_0x53bc16(0x268)]),_0x5443e6[_0x53bc16(0x66a)](0x10))['pipe'](_0x5443e6['filter'](_0x5f1a59=>!_0x5f1a59[_0x53bc16(0x62a)]()[_0x53bc16(0x383)]('__')))[_0x53bc16(0x4e0)](async _0x98a413=>{const _0x2f79f8=_0x53bc16,_0x480c2c=_0x98a413[_0x2f79f8(0x62a)](),_0x37dcfa=await this[_0x2f79f8(0x33f)](_0x480c2c,_0x4651ca['UNIVER_DOC']);this['_entities'][_0x2f79f8(0x30d)](_0x480c2c,_0x37dcfa);}),_0x2d6fea[_0x53bc16(0x5fe)](this[_0x53bc16(0x22b)][_0x53bc16(0x396)](_0x121236[_0x53bc16(0x5a5)][_0x53bc16(0x63c)]),this[_0x53bc16(0x22b)][_0x53bc16(0x396)](_0x121236[_0x53bc16(0x5a5)]['UNIVER_DOC']))['pipe'](_0x2d6fea[_0x53bc16(0x3c1)](this[_0x53bc16(0x268)]))[_0x53bc16(0x4e0)](_0x374f9e=>{const _0x542399=_0x53bc16,_0x523157=_0x374f9e[_0x542399(0x62a)](),_0x2a5a08=this[_0x542399(0x431)]['get'](_0x523157);_0x2a5a08&&(_0x2a5a08[_0x542399(0x2d3)](),this['_entities']['delete'](_0x523157));});}async['_startCollaboration'](_0x33729e,_0x50b036){const _0x4bfded=_0x3ff78d,_0x5ec155=await this['_collabSessionService'][_0x4bfded(0x221)](_0x33729e),_0x3abeae=this[_0x4bfded(0x45b)]['createInstance'](this[_0x4bfded(0x5c4)](_0x50b036),_0x33729e,_0x50b036,_0x5ec155);return await _0x3abeae[_0x4bfded(0x683)](),this[_0x4bfded(0x400)][_0x4bfded(0x5f8)](_0x3abeae),_0x3abeae;}[_0x3ff78d(0x5c4)](_0x155e30){const _0x758691=_0x3ff78d;switch(_0x155e30){case _0x4651ca[_0x758691(0x54f)]:return _0x1e9522[_0x758691(0x520)];case _0x4651ca[_0x758691(0x63c)]:return _0x1e9522[_0x758691(0x3b7)];default:throw new Error('[CollaborationController]:\x20invalid\x20univer\x20type:\x20'+_0x155e30);}}},_0x1e9522[_0x3ff78d(0x3a2)]=_0x4a6e18([_0x33eebc(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x33eebc(0x1,_0x121236[_0x3ff78d(0x64f)](_0x1e9522['CollaborationSessionService'])),_0x33eebc(0x2,_0x121236[_0x3ff78d(0x289)])],_0x1e9522[_0x3ff78d(0x3a2)]);const _0x1bfad8=[_0x3ff78d(0x6ac),_0x3ff78d(0x57e),_0x3ff78d(0x2f1),_0x3ff78d(0x237),_0x3ff78d(0x48a),_0x3ff78d(0x42d)];class _0x1d6b04 extends _0x121236[_0x3ff78d(0x3c0)]{constructor(){const _0xbd129c=_0x3ff78d;super(...arguments),_0x3661de(this,_0xbd129c(0x304),new Map()),_0x3661de(this,_0xbd129c(0x3a6),0x0);}[_0x3ff78d(0x5e6)](_0x562249){const _0x49c69b=_0x3ff78d;if(this['_assignedColors'][_0x49c69b(0x558)](_0x562249))return this[_0x49c69b(0x304)][_0x49c69b(0x295)](_0x562249);const _0x3659d3=_0x1bfad8[this[_0x49c69b(0x3a6)]];return this[_0x49c69b(0x3a6)]=(this[_0x49c69b(0x3a6)]+0x1)%_0x1bfad8[_0x49c69b(0x453)],this['_assignedColors']['set'](_0x562249,_0x3659d3),_0x3659d3;}}var _0x5276e0=Object[_0x3ff78d(0x675)],_0x4e9f23=Object[_0x3ff78d(0x570)],_0x56ad38=(_0x27d73e,_0x19afb4,_0x12d7dd,_0x2eed73)=>{const _0x22df77=_0x3ff78d;for(var _0x2311a5=_0x2eed73>0x1?void 0x0:_0x2eed73?_0x4e9f23(_0x19afb4,_0x12d7dd):_0x19afb4,_0x3e57b8=_0x27d73e[_0x22df77(0x453)]-0x1,_0x3f5799;_0x3e57b8>=0x0;_0x3e57b8--)(_0x3f5799=_0x27d73e[_0x3e57b8])&&(_0x2311a5=(_0x2eed73?_0x3f5799(_0x19afb4,_0x12d7dd,_0x2311a5):_0x3f5799(_0x2311a5))||_0x2311a5);return _0x2eed73&&_0x2311a5&&_0x5276e0(_0x19afb4,_0x12d7dd,_0x2311a5),_0x2311a5;},_0x1c55b5=(_0x577e7,_0x3b6c60)=>(_0x428653,_0x56100c)=>_0x3b6c60(_0x428653,_0x56100c,_0x577e7);const _0x370e38=0x12c,_0x322e26=0x64;let _0xfc7e08=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x17b308,_0x2bdf5a,_0x1860d0,_0x5b4cea,_0xef49d2,_0x222cda,_0x2787b7,_0x158fa3,_0x569186){const _0x4df191=_0x3ff78d;super(),_0x3661de(this,_0x4df191(0x47b),!0x1),_0x3661de(this,_0x4df191(0x55a),!0x1),_0x3661de(this,_0x4df191(0x2d1),new _0x2d6fea[(_0x4df191(0x3d6))](new Map())),_0x3661de(this,_0x4df191(0x468),this['_cursorInfo$'][_0x4df191(0x37c)]()),_0x3661de(this,_0x4df191(0x4fa),new _0x2d6fea['BehaviorSubject']([])),_0x3661de(this,_0x4df191(0x398),this[_0x4df191(0x4fa)][_0x4df191(0x252)](_0x2d6fea[_0x4df191(0x632)](_0x370e38))),_0x3661de(this,_0x4df191(0x61a),_0x121236[_0x4df191(0x64d)](_0x29426c=>{const _0x1b3849=_0x4df191,_0x4fcf26={'eventID':_0x254697['CollaborationEvent'][_0x1b3849(0x446)],'data':{'unitID':this[_0x1b3849(0x4d1)],'memberID':this[_0x1b3849(0x464)]['getMemberID'](),'selection':_0x1f34c5(_0x29426c)}};this[_0x1b3849(0x464)][_0x1b3849(0x65f)](_0x4fcf26,this[_0x1b3849(0x4d1)]);},_0x322e26)),(this[_0x4df191(0x4d1)]=_0x17b308,this[_0x4df191(0x464)]=_0x2bdf5a,this[_0x4df191(0x45b)]=_0x1860d0,this[_0x4df191(0x57b)]=_0x5b4cea,this[_0x4df191(0x257)]=_0xef49d2,this[_0x4df191(0x60d)]=_0x222cda,this[_0x4df191(0x66c)]=_0x2787b7,this['_univerInstanceService']=_0x158fa3,this[_0x4df191(0x467)]=_0x569186);}get[_0x3ff78d(0x612)](){return this['_cursorInfo$']['getValue']();}get['roomMembers'](){const _0x19d504=_0x3ff78d;return this[_0x19d504(0x4fa)][_0x19d504(0x67f)]();}[_0x3ff78d(0x2d3)](){const _0x3d76c9=_0x3ff78d;super[_0x3d76c9(0x2d3)](),this['_cursorInfo$'][_0x3d76c9(0x5f8)](new Map()),this[_0x3d76c9(0x2d1)][_0x3d76c9(0x203)](),this[_0x3d76c9(0x4fa)][_0x3d76c9(0x5f8)]([]),this[_0x3d76c9(0x4fa)][_0x3d76c9(0x203)]();}[_0x3ff78d(0x683)](){const _0x17326d=_0x3ff78d;this[_0x17326d(0x55a)]||(this[_0x17326d(0x55a)]=!0x0,this[_0x17326d(0x464)]['sessionStatus$'][_0x17326d(0x252)](_0x2d6fea['takeUntil'](this[_0x17326d(0x268)]))[_0x17326d(0x4e0)](_0x3af31b=>{const _0x2eb0df=_0x17326d;_0x3af31b===_0x2ac566['ONLINE']?this[_0x2eb0df(0x581)]():this[_0x2eb0df(0x247)]();}),this['_session'][_0x17326d(0x37b)]['pipe'](_0x2d6fea['takeUntil'](this[_0x17326d(0x268)]))[_0x17326d(0x4e0)](_0x3bb728=>{const _0x1cb5c7=_0x17326d,_0x26d749=_0x3bb728[_0x1cb5c7(0x502)];_0x26d749===_0x254697['CollaborationEvent'][_0x1cb5c7(0x446)]&&this['_onCursorUpdate'](_0x3bb728),_0x26d749===_0x254697[_0x1cb5c7(0x332)][_0x1cb5c7(0x36b)]&&this[_0x1cb5c7(0x586)](_0x3bb728);}),this['disposeWithMe'](this['_commandService'][_0x17326d(0x3c3)](_0x359f79=>{const _0x486800=_0x17326d,_0x3f45d0=_0x359f79[_0x486800(0x4fb)];_0x3f45d0!=null&&this[_0x486800(0x47b)]&&_0x359f79['id']===_0x22ba07[_0x486800(0x414)]['id']&&_0x3f45d0[_0x486800(0x67d)]===this['unitID']&&_0x3f45d0[_0x486800(0x3ec)]===!0x1&&_0x3f45d0['ranges'][_0x486800(0x453)]>0x0&&this[_0x486800(0x61a)](_0x3f45d0[_0x486800(0x399)]);})),this[_0x17326d(0x60d)][_0x17326d(0x44e)]['pipe'](_0x2d6fea[_0x17326d(0x3c1)](this['dispose$']))[_0x17326d(0x4e0)](_0x9c85d1=>{const _0x366b51=_0x17326d;if((_0x9c85d1==null?void 0x0:_0x9c85d1[_0x366b51(0x4d1)])!==this[_0x366b51(0x4d1)])return;const _0x140880={'eventID':_0x254697[_0x366b51(0x332)]['UPDATE_CURSOR'],'data':_0x9c85d1};this['_onCursorUpdate'](_0x140880);}),this[_0x17326d(0x5e2)](this[_0x17326d(0x467)][_0x17326d(0x3c3)](_0x24d3b3=>{const _0x55346c=_0x17326d;if(_0x24d3b3[_0x55346c(0x4fb)]==null)return;const _0x2657ab=_0x24d3b3[_0x55346c(0x4fb)];if(_0x24d3b3['id']!==_0x22ba07[_0x55346c(0x375)]['id']||_0x2657ab[_0x55346c(0x67d)]!==this[_0x55346c(0x4d1)])return;const _0x50858a={'id':_0x55346c(0x4cb),'params':_0x2657ab},_0x4f017f=this[_0x55346c(0x612)];for(const [_0x19bf81,_0x34ca32]of _0x4f017f){const _0x483bb8={'id':_0x55346c(0x4cb),'params':{'unitId':this[_0x55346c(0x4d1)],'actions':null,'textRanges':_0x34ca32[_0x55346c(0x399)]}},_0x220bfb=this[_0x55346c(0x66c)][_0x55346c(0x4a9)](_0x50858a,_0x483bb8,!0x1);if(_0x254697['isTransformMutationFailure'](_0x220bfb))throw _0x220bfb[_0x55346c(0x421)];_0x4f017f[_0x55346c(0x30d)](_0x19bf81,{..._0x34ca32,'ranges':_0x220bfb[_0x55346c(0x4d8)][_0x55346c(0x4fb)]['textRanges']});}queueMicrotask(()=>{this['_cursorInfo$']['next'](_0x4f017f);});})));}[_0x3ff78d(0x503)](_0x23f41b){const _0x1dee9b=_0x3ff78d;var _0x51c6ef,_0x3967f3;const {memberID:_0x1443a5,selection:_0x132f61}=_0x23f41b[_0x1dee9b(0x509)],_0x31b606=_0x3f7da0(_0x132f61),_0x25836f=(_0x3967f3=(_0x51c6ef=this[_0x1dee9b(0x257)]['getMember'](this[_0x1dee9b(0x4d1)],_0x1443a5))==null?void 0x0:_0x51c6ef[_0x1dee9b(0x4b9)])!=null?_0x3967f3:_0x1dee9b(0x6bf),_0x4313f5={'color':this['_colorAssignService'][_0x1dee9b(0x5e6)](_0x1443a5),'name':_0x25836f,'ranges':_0x31b606},_0x116ee8=this['cursorInfo'];_0x116ee8[_0x1dee9b(0x30d)](_0x1443a5,_0x4313f5),this['_cursorInfo$'][_0x1dee9b(0x5f8)](_0x116ee8);}[_0x3ff78d(0x586)](_0x534f9d){const _0x174ece=_0x3ff78d,{memberID:_0x154dff}=_0x534f9d[_0x174ece(0x509)],_0x404134=this[_0x174ece(0x612)];_0x404134[_0x174ece(0x52a)](_0x154dff),this[_0x174ece(0x2d1)][_0x174ece(0x5f8)](_0x404134);}[_0x3ff78d(0x581)](){const _0x3bfc88=_0x3ff78d;var _0x589637;if(this[_0x3bfc88(0x47b)]=!0x0,((_0x589637=this[_0x3bfc88(0x22b)][_0x3bfc88(0x4b2)]())==null?void 0x0:_0x589637[_0x3bfc88(0x62a)]())!==this['unitID'])return;const _0x5d671b=this[_0x3bfc88(0x45b)][_0x3bfc88(0x295)](_0x22ba07[_0x3bfc88(0x523)])[_0x3bfc88(0x483)]();Array[_0x3bfc88(0x4b8)](_0x5d671b)&&_0x5d671b[_0x3bfc88(0x453)]>0x0&&this[_0x3bfc88(0x61a)](_0x5d671b);}[_0x3ff78d(0x247)](){const _0x436d29=_0x3ff78d;this[_0x436d29(0x47b)]=!0x1;}};_0xfc7e08=_0x56ad38([_0x1c55b5(0x2,_0x121236['Inject'](_0x121236['Injector'])),_0x1c55b5(0x3,_0x121236['Inject'](_0x1d6b04)),_0x1c55b5(0x4,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x21c)])),_0x1c55b5(0x5,_0x121236[_0x3ff78d(0x64f)](_0x3da688)),_0x1c55b5(0x6,_0x254697['ITransformService']),_0x1c55b5(0x7,_0x121236['IUniverInstanceService']),_0x1c55b5(0x8,_0x121236[_0x3ff78d(0x2eb)])],_0xfc7e08);var _0x403acd=Object['defineProperty'],_0x426234=Object[_0x3ff78d(0x570)],_0x40299d=(_0x4ccf9f,_0x21aa43,_0xf19102,_0x1c0e4b)=>{const _0x229fa2=_0x3ff78d;for(var _0x47b239=_0x1c0e4b>0x1?void 0x0:_0x1c0e4b?_0x426234(_0x21aa43,_0xf19102):_0x21aa43,_0x1f91cb=_0x4ccf9f[_0x229fa2(0x453)]-0x1,_0x5c8b5c;_0x1f91cb>=0x0;_0x1f91cb--)(_0x5c8b5c=_0x4ccf9f[_0x1f91cb])&&(_0x47b239=(_0x1c0e4b?_0x5c8b5c(_0x21aa43,_0xf19102,_0x47b239):_0x5c8b5c(_0x47b239))||_0x47b239);return _0x1c0e4b&&_0x47b239&&_0x403acd(_0x21aa43,_0xf19102,_0x47b239),_0x47b239;},_0x5b3099=(_0xf713b8,_0x4a2f01)=>(_0x350b74,_0x2602f6)=>_0x4a2f01(_0x350b74,_0x2602f6,_0xf713b8);const _0x504884=0x12c,_0x318d50=0x64,_0x2447b7=()=>{let _0x44f1bc=[],_0x23f297=!0x1;return _0xe60ef=>{const _0x5aa94e=_0x57aa;_0x44f1bc[_0x5aa94e(0x3f3)](_0xe60ef),_0x23f297||(_0x23f297=!0x0,setTimeout(()=>{const _0xdedd43=_0x5aa94e;_0x44f1bc[_0xdedd43(0x6c3)](_0x4f0f4b=>_0x4f0f4b()),_0x44f1bc=[],_0x23f297=!0x1;}));};};let _0x51b7d7=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x13b475,_0x29d3db,_0x10b438,_0x96c52d,_0xa687ee,_0x9288b9,_0x46798a,_0x405933){const _0x28e944=_0x3ff78d;super(),_0x3661de(this,_0x28e944(0x47b),!0x1),_0x3661de(this,'_init',!0x1),_0x3661de(this,_0x28e944(0x2d1),new _0x2d6fea['BehaviorSubject'](new Map())),_0x3661de(this,_0x28e944(0x468),this[_0x28e944(0x2d1)][_0x28e944(0x37c)]()),_0x3661de(this,_0x28e944(0x4fa),new _0x2d6fea['BehaviorSubject']([])),_0x3661de(this,'roomMembers$',this['_roomMembers$'][_0x28e944(0x252)](_0x2d6fea[_0x28e944(0x632)](_0x504884))),_0x3661de(this,_0x28e944(0x61a),_0x121236[_0x28e944(0x64d)]((_0x1b9de5,_0x50ced0)=>{const _0x1c329f=_0x28e944,_0x3335c6={'eventID':_0x254697['CollaborationEvent']['UPDATE_CURSOR'],'data':{'unitID':this[_0x1c329f(0x4d1)],'memberID':this[_0x1c329f(0x464)][_0x1c329f(0x5fd)](),'selection':_0x38294c[_0x1c329f(0x4ae)](_0x1b9de5,_0x50ced0['range'])}};this[_0x1c329f(0x464)][_0x1c329f(0x65f)](_0x3335c6,this[_0x1c329f(0x4d1)]);},_0x318d50)),(this['unitID']=_0x13b475,this[_0x28e944(0x464)]=_0x29d3db,this[_0x28e944(0x45b)]=_0x10b438,this['_colorAssignService']=_0x96c52d,this[_0x28e944(0x257)]=_0xa687ee,this[_0x28e944(0x22b)]=_0x9288b9,this[_0x28e944(0x467)]=_0x46798a,this[_0x28e944(0x554)]=_0x405933);}get[_0x3ff78d(0x612)](){const _0x2e7892=_0x3ff78d;return this[_0x2e7892(0x2d1)][_0x2e7892(0x67f)]();}get[_0x3ff78d(0x361)](){const _0x452ff8=_0x3ff78d;return this[_0x452ff8(0x4fa)][_0x452ff8(0x67f)]();}[_0x3ff78d(0x2d3)](){const _0x47e5e2=_0x3ff78d;super[_0x47e5e2(0x2d3)](),this[_0x47e5e2(0x2d1)][_0x47e5e2(0x5f8)](new Map()),this[_0x47e5e2(0x2d1)]['complete'](),this[_0x47e5e2(0x4fa)][_0x47e5e2(0x5f8)]([]),this[_0x47e5e2(0x4fa)][_0x47e5e2(0x203)]();}[_0x3ff78d(0x683)](){const _0x12617a=_0x3ff78d;this[_0x12617a(0x55a)]||(this[_0x12617a(0x55a)]=!0x0,this['_session'][_0x12617a(0x484)]['pipe'](_0x2d6fea[_0x12617a(0x3c1)](this['dispose$']))[_0x12617a(0x4e0)](_0x16f7c5=>{const _0xcc47cd=_0x12617a;_0x16f7c5===_0x2ac566['ONLINE']?this[_0xcc47cd(0x581)]():this[_0xcc47cd(0x247)]();}),this[_0x12617a(0x464)][_0x12617a(0x37b)][_0x12617a(0x252)](_0x2d6fea[_0x12617a(0x3c1)](this[_0x12617a(0x268)]))['subscribe'](_0x2d283e=>{const _0x334b84=_0x12617a,_0x319d6d=_0x2d283e[_0x334b84(0x502)];_0x319d6d===_0x254697[_0x334b84(0x332)][_0x334b84(0x446)]&&this[_0x334b84(0x503)](_0x2d283e),_0x319d6d===_0x254697['CollaborationEvent'][_0x334b84(0x36b)]&&this[_0x334b84(0x586)](_0x2d283e);}),this[_0x12617a(0x424)](),this['disposeWithMe'](this['_commandService'][_0x12617a(0x3c3)](_0x2898e7=>{const _0x14ca77=_0x12617a;if(this[_0x14ca77(0x47b)]&&_0x2898e7['id']===_0x3eed56[_0x14ca77(0x4df)]['id']&&_0x2898e7[_0x14ca77(0x4fb)][_0x14ca77(0x67d)]===this[_0x14ca77(0x4d1)]){const _0x51e4d1=_0x2898e7['params'];this[_0x14ca77(0x61a)](_0x51e4d1[_0x14ca77(0x25b)],_0x51e4d1[_0x14ca77(0x277)][0x0]);}})));}['_onCursorUpdate'](_0xc62169){const _0x17df33=_0x3ff78d;var _0x401e55,_0xcec043;const {memberID:_0x665709,selection:_0x2e48cc}=_0xc62169[_0x17df33(0x509)],{sheetName:_0x3f38e6,range:_0x13775c}=_0x38294c[_0x17df33(0x33b)](_0x2e48cc),_0x5f4ed0={'name':(_0xcec043=(_0x401e55=this[_0x17df33(0x257)]['getMember'](this['unitID'],_0x665709))==null?void 0x0:_0x401e55[_0x17df33(0x4b9)])!=null?_0xcec043:_0x17df33(0x6bf),'range':this[_0x17df33(0x4a1)](_0x3f38e6,_0x13775c),'sheetID':_0x3f38e6,'color':this['_colorAssignService']['assignAColorForMemberID'](_0x665709),'selection':_0x2e48cc},_0x13b143=this[_0x17df33(0x612)];_0x13b143[_0x17df33(0x30d)](_0x665709,_0x5f4ed0),this[_0x17df33(0x2d1)]['next'](_0x13b143);}[_0x3ff78d(0x586)](_0x3f9d7e){const _0x50cd7e=_0x3ff78d,{memberID:_0x5a51fb}=_0x3f9d7e[_0x50cd7e(0x509)],_0x322939=this[_0x50cd7e(0x612)];_0x322939[_0x50cd7e(0x52a)](_0x5a51fb),this[_0x50cd7e(0x2d1)][_0x50cd7e(0x5f8)](_0x322939);}[_0x3ff78d(0x4a1)](_0x209c25,_0x5304dd){const _0x55c9f3=_0x3ff78d;var _0x5da93f,_0x99c72f;const _0x2662ab=(_0x99c72f=(_0x5da93f=this[_0x55c9f3(0x22b)]['getUniverSheetInstance'](this[_0x55c9f3(0x4d1)]))==null?void 0x0:_0x5da93f['getSheetBySheetId'](_0x209c25))==null?void 0x0:_0x99c72f[_0x55c9f3(0x26b)]();return(_0x2662ab==null?void 0x0:_0x2662ab[_0x55c9f3(0x499)](_0xc8cb9f=>_0x121236[_0x55c9f3(0x352)][_0x55c9f3(0x635)](_0xc8cb9f,_0x5304dd)))||_0x5304dd;}['_onRefRangeChange'](){const _0x153490=_0x3ff78d,_0xbdfd8b=new _0x121236[(_0x153490(0x64e))](),_0xd4704c=_0x2447b7(),_0x2cdb1b=()=>{const _0x1efc95=_0x153490;_0xbdfd8b[_0x1efc95(0x2d3)]();const _0x1a1fca=(_0x5bdcfe,_0x3aefe5,_0x5ecc5e,_0x1da439)=>{const _0x2a5317=_0x1efc95;let _0x21094f=[];switch(_0x5bdcfe['id']){case _0x3eed56[_0x2a5317(0x5a9)]['DeleteRangeMoveLeftCommandId']:{_0x21094f=_0x3eed56['handleDeleteRangeMoveLeft'](_0x5bdcfe,_0x1da439);break;}case _0x3eed56[_0x2a5317(0x5a9)][_0x2a5317(0x386)]:{_0x21094f=_0x3eed56[_0x2a5317(0x272)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56[_0x2a5317(0x5a9)]['InsertColCommandId']:{_0x21094f=_0x3eed56[_0x2a5317(0x578)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56[_0x2a5317(0x5a9)][_0x2a5317(0x5f7)]:{_0x21094f=_0x3eed56[_0x2a5317(0x234)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56[_0x2a5317(0x5a9)][_0x2a5317(0x6ab)]:{_0x21094f=_0x3eed56[_0x2a5317(0x471)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56[_0x2a5317(0x5a9)]['InsertRowCommandId']:{_0x21094f=_0x3eed56[_0x2a5317(0x447)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56[_0x2a5317(0x5a9)][_0x2a5317(0x3ed)]:{_0x21094f=_0x3eed56[_0x2a5317(0x584)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56['EffectRefRangId']['RemoveColCommandId']:{_0x21094f=_0x3eed56[_0x2a5317(0x37f)](_0x5bdcfe,_0x1da439);break;}case _0x3eed56['EffectRefRangId'][_0x2a5317(0x401)]:{_0x21094f=_0x3eed56[_0x2a5317(0x2bf)](_0x5bdcfe,_0x1da439);break;}}const _0x21f8c1=_0x3eed56[_0x2a5317(0x63d)](_0x21094f,_0x1da439),_0xc89ab7=this[_0x2a5317(0x612)][_0x2a5317(0x295)](_0x3aefe5);if(_0xc89ab7&&_0x21f8c1){const _0x129c22={..._0xc89ab7,'range':_0x21f8c1};this['cursorInfo'][_0x2a5317(0x30d)](_0x3aefe5,_0x129c22),_0xd4704c(()=>{const _0x26d3b1=_0x2a5317,_0xc0db23=this[_0x26d3b1(0x554)][_0x26d3b1(0x5e4)](_0x21f8c1,_0x23217a=>(_0xc0db23[_0x26d3b1(0x2d3)](),_0x1a1fca(_0x23217a,_0x3aefe5,_0x5ecc5e,_0x21f8c1)));_0xbdfd8b['add'](_0xc0db23);});}return{'redos':[],'undos':[]};};this[_0x1efc95(0x612)]['forEach']((_0x458c6b,_0x30d811)=>{const _0x2f53e0=_0x1efc95,{range:_0x5c43d9,sheetID:_0x3893d4}=_0x458c6b,_0x468379=this[_0x2f53e0(0x554)][_0x2f53e0(0x5e4)](_0x5c43d9,_0x3aa1b1=>(_0x468379[_0x2f53e0(0x2d3)](),_0x1a1fca(_0x3aa1b1,_0x30d811,_0x3893d4,_0x5c43d9)));_0xbdfd8b['add'](_0x468379);});};this['disposeWithMe'](_0x121236[_0x153490(0x56c)](this[_0x153490(0x2d1)][_0x153490(0x4e0)](()=>{_0x2cdb1b();})));}['_toggleOnline'](){const _0x2034c0=_0x3ff78d;var _0xe8baa4,_0xc0e9d1;if(this[_0x2034c0(0x47b)]=!0x0,((_0xe8baa4=this[_0x2034c0(0x22b)][_0x2034c0(0x4b2)]())==null?void 0x0:_0xe8baa4[_0x2034c0(0x62a)]())!==this[_0x2034c0(0x4d1)])return;const _0x2ebb7d=(_0xc0e9d1=this['_injector'][_0x2034c0(0x295)](_0x3eed56[_0x2034c0(0x362)])[_0x2034c0(0x2a3)]())==null?void 0x0:_0xc0e9d1[0x0],_0x6b2442=this[_0x2034c0(0x22b)][_0x2034c0(0x2d4)](_0x121236[_0x2034c0(0x5a5)][_0x2034c0(0x63c)])[_0x2034c0(0x4de)]();_0x2ebb7d&&_0x6b2442&&this[_0x2034c0(0x61a)](_0x6b2442[_0x2034c0(0x22e)](),_0x2ebb7d);}[_0x3ff78d(0x247)](){const _0x209bfc=_0x3ff78d;this[_0x209bfc(0x47b)]=!0x1;}};_0x51b7d7=_0x40299d([_0x5b3099(0x2,_0x121236[_0x3ff78d(0x64f)](_0x121236['Injector'])),_0x5b3099(0x3,_0x121236['Inject'](_0x1d6b04)),_0x5b3099(0x4,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x21c)])),_0x5b3099(0x5,_0x121236[_0x3ff78d(0x289)]),_0x5b3099(0x6,_0x121236[_0x3ff78d(0x2eb)]),_0x5b3099(0x7,_0x121236[_0x3ff78d(0x64f)](_0x3eed56['RefRangeService']))],_0x51b7d7);var _0x9232c8=Object[_0x3ff78d(0x675)],_0x1ff12e=Object[_0x3ff78d(0x570)],_0x281d4b=(_0x1b8e94,_0x12232b,_0x323372,_0x11bf6f)=>{const _0x3566c7=_0x3ff78d;for(var _0x3c7e1e=_0x11bf6f>0x1?void 0x0:_0x11bf6f?_0x1ff12e(_0x12232b,_0x323372):_0x12232b,_0x2c1e46=_0x1b8e94[_0x3566c7(0x453)]-0x1,_0x1e4772;_0x2c1e46>=0x0;_0x2c1e46--)(_0x1e4772=_0x1b8e94[_0x2c1e46])&&(_0x3c7e1e=(_0x11bf6f?_0x1e4772(_0x12232b,_0x323372,_0x3c7e1e):_0x1e4772(_0x3c7e1e))||_0x3c7e1e);return _0x11bf6f&&_0x3c7e1e&&_0x9232c8(_0x12232b,_0x323372,_0x3c7e1e),_0x3c7e1e;},_0x1ec97f=(_0x175676,_0x3742fe)=>(_0x5bca2c,_0x4f1194)=>_0x3742fe(_0x5bca2c,_0x4f1194,_0x175676);let _0x52ae98=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x3e42a4,_0x462373,_0x2c46b8){const _0x359415=_0x3ff78d;super(),_0x3661de(this,_0x359415(0x431),new Map()),_0x3661de(this,_0x359415(0x400),new _0x2d6fea[(_0x359415(0x6c2))]()),(this['_univerInstanceService']=_0x3e42a4,this[_0x359415(0x45b)]=_0x462373,this[_0x359415(0x5c0)]=_0x2c46b8,this[_0x359415(0x55a)]());}[_0x3ff78d(0x2d3)](){const _0x5c8df3=_0x3ff78d;super[_0x5c8df3(0x2d3)](),this['_entityInit$'][_0x5c8df3(0x203)](),this[_0x5c8df3(0x431)]['forEach'](_0x187958=>_0x187958[_0x5c8df3(0x2d3)]());}[_0x3ff78d(0x482)](_0x3aa87a){const _0x46df9b=_0x3ff78d;return this[_0x46df9b(0x431)]['has'](_0x3aa87a)?this[_0x46df9b(0x431)]['get'](_0x3aa87a)[_0x46df9b(0x468)]:this[_0x46df9b(0x400)][_0x46df9b(0x252)](_0x2d6fea['filter'](_0x33b26b=>_0x33b26b['unitID']===_0x3aa87a),_0x2d6fea[_0x46df9b(0x350)](_0x3a8ba0=>_0x3a8ba0[_0x46df9b(0x468)]));}[_0x3ff78d(0x55a)](){const _0x38b8a3=_0x3ff78d;this[_0x38b8a3(0x22b)][_0x38b8a3(0x4ba)](_0x121236[_0x38b8a3(0x5a5)]['UNIVER_SHEET'])[_0x38b8a3(0x252)](_0x2d6fea[_0x38b8a3(0x3c1)](this[_0x38b8a3(0x268)]))[_0x38b8a3(0x4e0)](async _0x97c098=>{const _0x3e2877=_0x38b8a3,_0x1e40c8=_0x97c098[_0x3e2877(0x62a)](),_0x451a90=await this['_startSheetCollabCursor'](_0x1e40c8);this[_0x3e2877(0x400)][_0x3e2877(0x5f8)](_0x451a90),this[_0x3e2877(0x431)][_0x3e2877(0x30d)](_0x1e40c8,_0x451a90);}),this[_0x38b8a3(0x22b)][_0x38b8a3(0x4ba)](_0x121236[_0x38b8a3(0x5a5)][_0x38b8a3(0x54f)])[_0x38b8a3(0x252)](_0x2d6fea[_0x38b8a3(0x3c1)](this['dispose$']))[_0x38b8a3(0x252)](_0x2d6fea['filter'](_0x242a2f=>!_0x242a2f['getUnitId']()[_0x38b8a3(0x383)]('__')))['subscribe'](async _0x2ec89f=>{const _0x4c4f6a=_0x38b8a3,_0x3fad70=_0x2ec89f['getUnitId'](),_0x16e721=await this[_0x4c4f6a(0x500)](_0x3fad70);this[_0x4c4f6a(0x400)][_0x4c4f6a(0x5f8)](_0x16e721),this['_entities'][_0x4c4f6a(0x30d)](_0x3fad70,_0x16e721);}),_0x2d6fea['merge'](this[_0x38b8a3(0x22b)][_0x38b8a3(0x396)](_0x121236[_0x38b8a3(0x5a5)][_0x38b8a3(0x54f)]),this[_0x38b8a3(0x22b)][_0x38b8a3(0x396)](_0x121236['UniverInstanceType']['UNIVER_SHEET']))[_0x38b8a3(0x252)](_0x2d6fea[_0x38b8a3(0x3c1)](this[_0x38b8a3(0x268)]))[_0x38b8a3(0x4e0)](_0x3dfd85=>{const _0x1f0e45=_0x38b8a3,_0x51549e=_0x3dfd85['getUnitId'](),_0x102761=this[_0x1f0e45(0x431)][_0x1f0e45(0x295)](_0x51549e);_0x102761&&(_0x102761[_0x1f0e45(0x2d3)](),this[_0x1f0e45(0x431)][_0x1f0e45(0x52a)](_0x51549e));});}async['_startSheetCollabCursor'](_0x75169a){const _0x3b78c5=_0x3ff78d,_0x2c957c=await this[_0x3b78c5(0x5c0)][_0x3b78c5(0x221)](_0x75169a),_0x2ca9f9=this[_0x3b78c5(0x45b)][_0x3b78c5(0x695)](_0x51b7d7,_0x75169a,_0x2c957c);return _0x2ca9f9['init'](),_0x2ca9f9;}async[_0x3ff78d(0x500)](_0x89b554){const _0x5de346=_0x3ff78d,_0x21489a=await this[_0x5de346(0x5c0)][_0x5de346(0x221)](_0x89b554),_0x491fa9=this[_0x5de346(0x45b)][_0x5de346(0x695)](_0xfc7e08,_0x89b554,_0x21489a);return _0x491fa9[_0x5de346(0x683)](),_0x491fa9;}};_0x52ae98=_0x281d4b([_0x1ec97f(0x0,_0x121236[_0x3ff78d(0x289)]),_0x1ec97f(0x1,_0x121236['Inject'](_0x121236[_0x3ff78d(0x3da)])),_0x1ec97f(0x2,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x3ee)]))],_0x52ae98);const _0x13954c=0x14,_0xc99779=0xc8,_0x278bfa=0x4,_0x3ccdef=0x5;function _0x39d03d(_0x150887,_0xe17032){const _0x4213f3=_0x3ff78d;let {radius:_0x21f83e,width:_0x2aa90a,height:_0x39f82f}=_0xe17032;_0x21f83e=_0x21f83e!=null?_0x21f83e:0x0,_0x2aa90a=_0x2aa90a!=null?_0x2aa90a:0x1e,_0x39f82f=_0x39f82f!=null?_0x39f82f:0x1e;let _0xe643da=0x0,_0x4b91dd=0x0,_0xad9d80=0x0;_0xe643da=_0x4b91dd=_0xad9d80=Math[_0x4213f3(0x56e)](_0x21f83e,_0x2aa90a/0x2,_0x39f82f/0x2),_0x150887[_0x4213f3(0x455)](),_0x150887[_0x4213f3(0x56a)](_0xe643da,0x0),_0x150887[_0x4213f3(0x3d3)](_0x2aa90a-_0x4b91dd,0x0),_0x150887[_0x4213f3(0x6b7)](_0x2aa90a-_0x4b91dd,_0x4b91dd,_0x4b91dd,Math['PI']*0x3/0x2,0x0,!0x1),_0x150887[_0x4213f3(0x3d3)](_0x2aa90a,_0x39f82f-_0xad9d80),_0x150887[_0x4213f3(0x6b7)](_0x2aa90a-_0xad9d80,_0x39f82f-_0xad9d80,_0xad9d80,0x0,Math['PI']/0x2,!0x1),_0x150887[_0x4213f3(0x3d3)](0x0,_0x39f82f),_0x150887[_0x4213f3(0x3d3)](0x0,_0xe643da),_0x150887[_0x4213f3(0x6b7)](_0xe643da,_0xe643da,_0xe643da,Math['PI'],Math['PI']*0x3/0x2,!0x1),_0x150887[_0x4213f3(0x342)](),_0xe17032[_0x4213f3(0x5a2)]&&(_0x150887[_0x4213f3(0x5ed)](),_0x150887[_0x4213f3(0x4e4)]=_0xe17032['fill'],_0xe17032[_0x4213f3(0x236)]===_0x4213f3(0x1fa)?_0x150887[_0x4213f3(0x5a2)]('evenodd'):_0x150887[_0x4213f3(0x5a2)](),_0x150887[_0x4213f3(0x661)]());}class _0x6c7466 extends _0x328527[_0x3ff78d(0x6b3)]{constructor(_0x3256d3,_0x58d31f){const _0x597fb6=_0x3ff78d;super(_0x3256d3,_0x58d31f),_0x3661de(this,_0x597fb6(0x238)),_0x3661de(this,_0x597fb6(0x4f8)),(this[_0x597fb6(0x238)]=_0x58d31f==null?void 0x0:_0x58d31f[_0x597fb6(0x238)],this[_0x597fb6(0x4f8)]=_0x58d31f==null?void 0x0:_0x58d31f[_0x597fb6(0x4f8)]);}static[_0x3ff78d(0x3d0)](_0x171aa0,_0x27997f){const _0x329221=_0x3ff78d,{text:_0x2c8c07,color:_0x1bc248}=_0x27997f;_0x171aa0[_0x329221(0x5ed)](),_0x171aa0[_0x329221(0x6ae)]=_0x329221(0x66f);const _0x5151d3=_0x171aa0[_0x329221(0x2d5)](_0x2c8c07)[_0x329221(0x36d)],_0x27e6f2=Math[_0x329221(0x56e)](_0x5151d3+0x2*_0x278bfa,_0xc99779);_0x39d03d(_0x171aa0,{'height':_0x13954c,'radius':0x4,'width':_0x27e6f2,'fill':_0x1bc248,'evented':!0x1}),_0x171aa0[_0x329221(0x4e4)]=_0x329221(0x5a1);const _0x2141e9=_0x278bfa,_0x5f3e21=_0x13954c-_0x3ccdef,_0x1c70f5=_0xc99779-0x2*_0x278bfa;if(_0x5151d3>_0x1c70f5){let _0x5d738b='',_0x243208=0x0;for(const _0x4baa24 of _0x2c8c07){const _0x3fc48e=_0x171aa0[_0x329221(0x2d5)](_0x4baa24)[_0x329221(0x36d)];if(_0x243208+_0x3fc48e<=_0x1c70f5-_0x171aa0['measureText']('...')[_0x329221(0x36d)])_0x5d738b+=_0x4baa24,_0x243208+=_0x3fc48e;else{_0x5d738b+=_0x329221(0x481);break;}}_0x171aa0['fillText'](_0x5d738b,_0x2141e9,_0x5f3e21);}else _0x171aa0['fillText'](_0x2c8c07,_0x2141e9,_0x5f3e21);_0x171aa0[_0x329221(0x661)]();}['_draw'](_0x109234){const _0x14f1c1=_0x3ff78d;_0x6c7466[_0x14f1c1(0x3d0)](_0x109234,this);}}const _0x751de4=_0x3ff78d(0x296),_0x1016a7=_0x3ff78d(0x63f),_0x1af99a=_0x3ff78d(0x61b),_0x5a52a1=0x6,_0x46f298=1.5,_0x151b93=0x4,_0x1e9bed=1.5,_0x2b51f8=_0x3ff78d(0x36e);class _0x2bbd03{constructor(_0xa1830c,_0xed1cc,_0x5c1c13,_0x52ed7f){const _0x10e9f2=_0x3ff78d;_0x3661de(this,'_shapes',[]),_0x3661de(this,_0x10e9f2(0x4b5),null),_0x3661de(this,'_textBubble',null),_0x3661de(this,'_anchorDot',null),_0x3661de(this,_0x10e9f2(0x4d9),null),_0x3661de(this,_0x10e9f2(0x2e5),null),(this['_cursor']=_0xa1830c,this[_0x10e9f2(0x5e8)]=_0xed1cc,this[_0x10e9f2(0x1f5)]=_0x5c1c13,this[_0x10e9f2(0x36a)]=_0x52ed7f,this['_render']());}set[_0x3ff78d(0x326)](_0x3e4b54){const _0x1f2bf4=_0x3ff78d;_0x3e4b54?(this['_anchorDot']&&this[_0x1f2bf4(0x663)][_0x1f2bf4(0x643)](),this[_0x1f2bf4(0x1f3)]&&this['_textBubble'][_0x1f2bf4(0x35d)]()):(this[_0x1f2bf4(0x663)]&&this[_0x1f2bf4(0x663)][_0x1f2bf4(0x35d)](),this[_0x1f2bf4(0x1f3)]&&this[_0x1f2bf4(0x1f3)][_0x1f2bf4(0x643)]());}[_0x3ff78d(0x2d3)](){const _0xd09922=_0x3ff78d;for(const _0x57fb17 of this[_0xd09922(0x2ad)])_0x57fb17[_0xd09922(0x2d3)]();this[_0xd09922(0x1f3)]&&this[_0xd09922(0x1f3)]['dispose'](),this[_0xd09922(0x663)]&&this[_0xd09922(0x663)][_0xd09922(0x2d3)](),this[_0xd09922(0x4b5)]&&this[_0xd09922(0x4b5)][_0xd09922(0x2d3)](),this[_0xd09922(0x2e5)]&&this['_eventUnsubscribe']();}[_0x3ff78d(0x278)](){const _0x2261da=_0x3ff78d;var _0xc53e03;const {_docSkeleton:_0x2a5b99,_document:_0x414d4e}=this,{color:_0x182b11,name:_0x4d25e5,ranges:_0x3b13b4}=this[_0x2261da(0x372)],_0x5d05eb=_0x414d4e[_0x2261da(0x4eb)](),{docsLeft:_0x530559,docsTop:_0x25bead}=_0x5d05eb,_0x742351=new _0x72fb5c[(_0x2261da(0x5fb))](_0x5d05eb,_0x2a5b99);for(const {startOffset:_0x415141,endOffset:_0x59473f,rangeType:_0x1aa963,segmentId:_0x169a86,segmentPage:_0x21bb7a,collapsed:_0xc36117,isActive:_0x3215e6}of _0x3b13b4){const _0x1de30f=_0x2a5b99[_0x2261da(0x569)](_0x415141,!0x0,_0x169a86,_0x21bb7a);let _0x3a6051=_0x2a5b99[_0x2261da(0x569)](_0x59473f,!0x0,_0x169a86,_0x21bb7a);if(_0x3a6051==null&&(_0x3a6051=_0x2a5b99[_0x2261da(0x569)](_0x59473f-0x1,!0x1,_0x169a86,_0x21bb7a)),_0x3215e6){const {contentBoxPointGroup:_0x4ed72a}=_0x742351[_0x2261da(0x687)](_0x3a6051,_0x3a6051);if(_0x4ed72a[_0x2261da(0x453)]===0x0)continue;this[_0x2261da(0x53b)](_0x182b11,_0x4ed72a,_0x530559,_0x25bead,_0x4d25e5),this[_0x2261da(0x2e5)]=this[_0x2261da(0x534)]();}if(_0x1de30f&&_0x3a6051){if(_0x1aa963===_0x121236[_0x2261da(0x670)][_0x2261da(0x402)]){const _0x55acbe=new _0x72fb5c[(_0x2261da(0x3c6))](_0x5d05eb,_0x2a5b99),{pointGroup:_0x5d36f2}=(_0xc53e03=_0x55acbe[_0x2261da(0x687)](_0x1de30f,_0x3a6051))!=null?_0xc53e03:{};if(_0x5d36f2==null||_0x5d36f2[_0x2261da(0x453)]===0x0)continue;this[_0x2261da(0x514)](_0x182b11,_0x5d36f2,_0x530559,_0x25bead);}else{if(!_0xc36117){const {borderBoxPointGroup:_0x20d9e1}=_0x742351[_0x2261da(0x687)](_0x1de30f,_0x3a6051);if(_0x20d9e1['length']===0x0)continue;this[_0x2261da(0x3cc)](_0x182b11,_0x20d9e1,_0x530559,_0x25bead);}}}}}[_0x3ff78d(0x53b)](_0x56b729,_0x403027,_0x458abe,_0x179610,_0x8d5c03){const _0x13f88e=_0x3ff78d,_0x5d3b42=this[_0x13f88e(0x495)](_0x403027),{left:_0x30d087,top:_0x24a1b9,height:_0xb26b5e}=_0x5d3b42,_0x3a868b=this['_getScale'](),_0x34e490=_0x1e9bed/_0x3a868b,_0x41e077=new _0x328527['Rect'](_0x751de4+_0x121236[_0x13f88e(0x5c9)][_0x13f88e(0x381)](_0x5a52a1),{'left':_0x30d087+_0x458abe-_0x34e490,'top':_0x24a1b9+_0x179610,'height':_0xb26b5e,'width':_0x46f298,'fill':_0x56b729||_0x328527[_0x13f88e(0x59f)](_0x121236[_0x13f88e(0x2be)][_0x13f88e(0x262)],0x0),'strokeWidth':_0x34e490,'stroke':_0x2b51f8,'evented':!0x0});this[_0x13f88e(0x4b5)]=_0x41e077,this[_0x13f88e(0x5e8)][_0x13f88e(0x462)](_0x41e077,_0x72fb5c[_0x13f88e(0x53d)]);const _0x8cad62=new _0x328527['Rect'](_0x751de4+_0x121236['Tools'][_0x13f88e(0x381)](_0x5a52a1),{'left':_0x30d087+_0x458abe-_0x34e490,'top':_0x24a1b9+_0x179610-_0x151b93/0x2,'height':_0x151b93,'width':_0x151b93,'fill':_0x56b729||_0x328527[_0x13f88e(0x59f)](_0x121236[_0x13f88e(0x2be)][_0x13f88e(0x262)],0x0),'strokeWidth':0x0,'stroke':_0x56b729||_0x328527[_0x13f88e(0x59f)](_0x121236[_0x13f88e(0x2be)]['black'],0x0),'evented':!0x1});this[_0x13f88e(0x663)]=_0x8cad62,this[_0x13f88e(0x5e8)][_0x13f88e(0x462)](_0x8cad62,_0x72fb5c['TEXT_RANGE_LAYER_INDEX']);const _0x2528e4=new _0x6c7466(_0x751de4+_0x121236[_0x13f88e(0x5c9)][_0x13f88e(0x381)](_0x5a52a1),{'left':_0x30d087+_0x458abe-_0x34e490,'top':_0x24a1b9+_0x179610-_0x13954c,'text':_0x8d5c03,'color':_0x56b729});this[_0x13f88e(0x1f3)]=_0x2528e4,this[_0x13f88e(0x5e8)]['addObject'](_0x2528e4,_0x72fb5c[_0x13f88e(0x53d)]),this[_0x13f88e(0x326)]=!0x1;}[_0x3ff78d(0x534)](){const _0x565b7e=_0x3ff78d,_0x1d451c=this['_anchor']['onPointerEnter$'][_0x565b7e(0x33d)](()=>{const _0x2f8e23=_0x565b7e;this[_0x2f8e23(0x326)]=!0x0;}),_0x2ac558=this[_0x565b7e(0x4b5)][_0x565b7e(0x2c8)][_0x565b7e(0x33d)](()=>{const _0x527350=_0x565b7e;this[_0x527350(0x4d9)]&&clearTimeout(this[_0x527350(0x4d9)]),this['_hideTimer']=setTimeout(()=>{const _0x5d2b4d=_0x527350;this[_0x5d2b4d(0x326)]=!0x1;},0x7d0);});return()=>{const _0xa24064=_0x565b7e;_0x1d451c[_0xa24064(0x494)](),_0x2ac558[_0xa24064(0x494)]();};}[_0x3ff78d(0x3cc)](_0x4059aa,_0x32aa19,_0x2b7cd4,_0x1836d1){const _0x2ad009=_0x3ff78d,_0x27f01b=new _0x121236[(_0x2ad009(0x5e5))](_0x4059aa)[_0x2ad009(0x62f)](0.2)['toRgbString'](),_0x531d6f=new _0x328527[(_0x2ad009(0x4be))](_0x1016a7+_0x121236[_0x2ad009(0x5c9)]['generateRandomId'](_0x5a52a1),{'pointsGroup':_0x32aa19,'fill':_0x27f01b||_0x328527['getColor'](_0x121236[_0x2ad009(0x2be)][_0x2ad009(0x262)],0.2),'left':_0x2b7cd4,'top':_0x1836d1,'evented':!0x1,'debounceParentDirty':!0x1});this['_shapes'][_0x2ad009(0x3f3)](_0x531d6f),this['_scene'][_0x2ad009(0x462)](_0x531d6f,_0x72fb5c[_0x2ad009(0x53d)]);}['_drawRectRange'](_0x57a2f1,_0x14836a,_0xbfaef1,_0x117629){const _0x591ca4=_0x3ff78d,_0x38d9d7=new _0x121236[(_0x591ca4(0x5e5))](_0x57a2f1)[_0x591ca4(0x62f)](0.2)[_0x591ca4(0x205)](),_0x4b41b3=new _0x328527['RegularPolygon'](_0x1af99a+_0x121236['Tools'][_0x591ca4(0x381)](_0x5a52a1),{'pointsGroup':_0x14836a,'fill':_0x38d9d7||_0x328527[_0x591ca4(0x59f)](_0x121236[_0x591ca4(0x2be)]['black'],0.2),'left':_0xbfaef1,'top':_0x117629,'evented':!0x1,'debounceParentDirty':!0x1});this['_shapes'][_0x591ca4(0x3f3)](_0x4b41b3),this[_0x591ca4(0x5e8)][_0x591ca4(0x462)](_0x4b41b3,_0x72fb5c['TEXT_RANGE_LAYER_INDEX']);}['_getAnchorBounding'](_0x1fcd83){const _0x2d81a7=_0x1fcd83[0x0],_0x3d319b=_0x2d81a7[0x0],_0x5caaf2=_0x2d81a7[0x2],{x:_0x2adc2c,y:_0x1fa104}=_0x3d319b,{x:_0x1ac432,y:_0x308acf}=_0x5caaf2;return{'left':_0x2adc2c,'top':_0x1fa104,'width':_0x1ac432-_0x2adc2c,'height':_0x308acf-_0x1fa104};}[_0x3ff78d(0x242)](){const _0x536c1f=_0x3ff78d,{scaleX:_0xfc557c,scaleY:_0x41485c}=this[_0x536c1f(0x5e8)][_0x536c1f(0x315)]();return Math['max'](_0xfc557c,_0x41485c);}}var _0x568fde=Object[_0x3ff78d(0x675)],_0x23f102=Object[_0x3ff78d(0x570)],_0x4ff457=(_0x494e64,_0x4b71ee,_0x37f8d6,_0x171a44)=>{const _0x60ffff=_0x3ff78d;for(var _0x1ebc7e=_0x171a44>0x1?void 0x0:_0x171a44?_0x23f102(_0x4b71ee,_0x37f8d6):_0x4b71ee,_0x366710=_0x494e64[_0x60ffff(0x453)]-0x1,_0x70c888;_0x366710>=0x0;_0x366710--)(_0x70c888=_0x494e64[_0x366710])&&(_0x1ebc7e=(_0x171a44?_0x70c888(_0x4b71ee,_0x37f8d6,_0x1ebc7e):_0x70c888(_0x1ebc7e))||_0x1ebc7e);return _0x171a44&&_0x1ebc7e&&_0x568fde(_0x4b71ee,_0x37f8d6,_0x1ebc7e),_0x1ebc7e;},_0x3dec55=(_0x279829,_0x4f0565)=>(_0x264529,_0x181237)=>_0x4f0565(_0x264529,_0x181237,_0x279829);let _0x2106e0=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x452c38,_0x118efa,_0x429e27,_0x1269aa,_0xf5032e){const _0x5e79ac=_0x3ff78d;super(),_0x3661de(this,'_cursorShapes',[]),_0x3661de(this,_0x5e79ac(0x44a),[]),(this[_0x5e79ac(0x3e8)]=_0x452c38,this[_0x5e79ac(0x23b)]=_0x118efa,this[_0x5e79ac(0x65b)]=_0x429e27,this[_0x5e79ac(0x467)]=_0x1269aa,this['_themeService']=_0xf5032e,this['_init']());}[_0x3ff78d(0x55a)](){const _0x4670a8=_0x3ff78d,_0x42bf82=this['_context'][_0x4670a8(0x67d)],_0x5223ce=this[_0x4670a8(0x23b)];this['disposeWithMe'](_0x2d6fea['combineLatest']([this[_0x4670a8(0x65b)][_0x4670a8(0x482)](_0x42bf82),this[_0x4670a8(0x5d8)][_0x4670a8(0x5aa)]])['pipe'](_0x5443e6['map'](([_0x1aae89,_0x4837d4])=>({'skeleton':_0x5223ce[_0x4670a8(0x5f2)](),'cursors':[..._0x1aae89[_0x4670a8(0x56d)]()][_0x4670a8(0x1f4)](_0x388b48=>({..._0x388b48,'color':_0x4837d4[_0x388b48[_0x4670a8(0x238)]]}))})))[_0x4670a8(0x4e0)](_0x2f4eb7=>{const _0x33646d=_0x4670a8;if(this[_0x33646d(0x24b)](),_0x2f4eb7){const {skeleton:_0x352560,cursors:_0x434765}=_0x2f4eb7;this[_0x33646d(0x1f7)](_0x352560,_0x434765);}})),this[_0x4670a8(0x294)](),this['_initCommandExecutedListener']();}[_0x3ff78d(0x1f7)](_0x6048e5,_0x2ff8de){const _0xd23010=_0x3ff78d,{scene:_0x50bf4d,mainComponent:_0x4b87da}=this['_context'],_0x2896ad=_0x2ff8de['map'](_0x3579c7=>new _0x2bbd03(_0x3579c7,_0x50bf4d,_0x6048e5,_0x4b87da));this[_0xd23010(0x29e)]=_0x2896ad,this[_0xd23010(0x44a)]=_0x2ff8de;}[_0x3ff78d(0x3fb)](){const _0x2cfcb3=_0x3ff78d;this[_0x2cfcb3(0x24b)]();const {scene:_0x3e3bc7,mainComponent:_0x4fd2d0}=this[_0x2cfcb3(0x3e8)],_0x46c187=this[_0x2cfcb3(0x23b)][_0x2cfcb3(0x5f2)](),_0x55a761=this[_0x2cfcb3(0x44a)]['map'](_0x121e4b=>new _0x2bbd03(_0x121e4b,_0x3e3bc7,_0x46c187,_0x4fd2d0));this[_0x2cfcb3(0x29e)]=_0x55a761;}[_0x3ff78d(0x24b)](){const _0x356cb7=_0x3ff78d;this[_0x356cb7(0x29e)]['forEach'](_0x4970dd=>_0x4970dd[_0x356cb7(0x2d3)]()),this[_0x356cb7(0x29e)]=[];}[_0x3ff78d(0x4fc)](){const _0x4934ef=_0x3ff78d,_0x84547a=[_0x72fb5c[_0x4934ef(0x425)]['id']];this[_0x4934ef(0x5e2)](this[_0x4934ef(0x467)][_0x4934ef(0x3c3)](_0x413f88=>{const _0x26baf5=_0x4934ef;_0x84547a[_0x26baf5(0x2c5)](_0x413f88['id'])&&_0x413f88[_0x26baf5(0x4fb)][_0x26baf5(0x67d)]===this[_0x26baf5(0x3e8)][_0x26baf5(0x67d)]&&this[_0x26baf5(0x3fb)]();}));}[_0x3ff78d(0x294)](){const _0x1c17ff=_0x3ff78d;this[_0x1c17ff(0x5e2)](_0x121236[_0x1c17ff(0x3dc)](this[_0x1c17ff(0x3e8)][_0x1c17ff(0x279)][_0x1c17ff(0x220)])[_0x1c17ff(0x252)](_0x5443e6['filter'](_0x3dcc35=>_0x3dcc35[_0x1c17ff(0x25f)]===_0x328527[_0x1c17ff(0x5f1)]['resize']),_0x5443e6[_0x1c17ff(0x58f)](0x10))['subscribe'](()=>{this['_refreshCollabCursors']();}));}};_0x2106e0=_0x4ff457([_0x3dec55(0x1,_0x121236[_0x3ff78d(0x64f)](_0x22ba07[_0x3ff78d(0x410)])),_0x3dec55(0x2,_0x121236[_0x3ff78d(0x64f)](_0x52ae98)),_0x3dec55(0x3,_0x121236[_0x3ff78d(0x2eb)]),_0x3dec55(0x4,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x66d)]))],_0x2106e0);const _0x317628=0x1,_0x19ff2b=1.5;class _0x348864 extends _0x328527['Shape']{constructor(_0xbe9712,_0x595c36){const _0x57a627=_0x3ff78d;super(_0xbe9712,_0x595c36),_0x3661de(this,_0x57a627(0x476)),_0x3661de(this,_0x57a627(0x307),!0x1),_0x3661de(this,_0x57a627(0x435)),_0x3661de(this,_0x57a627(0x4f0),''),_0x3661de(this,_0x57a627(0x40d),_0x57a627(0x4c2)),_0x3661de(this,_0x57a627(0x67a)),(_0x595c36&&this[_0x57a627(0x3a3)](_0x595c36),this[_0x57a627(0x4ec)][_0x57a627(0x33d)](()=>this[_0x57a627(0x3a3)]({'hovered':!0x0})),this[_0x57a627(0x2c8)][_0x57a627(0x33d)](()=>this[_0x57a627(0x3a3)]({'hovered':!0x1})));}[_0x3ff78d(0x3a3)](_0x2fff20){const _0x133c31=_0x3ff78d;var _0x3362df,_0x184695,_0x18cf32,_0xfe05fa,_0x259002,_0x332134;this['_color']=(_0x3362df=_0x2fff20[_0x133c31(0x238)])!=null?_0x3362df:this[_0x133c31(0x476)],this[_0x133c31(0x307)]=(_0x184695=_0x2fff20[_0x133c31(0x51e)])!=null?_0x184695:this[_0x133c31(0x307)],this['_range']=(_0x18cf32=_0x2fff20[_0x133c31(0x3e4)])!=null?_0x18cf32:this[_0x133c31(0x435)],this[_0x133c31(0x4f0)]=(_0xfe05fa=_0x2fff20[_0x133c31(0x4b9)])!=null?_0xfe05fa:this[_0x133c31(0x4f0)],this['_labelPosition']=(_0x259002=_0x2fff20['labelPosition'])!=null?_0x259002:this[_0x133c31(0x40d)],this[_0x133c31(0x67a)]=(_0x332134=_0x2fff20[_0x133c31(0x5fc)])!=null?_0x332134:this[_0x133c31(0x67a)],this[_0x133c31(0x62d)]({'width':_0x2fff20[_0x133c31(0x36d)],'height':_0x2fff20[_0x133c31(0x288)]});}[_0x3ff78d(0x21e)](_0x56770b){const _0xeae30d=_0x3ff78d,{row:_0x3e3921,column:_0x130355}=_0x56770b;if(_0x3e3921>=this[_0xeae30d(0x435)]['startRow']&&_0x3e3921<=this['_range']['endRow']&&_0x130355>=this['_range']['startColumn']&&_0x130355<=this['_range'][_0xeae30d(0x214)]){this[_0xeae30d(0x3a3)]({'hovered':!0x0});return;}this[_0xeae30d(0x3a3)]({'hovered':!0x1});}[_0x3ff78d(0x335)](_0x1a69cd){return!0x1;}['_draw'](_0x51e7ab){const _0x5e1b36=_0x3ff78d;_0x328527[_0x5e1b36(0x35f)][_0x5e1b36(0x3d0)](_0x51e7ab,{'width':this[_0x5e1b36(0x36d)],'height':this[_0x5e1b36(0x288)],'strokeWidth':_0x19ff2b,'stroke':this[_0x5e1b36(0x476)],'evented':!0x1,'fill':this[_0x5e1b36(0x67a)]}),this[_0x5e1b36(0x307)]&&(_0x51e7ab['save'](),_0x51e7ab[_0x5e1b36(0x428)](0x1,0x0,0x0,0x1,this[_0x5e1b36(0x36d)],this['_labelPosition']===_0x5e1b36(0x49a)?0x0:-_0x13954c),_0x6c7466[_0x5e1b36(0x3d0)](_0x51e7ab,{'text':this[_0x5e1b36(0x4f0)],'color':this[_0x5e1b36(0x476)]}),_0x51e7ab[_0x5e1b36(0x661)]());}}var _0x37b09f=Object[_0x3ff78d(0x675)],_0x2eb5fa=Object[_0x3ff78d(0x570)],_0x19fd86=(_0xb64497,_0x342ecd,_0x2afa74,_0x3edfe8)=>{const _0x10b8fa=_0x3ff78d;for(var _0x46b620=_0x3edfe8>0x1?void 0x0:_0x3edfe8?_0x2eb5fa(_0x342ecd,_0x2afa74):_0x342ecd,_0x438769=_0xb64497[_0x10b8fa(0x453)]-0x1,_0x59326a;_0x438769>=0x0;_0x438769--)(_0x59326a=_0xb64497[_0x438769])&&(_0x46b620=(_0x3edfe8?_0x59326a(_0x342ecd,_0x2afa74,_0x46b620):_0x59326a(_0x46b620))||_0x46b620);return _0x3edfe8&&_0x46b620&&_0x37b09f(_0x342ecd,_0x2afa74,_0x46b620),_0x46b620;},_0xb47f39=(_0x5d3271,_0x4fcbab)=>(_0x4d7300,_0x563601)=>_0x4fcbab(_0x4d7300,_0x563601,_0x5d3271);const _0x170ff1=0x1389;let _0x52a7e8=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x5b7abb,_0x689804,_0x187d90,_0x952683){const _0x4364bc=_0x3ff78d;super(),_0x3661de(this,_0x4364bc(0x44a),new Set()),_0x3661de(this,_0x4364bc(0x47e),null),(this[_0x4364bc(0x3e8)]=_0x5b7abb,this['_sheetSkeletonManagerService']=_0x689804,this[_0x4364bc(0x65b)]=_0x187d90,this[_0x4364bc(0x5d8)]=_0x952683,this[_0x4364bc(0x55a)]());}[_0x3ff78d(0x55a)](){const _0x5dacdf=_0x3ff78d;this[_0x5dacdf(0x2ef)]['currentSkeleton$'][_0x5dacdf(0x252)](_0x5443e6[_0x5dacdf(0x3c1)](this[_0x5dacdf(0x268)]),_0x5443e6[_0x5dacdf(0x350)](_0x10c670=>{const _0x26fd71=_0x5dacdf;if(_0x10c670){const _0x4936c4=_0x10c670[_0x26fd71(0x4c1)];return _0x2d6fea[_0x26fd71(0x4d4)](this[_0x26fd71(0x65b)][_0x26fd71(0x482)](this[_0x26fd71(0x3e8)][_0x26fd71(0x67d)]),this[_0x26fd71(0x5d8)][_0x26fd71(0x5aa)])['pipe'](_0x5443e6[_0x26fd71(0x43e)](([_0x3fa520,_0x4b47c9])=>{const _0x1aca0c=_0x26fd71,_0x5c6b21=new Map();return _0x3fa520[_0x1aca0c(0x6c3)]((_0x3e9e4c,_0x58063d)=>{const _0x3f1557=_0x1aca0c;if(_0x3e9e4c['sheetID']===_0x4936c4){const _0x12cdd9={..._0x3e9e4c};_0x12cdd9[_0x3f1557(0x238)]=_0x4b47c9[_0x3e9e4c['color']],_0x5c6b21[_0x3f1557(0x30d)](_0x58063d,_0x12cdd9);}}),{'skeleton':_0x10c670,'cursors':_0x5c6b21};}));}return _0x2d6fea['of']({'skeleton':null,'cursors':new Map()});}))[_0x5dacdf(0x4e0)](({skeleton:_0xf01430,cursors:_0x19d482})=>{const _0x1e272b=_0x5dacdf;this[_0x1e272b(0x24b)](),_0xf01430&&this[_0x1e272b(0x1f7)](_0xf01430,_0x19d482);}),this['_sheetSkeletonManagerService'][_0x5dacdf(0x25c)]['subscribe'](_0x157d75=>{const _0x2abef1=_0x5dacdf;if(_0x157d75==null)return;const {skeleton:_0x5d8289}=_0x157d75,{scene:_0x98750f}=this[_0x2abef1(0x3e8)];_0x98750f[_0x2abef1(0x46a)]['subscribeEvent'](_0x121236[_0x2abef1(0x64d)](_0x32a228=>{const _0xf44eb=_0x2abef1;var _0x3c21d5,_0x220670;const {offsetX:_0xe8e235,offsetY:_0x4b1dea}=_0x32a228,{x:_0x678022,y:_0x485085}=_0x98750f[_0xf44eb(0x426)](_0x328527[_0xf44eb(0x575)][_0xf44eb(0x507)]([_0xe8e235,_0x4b1dea])),{scaleX:_0x4c6d8b,scaleY:_0x345e4e}=_0x98750f[_0xf44eb(0x315)](),_0x232db4=_0x98750f['getViewport'](_0x55783b[_0xf44eb(0x202)][_0xf44eb(0x59c)]),_0x2b0ece=_0x98750f[_0xf44eb(0x628)](_0x328527[_0xf44eb(0x575)][_0xf44eb(0x507)]([_0x678022,_0x485085]),_0x232db4),_0x4f6cf4=_0x5d8289[_0xf44eb(0x333)](_0xe8e235,_0x4b1dea,_0x4c6d8b,_0x345e4e,_0x2b0ece);((_0x3c21d5=this[_0xf44eb(0x47e)])==null?void 0x0:_0x3c21d5[_0xf44eb(0x41b)])===_0x4f6cf4[_0xf44eb(0x41b)]&&((_0x220670=this[_0xf44eb(0x47e)])==null?void 0x0:_0x220670[_0xf44eb(0x44b)])===_0x4f6cf4[_0xf44eb(0x44b)]||this[_0xf44eb(0x44a)]['forEach'](_0x1c1b20=>{const _0x5b5814=_0xf44eb;_0x1c1b20[_0x5b5814(0x21e)](_0x4f6cf4);});},0x64));});}['_updateCollabCursors'](_0x3d0bc6,_0x384f08){const _0x3048fc=_0x3ff78d;var _0x2a7db8;const _0x4f44fe=(_0x2a7db8=this[_0x3048fc(0x2ef)][_0x3048fc(0x477)]())==null?void 0x0:_0x2a7db8[_0x3048fc(0x46b)];if(!_0x4f44fe)return;const _0x159d7a=this[_0x3048fc(0x27b)]();if(!_0x159d7a)return;this['_cursors']['forEach'](_0x2f6b67=>{const _0x4810be=_0x3048fc;_0x2f6b67[_0x4810be(0x4ac)]();});const {scene:_0x93be57}=_0x159d7a,_0x41ece5=_0x50af2e(Array[_0x3048fc(0x5ef)](_0x384f08['values']()))[_0x3048fc(0x43e)](_0x5def2d=>{const _0x3c9a43=_0x3048fc,{color:_0x1ea06e,range:_0x9c9c44,name:_0x2f2bec,selection:_0x3c13c2,sheetID:_0x5658de}=_0x5def2d,{startColumn:_0xe3dbd5,startRow:_0x598c3d,endColumn:_0x312a2e,endRow:_0x3c342e}=_0x9c9c44,_0x2e2b7a=_0x55783b[_0x3c9a43(0x28b)](_0x598c3d,_0xe3dbd5,_0x93be57,_0x4f44fe),_0x4fbe96=_0x55783b[_0x3c9a43(0x28b)](_0x3c342e,_0x312a2e,_0x93be57,_0x4f44fe),{columnHeaderHeightAndMarginTop:_0x423a56}=_0x4f44fe,{startX:_0x3f118a,startY:_0x184282}=_0x2e2b7a,{endX:_0x2e99a2,endY:_0x33fc3f}=_0x4fbe96,_0x20c322=_0x2e99a2-_0x3f118a,_0x1f7704=_0x33fc3f-_0x184282,_0x1d7bfb={'labelPosition':_0x184282-_0x423a56>=_0x13954c?_0x3c9a43(0x4c2):_0x3c9a43(0x49a),'sheetID':_0x5658de,'range':_0x9c9c44,'color':_0x1ea06e,'name':_0x2f2bec,'selection':_0x3c13c2,'left':_0x3f118a,'top':_0x184282,'width':_0x20c322,'height':_0x1f7704,'evented':!0x1,'zIndex':_0x170ff1};return new _0x348864(_0x2f2bec,_0x1d7bfb);});_0x93be57[_0x3048fc(0x2e7)](_0x41ece5,_0x317628),this[_0x3048fc(0x44a)]=new Set(_0x41ece5);}['_removeCollabCursors'](){const _0x18b0ca=_0x3ff78d;var _0x290e92;(_0x290e92=this[_0x18b0ca(0x44a)])==null||_0x290e92['forEach'](_0x1c56a5=>_0x1c56a5[_0x18b0ca(0x2d3)]());}['_getSheetObject'](){const _0x59e2ec=_0x3ff78d;return _0x55783b[_0x59e2ec(0x58d)](this[_0x59e2ec(0x3e8)][_0x59e2ec(0x339)],this['_context']);}};_0x52a7e8=_0x19fd86([_0xb47f39(0x1,_0x121236[_0x3ff78d(0x64f)](_0x55783b[_0x3ff78d(0x300)])),_0xb47f39(0x2,_0x121236[_0x3ff78d(0x64f)](_0x52ae98)),_0xb47f39(0x3,_0x121236['Inject'](_0x121236[_0x3ff78d(0x66d)]))],_0x52a7e8);function _0x50af2e(_0xbb5939){const _0x584a71=_0x3ff78d,_0x533c25=new Map();return _0xbb5939[_0x584a71(0x6c3)](_0x2b041d=>{const _0x40b997=_0x584a71;if(_0x533c25[_0x40b997(0x558)](_0x2b041d[_0x40b997(0x344)])){const _0x24dc06=_0x533c25['get'](_0x2b041d['selection']);_0x24dc06[_0x40b997(0x4b9)]+=',\x20'+_0x2b041d['name'];}else _0x533c25['set'](_0x2b041d[_0x40b997(0x344)],_0x2b041d);}),Array['from'](_0x533c25[_0x584a71(0x56d)]());}var _0x373fb5=typeof globalThis<'u'?globalThis:typeof window<'u'?window:typeof global<'u'?global:typeof self<'u'?self:{};function _0x12dfa8(_0x4f90f0){const _0x36eb45=_0x3ff78d;return _0x4f90f0&&_0x4f90f0[_0x36eb45(0x491)]&&Object[_0x36eb45(0x388)][_0x36eb45(0x42a)]['call'](_0x4f90f0,_0x36eb45(0x579))?_0x4f90f0[_0x36eb45(0x579)]:_0x4f90f0;}var _0x1f0d33={'exports':{}},_0x4fe7fc={},_0x5da755=_0x4bcf07,_0x3dfe8a=Symbol[_0x3ff78d(0x555)]('react.element'),_0x4bba4c=Symbol[_0x3ff78d(0x555)](_0x3ff78d(0x594)),_0x5b126f=Object[_0x3ff78d(0x388)][_0x3ff78d(0x42a)],_0x3c7a44=_0x5da755['__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED']['ReactCurrentOwner'],_0x1217db={'key':!0x0,'ref':!0x0,'__self':!0x0,'__source':!0x0};function _0x2c2d54(_0x4fa6b9,_0x3617eb,_0x23700e){const _0x2e4456=_0x3ff78d;var _0x3bdac5,_0x3315d2={},_0x262c4a=null,_0x50f922=null;_0x23700e!==void 0x0&&(_0x262c4a=''+_0x23700e),_0x3617eb[_0x2e4456(0x330)]!==void 0x0&&(_0x262c4a=''+_0x3617eb[_0x2e4456(0x330)]),_0x3617eb['ref']!==void 0x0&&(_0x50f922=_0x3617eb[_0x2e4456(0x60f)]);for(_0x3bdac5 in _0x3617eb)_0x5b126f[_0x2e4456(0x28f)](_0x3617eb,_0x3bdac5)&&!_0x1217db[_0x2e4456(0x42a)](_0x3bdac5)&&(_0x3315d2[_0x3bdac5]=_0x3617eb[_0x3bdac5]);if(_0x4fa6b9&&_0x4fa6b9[_0x2e4456(0x3f1)]){for(_0x3bdac5 in(_0x3617eb=_0x4fa6b9['defaultProps'],_0x3617eb))_0x3315d2[_0x3bdac5]===void 0x0&&(_0x3315d2[_0x3bdac5]=_0x3617eb[_0x3bdac5]);}return{'$$typeof':_0x3dfe8a,'type':_0x4fa6b9,'key':_0x262c4a,'ref':_0x50f922,'props':_0x3315d2,'_owner':_0x3c7a44[_0x2e4456(0x576)]};}_0x4fe7fc[_0x3ff78d(0x636)]=_0x4bba4c,_0x4fe7fc[_0x3ff78d(0x409)]=_0x2c2d54,_0x4fe7fc[_0x3ff78d(0x3ea)]=_0x2c2d54,_0x1f0d33[_0x3ff78d(0x3aa)]=_0x4fe7fc;var _0x1783c3=_0x1f0d33[_0x3ff78d(0x3aa)],_0x42999c=function(){const _0x59a2bc=_0x3ff78d;return _0x42999c=Object[_0x59a2bc(0x3ae)]||function(_0x41039a){const _0x359a97=_0x59a2bc;for(var _0x4a4cb4,_0x190640=0x1,_0x5513c1=arguments[_0x359a97(0x453)];_0x190640<_0x5513c1;_0x190640++){_0x4a4cb4=arguments[_0x190640];for(var _0x22bade in _0x4a4cb4)Object[_0x359a97(0x388)]['hasOwnProperty'][_0x359a97(0x28f)](_0x4a4cb4,_0x22bade)&&(_0x41039a[_0x22bade]=_0x4a4cb4[_0x22bade]);}return _0x41039a;},_0x42999c[_0x59a2bc(0x419)](this,arguments);},_0x2ebc3b=function(_0x1f256a,_0xadfeb2){const _0x4e45bc=_0x3ff78d;var _0x359644={};for(var _0x1655d6 in _0x1f256a)Object['prototype'][_0x4e45bc(0x42a)][_0x4e45bc(0x28f)](_0x1f256a,_0x1655d6)&&_0xadfeb2['indexOf'](_0x1655d6)<0x0&&(_0x359644[_0x1655d6]=_0x1f256a[_0x1655d6]);if(_0x1f256a!=null&&typeof Object[_0x4e45bc(0x627)]==_0x4e45bc(0x5f5)){for(var _0x15e984=0x0,_0x1655d6=Object[_0x4e45bc(0x627)](_0x1f256a);_0x15e984<_0x1655d6[_0x4e45bc(0x453)];_0x15e984++)_0xadfeb2['indexOf'](_0x1655d6[_0x15e984])<0x0&&Object[_0x4e45bc(0x388)][_0x4e45bc(0x6b4)][_0x4e45bc(0x28f)](_0x1f256a,_0x1655d6[_0x15e984])&&(_0x359644[_0x1655d6[_0x15e984]]=_0x1f256a[_0x1655d6[_0x15e984]]);}return _0x359644;},_0x8fe972=_0x4bcf07[_0x3ff78d(0x4e9)](function(_0x2864e8,_0x1893b6){const _0x5c0d3f=_0x3ff78d;var _0x340573=_0x2864e8[_0x5c0d3f(0x562)],_0x321a52=_0x2864e8['id'],_0x3cb093=_0x2864e8[_0x5c0d3f(0x24e)],_0x24d322=_0x2864e8[_0x5c0d3f(0x37a)],_0x16663f=_0x2ebc3b(_0x2864e8,[_0x5c0d3f(0x562),'id',_0x5c0d3f(0x24e),_0x5c0d3f(0x37a)]),_0x21c50a=_0x5c0d3f(0x542)[_0x5c0d3f(0x4af)](_0x321a52,'\x20')['concat'](_0x3cb093||'')[_0x5c0d3f(0x6c4)](),_0x28c393=_0x4bcf07[_0x5c0d3f(0x365)]('_'[_0x5c0d3f(0x4af)](_0x1ece6a()));return _0x47493e(_0x340573,''[_0x5c0d3f(0x4af)](_0x321a52),{'defIds':_0x340573[_0x5c0d3f(0x5cd)],'idSuffix':_0x28c393[_0x5c0d3f(0x576)]},_0x42999c({'ref':_0x1893b6,'className':_0x21c50a},_0x16663f),_0x24d322);});function _0x47493e(_0x42d231,_0x12e9f2,_0x349d3c,_0x1fb7ca,_0x5cce5a){return _0x4bcf07['createElement'](_0x42d231['tag'],_0x42999c(_0x42999c({'key':_0x12e9f2},_0x4873df(_0x42d231,_0x349d3c,_0x5cce5a)),_0x1fb7ca),(_0x173e2a(_0x42d231,_0x349d3c)['children']||[])['map'](function(_0x2e1ecb,_0x46e339){const _0x19fc2b=_0x57aa;return _0x47493e(_0x2e1ecb,''[_0x19fc2b(0x4af)](_0x12e9f2,'-')['concat'](_0x42d231[_0x19fc2b(0x53c)],'-')[_0x19fc2b(0x4af)](_0x46e339),_0x349d3c,void 0x0,_0x5cce5a);}));}function _0x4873df(_0x4fdb08,_0x34f1be,_0x1980a1){const _0x764228=_0x3ff78d;var _0x145b9e=_0x42999c({},_0x4fdb08[_0x764228(0x3b2)]);_0x1980a1!=null&&_0x1980a1[_0x764228(0x631)]&&_0x145b9e['fill']===_0x764228(0x631)&&(_0x145b9e[_0x764228(0x5a2)]=_0x1980a1[_0x764228(0x631)]);var _0x58fcda=_0x34f1be['defIds'];return!_0x58fcda||_0x58fcda['length']===0x0||(_0x4fdb08[_0x764228(0x53c)]===_0x764228(0x57d)&&_0x145b9e['xlink:href']&&(_0x145b9e[_0x764228(0x41c)]=_0x145b9e[_0x764228(0x41c)]+_0x34f1be[_0x764228(0x3fc)]),Object[_0x764228(0x287)](_0x145b9e)[_0x764228(0x6c3)](function(_0x3f9ec0){const _0x222c6e=_0x764228;var _0x4b7cf4=_0x3f9ec0[0x0],_0x3715bc=_0x3f9ec0[0x1];typeof _0x3715bc==_0x222c6e(0x454)&&(_0x145b9e[_0x4b7cf4]=_0x3715bc[_0x222c6e(0x38c)](/url\(#(.*)\)/,_0x222c6e(0x2d6)[_0x222c6e(0x4af)](_0x34f1be[_0x222c6e(0x3fc)],')')));})),_0x145b9e;}function _0x173e2a(_0xda694f,_0x4ec08b){const _0x13c6ca=_0x3ff78d;var _0xd4d1e1,_0x8303fd=_0x4ec08b[_0x13c6ca(0x5cd)];return!_0x8303fd||_0x8303fd[_0x13c6ca(0x453)]===0x0?_0xda694f:_0xda694f[_0x13c6ca(0x53c)]===_0x13c6ca(0x3dd)&&(!((_0xd4d1e1=_0xda694f[_0x13c6ca(0x42b)])===null||_0xd4d1e1===void 0x0)&&_0xd4d1e1[_0x13c6ca(0x453)])?_0x42999c(_0x42999c({},_0xda694f),{'children':_0xda694f[_0x13c6ca(0x42b)][_0x13c6ca(0x43e)](function(_0x3b1d26){const _0x4bd865=_0x13c6ca;return typeof _0x3b1d26[_0x4bd865(0x3b2)]['id']==_0x4bd865(0x454)&&_0x8303fd&&_0x8303fd[_0x4bd865(0x4e8)](_0x3b1d26['attrs']['id'])>-0x1?_0x42999c(_0x42999c({},_0x3b1d26),{'attrs':_0x42999c(_0x42999c({},_0x3b1d26[_0x4bd865(0x3b2)]),{'id':_0x3b1d26['attrs']['id']+_0x4ec08b[_0x4bd865(0x3fc)]})}):_0x3b1d26;})}):_0xda694f;}function _0x1ece6a(){const _0xd47a2e=_0x3ff78d;return Math['random']()[_0xd47a2e(0x44c)](0x24)[_0xd47a2e(0x2de)](0x2,0x8);}_0x8fe972[_0x3ff78d(0x2d0)]='UniverIcon';var _0x9a135={'tag':'svg','attrs':{'fill':_0x3ff78d(0x2ed),'viewBox':_0x3ff78d(0x32d),'width':_0x3ff78d(0x3ff),'height':'1em'},'children':[{'tag':'g','attrs':{'clipPath':_0x3ff78d(0x5ba)},'children':[{'tag':'path','attrs':{'stroke':_0x3ff78d(0x206),'d':_0x3ff78d(0x6a2),'strokeLinecap':_0x3ff78d(0x256),'strokeLinejoin':_0x3ff78d(0x256),'strokeWidth':1.2}}]},{'tag':_0x3ff78d(0x3dd),'attrs':{},'children':[{'tag':_0x3ff78d(0x2f7),'attrs':{'id':_0x3ff78d(0x2a0)},'children':[{'tag':_0x3ff78d(0x320),'attrs':{'fill':_0x3ff78d(0x633),'d':_0x3ff78d(0x32e)}}]}]}],'defIds':[_0x3ff78d(0x2a0)]},_0x3593bb=_0x4bcf07[_0x3ff78d(0x4e9)](function(_0x24e97f,_0x7ddcdb){const _0x4b6fb6=_0x3ff78d;return _0x4bcf07[_0x4b6fb6(0x269)](_0x8fe972,Object[_0x4b6fb6(0x3ae)]({},_0x24e97f,{'id':_0x4b6fb6(0x357),'ref':_0x7ddcdb,'icon':_0x9a135}));});_0x3593bb['displayName']='OffLineSingle';var _0x111ba0={'tag':'svg','attrs':{'fill':_0x3ff78d(0x2ed),'viewBox':'0\x200\x2017\x2016','width':_0x3ff78d(0x3ff),'height':_0x3ff78d(0x3ff)},'children':[{'tag':'g','attrs':{'clipPath':_0x3ff78d(0x2cd)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x3ff78d(0x666),'strokeLinecap':_0x3ff78d(0x256),'strokeLinejoin':_0x3ff78d(0x256),'strokeWidth':1.2}}]},{'tag':'defs','attrs':{},'children':[{'tag':_0x3ff78d(0x2f7),'attrs':{'id':'on-line-single_clip0_910_349'},'children':[{'tag':_0x3ff78d(0x320),'attrs':{'fill':_0x3ff78d(0x633),'d':'M0\x200H16V16H0z','transform':_0x3ff78d(0x60b)}}]}]}],'defIds':[_0x3ff78d(0x460)]},_0x290084=_0x4bcf07['forwardRef'](function(_0x59e03f,_0x93f7bc){const _0x56a549=_0x3ff78d;return _0x4bcf07[_0x56a549(0x269)](_0x8fe972,Object[_0x56a549(0x3ae)]({},_0x59e03f,{'id':_0x56a549(0x40a),'ref':_0x93f7bc,'icon':_0x111ba0}));});_0x290084['displayName']=_0x3ff78d(0x3cf);function _0x83ac26(_0x9729bc){const _0x42ba90=_0x3ff78d;var _0x29749e,_0x1673a2,_0x264706='';if(typeof _0x9729bc==_0x42ba90(0x454)||typeof _0x9729bc==_0x42ba90(0x3eb))_0x264706+=_0x9729bc;else{if(typeof _0x9729bc==_0x42ba90(0x6a5)){if(Array['isArray'](_0x9729bc)){var _0x92af2=_0x9729bc[_0x42ba90(0x453)];for(_0x29749e=0x0;_0x29749e<_0x92af2;_0x29749e++)_0x9729bc[_0x29749e]&&(_0x1673a2=_0x83ac26(_0x9729bc[_0x29749e]))&&(_0x264706&&(_0x264706+='\x20'),_0x264706+=_0x1673a2);}else{for(_0x1673a2 in _0x9729bc)_0x9729bc[_0x1673a2]&&(_0x264706&&(_0x264706+='\x20'),_0x264706+=_0x1673a2);}}}return _0x264706;}function _0xa7c364(){const _0x3c65eb=_0x3ff78d;for(var _0x3c2895,_0x130e33,_0x4b27f0=0x0,_0xd97ef6='',_0xc88b6b=arguments[_0x3c65eb(0x453)];_0x4b27f0<_0xc88b6b;_0x4b27f0++)(_0x3c2895=arguments[_0x4b27f0])&&(_0x130e33=_0x83ac26(_0x3c2895))&&(_0xd97ef6&&(_0xd97ef6+='\x20'),_0xd97ef6+=_0x130e33);return _0xd97ef6;}const _0x27b208={'onlineStatusIcon':'univer-online-status-icon','onlineStatusTitle':_0x3ff78d(0x676),'onlineStatus':_0x3ff78d(0x28d),'online':_0x3ff78d(0x556),'offline':_0x3ff78d(0x227)};function _0x55a2b6(_0x16e06a){const _0x150651=_0x3ff78d;switch(_0x16e06a){case _0x5728a6[_0x150651(0x275)]:return _0x150651(0x30c);case _0x5728a6[_0x150651(0x5d9)]:return'collabStatus.conflict';case _0x5728a6['FETCH_MISS']:return _0x150651(0x2c3);case _0x5728a6[_0x150651(0x568)]:return _0x150651(0x52d);case _0x5728a6[_0x150651(0x5ac)]:case _0x5728a6['AWAITING_WITH_PENDING']:return _0x150651(0x596);case _0x5728a6[_0x150651(0x609)]:case _0x5728a6[_0x150651(0x2b3)]:return _0x150651(0x240);}}function _0x87a38(_0x4ac3d0){const _0x5e3790=_0x3ff78d,{status$:_0x53c6fb}=_0x4ac3d0,_0x51b9f5=_0x3f9dc7[_0x5e3790(0x389)](_0x53c6fb,_0x5728a6[_0x5e3790(0x568)]),_0x26f074=_0x121236[_0x5e3790(0x2cc)](_0x121236['LocaleService']),_0x22f236=_0x121236[_0x5e3790(0x2cc)](_0x1e9522[_0x5e3790(0x3ee)]),_0x3ffba0=_0x51b9f5!==_0x5728a6[_0x5e3790(0x275)],_0x2c844a=_0x26f074['t'](_0x55a2b6(_0x51b9f5)),_0x429e14=_0xa7c364(_0x27b208['onlineStatus'],{[_0x27b208['online']]:_0x3ffba0,[_0x27b208['offline']]:!_0x3ffba0}),_0xd66a62=_0x3ffba0?_0x1783c3['jsx'](_0x290084,{}):_0x1783c3[_0x5e3790(0x409)](_0x3593bb,{}),_0x287219=_0x4bcf07[_0x5e3790(0x69d)](()=>{const _0xff2a93=_0x5e3790;_0x3ffba0||_0x22f236[_0xff2a93(0x451)]();},[_0x3ffba0,_0x22f236]);function _0x98c937(){const _0x4157df=_0x5e3790;return _0x1783c3[_0x4157df(0x3ea)](_0x4157df(0x678),{'className':_0x429e14,'onClick':_0x287219,'children':[_0x1783c3[_0x4157df(0x409)](_0x4157df(0x678),{'className':_0x27b208['onlineStatusIcon'],'children':_0xd66a62}),_0x1783c3['jsx'](_0x4157df(0x678),{'className':_0x27b208[_0x4157df(0x25e)],'children':_0x2c844a})]});}return _0x3ffba0?_0x98c937():_0x1783c3[_0x5e3790(0x409)](_0xb84fce['Tooltip'],{'title':_0x26f074['t'](_0x5e3790(0x53e)),'children':_0x98c937()});}var _0x42a882=Object[_0x3ff78d(0x675)],_0x36be55=Object['getOwnPropertyDescriptor'],_0x296ed6=(_0x1416b2,_0x4d0f95,_0x524835,_0x211e3f)=>{for(var _0x4c0b39=_0x211e3f>0x1?void 0x0:_0x211e3f?_0x36be55(_0x4d0f95,_0x524835):_0x4d0f95,_0x4913b6=_0x1416b2['length']-0x1,_0x539cc9;_0x4913b6>=0x0;_0x4913b6--)(_0x539cc9=_0x1416b2[_0x4913b6])&&(_0x4c0b39=(_0x211e3f?_0x539cc9(_0x4d0f95,_0x524835,_0x4c0b39):_0x539cc9(_0x4c0b39))||_0x4c0b39);return _0x211e3f&&_0x4c0b39&&_0x42a882(_0x4d0f95,_0x524835,_0x4c0b39),_0x4c0b39;},_0x44726f=(_0x8edce2,_0x2a11bb)=>(_0xf31403,_0x40a9c8)=>_0x2a11bb(_0xf31403,_0x40a9c8,_0x8edce2);_0x1e9522[_0x3ff78d(0x3a1)]=class extends _0x121236[_0x3ff78d(0x3c0)]{constructor(_0x29831b,_0x120162,_0x1d71b8,_0x59bfec){const _0x2bc520=_0x3ff78d;super(),_0x3661de(this,_0x2bc520(0x510),new _0x2d6fea[(_0x2bc520(0x3d6))](_0x5728a6['NOT_COLLAB'])),(this[_0x2bc520(0x22b)]=_0x29831b,this[_0x2bc520(0x69b)]=_0x120162,this[_0x2bc520(0x45b)]=_0x1d71b8,this[_0x2bc520(0x651)]=_0x59bfec,this[_0x2bc520(0x49b)](),this['_initStatusListener']());}['_initStatusListener'](){const _0x461f23=_0x3ff78d;this[_0x461f23(0x5e2)](this['_univerInstanceService'][_0x461f23(0x20e)][_0x461f23(0x252)](_0x2d6fea[_0x461f23(0x350)](()=>{const _0x1b4313=_0x461f23,_0x1440d1=this[_0x1b4313(0x22b)][_0x1b4313(0x4b2)]();return _0x1440d1?this[_0x1b4313(0x651)][_0x1b4313(0x548)](_0x1440d1[_0x1b4313(0x62a)]()):_0x2d6fea['of'](null);}),_0x2d6fea['switchMap'](_0x37ea77=>_0x37ea77?_0x37ea77[_0x461f23(0x440)]:_0x2d6fea['of'](_0x5728a6[_0x461f23(0x568)])))[_0x461f23(0x4e0)](_0x2a6228=>{const _0x12642d=_0x461f23;this['_status$'][_0x12642d(0x5f8)](_0x2a6228);}));}[_0x3ff78d(0x49b)](){const _0x5647fd=_0x3ff78d;this[_0x5647fd(0x5e2)](this[_0x5647fd(0x69b)]['registerComponent'](_0x3f9dc7[_0x5647fd(0x3cb)][_0x5647fd(0x50d)],()=>_0x121236[_0x5647fd(0x456)](_0x23ff4e({'status$':this[_0x5647fd(0x510)]['asObservable']()}),this[_0x5647fd(0x45b)])));}},_0x1e9522[_0x3ff78d(0x3a1)]=_0x296ed6([_0x44726f(0x0,_0x121236[_0x3ff78d(0x289)]),_0x44726f(0x1,_0x3f9dc7[_0x3ff78d(0x222)]),_0x44726f(0x2,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x44726f(0x3,_0x121236[_0x3ff78d(0x64f)](_0x1e9522[_0x3ff78d(0x3a2)]))],_0x1e9522[_0x3ff78d(0x3a1)]);function _0x23ff4e(_0x202c68){const {status$:_0x185c23}=_0x202c68;return function(){return _0x1783c3['jsx'](_0x87a38,{'status$':_0x185c23});};}const _0x47c44c=_0x121236[_0x3ff78d(0x5f4)](_0x3ff78d(0x553));var _0x1d8647=Object[_0x3ff78d(0x675)],_0x5cd6c6=Object['getOwnPropertyDescriptor'],_0x508d06=(_0x21a550,_0x3ff785,_0x2f0f7a,_0x3a82d5)=>{for(var _0x54ac57=_0x3a82d5>0x1?void 0x0:_0x3a82d5?_0x5cd6c6(_0x3ff785,_0x2f0f7a):_0x3ff785,_0x2d01d9=_0x21a550['length']-0x1,_0x2392eb;_0x2d01d9>=0x0;_0x2d01d9--)(_0x2392eb=_0x21a550[_0x2d01d9])&&(_0x54ac57=(_0x3a82d5?_0x2392eb(_0x3ff785,_0x2f0f7a,_0x54ac57):_0x2392eb(_0x54ac57))||_0x54ac57);return _0x3a82d5&&_0x54ac57&&_0x1d8647(_0x3ff785,_0x2f0f7a,_0x54ac57),_0x54ac57;},_0x399240=(_0x54626c,_0x31d488)=>(_0x54d003,_0x5f0ac2)=>_0x31d488(_0x54d003,_0x5f0ac2,_0x54626c);_0x1e9522[_0x3ff78d(0x213)]=class extends _0x121236['RxDisposable']{constructor(_0x446edc,_0x58fd37,_0x1a505b,_0xb635fa,_0x36a6dc,_0x107338){const _0x5a6bb1=_0x3ff78d;super(),this[_0x5a6bb1(0x4cc)]=_0x446edc,this[_0x5a6bb1(0x659)]=_0x58fd37,this[_0x5a6bb1(0x467)]=_0x1a505b,this[_0x5a6bb1(0x563)]=_0xb635fa,this['_snapshotService']=_0x36a6dc,_0x107338?_0x107338==null||_0x107338[_0x5a6bb1(0x4e2)]()[_0x5a6bb1(0x437)](()=>this[_0x5a6bb1(0x55a)]()):(this[_0x5a6bb1(0x659)]['debug'](_0x5a6bb1(0x653),'No\x20remote\x20instance\x20service\x20injected.\x20May\x20not\x20syncing\x20edits\x20to\x20the\x20web\x20worker.'),this[_0x5a6bb1(0x55a)]());}async[_0x3ff78d(0x55a)](){const _0x1a51a9=_0x3ff78d,_0x14a4dc=this[_0x1a51a9(0x4cc)][_0x1a51a9(0x685)](_0x1a51a9(0x339)),_0x4b5576=this['_urlService'][_0x1a51a9(0x685)](_0x1a51a9(0x25f));if(!_0x14a4dc||!_0x4b5576){this[_0x1a51a9(0x659)]['debug'](_0x1a51a9(0x653),_0x1a51a9(0x28e));return;}switch(Number(_0x4b5576)){case _0x4651ca[_0x1a51a9(0x63c)]:{const _0x5e5d6b=await this['_loadSheet'](_0x14a4dc);this[_0x1a51a9(0x24d)](_0x5e5d6b);break;}case _0x4651ca[_0x1a51a9(0x54f)]:{await this[_0x1a51a9(0x2e2)](_0x14a4dc);break;}default:{this[_0x1a51a9(0x659)][_0x1a51a9(0x421)]('[DataLoaderController]',_0x1a51a9(0x2a1));break;}}}async['_setupSubUnitSync'](_0x23bc89){const _0x2e05f2=_0x3ff78d;await this[_0x2e05f2(0x465)](_0x23bc89),_0x23bc89['activeSheet$'][_0x2e05f2(0x252)](_0x2d6fea[_0x2e05f2(0x3c1)](this[_0x2e05f2(0x268)]))[_0x2e05f2(0x4e0)](_0x492238=>{_0x492238&&this['_updateURLWithCurrentState'](_0x492238);}),this[_0x2e05f2(0x4cc)][_0x2e05f2(0x2a9)][_0x2e05f2(0x252)](_0x2d6fea[_0x2e05f2(0x3c1)](this[_0x2e05f2(0x268)]))[_0x2e05f2(0x4e0)](()=>this[_0x2e05f2(0x465)](_0x23bc89));}[_0x3ff78d(0x49e)](_0x25da13,_0x2f7136=!0x1){const _0x499192=_0x3ff78d,_0x2ec471=this[_0x499192(0x4cc)][_0x499192(0x685)](_0x499192(0x667));_0x25da13[_0x499192(0x22e)]()!==_0x2ec471&&this['_urlService'][_0x499192(0x6a3)](_0x499192(0x667),_0x25da13[_0x499192(0x22e)](),_0x2f7136);}async[_0x3ff78d(0x465)](_0x3edbfa){const _0x1bd8cc=_0x3ff78d;var _0x2cea93;const _0x3baab8=this[_0x1bd8cc(0x4cc)][_0x1bd8cc(0x685)]('subunit');if(!_0x3baab8||!_0x3edbfa[_0x1bd8cc(0x5bb)](_0x3baab8)){const _0xc907bb=_0x3edbfa[_0x1bd8cc(0x2a4)]()[0x0],_0x2cfd69=_0x3edbfa[_0x1bd8cc(0x5bb)](_0xc907bb);if(!_0x2cfd69)return;this[_0x1bd8cc(0x49e)](_0x2cfd69,!0x0),await this[_0x1bd8cc(0x467)][_0x1bd8cc(0x52c)](_0x3eed56['SetWorksheetActivateCommand']['id'],{'unitId':_0x3edbfa[_0x1bd8cc(0x62a)](),'subUnitId':_0xc907bb});return;}((_0x2cea93=_0x3edbfa['getActiveSheet']())==null?void 0x0:_0x2cea93[_0x1bd8cc(0x22e)]())!==_0x3baab8&&await this[_0x1bd8cc(0x467)][_0x1bd8cc(0x52c)](_0x3eed56[_0x1bd8cc(0x259)]['id'],{'unitId':_0x3edbfa[_0x1bd8cc(0x62a)](),'subUnitId':_0x3baab8});}async[_0x3ff78d(0x3ac)](_0x115c32){const _0x16b642=_0x3ff78d;let _0x4f78c6=0x0;const _0x3e95e3=await this[_0x16b642(0x563)][_0x16b642(0x246)](_0x115c32);return _0x3e95e3&&(_0x3e95e3['awaitingChangeset']||_0x3e95e3[_0x16b642(0x65e)][_0x16b642(0x453)]!==0x0)&&(_0x4f78c6=_0x3e95e3[_0x16b642(0x679)]),_0x4f78c6===0x0&&this[_0x16b642(0x659)]['debug'](_0x16b642(0x653),_0x16b642(0x599)),this[_0x16b642(0x52e)]['loadSheet'](_0x115c32,_0x4f78c6);}async[_0x3ff78d(0x2e2)](_0xf658bf){const _0x33b18b=_0x3ff78d;let _0x3d17ad=0x0;const _0x598f08=await this[_0x33b18b(0x563)]['loadOfflineData'](_0xf658bf);return _0x598f08&&(_0x598f08['awaitingChangeset']||_0x598f08[_0x33b18b(0x65e)][_0x33b18b(0x453)]!==0x0)&&(_0x3d17ad=_0x598f08[_0x33b18b(0x679)]),_0x3d17ad===0x0&&this[_0x33b18b(0x659)]['debug'](_0x33b18b(0x653),'fetching\x20the\x20latest\x20document\x20from\x20the\x20server.'),this[_0x33b18b(0x52e)]['loadDoc'](_0xf658bf,_0x3d17ad);}},_0x1e9522[_0x3ff78d(0x213)]=_0x508d06([_0x399240(0x0,_0x47c44c),_0x399240(0x1,_0x121236['ILogService']),_0x399240(0x2,_0x121236['ICommandService']),_0x399240(0x3,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x544)])),_0x399240(0x4,_0x121236[_0x3ff78d(0x64f)](_0x254697[_0x3ff78d(0x2ea)])),_0x399240(0x5,_0x121236[_0x3ff78d(0x4f5)](_0x26fac9['IRemoteInstanceService']))],_0x1e9522[_0x3ff78d(0x213)]);var _0x4518b3=Object[_0x3ff78d(0x675)],_0x5ba805=Object['getOwnPropertyDescriptor'],_0x5dea26=(_0x5784d4,_0x1237b4,_0x209801,_0x3ac2f4)=>{const _0x3e33e5=_0x3ff78d;for(var _0x2f2ffb=_0x3ac2f4>0x1?void 0x0:_0x3ac2f4?_0x5ba805(_0x1237b4,_0x209801):_0x1237b4,_0x595c89=_0x5784d4[_0x3e33e5(0x453)]-0x1,_0x344ac7;_0x595c89>=0x0;_0x595c89--)(_0x344ac7=_0x5784d4[_0x595c89])&&(_0x2f2ffb=(_0x3ac2f4?_0x344ac7(_0x1237b4,_0x209801,_0x2f2ffb):_0x344ac7(_0x2f2ffb))||_0x2f2ffb);return _0x3ac2f4&&_0x2f2ffb&&_0x4518b3(_0x1237b4,_0x209801,_0x2f2ffb),_0x2f2ffb;},_0x4da508=(_0x38939f,_0x46366b)=>(_0x3c4190,_0x460f4a)=>_0x46366b(_0x3c4190,_0x460f4a,_0x38939f);const _0x3dc403=_0x3ff78d(0x4ea),_0xafda57=_0x3ff78d(0x4a8);let _0x10af8c=class extends _0x121236['Disposable']{constructor(_0x50d4e8,_0x38a630){const _0xdef052=_0x3ff78d;super(),this[_0xdef052(0x22b)]=_0x50d4e8,this[_0xdef052(0x4da)]=_0x38a630,this[_0xdef052(0x55a)]();}[_0x3ff78d(0x55a)](){const _0x184087=_0x3ff78d;this[_0x184087(0x5e2)](this['_univerInstanceService'][_0x184087(0x20e)]['subscribe'](()=>{const _0x3b9529=_0x184087;var _0x2f77b6;const _0x38641d=this['_univerInstanceService'][_0x3b9529(0x4b2)]();let _0x1e4ea0=(_0x2f77b6=this[_0x3b9529(0x4da)]['getConfig'](_0x3dc403))!=null?_0x2f77b6:_0xafda57;_0x38641d instanceof _0x121236[_0x3b9529(0x630)]&&(_0x1e4ea0=_0x38641d['name']),document[_0x3b9529(0x66e)]=_0x1e4ea0;}));}};_0x10af8c=_0x5dea26([_0x4da508(0x0,_0x121236[_0x3ff78d(0x289)]),_0x4da508(0x1,_0x121236[_0x3ff78d(0x3f8)])],_0x10af8c);var _0x4a6c9c=Object[_0x3ff78d(0x675)],_0x588e23=Object['getOwnPropertyDescriptor'],_0x4f4db4=(_0x464b4e,_0x26df16,_0x2712d4,_0x2ade4c)=>{const _0x150bdb=_0x3ff78d;for(var _0x11f783=_0x2ade4c>0x1?void 0x0:_0x2ade4c?_0x588e23(_0x26df16,_0x2712d4):_0x26df16,_0x2680c7=_0x464b4e[_0x150bdb(0x453)]-0x1,_0x2517a1;_0x2680c7>=0x0;_0x2680c7--)(_0x2517a1=_0x464b4e[_0x2680c7])&&(_0x11f783=(_0x2ade4c?_0x2517a1(_0x26df16,_0x2712d4,_0x11f783):_0x2517a1(_0x11f783))||_0x11f783);return _0x2ade4c&&_0x11f783&&_0x4a6c9c(_0x26df16,_0x2712d4,_0x11f783),_0x11f783;},_0x26b24b=(_0x1be2c0,_0x311a08)=>(_0x346478,_0x4428d5)=>_0x311a08(_0x346478,_0x4428d5,_0x1be2c0);let _0x167329=class{constructor(_0x53ddca,_0x26c546,_0x3ece80){const _0x29baaf=_0x3ff78d;this['_configService']=_0x53ddca,this['_httpService']=_0x26c546,this['localeService']=_0x3ece80,this[_0x29baaf(0x683)]();}[_0x3ff78d(0x683)](){const _0xffb036=_0x3ff78d;this[_0xffb036(0x2e9)][_0xffb036(0x677)]({'priority':0x1,'interceptor':(_0x20747e,_0xa00520)=>_0xa00520(_0x20747e)[_0xffb036(0x252)](_0x2d6fea[_0xffb036(0x2f0)](async _0x167456=>{const _0x40d6d7=_0xffb036,_0x239f5a=_0x167456;if(_0x239f5a['status']===0x191&&window['confirm'](this['localeService']['t']('auth.needGotoLoginAlert'))){const _0x1d0591=window[_0x40d6d7(0x423)](window['location'][_0x40d6d7(0x1f9)]);window['location'][_0x40d6d7(0x1f9)]=this[_0x40d6d7(0x5a8)]()+_0x40d6d7(0x245)+_0x1d0591;}return _0x239f5a;}))});}[_0x3ff78d(0x5a8)](){const _0x1d4d5d=_0x3ff78d;var _0xcea175,_0x39d42a;const _0x4cb919=this['_configService'][_0x1d4d5d(0x606)](_0x1377db),_0x58b72c=this['_configService'][_0x1d4d5d(0x606)](_0x304b09);return(_0x39d42a=(_0xcea175=_0x58b72c==null?void 0x0:_0x58b72c[_0x1d4d5d(0x20a)])!=null?_0xcea175:_0x4cb919)!=null?_0x39d42a:_0x5b77e2;}};_0x167329=_0x4f4db4([_0x26b24b(0x0,_0x121236['IConfigService']),_0x26b24b(0x1,_0x121236[_0x3ff78d(0x64f)](_0x5bb5df[_0x3ff78d(0x228)])),_0x26b24b(0x2,_0x121236['Inject'](_0x121236[_0x3ff78d(0x611)]))],_0x167329);var _0x4a1c43=Object[_0x3ff78d(0x675)],_0x52bcdd=Object[_0x3ff78d(0x570)],_0x25fb51=(_0x2207cd,_0x158528,_0x4199ab,_0x5d2537)=>{const _0x475823=_0x3ff78d;for(var _0x3abb84=_0x5d2537>0x1?void 0x0:_0x5d2537?_0x52bcdd(_0x158528,_0x4199ab):_0x158528,_0x414e6b=_0x2207cd[_0x475823(0x453)]-0x1,_0x521baa;_0x414e6b>=0x0;_0x414e6b--)(_0x521baa=_0x2207cd[_0x414e6b])&&(_0x3abb84=(_0x5d2537?_0x521baa(_0x158528,_0x4199ab,_0x3abb84):_0x521baa(_0x3abb84))||_0x3abb84);return _0x5d2537&&_0x3abb84&&_0x4a1c43(_0x158528,_0x4199ab,_0x3abb84),_0x3abb84;},_0x4695c6=(_0x37f21c,_0x51e291)=>(_0x372a72,_0x11e055)=>_0x51e291(_0x372a72,_0x11e055,_0x37f21c);const _0x5b7dd4='AUTHZ_URL_KEY',_0x5afbea=_0x3ff78d(0x4a6);_0x1e9522[_0x3ff78d(0x249)]=class extends _0x121236[_0x3ff78d(0x3c0)]{constructor(_0x242086,_0x1c0580){const _0x1ce24b=_0x3ff78d;super(),this['_HTTPService']=_0x242086,this['_configService']=_0x1c0580,this[_0x1ce24b(0x64c)]();}['_initMergeInterceptor'](){const _0x47fb19=_0x3ff78d,_0x4c1294=this;this['disposeWithMe'](this[_0x47fb19(0x3bc)][_0x47fb19(0x677)]({'priority':0x3e7,'interceptor':_0x5bb5df[_0x47fb19(0x392)]({'isMatch'(_0x158881){const _0x17ea5e=_0x47fb19;var _0xe0ad16;if(_0x158881[_0x17ea5e(0x58e)]===_0x17ea5e(0x38d)&&((_0xe0ad16=_0x158881[_0x17ea5e(0x496)])!=null&&_0xe0ad16[_0x17ea5e(0x23d)])){const {objectID:_0x44c16d,objectType:_0x2c6ac3}=_0x158881[_0x17ea5e(0x496)]['body']||{};if(!_0x44c16d||_0x2c6ac3===void 0x0)return!0x1;const _0x3b85f6=_0x4c1294[_0x17ea5e(0x55e)]()+'/'+_0x2c6ac3+'/object/'+_0x44c16d+_0x17ea5e(0x549);if(_0x158881[_0x17ea5e(0x607)]===_0x3b85f6)return!0x0;}return!0x1;},'getParamsFromRequest'(_0x1ae9a1){const _0x1a81a0=_0x47fb19;var _0x1d9fc0;return(_0x1d9fc0=_0x1ae9a1[_0x1a81a0(0x496)])==null?void 0x0:_0x1d9fc0['body'];},'mergeParamsToRequest'(_0x1e2e3e,_0x380c30){const _0x3d6f24=_0x47fb19,_0x3f9257=_0x4c1294['_getAPIPrefixPath']()+_0x3d6f24(0x5fa),_0x4846a4=_0x1e2e3e['reduce']((_0x5c9a5b,_0x102a55)=>{const _0x3e0db6=_0x3d6f24,{unitID:_0x35e3f9,objectID:_0x3db82a,objectType:_0x4b176c,actions:_0x4e264e}=_0x102a55;return _0x5c9a5b[_0x35e3f9]||(_0x5c9a5b[_0x35e3f9]={}),_0x5c9a5b[_0x35e3f9][_0x3db82a]||(_0x5c9a5b[_0x35e3f9][_0x3db82a]={'objectID':_0x3db82a,'objectType':_0x4b176c,'actions':[]}),_0x5c9a5b[_0x35e3f9][_0x3db82a][_0x3e0db6(0x305)][_0x3e0db6(0x3f3)](..._0x4e264e),_0x5c9a5b;},{}),_0x5edcd9=[];for(const _0x426ac0 in _0x4846a4)for(const _0x59f3d9 in _0x4846a4[_0x426ac0]){const {actions:_0x493aad,objectType:_0x3f2e73}=_0x4846a4[_0x426ac0][_0x59f3d9],_0x4396a1=[...new Set(_0x493aad)];_0x5edcd9['push']({'unitID':_0x426ac0,'objectID':_0x59f3d9,'objectType':_0x3f2e73,'actions':_0x4396a1});}return new _0x5bb5df[(_0x3d6f24(0x2c6))](_0x3d6f24(0x38d),_0x3f9257,{'headers':_0x380c30['headers'],'withCredentials':_0x380c30[_0x3d6f24(0x4c3)],'responseType':_0x380c30[_0x3d6f24(0x4b4)],'body':{'requests':_0x5edcd9}});}},{'distributeResult'(_0x234214,_0x138f4e){const _0xe6b82b=_0x47fb19,{objectActions:_0x33b98a}=_0x234214;return _0x138f4e[_0xe6b82b(0x43e)](_0x225774=>{const _0xf908b8=_0xe6b82b,{unitID:_0x12ec52,objectID:_0x3a1877,actions:_0x50f5f7}=_0x225774,_0x3cd531=_0x33b98a[_0xf908b8(0x499)](_0xfb5fd3=>_0xfb5fd3['unitID']===_0x12ec52&&_0xfb5fd3['objectID']===_0x3a1877),_0x2ab925=_0x50f5f7['map'](_0x433e49=>_0x3cd531==null?void 0x0:_0x3cd531[_0xf908b8(0x305)]['find'](_0x570e7c=>_0x570e7c[_0xf908b8(0x55c)]===_0x433e49))[_0xf908b8(0x65c)](_0x43d7f3=>!!_0x43d7f3);return{'config':_0x225774,'result':{'actions':_0x2ab925,'error':_0x234214['error']}};});}})}));}[_0x3ff78d(0x55e)](){const _0x33ba12=_0x3ff78d;var _0x569850,_0x4005fd;const _0x5f55d0=this[_0x33ba12(0x4da)][_0x33ba12(0x606)](_0x5b7dd4),_0x2b5356=this[_0x33ba12(0x4da)][_0x33ba12(0x606)](_0x304b09);return(_0x4005fd=(_0x569850=_0x2b5356==null?void 0x0:_0x2b5356[_0x33ba12(0x3c7)])!=null?_0x569850:_0x5f55d0)!=null?_0x4005fd:_0x5afbea;}async[_0x3ff78d(0x539)](_0x4df4e5){const _0x1ed727=_0x3ff78d,_0x53ca34=this[_0x1ed727(0x55e)]()+'/'+_0x4df4e5['objectType']+'/object';return(await this[_0x1ed727(0x3bc)][_0x1ed727(0x4a2)](_0x53ca34,{'body':_0x4df4e5}))[_0x1ed727(0x23d)]['objectID']||'';}async['list'](_0x78389b){const _0x27f2e2=_0x3ff78d,_0xb4015f=this[_0x27f2e2(0x55e)]()+'/-/object/list';return(await this['_HTTPService']['post'](_0xb4015f,{'body':_0x78389b}))['body']['objects'];}async[_0x3ff78d(0x285)](_0x1a0fa1){const _0x1a88fc=_0x3ff78d,_0x120356=this['_getAPIPrefixPath']()+'/'+_0x1a0fa1['objectType']+'/object/'+_0x1a0fa1[_0x1a88fc(0x511)];await this['_HTTPService'][_0x1a88fc(0x3ef)](_0x120356,{'body':_0x1a0fa1});}async[_0x3ff78d(0x4d5)](_0x312682){const _0x461728=_0x3ff78d,_0x2eef84=this[_0x461728(0x55e)]()+'/'+_0x312682[_0x461728(0x4ad)]+_0x461728(0x4f3)+_0x312682[_0x461728(0x511)]+_0x461728(0x549);return(await this['_HTTPService'][_0x461728(0x4a2)](_0x2eef84,{'body':_0x312682}))[_0x461728(0x23d)][_0x461728(0x305)];}async[_0x3ff78d(0x505)](_0x4b5547){const _0x3b8425=_0x3ff78d,_0x54d047=this[_0x3b8425(0x55e)]()+_0x3b8425(0x5fa);return(await this[_0x3b8425(0x3bc)]['post'](_0x54d047,{'body':{'requests':_0x4b5547}}))['body'][_0x3b8425(0x297)];}async[_0x3ff78d(0x5c3)](_0x554365){const _0x430eb6=_0x3ff78d,_0x4e514f=this['_getAPIPrefixPath']()+'/'+_0x554365[_0x430eb6(0x4ad)]+_0x430eb6(0x385),_0x27be11=await this[_0x430eb6(0x3bc)][_0x430eb6(0x4a2)](_0x4e514f,{'body':_0x554365});return{'roles':_0x27be11['body'][_0x430eb6(0x378)],'actions':_0x27be11['body'][_0x430eb6(0x305)]};}async[_0x3ff78d(0x32c)](_0x57a33e){const _0x34a4ae=_0x3ff78d,_0x13421c=this[_0x34a4ae(0x55e)]()+_0x34a4ae(0x373);await this[_0x34a4ae(0x3bc)][_0x34a4ae(0x52a)](_0x13421c,{'params':{'collaboratorID':_0x57a33e[_0x34a4ae(0x48f)],'objectID':_0x57a33e[_0x34a4ae(0x511)],'unitID':_0x57a33e[_0x34a4ae(0x4d1)]}});}async[_0x3ff78d(0x4bd)](_0x2d4dff){const _0x1ac933=_0x3ff78d,_0x138ac8=this[_0x1ac933(0x55e)]()+_0x1ac933(0x373);await this[_0x1ac933(0x3bc)][_0x1ac933(0x4bc)](_0x138ac8,{'body':_0x2d4dff});}async[_0x3ff78d(0x4b3)](_0x31852b){const _0x255576=_0x3ff78d,_0x57f13b=this[_0x255576(0x55e)]()+_0x255576(0x373);await this['_HTTPService'][_0x255576(0x4a2)](_0x57f13b,{'body':_0x31852b});}async[_0x3ff78d(0x3b9)](_0x4dab8b){const _0x43fb82=_0x3ff78d,_0x58c1a2=this['_getAPIPrefixPath']()+'/collaborator';return(await this['_HTTPService'][_0x43fb82(0x295)](_0x58c1a2,{'params':{'objectID':_0x4dab8b[_0x43fb82(0x511)],'unitID':_0x4dab8b[_0x43fb82(0x4d1)]}}))[_0x43fb82(0x23d)][_0x43fb82(0x3f9)];}async['putCollaborators'](_0xb82756){const _0x42a5af=_0x3ff78d,_0x3a9b94=this[_0x42a5af(0x55e)]()+_0x42a5af(0x373);await this[_0x42a5af(0x3bc)]['put'](_0x3a9b94,{'body':_0xb82756});}},_0x1e9522[_0x3ff78d(0x249)]=_0x25fb51([_0x4695c6(0x0,_0x121236['Inject'](_0x5bb5df[_0x3ff78d(0x228)])),_0x4695c6(0x1,_0x121236[_0x3ff78d(0x64f)](_0x121236['IConfigService']))],_0x1e9522['AuthzIoHttpService']);var _0x288f2b={'exports':{}};function _0x55124b(_0x4a13e8){const _0x3946b4=_0x3ff78d;throw new Error(_0x3946b4(0x65a)+_0x4a13e8+'\x22.\x20Please\x20configure\x20the\x20dynamicRequireTargets\x20or/and\x20ignoreDynamicRequires\x20option\x20of\x20@rollup/plugin-commonjs\x20appropriately\x20for\x20this\x20require\x20call\x20to\x20work.');}var _0x3408bb={'exports':{}},_0x3ffecf;function _0x21bee2(){const _0x4ad31f=_0x3ff78d;return _0x3ffecf||(_0x3ffecf=0x1,function(_0x244ccc,_0x4aa31e){(function(_0x13f123,_0x35b94a){const _0x316322=_0x57aa;_0x244ccc[_0x316322(0x3aa)]=_0x35b94a();}(_0x373fb5,function(){var _0x3bffb7=_0x3bffb7||function(_0x250c3e,_0x1c0314){const _0x331155=_0x57aa;var _0x2e820a;if(typeof window<'u'&&window[_0x331155(0x533)]&&(_0x2e820a=window['crypto']),typeof self<'u'&&self[_0x331155(0x533)]&&(_0x2e820a=self['crypto']),typeof globalThis<'u'&&globalThis[_0x331155(0x533)]&&(_0x2e820a=globalThis[_0x331155(0x533)]),!_0x2e820a&&typeof window<'u'&&window[_0x331155(0x34a)]&&(_0x2e820a=window[_0x331155(0x34a)]),!_0x2e820a&&typeof _0x373fb5<'u'&&_0x373fb5[_0x331155(0x533)]&&(_0x2e820a=_0x373fb5[_0x331155(0x533)]),!_0x2e820a&&typeof _0x55124b==_0x331155(0x5f5))try{_0x2e820a=require(_0x331155(0x533));}catch{}var _0x353b15=function(){const _0x58abdd=_0x331155;if(_0x2e820a){if(typeof _0x2e820a[_0x58abdd(0x692)]==_0x58abdd(0x5f5))try{return _0x2e820a[_0x58abdd(0x692)](new Uint32Array(0x1))[0x0];}catch{}if(typeof _0x2e820a['randomBytes']==_0x58abdd(0x5f5))try{return _0x2e820a[_0x58abdd(0x3e2)](0x4)[_0x58abdd(0x2b7)]();}catch{}}throw new Error(_0x58abdd(0x566));},_0x5ac6b1=Object[_0x331155(0x539)]||(function(){function _0x1ee66f(){}return function(_0x1b2bb2){const _0x29ceee=_0x57aa;var _0x4bac02;return _0x1ee66f[_0x29ceee(0x388)]=_0x1b2bb2,_0x4bac02=new _0x1ee66f(),_0x1ee66f['prototype']=null,_0x4bac02;};}()),_0x1c7fd3={},_0xcef9fc=_0x1c7fd3[_0x331155(0x31f)]={},_0x2df9c7=_0xcef9fc[_0x331155(0x671)]=(function(){return{'extend':function(_0x3db05a){const _0x28ade2=_0x57aa;var _0x5bbe25=_0x5ac6b1(this);return _0x3db05a&&_0x5bbe25[_0x28ade2(0x380)](_0x3db05a),(!_0x5bbe25[_0x28ade2(0x42a)]('init')||this[_0x28ade2(0x683)]===_0x5bbe25[_0x28ade2(0x683)])&&(_0x5bbe25[_0x28ade2(0x683)]=function(){const _0x2d993d=_0x28ade2;_0x5bbe25[_0x2d993d(0x3a8)][_0x2d993d(0x683)][_0x2d993d(0x419)](this,arguments);}),_0x5bbe25['init'][_0x28ade2(0x388)]=_0x5bbe25,_0x5bbe25[_0x28ade2(0x3a8)]=this,_0x5bbe25;},'create':function(){const _0x2e4ebb=_0x57aa;var _0x1580ca=this[_0x2e4ebb(0x37a)]();return _0x1580ca[_0x2e4ebb(0x683)][_0x2e4ebb(0x419)](_0x1580ca,arguments),_0x1580ca;},'init':function(){},'mixIn':function(_0x16fe0b){const _0x3949e7=_0x57aa;for(var _0x32cb11 in _0x16fe0b)_0x16fe0b[_0x3949e7(0x42a)](_0x32cb11)&&(this[_0x32cb11]=_0x16fe0b[_0x32cb11]);_0x16fe0b['hasOwnProperty'](_0x3949e7(0x44c))&&(this['toString']=_0x16fe0b[_0x3949e7(0x44c)]);},'clone':function(){const _0x25d6d3=_0x57aa;return this['init']['prototype'][_0x25d6d3(0x37a)](this);}};}()),_0x28af79=_0xcef9fc[_0x331155(0x550)]=_0x2df9c7['extend']({'init':function(_0x38c812,_0x27bca1){const _0x55da8f=_0x331155;_0x38c812=this[_0x55da8f(0x382)]=_0x38c812||[],_0x27bca1!=_0x1c0314?this['sigBytes']=_0x27bca1:this[_0x55da8f(0x3e9)]=_0x38c812[_0x55da8f(0x453)]*0x4;},'toString':function(_0x31194f){const _0x839612=_0x331155;return(_0x31194f||_0x18e9e4)[_0x839612(0x411)](this);},'concat':function(_0x4651de){const _0x417b50=_0x331155;var _0x14bd44=this['words'],_0x2ab9e2=_0x4651de[_0x417b50(0x382)],_0x167826=this[_0x417b50(0x3e9)],_0x10df51=_0x4651de[_0x417b50(0x3e9)];if(this[_0x417b50(0x5c2)](),_0x167826%0x4)for(var _0x356d16=0x0;_0x356d16<_0x10df51;_0x356d16++){var _0x14d6fa=_0x2ab9e2[_0x356d16>>>0x2]>>>0x18-_0x356d16%0x4*0x8&0xff;_0x14bd44[_0x167826+_0x356d16>>>0x2]|=_0x14d6fa<<0x18-(_0x167826+_0x356d16)%0x4*0x8;}else{for(var _0x52dbe8=0x0;_0x52dbe8<_0x10df51;_0x52dbe8+=0x4)_0x14bd44[_0x167826+_0x52dbe8>>>0x2]=_0x2ab9e2[_0x52dbe8>>>0x2];}return this[_0x417b50(0x3e9)]+=_0x10df51,this;},'clamp':function(){const _0x28c52b=_0x331155;var _0xc2a8ff=this['words'],_0x27aa51=this['sigBytes'];_0xc2a8ff[_0x27aa51>>>0x2]&=0xffffffff<<0x20-_0x27aa51%0x4*0x8,_0xc2a8ff[_0x28c52b(0x453)]=_0x250c3e[_0x28c52b(0x458)](_0x27aa51/0x4);},'clone':function(){const _0x184fae=_0x331155;var _0x3f061a=_0x2df9c7[_0x184fae(0x20f)]['call'](this);return _0x3f061a[_0x184fae(0x382)]=this[_0x184fae(0x382)]['slice'](0x0),_0x3f061a;},'random':function(_0x364e12){const _0x5e453c=_0x331155;for(var _0x489e78=[],_0x5885f9=0x0;_0x5885f9<_0x364e12;_0x5885f9+=0x4)_0x489e78['push'](_0x353b15());return new _0x28af79[(_0x5e453c(0x683))](_0x489e78,_0x364e12);}}),_0x17bc45=_0x1c7fd3[_0x331155(0x3fe)]={},_0x18e9e4=_0x17bc45[_0x331155(0x6c8)]={'stringify':function(_0x185b30){const _0x54bdf7=_0x331155;for(var _0x21dfba=_0x185b30[_0x54bdf7(0x382)],_0x1bf3cb=_0x185b30[_0x54bdf7(0x3e9)],_0x33c98d=[],_0x54a7a1=0x0;_0x54a7a1<_0x1bf3cb;_0x54a7a1++){var _0x36be0c=_0x21dfba[_0x54a7a1>>>0x2]>>>0x18-_0x54a7a1%0x4*0x8&0xff;_0x33c98d[_0x54bdf7(0x3f3)]((_0x36be0c>>>0x4)['toString'](0x10)),_0x33c98d[_0x54bdf7(0x3f3)]((_0x36be0c&0xf)[_0x54bdf7(0x44c)](0x10));}return _0x33c98d[_0x54bdf7(0x35e)]('');},'parse':function(_0x267bbe){const _0x421160=_0x331155;for(var _0x5863ae=_0x267bbe['length'],_0x38d6cc=[],_0x539fa0=0x0;_0x539fa0<_0x5863ae;_0x539fa0+=0x2)_0x38d6cc[_0x539fa0>>>0x3]|=parseInt(_0x267bbe[_0x421160(0x23a)](_0x539fa0,0x2),0x10)<<0x18-_0x539fa0%0x8*0x4;return new _0x28af79[(_0x421160(0x683))](_0x38d6cc,_0x5863ae/0x2);}},_0x51cd09=_0x17bc45[_0x331155(0x5de)]={'stringify':function(_0x7cb7de){const _0x391049=_0x331155;for(var _0x244dca=_0x7cb7de['words'],_0x4de105=_0x7cb7de[_0x391049(0x3e9)],_0x27c19c=[],_0x40db30=0x0;_0x40db30<_0x4de105;_0x40db30++){var _0x2ab45d=_0x244dca[_0x40db30>>>0x2]>>>0x18-_0x40db30%0x4*0x8&0xff;_0x27c19c[_0x391049(0x3f3)](String[_0x391049(0x614)](_0x2ab45d));}return _0x27c19c[_0x391049(0x35e)]('');},'parse':function(_0x1a02df){const _0x467721=_0x331155;for(var _0x243eff=_0x1a02df['length'],_0x216fd9=[],_0x1c97d4=0x0;_0x1c97d4<_0x243eff;_0x1c97d4++)_0x216fd9[_0x1c97d4>>>0x2]|=(_0x1a02df[_0x467721(0x693)](_0x1c97d4)&0xff)<<0x18-_0x1c97d4%0x4*0x8;return new _0x28af79['init'](_0x216fd9,_0x243eff);}},_0x419fe2=_0x17bc45[_0x331155(0x29b)]={'stringify':function(_0x23711f){const _0x5baf6e=_0x331155;try{return decodeURIComponent(escape(_0x51cd09[_0x5baf6e(0x411)](_0x23711f)));}catch{throw new Error(_0x5baf6e(0x209));}},'parse':function(_0x2d0c51){const _0x1d73a6=_0x331155;return _0x51cd09[_0x1d73a6(0x6b6)](unescape(encodeURIComponent(_0x2d0c51)));}},_0x21351a=_0xcef9fc['BufferedBlockAlgorithm']=_0x2df9c7['extend']({'reset':function(){const _0x3835f4=_0x331155;this[_0x3835f4(0x561)]=new _0x28af79[(_0x3835f4(0x683))](),this[_0x3835f4(0x59d)]=0x0;},'_append':function(_0x198be1){const _0x38cad5=_0x331155;typeof _0x198be1==_0x38cad5(0x454)&&(_0x198be1=_0x419fe2[_0x38cad5(0x6b6)](_0x198be1)),this[_0x38cad5(0x561)][_0x38cad5(0x4af)](_0x198be1),this[_0x38cad5(0x59d)]+=_0x198be1[_0x38cad5(0x3e9)];},'_process':function(_0x163c72){const _0x346b4c=_0x331155;var _0x276940,_0x59a4ea=this[_0x346b4c(0x561)],_0x1ff7e1=_0x59a4ea[_0x346b4c(0x382)],_0x188455=_0x59a4ea[_0x346b4c(0x3e9)],_0x2f903e=this[_0x346b4c(0x497)],_0x7eaf64=_0x2f903e*0x4,_0x3e5f52=_0x188455/_0x7eaf64;_0x163c72?_0x3e5f52=_0x250c3e['ceil'](_0x3e5f52):_0x3e5f52=_0x250c3e[_0x346b4c(0x2f9)]((_0x3e5f52|0x0)-this['_minBufferSize'],0x0);var _0x191215=_0x3e5f52*_0x2f903e,_0x1416c3=_0x250c3e['min'](_0x191215*0x4,_0x188455);if(_0x191215){for(var _0x33db41=0x0;_0x33db41<_0x191215;_0x33db41+=_0x2f903e)this[_0x346b4c(0x63a)](_0x1ff7e1,_0x33db41);_0x276940=_0x1ff7e1[_0x346b4c(0x5e1)](0x0,_0x191215),_0x59a4ea[_0x346b4c(0x3e9)]-=_0x1416c3;}return new _0x28af79[(_0x346b4c(0x683))](_0x276940,_0x1416c3);},'clone':function(){const _0x23bd3a=_0x331155;var _0x29cf75=_0x2df9c7[_0x23bd3a(0x20f)]['call'](this);return _0x29cf75[_0x23bd3a(0x561)]=this['_data'][_0x23bd3a(0x20f)](),_0x29cf75;},'_minBufferSize':0x0});_0xcef9fc[_0x331155(0x2cf)]=_0x21351a[_0x331155(0x37a)]({'cfg':_0x2df9c7[_0x331155(0x37a)](),'init':function(_0x1a023c){const _0x4b4402=_0x331155;this[_0x4b4402(0x68b)]=this[_0x4b4402(0x68b)][_0x4b4402(0x37a)](_0x1a023c),this[_0x4b4402(0x376)]();},'reset':function(){_0x21351a['reset']['call'](this),this['_doReset']();},'update':function(_0x3a7113){const _0x551613=_0x331155;return this[_0x551613(0x260)](_0x3a7113),this[_0x551613(0x5b0)](),this;},'finalize':function(_0x49f280){const _0x20d384=_0x331155;_0x49f280&&this[_0x20d384(0x260)](_0x49f280);var _0x11fa3e=this[_0x20d384(0x429)]();return _0x11fa3e;},'blockSize':0x10,'_createHelper':function(_0x57aad5){return function(_0x341504,_0x45f24f){const _0x55a4a7=_0x57aa;return new _0x57aad5[(_0x55a4a7(0x683))](_0x45f24f)[_0x55a4a7(0x351)](_0x341504);};},'_createHmacHelper':function(_0x3a7142){return function(_0x51ada5,_0x62452b){const _0x2230e7=_0x57aa;return new _0x2db87a[(_0x2230e7(0x2a5))]['init'](_0x3a7142,_0x62452b)['finalize'](_0x51ada5);};}});var _0x2db87a=_0x1c7fd3[_0x331155(0x241)]={};return _0x1c7fd3;}(Math);return _0x3bffb7;}));}(_0x3408bb)),_0x3408bb[_0x4ad31f(0x3aa)];}var _0x346188={'exports':{}},_0x5330b3;function _0x239b1a(){const _0x1a1117=_0x3ff78d;return _0x5330b3||(_0x5330b3=0x1,function(_0x35e148,_0xfce6d9){(function(_0xa1a48e,_0x351eb5){const _0x333216=_0x57aa;_0x35e148[_0x333216(0x3aa)]=_0x351eb5(_0x21bee2());}(_0x373fb5,function(_0x350464){const _0x4fb1ff=_0x57aa;return(function(){const _0x1a238b=_0x57aa;var _0x5775ce=_0x350464,_0x24aeb4=_0x5775ce[_0x1a238b(0x31f)],_0x228bb2=_0x24aeb4[_0x1a238b(0x550)],_0x26dea6=_0x5775ce[_0x1a238b(0x3fe)];_0x26dea6[_0x1a238b(0x292)]={'stringify':function(_0x5f43ed){const _0x51b8ac=_0x1a238b;var _0xdbeab3=_0x5f43ed[_0x51b8ac(0x382)],_0x541549=_0x5f43ed['sigBytes'],_0x4676d5=this[_0x51b8ac(0x5b5)];_0x5f43ed[_0x51b8ac(0x5c2)]();for(var _0x2f6079=[],_0x1a72ad=0x0;_0x1a72ad<_0x541549;_0x1a72ad+=0x3)for(var _0x18cb92=_0xdbeab3[_0x1a72ad>>>0x2]>>>0x18-_0x1a72ad%0x4*0x8&0xff,_0x5ef6f8=_0xdbeab3[_0x1a72ad+0x1>>>0x2]>>>0x18-(_0x1a72ad+0x1)%0x4*0x8&0xff,_0x468464=_0xdbeab3[_0x1a72ad+0x2>>>0x2]>>>0x18-(_0x1a72ad+0x2)%0x4*0x8&0xff,_0x4bae4c=_0x18cb92<<0x10|_0x5ef6f8<<0x8|_0x468464,_0xa71f72=0x0;_0xa71f72<0x4&&_0x1a72ad+_0xa71f72*0.75<_0x541549;_0xa71f72++)_0x2f6079[_0x51b8ac(0x3f3)](_0x4676d5[_0x51b8ac(0x32a)](_0x4bae4c>>>0x6*(0x3-_0xa71f72)&0x3f));var _0x4db6a1=_0x4676d5['charAt'](0x40);if(_0x4db6a1){for(;_0x2f6079['length']%0x4;)_0x2f6079[_0x51b8ac(0x3f3)](_0x4db6a1);}return _0x2f6079[_0x51b8ac(0x35e)]('');},'parse':function(_0x2e66d5){const _0x5e52b5=_0x1a238b;var _0x4265eb=_0x2e66d5[_0x5e52b5(0x453)],_0x4cbdb0=this[_0x5e52b5(0x5b5)],_0x20807=this[_0x5e52b5(0x4f6)];if(!_0x20807){_0x20807=this[_0x5e52b5(0x4f6)]=[];for(var _0xaeb249=0x0;_0xaeb249<_0x4cbdb0[_0x5e52b5(0x453)];_0xaeb249++)_0x20807[_0x4cbdb0[_0x5e52b5(0x693)](_0xaeb249)]=_0xaeb249;}var _0xa69a3f=_0x4cbdb0[_0x5e52b5(0x32a)](0x40);if(_0xa69a3f){var _0x5c4920=_0x2e66d5[_0x5e52b5(0x4e8)](_0xa69a3f);_0x5c4920!==-0x1&&(_0x4265eb=_0x5c4920);}return _0x3c605a(_0x2e66d5,_0x4265eb,_0x20807);},'_map':'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='};function _0x3c605a(_0x2f2ff4,_0x1a5774,_0x36bb9c){const _0x220a25=_0x1a238b;for(var _0x2c4814=[],_0x5f1f09=0x0,_0x425aaa=0x0;_0x425aaa<_0x1a5774;_0x425aaa++)if(_0x425aaa%0x4){var _0x31cb45=_0x36bb9c[_0x2f2ff4[_0x220a25(0x693)](_0x425aaa-0x1)]<<_0x425aaa%0x4*0x2,_0x5ce560=_0x36bb9c[_0x2f2ff4['charCodeAt'](_0x425aaa)]>>>0x6-_0x425aaa%0x4*0x2,_0x2fc005=_0x31cb45|_0x5ce560;_0x2c4814[_0x5f1f09>>>0x2]|=_0x2fc005<<0x18-_0x5f1f09%0x4*0x8,_0x5f1f09++;}return _0x228bb2['create'](_0x2c4814,_0x5f1f09);}}()),_0x350464[_0x4fb1ff(0x3fe)][_0x4fb1ff(0x292)];}));}(_0x346188)),_0x346188[_0x1a1117(0x3aa)];}var _0x326358={'exports':{}},_0x5213f0;function _0x23ab89(){const _0x3ede50=_0x3ff78d;return _0x5213f0||(_0x5213f0=0x1,function(_0x3ceb03,_0x2f21a5){(function(_0x16cc3a,_0xfa9e19){const _0x1438f4=_0x57aa;_0x3ceb03[_0x1438f4(0x3aa)]=_0xfa9e19(_0x21bee2());}(_0x373fb5,function(_0x2c5e67){const _0x5b4259=_0x57aa;return function(_0x27f595){const _0x3f3c43=_0x57aa;var _0x14bd26=_0x2c5e67,_0x28f92e=_0x14bd26[_0x3f3c43(0x31f)],_0x12dc8b=_0x28f92e[_0x3f3c43(0x550)],_0x134c19=_0x28f92e['Hasher'],_0x27e11f=_0x14bd26[_0x3f3c43(0x241)],_0x294c24=[];(function(){const _0x1491fc=_0x3f3c43;for(var _0x57a3e6=0x0;_0x57a3e6<0x40;_0x57a3e6++)_0x294c24[_0x57a3e6]=_0x27f595[_0x1491fc(0x551)](_0x27f595['sin'](_0x57a3e6+0x1))*0x100000000|0x0;}());var _0x421c00=_0x27e11f['MD5']=_0x134c19[_0x3f3c43(0x37a)]({'_doReset':function(){this['_hash']=new _0x12dc8b['init']([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);},'_doProcessBlock':function(_0x430ce1,_0x3cb5cb){const _0x27301e=_0x3f3c43;for(var _0x48857e=0x0;_0x48857e<0x10;_0x48857e++){var _0x2053a2=_0x3cb5cb+_0x48857e,_0x286722=_0x430ce1[_0x2053a2];_0x430ce1[_0x2053a2]=(_0x286722<<0x8|_0x286722>>>0x18)&0xff00ff|(_0x286722<<0x18|_0x286722>>>0x8)&0xff00ff00;}var _0x17e64e=this[_0x27301e(0x22a)]['words'],_0x32fb7b=_0x430ce1[_0x3cb5cb+0x0],_0x235d92=_0x430ce1[_0x3cb5cb+0x1],_0x2b0f9c=_0x430ce1[_0x3cb5cb+0x2],_0x51bc6b=_0x430ce1[_0x3cb5cb+0x3],_0x4ccd1b=_0x430ce1[_0x3cb5cb+0x4],_0x11ceed=_0x430ce1[_0x3cb5cb+0x5],_0x57d3e=_0x430ce1[_0x3cb5cb+0x6],_0x3b0837=_0x430ce1[_0x3cb5cb+0x7],_0x2b8fd0=_0x430ce1[_0x3cb5cb+0x8],_0x4bb252=_0x430ce1[_0x3cb5cb+0x9],_0x492921=_0x430ce1[_0x3cb5cb+0xa],_0x3c23ff=_0x430ce1[_0x3cb5cb+0xb],_0x5105c2=_0x430ce1[_0x3cb5cb+0xc],_0x3c159d=_0x430ce1[_0x3cb5cb+0xd],_0x502e3a=_0x430ce1[_0x3cb5cb+0xe],_0x1bbf62=_0x430ce1[_0x3cb5cb+0xf],_0x542718=_0x17e64e[0x0],_0x591b52=_0x17e64e[0x1],_0x3d517a=_0x17e64e[0x2],_0x585cdd=_0x17e64e[0x3];_0x542718=_0x5060e5(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x32fb7b,0x7,_0x294c24[0x0]),_0x585cdd=_0x5060e5(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x235d92,0xc,_0x294c24[0x1]),_0x3d517a=_0x5060e5(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x2b0f9c,0x11,_0x294c24[0x2]),_0x591b52=_0x5060e5(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x51bc6b,0x16,_0x294c24[0x3]),_0x542718=_0x5060e5(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x4ccd1b,0x7,_0x294c24[0x4]),_0x585cdd=_0x5060e5(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x11ceed,0xc,_0x294c24[0x5]),_0x3d517a=_0x5060e5(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x57d3e,0x11,_0x294c24[0x6]),_0x591b52=_0x5060e5(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x3b0837,0x16,_0x294c24[0x7]),_0x542718=_0x5060e5(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x2b8fd0,0x7,_0x294c24[0x8]),_0x585cdd=_0x5060e5(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x4bb252,0xc,_0x294c24[0x9]),_0x3d517a=_0x5060e5(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x492921,0x11,_0x294c24[0xa]),_0x591b52=_0x5060e5(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x3c23ff,0x16,_0x294c24[0xb]),_0x542718=_0x5060e5(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x5105c2,0x7,_0x294c24[0xc]),_0x585cdd=_0x5060e5(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x3c159d,0xc,_0x294c24[0xd]),_0x3d517a=_0x5060e5(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x502e3a,0x11,_0x294c24[0xe]),_0x591b52=_0x5060e5(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x1bbf62,0x16,_0x294c24[0xf]),_0x542718=_0x4e3e95(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x235d92,0x5,_0x294c24[0x10]),_0x585cdd=_0x4e3e95(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x57d3e,0x9,_0x294c24[0x11]),_0x3d517a=_0x4e3e95(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x3c23ff,0xe,_0x294c24[0x12]),_0x591b52=_0x4e3e95(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x32fb7b,0x14,_0x294c24[0x13]),_0x542718=_0x4e3e95(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x11ceed,0x5,_0x294c24[0x14]),_0x585cdd=_0x4e3e95(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x492921,0x9,_0x294c24[0x15]),_0x3d517a=_0x4e3e95(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x1bbf62,0xe,_0x294c24[0x16]),_0x591b52=_0x4e3e95(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x4ccd1b,0x14,_0x294c24[0x17]),_0x542718=_0x4e3e95(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x4bb252,0x5,_0x294c24[0x18]),_0x585cdd=_0x4e3e95(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x502e3a,0x9,_0x294c24[0x19]),_0x3d517a=_0x4e3e95(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x51bc6b,0xe,_0x294c24[0x1a]),_0x591b52=_0x4e3e95(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x2b8fd0,0x14,_0x294c24[0x1b]),_0x542718=_0x4e3e95(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x3c159d,0x5,_0x294c24[0x1c]),_0x585cdd=_0x4e3e95(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x2b0f9c,0x9,_0x294c24[0x1d]),_0x3d517a=_0x4e3e95(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x3b0837,0xe,_0x294c24[0x1e]),_0x591b52=_0x4e3e95(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x5105c2,0x14,_0x294c24[0x1f]),_0x542718=_0x2e77a9(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x11ceed,0x4,_0x294c24[0x20]),_0x585cdd=_0x2e77a9(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x2b8fd0,0xb,_0x294c24[0x21]),_0x3d517a=_0x2e77a9(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x3c23ff,0x10,_0x294c24[0x22]),_0x591b52=_0x2e77a9(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x502e3a,0x17,_0x294c24[0x23]),_0x542718=_0x2e77a9(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x235d92,0x4,_0x294c24[0x24]),_0x585cdd=_0x2e77a9(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x4ccd1b,0xb,_0x294c24[0x25]),_0x3d517a=_0x2e77a9(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x3b0837,0x10,_0x294c24[0x26]),_0x591b52=_0x2e77a9(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x492921,0x17,_0x294c24[0x27]),_0x542718=_0x2e77a9(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x3c159d,0x4,_0x294c24[0x28]),_0x585cdd=_0x2e77a9(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x32fb7b,0xb,_0x294c24[0x29]),_0x3d517a=_0x2e77a9(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x51bc6b,0x10,_0x294c24[0x2a]),_0x591b52=_0x2e77a9(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x57d3e,0x17,_0x294c24[0x2b]),_0x542718=_0x2e77a9(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x4bb252,0x4,_0x294c24[0x2c]),_0x585cdd=_0x2e77a9(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x5105c2,0xb,_0x294c24[0x2d]),_0x3d517a=_0x2e77a9(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x1bbf62,0x10,_0x294c24[0x2e]),_0x591b52=_0x2e77a9(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x2b0f9c,0x17,_0x294c24[0x2f]),_0x542718=_0x4d7302(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x32fb7b,0x6,_0x294c24[0x30]),_0x585cdd=_0x4d7302(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x3b0837,0xa,_0x294c24[0x31]),_0x3d517a=_0x4d7302(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x502e3a,0xf,_0x294c24[0x32]),_0x591b52=_0x4d7302(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x11ceed,0x15,_0x294c24[0x33]),_0x542718=_0x4d7302(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x5105c2,0x6,_0x294c24[0x34]),_0x585cdd=_0x4d7302(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x51bc6b,0xa,_0x294c24[0x35]),_0x3d517a=_0x4d7302(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x492921,0xf,_0x294c24[0x36]),_0x591b52=_0x4d7302(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x235d92,0x15,_0x294c24[0x37]),_0x542718=_0x4d7302(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x2b8fd0,0x6,_0x294c24[0x38]),_0x585cdd=_0x4d7302(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x1bbf62,0xa,_0x294c24[0x39]),_0x3d517a=_0x4d7302(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x57d3e,0xf,_0x294c24[0x3a]),_0x591b52=_0x4d7302(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x3c159d,0x15,_0x294c24[0x3b]),_0x542718=_0x4d7302(_0x542718,_0x591b52,_0x3d517a,_0x585cdd,_0x4ccd1b,0x6,_0x294c24[0x3c]),_0x585cdd=_0x4d7302(_0x585cdd,_0x542718,_0x591b52,_0x3d517a,_0x3c23ff,0xa,_0x294c24[0x3d]),_0x3d517a=_0x4d7302(_0x3d517a,_0x585cdd,_0x542718,_0x591b52,_0x2b0f9c,0xf,_0x294c24[0x3e]),_0x591b52=_0x4d7302(_0x591b52,_0x3d517a,_0x585cdd,_0x542718,_0x4bb252,0x15,_0x294c24[0x3f]),_0x17e64e[0x0]=_0x17e64e[0x0]+_0x542718|0x0,_0x17e64e[0x1]=_0x17e64e[0x1]+_0x591b52|0x0,_0x17e64e[0x2]=_0x17e64e[0x2]+_0x3d517a|0x0,_0x17e64e[0x3]=_0x17e64e[0x3]+_0x585cdd|0x0;},'_doFinalize':function(){const _0x3db20c=_0x3f3c43;var _0x407c0e=this['_data'],_0x43e91c=_0x407c0e['words'],_0x3fec54=this[_0x3db20c(0x59d)]*0x8,_0x5f00d2=_0x407c0e['sigBytes']*0x8;_0x43e91c[_0x5f00d2>>>0x5]|=0x80<<0x18-_0x5f00d2%0x20;var _0x3a6bb5=_0x27f595[_0x3db20c(0x61f)](_0x3fec54/0x100000000),_0x4e3f37=_0x3fec54;_0x43e91c[(_0x5f00d2+0x40>>>0x9<<0x4)+0xf]=(_0x3a6bb5<<0x8|_0x3a6bb5>>>0x18)&0xff00ff|(_0x3a6bb5<<0x18|_0x3a6bb5>>>0x8)&0xff00ff00,_0x43e91c[(_0x5f00d2+0x40>>>0x9<<0x4)+0xe]=(_0x4e3f37<<0x8|_0x4e3f37>>>0x18)&0xff00ff|(_0x4e3f37<<0x18|_0x4e3f37>>>0x8)&0xff00ff00,_0x407c0e[_0x3db20c(0x3e9)]=(_0x43e91c[_0x3db20c(0x453)]+0x1)*0x4,this[_0x3db20c(0x5b0)]();for(var _0x4f7cde=this[_0x3db20c(0x22a)],_0x26542a=_0x4f7cde[_0x3db20c(0x382)],_0x2e267c=0x0;_0x2e267c<0x4;_0x2e267c++){var _0x5e7f09=_0x26542a[_0x2e267c];_0x26542a[_0x2e267c]=(_0x5e7f09<<0x8|_0x5e7f09>>>0x18)&0xff00ff|(_0x5e7f09<<0x18|_0x5e7f09>>>0x8)&0xff00ff00;}return _0x4f7cde;},'clone':function(){const _0x1f9be6=_0x3f3c43;var _0x3b5272=_0x134c19[_0x1f9be6(0x20f)][_0x1f9be6(0x28f)](this);return _0x3b5272[_0x1f9be6(0x22a)]=this[_0x1f9be6(0x22a)][_0x1f9be6(0x20f)](),_0x3b5272;}});function _0x5060e5(_0xe6dc11,_0x54613c,_0x33aa57,_0x447612,_0x59150b,_0x14c038,_0x4f5385){var _0x233531=_0xe6dc11+(_0x54613c&_0x33aa57|~_0x54613c&_0x447612)+_0x59150b+_0x4f5385;return(_0x233531<<_0x14c038|_0x233531>>>0x20-_0x14c038)+_0x54613c;}function _0x4e3e95(_0x5036d0,_0x15edc2,_0x304876,_0x47d4c6,_0x214544,_0x3f7af3,_0x3cf9f7){var _0x7df908=_0x5036d0+(_0x15edc2&_0x47d4c6|_0x304876&~_0x47d4c6)+_0x214544+_0x3cf9f7;return(_0x7df908<<_0x3f7af3|_0x7df908>>>0x20-_0x3f7af3)+_0x15edc2;}function _0x2e77a9(_0x1a6a16,_0x16a371,_0x5688c7,_0x1f9b25,_0x411699,_0x484867,_0x371a38){var _0x4bcc58=_0x1a6a16+(_0x16a371^_0x5688c7^_0x1f9b25)+_0x411699+_0x371a38;return(_0x4bcc58<<_0x484867|_0x4bcc58>>>0x20-_0x484867)+_0x16a371;}function _0x4d7302(_0x54aaa9,_0x237059,_0x1c11bb,_0x261902,_0x8dd0fb,_0x5177d6,_0x503162){var _0x54b449=_0x54aaa9+(_0x1c11bb^(_0x237059|~_0x261902))+_0x8dd0fb+_0x503162;return(_0x54b449<<_0x5177d6|_0x54b449>>>0x20-_0x5177d6)+_0x237059;}_0x14bd26[_0x3f3c43(0x2b8)]=_0x134c19[_0x3f3c43(0x2e6)](_0x421c00),_0x14bd26[_0x3f3c43(0x5d2)]=_0x134c19['_createHmacHelper'](_0x421c00);}(Math),_0x2c5e67[_0x5b4259(0x2b8)];}));}(_0x326358)),_0x326358[_0x3ede50(0x3aa)];}var _0x533fa3={'exports':{}},_0x229aec={'exports':{}},_0x4293ad;function _0x2b3f6d(){const _0xe218f0=_0x3ff78d;return _0x4293ad||(_0x4293ad=0x1,function(_0x3e7793,_0x299928){(function(_0x4b983c,_0xe50628){const _0x1867dd=_0x57aa;_0x3e7793[_0x1867dd(0x3aa)]=_0xe50628(_0x21bee2());}(_0x373fb5,function(_0x2f621a){const _0x2ad03f=_0x57aa;return(function(){const _0x5f40a1=_0x57aa;var _0x2230b6=_0x2f621a,_0x216711=_0x2230b6[_0x5f40a1(0x31f)],_0x5bbf01=_0x216711[_0x5f40a1(0x550)],_0x90b223=_0x216711[_0x5f40a1(0x2cf)],_0x2673fd=_0x2230b6[_0x5f40a1(0x241)],_0x5c2aca=[],_0x43c1c2=_0x2673fd['SHA1']=_0x90b223[_0x5f40a1(0x37a)]({'_doReset':function(){const _0x36a8d5=_0x5f40a1;this[_0x36a8d5(0x22a)]=new _0x5bbf01['init']([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]);},'_doProcessBlock':function(_0x561bfa,_0x317a4f){const _0x17bcd2=_0x5f40a1;for(var _0x2813a9=this['_hash'][_0x17bcd2(0x382)],_0x138305=_0x2813a9[0x0],_0x148825=_0x2813a9[0x1],_0x14b95c=_0x2813a9[0x2],_0x506028=_0x2813a9[0x3],_0x364f2e=_0x2813a9[0x4],_0xbc140e=0x0;_0xbc140e<0x50;_0xbc140e++){if(_0xbc140e<0x10)_0x5c2aca[_0xbc140e]=_0x561bfa[_0x317a4f+_0xbc140e]|0x0;else{var _0x5b3c45=_0x5c2aca[_0xbc140e-0x3]^_0x5c2aca[_0xbc140e-0x8]^_0x5c2aca[_0xbc140e-0xe]^_0x5c2aca[_0xbc140e-0x10];_0x5c2aca[_0xbc140e]=_0x5b3c45<<0x1|_0x5b3c45>>>0x1f;}var _0x555c60=(_0x138305<<0x5|_0x138305>>>0x1b)+_0x364f2e+_0x5c2aca[_0xbc140e];_0xbc140e<0x14?_0x555c60+=(_0x148825&_0x14b95c|~_0x148825&_0x506028)+0x5a827999:_0xbc140e<0x28?_0x555c60+=(_0x148825^_0x14b95c^_0x506028)+0x6ed9eba1:_0xbc140e<0x3c?_0x555c60+=(_0x148825&_0x14b95c|_0x148825&_0x506028|_0x14b95c&_0x506028)-0x70e44324:_0x555c60+=(_0x148825^_0x14b95c^_0x506028)-0x359d3e2a,_0x364f2e=_0x506028,_0x506028=_0x14b95c,_0x14b95c=_0x148825<<0x1e|_0x148825>>>0x2,_0x148825=_0x138305,_0x138305=_0x555c60;}_0x2813a9[0x0]=_0x2813a9[0x0]+_0x138305|0x0,_0x2813a9[0x1]=_0x2813a9[0x1]+_0x148825|0x0,_0x2813a9[0x2]=_0x2813a9[0x2]+_0x14b95c|0x0,_0x2813a9[0x3]=_0x2813a9[0x3]+_0x506028|0x0,_0x2813a9[0x4]=_0x2813a9[0x4]+_0x364f2e|0x0;},'_doFinalize':function(){const _0x4fa6ab=_0x5f40a1;var _0x1398a9=this['_data'],_0x3579c5=_0x1398a9['words'],_0x128242=this[_0x4fa6ab(0x59d)]*0x8,_0x2bf4da=_0x1398a9[_0x4fa6ab(0x3e9)]*0x8;return _0x3579c5[_0x2bf4da>>>0x5]|=0x80<<0x18-_0x2bf4da%0x20,_0x3579c5[(_0x2bf4da+0x40>>>0x9<<0x4)+0xe]=Math[_0x4fa6ab(0x61f)](_0x128242/0x100000000),_0x3579c5[(_0x2bf4da+0x40>>>0x9<<0x4)+0xf]=_0x128242,_0x1398a9[_0x4fa6ab(0x3e9)]=_0x3579c5[_0x4fa6ab(0x453)]*0x4,this['_process'](),this[_0x4fa6ab(0x22a)];},'clone':function(){const _0x5404bf=_0x5f40a1;var _0x4c6abc=_0x90b223[_0x5404bf(0x20f)]['call'](this);return _0x4c6abc[_0x5404bf(0x22a)]=this[_0x5404bf(0x22a)]['clone'](),_0x4c6abc;}});_0x2230b6[_0x5f40a1(0x526)]=_0x90b223[_0x5f40a1(0x2e6)](_0x43c1c2),_0x2230b6[_0x5f40a1(0x20c)]=_0x90b223[_0x5f40a1(0x4ed)](_0x43c1c2);}()),_0x2f621a[_0x2ad03f(0x526)];}));}(_0x229aec)),_0x229aec[_0xe218f0(0x3aa)];}var _0xab5308={'exports':{}},_0x5be83c;function _0x549883(){const _0x4e35d8=_0x3ff78d;return _0x5be83c||(_0x5be83c=0x1,function(_0x317bed,_0x2bdd4f){(function(_0x414fb2,_0xb16ad5){_0x317bed['exports']=_0xb16ad5(_0x21bee2());}(_0x373fb5,function(_0x1549c9){(function(){const _0x23aeb0=_0x57aa;var _0x28d534=_0x1549c9,_0x58d325=_0x28d534['lib'],_0x3fe2d9=_0x58d325[_0x23aeb0(0x671)],_0x468a21=_0x28d534[_0x23aeb0(0x3fe)],_0x56e4ed=_0x468a21[_0x23aeb0(0x29b)],_0x54e75f=_0x28d534[_0x23aeb0(0x241)];_0x54e75f[_0x23aeb0(0x2a5)]=_0x3fe2d9[_0x23aeb0(0x37a)]({'init':function(_0x3090a3,_0x3a1b1c){const _0x1dc87d=_0x23aeb0;_0x3090a3=this['_hasher']=new _0x3090a3[(_0x1dc87d(0x683))](),typeof _0x3a1b1c==_0x1dc87d(0x454)&&(_0x3a1b1c=_0x56e4ed[_0x1dc87d(0x6b6)](_0x3a1b1c));var _0x4c2a5d=_0x3090a3[_0x1dc87d(0x497)],_0x35dc5a=_0x4c2a5d*0x4;_0x3a1b1c['sigBytes']>_0x35dc5a&&(_0x3a1b1c=_0x3090a3[_0x1dc87d(0x351)](_0x3a1b1c)),_0x3a1b1c['clamp']();for(var _0x23ae4a=this[_0x1dc87d(0x656)]=_0x3a1b1c[_0x1dc87d(0x20f)](),_0x4cf414=this[_0x1dc87d(0x604)]=_0x3a1b1c[_0x1dc87d(0x20f)](),_0x30edc4=_0x23ae4a['words'],_0x23d5a0=_0x4cf414['words'],_0xc08f2e=0x0;_0xc08f2e<_0x4c2a5d;_0xc08f2e++)_0x30edc4[_0xc08f2e]^=0x5c5c5c5c,_0x23d5a0[_0xc08f2e]^=0x36363636;_0x23ae4a['sigBytes']=_0x4cf414[_0x1dc87d(0x3e9)]=_0x35dc5a,this[_0x1dc87d(0x376)]();},'reset':function(){const _0x514732=_0x23aeb0;var _0x1a5ad1=this[_0x514732(0x589)];_0x1a5ad1[_0x514732(0x376)](),_0x1a5ad1[_0x514732(0x285)](this[_0x514732(0x604)]);},'update':function(_0x3f540b){const _0x19bcf6=_0x23aeb0;return this[_0x19bcf6(0x589)]['update'](_0x3f540b),this;},'finalize':function(_0x5199f5){const _0x13d8fa=_0x23aeb0;var _0x51cfb2=this[_0x13d8fa(0x589)],_0x32239b=_0x51cfb2[_0x13d8fa(0x351)](_0x5199f5);_0x51cfb2[_0x13d8fa(0x376)]();var _0x169755=_0x51cfb2['finalize'](this[_0x13d8fa(0x656)][_0x13d8fa(0x20f)]()[_0x13d8fa(0x4af)](_0x32239b));return _0x169755;}});}());}));}(_0xab5308)),_0xab5308[_0x4e35d8(0x3aa)];}var _0xb38c60;function _0x3c24aa(){return _0xb38c60||(_0xb38c60=0x1,function(_0x1f3a68,_0x3a2dc9){(function(_0xd8684d,_0x51023f,_0x1e529){const _0x29dae9=_0x57aa;_0x1f3a68[_0x29dae9(0x3aa)]=_0x51023f(_0x21bee2(),_0x2b3f6d(),_0x549883());}(_0x373fb5,function(_0x4a9236){const _0x301d58=_0x57aa;return(function(){const _0x5d1cca=_0x57aa;var _0x388969=_0x4a9236,_0x2fcbf6=_0x388969['lib'],_0x21cb85=_0x2fcbf6['Base'],_0x227410=_0x2fcbf6[_0x5d1cca(0x550)],_0x2c91a4=_0x388969[_0x5d1cca(0x241)],_0x164a8d=_0x2c91a4['MD5'],_0x5d150e=_0x2c91a4['EvpKDF']=_0x21cb85[_0x5d1cca(0x37a)]({'cfg':_0x21cb85[_0x5d1cca(0x37a)]({'keySize':0x80/0x20,'hasher':_0x164a8d,'iterations':0x1}),'init':function(_0x4f6591){const _0x46a1ad=_0x5d1cca;this[_0x46a1ad(0x68b)]=this['cfg'][_0x46a1ad(0x37a)](_0x4f6591);},'compute':function(_0x31a023,_0x5eaca0){const _0x321132=_0x5d1cca;for(var _0x303f04,_0x764ca7=this[_0x321132(0x68b)],_0x475115=_0x764ca7[_0x321132(0x577)][_0x321132(0x539)](),_0x118b76=_0x227410['create'](),_0x417784=_0x118b76[_0x321132(0x382)],_0x2ec90c=_0x764ca7[_0x321132(0x29d)],_0x158861=_0x764ca7['iterations'];_0x417784[_0x321132(0x453)]<_0x2ec90c;){_0x303f04&&_0x475115[_0x321132(0x285)](_0x303f04),_0x303f04=_0x475115[_0x321132(0x285)](_0x31a023)['finalize'](_0x5eaca0),_0x475115['reset']();for(var _0x347639=0x1;_0x347639<_0x158861;_0x347639++)_0x303f04=_0x475115['finalize'](_0x303f04),_0x475115[_0x321132(0x376)]();_0x118b76[_0x321132(0x4af)](_0x303f04);}return _0x118b76[_0x321132(0x3e9)]=_0x2ec90c*0x4,_0x118b76;}});_0x388969['EvpKDF']=function(_0x3667f0,_0x2461d0,_0x4f0831){const _0x1916c8=_0x5d1cca;return _0x5d150e[_0x1916c8(0x539)](_0x4f0831)['compute'](_0x3667f0,_0x2461d0);};}()),_0x4a9236[_0x301d58(0x43f)];}));}(_0x533fa3)),_0x533fa3['exports'];}var _0x560172={'exports':{}},_0x2316e7;function _0x44551d(){const _0x3aaf61=_0x3ff78d;return _0x2316e7||(_0x2316e7=0x1,function(_0x2f2b0f,_0x29b92b){(function(_0x267e75,_0xd47e98,_0x3403df){_0x2f2b0f['exports']=_0xd47e98(_0x21bee2(),_0x3c24aa());}(_0x373fb5,function(_0x290c6a){const _0x19305c=_0x57aa;_0x290c6a[_0x19305c(0x31f)][_0x19305c(0x5ab)]||function(_0x26ac97){const _0x5b1b21=_0x19305c;var _0x368bc2=_0x290c6a,_0x37d54a=_0x368bc2['lib'],_0x549269=_0x37d54a[_0x5b1b21(0x671)],_0x31b5b9=_0x37d54a[_0x5b1b21(0x550)],_0x41ce1a=_0x37d54a['BufferedBlockAlgorithm'],_0x2b280b=_0x368bc2[_0x5b1b21(0x3fe)];_0x2b280b[_0x5b1b21(0x29b)];var _0x1d59e8=_0x2b280b[_0x5b1b21(0x292)],_0x4e35be=_0x368bc2[_0x5b1b21(0x241)],_0x48f933=_0x4e35be[_0x5b1b21(0x43f)],_0x387c0f=_0x37d54a[_0x5b1b21(0x5ab)]=_0x41ce1a[_0x5b1b21(0x37a)]({'cfg':_0x549269[_0x5b1b21(0x37a)](),'createEncryptor':function(_0x9d0e71,_0x32070b){const _0x5b6ad1=_0x5b1b21;return this[_0x5b6ad1(0x539)](this[_0x5b6ad1(0x286)],_0x9d0e71,_0x32070b);},'createDecryptor':function(_0x571318,_0x8fecc3){const _0x5ae360=_0x5b1b21;return this['create'](this[_0x5ae360(0x532)],_0x571318,_0x8fecc3);},'init':function(_0x48a4d5,_0x548f66,_0x1bf1c2){const _0x2c1495=_0x5b1b21;this[_0x2c1495(0x68b)]=this[_0x2c1495(0x68b)][_0x2c1495(0x37a)](_0x1bf1c2),this[_0x2c1495(0x430)]=_0x48a4d5,this[_0x2c1495(0x21a)]=_0x548f66,this[_0x2c1495(0x376)]();},'reset':function(){const _0x54a404=_0x5b1b21;_0x41ce1a[_0x54a404(0x376)][_0x54a404(0x28f)](this),this[_0x54a404(0x58a)]();},'process':function(_0x13393a){const _0xc1389c=_0x5b1b21;return this[_0xc1389c(0x260)](_0x13393a),this['_process']();},'finalize':function(_0x172a00){const _0x2bc16d=_0x5b1b21;_0x172a00&&this[_0x2bc16d(0x260)](_0x172a00);var _0x172e9d=this[_0x2bc16d(0x429)]();return _0x172e9d;},'keySize':0x80/0x20,'ivSize':0x80/0x20,'_ENC_XFORM_MODE':0x1,'_DEC_XFORM_MODE':0x2,'_createHelper':(function(){function _0x39bad6(_0x1ab4d1){const _0x99897e=_0x57aa;return typeof _0x1ab4d1==_0x99897e(0x454)?_0x46383d:_0x49e1c7;}return function(_0x20dfc5){return{'encrypt':function(_0x159d8a,_0x13b907,_0x596b1c){return _0x39bad6(_0x13b907)['encrypt'](_0x20dfc5,_0x159d8a,_0x13b907,_0x596b1c);},'decrypt':function(_0x2c46ef,_0xae371b,_0x52acf6){const _0x26693d=_0x57aa;return _0x39bad6(_0xae371b)[_0x26693d(0x48e)](_0x20dfc5,_0x2c46ef,_0xae371b,_0x52acf6);}};};}())});_0x37d54a[_0x5b1b21(0x5ec)]=_0x387c0f[_0x5b1b21(0x37a)]({'_doFinalize':function(){const _0x1bf440=_0x5b1b21;var _0x1079ea=this[_0x1bf440(0x5b0)](!0x0);return _0x1079ea;},'blockSize':0x1});var _0x4b49ef=_0x368bc2['mode']={},_0x243f11=_0x37d54a[_0x5b1b21(0x340)]=_0x549269[_0x5b1b21(0x37a)]({'createEncryptor':function(_0x1fddd1,_0x1ebcbf){const _0x19de56=_0x5b1b21;return this[_0x19de56(0x600)][_0x19de56(0x539)](_0x1fddd1,_0x1ebcbf);},'createDecryptor':function(_0x5bdd88,_0x5261b8){const _0x3b1dfa=_0x5b1b21;return this[_0x3b1dfa(0x37d)][_0x3b1dfa(0x539)](_0x5bdd88,_0x5261b8);},'init':function(_0x41759c,_0x35db2e){const _0x3e85be=_0x5b1b21;this[_0x3e85be(0x6aa)]=_0x41759c,this['_iv']=_0x35db2e;}}),_0x27ef53=_0x4b49ef[_0x5b1b21(0x2b4)]=(function(){const _0x391f8f=_0x5b1b21;var _0x411cd2=_0x243f11[_0x391f8f(0x37a)]();_0x411cd2[_0x391f8f(0x600)]=_0x411cd2[_0x391f8f(0x37a)]({'processBlock':function(_0x3639b9,_0x4c6fac){const _0x1eea3d=_0x391f8f;var _0x58ce37=this['_cipher'],_0x31610c=_0x58ce37[_0x1eea3d(0x497)];_0x2ded35[_0x1eea3d(0x28f)](this,_0x3639b9,_0x4c6fac,_0x31610c),_0x58ce37['encryptBlock'](_0x3639b9,_0x4c6fac),this[_0x1eea3d(0x4e7)]=_0x3639b9['slice'](_0x4c6fac,_0x4c6fac+_0x31610c);}}),_0x411cd2[_0x391f8f(0x37d)]=_0x411cd2[_0x391f8f(0x37a)]({'processBlock':function(_0x2edc02,_0x259880){const _0x33cbf8=_0x391f8f;var _0xde6af8=this[_0x33cbf8(0x6aa)],_0x5bbf54=_0xde6af8['blockSize'],_0x25ac4f=_0x2edc02['slice'](_0x259880,_0x259880+_0x5bbf54);_0xde6af8[_0x33cbf8(0x2e1)](_0x2edc02,_0x259880),_0x2ded35[_0x33cbf8(0x28f)](this,_0x2edc02,_0x259880,_0x5bbf54),this[_0x33cbf8(0x4e7)]=_0x25ac4f;}});function _0x2ded35(_0x1174c1,_0x53cfe6,_0x2ab1f7){const _0x4e216c=_0x391f8f;var _0x391f80,_0x2694f9=this[_0x4e216c(0x436)];_0x2694f9?(_0x391f80=_0x2694f9,this[_0x4e216c(0x436)]=_0x26ac97):_0x391f80=this[_0x4e216c(0x4e7)];for(var _0x3aef8e=0x0;_0x3aef8e<_0x2ab1f7;_0x3aef8e++)_0x1174c1[_0x53cfe6+_0x3aef8e]^=_0x391f80[_0x3aef8e];}return _0x411cd2;}()),_0x5c65f9=_0x368bc2[_0x5b1b21(0x528)]={},_0x10c010=_0x5c65f9[_0x5b1b21(0x405)]={'pad':function(_0x1eb9c8,_0x342e73){const _0x4c9651=_0x5b1b21;for(var _0xce85fa=_0x342e73*0x4,_0x5a8860=_0xce85fa-_0x1eb9c8['sigBytes']%_0xce85fa,_0x46a3a7=_0x5a8860<<0x18|_0x5a8860<<0x10|_0x5a8860<<0x8|_0x5a8860,_0x3d22c4=[],_0xd8dfc4=0x0;_0xd8dfc4<_0x5a8860;_0xd8dfc4+=0x4)_0x3d22c4[_0x4c9651(0x3f3)](_0x46a3a7);var _0x142e7f=_0x31b5b9[_0x4c9651(0x539)](_0x3d22c4,_0x5a8860);_0x1eb9c8[_0x4c9651(0x4af)](_0x142e7f);},'unpad':function(_0x2b8127){const _0x31dd4e=_0x5b1b21;var _0x1d3df1=_0x2b8127[_0x31dd4e(0x382)][_0x2b8127[_0x31dd4e(0x3e9)]-0x1>>>0x2]&0xff;_0x2b8127['sigBytes']-=_0x1d3df1;}};_0x37d54a[_0x5b1b21(0x33e)]=_0x387c0f[_0x5b1b21(0x37a)]({'cfg':_0x387c0f[_0x5b1b21(0x68b)]['extend']({'mode':_0x27ef53,'padding':_0x10c010}),'reset':function(){const _0x1eaf83=_0x5b1b21;var _0x30a4c2;_0x387c0f['reset'][_0x1eaf83(0x28f)](this);var _0x43daf0=this['cfg'],_0x5a2829=_0x43daf0['iv'],_0xeb5b69=_0x43daf0[_0x1eaf83(0x322)];this[_0x1eaf83(0x430)]==this[_0x1eaf83(0x286)]?_0x30a4c2=_0xeb5b69['createEncryptor']:(_0x30a4c2=_0xeb5b69['createDecryptor'],this[_0x1eaf83(0x395)]=0x1),this['_mode']&&this[_0x1eaf83(0x41f)][_0x1eaf83(0x3ce)]==_0x30a4c2?this[_0x1eaf83(0x41f)]['init'](this,_0x5a2829&&_0x5a2829['words']):(this[_0x1eaf83(0x41f)]=_0x30a4c2['call'](_0xeb5b69,this,_0x5a2829&&_0x5a2829['words']),this[_0x1eaf83(0x41f)]['__creator']=_0x30a4c2);},'_doProcessBlock':function(_0xec041e,_0x5a83ae){this['_mode']['processBlock'](_0xec041e,_0x5a83ae);},'_doFinalize':function(){const _0x314a19=_0x5b1b21;var _0x3c64e4,_0x134eec=this[_0x314a19(0x68b)]['padding'];return this[_0x314a19(0x430)]==this[_0x314a19(0x286)]?(_0x134eec[_0x314a19(0x528)](this['_data'],this[_0x314a19(0x497)]),_0x3c64e4=this['_process'](!0x0)):(_0x3c64e4=this[_0x314a19(0x5b0)](!0x0),_0x134eec['unpad'](_0x3c64e4)),_0x3c64e4;},'blockSize':0x80/0x20});var _0x58d1da=_0x37d54a[_0x5b1b21(0x282)]=_0x549269['extend']({'init':function(_0x27a1ce){const _0x7c0bfa=_0x5b1b21;this[_0x7c0bfa(0x380)](_0x27a1ce);},'toString':function(_0x40be5c){const _0x5a14fc=_0x5b1b21;return(_0x40be5c||this[_0x5a14fc(0x69f)])[_0x5a14fc(0x411)](this);}}),_0x151592=_0x368bc2[_0x5b1b21(0x254)]={},_0x2cc8a0=_0x151592['OpenSSL']={'stringify':function(_0x1f0ae5){const _0x21f6c5=_0x5b1b21;var _0x2612e0,_0x5a1bb6=_0x1f0ae5[_0x21f6c5(0x51f)],_0x422327=_0x1f0ae5[_0x21f6c5(0x46f)];return _0x422327?_0x2612e0=_0x31b5b9['create']([0x53616c74,0x65645f5f])[_0x21f6c5(0x4af)](_0x422327)['concat'](_0x5a1bb6):_0x2612e0=_0x5a1bb6,_0x2612e0[_0x21f6c5(0x44c)](_0x1d59e8);},'parse':function(_0x634776){const _0x6e877c=_0x5b1b21;var _0x256497,_0x2dfb78=_0x1d59e8['parse'](_0x634776),_0x42e0b6=_0x2dfb78['words'];return _0x42e0b6[0x0]==0x53616c74&&_0x42e0b6[0x1]==0x65645f5f&&(_0x256497=_0x31b5b9['create'](_0x42e0b6[_0x6e877c(0x251)](0x2,0x4)),_0x42e0b6[_0x6e877c(0x5e1)](0x0,0x4),_0x2dfb78[_0x6e877c(0x3e9)]-=0x10),_0x58d1da[_0x6e877c(0x539)]({'ciphertext':_0x2dfb78,'salt':_0x256497});}},_0x49e1c7=_0x37d54a[_0x5b1b21(0x51b)]=_0x549269[_0x5b1b21(0x37a)]({'cfg':_0x549269[_0x5b1b21(0x37a)]({'format':_0x2cc8a0}),'encrypt':function(_0x22768f,_0x4c6099,_0x6cfb63,_0x5d1544){const _0x388cd8=_0x5b1b21;_0x5d1544=this[_0x388cd8(0x68b)][_0x388cd8(0x37a)](_0x5d1544);var _0x273349=_0x22768f[_0x388cd8(0x524)](_0x6cfb63,_0x5d1544),_0x30194a=_0x273349[_0x388cd8(0x351)](_0x4c6099),_0x373e69=_0x273349[_0x388cd8(0x68b)];return _0x58d1da[_0x388cd8(0x539)]({'ciphertext':_0x30194a,'key':_0x6cfb63,'iv':_0x373e69['iv'],'algorithm':_0x22768f,'mode':_0x373e69[_0x388cd8(0x322)],'padding':_0x373e69['padding'],'blockSize':_0x22768f['blockSize'],'formatter':_0x5d1544[_0x388cd8(0x254)]});},'decrypt':function(_0x562c0d,_0x130448,_0x19ad0c,_0x107a9a){const _0x135216=_0x5b1b21;_0x107a9a=this[_0x135216(0x68b)][_0x135216(0x37a)](_0x107a9a),_0x130448=this[_0x135216(0x3ab)](_0x130448,_0x107a9a['format']);var _0xbaa72a=_0x562c0d['createDecryptor'](_0x19ad0c,_0x107a9a)[_0x135216(0x351)](_0x130448[_0x135216(0x51f)]);return _0xbaa72a;},'_parse':function(_0x547e59,_0x2d558e){const _0x10f777=_0x5b1b21;return typeof _0x547e59==_0x10f777(0x454)?_0x2d558e[_0x10f777(0x6b6)](_0x547e59,this):_0x547e59;}}),_0x3bdafc=_0x368bc2[_0x5b1b21(0x4a5)]={},_0x159f15=_0x3bdafc[_0x5b1b21(0x3d9)]={'execute':function(_0x5e8a63,_0x124237,_0x5d49a2,_0x55fa71,_0x27707c){const _0x53eb5a=_0x5b1b21;if(_0x55fa71||(_0x55fa71=_0x31b5b9[_0x53eb5a(0x655)](0x40/0x8)),_0x27707c)var _0x5dd12f=_0x48f933[_0x53eb5a(0x539)]({'keySize':_0x124237+_0x5d49a2,'hasher':_0x27707c})[_0x53eb5a(0x47f)](_0x5e8a63,_0x55fa71);else var _0x5dd12f=_0x48f933['create']({'keySize':_0x124237+_0x5d49a2})[_0x53eb5a(0x47f)](_0x5e8a63,_0x55fa71);var _0x5e6ddd=_0x31b5b9[_0x53eb5a(0x539)](_0x5dd12f[_0x53eb5a(0x382)][_0x53eb5a(0x251)](_0x124237),_0x5d49a2*0x4);return _0x5dd12f[_0x53eb5a(0x3e9)]=_0x124237*0x4,_0x58d1da[_0x53eb5a(0x539)]({'key':_0x5dd12f,'iv':_0x5e6ddd,'salt':_0x55fa71});}},_0x46383d=_0x37d54a[_0x5b1b21(0x42e)]=_0x49e1c7[_0x5b1b21(0x37a)]({'cfg':_0x49e1c7[_0x5b1b21(0x68b)]['extend']({'kdf':_0x159f15}),'encrypt':function(_0x565f56,_0x5166c5,_0x20d7f9,_0x1c514a){const _0x46f17d=_0x5b1b21;_0x1c514a=this[_0x46f17d(0x68b)]['extend'](_0x1c514a);var _0x5c4e77=_0x1c514a[_0x46f17d(0x4a5)]['execute'](_0x20d7f9,_0x565f56[_0x46f17d(0x29d)],_0x565f56[_0x46f17d(0x5b6)],_0x1c514a[_0x46f17d(0x46f)],_0x1c514a[_0x46f17d(0x577)]);_0x1c514a['iv']=_0x5c4e77['iv'];var _0x56cf34=_0x49e1c7[_0x46f17d(0x5c6)][_0x46f17d(0x28f)](this,_0x565f56,_0x5166c5,_0x5c4e77[_0x46f17d(0x330)],_0x1c514a);return _0x56cf34[_0x46f17d(0x380)](_0x5c4e77),_0x56cf34;},'decrypt':function(_0x3f1b33,_0x4850ec,_0x5d0fc6,_0x20241d){const _0x44511a=_0x5b1b21;_0x20241d=this[_0x44511a(0x68b)][_0x44511a(0x37a)](_0x20241d),_0x4850ec=this['_parse'](_0x4850ec,_0x20241d[_0x44511a(0x254)]);var _0x4b8004=_0x20241d['kdf'][_0x44511a(0x645)](_0x5d0fc6,_0x3f1b33[_0x44511a(0x29d)],_0x3f1b33[_0x44511a(0x5b6)],_0x4850ec['salt'],_0x20241d['hasher']);_0x20241d['iv']=_0x4b8004['iv'];var _0x1285a6=_0x49e1c7[_0x44511a(0x48e)]['call'](this,_0x3f1b33,_0x4850ec,_0x4b8004[_0x44511a(0x330)],_0x20241d);return _0x1285a6;}});}();}));}(_0x560172)),_0x560172[_0x3aaf61(0x3aa)];}(function(_0x18e160,_0x20397a){(function(_0x1f8ca1,_0x4acfd9,_0x2ec29a){const _0x1ebe35=_0x57aa;_0x18e160[_0x1ebe35(0x3aa)]=_0x4acfd9(_0x21bee2(),_0x239b1a(),_0x23ab89(),_0x3c24aa(),_0x44551d());}(_0x373fb5,function(_0x103767){const _0x440ef6=_0x57aa;return(function(){const _0x553f75=_0x57aa;var _0x2f0ebc=_0x103767,_0x2ab0b1=_0x2f0ebc[_0x553f75(0x31f)],_0x2bea53=_0x2ab0b1['BlockCipher'],_0x522082=_0x2f0ebc[_0x553f75(0x241)],_0x907ec1=[],_0x1a951b=[],_0x30c03e=[],_0x7c85ac=[],_0x5c5a5f=[],_0x2b22b7=[],_0x4f9fa2=[],_0x3b4124=[],_0x25381d=[],_0x320923=[];(function(){for(var _0x4fbe53=[],_0x379c42=0x0;_0x379c42<0x100;_0x379c42++)_0x379c42<0x80?_0x4fbe53[_0x379c42]=_0x379c42<<0x1:_0x4fbe53[_0x379c42]=_0x379c42<<0x1^0x11b;for(var _0x541d09=0x0,_0x2813ff=0x0,_0x379c42=0x0;_0x379c42<0x100;_0x379c42++){var _0xaf6915=_0x2813ff^_0x2813ff<<0x1^_0x2813ff<<0x2^_0x2813ff<<0x3^_0x2813ff<<0x4;_0xaf6915=_0xaf6915>>>0x8^_0xaf6915&0xff^0x63,_0x907ec1[_0x541d09]=_0xaf6915,_0x1a951b[_0xaf6915]=_0x541d09;var _0x225ec3=_0x4fbe53[_0x541d09],_0x3bbd55=_0x4fbe53[_0x225ec3],_0x4bcca0=_0x4fbe53[_0x3bbd55],_0x5b5e75=_0x4fbe53[_0xaf6915]*0x101^_0xaf6915*0x1010100;_0x30c03e[_0x541d09]=_0x5b5e75<<0x18|_0x5b5e75>>>0x8,_0x7c85ac[_0x541d09]=_0x5b5e75<<0x10|_0x5b5e75>>>0x10,_0x5c5a5f[_0x541d09]=_0x5b5e75<<0x8|_0x5b5e75>>>0x18,_0x2b22b7[_0x541d09]=_0x5b5e75;var _0x5b5e75=_0x4bcca0*0x1010101^_0x3bbd55*0x10001^_0x225ec3*0x101^_0x541d09*0x1010100;_0x4f9fa2[_0xaf6915]=_0x5b5e75<<0x18|_0x5b5e75>>>0x8,_0x3b4124[_0xaf6915]=_0x5b5e75<<0x10|_0x5b5e75>>>0x10,_0x25381d[_0xaf6915]=_0x5b5e75<<0x8|_0x5b5e75>>>0x18,_0x320923[_0xaf6915]=_0x5b5e75,_0x541d09?(_0x541d09=_0x225ec3^_0x4fbe53[_0x4fbe53[_0x4fbe53[_0x4bcca0^_0x225ec3]]],_0x2813ff^=_0x4fbe53[_0x4fbe53[_0x2813ff]]):_0x541d09=_0x2813ff=0x1;}}());var _0x47dc9a=[0x0,0x1,0x2,0x4,0x8,0x10,0x20,0x40,0x80,0x1b,0x36],_0xc9d30d=_0x522082[_0x553f75(0x408)]=_0x2bea53[_0x553f75(0x37a)]({'_doReset':function(){const _0x319931=_0x553f75;var _0x21e128;if(!(this[_0x319931(0x59e)]&&this[_0x319931(0x439)]===this['_key'])){for(var _0x303a63=this[_0x319931(0x439)]=this[_0x319931(0x21a)],_0x580c4f=_0x303a63[_0x319931(0x382)],_0x4de38b=_0x303a63[_0x319931(0x3e9)]/0x4,_0x450bf0=this[_0x319931(0x59e)]=_0x4de38b+0x6,_0x34eb56=(_0x450bf0+0x1)*0x4,_0x95c2c3=this[_0x319931(0x473)]=[],_0x4a1839=0x0;_0x4a1839<_0x34eb56;_0x4a1839++)_0x4a1839<_0x4de38b?_0x95c2c3[_0x4a1839]=_0x580c4f[_0x4a1839]:(_0x21e128=_0x95c2c3[_0x4a1839-0x1],_0x4a1839%_0x4de38b?_0x4de38b>0x6&&_0x4a1839%_0x4de38b==0x4&&(_0x21e128=_0x907ec1[_0x21e128>>>0x18]<<0x18|_0x907ec1[_0x21e128>>>0x10&0xff]<<0x10|_0x907ec1[_0x21e128>>>0x8&0xff]<<0x8|_0x907ec1[_0x21e128&0xff]):(_0x21e128=_0x21e128<<0x8|_0x21e128>>>0x18,_0x21e128=_0x907ec1[_0x21e128>>>0x18]<<0x18|_0x907ec1[_0x21e128>>>0x10&0xff]<<0x10|_0x907ec1[_0x21e128>>>0x8&0xff]<<0x8|_0x907ec1[_0x21e128&0xff],_0x21e128^=_0x47dc9a[_0x4a1839/_0x4de38b|0x0]<<0x18),_0x95c2c3[_0x4a1839]=_0x95c2c3[_0x4a1839-_0x4de38b]^_0x21e128);for(var _0x1969d6=this[_0x319931(0x5dd)]=[],_0x24d170=0x0;_0x24d170<_0x34eb56;_0x24d170++){var _0x4a1839=_0x34eb56-_0x24d170;if(_0x24d170%0x4)var _0x21e128=_0x95c2c3[_0x4a1839];else var _0x21e128=_0x95c2c3[_0x4a1839-0x4];_0x24d170<0x4||_0x4a1839<=0x4?_0x1969d6[_0x24d170]=_0x21e128:_0x1969d6[_0x24d170]=_0x4f9fa2[_0x907ec1[_0x21e128>>>0x18]]^_0x3b4124[_0x907ec1[_0x21e128>>>0x10&0xff]]^_0x25381d[_0x907ec1[_0x21e128>>>0x8&0xff]]^_0x320923[_0x907ec1[_0x21e128&0xff]];}}},'encryptBlock':function(_0x2a8217,_0x57d850){const _0x54b9ad=_0x553f75;this[_0x54b9ad(0x5c1)](_0x2a8217,_0x57d850,this[_0x54b9ad(0x473)],_0x30c03e,_0x7c85ac,_0x5c5a5f,_0x2b22b7,_0x907ec1);},'decryptBlock':function(_0x4daa3a,_0x22de01){const _0x343c12=_0x553f75;var _0x3537a0=_0x4daa3a[_0x22de01+0x1];_0x4daa3a[_0x22de01+0x1]=_0x4daa3a[_0x22de01+0x3],_0x4daa3a[_0x22de01+0x3]=_0x3537a0,this[_0x343c12(0x5c1)](_0x4daa3a,_0x22de01,this['_invKeySchedule'],_0x4f9fa2,_0x3b4124,_0x25381d,_0x320923,_0x1a951b);var _0x3537a0=_0x4daa3a[_0x22de01+0x1];_0x4daa3a[_0x22de01+0x1]=_0x4daa3a[_0x22de01+0x3],_0x4daa3a[_0x22de01+0x3]=_0x3537a0;},'_doCryptBlock':function(_0x420b4a,_0x16a30f,_0xfd5ad2,_0x7efc9d,_0x365ff9,_0x5a3f8d,_0xd66a82,_0x5e4614){const _0x346e77=_0x553f75;for(var _0x363ffd=this[_0x346e77(0x59e)],_0x100979=_0x420b4a[_0x16a30f]^_0xfd5ad2[0x0],_0x77f406=_0x420b4a[_0x16a30f+0x1]^_0xfd5ad2[0x1],_0x5825d7=_0x420b4a[_0x16a30f+0x2]^_0xfd5ad2[0x2],_0x17b802=_0x420b4a[_0x16a30f+0x3]^_0xfd5ad2[0x3],_0x328f4c=0x4,_0x513006=0x1;_0x513006<_0x363ffd;_0x513006++){var _0x1481ab=_0x7efc9d[_0x100979>>>0x18]^_0x365ff9[_0x77f406>>>0x10&0xff]^_0x5a3f8d[_0x5825d7>>>0x8&0xff]^_0xd66a82[_0x17b802&0xff]^_0xfd5ad2[_0x328f4c++],_0x299dbb=_0x7efc9d[_0x77f406>>>0x18]^_0x365ff9[_0x5825d7>>>0x10&0xff]^_0x5a3f8d[_0x17b802>>>0x8&0xff]^_0xd66a82[_0x100979&0xff]^_0xfd5ad2[_0x328f4c++],_0xb7424a=_0x7efc9d[_0x5825d7>>>0x18]^_0x365ff9[_0x17b802>>>0x10&0xff]^_0x5a3f8d[_0x100979>>>0x8&0xff]^_0xd66a82[_0x77f406&0xff]^_0xfd5ad2[_0x328f4c++],_0x30a160=_0x7efc9d[_0x17b802>>>0x18]^_0x365ff9[_0x100979>>>0x10&0xff]^_0x5a3f8d[_0x77f406>>>0x8&0xff]^_0xd66a82[_0x5825d7&0xff]^_0xfd5ad2[_0x328f4c++];_0x100979=_0x1481ab,_0x77f406=_0x299dbb,_0x5825d7=_0xb7424a,_0x17b802=_0x30a160;}var _0x1481ab=(_0x5e4614[_0x100979>>>0x18]<<0x18|_0x5e4614[_0x77f406>>>0x10&0xff]<<0x10|_0x5e4614[_0x5825d7>>>0x8&0xff]<<0x8|_0x5e4614[_0x17b802&0xff])^_0xfd5ad2[_0x328f4c++],_0x299dbb=(_0x5e4614[_0x77f406>>>0x18]<<0x18|_0x5e4614[_0x5825d7>>>0x10&0xff]<<0x10|_0x5e4614[_0x17b802>>>0x8&0xff]<<0x8|_0x5e4614[_0x100979&0xff])^_0xfd5ad2[_0x328f4c++],_0xb7424a=(_0x5e4614[_0x5825d7>>>0x18]<<0x18|_0x5e4614[_0x17b802>>>0x10&0xff]<<0x10|_0x5e4614[_0x100979>>>0x8&0xff]<<0x8|_0x5e4614[_0x77f406&0xff])^_0xfd5ad2[_0x328f4c++],_0x30a160=(_0x5e4614[_0x17b802>>>0x18]<<0x18|_0x5e4614[_0x100979>>>0x10&0xff]<<0x10|_0x5e4614[_0x77f406>>>0x8&0xff]<<0x8|_0x5e4614[_0x5825d7&0xff])^_0xfd5ad2[_0x328f4c++];_0x420b4a[_0x16a30f]=_0x1481ab,_0x420b4a[_0x16a30f+0x1]=_0x299dbb,_0x420b4a[_0x16a30f+0x2]=_0xb7424a,_0x420b4a[_0x16a30f+0x3]=_0x30a160;},'keySize':0x100/0x20});_0x2f0ebc[_0x553f75(0x408)]=_0x2bea53[_0x553f75(0x2e6)](_0xc9d30d);}()),_0x103767[_0x440ef6(0x408)];}));}(_0x288f2b));var _0x22f3ee=_0x288f2b[_0x3ff78d(0x3aa)];const _0x195bf7=_0x12dfa8(_0x22f3ee);var _0x24b881=_0x239b1a();const _0x354253=_0x12dfa8(_0x24b881);var _0x4d52ab={'exports':{}};(function(_0x4e8c80,_0x39a2bf){(function(_0x2bc58c,_0x3af4b1){const _0x62a26f=_0x57aa;_0x4e8c80[_0x62a26f(0x3aa)]=_0x3af4b1(_0x21bee2());}(_0x373fb5,function(_0x20493b){const _0x59caa3=_0x57aa;return _0x20493b[_0x59caa3(0x3fe)][_0x59caa3(0x29b)];}));}(_0x4d52ab));var _0xad1b8=_0x4d52ab[_0x3ff78d(0x3aa)];const _0x4a5e0a=_0x12dfa8(_0xad1b8);var _0x2b92d3={'exports':{}};(function(_0x1cf49e,_0x1b7135){(function(_0x23e471,_0x5fb6cd){const _0xcacec5=_0x57aa;_0x1cf49e[_0xcacec5(0x3aa)]=_0x5fb6cd(_0x21bee2());}(_0x373fb5,function(_0x3ce004){const _0x55f398=_0x57aa;return(function(){const _0xf9c192=_0x57aa;if(typeof ArrayBuffer==_0xf9c192(0x5f5)){var _0x52b95b=_0x3ce004,_0x195628=_0x52b95b[_0xf9c192(0x31f)],_0x5733ac=_0x195628[_0xf9c192(0x550)],_0x4203ce=_0x5733ac[_0xf9c192(0x683)],_0x22ae65=_0x5733ac[_0xf9c192(0x683)]=function(_0x5d7c1f){const _0x2c2888=_0xf9c192;if(_0x5d7c1f instanceof ArrayBuffer&&(_0x5d7c1f=new Uint8Array(_0x5d7c1f)),(_0x5d7c1f instanceof Int8Array||typeof Uint8ClampedArray<'u'&&_0x5d7c1f instanceof Uint8ClampedArray||_0x5d7c1f instanceof Int16Array||_0x5d7c1f instanceof Uint16Array||_0x5d7c1f instanceof Int32Array||_0x5d7c1f instanceof Uint32Array||_0x5d7c1f instanceof Float32Array||_0x5d7c1f instanceof Float64Array)&&(_0x5d7c1f=new Uint8Array(_0x5d7c1f['buffer'],_0x5d7c1f['byteOffset'],_0x5d7c1f[_0x2c2888(0x25d)])),_0x5d7c1f instanceof Uint8Array){for(var _0x52a31e=_0x5d7c1f[_0x2c2888(0x25d)],_0x5c6892=[],_0xb67aff=0x0;_0xb67aff<_0x52a31e;_0xb67aff++)_0x5c6892[_0xb67aff>>>0x2]|=_0x5d7c1f[_0xb67aff]<<0x18-_0xb67aff%0x4*0x8;_0x4203ce['call'](this,_0x5c6892,_0x52a31e);}else _0x4203ce['apply'](this,arguments);};_0x22ae65['prototype']=_0x5733ac;}}()),_0x3ce004[_0x55f398(0x31f)]['WordArray'];}));}(_0x2b92d3));var _0x4082df=_0x2b92d3[_0x3ff78d(0x3aa)];const _0x5c822b=_0x12dfa8(_0x4082df);var _0x307267={'exports':{}};(function(_0x31e1a0,_0xcab902){(function(_0x1133f7,_0x36fa5b,_0x20232c){const _0x4a570b=_0x57aa;_0x31e1a0[_0x4a570b(0x3aa)]=_0x36fa5b(_0x21bee2(),_0x44551d());}(_0x373fb5,function(_0x4bdcc2){const _0x38d5d4=_0x57aa;return _0x4bdcc2[_0x38d5d4(0x528)][_0x38d5d4(0x69a)]={'pad':function(){},'unpad':function(){}},_0x4bdcc2[_0x38d5d4(0x528)][_0x38d5d4(0x69a)];}));}(_0x307267));var _0x317b06=_0x307267[_0x3ff78d(0x3aa)];const _0x53ffb9=_0x12dfa8(_0x317b06);function _0x434418(_0x257668,_0x3d135e){const _0x2b5ba9=_0x3ff78d,_0x537150=_0x3d135e-_0x257668[_0x2b5ba9(0x453)]%_0x3d135e,_0x2cb1e2=String['fromCharCode'](_0x537150)['repeat'](_0x537150);return _0x257668+_0x2cb1e2;}function _0x28ba32(_0x1005ca,_0x1b1cf7){const _0x518e96=_0x3ff78d,_0x4fed78=_0x5c822b[_0x518e96(0x655)](0x10),_0x44648e=_0x434418(_0x1005ca,0x10),_0x13add1=_0x195bf7[_0x518e96(0x5c6)](_0x4a5e0a[_0x518e96(0x6b6)](_0x44648e),_0x354253['parse'](_0x1b1cf7),{'iv':_0x4fed78,'padding':_0x53ffb9});return _0x4fed78['concat'](_0x13add1[_0x518e96(0x51f)])[_0x518e96(0x44c)](_0x354253);}function _0x39b709(){const _0xb39b5a=_0x3ff78d,_0x4feec3=(typeof WorkerGlobalScope<'u'&&self instanceof WorkerGlobalScope?self:window)['__Key__'];if(_0x4feec3){const _0x55e591={'time':Math[_0xb39b5a(0x61f)](Date[_0xb39b5a(0x354)]()/0x3e8),'domain':location[_0xb39b5a(0x69c)]};return _0x28ba32(JSON[_0xb39b5a(0x411)](_0x55e591),_0x4feec3);}}var _0x35155e=Object[_0x3ff78d(0x675)],_0x5e7694=Object[_0x3ff78d(0x570)],_0x37583b=(_0x58a0e0,_0x3042f9,_0x939263,_0x31bcbf)=>{const _0x3dc057=_0x3ff78d;for(var _0x1969f5=_0x31bcbf>0x1?void 0x0:_0x31bcbf?_0x5e7694(_0x3042f9,_0x939263):_0x3042f9,_0x57abbe=_0x58a0e0[_0x3dc057(0x453)]-0x1,_0x4f27b6;_0x57abbe>=0x0;_0x57abbe--)(_0x4f27b6=_0x58a0e0[_0x57abbe])&&(_0x1969f5=(_0x31bcbf?_0x4f27b6(_0x3042f9,_0x939263,_0x1969f5):_0x4f27b6(_0x1969f5))||_0x1969f5);return _0x31bcbf&&_0x1969f5&&_0x35155e(_0x3042f9,_0x939263,_0x1969f5),_0x1969f5;},_0x44ce1f=(_0x3b06bb,_0x3aa5e2)=>(_0xcdaec7,_0x58e570)=>_0x3aa5e2(_0xcdaec7,_0x58e570,_0x3b06bb);let _0x146fcf=class{constructor(_0x219429){const _0x3f0256=_0x3ff78d;this[_0x3f0256(0x2e9)]=_0x219429,this['_initRequestHeader']();}[_0x3ff78d(0x3d1)](){const _0x536c78=_0x3ff78d;this[_0x536c78(0x2e9)][_0x536c78(0x677)]({'interceptor':(_0x5a5a57,_0x217782)=>{const _0x1539fe=_0x536c78,_0x183d25=_0x5a5a57[_0x1539fe(0x3f4)],_0x3d8b3d=_0x39b709();return _0x3d8b3d&&_0x183d25[_0x1539fe(0x30d)](_0x1539fe(0x4e5),_0x3d8b3d),_0x217782(_0x5a5a57);}});}};_0x146fcf=_0x37583b([_0x44ce1f(0x0,_0x121236[_0x3ff78d(0x64f)](_0x5bb5df[_0x3ff78d(0x228)]))],_0x146fcf);var _0x3b8595=Object[_0x3ff78d(0x675)],_0x4a6921=Object[_0x3ff78d(0x570)],_0x459c17=(_0x32ebf5,_0x221e60,_0x310352,_0xf468c7)=>{const _0x2c9ee2=_0x3ff78d;for(var _0x11d70a=_0xf468c7>0x1?void 0x0:_0xf468c7?_0x4a6921(_0x221e60,_0x310352):_0x221e60,_0x5f4bda=_0x32ebf5[_0x2c9ee2(0x453)]-0x1,_0x3d794c;_0x5f4bda>=0x0;_0x5f4bda--)(_0x3d794c=_0x32ebf5[_0x5f4bda])&&(_0x11d70a=(_0xf468c7?_0x3d794c(_0x221e60,_0x310352,_0x11d70a):_0x3d794c(_0x11d70a))||_0x11d70a);return _0xf468c7&&_0x11d70a&&_0x3b8595(_0x221e60,_0x310352,_0x11d70a),_0x11d70a;},_0x29b8d6=(_0x1046e6,_0x186a9e)=>(_0x1436a6,_0x571a7a)=>_0x186a9e(_0x1436a6,_0x571a7a,_0x1046e6);const _0x123db9=[_0x3ff78d(0x6a0),'image/jpeg',_0x3ff78d(0x4f4),'image/gif',_0x3ff78d(0x472)],_0x4e9cb1=0x5*0x400*0x400,_0x3409ab='EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY',_0x385c95=_0x3ff78d(0x343),_0x2a456=_0x3ff78d(0x672),_0x137243=_0x3ff78d(0x6a4);_0x1e9522[_0x3ff78d(0x522)]=class{constructor(_0xd662c,_0x58eb04,_0x223d3d){const _0x5df855=_0x3ff78d;_0x3661de(this,_0x5df855(0x427),0x0),_0x3661de(this,_0x5df855(0x303),new _0x2d6fea[(_0x5df855(0x6c2))]()),_0x3661de(this,_0x5df855(0x2fe),this[_0x5df855(0x303)]),_0x3661de(this,'_imageSourceCache',new Map()),(this['_httpService']=_0xd662c,this[_0x5df855(0x4da)]=_0x58eb04,this[_0x5df855(0x22b)]=_0x223d3d);}[_0x3ff78d(0x39b)](_0x26a5b3){const _0x13119d=_0x3ff78d;this['_waitCount']=_0x26a5b3,this['_change$'][_0x13119d(0x5f8)](_0x26a5b3);}[_0x3ff78d(0x3b4)](_0x1c03d9,_0x347462){const _0xd65345=_0x3ff78d;if(_0x347462===_0x185cf6[_0xd65345(0x384)][_0xd65345(0x68c)]){const _0x522d5b=new Image();return _0x522d5b[_0xd65345(0x6bd)]=_0x1c03d9,_0x522d5b;}return this[_0xd65345(0x356)][_0xd65345(0x295)](_0x1c03d9);}[_0x3ff78d(0x253)](_0x213a39,_0x92d578,_0x2f227a){const _0x2b7e4a=_0x3ff78d;_0x92d578===_0x185cf6[_0x2b7e4a(0x384)][_0x2b7e4a(0x68c)]||_0x2f227a==null||this['_imageSourceCache'][_0x2b7e4a(0x30d)](_0x213a39,_0x2f227a);}async['getImage'](_0x8ed061){const _0x2ffbea=_0x3ff78d;try{const _0x3f5dc0=this[_0x2ffbea(0x334)](this[_0x2ffbea(0x2ab)](),''+_0x8ed061),_0x38e430=(await this[_0x2ffbea(0x2e9)][_0x2ffbea(0x295)](_0x3f5dc0))[_0x2ffbea(0x23d)];if(_0x38e430[_0x2ffbea(0x421)]&&_0x38e430['error'][_0x2ffbea(0x3e5)]===_0x5cde6d['OK']){const _0x2a6866=new URL(_0x38e430[_0x2ffbea(0x607)],this[_0x2ffbea(0x250)]())[_0x2ffbea(0x44c)]();return Promise[_0x2ffbea(0x331)](_0x2a6866);}return Promise['reject'](_0x38e430[_0x2ffbea(0x421)]);}catch(_0x406b8e){return Promise[_0x2ffbea(0x2aa)](_0x406b8e);}}async[_0x3ff78d(0x2c1)](_0x225416){const _0x34ca17=_0x3ff78d;let _0x2f672e='';if(!_0x123db9['includes'](_0x225416['type']))return this[_0x34ca17(0x4b6)](),Promise[_0x34ca17(0x2aa)](new Error(_0x185cf6[_0x34ca17(0x2c7)][_0x34ca17(0x2c9)]));if(_0x225416[_0x34ca17(0x387)]>_0x4e9cb1)return this[_0x34ca17(0x4b6)](),Promise[_0x34ca17(0x2aa)](new Error(_0x185cf6[_0x34ca17(0x2c7)]['ERROR_EXCEED_SIZE']));try{const _0x152506=new FormData();_0x152506[_0x34ca17(0x6af)](_0x34ca17(0x4ce),_0x225416);const _0x30d1a3=this[_0x34ca17(0x22b)]['getFocusedUnit'](),_0x34aac7=_0x30d1a3==null?void 0x0:_0x30d1a3['getUnitId']();if(!_0x34aac7)throw new Error(_0x34ca17(0x5eb));const _0x3154e8=this[_0x34ca17(0x63e)]()+_0x34ca17(0x624)+_0x225416[_0x34ca17(0x387)][_0x34ca17(0x44c)]()+_0x34ca17(0x31b)+_0x116a13[_0x34ca17(0x309)]+_0x34ca17(0x3d2)+encodeURIComponent(_0x34aac7),_0x5ac5a7=await(await fetch(_0x3154e8,{'method':_0x34ca17(0x38d),'body':_0x152506}))[_0x34ca17(0x3a5)]();if(typeof _0x5ac5a7['FileId']!='string')return this[_0x34ca17(0x4b6)](),Promise[_0x34ca17(0x2aa)](new Error(_0x185cf6[_0x34ca17(0x2c7)][_0x34ca17(0x34d)]));_0x2f672e=_0x5ac5a7[_0x34ca17(0x4dc)];}catch{return this[_0x34ca17(0x4b6)](),Promise[_0x34ca17(0x2aa)](new Error(_0x185cf6[_0x34ca17(0x2c7)][_0x34ca17(0x34d)]));}return new Promise((_0x385e70,_0x143d6d)=>{const _0x48a1ce=_0x34ca17,_0x427ba1=new FileReader();_0x427ba1[_0x48a1ce(0x3b0)](_0x225416),_0x427ba1[_0x48a1ce(0x5c8)]=_0x6b4697=>{const _0x451fc6=_0x48a1ce;var _0x3d1306;const _0xe4f5c7=(_0x3d1306=_0x6b4697[_0x451fc6(0x63b)])==null?void 0x0:_0x3d1306[_0x451fc6(0x283)];if(_0xe4f5c7==null){this[_0x451fc6(0x4b6)](),_0x143d6d(new Error(_0x185cf6[_0x451fc6(0x2c7)][_0x451fc6(0x34d)]));return;}const _0x297149=_0x121236[_0x451fc6(0x5c9)][_0x451fc6(0x381)](0x6);_0x385e70({'imageId':_0x297149,'imageSourceType':_0x185cf6[_0x451fc6(0x384)][_0x451fc6(0x62e)],'source':_0x2f672e,'base64Cache':_0xe4f5c7,'status':_0x185cf6[_0x451fc6(0x2c7)][_0x451fc6(0x4f9)]}),this['_decreaseWaiting']();};});}['_getUploadFileURL'](){const _0x4c99cc=_0x3ff78d;var _0x3e6ee2,_0x1f08ae;const _0xc44c85=this[_0x4c99cc(0x4da)]['getConfig'](_0x3409ab),_0x3e831=this[_0x4c99cc(0x4da)][_0x4c99cc(0x606)](_0x304b09);return(_0x1f08ae=(_0x3e6ee2=_0x3e831==null?void 0x0:_0x3e831['uploadFileServerUrl'])!=null?_0x3e6ee2:_0xc44c85)!=null?_0x1f08ae:_0x385c95;}['_getSignURL'](){const _0x4572ae=_0x3ff78d;var _0x3e0983,_0x56972b;const _0x37513f=this['_configService'][_0x4572ae(0x606)](_0x2a456),_0xc6c3ff=this['_configService'][_0x4572ae(0x606)](_0x304b09);return(_0x56972b=(_0x3e0983=_0xc6c3ff==null?void 0x0:_0xc6c3ff[_0x4572ae(0x2ee)])!=null?_0x3e0983:_0x37513f)!=null?_0x56972b:_0x137243;}['_getDownloadEndpointURL'](){const _0x31e663=_0x3ff78d;var _0x34bd5e;const _0x3510fd=this[_0x31e663(0x4da)][_0x31e663(0x606)](_0x304b09);return(_0x34bd5e=_0x3510fd==null?void 0x0:_0x3510fd[_0x31e663(0x4d2)])!=null?_0x34bd5e:location['origin'];}[_0x3ff78d(0x334)](_0x26bf5f,_0xa26391){const _0x3b6ff6=_0x3ff78d;return _0x26bf5f[_0x3b6ff6(0x38c)]('{fileID}',_0xa26391);}[_0x3ff78d(0x4b6)](){const _0x3d4e75=_0x3ff78d;this[_0x3d4e75(0x427)]-=0x1,this['_change$'][_0x3d4e75(0x5f8)](this['_waitCount']);}},_0x1e9522[_0x3ff78d(0x522)]=_0x459c17([_0x29b8d6(0x0,_0x121236[_0x3ff78d(0x64f)](_0x5bb5df[_0x3ff78d(0x228)])),_0x29b8d6(0x1,_0x121236['IConfigService']),_0x29b8d6(0x2,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x289)]))],_0x1e9522['ImageIoService']);var _0x2be38f=Object[_0x3ff78d(0x675)],_0x163818=Object['getOwnPropertyDescriptor'],_0x1ed713=(_0x1cbfc4,_0xfabdf6,_0x21b4f6,_0x2ffd7d)=>{const _0x169bb4=_0x3ff78d;for(var _0x3f62b3=_0x2ffd7d>0x1?void 0x0:_0x2ffd7d?_0x163818(_0xfabdf6,_0x21b4f6):_0xfabdf6,_0x418cb2=_0x1cbfc4[_0x169bb4(0x453)]-0x1,_0xee74b6;_0x418cb2>=0x0;_0x418cb2--)(_0xee74b6=_0x1cbfc4[_0x418cb2])&&(_0x3f62b3=(_0x2ffd7d?_0xee74b6(_0xfabdf6,_0x21b4f6,_0x3f62b3):_0xee74b6(_0x3f62b3))||_0x3f62b3);return _0x2ffd7d&&_0x3f62b3&&_0x2be38f(_0xfabdf6,_0x21b4f6,_0x3f62b3),_0x3f62b3;},_0x1a961f=(_0xc20843,_0x62e8ff)=>(_0x4fcef2,_0x15a31e)=>_0x62e8ff(_0x4fcef2,_0x15a31e,_0xc20843);let _0x547775=class extends _0x121236[_0x3ff78d(0x5ff)]{constructor(_0x2a706b,_0x5e58e8,_0x38711a,_0x112f1d,_0xfc653e){const _0x5e0e0c=_0x3ff78d;super(),this[_0x5e0e0c(0x45b)]=_0x2a706b,this[_0x5e0e0c(0x22b)]=_0x5e58e8,this['_permissionService']=_0x38711a,this[_0x5e0e0c(0x469)]=_0x112f1d,this[_0x5e0e0c(0x244)]=_0xfc653e,this[_0x5e0e0c(0x39e)](),this['_initCloseConn']();}[_0x3ff78d(0x620)](){const _0x2cfab9=_0x3ff78d,_0xf42ae8=async _0x594506=>{const _0x8fc8fc=_0x57aa;(await this[_0x8fc8fc(0x469)][_0x8fc8fc(0x221)](_0x594506))['event$'][_0x8fc8fc(0x252)](_0x5443e6[_0x8fc8fc(0x65c)](_0x46bbee=>_0x46bbee[_0x8fc8fc(0x502)]===_0x254697['CollaborationEvent']['SHOULD_CLOSE_CONN']),_0x5443e6[_0x8fc8fc(0x3c1)](this['dispose$']))[_0x8fc8fc(0x4e0)](_0x2ccc91=>{const _0x2cdf16=_0x8fc8fc,_0x257156=_0x2ccc91,{reason:_0x2b50a8}=_0x257156['data'];this[_0x2cdf16(0x45b)]['get'](_0x3f9dc7['IMessageService'])[_0x2cdf16(0x35d)]({'type':_0xb84fce['MessageType'][_0x2cdf16(0x21f)],'content':this[_0x2cdf16(0x244)]['t'](_0x2cdf16(0x6a9))+'('+_0x2b50a8+')'}),this['_permissionService'][_0x2cdf16(0x3b5)](new _0x3eed56[(_0x2cdf16(0x536))](_0x594506)['id'],!0x1),this['_collaborationSessionService'][_0x2cdf16(0x284)](_0x594506);});};_0x2d6fea['merge'](this['_univerInstanceService'][_0x2cfab9(0x4ba)](_0x121236[_0x2cfab9(0x5a5)][_0x2cfab9(0x63c)]),this[_0x2cfab9(0x22b)][_0x2cfab9(0x4ba)](_0x121236['UniverInstanceType'][_0x2cfab9(0x54f)]))[_0x2cfab9(0x252)](_0x5443e6[_0x2cfab9(0x43e)](_0x185099=>_0x185099[_0x2cfab9(0x62a)]()),_0x5443e6[_0x2cfab9(0x65c)](_0xb40227=>!_0x121236[_0x2cfab9(0x48d)](_0xb40227)),_0x5443e6['takeUntil'](this['dispose$']))['subscribe'](_0x3d8763=>{_0xf42ae8(_0x3d8763);});}[_0x3ff78d(0x39e)](){const _0x25099c=_0x3ff78d,_0x393958=async _0x47a908=>{const _0x366b06=_0x57aa;(await this['_collaborationSessionService'][_0x366b06(0x221)](_0x47a908))[_0x366b06(0x37b)]['pipe'](_0x5443e6['filter'](_0x57443f=>_0x57443f[_0x366b06(0x502)]===_0x254697['CollaborationEvent']['UPDATE_PERMISSION_OBJ']),_0x5443e6[_0x366b06(0x3c1)](this[_0x366b06(0x268)]))[_0x366b06(0x4e0)](_0x321d46=>{const _0x36b63f=_0x366b06,_0x1ec0da=_0x321d46,{objectId:_0x4fe3fb}=_0x1ec0da['data'],_0x9c7075=this[_0x36b63f(0x45b)]['get'](_0x55783b[_0x36b63f(0x67e)]);_0x4fe3fb===_0x47a908?_0x9c7075['initWorkbookPermissionChange'](_0x47a908):_0x9c7075[_0x36b63f(0x29c)](_0x47a908,_0x4fe3fb);});};_0x2d6fea[_0x25099c(0x5fe)](this['_univerInstanceService'][_0x25099c(0x4ba)](_0x121236[_0x25099c(0x5a5)][_0x25099c(0x63c)]),this['_univerInstanceService'][_0x25099c(0x4ba)](_0x121236[_0x25099c(0x5a5)][_0x25099c(0x54f)]))[_0x25099c(0x252)](_0x5443e6['map'](_0x34068e=>_0x34068e['getUnitId']()),_0x5443e6['filter'](_0x52d336=>!_0x121236['isInternalEditorID'](_0x52d336)),_0x5443e6[_0x25099c(0x3c1)](this['dispose$']))[_0x25099c(0x4e0)](_0x4f98ac=>{_0x393958(_0x4f98ac);});}};_0x547775=_0x1ed713([_0x1a961f(0x0,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x1a961f(0x1,_0x121236[_0x3ff78d(0x289)]),_0x1a961f(0x2,_0x121236[_0x3ff78d(0x519)]),_0x1a961f(0x3,_0x121236['Inject'](_0x1e9522[_0x3ff78d(0x3ee)])),_0x1a961f(0x4,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x611)]))],_0x547775);var _0x4a21d8=Object[_0x3ff78d(0x675)],_0x27233d=Object[_0x3ff78d(0x570)],_0x532c19=(_0x2ec8d4,_0x28c3ed,_0xaa95b5,_0x240483)=>{const _0x291f48=_0x3ff78d;for(var _0x2298ce=_0x240483>0x1?void 0x0:_0x240483?_0x27233d(_0x28c3ed,_0xaa95b5):_0x28c3ed,_0x5ac9ce=_0x2ec8d4[_0x291f48(0x453)]-0x1,_0x5be713;_0x5ac9ce>=0x0;_0x5ac9ce--)(_0x5be713=_0x2ec8d4[_0x5ac9ce])&&(_0x2298ce=(_0x240483?_0x5be713(_0x28c3ed,_0xaa95b5,_0x2298ce):_0x5be713(_0x2298ce))||_0x2298ce);return _0x240483&&_0x2298ce&&_0x4a21d8(_0x28c3ed,_0xaa95b5,_0x2298ce),_0x2298ce;},_0x431dc2=(_0x4bc736,_0x528c22)=>(_0x33da0d,_0x427b31)=>_0x528c22(_0x33da0d,_0x427b31,_0x4bc736);_0x1e9522['SnapshotServerOverHTTPService']=class{constructor(_0x3416d0,_0x4ad763){const _0x3a1f2e=_0x3ff78d;this[_0x3a1f2e(0x4da)]=_0x3416d0,this[_0x3a1f2e(0x2e9)]=_0x4ad763;}async[_0x3ff78d(0x2b6)](_0x400b71,_0xd79094){const _0x5182ef=_0x3ff78d;var _0x37aee4;const {unitID:_0x112f9f,type:_0x4bb051,revision:_0x57ec31=0x0}=_0xd79094,_0x56d657=this[_0x5182ef(0x32f)]()+'/'+_0x4bb051+_0x5182ef(0x5df)+_0x112f9f+_0x5182ef(0x450)+_0x57ec31,_0x507544=(await this[_0x5182ef(0x2e9)][_0x5182ef(0x295)](_0x56d657))[_0x5182ef(0x23d)],_0x43996c=(_0x37aee4=_0x507544[_0x5182ef(0x618)])==null?void 0x0:_0x37aee4[_0x5182ef(0x306)];if(_0x43996c){const _0x34df64=_0x43996c==null?void 0x0:_0x43996c[_0x5182ef(0x235)],_0x553eb2=_0x254697['textEncoder'][_0x5182ef(0x4f7)](_0x254697['b64DecodeUnicode'](_0x34df64));_0x43996c[_0x5182ef(0x235)]=_0x553eb2,Object[_0x5182ef(0x287)](_0x43996c[_0x5182ef(0x48b)])[_0x5182ef(0x6c3)](([,_0x539bcd])=>{const _0x2cc3e6=_0x5182ef,_0x38a7cc=_0x539bcd['originalMeta'],_0x3e1742=_0x254697[_0x2cc3e6(0x5d1)][_0x2cc3e6(0x4f7)](_0x254697['b64DecodeUnicode'](_0x38a7cc));_0x539bcd[_0x2cc3e6(0x235)]=_0x3e1742;});}return _0x507544;}async[_0x3ff78d(0x442)](_0x196a36,_0x3e6920){const _0x2eb51f=_0x3ff78d,{unitID:_0x3e0047,type:_0x30bcd4,blockID:_0x6f0aac}=_0x3e6920,_0x23a7d8=this['_getAPIPrefix']()+'/'+_0x30bcd4+_0x2eb51f(0x5df)+_0x3e0047+_0x2eb51f(0x2ca)+_0x6f0aac;return(await this[_0x2eb51f(0x2e9)][_0x2eb51f(0x295)](_0x23a7d8))[_0x2eb51f(0x23d)];}async['getDeserializedSheetBlock'](_0xf6b1d4,_0x3e6574){const _0x15f9bb=_0x3ff78d,{unitID:_0x3f61af,type:_0x5bd82b,blockID:_0x382e52}=_0x3e6574,_0x424685=this[_0x15f9bb(0x291)]()+_0x15f9bb(0x2ca)+_0x5bd82b+_0x15f9bb(0x5df)+_0x3f61af+'/block/'+_0x382e52;return(await this[_0x15f9bb(0x2e9)][_0x15f9bb(0x295)](_0x424685))['body'];}async[_0x3ff78d(0x650)](_0x2f3d58,_0x3913cd){const _0x562841=_0x3ff78d,{unitID:_0x141cb5,type:_0xaa3cb2,from:_0x5b1493,to:_0x4cd67f}=_0x3913cd,_0x5d5f0b=this[_0x562841(0x291)]()+'/'+_0xaa3cb2+_0x562841(0x5df)+_0x141cb5+_0x562841(0x5d6)+_0x5b1493+'&to='+_0x4cd67f;return(await this['_httpService'][_0x562841(0x295)](_0x5d5f0b))[_0x562841(0x23d)];}[_0x3ff78d(0x32f)](){const _0xdd82b9=_0x3ff78d;var _0x1254ff;return(_0x1254ff=this[_0xdd82b9(0x4da)][_0xdd82b9(0x606)](_0x5f505b))!=null?_0x1254ff:this[_0xdd82b9(0x291)]();}[_0x3ff78d(0x291)](){const _0x337911=_0x3ff78d;var _0x1e5dab,_0x3bd6e5;const _0x875421=this[_0x337911(0x4da)]['getConfig'](_0x4509fd),_0xaa652c=this[_0x337911(0x4da)][_0x337911(0x606)](_0x304b09);return(_0x3bd6e5=(_0x1e5dab=_0xaa652c==null?void 0x0:_0xaa652c[_0x337911(0x50c)])!=null?_0x1e5dab:_0x875421)!=null?_0x3bd6e5:_0x11e377;}async[_0x3ff78d(0x445)](_0x599d75,_0x149bdd){const _0x53ad53=_0x3ff78d,_0x276cd7=_0x53ad53(0x43d)+_0x149bdd[_0x53ad53(0x25f)]+_0x53ad53(0x5df)+_0x149bdd['unitID']+_0x53ad53(0x619);return(await this['_httpService'][_0x53ad53(0x295)](_0x276cd7,{'params':{'resourceId':JSON[_0x53ad53(0x411)](_0x149bdd['resourceIDs'])}}))['body'];}[_0x3ff78d(0x60e)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x3ff78d(0x3fd)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x3ff78d(0x239)](){const _0x312c58=_0x3ff78d;throw new Error(_0x312c58(0x68e));}[_0x3ff78d(0x4db)](){const _0x24d361=_0x3ff78d;throw new Error(_0x24d361(0x68e));}[_0x3ff78d(0x317)](){const _0x87c8a3=_0x3ff78d;throw new Error(_0x87c8a3(0x68e));}},_0x1e9522[_0x3ff78d(0x538)]=_0x532c19([_0x431dc2(0x0,_0x121236[_0x3ff78d(0x3f8)]),_0x431dc2(0x1,_0x121236[_0x3ff78d(0x64f)](_0x5bb5df[_0x3ff78d(0x228)]))],_0x1e9522[_0x3ff78d(0x538)]);var _0x231183=Object[_0x3ff78d(0x675)],_0x2cb70a=Object['getOwnPropertyDescriptor'],_0x3df612=(_0x39af3b,_0x352917,_0x4fddb5,_0x32e048)=>{for(var _0x18ad00=_0x32e048>0x1?void 0x0:_0x32e048?_0x2cb70a(_0x352917,_0x4fddb5):_0x352917,_0x4d5a19=_0x39af3b['length']-0x1,_0x300bae;_0x4d5a19>=0x0;_0x4d5a19--)(_0x300bae=_0x39af3b[_0x4d5a19])&&(_0x18ad00=(_0x32e048?_0x300bae(_0x352917,_0x4fddb5,_0x18ad00):_0x300bae(_0x18ad00))||_0x18ad00);return _0x32e048&&_0x18ad00&&_0x231183(_0x352917,_0x4fddb5,_0x18ad00),_0x18ad00;},_0x3a522e=(_0x519407,_0x5dc3aa)=>(_0x53052d,_0x4ada8d)=>_0x5dc3aa(_0x53052d,_0x4ada8d,_0x519407);let _0x17a97a=class extends _0x121236[_0x3ff78d(0x512)]{constructor(_0x575e76,_0x339338,_0x25b935,_0x54b86f,_0x43dc98){const _0x2d8fc1=_0x3ff78d;super(_0x575e76,_0x339338,_0x25b935),this[_0x2d8fc1(0x66c)]=_0x54b86f,this[_0x2d8fc1(0x659)]=_0x43dc98;}['transformUndoRedo'](_0x3b3a92,_0xdb7bef){const _0x137e85=_0x3ff78d,_0x17d2d1=this[_0x137e85(0x3f2)](_0x3b3a92);if(_0x17d2d1)try{const _0x50a8cf=this[_0x137e85(0x274)](_0x17d2d1,_0xdb7bef);this['_substituteUndoStack'](_0x3b3a92,_0x50a8cf);}catch(_0x33b5c8){this['_logService']['error'](_0x137e85(0x62b),_0x33b5c8),this[_0x137e85(0x22f)](_0x3b3a92);}const _0x2ea970=this[_0x137e85(0x210)](_0x3b3a92);if(_0x2ea970)try{const _0x33d71a=this['_transformStack'](_0x2ea970,_0xdb7bef);this[_0x137e85(0x697)](_0x3b3a92,_0x33d71a);}catch(_0x107423){this['_logService']['error'](_0x107423),this[_0x137e85(0x5b3)](_0x3b3a92);}}[_0x3ff78d(0x22f)](_0x374ad5){const _0x2fabf4=_0x3ff78d,_0x47455e=this[_0x2fabf4(0x3f2)](_0x374ad5);_0x47455e&&(_0x47455e[_0x2fabf4(0x453)]=0x0,this[_0x2fabf4(0x24f)]());}[_0x3ff78d(0x5b3)](_0x6e5bdc){const _0x354a00=_0x3ff78d,_0x396823=this[_0x354a00(0x210)](_0x6e5bdc);_0x396823&&(_0x396823[_0x354a00(0x453)]=0x0,this[_0x354a00(0x24f)]());}[_0x3ff78d(0x3e1)](_0x59f18d,_0x25af0f){const _0x599354=_0x3ff78d;this['_undoStacks'][_0x599354(0x30d)](_0x59f18d,_0x25af0f),this[_0x599354(0x24f)]();}[_0x3ff78d(0x697)](_0x196258,_0x3aac2a){const _0xe5bfe8=_0x3ff78d;this['_redoStacks']['set'](_0x196258,_0x3aac2a),this[_0xe5bfe8(0x24f)]();}[_0x3ff78d(0x274)](_0x52a9de,_0x3e6939){const _0x4ced3a=_0x3ff78d,_0x397764=[];let _0x3a5e69=_0x3e6939,_0x3748cb=_0x3e6939;for(let _0x263585=_0x52a9de[_0x4ced3a(0x453)]-0x1;_0x263585>=0x0;_0x263585--){const {unitID:_0x649ac2,undoMutations:_0x411630,redoMutations:_0x41a798}=_0x52a9de[_0x263585],_0x159429=this[_0x4ced3a(0x66c)][_0x4ced3a(0x660)](_0x3a5e69,_0x411630),_0x182b93=this[_0x4ced3a(0x66c)][_0x4ced3a(0x660)](_0x3748cb,_0x41a798);if(_0x254697[_0x4ced3a(0x34e)](_0x159429)||_0x254697[_0x4ced3a(0x34e)](_0x182b93)){this[_0x4ced3a(0x659)][_0x4ced3a(0x421)]('[CollaborationUndoRedoService]',_0x4ced3a(0x25a),_0x159429,_0x182b93);break;}_0x3a5e69=_0x159429[_0x4ced3a(0x33a)],_0x3748cb=_0x182b93[_0x4ced3a(0x33a)],_0x397764[_0x4ced3a(0x3f3)]({'unitID':_0x649ac2,'undoMutations':_0x159429[_0x4ced3a(0x4d8)],'redoMutations':_0x182b93[_0x4ced3a(0x4d8)]});}return _0x397764[_0x4ced3a(0x3cd)]();}};_0x17a97a=_0x3df612([_0x3a522e(0x0,_0x121236['IUniverInstanceService']),_0x3a522e(0x1,_0x121236[_0x3ff78d(0x2eb)]),_0x3a522e(0x2,_0x121236[_0x3ff78d(0x5cb)]),_0x3a522e(0x3,_0x254697[_0x3ff78d(0x58c)]),_0x3a522e(0x4,_0x121236[_0x3ff78d(0x3fa)])],_0x17a97a);class _0x14621a extends _0x121236[_0x3ff78d(0x5ff)]{constructor(){const _0x259ee8=_0x3ff78d;super(),_0x3661de(this,_0x259ee8(0x2a9)),this[_0x259ee8(0x2a9)]=_0x2d6fea[_0x259ee8(0x276)](window,_0x259ee8(0x366))['pipe'](_0x2d6fea[_0x259ee8(0x3c1)](this[_0x259ee8(0x268)]),_0x2d6fea[_0x259ee8(0x5ae)](0x1),_0x2d6fea[_0x259ee8(0x5f0)](void 0x0));}[_0x3ff78d(0x6a3)](_0x3280b2,_0x2f1f4a,_0x32a23b=!0x1){const _0x264fa3=_0x3ff78d,_0x95e720=new URL(window[_0x264fa3(0x2b0)]['href']);_0x95e720['searchParams'][_0x264fa3(0x30d)](_0x3280b2,_0x2f1f4a),_0x32a23b?window[_0x264fa3(0x323)]['replaceState']('','',_0x95e720[_0x264fa3(0x44c)]()):window[_0x264fa3(0x323)][_0x264fa3(0x6c1)]('','',_0x95e720[_0x264fa3(0x44c)]());}[_0x3ff78d(0x64a)](_0x4c14c3,_0x19d59d=!0x1){const _0x143033=_0x3ff78d,_0x35833f=new URL(window[_0x143033(0x2b0)]['href']);_0x35833f[_0x143033(0x525)][_0x143033(0x52a)](_0x4c14c3),_0x19d59d?window['history'][_0x143033(0x6b8)]('','',_0x35833f[_0x143033(0x44c)]()):window['history'][_0x143033(0x6c1)]('','',_0x35833f[_0x143033(0x44c)]());}['getParam'](_0x5dffa3){const _0x8eed26=_0x3ff78d;var _0x4242fe;return(_0x4242fe=new URL(window['location'][_0x8eed26(0x1f9)])['searchParams'][_0x8eed26(0x295)](_0x5dffa3))!=null?_0x4242fe:void 0x0;}}var _0x494960=Object[_0x3ff78d(0x675)],_0x1d89a9=Object[_0x3ff78d(0x570)],_0x22a5b7=(_0x49675d,_0xeaa0f9,_0x395a6c)=>_0xeaa0f9 in _0x49675d?_0x494960(_0x49675d,_0xeaa0f9,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x395a6c}):_0x49675d[_0xeaa0f9]=_0x395a6c,_0x4833cb=(_0x538baa,_0x41dd59,_0x23e5eb,_0x1d497d)=>{const _0x4ea70a=_0x3ff78d;for(var _0x1273ce=_0x1d497d>0x1?void 0x0:_0x1d497d?_0x1d89a9(_0x41dd59,_0x23e5eb):_0x41dd59,_0x279344=_0x538baa[_0x4ea70a(0x453)]-0x1,_0x2a9c9a;_0x279344>=0x0;_0x279344--)(_0x2a9c9a=_0x538baa[_0x279344])&&(_0x1273ce=(_0x1d497d?_0x2a9c9a(_0x41dd59,_0x23e5eb,_0x1273ce):_0x2a9c9a(_0x1273ce))||_0x1273ce);return _0x1d497d&&_0x1273ce&&_0x494960(_0x41dd59,_0x23e5eb,_0x1273ce),_0x1273ce;},_0x1dba7d=(_0x56edcb,_0x562f5b)=>(_0x331688,_0x1e22f7)=>_0x562f5b(_0x331688,_0x1e22f7,_0x56edcb),_0x48f399=(_0x230283,_0x4c2600,_0x51bcc2)=>_0x22a5b7(_0x230283,_0x4c2600+'',_0x51bcc2);const _0x57a5d5=_0x3ff78d(0x38e);_0x1e9522[_0x3ff78d(0x5d7)]=class extends _0x121236['Plugin']{constructor(_0x4bb569=_0x50b2a5,_0x3cf5b9,_0x51d472,_0x17ec2a,_0x26ced6){const _0x4d7ea2=_0x3ff78d;super(),this['_config']=_0x4bb569,this[_0x4d7ea2(0x659)]=_0x3cf5b9,this['_renderManagerService']=_0x51d472,this[_0x4d7ea2(0x45b)]=_0x17ec2a,this[_0x4d7ea2(0x4da)]=_0x26ced6;const {..._0x2c12c9}=this['_config'];this[_0x4d7ea2(0x4da)]['setConfig'](_0x304b09,_0x2c12c9);}[_0x3ff78d(0x2fc)](){const _0x30a984=_0x3ff78d;this[_0x30a984(0x559)](),this[_0x30a984(0x2ec)]();}[_0x3ff78d(0x5bd)](){const _0x413a33=_0x3ff78d;_0x121236[_0x413a33(0x2b2)](this[_0x413a33(0x45b)],[[_0x10af8c]]);}[_0x3ff78d(0x47a)](){const _0x36d549=_0x3ff78d;this[_0x36d549(0x664)]();}['_registerDependencies'](){const _0x3effb1=_0x3ff78d;var _0xf0d5f3,_0x28b571,_0x18110d,_0x380782;this[_0x3effb1(0x45b)][_0x3effb1(0x558)](_0x121236[_0x3effb1(0x5b7)])&&this[_0x3effb1(0x659)][_0x3effb1(0x421)](_0x3effb1(0x501),_0x3effb1(0x255));const _0x4678e9=[[_0x121236[_0x3effb1(0x5b7)],{'useClass':_0x17a97a}],[_0x1e9522[_0x3effb1(0x3ee)]],[_0x1d6b04],[_0x47c44c,{'useClass':_0x14621a}],[_0x1e9522['MemberService']],[_0x1e9522[_0x3effb1(0x544)]],[_0x5bb5df[_0x3effb1(0x488)]],[_0x45c8bc],[_0x4c380d],[_0xcea2b9],[_0x3b1bb2],[_0x3da688],[_0x167329],[_0x146fcf],[_0xb9ed00],[_0x547775],[_0x2880a6,{'useClass':(_0x28b571=(_0xf0d5f3=this[_0x3effb1(0x44d)])==null?void 0x0:_0xf0d5f3[_0x3effb1(0x4d3)])!=null?_0x28b571:_0x1e9522[_0x3effb1(0x3c4)]}],[_0x254697[_0x3effb1(0x219)],{'useClass':_0x1e9522[_0x3effb1(0x538)]}],[_0x121236[_0x3effb1(0x42f)],{'useClass':_0x1e9522[_0x3effb1(0x249)]}],[_0x185cf6['IImageIoService'],{'useClass':_0x1e9522[_0x3effb1(0x522)]}],[_0x1e9522[_0x3effb1(0x3a2)]],[_0x1e9522[_0x3effb1(0x213)]],[_0x1e9522[_0x3effb1(0x3a1)]],[_0x10af8c],[_0x52ae98]];(_0x18110d=this['_config'])!=null&&_0x18110d[_0x3effb1(0x40c)]&&_0x4678e9[_0x3effb1(0x3f3)]([_0x419a7e,{'useClass':_0x590071}]),_0x121236[_0x3effb1(0x4bf)](this[_0x3effb1(0x45b)],_0x121236['mergeOverrideWithDependencies'](_0x4678e9,(_0x380782=this[_0x3effb1(0x44d)])==null?void 0x0:_0x380782[_0x3effb1(0x27f)]));}[_0x3ff78d(0x664)](){const _0x2e2422=_0x3ff78d;this['disposeWithMe'](this['_renderManagerService'][_0x2e2422(0x27e)](_0x121236[_0x2e2422(0x5a5)][_0x2e2422(0x54f)],[_0x2106e0])),this['disposeWithMe'](this[_0x2e2422(0x57f)][_0x2e2422(0x27e)](_0x121236[_0x2e2422(0x5a5)]['UNIVER_SHEET'],[_0x52a7e8]));}[_0x3ff78d(0x2ec)](){const _0x3f5d5d=_0x3ff78d;var _0x1000d4,_0x5def11;this[_0x3f5d5d(0x45b)]['get'](_0x5bb5df[_0x3f5d5d(0x228)])[_0x3f5d5d(0x677)]({'priority':0x14,'interceptor':_0x5bb5df[_0x3f5d5d(0x689)]({'maxParallel':0x6})}),(_0x1000d4=this[_0x3f5d5d(0x44d)])!=null&&_0x1000d4[_0x3f5d5d(0x397)]||this['_injector'][_0x3f5d5d(0x295)](_0x1e9522[_0x3f5d5d(0x544)])['disableLocalCache'](),(_0x5def11=this[_0x3f5d5d(0x44d)])!=null&&_0x5def11[_0x3f5d5d(0x3a0)]&&_0x121236['touchDependencies'](this[_0x3f5d5d(0x45b)],[[_0x167329]]),_0x121236[_0x3f5d5d(0x2b2)](this[_0x3f5d5d(0x45b)],[[_0x146fcf],[_0x52ae98],[_0x1e9522['DataLoaderController']],[_0x1e9522[_0x3f5d5d(0x3a2)]],[_0x1e9522[_0x3f5d5d(0x3a1)]],[_0x547775]]);}},_0x48f399(_0x1e9522['UniverCollaborationClientPlugin'],_0x3ff78d(0x215),_0x57a5d5),_0x1e9522[_0x3ff78d(0x5d7)]=_0x4833cb([_0x121236[_0x3ff78d(0x28c)](_0x254697[_0x3ff78d(0x2a2)],_0x5bb5df[_0x3ff78d(0x610)]),_0x1dba7d(0x1,_0x121236['ILogService']),_0x1dba7d(0x2,_0x328527[_0x3ff78d(0x50e)]),_0x1dba7d(0x3,_0x121236[_0x3ff78d(0x64f)](_0x121236[_0x3ff78d(0x3da)])),_0x1dba7d(0x4,_0x121236['IConfigService'])],_0x1e9522[_0x3ff78d(0x5d7)]),_0x1e9522[_0x3ff78d(0x35a)]=_0x5b7dd4,_0x1e9522['COLLAB_SUBMIT_CHANGESET_URL_KEY']=_0x146725,_0x1e9522[_0x3ff78d(0x56b)]=_0x5ae336,_0x1e9522['CollaborationStatus']=_0x5728a6,_0x1e9522[_0x3ff78d(0x45d)]=_0x87a38,_0x1e9522['CommentService']=_0xb9ed00,_0x1e9522[_0x3ff78d(0x5db)]=_0x1de31c,_0x1e9522['HEARTBEAT_TIMEOUT_KEY']=_0x318c82,_0x1e9522[_0x3ff78d(0x4c7)]=_0x2880a6,_0x1e9522[_0x3ff78d(0x3ca)]=_0x47c44c,_0x1e9522[_0x3ff78d(0x4cf)]=_0x90eef6,_0x1e9522[_0x3ff78d(0x572)]=_0x1377db,_0x1e9522['RETRY_CONNECTING_MAX_COUNT_KEY']=_0x2b6ba2,_0x1e9522[_0x3ff78d(0x1f6)]=_0xcdc001,_0x1e9522[_0x3ff78d(0x316)]=_0x4509fd,_0x1e9522[_0x3ff78d(0x602)]=_0x5f505b,_0x1e9522['SessionStatus']=_0x2ac566,_0x1e9522[_0x3ff78d(0x41d)]=_0x348864,_0x1e9522[_0x3ff78d(0x2bb)]=_0x14621a,_0x1e9522[_0x3ff78d(0x3df)]=_0x489c1a,_0x1e9522[_0x3ff78d(0x547)]=_0x18b5ce,Object['defineProperty'](_0x1e9522,Symbol['toStringTag'],{'value':_0x3ff78d(0x4a7)});}));function _0x1ddd(){const _0x222055=['serializeCombRequest','getCollabEntity$','/allowed','UNKNOWN_CMD','exhaustSavingTask','RETRY_CONNECTING_MAX_COUNT','FETCH_MISSING','_clearCollaborationTimeoutTimer','UNIVER_DOC','WordArray','abs','_exhaustRemoteChangesetQueue','uni.network.url-service','_refRangeService','for','univer-online','_messageService','has','_registerDependencies','_init','awaiting_with_pending','action','fetchMiss','_getAPIPrefixPath','CollaborationSession','UNKNOWN_CODE','_data','icon','_localCacheService','onMissingChangesets','csAckEvent','Native\x20crypto\x20module\x20could\x20not\x20be\x20used\x20to\x20get\x20secure\x20random\x20number.','UNDEFINED','NOT_COLLAB','findNodePositionByCharIndex','moveTo','COLLAB_WEB_SOCKET_URL_KEY','toDisposable','values','min','ALREADY_EXISTS','getOwnPropertyDescriptor','APPLY_NON_SEQUENTIAL_REVISION','LOGIN_URL_KEY','INVALID_ARGUMENT','rxjs','Vector2','current','hasher','handleInsertCol','default','_updateLocalCache','_colorAssignService','_sendHeartbeat','use','jiqing500','_renderManagerService','_checkMissing','_toggleOnline','appendMutation','error$','handleMoveRange','unload','_onCursorDelete','sessionStatus','_retryCount','_hasher','_doReset','LIVESHARE_TERMINATE','ITransformService','getSheetObject','method','throttleTime','enableLocalCache','onCommentUpdate','_onUserJoin','_rescheduleHeartbeat','react.fragment','fetch_missing','collabStatus.syncing','_updateState','_docStateChangeManagerService','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.','_onCombEvent','m1Prime','VIEW_MAIN','_nDataBytes','_nRounds','getColor','session.will-retry','#FFF','fill','UNIVER_UNKNOWN','state','UniverInstanceType','\x0aCurrent:\x20','_createSocketURL','_getLoginPath','EffectRefRangId','currentTheme$','Cipher','AWAITING','retryConnectingInterval','shareReplay','_clearLocalCache','_process','isTransformMutationsWithChangesetSuccess','startTime','_clearRedo','parseChangesetToProtocol','_map','ivSize','IUndoRedoService','routeKey','getWorkbookSelections','url(#off-line-single_clip0_910_343)','getSheetBySheetId','bind','onReady','_id','_onUserLeave','_collabSessionService','_doCryptBlock','clamp','listRoles','_getCtorByUniverType','_replayCachedMutations','encrypt','visibilityState','onload','Tools','JOIN','IContextService','RECV','defIds','transformRemoteChangeset','telemetry\x20info\x20is\x20not\x20initialized','_initEventListeners','textEncoder','HmacMD5','_unitOnClients','2376117UvveHA','operators','/fetchmissing?from=','UniverCollaborationClientPlugin','_themeService','CONFLICT','/new_changes','HEARTBEAT_INTERVAL_KEY','onTransformState','_invKeySchedule','Latin1','/unit/','OTHER_CLIENTS_EDITING','splice','disposeWithMe','_getSessionTicket','registerRefRange','ColorKit','assignAColorForMemberID','LEAVE','_scene','9544jezDjc','SNAPSHOT_INVALID_SNAPSHOT','unitId\x20is\x20not\x20found','StreamCipher','save','TOO_MANY_REQUESTS','from','mapTo','TRANSFORM_CHANGE_OBSERVABLE_TYPE','getSkeleton','UNIVER_SLIDE','createIdentifier','function','_transformRemoteChangesetByIMECache','InsertRangeMoveDownCommandId','next','COMPRESS_MUTATION_SEND','/-/object/-/batch_allowed','NodePositionConvertToCursor','backgroundColor','getMemberID','merge','RxDisposable','Encryptor','USERS_ENTER','SNAPSHOT_URL_KEY','onTransformRemoteChangesetByStateCache','_iKey','randomUUID','getConfig','url','onTransformIME','SYNCED','[OfflineState]:\x20invalid\x20calling\x20to\x20`resend`.','translate(.97)','not_collab','_syncEditingCollabCursorService','saveSnapshot','ref','UniverNetworkPlugin','LocaleService','cursorInfo','_remoteChangesetQueue','fromCharCode','sid','onRemoteAck','awaitingChangeset','snapshot','/resources','_updateLocalCursor','collab-rect-range-','[CollaborationEntity]:\x20initial\x20state\x20has\x20been\x20created\x20before.\x20You\x20should\x20not\x20call\x20\x22init\x22\x20twice.','NO_OTHER_CLIENTS_EDITING','_pendingMutations','floor','_initCloseConn','APPLY_REJECT','COMPRESS_MUTATION_APPLY','add','?size=','_removeRoom','getUndoRedoMutationParamsCache','getOwnPropertySymbols','getVpScrollXYInfoByPosToVp','_saveCache','getUnitId','[CollaborationUndoRedoService]','_type','transformByState','UUID','setAlpha','Workbook','colorChannel1','debounceTime','#fff','_handleLeaveEvent','contains','Fragment','infoRsp','close$','userID','_doProcessBlock','target','UNIVER_SHEET','runRefRangeMutations','_getUploadFileURL','collab-text-range-','ticket','isPermissionRej','_scheduleSaving','hide','saveOfflineData','execute','_clearScheduledTask','_socket$','1029310lLBqQl','onlyLocal','removeParam','UniverTelemetry','_initMergeInterceptor','debounce','DisposableCollection','Inject','fetchMissingChangesets','_collaborationController','PSEUDO_FETCH_MISSING_RESULT','[DataLoaderController]','APPLY_REVISION_CONFILICT','random','_oKey','isTransformChangesetsSuccess','changesets','_logService','Could\x20not\x20dynamically\x20require\x20\x22','_collabCursorController','filter','joinRsp','mutations','send','transformMutationsWithChangeset','restore','visibilitychange','_anchorDot','_registerRenderDependencies','1515VdXmOS','M4.5865\x2011.6499C3.36983\x2011.6499\x201.6665\x2011.1024\x201.6665\x208.9124C1.6665\x206.3574\x204.2215\x205.8099\x204.9515\x205.8099C5.3165\x204.5324\x206.0465\x202.5249\x208.9665\x202.5249C11.5215\x202.5249\x2012.6165\x203.9849\x2012.9815\x205.2624C12.9815\x205.2624\x2016.2665\x205.6274\x2016.2665\x208.7299C16.2665\x2010.9199\x2014.8065\x2011.6499\x2013.3465\x2011.6499M6.7767\x2011.6497L8.9667\x2013.4747L11.8867\x209.82466','subunit','_saveTaskMap','symbol','delay','7OVlThw','_transformService','ThemeService','title','bold\x2013px\x20Source\x20Han\x20Sans\x20CN','DOC_RANGE_TYPE','Base','EXCHANGE_SIGN_URL_SERVER_URL_KEY','_docTransformStateCacheService','submit\x20changeset\x20error!','defineProperty','univer-online-status-title','registerHTTPInterceptor','div','rev','_backgroundColor','_getSaveTimeout','revision','unitId','SheetPermissionInitController','getValue','_shouldReportTelemetry','_onOffline','_revisionService','init','toLowerCase','getParam','_removeClearOtherTimer','getRangePointData','_createHandler','ThresholdInterceptorFactory','status','cfg','BASE64','@univerjs/engine-render','This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!','MUTATION','MessageType','_state','getRandomValues','charCodeAt','@univerjs/docs-ui','createInstance','_collaborationTimeoutTimer','_substituteRedoStack','_docTransformSelectionsService','transformChangesets','NoPadding','_uiPartsService','hostname','useCallback','transformSelections','formatter','image/png','open$','M3.61971\x2011.6499C2.40304\x2011.6499\x200.699707\x2011.1024\x200.699707\x208.9124C0.699707\x206.3574\x203.25471\x205.8099\x203.98471\x205.8099C4.34971\x204.5324\x205.07971\x202.5249\x207.99971\x202.5249C10.5547\x202.5249\x2011.6497\x203.9849\x2012.0147\x205.2624C12.0147\x205.2624\x2015.2997\x205.6274\x2015.2997\x208.7299C15.2997\x2010.9199\x2013.8397\x2011.6499\x2012.3797\x2011.6499M9.82471\x209.82466L6.17471\x2013.4747M6.17471\x209.82466L9.82471\x2013.4747','setParam','/universer-api/file/{fileID}/sign-url','object','react','clearTimeout','LICENSE_EXPORT_SIZE_EXCEEDED','collaboration.closeRoom','_cipher','InsertRangeMoveRightCommandId','purple300','newCsEvent','font','append','equals','deepClone','_onJoinRoomEvent','Shape','propertyIsEnumerable','[SyncedState]:\x20received\x20rejection.','parse','arc','replaceState','getCurrentRevOfUnit','updateMember','unknown','UniverCore','src','IBeforeCloseService','Unknown\x20user','_tryReconnect','pushState','Subject','forEach','trim','onRemoteRetry','_getCurrentRevision','shouldCloseConn','Hex','_textBubble','flatMap','_docSkeleton','SEND_CHANGESET_TIMEOUT_KEY','_updateCollabCursors','INGEST','href','evenodd','_clearTimeoutTimer','JSONX','clear','state$','mapDocumentTypeToUniverType','_handler','fetching\x20missing\x20changesets\x20from\x20','VIEWPORT_KEY','complete','2826618NebBct','toRgbString','currentColor','CHANGESET_SHOULD_RETRY','@univerjs/drawing','Malformed\x20UTF-8\x20data','loginUrlKey','_transformUndoredo','HmacSHA1','_disabled','focused$','clone','_getRedoStack','CONNECTOR_DATA_TOO_LARGE','_permissionService','DataLoaderController','endColumn','pluginName','COMPLETION_FINISHED','memberID','_roomMembers','ISnapshotServerService','_key','with','MemberService','_singleActiveUnitService','onMouseMove','Error','onTransformChange$','requireSession','IUIPartsService','CHANGESET_REVISION_CONFILICT','_showConflictNotification','UniverDrawing','_sendingTimer','univer-offline','HTTPService','React','_hash','_univerInstanceService','_scheduleCollaborationTimeoutTimer','UniverEngineFormula','getSheetId','_clearUndo','disposeUnit','wsSessionTicketUrl','_retryConnectingTimer','@univerjs/design','handleInsertRangeMoveDown','originalMeta','fillRule','red300','color','saveChangeset','substr','_docSkeletonManagerService','getUnitType','body','setCurrentUser','_scheduleClearOtherTimer','collabStatus.synced','algo','_getScale','registerBeforeClose','_localeService','?url=','loadOfflineData','_toggleOffline','pending','AuthzIoHttpService','close','_removeCollabCursors','stopTime','_setupSubUnitSync','className','_updateStatus','_getDownloadEndpointURL','slice','pipe','addImageSourceCache','format','you\x20should\x20override\x20\x22IUndoRedoService\x22\x20provided\x20in\x20\x22core\x22\x20package!','round','_memberService','@univerjs/docs','SetWorksheetActivateCommand','transformStack\x20failed!','subUnitId','currentSkeleton$','byteLength','onlineStatusTitle','type','_append','_transformIMECache','black','c2Prime','rxjs/operators','sendChangesetTimeout','isActive','offline','dispose$','createElement','_selfUnitIDs','getMergeData','[CollaborationEntity]:\x20invalid\x20state\x20transition!\x20State\x20transferred\x20from\x20is\x20not\x20the\x20current\x20state.\x0aBefore:\x20','_userManagerService','UNRECOGNIZED','_sheetTransformSelectionsService','YUUMI_SUBSCRIPTION_NOT_FOUND','_scheduleTimestamp','handleDeleteRangeMoveUp','INotificationService','_transformStack','OFFLINE','fromEvent','selections','_render','engine','_candidateSocket','_getSheetObject','unshift','[FetchingMissState]:\x20invalid\x20calling\x20to\x20`resend`.','registerRenderModule','override','setShowComponents','sequenceExecute','CipherParams','result','closeSession','update','_ENC_XFORM_MODE','entries','height','IUniverInstanceService','DocIMEInputManagerService','getCoordByCell','DependentOn','univer-online-status','No\x20unitID\x20or\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','call','ReplaySubject','_getAPIPrefix','Base64','_onRemoteChangeset','_initResize','get','collab-text-anchor-','objectActions','_undoRedoService','_transformStateCache','APPLY_PERMISSION_DENIED','Utf8','refreshPermission','keySize','_cursorShapes','getTime','off-line-single_clip0_910_343','Unknown\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','UniverCollaborationPlugin','getCurrentSelections','getUnhiddenWorksheets','HMAC','[PendingState]:\x20received\x20acknowledgement.','setUndoRedoMutationParamsCache','getActiveRange','urlChange$','reject','_getSignURL','_socketService','_shapes','_heartbeatTimer','_changesetSessionId','location','_awaitingChangeset','touchDependencies','PENDING','CBC','getStateCache','getUnitOnRev','readInt32LE','MD5','isTransformMutationFailure','_setupBeforeClosingHandler','WebURLService','_submitChangeset','every','COLORS','handleIRemoveRow','[FetchingMissState]:\x20not\x20expected\x20to\x20receive\x20ack\x20when\x20`this._awaitingChangeset`\x20is\x20null!','saveImage','newValue','collabStatus.fetchMiss','reqId','includes','HTTPRequest','ImageUploadStatusType','onPointerLeave$','ERROR_IMAGE_TYPE','/block/','interceptor','useDependency','url(#on-line-single_clip0_910_349)','HttpImport','Hasher','displayName','_cursorInfo$','some','dispose','getCurrentUnitForType','measureText','url(#$1','getRoom','onTransformSelections','getCurrentUser','clearInterval','_resendWithTimeout','session','liveShareOperation','substring','toggleOffline','_joinRoom','decryptBlock','_loadDoc','SUBMIT_CHANGESET','_sessionStatus$','_eventUnsubscribe','_createHelper','addObjects','TEXT','_httpService','SnapshotService','ICommandService','_initDependencies','none','signUrlServerUrl','_sheetSkeletonManagerService','concatMap','verdancy600','IMessageService','UniverDocs','_sender','\x20in\x20_schedule.','session.connection-failed','clipPath','LOCAL_CACHE_INTERVAL','max','setStateCache','getMember','onStarting','createSocket','change$','CHANGESET_REJ','SheetSkeletonManagerService','UniverNetwork','_unitID','_change$','_assignedColors','actions','workbook','_hovered','Warning','UnitEmbedded','awaiting','reduce','collabStatus.offline','set','FAIL','_members','_ensureSubject','_transformSelections','\x0aAfter:\x20','_socket','session.collaboration-timeout','getAncestorScale','SNAPSHOT_SERVER_URL_KEY','getLatestCsReqIdBySid','NOT_FOUND','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','_handleHeartbeatEvent','&source=','_unlockTransition','UniverDocsUi','getAllMembers','lib','path','[CollaborationEntity]:\x20cannot\x20apply\x20missing\x20results\x20on\x20other\x20states!','mode','history','csShouldRetryEvent','toggleOnline','_hover','@univerjs/sheets-ui','@univerjs/ui','baseRev','charAt','LICENSE_DISTRO_REJECTED','deleteCollaborator','0\x200\x2016\x2016','M0\x200H16V16H0z','_getSnapshotAPIPrefix','key','resolve','CollaborationEvent','getCellPositionByOffset','_replaceFileID','triggerDblclick','fromCollab','_onMessage','554407OjVdzA','unit','c1Prime','deserializeRangeWithSheet','[CollaborationSessionService]','subscribeEvent','BlockCipher','_startCollaboration','BlockCipherMode','_fetchMissChangesets','closePath','/universer-api/stream/file/upload','selection','_instanceService','[ConflictState]:\x20invalid\x20calling\x20to\x20`resend`.','_timeoutTimer','[PendingState]:\x20invalid\x20calling\x20to\x20`resend`.','textRanges','msCrypto','_executeRemoteChangeset','onRemoteChangeset','ERROR_IMAGE','isTransformMutationsWithChangesetFailure','transformStateCache','switchMap','finalize','Rectangle','/universer-api/comb','now','conflict.content','_imageSourceCache','off-line-single','DocStateChangeManagerService','@univerjs/rpc','AUTHZ_URL_KEY','onSyncEditingCollabCursor','storage','show','join','Rect','_onRecvEvent','roomMembers','SheetsSelectionsService','_onConnectionOpen','@univerjs/core','useRef','popstate','UniverEngineRender','LIVESHARE_FETCH_OPERATIONS','_disableEditing','_document','USERS_LEAVE','LICENSE_MAX_UNITS_EXCEEDED','width','rgba(255,\x20255,\x20255,\x200.01)','split','_clearHeartbeatTimer','_getSendChangesetTimeout','_cursor','/collaborator','debug','RichTextEditingMutation','reset','commentUpdateEvent','roles','UNIVER_PROJECT','extend','event$','asObservable','Decryptor','ILocalStorageService','handleIRemoveCol','mixIn','generateRandomId','words','startsWith','ImageSourceType','/role','DeleteRangeMoveUpCommandId','size','prototype','useObservable','_syncEditingCollabCursor','getUnit','replace','POST','UNIVER_COLLABORATION_CLIENT_PLUGIN','_snapshotServerService','HEARTBEAT_INTERVAL','[OfflineState]:\x20received\x20changeset.','MergeInterceptorFactory','_sendHeartbeatTimer','_incrementRevisionNumber','_minBufferSize','getTypeOfUnitDisposed$','enableOfflineEditing','roomMembers$','ranges','_createSocket','setWaitCount','transformUndoRedo','879584VQhGho','_initUnitPermissionChange','IDLE','enableAuthServer','DesktopCollaborationStatusDisplayController','CollaborationController','setShapeProps','_socketReady','json','_colorIndex','_onRemoteACK','$super','[CollaborationSession]','exports','_parse','_loadSheet','_unitStatus','assign','6338630FnlbkY','readAsDataURL','APPLY_DUPLICATED','attrs','onTransformRemoteChangesetByIMECache','getImageSourceCache','updatePermissionPoint','permission.title','SheetCollaborationEntity','_queuedRemoteChangesets','listCollaborators','getCollabEntity','transformIMECache','_HTTPService','setTimeout','_send','_docTransformIMECacheService','Disposable','takeUntil','LIVESHARE_REQUEST_HOST','onCommandExecuted','CollaborationSocketService','fetchThroughInterceptors','NodePositionConvertToRectRange','authzUrl','_sessions','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','IURLService','BuiltInUIPart','_drawTextRange','reverse','__creator','OnLineSingle','drawWith','_initRequestHeader','&assign=','lineTo','conflict.title','_lockTransition','BehaviorSubject','YUUMI_URL_COL_OUT_OF_RANGE','YUUMI_UNABLE_LOAD_URL','OpenSSL','Injector','_cachedData','fromEventSubject','defs','members','deserializeToCombResponse','FETCH_MISS','_substituteUndoStack','randomBytes','_listenToOnlineEvent','range','code','_event$','UNAUTHENTICATED','_context','sigBytes','jsxs','number','isEditing','MoveRangeCommandId','CollaborationSessionService','put','origin','defaultProps','_getUndoStack','push','headers','/universer-api/oidc/authpage','docStateChange$','Undefined','IConfigService','collaborators','ILogService','_refreshCollabCursors','idSuffix','saveSheetBlock','enc','1em','_entityInit$','RemoveRowCommandId','RECT','_schedule','@univerjs/telemetry','Pkcs7','removeMember','HEARTBEAT','AES','jsx','on-line-single','SNAPSHOT_HAS_BEEN_REMOVED','enableSingleActiveInstanceLock','_labelPosition','ITelemetryService','collaboration_new_changeset','DocSkeletonManagerService','stringify','_onFetchMissResult','@univerjs/network','SetTextSelectionsOperation','setItem','ONLINE','addEventListener','JOINING','apply','undoState','column','xlink:href','SheetCollabCursorShape','ACTIVE_UNIT_EVENT_CHANNEL','_mode','_notificationService','error','@univerjs/sheets','encodeURIComponent','_onRefRangeChange','SetDocZoomRatioOperation','getRelativeToViewportCoord','_waitCount','transform','_doFinalize','hasOwnProperty','children','HEARTBEAT_TIMEOUT','gold400','PasswordBasedCipher','IAuthzIoService','_xformMode','_entities','_applyRemoteChangeset','_clearOtherTimers','onRemoteRej','_range','_iv','then','@univerjs-pro/collaboration','_keyPriorReset','_compressMutationService','editing\x20status\x20changed\x20to','collaMsg','/universer-api/snapshot/','map','EvpKDF','status$','_localStorageService','getSheetBlock','_isPermissionRej','_collabCursorState$','getResourcesRequest','UPDATE_CURSOR','handleInsertRow','LIVESHARE_NEW_HOST','RevisionService','_cursors','row','toString','_config','collabCursorState$','setActiveRange','/rev/','reconnect','_changesetReqId','length','string','beginPath','connectInjector','parseProtocolChangeset','ceil','_resendTimeout','[OfflineState]:\x20received\x20acknowledgement.','_injector','_acknowledgedAwaitingChangeset','CollaborationStatusDisplay','UserManagerService','amd','on-line-single_clip0_910_349','COMMENT_UPDATE','addObject','synced','_session','_updateSubUnitFromURLParams','updatePermissionObjEvent','_commandService','cursorInfo$','_collaborationSessionService','onPointerMove$','skeleton','_commentUpdate$','getRenderById','ws://127.0.0.1:8000/universer-api/comb/connect','salt','updateCursorEvent','handleInsertRangeMoveRight','image/bmp','_keySchedule','_beforeCloseService','CommandType','_color','getCurrent','[CollaborationState]:\x20apply\x20error!','duration','onRendered','_online','permission.content','_throwTelemetryCollaborationNewChangeset','_lastPointer','compute','connection\x20error','...','getCollabCursors$','getDocRanges','sessionStatus$','_waitForHeartbeatResponse','roomInfos','PERMISSION_DENIED','WebSocketService','cmd','blue400','sheets','unit-cache-','isInternalEditorID','decrypt','collaboratorID','CompressMutationService','__esModule','UnitSnapshot','resend','unsubscribe','_getAnchorBounding','requestParams','blockSize','MSG_FOR_ERROR','find','bottom','_initStatusComponent','_transformPreviousActiveRange','_docSyncEditingCollabCursorService','_updateURLWithCurrentState','message$','_http','_getMergeRange','post','HttpExport','CollaborationEntity','kdf','/universer-api/authz','Module','Univer','transformMutation','failed\x20to\x20apply\x20missed\x20changesets!','_transformHistoryAndStateStack','makeDirty','objectType','serializeRangeWithSheet','concat','_createInitialStateImpl','_transitionLocked','getFocusedUnit','createCollaborator','responseType','_anchor','_decreaseWaiting','_tryEnsureSocket','isArray','name','getTypeOfUnitAdded$','onSendChangeset','patch','updateCollaborator','RegularPolygon','registerDependencies','editingUnit','sheetId','top','withCredentials','socket\x20open.','_ws','INTERNAL_ERROR','ICollaborationSocketService','syncEditingCollabCursor','collaboration-session-retry','getInterceptPoints','doc.mutation.rich-text-editing','_urlService','HELLO','file','LOCAL_CACHE_INTERVAL_KEY','leaveEvent','unitID','downloadEndpointUrl','socketService','combineLatest','allowed','session.room-full','_listenToOfflineEvent','m2Prime','_hideTimer','_configService','copyFileMeta','FileId','onMissedChangesetFetched','getActiveSheet','SetSelectionsOperation','subscribe','/universer-api/snapshot','whenReady','_createInitialState','fillStyle','x-univer-host','redoState','_prevBlock','indexOf','forwardRef','DEFAULT_FILE_NAME','getOffsetConfig','onPointerEnter$','_createHmacHelper','_onLocalMutation','_state$','_name','LIVESHARE_OPERATION','updateOfflineData','/object/','image/jpg','Optional','_reverseMap','encode','text','SUCCUSS','_roomMembers$','params','_initCommandExecutedListener','[FetchMissState]','_scheduleHeartbeat','_resendTimer','_startDocCollabCursor','[UniverCollaborationClientPlugin]','eventID','_onCursorUpdate','conflict','batchAllowed','commentUpdate$','FromArray','CHANGESET_ACK','data','_commentService','catch','snapshotServerUrl','HEADER_MENU','IRenderManagerService','PERMISSION_REJ','_status$','objectID','LocalUndoRedoService','_startTelemetryCollaborationNewChangeset','_drawRectRange','_onConnectionFailed','_collaborationPaused','_onRemoteRetry','COLLAB_WEB_SOCKET_URL','IPermissionService','_stopTelemetryCollaborationNewChangeset','SerializableCipher','JOIN_ROOM_FULL','COLLAB_SUBMIT_CHANGESET_URL','hovered','ciphertext','DocCollaborationEntity','_socketMessageSubscription','ImageIoService','DocSelectionManagerService','createEncryptor','searchParams','SHA1','_onConflict','pad','permissionRejEvent','delete','csRejEvent','executeCommand','collabStatus.notCollab','_snapshotService','registerOnClose','[PendingState]:\x20received\x20rejection.','_handleEvent','_DEC_XFORM_MODE','crypto','_handleHover','[serializeCombRequest]:\x20should\x20not\x20fall\x20into\x20default\x20branch!','WorkbookEditablePermission','_telemetryInfo','SnapshotServerOverHTTPService','create','take','_drawAnchor','tag','TEXT_RANGE_LAYER_INDEX','collab-client.tooltip.reconnect','_transformUndoRedoStack','UniverProCollaboration','sessionTicket','univerjs-icon\x20univerjs-icon-','_telemetryService','LocalCacheService','\x20to\x20','LICENSE_IMPORT_SIZE_EXCEEDED'];_0x1ddd=function(){return _0x222055;};return _0x1ddd();}