@univerjs-pro/collaboration-client 0.5.0-nightly.202411121606 → 0.5.0-nightly.202411131606

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 +48 -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 +54 -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 +29 -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 +61 -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 +16 -16
@@ -1 +1 @@
1
- 'use strict';const _0x2c0d80=_0x1797;(function(_0x43d9e2,_0x46f0f7){const _0x31ea7b=_0x1797,_0x1da71f=_0x43d9e2();while(!![]){try{const _0x33b073=-parseInt(_0x31ea7b(0xad))/0x1+-parseInt(_0x31ea7b(0xb3))/0x2+parseInt(_0x31ea7b(0xa6))/0x3+parseInt(_0x31ea7b(0xb2))/0x4+parseInt(_0x31ea7b(0xa0))/0x5*(-parseInt(_0x31ea7b(0xb5))/0x6)+parseInt(_0x31ea7b(0xb0))/0x7+parseInt(_0x31ea7b(0xb1))/0x8;if(_0x33b073===_0x46f0f7)break;else _0x1da71f['push'](_0x1da71f['shift']());}catch(_0x4f02a6){_0x1da71f['push'](_0x1da71f['shift']());}}}(_0x49b8,0x2ddac));function _0x49b8(){const _0x4b0cf5=['Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','18TNaPzp','621505GiHSDo','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Edit\x20conflicts','Synced','1006986lGgaXp','Syncing\x20server\x20data...','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Authentication\x20Error','Click\x20to\x20Reconnect','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Local\x20file','245517CgtZoK','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','1713712oAlujL','865128aWZBiV','1434520MevFBX','482018QblUWQ'];_0x49b8=function(){return _0x4b0cf5;};return _0x49b8();}const e={'collab-client':{'tooltip':{'reconnect':_0x2c0d80(0xaa)}},'collabStatus':{'fetchMiss':_0x2c0d80(0xa7),'conflict':_0x2c0d80(0xa4),'notCollab':_0x2c0d80(0xac),'synced':_0x2c0d80(0xa5),'syncing':'Syncing...','offline':_0x2c0d80(0xa8)},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x2c0d80(0xb4),'room-full':_0x2c0d80(0xae),'collaboration-timeout':_0x2c0d80(0xa2)},'conflict':{'title':'Collaboration\x20Conflict','content':'There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.'},'permission':{'title':_0x2c0d80(0xa9),'content':_0x2c0d80(0xa1)},'collaboration':{'single-unit':{'warning':_0x2c0d80(0xaf)},'closeRoom':_0x2c0d80(0xab)},'auth':{'needGotoLoginAlert':_0x2c0d80(0xa3)}};function _0x1797(_0x55e7fd,_0x32ed48){const _0x49b838=_0x49b8();return _0x1797=function(_0x17978b,_0x5f4640){_0x17978b=_0x17978b-0xa0;let _0x28c458=_0x49b838[_0x17978b];return _0x28c458;},_0x1797(_0x55e7fd,_0x32ed48);}module['exports']=e;
1
+ 'use strict';const _0x30ca77=_0x68f5;(function(_0x1c4947,_0x5082ba){const _0xb07a91=_0x68f5,_0x15e599=_0x1c4947();while(!![]){try{const _0x1b44f1=parseInt(_0xb07a91(0xf4))/0x1*(parseInt(_0xb07a91(0xeb))/0x2)+parseInt(_0xb07a91(0xe1))/0x3*(-parseInt(_0xb07a91(0xf1))/0x4)+-parseInt(_0xb07a91(0xdd))/0x5+-parseInt(_0xb07a91(0xe0))/0x6*(parseInt(_0xb07a91(0xe7))/0x7)+parseInt(_0xb07a91(0xea))/0x8*(-parseInt(_0xb07a91(0xed))/0x9)+-parseInt(_0xb07a91(0xe3))/0xa+parseInt(_0xb07a91(0xe2))/0xb;if(_0x1b44f1===_0x5082ba)break;else _0x15e599['push'](_0x15e599['shift']());}catch(_0x213aea){_0x15e599['push'](_0x15e599['shift']());}}}(_0x512e,0x53991));function _0x512e(){const _0x3317cb=['Connection\x20failed,\x20please\x20check\x20your\x20network.','4xwwqoo','Syncing\x20server\x20data...','exports','339294ParxuE','Local\x20file','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','1842655VcEyva','Edit\x20conflicts','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','948zovoep','891573xWpSiA','23726197IRQLnD','4524410Ezavdr','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Click\x20to\x20Reconnect','29015LQMeyv','Synced','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','104PdTrav','2qyXdCs','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','263583XSUFYo','Authentication\x20Error','Syncing...'];_0x512e=function(){return _0x3317cb;};return _0x512e();}const e={'collab-client':{'tooltip':{'reconnect':_0x30ca77(0xe6)}},'collabStatus':{'fetchMiss':_0x30ca77(0xf2),'conflict':_0x30ca77(0xde),'notCollab':_0x30ca77(0xda),'synced':_0x30ca77(0xe8),'syncing':_0x30ca77(0xef),'offline':_0x30ca77(0xe9)},'session':{'connection-failed':_0x30ca77(0xf0),'will-retry':_0x30ca77(0xe4),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x30ca77(0xe5)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x30ca77(0xec)},'permission':{'title':_0x30ca77(0xee),'content':_0x30ca77(0xdc)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x30ca77(0xdf)},'auth':{'needGotoLoginAlert':_0x30ca77(0xdb)}};function _0x68f5(_0x15de45,_0x1717b5){const _0x512e1e=_0x512e();return _0x68f5=function(_0x68f576,_0x58209d){_0x68f576=_0x68f576-0xda;let _0x441f38=_0x512e1e[_0x68f576];return _0x441f38;},_0x68f5(_0x15de45,_0x1717b5);}module[_0x30ca77(0xf3)]=e;
@@ -1 +1 @@
1
- 'use strict';function _0x4b4b(){const _0x92780e=['سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','505590GJFbDE','2212305hgGbJP','exports','14466249jcfmmE','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','پرونده\x20محلی','تداخل\x20ویرایش','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','2UDNcaz','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','6iXrMPf','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','142051AmMhjn','795792YmOlVg','6558110IPMiRe','همگام\x20سازی','28390660kdnkbU','424ERMtyL'];_0x4b4b=function(){return _0x92780e;};return _0x4b4b();}const _0x8608c8=_0x2091;(function(_0x1b2fa3,_0x42b90d){const _0x3aaf39=_0x2091,_0x912fcf=_0x1b2fa3();while(!![]){try{const _0x1cb125=parseInt(_0x3aaf39(0x1df))/0x1+parseInt(_0x3aaf39(0x1cf))/0x2*(-parseInt(_0x3aaf39(0x1c7))/0x3)+parseInt(_0x3aaf39(0x1d8))/0x4+parseInt(_0x3aaf39(0x1d9))/0x5*(-parseInt(_0x3aaf39(0x1d4))/0x6)+-parseInt(_0x3aaf39(0x1d7))/0x7*(-parseInt(_0x3aaf39(0x1dc))/0x8)+-parseInt(_0x3aaf39(0x1c9))/0x9+parseInt(_0x3aaf39(0x1db))/0xa;if(_0x1cb125===_0x42b90d)break;else _0x912fcf['push'](_0x912fcf['shift']());}catch(_0x1301ed){_0x912fcf['push'](_0x912fcf['shift']());}}}(_0x4b4b,0xeb09b));function _0x2091(_0x1dc4e4,_0x13b2a3){const _0x4b4bef=_0x4b4b();return _0x2091=function(_0x209190,_0x615169){_0x209190=_0x209190-0x1c7;let _0x46cc4f=_0x4b4bef[_0x209190];return _0x46cc4f;},_0x2091(_0x1dc4e4,_0x13b2a3);}const o={'collab-client':{'tooltip':{'reconnect':_0x8608c8(0x1de)}},'collabStatus':{'fetchMiss':_0x8608c8(0x1d2),'conflict':_0x8608c8(0x1cd),'notCollab':_0x8608c8(0x1cc),'synced':_0x8608c8(0x1da),'syncing':'در\x20حال\x20همگام\x20سازی...','offline':_0x8608c8(0x1ca)},'session':{'connection-failed':_0x8608c8(0x1d3),'will-retry':_0x8608c8(0x1d1),'room-full':_0x8608c8(0x1d5),'collaboration-timeout':_0x8608c8(0x1dd)},'conflict':{'title':'تداخل\x20همکاری','content':_0x8608c8(0x1d6)},'permission':{'title':'خطای\x20اعتبارسنجی','content':_0x8608c8(0x1cb)},'collaboration':{'single-unit':{'warning':_0x8608c8(0x1d0)},'closeRoom':_0x8608c8(0x1ce)},'auth':{'needGotoLoginAlert':'ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.'}};module[_0x8608c8(0x1c8)]=o;
1
+ 'use strict';function _0x339f(){const _0x1136a3=['اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','317887kyunIj','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','12kPCHxc','15225OCxiFh','در\x20حال\x20همگام\x20سازی...','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','156177FydvQv','15121608sMCtJZ','180YKfXjV','تداخل\x20ویرایش','1456124vlbeRb','4GzMOcF','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','7849986DePcQj','5864GNwicl','پرونده\x20محلی','exports','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','12307251fzviNC','تداخل\x20همکاری','5vjNyDd'];_0x339f=function(){return _0x1136a3;};return _0x339f();}const _0x4159fc=_0x93c3;(function(_0x52548e,_0x115eb6){const _0x3c75e2=_0x93c3,_0xa4c4f8=_0x52548e();while(!![]){try{const _0x174c2e=-parseInt(_0x3c75e2(0x10d))/0x1*(parseInt(_0x3c75e2(0x101))/0x2)+-parseInt(_0x3c75e2(0x112))/0x3*(parseInt(_0x3c75e2(0x100))/0x4)+parseInt(_0x3c75e2(0x10b))/0x5*(parseInt(_0x3c75e2(0x104))/0x6)+parseInt(_0x3c75e2(0x113))/0x7*(parseInt(_0x3c75e2(0x105))/0x8)+-parseInt(_0x3c75e2(0x117))/0x9*(-parseInt(_0x3c75e2(0xfe))/0xa)+parseInt(_0x3c75e2(0x109))/0xb+-parseInt(_0x3c75e2(0x118))/0xc;if(_0x174c2e===_0x115eb6)break;else _0xa4c4f8['push'](_0xa4c4f8['shift']());}catch(_0x27c82d){_0xa4c4f8['push'](_0xa4c4f8['shift']());}}}(_0x339f,0xefb09));function _0x93c3(_0xdff98e,_0x589cbb){const _0x339fc7=_0x339f();return _0x93c3=function(_0x93c3f4,_0x9a6c6f){_0x93c3f4=_0x93c3f4-0xfe;let _0x33bf69=_0x339fc7[_0x93c3f4];return _0x33bf69;},_0x93c3(_0xdff98e,_0x589cbb);}const o={'collab-client':{'tooltip':{'reconnect':_0x4159fc(0x110)}},'collabStatus':{'fetchMiss':_0x4159fc(0x103),'conflict':_0x4159fc(0xff),'notCollab':_0x4159fc(0x106),'synced':'همگام\x20سازی','syncing':_0x4159fc(0x114),'offline':_0x4159fc(0x116)},'session':{'connection-failed':_0x4159fc(0x10f),'will-retry':_0x4159fc(0x102),'room-full':'اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','collaboration-timeout':_0x4159fc(0x111)},'conflict':{'title':_0x4159fc(0x10a),'content':'یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.'},'permission':{'title':'خطای\x20اعتبارسنجی','content':_0x4159fc(0x10c)},'collaboration':{'single-unit':{'warning':_0x4159fc(0x108)},'closeRoom':_0x4159fc(0x10e)},'auth':{'needGotoLoginAlert':_0x4159fc(0x115)}};module[_0x4159fc(0x107)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x2fd68e=_0x4bad;(function(_0x1fae78,_0x14e640){const _0xbd0ff2=_0x4bad,_0x3e7316=_0x1fae78();while(!![]){try{const _0x4fc7cf=-parseInt(_0xbd0ff2(0x1a3))/0x1*(-parseInt(_0xbd0ff2(0x194))/0x2)+parseInt(_0xbd0ff2(0x1a4))/0x3+-parseInt(_0xbd0ff2(0x19b))/0x4*(-parseInt(_0xbd0ff2(0x199))/0x5)+parseInt(_0xbd0ff2(0x1a2))/0x6+parseInt(_0xbd0ff2(0x1a7))/0x7+-parseInt(_0xbd0ff2(0x19d))/0x8+-parseInt(_0xbd0ff2(0x193))/0x9*(parseInt(_0xbd0ff2(0x197))/0xa);if(_0x4fc7cf===_0x14e640)break;else _0x3e7316['push'](_0x3e7316['shift']());}catch(_0x1ea56c){_0x3e7316['push'](_0x3e7316['shift']());}}}(_0x168e,0x92a05));function _0x168e(){const _0x155ec2=['1317520GuhYYA','exports','4QzESem','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','1008912CYntNz','Click\x20to\x20Reconnect','Authentication\x20Error','Edit\x20conflicts','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','3751422nXNQfz','6qnLaTX','1991403uQgrMS','Connection\x20failed,\x20please\x20check\x20your\x20network.','Syncing\x20server\x20data...','2795345OhHrmJ','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','36HDXSkL','377802Ajtnhz','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','5896470HqmCWB','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.'];_0x168e=function(){return _0x155ec2;};return _0x168e();}const e={'collab-client':{'tooltip':{'reconnect':_0x2fd68e(0x19e)}},'collabStatus':{'fetchMiss':_0x2fd68e(0x1a6),'conflict':_0x2fd68e(0x1a0),'notCollab':'Local\x20file','synced':'Synced','syncing':'Syncing...','offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x2fd68e(0x1a5),'will-retry':_0x2fd68e(0x19c),'room-full':_0x2fd68e(0x198),'collaboration-timeout':_0x2fd68e(0x195)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x2fd68e(0x192)},'permission':{'title':_0x2fd68e(0x19f),'content':_0x2fd68e(0x1a1)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x2fd68e(0x196)}},o=e;function _0x4bad(_0x45a4b5,_0x320c6d){const _0x168e84=_0x168e();return _0x4bad=function(_0x4bad60,_0x172cea){_0x4bad60=_0x4bad60-0x192;let _0x400257=_0x168e84[_0x4bad60];return _0x400257;},_0x4bad(_0x45a4b5,_0x320c6d);}module[_0x2fd68e(0x19a)]=o;
1
+ 'use strict';const _0x468db0=_0x48f8;(function(_0x1f6f56,_0x2d23ef){const _0x54a92c=_0x48f8,_0x375284=_0x1f6f56();while(!![]){try{const _0x1a298c=-parseInt(_0x54a92c(0x156))/0x1*(-parseInt(_0x54a92c(0x154))/0x2)+-parseInt(_0x54a92c(0x15b))/0x3+parseInt(_0x54a92c(0x166))/0x4*(-parseInt(_0x54a92c(0x14c))/0x5)+-parseInt(_0x54a92c(0x14d))/0x6+-parseInt(_0x54a92c(0x159))/0x7*(parseInt(_0x54a92c(0x15d))/0x8)+parseInt(_0x54a92c(0x152))/0x9*(parseInt(_0x54a92c(0x155))/0xa)+parseInt(_0x54a92c(0x158))/0xb;if(_0x1a298c===_0x2d23ef)break;else _0x375284['push'](_0x375284['shift']());}catch(_0x397c4e){_0x375284['push'](_0x375284['shift']());}}}(_0x292a,0xf1750));function _0x48f8(_0x5de0f0,_0x4b2d1b){const _0x292abc=_0x292a();return _0x48f8=function(_0x48f8b0,_0x51a25e){_0x48f8b0=_0x48f8b0-0x14c;let _0x409db9=_0x292abc[_0x48f8b0];return _0x409db9;},_0x48f8(_0x5de0f0,_0x4b2d1b);}function _0x292a(){const _0x2baae3=['Syncing\x20server\x20data...','951516BkYPJd','exports','12gDKkqX','130AKAAXo','81142aiVkcr','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','39279108fVYhNo','266CJRugI','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','2016492DoHsEj','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','193640VpZnzG','Authentication\x20Error','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Edit\x20conflicts','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Collaboration\x20Conflict','Synced','Click\x20to\x20Reconnect','100xxzVUV','349915bMymus','6609330JtXPUg','Local\x20file','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Connection\x20failed,\x20please\x20check\x20your\x20network.'];_0x292a=function(){return _0x2baae3;};return _0x292a();}const e={'collab-client':{'tooltip':{'reconnect':_0x468db0(0x165)}},'collabStatus':{'fetchMiss':_0x468db0(0x151),'conflict':_0x468db0(0x161),'notCollab':_0x468db0(0x14e),'synced':_0x468db0(0x164),'syncing':'Syncing...','offline':_0x468db0(0x15a)},'session':{'connection-failed':_0x468db0(0x150),'will-retry':_0x468db0(0x14f),'room-full':_0x468db0(0x160),'collaboration-timeout':_0x468db0(0x15c)},'conflict':{'title':_0x468db0(0x163),'content':_0x468db0(0x15f)},'permission':{'title':_0x468db0(0x15e),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x468db0(0x157)},'auth':{'needGotoLoginAlert':_0x468db0(0x162)}},o=e;module[_0x468db0(0x153)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x1ccf9b=_0x31b7;function _0x31b7(_0x5e3cf3,_0x5b93f3){const _0x308986=_0x3089();return _0x31b7=function(_0x31b7b3,_0x3d7c6b){_0x31b7b3=_0x31b7b3-0x109;let _0x1ee507=_0x308986[_0x31b7b3];return _0x1ee507;},_0x31b7(_0x5e3cf3,_0x5b93f3);}(function(_0x273d2a,_0x2042a4){const _0x45fcae=_0x31b7,_0x1877c6=_0x273d2a();while(!![]){try{const _0x5ea177=-parseInt(_0x45fcae(0x11c))/0x1+parseInt(_0x45fcae(0x11b))/0x2*(parseInt(_0x45fcae(0x119))/0x3)+-parseInt(_0x45fcae(0x10a))/0x4*(-parseInt(_0x45fcae(0x121))/0x5)+-parseInt(_0x45fcae(0x11d))/0x6+-parseInt(_0x45fcae(0x110))/0x7+-parseInt(_0x45fcae(0x10f))/0x8+-parseInt(_0x45fcae(0x114))/0x9*(-parseInt(_0x45fcae(0x11f))/0xa);if(_0x5ea177===_0x2042a4)break;else _0x1877c6['push'](_0x1877c6['shift']());}catch(_0x3a60c0){_0x1877c6['push'](_0x1877c6['shift']());}}}(_0x3089,0xf0907));const e={'collab-client':{'tooltip':{'reconnect':_0x1ccf9b(0x10e)}},'collabStatus':{'fetchMiss':_0x1ccf9b(0x113),'conflict':'Edit\x20conflicts','notCollab':_0x1ccf9b(0x10c),'synced':_0x1ccf9b(0x11e),'syncing':_0x1ccf9b(0x109),'offline':_0x1ccf9b(0x115)},'session':{'connection-failed':_0x1ccf9b(0x122),'will-retry':_0x1ccf9b(0x111),'room-full':_0x1ccf9b(0x116),'collaboration-timeout':_0x1ccf9b(0x117)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x1ccf9b(0x10d)},'permission':{'title':_0x1ccf9b(0x112),'content':_0x1ccf9b(0x118)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x1ccf9b(0x120)},'auth':{'needGotoLoginAlert':_0x1ccf9b(0x10b)}},o=e;module[_0x1ccf9b(0x11a)]=o;function _0x3089(){const _0x2c0746=['1740144mUqGKC','6265665bZYiNd','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Authentication\x20Error','Syncing\x20server\x20data...','63pfqMAY','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','3989637HNoSsw','exports','2ywuDIS','1087335YYkMPo','881598zfKIDP','Synced','1194210GJKKus','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','1944010qVvCNB','Connection\x20failed,\x20please\x20check\x20your\x20network.','Syncing...','12JsqIvr','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Local\x20file','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Click\x20to\x20Reconnect'];_0x3089=function(){return _0x2c0746;};return _0x3089();}
1
+ 'use strict';function _0x2c15(){const _0x35ec1a=['1FSWieb','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Synced','exports','4199712jNZEiD','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','873XDbXgj','Syncing\x20server\x20data...','26072qTjTRc','Syncing...','16vBIcNW','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','1206588iWkVOv','29015700fFjnPO','Authentication\x20Error','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','994495gCHfNO','7664944BMJSWW','Connection\x20failed,\x20please\x20check\x20your\x20network.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Local\x20file','3082116OflDEJ','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Collaboration\x20Conflict'];_0x2c15=function(){return _0x35ec1a;};return _0x2c15();}const _0xe6cf4d=_0x574f;function _0x574f(_0x3c376d,_0xd54ff0){const _0x2c1522=_0x2c15();return _0x574f=function(_0x574f0a,_0x176b15){_0x574f0a=_0x574f0a-0x1c7;let _0x41e9fe=_0x2c1522[_0x574f0a];return _0x41e9fe;},_0x574f(_0x3c376d,_0xd54ff0);}(function(_0x39915e,_0xad4922){const _0x541159=_0x574f,_0x38c7e2=_0x39915e();while(!![]){try{const _0x3bea6d=-parseInt(_0x541159(0x1d4))/0x1*(parseInt(_0x541159(0x1c8))/0x2)+-parseInt(_0x541159(0x1d1))/0x3+parseInt(_0x541159(0x1de))/0x4*(-parseInt(_0x541159(0x1cc))/0x5)+-parseInt(_0x541159(0x1d8))/0x6+parseInt(_0x541159(0x1cd))/0x7+parseInt(_0x541159(0x1dc))/0x8*(-parseInt(_0x541159(0x1da))/0x9)+parseInt(_0x541159(0x1c9))/0xa;if(_0x3bea6d===_0xad4922)break;else _0x38c7e2['push'](_0x38c7e2['shift']());}catch(_0x377a06){_0x38c7e2['push'](_0x38c7e2['shift']());}}}(_0x2c15,0x874f1));const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0xe6cf4d(0x1db),'conflict':'Edit\x20conflicts','notCollab':_0xe6cf4d(0x1d0),'synced':_0xe6cf4d(0x1d6),'syncing':_0xe6cf4d(0x1dd),'offline':_0xe6cf4d(0x1cb)},'session':{'connection-failed':_0xe6cf4d(0x1ce),'will-retry':_0xe6cf4d(0x1df),'room-full':_0xe6cf4d(0x1cf),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0xe6cf4d(0x1d3),'content':_0xe6cf4d(0x1d9)},'permission':{'title':_0xe6cf4d(0x1ca),'content':_0xe6cf4d(0x1d2)},'collaboration':{'single-unit':{'warning':_0xe6cf4d(0x1c7)},'closeRoom':_0xe6cf4d(0x1d5)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}},o=e;module[_0xe6cf4d(0x1d7)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x47eb01=_0x2029;(function(_0x360b43,_0x4cf51a){const _0x4635a4=_0x2029,_0x1f559b=_0x360b43();while(!![]){try{const _0x4a2e36=-parseInt(_0x4635a4(0x16b))/0x1*(-parseInt(_0x4635a4(0x171))/0x2)+parseInt(_0x4635a4(0x177))/0x3*(-parseInt(_0x4635a4(0x175))/0x4)+-parseInt(_0x4635a4(0x173))/0x5+-parseInt(_0x4635a4(0x167))/0x6+parseInt(_0x4635a4(0x166))/0x7*(parseInt(_0x4635a4(0x163))/0x8)+parseInt(_0x4635a4(0x16c))/0x9+parseInt(_0x4635a4(0x169))/0xa*(parseInt(_0x4635a4(0x164))/0xb);if(_0x4a2e36===_0x4cf51a)break;else _0x1f559b['push'](_0x1f559b['shift']());}catch(_0x1843e0){_0x1f559b['push'](_0x1f559b['shift']());}}}(_0x1653,0xd9865));function _0x2029(_0x122b23,_0x5ed872){const _0x16539b=_0x1653();return _0x2029=function(_0x20292c,_0x4ec794){_0x20292c=_0x20292c-0x15f;let _0x20ae7c=_0x16539b[_0x20292c];return _0x20ae7c;},_0x2029(_0x122b23,_0x5ed872);}function _0x1653(){const _0x3e3d7b=['你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','服务器未响应,你的编辑将在本地缓存','122amjsCH','本地文件','6150520Okvehp','协同房间已满,你的编辑将在本地缓存','2564XMBUdo','保存中...','8064MAQkgM','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','已同步','编辑冲突','exports','连接失败,将在一会儿之后重试连接','8gNkJck','66bfpBnZ','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','2137163acCmmY','9684966SpcDcF','正在拉取服务端数据...','7608130QggKzx','协同冲突','3811avfYPL','3200364GHajIk','由于协同房间被关闭,编辑权限被收回。','点击重新连接'];_0x1653=function(){return _0x3e3d7b;};return _0x1653();}const o={'collab-client':{'tooltip':{'reconnect':_0x47eb01(0x16e)}},'collabStatus':{'fetchMiss':_0x47eb01(0x168),'conflict':_0x47eb01(0x160),'notCollab':_0x47eb01(0x172),'synced':_0x47eb01(0x15f),'syncing':_0x47eb01(0x176),'offline':'已离线,编辑将在本地缓存'},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':_0x47eb01(0x162),'room-full':_0x47eb01(0x174),'collaboration-timeout':_0x47eb01(0x170)},'conflict':{'title':_0x47eb01(0x16a),'content':_0x47eb01(0x178)},'permission':{'title':'权限错误','content':'你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'},'collaboration':{'single-unit':{'warning':_0x47eb01(0x16f)},'closeRoom':_0x47eb01(0x16d)},'auth':{'needGotoLoginAlert':_0x47eb01(0x165)}};module[_0x47eb01(0x161)]=o;
1
+ 'use strict';const _0x38bfd9=_0x4cbd;(function(_0x77fc6e,_0x2f90ed){const _0x1cba30=_0x4cbd,_0x14feff=_0x77fc6e();while(!![]){try{const _0x1a7168=parseInt(_0x1cba30(0x199))/0x1+-parseInt(_0x1cba30(0x18e))/0x2+parseInt(_0x1cba30(0x193))/0x3*(parseInt(_0x1cba30(0x194))/0x4)+parseInt(_0x1cba30(0x1a3))/0x5+parseInt(_0x1cba30(0x19b))/0x6*(parseInt(_0x1cba30(0x1a5))/0x7)+parseInt(_0x1cba30(0x1a4))/0x8*(-parseInt(_0x1cba30(0x19c))/0x9)+-parseInt(_0x1cba30(0x18b))/0xa;if(_0x1a7168===_0x2f90ed)break;else _0x14feff['push'](_0x14feff['shift']());}catch(_0x5c5135){_0x14feff['push'](_0x14feff['shift']());}}}(_0x3152,0x30e4c));const o={'collab-client':{'tooltip':{'reconnect':_0x38bfd9(0x190)}},'collabStatus':{'fetchMiss':_0x38bfd9(0x18c),'conflict':_0x38bfd9(0x1a1),'notCollab':_0x38bfd9(0x196),'synced':_0x38bfd9(0x19a),'syncing':_0x38bfd9(0x18f),'offline':'已离线,编辑将在本地缓存'},'session':{'connection-failed':_0x38bfd9(0x1a0),'will-retry':_0x38bfd9(0x197),'room-full':'协同房间已满,你的编辑将在本地缓存','collaboration-timeout':_0x38bfd9(0x198)},'conflict':{'title':_0x38bfd9(0x1a2),'content':_0x38bfd9(0x192)},'permission':{'title':_0x38bfd9(0x18d),'content':_0x38bfd9(0x191)},'collaboration':{'single-unit':{'warning':_0x38bfd9(0x19d)},'closeRoom':_0x38bfd9(0x195)},'auth':{'needGotoLoginAlert':_0x38bfd9(0x19f)}};function _0x4cbd(_0x9165d7,_0x283844){const _0x315220=_0x3152();return _0x4cbd=function(_0x4cbda4,_0x43e88c){_0x4cbda4=_0x4cbda4-0x18b;let _0x1e1835=_0x315220[_0x4cbda4];return _0x1e1835;},_0x4cbd(_0x9165d7,_0x283844);}module[_0x38bfd9(0x19e)]=o;function _0x3152(){const _0x455e1d=['6438570gBTCYs','正在拉取服务端数据...','权限错误','44616Nqslcd','保存中...','点击重新连接','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','816027DZOmnb','4oRRdVm','由于协同房间被关闭,编辑权限被收回。','本地文件','连接失败,将在一会儿之后重试连接','服务器未响应,你的编辑将在本地缓存','227574zeCBxA','已同步','1986yIrToe','171HrNHXK','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','exports','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','连接失败,请检查你的网络','编辑冲突','协同冲突','422955ZTVFlv','29024SkQHwe','7427JuktXR'];_0x3152=function(){return _0x455e1d;};return _0x3152();}
@@ -1 +1 @@
1
- 'use strict';const _0x1b23c0=_0x289c;(function(_0x2365b6,_0x5d7a22){const _0x185a50=_0x289c,_0x4cc8e6=_0x2365b6();while(!![]){try{const _0x3419d0=parseInt(_0x185a50(0x8b))/0x1*(-parseInt(_0x185a50(0x96))/0x2)+-parseInt(_0x185a50(0x8c))/0x3*(-parseInt(_0x185a50(0x95))/0x4)+-parseInt(_0x185a50(0x8f))/0x5+-parseInt(_0x185a50(0x93))/0x6+-parseInt(_0x185a50(0x9a))/0x7+parseInt(_0x185a50(0x97))/0x8*(-parseInt(_0x185a50(0x94))/0x9)+parseInt(_0x185a50(0x99))/0xa;if(_0x3419d0===_0x5d7a22)break;else _0x4cc8e6['push'](_0x4cc8e6['shift']());}catch(_0x4a5e46){_0x4cc8e6['push'](_0x4cc8e6['shift']());}}}(_0x1fa9,0xd9859));function _0x289c(_0x555284,_0x24ad88){const _0x1fa9f9=_0x1fa9();return _0x289c=function(_0x289c79,_0x2f3108){_0x289c79=_0x289c79-0x8a;let _0x347c86=_0x1fa9f9[_0x289c79];return _0x347c86;},_0x289c(_0x555284,_0x24ad88);}const e={'collab-client':{'tooltip':{'reconnect':_0x1b23c0(0x91)}},'collabStatus':{'fetchMiss':_0x1b23c0(0x8e),'conflict':_0x1b23c0(0x8d),'notCollab':'Local\x20file','synced':_0x1b23c0(0x9e),'syncing':'Syncing...','offline':_0x1b23c0(0x90)},'session':{'connection-failed':_0x1b23c0(0x9b),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x1b23c0(0x98),'collaboration-timeout':_0x1b23c0(0x9c)},'conflict':{'title':_0x1b23c0(0x92),'content':_0x1b23c0(0x9d)},'permission':{'title':'Authentication\x20Error','content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x1b23c0(0x8a)}},o=e;module['exports']=o;function _0x1fa9(){const _0x22a075=['8268040zXzHAH','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Click\x20to\x20Reconnect','Collaboration\x20Conflict','7510536vGWqlh','1854kPEaDA','300pWblAQ','2PJpyWT','57280zQvNBZ','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','58959520qzRwIb','10855929kTihGa','Connection\x20failed,\x20please\x20check\x20your\x20network.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Synced','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','607037IxvmVN','61329VgObgG','Edit\x20conflicts','Syncing\x20server\x20data...'];_0x1fa9=function(){return _0x22a075;};return _0x1fa9();}
1
+ 'use strict';function _0x5ee1(_0x560d4e,_0x3fca4e){const _0x341054=_0x3410();return _0x5ee1=function(_0x5ee122,_0xeb0197){_0x5ee122=_0x5ee122-0xcc;let _0x1a29de=_0x341054[_0x5ee122];return _0x1a29de;},_0x5ee1(_0x560d4e,_0x3fca4e);}const _0x1450ae=_0x5ee1;(function(_0x326fd9,_0x2cf31f){const _0x1a6fba=_0x5ee1,_0x7c0d8a=_0x326fd9();while(!![]){try{const _0x1b57ed=parseInt(_0x1a6fba(0xcc))/0x1+parseInt(_0x1a6fba(0xe1))/0x2+-parseInt(_0x1a6fba(0xce))/0x3*(parseInt(_0x1a6fba(0xe0))/0x4)+-parseInt(_0x1a6fba(0xd8))/0x5+-parseInt(_0x1a6fba(0xcf))/0x6*(parseInt(_0x1a6fba(0xd0))/0x7)+parseInt(_0x1a6fba(0xd5))/0x8*(-parseInt(_0x1a6fba(0xd7))/0x9)+parseInt(_0x1a6fba(0xd4))/0xa;if(_0x1b57ed===_0x2cf31f)break;else _0x7c0d8a['push'](_0x7c0d8a['shift']());}catch(_0x5ced73){_0x7c0d8a['push'](_0x7c0d8a['shift']());}}}(_0x3410,0x5f5c7));const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x1450ae(0xe4),'conflict':_0x1450ae(0xe5),'notCollab':_0x1450ae(0xde),'synced':_0x1450ae(0xdf),'syncing':_0x1450ae(0xd1),'offline':_0x1450ae(0xcd)},'session':{'connection-failed':_0x1450ae(0xd6),'will-retry':_0x1450ae(0xdd),'room-full':_0x1450ae(0xe2),'collaboration-timeout':_0x1450ae(0xdc)},'conflict':{'title':_0x1450ae(0xdb),'content':_0x1450ae(0xd9)},'permission':{'title':'Authentication\x20Error','content':_0x1450ae(0xd3)},'collaboration':{'single-unit':{'warning':_0x1450ae(0xda)},'closeRoom':_0x1450ae(0xe6)},'auth':{'needGotoLoginAlert':_0x1450ae(0xe3)}},o=e;function _0x3410(){const _0x131152=['Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Syncing\x20server\x20data...','Edit\x20conflicts','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','574797bbolzf','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','1763193XqEHuf','428958LVogMv','63KVIEKc','Syncing...','exports','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','9828470otirKp','2671712RnyFCa','Connection\x20failed,\x20please\x20check\x20your\x20network.','9PItXBB','1643800IxoMui','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Collaboration\x20Conflict','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Local\x20file','Synced','4BhVbre','1453694rMKeXd','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.'];_0x3410=function(){return _0x131152;};return _0x3410();}module[_0x1450ae(0xd2)]=o;