@mooncompany/uplink-chat 0.37.0 → 0.37.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/bin/uplink.js +1 -1
  2. package/middleware/error-handler.js +1 -1
  3. package/package.json +1 -1
  4. package/public/dist/bundle.f3621856.js +1 -0
  5. package/public/index.html +1 -1
  6. package/public/js/agents-data.js +1 -1
  7. package/public/js/agents-ui.js +1 -1
  8. package/public/js/agents.js +1 -1
  9. package/public/js/app.js +1 -1
  10. package/public/js/appearance-settings.js +1 -1
  11. package/public/js/artifacts.js +1 -1
  12. package/public/js/audio-pcm-processor.js +1 -1
  13. package/public/js/audio-queue.js +1 -1
  14. package/public/js/bootstrap.js +1 -1
  15. package/public/js/chat.js +1 -1
  16. package/public/js/commands.js +1 -1
  17. package/public/js/connection-api.js +1 -1
  18. package/public/js/connection.js +1 -1
  19. package/public/js/context-tracker.js +1 -1
  20. package/public/js/core.js +1 -1
  21. package/public/js/cron-panel.js +1 -1
  22. package/public/js/dashboard.js +1 -1
  23. package/public/js/developer.js +1 -1
  24. package/public/js/encryption.js +1 -1
  25. package/public/js/errors.js +1 -1
  26. package/public/js/event-bus.js +1 -1
  27. package/public/js/fetch-utils.js +1 -1
  28. package/public/js/file-handler.js +1 -1
  29. package/public/js/files.js +1 -1
  30. package/public/js/gateway-chat.js +1 -1
  31. package/public/js/logger.js +1 -1
  32. package/public/js/markdown.js +1 -1
  33. package/public/js/message-actions.js +1 -1
  34. package/public/js/message-renderer.js +1 -1
  35. package/public/js/missed-messages.js +1 -1
  36. package/public/js/mobile-debug.js +1 -1
  37. package/public/js/notifications.js +1 -1
  38. package/public/js/offline-queue.js +1 -1
  39. package/public/js/onboarding.js +1 -1
  40. package/public/js/panels.js +1 -1
  41. package/public/js/premium.js +1 -1
  42. package/public/js/primary-header.js +1 -1
  43. package/public/js/realtime-voice.js +1 -1
  44. package/public/js/satellite-sync.js +1 -1
  45. package/public/js/satellite-ui.js +1 -1
  46. package/public/js/satellites.js +1 -1
  47. package/public/js/settings.js +1 -1
  48. package/public/js/shortcuts.js +1 -1
  49. package/public/js/split-chat.js +1 -1
  50. package/public/js/split-resize.js +1 -1
  51. package/public/js/splitview.js +1 -1
  52. package/public/js/storage.js +1 -1
  53. package/public/js/streaming-handler.js +1 -1
  54. package/public/js/stt-settings.js +1 -1
  55. package/public/js/themes.js +1 -1
  56. package/public/js/timestamps.js +1 -1
  57. package/public/js/tts-settings.js +1 -1
  58. package/public/js/ui.js +1 -1
  59. package/public/js/update-notifier.js +1 -1
  60. package/public/js/utils/constants.js +1 -1
  61. package/public/js/utils/icons.js +1 -1
  62. package/public/js/utils/sanitize.js +1 -1
  63. package/public/js/utils/sse-parser.js +1 -1
  64. package/public/js/vad.js +1 -1
  65. package/public/js/vendor/dompurify.min.js +1 -1
  66. package/public/js/voice-settings-v2.js +1 -1
  67. package/public/js/voice.js +1 -1
  68. package/public/sw.js +1 -1
  69. package/server/channel.js +1 -1
  70. package/server/chat.js +1 -1
  71. package/server/config-store.js +1 -1
  72. package/server/config.js +1 -1
  73. package/server/context.js +1 -1
  74. package/server/gateway-api-proxy.js +1 -1
  75. package/server/gateway-commands.js +1 -1
  76. package/server/gateway-proxy.js +1 -1
  77. package/server/index.js +1 -1
  78. package/server/logger.js +1 -1
  79. package/server/message-store.js +1 -1
  80. package/server/middleware/auth.js +1 -1
  81. package/server/middleware.js +1 -1
  82. package/server/openclaw-discover.js +1 -1
  83. package/server/premium/index.js +1 -1
  84. package/server/premium/license.js +1 -1
  85. package/server/realtime/bridge.js +1 -1
  86. package/server/realtime/index.js +1 -1
  87. package/server/realtime/tts-stream.js +1 -1
  88. package/server/routes/agents.js +1 -1
  89. package/server/routes/artifacts.js +1 -1
  90. package/server/routes/chat.js +1 -1
  91. package/server/routes/config-settings.js +1 -1
  92. package/server/routes/config.js +1 -1
  93. package/server/routes/cron.js +1 -1
  94. package/server/routes/files.js +1 -1
  95. package/server/routes/index.js +1 -1
  96. package/server/routes/media.js +1 -1
  97. package/server/routes/missed-messages.js +1 -1
  98. package/server/routes/premium.js +1 -1
  99. package/server/routes/push.js +1 -1
  100. package/server/routes/satellite.js +1 -1
  101. package/server/routes/status.js +1 -1
  102. package/server/routes/stt.js +1 -1
  103. package/server/routes/voice.js +1 -1
  104. package/server/routes/webhooks.js +1 -1
  105. package/server/routes.js +1 -1
  106. package/server/runtime-config.js +1 -1
  107. package/server/share.js +1 -1
  108. package/server/stt/faster-whisper.js +1 -1
  109. package/server/stt/groq.js +1 -1
  110. package/server/stt/index.js +1 -1
  111. package/server/stt/openai.js +1 -1
  112. package/server/sync.js +1 -1
  113. package/server/tailscale-https.js +1 -1
  114. package/server/tts.js +1 -1
  115. package/server/update-checker.js +1 -1
  116. package/server/utils/filename.js +1 -1
  117. package/server/utils.js +1 -1
  118. package/server/watchdog.js +1 -1
  119. package/server/websocket/broadcast.js +1 -1
  120. package/server/websocket/connections.js +1 -1
  121. package/server/websocket/index.js +1 -1
  122. package/server/websocket/routing.js +1 -1
  123. package/server/websocket/sync.js +1 -1
  124. package/server.js +1 -1
  125. package/utils/detect-tool-usage.js +1 -1
  126. package/utils/errors.js +1 -1
  127. package/utils/html-escape.js +1 -1
  128. package/utils/id-sanitize.js +1 -1
  129. package/utils/response.js +1 -1
  130. package/utils/with-retry.js +1 -1
  131. package/public/dist/bundle.5772e248.js +0 -1
@@ -1 +1 @@
1
- function _0x5c7d39(_0x5ab56d,_0x10b102){return _0x25be(_0x10b102- -0x196,_0x5ab56d);}(function(_0x4f92bf,_0x39832d){function _0x47eb73(_0x570237,_0x5e198b){return _0x25be(_0x570237- -0x24e,_0x5e198b);}const _0x139d09=_0x4f92bf();function _0x4e4865(_0x5f3c9c,_0x24f968){return _0x25be(_0x5f3c9c-0x35e,_0x24f968);}while(!![]){try{const _0x386273=-parseInt(_0x47eb73(0x9f,0x22))/(-0x122*-0x12+-0xc51*0x3+0x1090)+parseInt(_0x4e4865(0x5ef,0x681))/(0x2*-0x10a6+0x17fc+0x1*0x952)+-parseInt(_0x47eb73(0x8e,0x11b))/(-0xc8*-0x1+-0x76f*0x1+0x6aa)+-parseInt(_0x47eb73(-0x40,-0x77))/(-0xed7+-0x261+0x4*0x44f)+-parseInt(_0x47eb73(0xc,-0x5))/(0x3*-0x3dd+-0x5da+0x1176)+-parseInt(_0x47eb73(0x99,0x71))/(-0x21f*-0x11+0x15bc+-0x39c5)+-parseInt(_0x4e4865(0x649,0x643))/(0x51*-0x45+-0x711*0x3+0x2b0f)*(-parseInt(_0x47eb73(-0x1,0x60))/(-0x11*-0x212+-0xf*0xf1+-0x150b*0x1));if(_0x386273===_0x39832d)break;else _0x139d09['push'](_0x139d09['shift']());}catch(_0x14443e){_0x139d09['push'](_0x139d09['shift']());}}}(_0x248d,-0x1f0c9+0x1e740+0x5a907));const _0x951299=(function(){const _0x5393b6={'RVgjR':function(_0x38ca0e,_0x37a9e9,_0x51302d){return _0x38ca0e(_0x37a9e9,_0x51302d);},'fbukB':_0x254116(0x2d4,0x244),'jJKwu':_0x3873ad(0x1f9,0x16b)+_0x3873ad(0x1f7,0x22a)+'Fill','GOPtp':'conte'+_0x254116(0x347,0x2e3)+'t','jqOZT':function(_0x12a0e3,_0x36a187){return _0x12a0e3<=_0x36a187;},'DaTOF':_0x3873ad(0x1cf,0x208),'WCXHo':_0x3873ad(0x134,0x17f),'MtqNl':function(_0x2f2ac3,_0x1ad7e9){return _0x2f2ac3*_0x1ad7e9;},'lItNQ':function(_0x290d5c,_0x148542){return _0x290d5c/_0x148542;},'BAPpD':function(_0xecc35a,_0x347f86){return _0xecc35a(_0x347f86);},'BLPxW':function(_0x532d1b,_0x49f62c){return _0x532d1b+_0x49f62c;},'Mlrvw':function(_0x282805,_0x4bea02,_0x53c228,_0x562871){return _0x282805(_0x4bea02,_0x53c228,_0x562871);},'yxHiw':_0x254116(0x33f,0x315)+_0x3873ad(0x1cc,0x156),'jEhFS':function(_0x4c6df4,_0x44571b){return _0x4c6df4(_0x44571b);},'gihBD':function(_0x10c6af,_0x166ad9){return _0x10c6af(_0x166ad9);},'tYMOV':function(_0xe36d9f,_0x20606a){return _0xe36d9f===_0x20606a;},'NUvBD':'hSwDI'};function _0x254116(_0x510ac8,_0x2b57a9){return _0x25be(_0x510ac8-0x98,_0x2b57a9);}let _0xa4cc85=!![];function _0x3873ad(_0x541d5f,_0xe22ef2){return _0x25be(_0xe22ef2- -0x9a,_0x541d5f);}return function(_0x25123f,_0x227cd7){function _0x11a534(_0xd9cbd7,_0x223689){return _0x3873ad(_0xd9cbd7,_0x223689- -0x18f);}function _0x45d183(_0x23f00f,_0x1f2786){return _0x3873ad(_0x23f00f,_0x1f2786- -0x12b);}const _0x4e38c2={'IcWUd':function(_0x21e3db,_0x3fa29f,_0x12cea6){return _0x5393b6['RVgjR'](_0x21e3db,_0x3fa29f,_0x12cea6);},'CqEzd':_0x5393b6[_0x11a534(-0x63,-0x37)],'WauGG':'conte'+_0x11a534(0x21,0x67)+'ge','XdcIC':_0x5393b6['jJKwu'],'YsYwL':_0x5393b6['GOPtp'],'dJgLA':function(_0x40635a,_0x1bec96){function _0x40154c(_0x567226,_0x153e7f){return _0x45d183(_0x153e7f,_0x567226-0x57);}return _0x5393b6[_0x40154c(0x10e,0x12d)](_0x40635a,_0x1bec96);},'UsWVF':_0x5393b6[_0x45d183(0x126,0x123)],'qqbmq':_0x5393b6[_0x45d183(0x122,0x125)],'IuBNo':function(_0x505378,_0x4c91d9){function _0x145e78(_0x2b8208,_0x3cb8f8){return _0x45d183(_0x2b8208,_0x3cb8f8-0x255);}return _0x5393b6[_0x145e78(0x40c,0x38d)](_0x505378,_0x4c91d9);},'RAVIr':function(_0x42d2d3,_0x5732d0){function _0x43b934(_0x24db70,_0x359acc){return _0x45d183(_0x359acc,_0x24db70-0x52a);}return _0x5393b6[_0x43b934(0x608,0x5b7)](_0x42d2d3,_0x5732d0);},'gspNE':function(_0x1bc77c,_0x21633c){function _0x11d1ab(_0x4bc54b,_0x5912eb){return _0x45d183(_0x5912eb,_0x4bc54b-0x4e4);}return _0x5393b6[_0x11d1ab(0x5a2,0x57d)](_0x1bc77c,_0x21633c);},'NBUlq':function(_0x54163d,_0x1017f6){function _0xd46267(_0x1a5f59,_0x22fdee){return _0x45d183(_0x22fdee,_0x1a5f59-0x38a);}return _0x5393b6[_0xd46267(0x434,0x3a8)](_0x54163d,_0x1017f6);},'fhGlh':function(_0x37320b,_0xb18af0,_0xa7c5f7,_0x59b35b){function _0x141261(_0x3b6bb9,_0x1982ce){return _0x45d183(_0x1982ce,_0x3b6bb9-0x16e);}return _0x5393b6[_0x141261(0x1c0,0x1e9)](_0x37320b,_0xb18af0,_0xa7c5f7,_0x59b35b);},'fnaKj':_0x5393b6['yxHiw'],'xdcww':function(_0x93dc64,_0x5b012c){return _0x5393b6['jEhFS'](_0x93dc64,_0x5b012c);},'iqLKy':function(_0x393dc8,_0x2ef8cf){function _0x12e21d(_0x22e0dc,_0x4c089){return _0x45d183(_0x22e0dc,_0x4c089-0x1c4);}return _0x5393b6[_0x12e21d(0x1f2,0x248)](_0x393dc8,_0x2ef8cf);}};if(_0x5393b6['tYMOV'](_0x11a534(-0x1b,0x73),_0x5393b6[_0x45d183(0xcd,0xd2)])){const _0x17f07f=_0xa4cc85?function(){const _0x343020={'vWlkm':function(_0x92ab4a,_0x2cebe8){return _0x92ab4a===_0x2cebe8;},'cZiCa':'conne'+_0x23c111(-0x9a,-0x23),'nHMDW':function(_0xdbb8ea,_0x3e4ab9,_0x57c753){function _0x10bdff(_0x5a5d1f,_0x5ba399){return _0x23c111(_0x5ba399,_0x5a5d1f- -0x1b7);}return _0x4e38c2[_0x10bdff(-0x180,-0x141)](_0xdbb8ea,_0x3e4ab9,_0x57c753);}};function _0x4fca7a(_0x2e17bc,_0x338ece){return _0x11a534(_0x2e17bc,_0x338ece-0x431);}function _0x23c111(_0x55d055,_0x4e29fb){return _0x11a534(_0x55d055,_0x4e29fb-0x1d);}if(_0x4fca7a(0x3fe,0x444)!==_0x4e38c2[_0x23c111(0xbf,0x6d)])_0x343020[_0x4fca7a(0x40e,0x43a)](_0xf31f10,_0x343020[_0x4fca7a(0x471,0x46f)])&&_0x343020[_0x23c111(0x11,-0x2c)](_0x331a60,_0x33ed17,0x1c25+0x71*-0x4d+0x27*0x40);else{if(_0x227cd7){const _0x42526c=_0x227cd7[_0x4fca7a(0x4ff,0x49a)](_0x25123f,arguments);return _0x227cd7=null,_0x42526c;}}}:function(){};return _0xa4cc85=![],_0x17f07f;}else{const _0x56e0dc=_0x86129b['getEl'+_0x45d183(0xe0,0x75)+_0x11a534(-0x7f,0xd)](_0x4e38c2[_0x11a534(-0x1c,0x41)]),_0x3ebed7=_0x2ced5e[_0x45d183(0x40,0x8b)+_0x11a534(0x24,0x11)+_0x45d183(0x45,0x71)](_0x4e38c2[_0x11a534(0x9,0x3)]),_0xbb17d=_0x35f3fd[_0x45d183(0x6a,0x8b)+_0x11a534(0x6f,0x11)+_0x11a534(-0x79,0xd)](_0x4e38c2['YsYwL']);if(!_0x56e0dc)return;if(_0x4e38c2[_0x45d183(0xa3,0xd6)](_0x2db49c,-0x1733+-0xac7+0x21fa*0x1)){_0x56e0dc['style'][_0x11a534(-0x45,-0x23)+'ay']=_0x4e38c2[_0x45d183(0xc3,0xd5)];return;}_0x56e0dc[_0x45d183(0xa8,0x94)][_0x45d183(0x0,0x41)+'ay']=_0x4e38c2['qqbmq'];const _0x2bde28=_0x3f98ac[_0x45d183(0x37,0x93)](0xd71+-0x3b5+-0x958,_0x4bb622[_0x45d183(-0x13,0x56)](_0x4e38c2['IuBNo'](_0x4e38c2[_0x11a534(0x124,0xd2)](_0x5a90f2,_0x34118a),0x224+0x138a+-0x154a))),_0x3bfd88=_0x4e38c2[_0x45d183(0x4,0x62)](_0x36bf52,_0x2bde28);_0x3ebed7&&(_0x3ebed7['style'][_0x45d183(0x111,0x11f)]=_0x4e38c2[_0x11a534(0x107,0xcd)](_0x2bde28,'%'),_0x3ebed7[_0x11a534(0x0,0x30)][_0x45d183(0xc7,0x85)+_0x11a534(0x5f,-0xe)]=_0x3bfd88),_0xbb17d&&_0x4e38c2[_0x45d183(0x12a,0x121)](_0x1426bc,_0x4f8271,_0x274fa2,_0xbb17d),_0x56e0dc[_0x45d183(0xeb,0xe4)]='Conte'+_0x11a534(0xd4,0x92)+_0x59858b[_0x11a534(0x54,0xb8)+'aleSt'+_0x45d183(0x51,0x9d)]()+'\x20/\x20'+_0x29756f['toLoc'+_0x11a534(0xda,0xa2)+'ring']()+('\x20toke'+_0x45d183(0xd1,0x74))+_0x2bde28+'%)',_0x56e0dc[_0x11a534(0x6f,-0xb)+'tribu'+'te'](_0x4e38c2[_0x45d183(0xce,0x107)],_0x11a534(-0x73,0x16)+_0x45d183(0x182,0x134)+_0x45d183(0xa2,0x4b)+_0x11a534(0xc2,0x56)+':\x20'+_0x2bde28+_0x45d183(0xd,0x22)+_0x4e38c2['xdcww'](_0x4752ec,_0x4f8e7b)+'\x20of\x20'+_0x4e38c2['iqLKy'](_0x15865a,_0x4dfd96)+(_0x45d183(0xca,0xf9)+_0x11a534(0x90,0x5e)+'ed'));}};}()),_0x510f67=_0x951299(this,function(){function _0x5d520c(_0x373c78,_0x16aa7a){return _0x25be(_0x373c78- -0x1c3,_0x16aa7a);}const _0x2d6de8={};function _0x1db52f(_0x3b615c,_0x28d469){return _0x25be(_0x28d469- -0x286,_0x3b615c);}_0x2d6de8[_0x1db52f(-0xc3,-0x8b)]=_0x1db52f(0x84,0x52)+_0x1db52f(-0x52,0x4)+'+$';const _0x26ccd7=_0x2d6de8;return _0x510f67[_0x5d520c(0xef,0x166)+_0x1db52f(0x37,-0x48)]()[_0x1db52f(-0x3a,0x2f)+'h'](_0x26ccd7[_0x1db52f(-0x99,-0x8b)])['toStr'+_0x5d520c(0x7b,0x100)]()[_0x5d520c(0x10f,0xdd)+'ructo'+'r'](_0x510f67)[_0x1db52f(-0x5,0x2f)+'h'](_0x26ccd7[_0x5d520c(0x38,0x9b)]);});_0x510f67();function _0x248d(){const _0x4d4e96=['fbukB','pftcG','BNFVr','Uplin','bXtpK','ZtVgh','entLi','WwLPc','-succ','TGJvf','nXSgH','jvYiC','logge','KdWzl','ULUzj','lqWIU','qMRMQ','ens','zoPhz','conte','displ','kConn','ICgVQ','IQRFh','-erro','eueKI','DCqgm','conta','2524176GAyPQA','CaOma','ndow\x20','OgZDu','QHufq','eYBtw','qMOfI','onCon','oogtG','Mlrvw','NFcCp','flex','gBbSd','round','ructo','gQIbs','setAt','?sate','NFPLt','regis','earBt','iMAUF','textC','nodeT','tId=','gspNE','NvyHL','sgKQN','Tyryt','EHILE','XdcIC','obser','VPtrF','conne','HTtVt','e-swi','vWlkm','warn','gxJjN','kSate','ById','tBTWx','TNEKW','ns\x20(','ement','pEsbl','yUvev','JMNsT','ing','Conte','main','RgiQs','kdtFh','IcWUd','fsuJC','iykJq','xMbLr','toFix','resiz','gihBD','backg','ectio','eunlo','8UBMkKW','necti','OaZwA','getEl','error','DvAWQ','zRAWy','ffDIk','List','OLbmB','hhOdL','min','style','2066445bvBIZc','&agen','uplin','sjrsX','WsfhT','kCont','sAGmD','dyZIh','ring','tjCGg','\x20/\x20','isCon','led','cZiCa','/api/','PxuLt','WauGG','k:sat','iIfTD','EfHQf','TYJkV','BLPxW','ges','sUROd','OKkWS','wFOjU','uHdLX','CXZCr','dule','child','CDjpO','CqEzd','mCcLy','LtyzG','jqOZT','lwwzd','messa','usage','Width','LdwWZ','XMbEu','BAPpD','VQmnU','baSoC','monLj','ns\x20us','clean','FWhbA',')+)+)','aNQvG','VvMGu','BOguN','fDJqy','inner','xtBad','1271414ofZCIH','apply','befor','cqsdh','setti','CPFcu','NUvBD','Satel','gsAZh','UsWVF','dJgLA','hSwDI','JcHti','msHJw','ility','\x20of\x20','ITnvf','none','lItNQ','tribu','cker:','visib','aria-','ins','title','refre','HkuTs','reset','yLdYU','xtTok','xtTex','tched','UxPTi','toStr','ntext','CKQvJ','searc','WDTCy','IftVh','lipuV','XfXMh','vqmgy','xt:\x20','atNMJ','PKOKI','\x20toke','fetch','\x20Fetc','xtTra','GcNGj','ellit','xtBar','-warn','WUKSc','rrent','var(-','click','YgNnT','aleSt','fnaKj','xt-tr','OORWv','Fomtt','ASdsD','vJOnZ','const','Nodes','yTkyG','MSuxV','XreDu','ZysSt','(((.+','XSMyv','addEv','GxkuR','533256dYUaBW','ZIEeM','now','Cdnna','\x20Init','toLoc','sPNUb','ing)','width','QHoXJ','fhGlh','2573274jbewKv','DaTOF','agtFI','WCXHo','9714320mmMoVb','rUMOM','3993lUGddI','stene','h\x20fai','GtaiD','ializ','xbjKr','mBQvh','added','syste','NBUlq','aKrYs','AhQyV','xt\x20wi','KUSCE','RAVIr','chang','MtqNl','repla','State','debug','CWKjU','aKFvB','wOoBb','sessi','nHMDW','AnDkT','vBDnY','getCu','qTHne','class','acker','%\x20—\x20','extTr','cted','onten','CiqJD','h\x20err','pow','llite','debou','label','yUHHb'];_0x248d=function(){return _0x4d4e96;};return _0x248d();}import{UplinkCore}from'./core.js';const DEFAULT_CONTEXT_WINDOW=0x1*-0x4dbd3+0x3*0x14e55+-0xff85*-0x4,REFRESH_INTERVAL_MS=0x1dc3*-0x9+-0x7258*0x3+-0x34d43*-0x1;let contextUsed=0x25cb+0xf1*-0x16+0x1*-0x1115,contextMax=DEFAULT_CONTEXT_WINDOW,displayedTokens=0xdcc*-0x2+0x8ac+0x976*0x2,animationFrame=null,refreshTimer=null,currentSatelliteId='main';function formatTokens(_0x4bc1d8){const _0x2acdf8={'EMzME':function(_0x3f583c,_0xf5f0ad){return _0x3f583c(_0xf5f0ad);},'sWnLR':_0x391387(0x2ce,0x35f)+_0x6a9f5c(0x1ab,0x11c)+_0x6a9f5c(0x18f,0x178)+_0x6a9f5c(0x1aa,0x1c4)+_0x6a9f5c(0x1d9,0x1e7)+'led','HdcJH':function(_0x164e91,_0x5ce1a4){return _0x164e91!==_0x5ce1a4;},'aNQvG':_0x391387(0x331,0x38d),'Tyryt':function(_0x4fdbe8,_0x5cdbcb){return _0x4fdbe8/_0x5cdbcb;},'vqmgy':function(_0x39099c,_0x2572de){return _0x39099c>=_0x2572de;},'fsuJC':_0x6a9f5c(0x188,0x164),'jvYiC':function(_0x25589c,_0x586ec5){return _0x25589c+_0x586ec5;}};if(_0x4bc1d8>=-0x9b7e6+0x64a6*-0x19+0x11672e*0x2){if(_0x2acdf8['HdcJH'](_0x391387(0x3df,0x377),_0x2acdf8[_0x391387(0x41d,0x3ab)]))return _0x2acdf8[_0x391387(0x3aa,0x34a)](_0x4bc1d8,0x9*0x701d+0xd07*-0x43+0x75d08*0x2)[_0x6a9f5c(0x131,0xb7)+'ed'](0x1bd+-0x650+0x494)[_0x391387(0x3b4,0x41e)+'ce'](/\.0$/,'')+'M';else _0x4f94ee=_0x2acdf8['EMzME'](_0x172d29,_0x20fcaf);}if(_0x2acdf8[_0x391387(0x383,0x3da)](_0x4bc1d8,-0x562*0x7+-0x3*-0x5f6+0x17b4)){if(_0x2acdf8[_0x6a9f5c(0x12e,0x109)]!==_0x2acdf8[_0x391387(0x367,0x364)]){if(_0xea2836[_0x391387(0x32a,0x31e)+'r'])_0x51aef8['warn'](_0x2acdf8['sWnLR'],_0x4aed7a['messa'+'ge']);}else return _0x2acdf8[_0x6a9f5c(0xe7,0x166)]((_0x4bc1d8/(0x4c7+0x645+0x1*-0x724))[_0x391387(0x30a,0x367)+'ed'](_0x2acdf8['vqmgy'](_0x4bc1d8,-0x182c+0x6da+0x3862)?0x2294+0x1aa9+-0x3d*0x101:0x22*-0xe5+0x9e2*-0x1+0x284d*0x1)['repla'+'ce'](/\.0$/,''),'k');}function _0x391387(_0x4cbe82,_0x3d1c4f){return _0x25be(_0x3d1c4f-0x120,_0x4cbe82);}function _0x6a9f5c(_0x34bbbd,_0x1e76db){return _0x25be(_0x34bbbd- -0x116,_0x1e76db);}return String(_0x4bc1d8);}function getUsageColor(_0x154ecf){const _0x4c2dc1={};function _0x1583dc(_0x49ad75,_0x5590df){return _0x25be(_0x5590df- -0xe7,_0x49ad75);}_0x4c2dc1[_0x1583dc(0x10e,0x136)]=_0x1583dc(0x161,0x1e1)+_0x3b895e(-0xba,-0x12b)+'r)',_0x4c2dc1[_0x3b895e(0x2f,-0x8)]=function(_0xbcc5e2,_0xd02af5){return _0xbcc5e2>=_0xd02af5;},_0x4c2dc1[_0x1583dc(0x1ce,0x150)]=_0x3b895e(0x4,-0x72)+_0x1583dc(0x1e2,0x1de)+_0x3b895e(0x1f,-0x14);const _0x4b1424=_0x4c2dc1;if(_0x154ecf>=-0x2c3*-0x1+0x3f6+-0x65f)return _0x4b1424[_0x1583dc(0xf5,0x136)];if(_0x4b1424[_0x3b895e(0x2f,0x4e)](_0x154ecf,0x544+-0x1e40+-0x1*-0x1947))return _0x4b1424[_0x3b895e(-0x8d,-0x21)];function _0x3b895e(_0x474a07,_0x1f7fa4){return _0x25be(_0x474a07- -0x2c4,_0x1f7fa4);}return'var(-'+_0x3b895e(-0xca,-0xea)+'ess)';}function animateTokenCount(_0x158c2e,_0x3c5e6b,_0x2399ee){const _0x31dd9e={'fsrfq':_0x2cb6c2(0x16c,0x17d)+_0x2cb6c2(0xdb,0x137),'sAGmD':function(_0x5b7e76,_0x308446,_0x233041){return _0x5b7e76(_0x308446,_0x233041);},'dzWgl':function(_0x2107b0,_0x2ceaf3){return _0x2107b0===_0x2ceaf3;},'DCqgm':_0x403672(0x115,0xf9)+'le','AhQyV':function(_0x3fc0b2){return _0x3fc0b2();},'UxPTi':function(_0x18278e,_0x1bc176){return _0x18278e!==_0x1bc176;},'HTtVt':_0x2cb6c2(0x1b9,0x230),'baSoC':_0x403672(0x58,0x30),'vemPR':function(_0x21a600,_0x3f8693){return _0x21a600-_0x3f8693;},'XSMyv':function(_0x338543,_0x194867){return _0x338543/_0x194867;},'fDJqy':function(_0xe6094d,_0x2b6b90){return _0xe6094d-_0x2b6b90;},'VvMGu':function(_0x27ebd9,_0x4aa1ce){return _0x27ebd9+_0x4aa1ce;},'lwwzd':function(_0x19ff44,_0x4f13b2){return _0x19ff44*_0x4f13b2;},'zoPhz':function(_0x4c6a58,_0x564110){return _0x4c6a58*_0x564110;},'qMOfI':function(_0x202c8a,_0x253b2b){return _0x202c8a(_0x253b2b);},'zRAWy':function(_0x4b8ce6,_0x21665c){return _0x4b8ce6<_0x21665c;},'NvyHL':function(_0x5d839f,_0x910e86){return _0x5d839f===_0x910e86;},'WsfhT':'VmDQL','sgKQN':function(_0xe6ed45,_0x1a20e1){return _0xe6ed45-_0x1a20e1;},'apOLX':function(_0x605c46,_0x12716){return _0x605c46===_0x12716;}};if(animationFrame)_0x31dd9e['qMOfI'](cancelAnimationFrame,animationFrame);const _0xac4dca=displayedTokens,_0x2e5253=_0x31dd9e[_0x2cb6c2(0x1b8,0x177)](_0x158c2e,_0xac4dca);if(_0x31dd9e['apOLX'](_0x2e5253,-0x1b7c+-0x2156+0x3cd2))return;function _0x2cb6c2(_0x185dcc,_0x4003d6){return _0x25be(_0x4003d6- -0xb2,_0x185dcc);}function _0x403672(_0xaac3d0,_0x531b75){return _0x25be(_0x531b75- -0x1ad,_0xaac3d0);}const _0x5d998f=-0x2262+-0x10e*-0x1c+0x732,_0x2a71f1=performance[_0x2cb6c2(0x22c,0x22c)]();function _0x2f6d15(_0x59a1a0){function _0x3c77d4(_0x4ce033,_0x28a782){return _0x2cb6c2(_0x4ce033,_0x28a782-0xcb);}const _0x180634={'sUfKg':function(_0x3b039e,_0x4af73d){return _0x31dd9e['dzWgl'](_0x3b039e,_0x4af73d);},'kKIWp':_0x31dd9e[_0x94278a(0x18c,0x196)],'FWhbA':function(_0x14e168){function _0x13f86d(_0x59f964,_0x5f5060){return _0x94278a(_0x59f964- -0x2a8,_0x5f5060);}return _0x31dd9e[_0x13f86d(-0x30,-0x42)](_0x14e168);}};function _0x94278a(_0x37578d,_0x509047){return _0x2cb6c2(_0x509047,_0x37578d-0x32);}if(_0x31dd9e[_0x94278a(0x231,0x292)](_0x31dd9e[_0x94278a(0x1b0,0x161)],_0x31dd9e[_0x94278a(0x205,0x173)])){const _0x255555=_0x31dd9e['vemPR'](_0x59a1a0,_0x2a71f1),_0x103741=Math[_0x94278a(0x1d8,0x1a2)](_0x31dd9e[_0x3c77d4(0x264,0x2f2)](_0x255555,_0x5d998f),0x25*0xa3+0x95*0x20+-0x2a2e),_0x3823c2=_0x31dd9e[_0x94278a(0x20e,0x27e)](0x1*-0x7d1+0x49e+0x334,Math['pow'](_0x31dd9e['fDJqy'](0xeb5+0x1b25+-0x29d9,_0x103741),-0x24e8+0xe83*0x1+-0x3bc*-0x6));displayedTokens=Math[_0x3c77d4(0x20d,0x234)](_0x31dd9e[_0x3c77d4(0x237,0x2a5)](_0xac4dca,_0x31dd9e[_0x94278a(0x1fd,0x20a)](_0x2e5253,_0x3823c2)));const _0x172081=window[_0x3c77d4(0x2a6,0x2a8)+_0x94278a(0x200,0x182)]<=0x21ff+0x5*-0x25e+-0x1329,_0x135b14=Math[_0x94278a(0x1d8,0x1c7)](-0x270d+0x315*-0x2+-0x1*-0x2d9b,Math[_0x3c77d4(0x253,0x234)](_0x31dd9e[_0x3c77d4(0x1ee,0x21d)](displayedTokens/_0x3c5e6b,0x41*0x7c+0x25e8+-0x4500)));_0x2399ee[_0x3c77d4(0x1f3,0x23d)+'onten'+'t']=_0x172081?_0x135b14+'%':formatTokens(displayedTokens)+'/'+_0x31dd9e[_0x94278a(0x194,0x1ac)](formatTokens,_0x3c5e6b),_0x31dd9e[_0x3c77d4(0x2e0,0x26c)](_0x103741,0x21c0+0x69c+0x285b*-0x1)?animationFrame=_0x31dd9e['qMOfI'](requestAnimationFrame,_0x2f6d15):_0x31dd9e[_0x94278a(0x1a8,0x1b2)](_0x31dd9e['WsfhT'],_0x31dd9e[_0x3c77d4(0x22f,0x277)])?(displayedTokens=_0x158c2e,animationFrame=null):_0x180634['sUfKg'](_0x388f1d[_0x94278a(0x226,0x29a)+_0x94278a(0x21f,0x2b1)+_0x3c77d4(0x2f4,0x318)],_0x180634['kKIWp'])&&_0x56bcb4[_0x3c77d4(0x1bb,0x20e)+'kConn'+_0x94278a(0x1cb,0x1b5)+'n']?.[_0x94278a(0x1e5,0x1a0)+'necte'+'d']?.()&&_0x180634[_0x3c77d4(0x321,0x2a2)](_0x23a36c);}else{const _0x5dc07a={'CKQvJ':function(_0x2de0dd,_0x15d6e7){return _0x2de0dd===_0x15d6e7;},'qTHne':_0x31dd9e['fsrfq'],'sUROd':function(_0x44493e,_0x12a4c3,_0x5b4b75){function _0x3b2f8e(_0x21f672,_0x1901f6){return _0x94278a(_0x21f672-0x350,_0x1901f6);}return _0x31dd9e[_0x3b2f8e(0x530,0x4a9)](_0x44493e,_0x12a4c3,_0x5b4b75);}};_0x4ea993[_0x3c77d4(0x266,0x20e)+_0x94278a(0x187,0x143)+_0x3c77d4(0x266,0x264)+'n']['onCon'+_0x94278a(0x1ce,0x1b4)+'on'](_0x5c83c4=>{function _0x2ecf81(_0x31e7c1,_0x34e6f7){return _0x3c77d4(_0x31e7c1,_0x34e6f7- -0xac);}function _0x97ebab(_0x3af788,_0x23bff7){return _0x3c77d4(_0x23bff7,_0x3af788- -0x7d);}_0x5dc07a[_0x97ebab(0x250,0x234)](_0x5c83c4,_0x5dc07a[_0x97ebab(0x180,0x14b)])&&_0x5dc07a[_0x2ecf81(0x1d6,0x1de)](_0xef4680,_0x486c91,-0x1005*-0x2+0xed9+-0x1*0x2afb);});}}animationFrame=requestAnimationFrame(_0x2f6d15);}function _0x36a33b(_0x3acc95,_0x182452){return _0x25be(_0x182452- -0x2db,_0x3acc95);}function updateDisplay(){const _0x13f4b1={'aKrYs':_0x4ea833(0x63b,0x5cf)+'xtBad'+'ge','YgNnT':'conte'+_0x4d69ae(0x10,0x9d)+'t','iykJq':function(_0x8440ca,_0x33906f){return _0x8440ca<=_0x33906f;},'XMbEu':function(_0x1db009,_0x4d9284){return _0x1db009!==_0x4d9284;},'VPtrF':_0x4ea833(0x52a,0x5ac),'LtyzG':_0x4d69ae(0xa0,0x8b),'ITnvf':_0x4d69ae(0xd7,0x90),'FllSy':_0x4d69ae(-0x69,0x7),'agtFI':function(_0x345142,_0x3dd70a){return _0x345142*_0x3dd70a;},'PxuLt':function(_0x31e20e,_0x1aab70){return _0x31e20e(_0x1aab70);},'eirfa':function(_0x14720a,_0x43278b,_0x371925,_0x500fdd){return _0x14720a(_0x43278b,_0x371925,_0x500fdd);},'lipuV':_0x4ea833(0x701,0x671)+_0x4ea833(0x564,0x5ba),'pftcG':function(_0x273ba6,_0x13f895){return _0x273ba6(_0x13f895);}},_0x11cc69=document['getEl'+'ement'+_0x4d69ae(-0x15,0x24)](_0x13f4b1[_0x4d69ae(0x113,0xe5)]),_0x4465eb=document[_0x4ea833(0x5a8,0x61a)+_0x4ea833(0x5d6,0x604)+_0x4d69ae(-0x2c,0x24)](_0x4ea833(0x5d2,0x5cf)+_0x4d69ae(0xbc,0xb2)+'Fill'),_0x571e26=document['getEl'+_0x4d69ae(0x1f,0x28)+_0x4d69ae(-0x5,0x24)](_0x13f4b1[_0x4ea833(0x632,0x694)]);if(!_0x11cc69)return;if(_0x13f4b1[_0x4d69ae(0x6d,0x33)](contextUsed,0x1*-0x289+0x1d35+0xd56*-0x2)){if(_0x13f4b1[_0x4ea833(0x64b,0x64c)](_0x13f4b1[_0x4ea833(0x5ca,0x5f8)],_0x13f4b1[_0x4d69ae(0x62,0x69)])){_0x11cc69[_0x4ea833(0x5b1,0x623)][_0x4ea833(0x54f,0x5d0)+'ay']=_0x13f4b1[_0x4d69ae(0x73,0x8f)];return;}else{if(_0x2f05b1[_0x4d69ae(0x19,-0x14)+'r'])_0x5b76b0[_0x4d69ae(-0x23,0x21)](_0x4ea833(0x584,0x609)+'xtTra'+_0x4ea833(0x6b6,0x66f)+_0x4d69ae(0x68,0xae)+_0x4d69ae(-0x7a,-0x26)+'or',_0x1cb5d1['error']);return;}}function _0x4ea833(_0x29dcda,_0x41b0e5){return _0x25be(_0x41b0e5-0x3ca,_0x29dcda);}_0x11cc69[_0x4d69ae(0x32,0x47)]['displ'+'ay']=_0x13f4b1['FllSy'];const _0x3f5ac5=Math[_0x4d69ae(0x34,0x46)](-0x191b+-0x2245+0x6*0x9f6,Math[_0x4d69ae(0x36,0x9)](_0x13f4b1[_0x4d69ae(0xf6,0xd7)](contextUsed/contextMax,-0xb*0xef+0x1c5b+-0x11b2))),_0x42fb6d=_0x13f4b1['PxuLt'](getUsageColor,_0x3f5ac5);_0x4465eb&&(_0x4465eb['style']['width']=_0x3f5ac5+'%',_0x4465eb[_0x4d69ae(-0x25,0x47)][_0x4d69ae(0x57,0x38)+_0x4ea833(0x662,0x5e5)]=_0x42fb6d);function _0x4d69ae(_0x2c1358,_0x2a054d){return _0x25be(_0x2a054d- -0x212,_0x2c1358);}_0x571e26&&_0x13f4b1['eirfa'](animateTokenCount,contextUsed,contextMax,_0x571e26),_0x11cc69['title']='Conte'+'xt:\x20'+contextUsed['toLoc'+_0x4ea833(0x68d,0x695)+_0x4ea833(0x65c,0x62c)]()+_0x4d69ae(0x24,0x52)+contextMax[_0x4ea833(0x6f7,0x6ab)+_0x4d69ae(0x6a,0xb9)+'ring']()+(_0x4d69ae(0x98,0xac)+'ns\x20(')+_0x3f5ac5+'%)',_0x11cc69[_0x4ea833(0x64c,0x5e8)+_0x4d69ae(0x60,0x92)+'te'](_0x13f4b1[_0x4ea833(0x66a,0x682)],_0x4d69ae(0x1c,0x2d)+'xt\x20wi'+_0x4d69ae(0x7c,-0x2)+_0x4ea833(0x5ed,0x649)+':\x20'+_0x3f5ac5+_0x4ea833(0x5b0,0x5b1)+_0x13f4b1[_0x4d69ae(0x3e,-0x1f)](formatTokens,contextUsed)+_0x4ea833(0x61b,0x66a)+_0x13f4b1[_0x4ea833(0x628,0x633)](formatTokens,contextMax)+(_0x4ea833(0x631,0x688)+_0x4ea833(0x65a,0x651)+'ed'));}async function fetchContext(){function _0xc4d7a1(_0x98af21,_0x575bfa){return _0x25be(_0x575bfa- -0x1f,_0x98af21);}function _0x5991fe(_0x513b26,_0x2988b4){return _0x25be(_0x513b26- -0x38a,_0x2988b4);}const _0x52ca8d={'OORWv':function(_0xe36e95,_0x278220){return _0xe36e95>_0x278220;},'XreDu':function(_0x200133,_0x96bb54){return _0x200133*_0x96bb54;},'Fomtt':function(_0xd744fd,_0x497376){return _0xd744fd/_0x497376;},'OLbmB':function(_0x46d6fe){return _0x46d6fe();},'HUgFN':function(_0x3bebc7,_0x4c6c02){return _0x3bebc7-_0x4c6c02;},'PKOKI':function(_0x115cb9,_0x5c6f0a){return _0x115cb9-_0x5c6f0a;},'EHILE':function(_0x5a6edf,_0x2f5683){return _0x5a6edf*_0x2f5683;},'POivc':function(_0x439ce1,_0x31b317){return _0x439ce1<=_0x31b317;},'gxJjN':function(_0x368cd8,_0xa898b){return _0x368cd8(_0xa898b);},'fmPzl':function(_0x3f6cb8,_0x5bab75){return _0x3f6cb8(_0x5bab75);},'ZysSt':function(_0x4c10f0,_0x217657){return _0x4c10f0<_0x217657;},'OzkPb':function(_0x786735,_0x3c41c0){return _0x786735(_0x3c41c0);},'MSuxV':function(_0x1a5838,_0xf41668){return _0x1a5838!==_0xf41668;},'QHoXJ':_0xc4d7a1(0x146,0x1d2),'cqsdh':_0x5991fe(-0x14a,-0x155),'OKkWS':function(_0x36ee2b,_0xa887ad){return _0x36ee2b===_0xa887ad;},'XfXMh':_0x5991fe(-0x18b,-0x1c0),'EGogF':_0xc4d7a1(0x251,0x220)+'xtTra'+_0xc4d7a1(0x245,0x286)+_0xc4d7a1(0x246,0x2a1)+_0xc4d7a1(0x1a6,0x1cd)+'or','DvAWQ':_0x5991fe(-0xce,-0x160),'gBbSd':_0x5991fe(-0x17b,-0x1ac),'WwLPc':_0x5991fe(-0x14b,-0x108)+'xtTra'+_0xc4d7a1(0x2d6,0x286)+_0x5991fe(-0xca,-0xc3)+_0xc4d7a1(0x2fc,0x2d0)+_0xc4d7a1(0x1c6,0x247)};try{if(_0x52ca8d[_0xc4d7a1(0x334,0x2b6)](_0x52ca8d[_0x5991fe(-0xa5,-0xa9)],_0x5991fe(-0x199,-0x1f2)))return{'contextUsed':_0x583ff3,'contextMax':_0x17bb3d,'percentage':_0x52ca8d[_0x5991fe(-0xbc,-0x125)](_0x4726e3,-0x3*-0x468+-0x1*-0x1ce5+-0x2a1d)?_0x3878d7[_0x5991fe(-0x16f,-0xe5)](_0x52ca8d[_0xc4d7a1(0x343,0x2b7)](_0x52ca8d['Fomtt'](_0x1a4cc2,_0x590b81),-0x1d*-0x7a+0x10f*0x8+-0x15e6)):0x107b+-0x11*-0x119+0x1a*-0x15a};else{const _0x2790c4=window['Uplin'+_0x5991fe(-0x155,-0x180)+'llite'+'s']?.[_0xc4d7a1(0x1ac,0x1c4)+_0xc4d7a1(0x21f,0x2a8)+_0x5991fe(-0xf2,-0xd0)+'lite']()||_0x52ca8d[_0xc4d7a1(0x268,0x275)];currentSatelliteId=_0x2790c4;const _0x12c5c6=window['Uplin'+_0x5991fe(-0x155,-0xcb)+'llite'+'s']?.[_0xc4d7a1(0x1bf,0x1c4)+_0xc4d7a1(0x2bc,0x2a8)+'Agent'+'Id']?.()||_0xc4d7a1(0x1d3,0x221),_0x5cc3eb=await _0x52ca8d[_0x5991fe(-0x156,-0x194)](fetch,_0xc4d7a1(0x272,0x249)+_0x5991fe(-0x1ab,-0x170)+'on/co'+_0x5991fe(-0xd7,-0x166)+_0x5991fe(-0x16b,-0x14d)+_0xc4d7a1(0x188,0x1cf)+'Id='+_0x52ca8d[_0x5991fe(-0x156,-0x129)](encodeURIComponent,_0x2790c4)+(_0x5991fe(-0x12f,-0x1ae)+_0xc4d7a1(0x23e,0x207))+_0x52ca8d[_0xc4d7a1(0x1da,0x215)](encodeURIComponent,_0x12c5c6));if(!_0x5cc3eb['ok'])return;const _0x330a26=await _0x5cc3eb['json']();if(!_0x330a26['ok']&&_0x330a26[_0xc4d7a1(0x1cf,0x232)]){if(_0x52ca8d[_0x5991fe(-0x118,-0x106)](_0xc4d7a1(0x246,0x1e0),_0x52ca8d[_0xc4d7a1(0x300,0x29a)])){if(window[_0x5991fe(-0x18c,-0x1f9)+'r'])logger['warn'](_0x52ca8d['EGogF'],_0x330a26[_0xc4d7a1(0x20e,0x232)]);return;}else _0x52ca8d[_0xc4d7a1(0x246,0x237)](_0x3c1986);}contextUsed=_0x330a26['total'+'Token'+'s']||-0x2c5+0xbf*0x26+0x1995*-0x1,contextMax=_0x330a26['conte'+_0xc4d7a1(0x2a2,0x28f)+_0xc4d7a1(0x1ba,0x1e4)]||DEFAULT_CONTEXT_WINDOW,_0x52ca8d[_0x5991fe(-0x134,-0xbb)](updateDisplay);}}catch(_0x156c12){if(_0x52ca8d[_0xc4d7a1(0x232,0x233)]===_0x52ca8d[_0x5991fe(-0x170,-0x1d7)]){const _0x5522d4=_0x5b1113-_0x5d1c0a,_0x4c83d1=_0x1c1f2d['min'](XHahGl[_0xc4d7a1(0x309,0x2b0)](_0x5522d4,_0x5aedf8),0x597*0x5+0x1a5a*0x1+-0x364c),_0x3a2ba4=XHahGl['HUgFN'](-0x4+0xfba+-0xfb5,_0x25b44a[_0x5991fe(-0x19d,-0x160)](XHahGl[_0x5991fe(-0xcd,-0x137)](0x1b27+-0x3*-0x209+-0x2141,_0x4c83d1),0x1d5b+-0x3*0x8d5+-0x2d9));_0x4dcfa1=_0x380a37[_0x5991fe(-0x16f,-0x178)](_0x2ddf3f+XHahGl[_0xc4d7a1(0x258,0x20c)](_0xd5344,_0x3a2ba4));const _0x272fb0=XHahGl['POivc'](_0x204f99['inner'+_0xc4d7a1(0x21f,0x261)],-0x1e05+0xe*0x201+0x4f7),_0x232d2c=_0x17132e[_0xc4d7a1(0x1fd,0x239)](0x1*0x18ac+-0x3*-0x4fb+-0x1*0x2739,_0x56ec37[_0xc4d7a1(0x1d4,0x1fc)](XHahGl[_0x5991fe(-0x15f,-0xe7)](XHahGl['Fomtt'](_0x25f941,_0x627900),0x16*-0xc+0x1d*-0xba+0x167e)));_0x27605d['textC'+_0x5991fe(-0x1a0,-0x224)+'t']=_0x272fb0?_0x232d2c+'%':XHahGl[_0xc4d7a1(0x1a5,0x215)](_0x49b18e,_0x54a58f)+'/'+XHahGl['fmPzl'](_0x564d2b,_0xe632b5),XHahGl[_0x5991fe(-0xb3,-0x30)](_0x4c83d1,-0xc7c*0x3+-0xe5*-0x3+0x22c6)?_0x39bf5d=XHahGl['OzkPb'](_0x3010bb,_0xe4672e):(_0x29850b=_0x343f47,_0x1ed9bf=null);}else{if(window[_0xc4d7a1(0x200,0x1df)+'r'])logger[_0xc4d7a1(0x24c,0x214)](_0x52ca8d[_0xc4d7a1(0x25e,0x1da)],_0x156c12[_0xc4d7a1(0x289,0x25f)+'ge']);}}}function refresh(){const _0x3795cd={'kdtFh':function(_0x2d88ca,_0x1c425e,_0xcccc0d){return _0x2d88ca(_0x1c425e,_0xcccc0d);}};setTimeout(fetchContext,-0x224f*-0x1+-0x880+-0x11ff),_0x3795cd[_0x59c94a(0x3dc,0x372)](setTimeout,fetchContext,-0x133e*-0x2+-0x967*0x4+-0x8*-0x3cc);function _0x59c94a(_0x1e18bd,_0x52fe70){return _0x25be(_0x52fe70-0x130,_0x1e18bd);}_0x3795cd['kdtFh'](setTimeout,fetchContext,0xb2d+-0x3*-0x12ed+0xa2c);}function reset(){const _0x3d8e16={'tjCGg':function(_0x208e35){return _0x208e35();},'vJOnZ':function(_0x397b0e,_0x3fe42a,_0x4c2d5b){return _0x397b0e(_0x3fe42a,_0x4c2d5b);}};contextUsed=0x2*0x12c4+0xb*-0x362+-0x52,displayedTokens=0x41*-0x19+0x2401*0x1+-0x1da8*0x1;function _0x2fd8ee(_0x5a4e82,_0x22cc24){return _0x25be(_0x22cc24-0x210,_0x5a4e82);}function _0x322ace(_0x73115d,_0x250dfb){return _0x25be(_0x250dfb- -0x169,_0x73115d);}_0x3d8e16[_0x2fd8ee(0x431,0x473)](updateDisplay),_0x3d8e16[_0x322ace(0x18a,0x168)](setTimeout,fetchContext,-0x1b4b+-0x1fb8+0x42d3);}function getState(){function _0x21f875(_0x5632a5,_0x2f6c2d){return _0x25be(_0x5632a5- -0x14b,_0x2f6c2d);}const _0xe9ac33={};function _0x46171e(_0x4f388a,_0x3989d3){return _0x25be(_0x3989d3- -0x116,_0x4f388a);}_0xe9ac33[_0x46171e(0xd4,0x15e)]=function(_0x5d5bc5,_0x249235){return _0x5d5bc5>_0x249235;},_0xe9ac33['mtivD']=function(_0x37bd63,_0x362522){return _0x37bd63*_0x362522;},_0xe9ac33[_0x46171e(0xa0,0xf3)]=function(_0x42fd32,_0x5bee2e){return _0x42fd32/_0x5bee2e;};const _0x4bed6d=_0xe9ac33;return{'contextUsed':contextUsed,'contextMax':contextMax,'percentage':_0x4bed6d[_0x46171e(0x1c1,0x15e)](contextMax,-0x80*-0x18+0x29*-0x55+0x19d)?Math[_0x46171e(0x171,0x105)](_0x4bed6d['mtivD'](_0x4bed6d[_0x21f875(0xbe,0x95)](contextUsed,contextMax),0x15c9+0x55b*0x6+-0x3587)):0x6bb*-0x2+-0x11*-0x6c+0xa1*0xa};}function init(){function _0x9d586a(_0x200e43,_0x1d4422){return _0x25be(_0x200e43- -0x32b,_0x1d4422);}const _0x18478f={'BOguN':function(_0x526c40,_0x3adefb,_0x12a78d,_0x57c492){return _0x526c40(_0x3adefb,_0x12a78d,_0x57c492);},'rUMOM':'none','lqWIU':function(_0x201696,_0x552e45){return _0x201696===_0x552e45;},'euUst':function(_0x31ffc5,_0x5b47b1){return _0x31ffc5===_0x5b47b1;},'RgiQs':_0xb8db1a(0x430,0x49e)+'le','LdwWZ':_0x9d586a(-0x4e,0x9),'CiqJD':function(_0x390e7b){return _0x390e7b();},'yTkyG':function(_0x4f5b20,_0x3e40a8){return _0x4f5b20+_0x3e40a8;},'Cdnna':function(_0x450ee8,_0x1a0e46){return _0x450ee8/_0x1a0e46;},'TYJkV':function(_0x5a655d,_0x48c81e){return _0x5a655d>=_0x48c81e;},'gsAZh':function(_0x244518,_0x1b2439,_0x53e3fa){return _0x244518(_0x1b2439,_0x53e3fa);},'ETsOP':function(_0x314886,_0x3ab007){return _0x314886!==_0x3ab007;},'wOoBb':_0x9d586a(-0x74,0x16),'CPFcu':function(_0x8ed2ad,_0x556cc7,_0x1246df){return _0x8ed2ad(_0x556cc7,_0x1246df);},'ffDIk':function(_0x442398,_0x31a631){return _0x442398>=_0x31a631;},'mCcLy':function(_0xe174dc,_0x1ec948){return _0xe174dc(_0x1ec948);},'ULUzj':function(_0x2f6cd1,_0x81f4b4){return _0x2f6cd1===_0x81f4b4;},'oogtG':_0x9d586a(-0x134,-0x172),'nXSgH':'FGHOv','xMbLr':_0xb8db1a(0x450,0x3d9),'GtaiD':_0xb8db1a(0x46d,0x4d0)+')+)+)'+'+$','KUSCE':_0xb8db1a(0x4a2,0x4a5),'GcNGj':function(_0x67545a){return _0x67545a();},'QHufq':function(_0x31448a,_0xf41b68){return _0x31448a/_0xf41b68;},'xbjKr':_0x9d586a(-0x108,-0x9b),'HnqWf':_0x9d586a(-0x120,-0x155),'kukhI':_0xb8db1a(0x53c,0x4c0)+_0x9d586a(-0x121,-0xae)+'r)','TNEKW':_0xb8db1a(0x49b,0x4c0)+'-warn'+'ing)','eIChZ':_0xb8db1a(0x524,0x4c0)+_0x9d586a(-0x131,-0x17d)+'ess)','iIfTD':function(_0x335fd3){return _0x335fd3();},'CXZCr':_0xb8db1a(0x4ba,0x49e)+_0xb8db1a(0x4e2,0x497)+_0xb8db1a(0x56a,0x4f4)+'e','dyZIh':_0x9d586a(-0xad,-0x13c)+_0xb8db1a(0x46e,0x468),'VQmnU':function(_0x416806,_0xb08960){return _0x416806!==_0xb08960;},'GxkuR':'NFcCp','CDjpO':_0x9d586a(-0xcf,-0x100)+_0x9d586a(-0xc0,-0x11a)+_0xb8db1a(0x4d9,0x4bb)+_0x9d586a(-0xfa,-0xc7)+_0x9d586a(-0x7b,-0xdd),'pEsbl':_0x9d586a(-0x14f,-0x1a1),'WDTCy':function(_0x9f7607,_0x12fb35){return _0x9f7607!==_0x12fb35;},'HkuTs':_0x9d586a(-0x123,-0x160),'eYBtw':'Conte'+_0xb8db1a(0x4a5,0x4b9)+_0x9d586a(-0x86,-0xaa)+_0xb8db1a(0x476,0x4d8)+_0x9d586a(-0x3a,-0xc5)+'ed'};_0x18478f[_0x9d586a(-0xbf,-0xbf)](fetchContext),refreshTimer=_0x18478f[_0x9d586a(-0x92,-0xeb)](setInterval,fetchContext,REFRESH_INTERVAL_MS);function _0xb8db1a(_0x492481,_0x145bc4){return _0x25be(_0x145bc4-0x1f8,_0x492481);}window['addEv'+_0x9d586a(-0x133,-0x154)+_0x9d586a(-0x3d,-0x21)+'r'](_0x9d586a(-0xe3,-0x140)+'e',UplinkCore[_0xb8db1a(0x36f,0x3e7)+'nce'](updateDisplay,-0x213f+-0x1aa4+0x3c79)),document[_0x9d586a(-0x51,-0x74)+_0xb8db1a(0x3f3,0x3f0)+_0xb8db1a(0x551,0x4e6)+'r'](_0x18478f[_0xb8db1a(0x3ea,0x46d)],()=>{function _0x11baa2(_0x4bdc0c,_0x3399db){return _0x9d586a(_0x4bdc0c- -0x22,_0x3399db);}function _0x28075e(_0x2018f6,_0x3ca82b){return _0x9d586a(_0x2018f6-0x61a,_0x3ca82b);}const _0x98abe4={'BNFVr':function(_0x4288cc,_0x4056aa,_0x5ef792,_0x401bdc){function _0x3126b8(_0x405412,_0x5d00d2){return _0x25be(_0x405412- -0x1f9,_0x5d00d2);}return _0x18478f[_0x3126b8(0x94,0x83)](_0x4288cc,_0x4056aa,_0x5ef792,_0x401bdc);},'WUKSc':_0x18478f[_0x11baa2(-0x61,-0x97)]};if(_0x18478f[_0x11baa2(-0x14c,-0x170)](_0x11baa2(-0x7d,-0xf),'ASdsD'))_0x18478f['euUst'](document[_0x11baa2(-0xa7,-0x9a)+_0x28075e(0x58e,0x5c2)+_0x28075e(0x5ee,0x578)],_0x18478f[_0x28075e(0x530,0x4cc)])&&window[_0x28075e(0x4e4,0x4ee)+_0x28075e(0x4f6,0x544)+_0x28075e(0x53a,0x5c9)+'n']?.[_0x11baa2(-0xe8,-0x11a)+'necte'+'d']?.()&&(_0x28075e(0x5cc,0x608)===_0x18478f[_0x28075e(0x570,0x4e7)]?_0x18478f[_0x28075e(0x4da,0x50c)](fetchContext):ztBrCA[_0x28075e(0x4e3,0x527)](_0x62f63d,_0x3dd42a,_0x480642,_0x1c1007));else{_0x369840[_0x11baa2(-0xf4,-0x16c)]['displ'+'ay']=ztBrCA[_0x11baa2(-0x87,-0xe1)];return;}});window[_0xb8db1a(0x42e,0x3ed)+_0xb8db1a(0x3eb,0x3ff)+_0xb8db1a(0x427,0x443)+'n']?.[_0xb8db1a(0x423,0x40d)+_0x9d586a(-0xdd,-0xe3)+'on']&&window[_0xb8db1a(0x3b9,0x3ed)+_0x9d586a(-0x124,-0x97)+'ectio'+'n'][_0xb8db1a(0x44e,0x40d)+'necti'+'on'](_0x555e19=>{function _0x1efdac(_0x3677ac,_0x1b8264){return _0x9d586a(_0x1b8264-0x6d9,_0x3677ac);}function _0xc5749f(_0xaa0b38,_0x5e9623){return _0x9d586a(_0x5e9623-0x17d,_0xaa0b38);}if(_0x18478f['ETsOP'](_0x18478f[_0x1efdac(0x4fa,0x58c)],_0x18478f['wOoBb']))return tAWMtR[_0x1efdac(0x618,0x682)](tAWMtR['Cdnna'](_0x4a3927,-0x1bac+0x1181*0x1+0xe13*0x1)['toFix'+'ed'](tAWMtR[_0x1efdac(0x674,0x61c)](_0x5aaf66,0x5a8*0x7+-0xb8*-0xe+-0x8*0x153)?0x20b*0x1+-0x2*0xfc7+0x1d83:-0x1*-0xa46+-0x21b0+0x176b)[_0xc5749f(0x194,0x150)+'ce'](/\.0$/,''),'k');else _0x18478f['euUst'](_0x555e19,'conne'+'cted')&&(_0x18478f['ETsOP'](_0xc5749f(0x0,0x8f),_0xc5749f(0xff,0xd8))?_0x18478f[_0x1efdac(0x6b5,0x644)](setTimeout,fetchContext,0x1*-0x1e8b+0xdf2+0x1481):(tAWMtR['gsAZh'](_0x55a659,_0x480a48,-0x3*-0xa84+0x8*-0x469+0xb8c),_0x4330b2(_0x221608,0x3585+0x1*-0x3457+0x1e12),tAWMtR['gsAZh'](_0x13d481,_0x236d26,0x1*-0x2bd9+0x1*0x79e3+0x1*0x16)));});const _0x45d5aa=new MutationObserver(_0x438f7f=>{function _0x307ddb(_0x491016,_0x4bfe4f){return _0xb8db1a(_0x4bfe4f,_0x491016- -0x393);}const _0xefd88e={'wFOjU':function(_0x2671a1,_0x3a3e64){function _0x3631f9(_0x56ae7e,_0x1ce4b5){return _0x25be(_0x56ae7e-0x109,_0x1ce4b5);}return _0x18478f[_0x3631f9(0x3dd,0x3a1)](_0x2671a1,_0x3a3e64);},'mkdAZ':function(_0x5b0208,_0x498d80){return _0x5b0208/_0x498d80;},'qMRMQ':function(_0x2ed020,_0x124ac7){function _0x19105e(_0x51e336,_0xa463da){return _0x25be(_0x51e336-0xa,_0xa463da);}return _0x18478f[_0x19105e(0x2de,0x2b5)](_0x2ed020,_0x124ac7);},'OgZDu':function(_0x5dd1d1,_0x242b4b){function _0x25e724(_0x4ba94e,_0x375bfc){return _0x25be(_0x4ba94e- -0x1fd,_0x375bfc);}return _0x18478f[_0x25e724(0xe2,0xac)](_0x5dd1d1,_0x242b4b);},'OaZwA':function(_0x45d674,_0x509fc7){return _0x18478f['ffDIk'](_0x45d674,_0x509fc7);},'bXtpK':function(_0x47772a,_0x490dbb){return _0x18478f['mCcLy'](_0x47772a,_0x490dbb);}};function _0x4ebcc2(_0x2e470e,_0x5abe21){return _0xb8db1a(_0x2e470e,_0x5abe21- -0x2a3);}if(_0x18478f[_0x4ebcc2(0xd8,0x155)](_0x18478f[_0x307ddb(0x7b,0x106)],_0x18478f[_0x4ebcc2(0x168,0x151)]))_0x14cb9e[_0x307ddb(0x40,0xc9)](_0x4ebcc2(0x1f2,0x194)+_0x4ebcc2(0x1f7,0x216)+_0x4ebcc2(0x1a8,0x1fa)+'\x20Init'+_0x4ebcc2(0x295,0x246)+'ed');else for(const _0x5efcd0 of _0x438f7f){for(const _0x59e7cc of _0x5efcd0[_0x4ebcc2(0x27d,0x249)+_0x307ddb(0x138,0xf8)]){if(_0x59e7cc[_0x4ebcc2(0x13f,0x17a)+'ype']!==0x2*-0x1cd+0x12f1+-0xf56)continue;const _0x1dd8cd=_0x59e7cc['textC'+_0x4ebcc2(0x152,0x13f)+'t']||'';if(_0x59e7cc[_0x307ddb(0x4a,0x6f)+'List']?.[_0x4ebcc2(0x198,0x162)+_0x4ebcc2(0x212,0x1fd)](_0x4ebcc2(0x1f2,0x24a)+'m')&&/compact/i['test'](_0x1dd8cd)){if(_0x18478f[_0x307ddb(0x65,0x2e)](_0x18478f[_0x4ebcc2(0x229,0x19b)],'mQxal')){if(_0x2395e4>=-0x16eb05*0x1+-0xf5ac7+0x35880c)return wPIjcE[_0x4ebcc2(0x1a4,0x1c8)](wPIjcE['mkdAZ'](_0x135055,0x18b40+-0x3794a*0x2+0x14a994)[_0x307ddb(0xac,0x68)+'ed'](-0x25*-0xc2+-0xb*0x1cc+-0x845)[_0x4ebcc2(0x1f7,0x253)+'ce'](/\.0$/,''),'M');if(_0x414c51>=-0x2*0xbbc+0x15b0+0x5b0)return wPIjcE[_0x307ddb(0x67,0x22)](wPIjcE[_0x4ebcc2(0x173,0x166)](_0x2ebd68,0x161*0x10+-0x1943*0x1+0x71b)[_0x307ddb(0xac,0x65)+'ed'](wPIjcE[_0x4ebcc2(0x148,0x1a4)](_0x36186b,-0x2f16+0x22e9+0xd*0x3f1)?-0x1bee+0x1449+-0x1*-0x7a5:0xd6e+-0x1980+0xc13)[_0x307ddb(0x163,0x1ef)+'ce'](/\.0$/,''),'k');return wPIjcE[_0x4ebcc2(0x170,0x14b)](_0x44e065,_0x464e2d);}else setTimeout(fetchContext,0x9d*0x1d+0x1295*-0x1+-0x59*-0x24);}}}}),_0x2c9ef0=document[_0x9d586a(-0xdb,-0xaf)+_0xb8db1a(0x3b5,0x432)+'ById'](_0x18478f[_0x9d586a(-0xca,-0xa0)]);if(_0x2c9ef0){if(_0x18478f[_0x9d586a(-0xa7,-0x98)](_0x9d586a(-0x113,-0xf9),_0x18478f[_0xb8db1a(0x452,0x4d3)]))_0x3b6c9a&&(_0x18478f[_0x9d586a(-0xb1,-0x3b)](_0x5c2ad2,_0x5ef7f0),_0x1ee35c=null);else{const _0x293c5c={};_0x293c5c[_0xb8db1a(0x402,0x46f)+_0xb8db1a(0x3fc,0x44d)]=!![],_0x45d5aa[_0xb8db1a(0x3d7,0x425)+'ve'](_0x2c9ef0,_0x293c5c);}}window[_0x9d586a(-0x51,0x1e)+_0xb8db1a(0x3c3,0x3f0)+_0xb8db1a(0x555,0x4e6)+'r'](_0x18478f[_0xb8db1a(0x3ea,0x470)],()=>{function _0x8e620f(_0x12ee38,_0x194752){return _0x9d586a(_0x194752-0x4c0,_0x12ee38);}function _0x5086e8(_0x4a4f5f,_0x45a5cb){return _0x9d586a(_0x4a4f5f-0x3fc,_0x45a5cb);}if(_0x18478f['ETsOP']('IbSYF',_0x18478f[_0x8e620f(0x41a,0x48f)]))contextUsed=0x12c4+0x1a54+-0x2d18,displayedTokens=0x1b76+-0x4d*-0x31+0x1*-0x2a33,updateDisplay(),_0x18478f[_0x5086e8(0x393,0x30a)](fetchContext);else return _0x5c4339['toStr'+_0x5086e8(0x30f,0x307)]()[_0x8e620f(0x406,0x44a)+'h'](tAWMtR[_0x8e620f(0x42a,0x485)])[_0x8e620f(0x3de,0x447)+_0x8e620f(0x464,0x3d3)]()[_0x5086e8(0x3a3,0x372)+_0x5086e8(0x2ed,0x28b)+'r'](_0x1a64c7)[_0x8e620f(0x445,0x44a)+'h'](tAWMtR[_0x5086e8(0x3c1,0x43f)]);});const _0x4b98f3=document['getEl'+_0x9d586a(-0xf1,-0x73)+_0x9d586a(-0xf5,-0x179)](_0xb8db1a(0x4b0,0x48d)+'ngsCl'+_0xb8db1a(0x48f,0x41a)+'n');_0x4b98f3&&(_0x18478f[_0xb8db1a(0x4f3,0x47c)](_0x18478f[_0xb8db1a(0x405,0x433)],'CWKjU')?(_0x413ed5=0xcc7+0x16aa+-0xd3*0x2b,_0x475e5f=0x15*-0xd+-0x52f+-0xa0*-0xa,_0x313255(),tAWMtR[_0xb8db1a(0x435,0x491)](_0x5e8294,_0x5182c2,0x671+0x193e+-0x17df)):_0x4b98f3[_0xb8db1a(0x473,0x4d2)+_0xb8db1a(0x381,0x3f0)+_0xb8db1a(0x55e,0x4e6)+'r'](_0x9d586a(-0x62,-0x24),()=>{function _0x345608(_0x301a57,_0x1a5518){return _0x9d586a(_0x301a57-0xa4,_0x1a5518);}function _0x24483c(_0x43fcee,_0x478e9f){return _0x9d586a(_0x478e9f-0x396,_0x43fcee);}if(_0x18478f[_0x24483c(0x24f,0x26b)](_0x18478f[_0x24483c(0x361,0x35d)],_0x18478f['HnqWf']))return tAWMtR['yTkyG'](tAWMtR[_0x24483c(0x2d4,0x27d)](_0x19a03b,-0x327c*-0x19+0x74d*-0x24d+-0x1*-0x1b204d)[_0x24483c(0x310,0x2b2)+'ed'](0x190d+-0x12c9+0x1*-0x643)[_0x24483c(0x392,0x369)+'ce'](/\.0$/,''),'M');else setTimeout(reset,-0x1*0x795+0x3d7+0x5b2);}));if(window['logge'+'r']){if(_0x18478f[_0xb8db1a(0x4cb,0x4ae)]('VedfT',_0x18478f[_0xb8db1a(0x4f5,0x4a3)]))logger[_0xb8db1a(0x40b,0x3d3)](_0x18478f[_0x9d586a(-0x118,-0x110)]);else{if(tAWMtR[_0xb8db1a(0x4ce,0x44c)](_0x18f094,0x141+0xee8+-0xfcf))return tAWMtR['kukhI'];if(_0x39861f>=0x13f1+-0x6ff*0x1+-0xca7)return tAWMtR[_0x9d586a(-0xf3,-0x176)];return tAWMtR['eIChZ'];}}}function cleanup(){function _0x417634(_0x284dcd,_0x9f33dd){return _0x25be(_0x9f33dd- -0x2b,_0x284dcd);}function _0x16f589(_0x1905f2,_0x3f97b0){return _0x25be(_0x1905f2- -0x19e,_0x3f97b0);}const _0x5be82c={'sjrsX':'Qxcze','NFPLt':function(_0x16cdbc,_0x12f401){return _0x16cdbc(_0x12f401);}};if(refreshTimer){if(_0x5be82c[_0x16f589(0xbf,0x118)]===_0x5be82c[_0x417634(0x2c1,0x232)])_0x5be82c[_0x16f589(0x82,0x2b)](clearInterval,refreshTimer),refreshTimer=null;else{const _0x38c024={};_0x38c024[_0x16f589(0xd9,0xdf)+'List']=!![],_0x4f7eeb[_0x16f589(0x8f,0x5e)+'ve'](_0x59f0d0,_0x38c024);}}}function _0x25be(_0x25becc,_0x2bde9e){_0x25becc=_0x25becc-(0x42d*-0x2+0x1865+-0xe30);const _0x525c5c=_0x248d();let _0x2d3fff=_0x525c5c[_0x25becc];return _0x2d3fff;}const _0x53e15d={};_0x53e15d['init']=init,_0x53e15d[_0x36a33b(0x30,-0x31)+'sh']=refresh,_0x53e15d[_0x36a33b(0x2f,-0x1c)+_0x36a33b(-0xcd,-0x9c)+'xt']=fetchContext,_0x53e15d[_0x36a33b(0x53,-0x2f)]=reset,_0x53e15d['getSt'+'ate']=getState,_0x53e15d[_0x36a33b(-0xac,-0x53)+'up']=cleanup;export const UplinkContextTracker=_0x53e15d;window[_0x36a33b(-0x80,-0xe6)+_0x5c7d39(0x99,0xc9)+_0x36a33b(-0x124,-0xf3)+_0x5c7d39(0xcf,0x50)]=UplinkContextTracker,UplinkCore[_0x5c7d39(0xd4,0x8b)+'terMo'+_0x5c7d39(0x152,0xe0)](_0x36a33b(-0xfa,-0xd6)+_0x36a33b(0x16,-0xe)+_0x36a33b(-0xf7,-0xf5),init),window[_0x5c7d39(0x189,0x144)+_0x5c7d39(0xac,0x62)+_0x5c7d39(0x13c,0x158)+'r'](_0x36a33b(-0x87,-0x48)+_0x36a33b(-0x8,-0x8f)+'ad',cleanup);
1
+ (function(_0x384a6f,_0x265292){const _0xe4c91f=_0x384a6f();function _0x4e379a(_0x3c0887,_0xecac6c){return _0x504c(_0xecac6c- -0x275,_0x3c0887);}function _0x1db42b(_0x433b20,_0x6e9913){return _0x504c(_0x433b20- -0x18b,_0x6e9913);}while(!![]){try{const _0x53eed9=-parseInt(_0x1db42b(-0x9c,-0x2e))/(0xc35+-0x2*0x3a6+-0x4e8)+parseInt(_0x4e379a(-0x149,-0x197))/(-0x12a1+0xc26+0xb*0x97)*(parseInt(_0x4e379a(-0x134,-0x123))/(0x1*-0x82f+-0xb70+0x1*0x13a2))+parseInt(_0x1db42b(-0xd8,-0xe3))/(-0x106*0x9+0x127d+0x943*-0x1)*(parseInt(_0x4e379a(-0xb5,-0xf1))/(0x2553+-0x13ac+-0x4a*0x3d))+parseInt(_0x4e379a(-0xbd,-0x124))/(-0x522+-0x91*0x10+0xa*0x16c)+parseInt(_0x1db42b(-0x37,0x14))/(0x5ba+-0x231e+0x1d6b)*(parseInt(_0x1db42b(-0x3b,-0x42))/(-0x1b39+0x149c+-0x51*-0x15))+-parseInt(_0x1db42b(-0x80,-0x3d))/(0x28b*0x7+0x1e38+-0x2*0x17fe)*(-parseInt(_0x4e379a(-0x11f,-0x14a))/(-0x9*0x321+0x38b*-0x2+0x2349))+-parseInt(_0x1db42b(0x8,0x26))/(0x15c7+-0x9f5*0x3+0x823);if(_0x53eed9===_0x265292)break;else _0xe4c91f['push'](_0xe4c91f['shift']());}catch(_0x46b415){_0xe4c91f['push'](_0xe4c91f['shift']());}}}(_0x4143,-0x10774*0x16+0x756*0x4d+0x9be*0x397));const _0x3f49ed=(function(){function _0x7ea950(_0x262084,_0x560961){return _0x504c(_0x560961-0x22a,_0x262084);}const _0x2dcb43={'hXedH':function(_0x2525af,_0x696648,_0x400e65,_0x2e1ca2){return _0x2525af(_0x696648,_0x400e65,_0x2e1ca2);},'qjEfb':function(_0x245b14,_0x1cbb7d,_0x5adcf7){return _0x245b14(_0x1cbb7d,_0x5adcf7);},'vGnrz':function(_0x21ab05,_0x4688e8){return _0x21ab05===_0x4688e8;},'nLDxe':_0x5a8637(0x1dd,0x17b),'SJFkv':_0x5a8637(0x149,0x118)};let _0x2e49da=!![];function _0x5a8637(_0x52b872,_0x433f6b){return _0x504c(_0x52b872-0x79,_0x433f6b);}return function(_0x47c052,_0x5a421d){const _0x3be440=_0x2e49da?function(){function _0x21c160(_0x389abf,_0x423bda){return _0x504c(_0x389abf- -0x328,_0x423bda);}const _0xc002dc={'YGwvz':function(_0x53372a,_0x24f969,_0x47aefe,_0x143996){function _0xeaca75(_0x1f52e4,_0x4da10a){return _0x504c(_0x1f52e4- -0x33c,_0x4da10a);}return _0x2dcb43[_0xeaca75(-0x260,-0x1f3)](_0x53372a,_0x24f969,_0x47aefe,_0x143996);},'HhsIh':function(_0x54451b,_0x46bdb6){return _0x54451b===_0x46bdb6;},'qdrVf':function(_0x566c76,_0x5510ff,_0x5d77a1){function _0x4305d0(_0x3107a1,_0x425e27){return _0x504c(_0x3107a1-0x33e,_0x425e27);}return _0x2dcb43[_0x4305d0(0x428,0x482)](_0x566c76,_0x5510ff,_0x5d77a1);}};function _0x4a66aa(_0x19a43a,_0x5dfdd4){return _0x504c(_0x19a43a- -0x329,_0x5dfdd4);}if(_0x2dcb43[_0x21c160(-0x1d0,-0x227)](_0x2dcb43[_0x4a66aa(-0x24c,-0x256)],_0x2dcb43[_0x21c160(-0x24b,-0x2bd)])){if(_0x5a421d){if(_0x21c160(-0x258,-0x299)!==_0x2dcb43['SJFkv'])_0xc002dc['YGwvz'](_0x5c0c92,_0x4e877f,_0x3cab8e,_0x47b127);else{const _0x2b949e=_0x5a421d['apply'](_0x47c052,arguments);return _0x5a421d=null,_0x2b949e;}}}else{const _0x45fc6c={'WkviZ':function(_0xb1c329,_0x283518){function _0x42567e(_0x424e12,_0xaff2af){return _0x4a66aa(_0xaff2af-0x348,_0x424e12);}return _0xc002dc[_0x42567e(0x12b,0xe3)](_0xb1c329,_0x283518);},'umRud':_0x21c160(-0x1ed,-0x17e)+'cted','ufvWf':function(_0x39a648,_0x2cfc63,_0x14ef5f){function _0x2404e8(_0x202ea7,_0x1920ef){return _0x21c160(_0x1920ef-0x62d,_0x202ea7);}return _0xc002dc[_0x2404e8(0x46b,0x446)](_0x39a648,_0x2cfc63,_0x14ef5f);}};_0x33fe9b[_0x4a66aa(-0x1f2,-0x259)+'kConn'+_0x21c160(-0x26f,-0x2a1)+'n'][_0x4a66aa(-0x228,-0x231)+'necti'+'on'](_0x3cc4be=>{function _0x221876(_0x5c441e,_0x28c5f2){return _0x4a66aa(_0x28c5f2-0x3d2,_0x5c441e);}function _0x5eaf96(_0x2ee997,_0x43b3a0){return _0x4a66aa(_0x2ee997- -0x25,_0x43b3a0);}_0x45fc6c[_0x221876(0x29c,0x236)](_0x3cc4be,_0x45fc6c[_0x5eaf96(-0x246,-0x1ec)])&&_0x45fc6c['ufvWf'](_0x2b7f28,_0x1089d9,-0x1b10+0x443+-0x1*-0x1ab5);});}}:function(){};return _0x2e49da=![],_0x3be440;};}()),_0x3871fd=_0x3f49ed(this,function(){const _0x2f7b3a={};function _0x2c5a2b(_0x18e755,_0x4a29a2){return _0x504c(_0x18e755-0x2b8,_0x4a29a2);}_0x2f7b3a[_0x2c5a2b(0x3fa,0x3a5)]=_0x2c5a2b(0x37e,0x36f)+_0x433138(0x461,0x452)+'+$';function _0x433138(_0x574bd0,_0x6a2e12){return _0x504c(_0x6a2e12-0x36f,_0x574bd0);}const _0x56fe2d=_0x2f7b3a;return _0x3871fd['toStr'+_0x433138(0x415,0x461)]()[_0x2c5a2b(0x377,0x36e)+'h'](_0x56fe2d['oFXBX'])[_0x433138(0x460,0x41d)+_0x2c5a2b(0x3aa,0x3a3)]()['const'+_0x433138(0x515,0x4bb)+'r'](_0x3871fd)[_0x433138(0x409,0x42e)+'h'](_0x56fe2d[_0x2c5a2b(0x3fa,0x40e)]);});function _0x5aa8f5(_0x65e628,_0x1f1d29){return _0x504c(_0x65e628- -0x1fd,_0x1f1d29);}_0x3871fd();import{UplinkCore}from'./core.js';const DEFAULT_CONTEXT_WINDOW=0x1614a+-0x12e*0x192+0x1*0x38632,REFRESH_INTERVAL_MS=-0xa5+-0x740b+0x15f10;let contextUsed=0x12ba+0x4ff*0x3+0x15*-0x19b,contextMax=DEFAULT_CONTEXT_WINDOW,displayedTokens=-0xaf3+0x529*-0x4+0x1f97,animationFrame=null,refreshTimer=null,currentSatelliteId='main';function formatTokens(_0x227e8b){function _0x45cb4a(_0x4e7197,_0x218550){return _0x504c(_0x4e7197-0x327,_0x218550);}const _0x58bc63={'LkHkw':function(_0x1ca2c1,_0x569703,_0x331d8d){return _0x1ca2c1(_0x569703,_0x331d8d);},'HnAIz':function(_0xc92a97,_0x28313c){return _0xc92a97+_0x28313c;},'oKkzb':function(_0x492451,_0x4daf71){return _0x492451/_0x4daf71;},'JONmw':function(_0x22c3e9,_0x24e473){return _0x22c3e9>=_0x24e473;},'NuVVU':function(_0x51e33d,_0x3b3994){return _0x51e33d!==_0x3b3994;},'IVrbo':'SSEXs','qkkDv':function(_0x43f94b,_0x17cfae){return _0x43f94b>=_0x17cfae;},'hcXzB':function(_0x4c6d1c,_0x86b373){return _0x4c6d1c(_0x86b373);}};function _0x3abcf7(_0x4bbda4,_0xd145a8){return _0x504c(_0x4bbda4-0x22a,_0xd145a8);}if(_0x227e8b>=-0x1d49f5+-0x7202*-0x2b+0x1*0x1965df)return _0x58bc63[_0x3abcf7(0x350,0x2f9)](_0x58bc63['oKkzb'](_0x227e8b,-0x1bf00a*-0x1+-0x84a15+-0x1*0x463b5)[_0x3abcf7(0x2e0,0x353)+'ed'](0x2*0x1+-0xb96+0xb95)[_0x3abcf7(0x348,0x3a1)+'ce'](/\.0$/,''),'M');if(_0x58bc63[_0x3abcf7(0x33f,0x350)](_0x227e8b,0x23d6+0x4a2*0x5+-0x3718)){if(_0x58bc63['NuVVU'](_0x58bc63[_0x3abcf7(0x3b0,0x349)],_0x58bc63['IVrbo']))_0x3b70df(_0x4f3108,0x279+0x1f06+0x107*-0x19),_0x171596(_0x56e42f,-0x86*0x43+-0xe4f+0x1*0x50a1),_0x58bc63[_0x45cb4a(0x3f3,0x3ef)](_0x5dd03e,_0x5b12c6,0x3975+-0xe57*-0x7+-0x4fb6);else return _0x58bc63[_0x45cb4a(0x41f,0x494)](_0x227e8b,-0x2b7+-0x7*-0x382+-0x1*0x11ef)['toFix'+'ed'](_0x58bc63[_0x45cb4a(0x3e2,0x3b5)](_0x227e8b,0x37*0xb6+0x9*0x3a1+0x20b3*-0x1)?0xca*-0x4+-0x16f4+0xc*0x22d:0x8*0x218+0x27*-0x1+-0x1d8*0x9)['repla'+'ce'](/\.0$/,'')+'k';}return _0x58bc63[_0x3abcf7(0x331,0x31d)](String,_0x227e8b);}function getUsageColor(_0xce4f01){function _0x24a91b(_0x28de98,_0x57fb58){return _0x504c(_0x28de98- -0x36b,_0x57fb58);}function _0x5e308c(_0x2640d9,_0x580cf3){return _0x504c(_0x580cf3-0x1ca,_0x2640d9);}const _0x357a94={};_0x357a94[_0x24a91b(-0x241,-0x240)]=function(_0x3d8e34,_0x29d7ba){return _0x3d8e34>=_0x29d7ba;},_0x357a94[_0x5e308c(0x2dd,0x303)]=_0x5e308c(0x26d,0x27e)+_0x5e308c(0x364,0x334)+'r)',_0x357a94[_0x24a91b(-0x293,-0x23e)]=function(_0x2cd27f,_0x1e6352){return _0x2cd27f>=_0x1e6352;},_0x357a94[_0x5e308c(0x26b,0x2b6)]=_0x24a91b(-0x2b7,-0x257)+'-succ'+_0x5e308c(0x28e,0x2dd);const _0x22ac53=_0x357a94;if(_0x22ac53[_0x5e308c(0x2ad,0x2f4)](_0xce4f01,-0x1cf9*0x1+-0x53*-0x21+-0x4*-0x4a8))return _0x22ac53['soYNJ'];if(_0x22ac53[_0x5e308c(0x298,0x2a2)](_0xce4f01,0x1*0x1c57+0x71*-0x4b+0x1*0x50f))return _0x5e308c(0x296,0x27e)+_0x24a91b(-0x28b,-0x258)+'ing)';return _0x22ac53['hXlYO'];}function animateTokenCount(_0x3d606e,_0x5b23e2,_0x16a4c9){const _0x1d53a7={'pdjIK':function(_0x4c28e5,_0x51757e){return _0x4c28e5(_0x51757e);},'BdzOi':function(_0x3b5e4e,_0x353a53,_0x395af7){return _0x3b5e4e(_0x353a53,_0x395af7);},'DkMUU':_0x1c890f(0x395,0x3c7),'YeUCf':function(_0x1667ec,_0x3dffd8){return _0x1667ec-_0x3dffd8;},'Jcxfk':function(_0x2af2c2,_0x4d4ace){return _0x2af2c2/_0x4d4ace;},'aQOVn':function(_0x2cf83f,_0x21725a){return _0x2cf83f-_0x21725a;},'XQAbw':function(_0x4db5e0,_0x275706){return _0x4db5e0+_0x275706;},'EXIQg':function(_0x53ffdf,_0x420829){return _0x53ffdf<=_0x420829;},'wvYBc':function(_0x74d98e,_0x8696e7){return _0x74d98e(_0x8696e7);},'WWCYf':function(_0x215c53,_0x416e91){return _0x215c53<_0x416e91;},'RnWWG':'usxYC','jSPvr':function(_0x97dae1,_0x1e017e){return _0x97dae1(_0x1e017e);},'iILaq':function(_0x24324a,_0xd44a0f){return _0x24324a!==_0xd44a0f;},'FuAsR':function(_0x29d99d,_0x187739){return _0x29d99d===_0x187739;}};if(animationFrame)cancelAnimationFrame(animationFrame);const _0x4d0a52=displayedTokens,_0x704244=_0x3d606e-_0x4d0a52;function _0x1c890f(_0x366da4,_0x4670cd){return _0x504c(_0x366da4-0x289,_0x4670cd);}if(_0x1d53a7[_0x1c890f(0x3d0,0x409)](_0x704244,-0x7*-0x1da+-0x2329+-0x1*-0x1633))return;function _0x582788(_0x1e3046,_0x40a9e7){return _0x504c(_0x40a9e7-0x251,_0x1e3046);}const _0x472de6=0x1*-0x1387+-0x1*-0x2024+-0xa45,_0x53205b=performance['now']();function _0x268fc0(_0x342196){const _0x471b49={'oDzSh':function(_0x150e3a,_0x56f978,_0x24416f){function _0x2c4dd8(_0x3dfdf3,_0x284b9c){return _0x504c(_0x284b9c-0x323,_0x3dfdf3);}return _0x1d53a7[_0x2c4dd8(0x431,0x3fd)](_0x150e3a,_0x56f978,_0x24416f);}};function _0x4ed979(_0x4af164,_0x5d5307){return _0x1c890f(_0x5d5307- -0x12a,_0x4af164);}function _0xe367c3(_0x2f9145,_0x84d06d){return _0x1c890f(_0x84d06d- -0x584,_0x2f9145);}if(_0x1d53a7[_0x4ed979(0x270,0x2bd)]===_0x1d53a7[_0xe367c3(-0x19c,-0x19d)]){const _0x2061ec=_0x1d53a7[_0xe367c3(-0x19c,-0x17a)](_0x342196,_0x53205b),_0x3e31ce=Math[_0x4ed979(0x268,0x252)](_0x1d53a7[_0x4ed979(0x1cb,0x21c)](_0x2061ec,_0x472de6),-0x11*0x7+0x2b*-0xad+0x1d87),_0x542156=_0x1d53a7['aQOVn'](0x1933*-0x1+0x75+0x7*0x389,Math[_0xe367c3(-0x271,-0x20e)](0x1e95*-0x1+0x19f1+0x4a5-_0x3e31ce,-0x11*0x23d+-0x4ef+0x2aff*0x1));displayedTokens=Math['round'](_0x1d53a7[_0x4ed979(0x2f3,0x283)](_0x4d0a52,_0x704244*_0x542156));const _0x21bc21=_0x1d53a7['EXIQg'](window[_0xe367c3(-0x1cd,-0x22a)+_0x4ed979(0x2ed,0x2c6)],-0x4a2+0x117f*0x2+-0x67*0x44),_0xf3471f=Math[_0xe367c3(-0x271,-0x208)](-0x489+-0x2a7*0xa+0x1f73,Math[_0xe367c3(-0x20a,-0x1a8)](_0x1d53a7[_0xe367c3(-0x299,-0x23e)](displayedTokens,_0x5b23e2)*(-0x1220+0x9f3+0x33*0x2b)));_0x16a4c9[_0x4ed979(0x2d1,0x28d)+_0xe367c3(-0x150,-0x16b)+'t']=_0x21bc21?_0xf3471f+'%':_0x1d53a7[_0x4ed979(0x260,0x20f)](formatTokens,displayedTokens)+'/'+_0x1d53a7['pdjIK'](formatTokens,_0x5b23e2),_0x1d53a7[_0xe367c3(-0x231,-0x1d2)](_0x3e31ce,-0x6aa*0x2+-0x7*-0x58f+-0x1994)?_0x1d53a7[_0xe367c3(-0x250,-0x1e9)]===_0x4ed979(0x308,0x2a4)?animationFrame=_0x1d53a7[_0x4ed979(0x279,0x222)](requestAnimationFrame,_0x268fc0):_0x19be96&&(_0x1d53a7[_0xe367c3(-0x1c4,-0x1c3)](_0x71f190,_0x5349f3),_0x31fa74=null):_0x1d53a7['iILaq']('KFvno',_0x4ed979(0x1c9,0x21b))?_0x471b49[_0x4ed979(0x27d,0x299)](_0x59a0f9,_0x414f70,-0x1280+0x1565*-0x1+-0x3*-0xdf3):(displayedTokens=_0x3d606e,animationFrame=null);}else _0x1964ad=_0x1a9079(_0x4cac20);}animationFrame=_0x1d53a7[_0x582788(0x326,0x314)](requestAnimationFrame,_0x268fc0);}function _0x34111d(_0x58632,_0x5024e4){return _0x504c(_0x5024e4- -0x26c,_0x58632);}function updateDisplay(){const _0x4f0ebf={'CBaRD':_0x2b002e(0x124,0x186)+_0x497cec(0x1d1,0x1f5)+_0x497cec(0x1bb,0x197)+'\x20Fetc'+'h\x20fai'+_0x2b002e(0x1a1,0x206),'Gzais':_0x497cec(0x229,0x226)+_0x497cec(0x1e1,0x202)+_0x497cec(0x19e,0x204),'RVHLw':_0x2b002e(0x1ba,0x207)+_0x2b002e(0x1d8,0x1f5)+'t','dfnha':_0x2b002e(0x15d,0x16b),'WCnBQ':_0x497cec(0x267,0x1f2),'HDepP':function(_0x458e5b,_0x5798e6){return _0x458e5b/_0x5798e6;},'QYzXz':function(_0x3c1769,_0x189fa8){return _0x3c1769(_0x189fa8);},'DRiCQ':_0x497cec(0x180,0x195),'gtinO':function(_0xaf44f9,_0x5aa1c6){return _0xaf44f9+_0x5aa1c6;},'NKUng':function(_0x2d1205,_0x25891a,_0x369165,_0x423ebf){return _0x2d1205(_0x25891a,_0x369165,_0x423ebf);},'XPjAm':_0x2b002e(0x1b5,0x197)+_0x2b002e(0x1fa,0x1cc),'VeYtb':function(_0x301524,_0x120eb4){return _0x301524(_0x120eb4);}};function _0x497cec(_0x76330a,_0x49aebd){return _0x504c(_0x49aebd-0x9c,_0x76330a);}const _0x13304e=document[_0x497cec(0x1d8,0x1d8)+_0x2b002e(0x246,0x209)+_0x497cec(0xdd,0x14d)](_0x2b002e(0x20a,0x207)+_0x2b002e(0x17b,0x150)+'ge'),_0x179cce=document[_0x497cec(0x20e,0x1d8)+_0x497cec(0x285,0x228)+'ById'](_0x4f0ebf[_0x2b002e(0x153,0x180)]),_0x27716c=document['getEl'+'ement'+'ById'](_0x4f0ebf[_0x497cec(0x1f7,0x19e)]);if(!_0x13304e)return;if(contextUsed<=-0x602+-0x193f+0x1f41){_0x13304e[_0x497cec(0x1e6,0x191)][_0x497cec(0x1c2,0x1fc)+'ay']=_0x4f0ebf['dfnha'];return;}_0x13304e['style'][_0x497cec(0x237,0x1fc)+'ay']=_0x4f0ebf[_0x2b002e(0x192,0x17d)];const _0x3b981d=Math['min'](-0x1d8+0x1a7*0xb+-0x35*0x4d,Math[_0x2b002e(0x184,0x1d0)](_0x4f0ebf[_0x2b002e(0x149,0x12f)](contextUsed,contextMax)*(0x2377+-0x2*-0xd45+-0x3d9d)));function _0x2b002e(_0x262602,_0x43a77e){return _0x504c(_0x43a77e-0x7d,_0x262602);}const _0x2df2ab=_0x4f0ebf['QYzXz'](getUsageColor,_0x3b981d);if(_0x179cce){if(_0x2b002e(0x196,0x153)!==_0x4f0ebf[_0x2b002e(0x15e,0x19e)])_0x179cce[_0x497cec(0x124,0x191)][_0x2b002e(0x159,0x15f)]=_0x4f0ebf[_0x497cec(0x262,0x21a)](_0x3b981d,'%'),_0x179cce[_0x497cec(0x15a,0x191)][_0x2b002e(0x12a,0x19f)+_0x497cec(0x1d1,0x1ef)]=_0x2df2ab;else{if(_0x2bc798[_0x497cec(0x270,0x212)+'r'])_0x2072ba[_0x497cec(0x1da,0x167)](_0x4f0ebf[_0x2b002e(0x190,0x1e6)],_0x1c49f3[_0x497cec(0x181,0x190)+'ge']);}}_0x27716c&&_0x4f0ebf[_0x497cec(0x1c5,0x1e4)](animateTokenCount,contextUsed,contextMax,_0x27716c),_0x13304e[_0x497cec(0x1ef,0x1da)]=_0x2b002e(0x148,0x186)+_0x497cec(0x160,0x14b)+contextUsed[_0x497cec(0x1db,0x1a9)+'aleSt'+'ring']()+_0x2b002e(0x1c8,0x193)+contextMax[_0x497cec(0x1b9,0x1a9)+_0x497cec(0x1a9,0x185)+_0x497cec(0x277,0x22b)]()+(_0x497cec(0x211,0x1a0)+_0x2b002e(0x18c,0x1bc))+_0x3b981d+'%)',_0x13304e[_0x2b002e(0x1ea,0x177)+_0x497cec(0x265,0x20a)+'te'](_0x4f0ebf[_0x497cec(0xfb,0x156)],_0x497cec(0x178,0x1a5)+_0x2b002e(0x1d9,0x1f4)+'ndow\x20'+_0x2b002e(0x1af,0x1c7)+':\x20'+_0x3b981d+'%\x20—\x20'+_0x4f0ebf[_0x2b002e(0x175,0x183)](formatTokens,contextUsed)+'\x20of\x20'+_0x4f0ebf[_0x2b002e(0x17b,0x144)](formatTokens,contextMax)+(_0x497cec(0x1df,0x1a0)+_0x497cec(0x17b,0x16e)+'ed'));}async function fetchContext(){const _0x3d9c70={'FDKpW':function(_0x210976,_0x2363d5){return _0x210976(_0x2363d5);},'obHdn':function(_0x595b4d,_0x260aab,_0x483108){return _0x595b4d(_0x260aab,_0x483108);},'eSNfT':function(_0x25dcf6,_0x2b1375){return _0x25dcf6===_0x2b1375;},'NSeKu':_0x1c0c9e(0x2d,-0xe),'sTLSv':_0x47919(-0x8c,-0x3b),'nVbco':_0x47919(-0xeb,-0x13f),'KWeYm':function(_0x57a34e){return _0x57a34e();},'quxRB':_0x1c0c9e(-0x3a,-0x49)+_0x1c0c9e(0x16,0x4a)+_0x47919(-0xb0,-0x98)+'\x20Fetc'+_0x47919(-0x3c,-0x31)+_0x1c0c9e(0x46,0x24)};function _0x1c0c9e(_0x23785b,_0x483bf0){return _0x504c(_0x23785b- -0x143,_0x483bf0);}function _0x47919(_0x25989d,_0x4d72dc){return _0x504c(_0x25989d- -0x1ab,_0x4d72dc);}try{if(_0x3d9c70['eSNfT'](_0x3d9c70[_0x47919(-0x77,-0x86)],'OdbtG')){const _0x27b74f=window[_0x1c0c9e(-0xc,0x17)+_0x47919(-0xc5,-0xb5)+'llite'+'s']?.[_0x47919(-0x3f,-0x4e)+_0x1c0c9e(0x8,0xa)+_0x1c0c9e(-0x1e,-0x38)+_0x47919(-0xba,-0xc1)]()||_0x3d9c70[_0x47919(-0x50,-0x5b)];currentSatelliteId=_0x27b74f;const _0x23336d=window['Uplin'+_0x47919(-0xc5,-0xf6)+_0x1c0c9e(-0x4c,-0x28)+'s']?.['getCu'+_0x1c0c9e(0x8,-0x32)+'Agent'+'Id']?.()||_0x3d9c70[_0x1c0c9e(0x18,-0x28)],_0xee63ef=await _0x3d9c70[_0x1c0c9e(0x19,-0x56)](fetch,_0x1c0c9e(-0x58,0x3)+_0x47919(-0x37,-0x6e)+_0x47919(-0xd6,-0x109)+_0x1c0c9e(-0x26,0x3c)+_0x47919(-0xc6,-0x65)+_0x47919(-0xb4,-0xe2)+_0x47919(-0xe3,-0x9e)+_0x3d9c70['FDKpW'](encodeURIComponent,_0x27b74f)+(_0x1c0c9e(-0x81,-0x58)+'tId=')+_0x3d9c70[_0x1c0c9e(0x19,-0x56)](encodeURIComponent,_0x23336d));if(!_0xee63ef['ok'])return;const _0x23986a=await _0xee63ef[_0x47919(-0x7b,-0x3f)]();if(!_0x23986a['ok']&&_0x23986a[_0x47919(-0x83,-0x65)]){if(_0x3d9c70[_0x47919(-0x67,-0x68)]!==_0x47919(-0x68,0x6)){if(window[_0x1c0c9e(0x33,0x5b)+'r'])logger[_0x1c0c9e(-0x78,-0x82)](_0x1c0c9e(-0x3a,0x39)+_0x47919(-0x52,-0x8)+'cker:'+_0x47919(-0x62,-0xcf)+_0x47919(-0x5e,-0x46)+'or',_0x23986a[_0x47919(-0x83,-0xd7)]);return;}else _0x3d9c70[_0x1c0c9e(0x19,0x8b)](_0x1ca6ef,_0x5fd1a0),_0x294bb3=null;}contextUsed=_0x23986a[_0x47919(-0x19,0x29)+_0x47919(-0x1a,-0x1c)+'s']||0x63a*-0x1+-0x5b1*-0x1+0x89,contextMax=_0x23986a[_0x47919(-0x21,0x1a)+_0x1c0c9e(-0x46,-0x25)+'ens']||DEFAULT_CONTEXT_WINDOW,_0x3d9c70[_0x47919(-0xcc,-0xc5)](updateDisplay);}else _0x3d9c70['obHdn'](_0x36997d,_0x4b74a7,-0x3*-0x8c7+-0x22be+-0x1421*-0x1);}catch(_0x1932d8){if(window[_0x47919(-0x35,-0x22)+'r'])logger['warn'](_0x3d9c70['quxRB'],_0x1932d8['messa'+'ge']);}}function _0x4143(){const _0x3a1596=['vBuYI','setAt','cker:','feoZs','xtTok','List','POYTe','WCnBQ','onCon','RVHLw','Gzais','\x20toke','State','QYzXz','hcXzB','umRud','Conte','ate','423PCUSaT','raNuV','toLoc','syste','acker','cUwNZ','clean','RnWWG','ess)','RgxDN','JONmw','\x20/\x20','tched','nNmmu','earBt','aria-','lfrKW','toQIH','ntext','repla','main','xt-tr','DRiCQ','backg','obser','XQAbw','Satel','HnAIz','KpqRk','error','WWCYf','FGeNH','152470vmMTKB','eXEXI','fuCSS','textC','KYAaB','json','nodeT','iycOE','xwsWQ','NSeKu','kOzPP','brmuz','Uplin','pdjIK','soYNJ','oDzSh','conne','getEl','necti','title','ns\x20(','uplin','qdrVf','oFXBX','kLnEp','nVbco','usxYC','ADUuU','FuAsR','NKUng','\x20Fetc','usage','rrent','ructo','h\x20err','CcHdi','label','248BxJtEt','5687970PJTHDo','193899mmojrL','round','70595kylPoE','kConn','flex','LfjJq','vGnrz','xtTra','ializ','sTLSv','FDKpW','eqtUt','DkMUU','setti','displ','child','ges','entLi','ZbvRk','jTtTB','xtBar','Width','Fill','CBaRD','-erro','HMlOa','getCu','ype','tribu','h\x20fai','OdbtG','conta','MyzOJ','WiFUC','sessi','wqlLm','logge','xt\x20wi','xtTex','vplOS','lWirY','visib','uOous','cted','gtinO','k:sat','extTr','YeUCf','kmVSu','cLKOX','4577160XsPAWB','OXNIX','IVrbo','KbCUo','YGcCa','led','conte','SAjTZ','ement','WkviZ','init','ring','onten','Token','total','36491257nyDjrT','added','xsmUU','ility','befor','ins','toStr','xt:\x20','wvYBc','ById','HDepP','8NLncoU','var(-','Nodes','toFix','fetch','ngsCl','ectio','XPjAm','qkkDv','KFvno','Jcxfk','JkKCC','searc','qcKzu','\x20Init','&agen','jSPvr','HhsIh','dule','(((.+','VeYtb','Id=','terMo','msgRZ','warn','LkHkw','chang','xTAFG','refre','IVBNQ','inner','ns\x20us','xtBad','necte','on/co','FSakq','test','YILAu','nce','BdzOi','addEv','hXedH','nLDxe','18dVsANC','KWeYm','-warn','YiRdl','width',')+)+)','stosl','?sate','kSate','Zexfl','bwqBG','aleSt','qjEfb','/api/','hXlYO','pow','none','119589IXpKAl','stene','lite','ing','min','messa','style','getSt','llite','oKkzb'];_0x4143=function(){return _0x3a1596;};return _0x4143();}function refresh(){const _0x22015d={'CcHdi':function(_0x35ebd0,_0x29ea50,_0x18a842){return _0x35ebd0(_0x29ea50,_0x18a842);}};setTimeout(fetchContext,-0xb2a+0x1b1b+-0x821);function _0x443fdd(_0x4bce01,_0x9cdc21){return _0x504c(_0x4bce01- -0x7a,_0x9cdc21);}_0x22015d[_0x443fdd(0xd4,0x139)](setTimeout,fetchContext,-0x2*0x1dcc+-0xb93*-0x1+-0x7*-0xb53),setTimeout(fetchContext,0x58e9+0x440d*-0x2+0x1*0x7d51);}function reset(){function _0x18555a(_0x13c466,_0x1db70f){return _0x504c(_0x13c466- -0x238,_0x1db70f);}const _0x3ddfa1={'uOous':function(_0x668439){return _0x668439();},'Zexfl':function(_0x12bc8c,_0x528be1,_0x2d7be6){return _0x12bc8c(_0x528be1,_0x2d7be6);}};contextUsed=0x14bc+-0x6*-0x4a9+-0x21e*0x17;function _0x3374ce(_0x5b6532,_0x353282){return _0x504c(_0x353282-0xea,_0x5b6532);}displayedTokens=-0x1*0x50f+-0x11b9*0x2+-0x1*-0x2881,_0x3ddfa1[_0x3374ce(0x213,0x266)](updateDisplay),_0x3ddfa1[_0x18555a(-0x151,-0x154)](setTimeout,fetchContext,-0x1029+0x1201*-0x2+0x5*0xbff);}function getState(){const _0xff123={};_0xff123[_0x66182d(0x33b,0x36a)]=function(_0x437256,_0x1e5c47){return _0x437256*_0x1e5c47;},_0xff123['YGcCa']=function(_0x3aa460,_0x497071){return _0x3aa460/_0x497071;};function _0xc0ad05(_0x3fc011,_0xc80476){return _0x504c(_0xc80476-0x213,_0x3fc011);}function _0x66182d(_0x46f511,_0xfaa1d){return _0x504c(_0xfaa1d-0x2ac,_0x46f511);}const _0x9fed38=_0xff123;return{'contextUsed':contextUsed,'contextMax':contextMax,'percentage':contextMax>0x4c1*-0x1+-0x78*-0x17+-0x607?Math['round'](_0x9fed38[_0x66182d(0x35b,0x36a)](_0x9fed38[_0xc0ad05(0x387,0x39b)](contextUsed,contextMax),0x25a5+-0x1016+0x152b*-0x1)):0x1f1*0x7+-0x17*-0xda+-0x212d};}function init(){const _0x24923a={'feoZs':function(_0x384ff3,_0x32b657){return _0x384ff3-_0x32b657;},'fXgjj':function(_0x809157,_0x28cc97){return _0x809157*_0x28cc97;},'jTtTB':function(_0x9d2025,_0x3c737e){return _0x9d2025<=_0x3c737e;},'ATSZw':function(_0x2f8e63,_0x4fe13f){return _0x2f8e63(_0x4fe13f);},'lfrKW':function(_0x18ce2e,_0x247759){return _0x18ce2e<_0x247759;},'brmuz':'UCxPZ','YiRdl':function(_0x2d8a36){return _0x2d8a36();},'cUwNZ':function(_0x31963e,_0x5aca39){return _0x31963e===_0x5aca39;},'OXNIX':_0x26ba0b(0x27a,0x283)+_0x26ba0b(0x2bc,0x264),'SAjTZ':function(_0x21bae2,_0x1cef39,_0x45404c){return _0x21bae2(_0x1cef39,_0x45404c);},'WiFUC':function(_0x49a6ef,_0x1bc60b){return _0x49a6ef===_0x1bc60b;},'xTAFG':function(_0x5d13e4,_0x1fee6a){return _0x5d13e4!==_0x1fee6a;},'stosl':'Yvemr','flteh':_0x529f27(0x284,0x256)+'m','eXEXI':function(_0x558dae){return _0x558dae();},'HMlOa':function(_0x2909c9){return _0x2909c9();},'KbCUo':function(_0x221882,_0x26eb0c){return _0x221882===_0x26eb0c;},'nNmmu':_0x26ba0b(0x2d4,0x346),'POYTe':function(_0x4fd93f,_0x5c59fc,_0x5107cc){return _0x4fd93f(_0x5c59fc,_0x5107cc);},'liJTB':function(_0x2ecfec,_0x35d760,_0x15a2d4){return _0x2ecfec(_0x35d760,_0x15a2d4);},'mLgbt':'resiz'+'e','fuCSS':_0x26ba0b(0x2ba,0x2d8)+_0x529f27(0x274,0x2de)+_0x529f27(0x240,0x215)+'e','cLKOX':_0x26ba0b(0x233,0x26b)+_0x26ba0b(0x2a1,0x262),'msgRZ':_0x529f27(0x2a4,0x264),'lWirY':_0x529f27(0x242,0x2a7)+_0x529f27(0x20b,0x200)+_0x529f27(0x25f,0x261)+'n','iycOE':'click','KYAaB':_0x529f27(0x261,0x251)+_0x529f27(0x246,0x2a1)+_0x26ba0b(0x23a,0x1fc)+_0x529f27(0x19a,0x209)+_0x529f27(0x2a4,0x2a2)+'ed'};function _0x26ba0b(_0x363e8b,_0x3e2c5f){return _0x504c(_0x363e8b-0x13f,_0x3e2c5f);}_0x24923a[_0x529f27(0x26a,0x2b3)](fetchContext);function _0x529f27(_0x2cace2,_0x5c1f90){return _0x504c(_0x5c1f90-0x148,_0x2cace2);}refreshTimer=_0x24923a['liJTB'](setInterval,fetchContext,REFRESH_INTERVAL_MS),window[_0x529f27(0x229,0x223)+_0x529f27(0x29a,0x2ab)+_0x529f27(0x1e2,0x238)+'r'](_0x24923a['mLgbt'],UplinkCore['debou'+_0x26ba0b(0x218,0x1ff)](updateDisplay,0xd8b*-0x1+-0x52f*-0x2+0x6b*0x9)),document[_0x529f27(0x1b4,0x223)+'entLi'+_0x26ba0b(0x22f,0x235)+'r'](_0x24923a[_0x26ba0b(0x26c,0x2af)],()=>{const _0x10dd9b={'mbAjt':function(_0x5899ea,_0x225c41){function _0x199924(_0x582380,_0x3afbeb){return _0x504c(_0x582380- -0x281,_0x3afbeb);}return _0x24923a[_0x199924(-0x185,-0x194)](_0x5899ea,_0x225c41);},'xwsWQ':function(_0x2ad374,_0x6b8e8){return _0x2ad374/_0x6b8e8;},'LfjJq':function(_0x1d774d,_0x2913da){return _0x1d774d-_0x2913da;},'kOzPP':function(_0x3108df,_0x3f4c22){return _0x3108df+_0x3f4c22;},'vplOS':function(_0x22a328,_0x623a48){return _0x24923a['fXgjj'](_0x22a328,_0x623a48);},'MyzOJ':function(_0x2c6f5e,_0x273111){function _0x46727f(_0x52db46,_0x272c30){return _0x504c(_0x52db46-0x21c,_0x272c30);}return _0x24923a[_0x46727f(0x381,0x33d)](_0x2c6f5e,_0x273111);},'kmVSu':function(_0x269fec,_0x14f923){return _0x24923a['ATSZw'](_0x269fec,_0x14f923);},'bwqBG':function(_0x38bf1b,_0x2877e7){function _0x4a3648(_0x2a6123,_0x5ae701){return _0x504c(_0x2a6123-0x1af,_0x5ae701);}return _0x24923a[_0x4a3648(0x2ca,0x2ed)](_0x38bf1b,_0x2877e7);},'eqtUt':function(_0xf1a444,_0x142524){return _0x24923a['ATSZw'](_0xf1a444,_0x142524);}};function _0x23480d(_0x1a2573,_0x1f7c4e){return _0x26ba0b(_0x1f7c4e-0x9c,_0x1a2573);}function _0x244f85(_0x234dc7,_0x1e7b18){return _0x26ba0b(_0x1e7b18-0x1de,_0x234dc7);}if(document[_0x244f85(0x4d6,0x498)+_0x244f85(0x497,0x4b3)+_0x244f85(0x3fe,0x422)]===_0x244f85(0x4a1,0x498)+'le'&&window[_0x23480d(0x359,0x312)+_0x244f85(0x496,0x472)+'ectio'+'n']?.['isCon'+_0x244f85(0x417,0x3f1)+'d']?.()){if(_0x24923a[_0x23480d(0x2bb,0x311)]===_0x24923a['brmuz'])_0x24923a[_0x244f85(0x3a1,0x3fe)](fetchContext);else{const _0x1a38bd=oORwvS['mbAjt'](_0xf13281,_0x37ae48),_0x58389d=_0x1768e6['min'](oORwvS['xwsWQ'](_0x1a38bd,_0x3a5285),-0x1d*-0x43+-0x1*-0x11fb+0x37*-0x77),_0x2ca1a0=oORwvS[_0x244f85(0x480,0x474)](-0x25ee+0x1*0x1cdf+0x910,_0x412fb1[_0x23480d(0x299,0x2c8)](oORwvS[_0x23480d(0x360,0x332)](0x7b*-0x46+0x4*0x565+-0x15*-0x93,_0x58389d),0x75a+-0xfb*0x9+0x17c));_0x186134=_0x130180[_0x244f85(0x4a6,0x470)](oORwvS[_0x244f85(0x42d,0x452)](_0x358011,oORwvS[_0x244f85(0x4c0,0x496)](_0x5bfdca,_0x2ca1a0)));const _0x15372f=oORwvS[_0x23480d(0x308,0x34d)](_0x2e7aac[_0x23480d(0x238,0x2ac)+_0x244f85(0x4f6,0x484)],0x1*-0xa5e+-0x2629*0x1+-0x112d*-0x3),_0x23b346=_0x57b854[_0x244f85(0x3b7,0x410)](-0x1*-0x1127+-0x3*-0x655+-0x23c2,_0x12c2b4[_0x23480d(0x31e,0x32e)](oORwvS['vplOS'](oORwvS[_0x244f85(0x4c2,0x450)](_0x295e4f,_0x226fb1),0x1db0+-0x143e+-0x7a*0x13)));_0x1031a1[_0x23480d(0x308,0x309)+_0x244f85(0x51f,0x4ad)+'t']=_0x15372f?_0x23b346+'%':oORwvS[_0x244f85(0x434,0x49f)](_0x228dfe,_0x2c68cb)+'/'+oORwvS[_0x244f85(0x480,0x49f)](_0x3eaa99,_0x34886d),oORwvS[_0x23480d(0x2ca,0x2c3)](_0x58389d,-0x121+-0xc4*-0x1a+-0x12c6)?_0xe53759=oORwvS[_0x244f85(0x451,0x47a)](_0x2a3390,_0x58df49):(_0x364aac=_0x58afed,_0x265874=null);}}});window[_0x529f27(0x264,0x27f)+_0x529f27(0x22f,0x29d)+'ectio'+'n']?.[_0x529f27(0x20b,0x249)+_0x529f27(0x242,0x285)+'on']&&window['Uplin'+_0x26ba0b(0x294,0x26c)+_0x26ba0b(0x1f8,0x1f3)+'n'][_0x529f27(0x235,0x249)+_0x529f27(0x2a3,0x285)+'on'](_0x1b50b6=>{function _0x2282d5(_0x553b88,_0xfdcf2e){return _0x26ba0b(_0x553b88- -0x327,_0xfdcf2e);}function _0x3ca0f3(_0x1cd0a2,_0x16beaf){return _0x26ba0b(_0x16beaf- -0x352,_0x1cd0a2);}_0x24923a[_0x2282d5(-0xd8,-0x13f)](_0x1b50b6,_0x24923a[_0x2282d5(-0x63,0x1)])&&_0x24923a[_0x2282d5(-0x5d,0x14)](setTimeout,fetchContext,0x1a2f+0x1c56+0x73b*-0x7);});const _0x4692c3=new MutationObserver(_0x2b1dcf=>{function _0x1ec298(_0x3a68bb,_0x387e5a){return _0x26ba0b(_0x387e5a- -0x456,_0x3a68bb);}function _0x2fd35e(_0x1f837f,_0x33a32c){return _0x26ba0b(_0x33a32c- -0x1c6,_0x1f837f);}if(_0x24923a[_0x1ec298(-0x277,-0x249)](_0x2fd35e(0x57,0xa0),_0x24923a[_0x1ec298(-0x236,-0x233)]))for(const _0x11bc44 of _0x2b1dcf){for(const _0x127d54 of _0x11bc44[_0x2fd35e(0xb4,0x10d)+_0x2fd35e(-0x1d,0x2e)]){if(_0x24923a[_0x2fd35e(-0x13,0x47)](_0x127d54[_0x1ec298(-0x196,-0x1e6)+_0x2fd35e(0xe8,0xe6)],0x2649+0xf87+-0x5f*0x91))continue;const _0x415533=_0x127d54[_0x1ec298(-0x17b,-0x1e9)+_0x1ec298(-0x1ed,-0x187)+'t']||'';_0x127d54['class'+_0x2fd35e(0x2,0x77)]?.[_0x1ec298(-0x19b,-0x1a6)+_0x2fd35e(0x100,0x111)](_0x24923a['flteh'])&&/compact/i[_0x1ec298(-0x21f,-0x240)](_0x415533)&&_0x24923a[_0x1ec298(-0x1d4,-0x18c)](setTimeout,fetchContext,-0x226c*-0x1+0x13f*0x11+-0x2be3*0x1);}}else _0x24923a[_0x1ec298(-0x1f5,-0x1a4)](_0x45bf16,_0x24923a[_0x2fd35e(0x133,0xfe)])&&_0x24923a[_0x2fd35e(0x12d,0x104)](_0x2f03b9,_0x14dd04,-0x5*-0x133+-0x43*-0x33+-0xf70);}),_0x57efeb=document[_0x26ba0b(0x27b,0x280)+_0x529f27(0x267,0x2d4)+_0x529f27(0x1ab,0x1f9)](_0x24923a[_0x26ba0b(0x2c2,0x2da)]);if(_0x57efeb){if(_0x24923a['xTAFG'](_0x24923a[_0x529f27(0x1d2,0x212)],'VnZKi')){const _0x30723f={};_0x30723f[_0x26ba0b(0x2a0,0x282)+_0x26ba0b(0x23d,0x214)]=!![],_0x4692c3[_0x26ba0b(0x262,0x2d3)+'ve'](_0x57efeb,_0x30723f);}else{const _0x346cb5={};_0x346cb5[_0x529f27(0x2ba,0x2a9)+_0x529f27(0x21a,0x246)]=!![],_0x12e316[_0x529f27(0x1f8,0x26b)+'ve'](_0x52d074,_0x346cb5);}}window[_0x26ba0b(0x21a,0x1db)+'entLi'+_0x26ba0b(0x22f,0x27b)+'r'](_0x529f27(0x2a7,0x288)+_0x26ba0b(0x2be,0x264)+'ellit'+'e-swi'+_0x26ba0b(0x256,0x221),()=>{contextUsed=0x1*0x21c2+-0x943*0x2+-0xf3c;function _0x3241bb(_0x59b589,_0x3db97f){return _0x529f27(_0x59b589,_0x3db97f- -0x184);}displayedTokens=0x6a*-0x1+-0x20e8+0x2152;function _0x255947(_0x20f718,_0x4bc69c){return _0x529f27(_0x20f718,_0x4bc69c-0x1b7);}_0x24923a[_0x255947(0x43f,0x42b)](updateDisplay),_0x24923a[_0x3241bb(0x107,0xf0)](fetchContext);});const _0x401b02=document[_0x26ba0b(0x27b,0x209)+_0x529f27(0x2a6,0x2d4)+_0x529f27(0x183,0x1f9)](_0x24923a[_0x26ba0b(0x2b9,0x285)]);_0x401b02&&_0x401b02['addEv'+_0x529f27(0x2c8,0x2ab)+_0x26ba0b(0x22f,0x230)+'r'](_0x24923a[_0x26ba0b(0x271,0x22d)],()=>{const _0x49e8f2={'Kahql':function(_0x16930b){function _0x302304(_0x2d883e,_0x3a4bfd){return _0x504c(_0x3a4bfd-0x124,_0x2d883e);}return _0x24923a[_0x302304(0x2af,0x28f)](_0x16930b);}};function _0x4bfa02(_0x7b9729,_0x5ed21a){return _0x26ba0b(_0x7b9729- -0xf1,_0x5ed21a);}function _0x3d5fa6(_0x3ca161,_0x376dfc){return _0x26ba0b(_0x376dfc-0x90,_0x3ca161);}_0x24923a[_0x3d5fa6(0x381,0x356)]('LTeae',_0x24923a[_0x3d5fa6(0x342,0x2e7)])?(_0x376b66=0x1*-0xa98+0x1d6b+-0x12d3,_0x2dc8cb=-0x1*-0xc5+0xffa*0x1+-0x10bf,jfTBJH['Kahql'](_0x13cddb),_0x5b9f46()):_0x24923a[_0x3d5fa6(0x296,0x2ce)](setTimeout,reset,0x2*-0x3b+-0x6cb*0x3+-0x1*-0x16cb);}),window[_0x529f27(0x2e2,0x2be)+'r']&&logger['debug'](_0x24923a[_0x529f27(0x221,0x277)]);}function cleanup(){function _0x3ab8dd(_0x38176,_0x271203){return _0x504c(_0x38176- -0xb7,_0x271203);}function _0x426ac8(_0x29509a,_0x281d54){return _0x504c(_0x29509a-0x1f3,_0x281d54);}const _0x5545c3={'ADUuU':_0x3ab8dd(0x5d,0x4b),'wqlLm':function(_0x38f997,_0x7f36dd){return _0x38f997(_0x7f36dd);}};refreshTimer&&(_0x5545c3[_0x426ac8(0x339,0x347)]===_0x5545c3['ADUuU']?(_0x5545c3[_0x426ac8(0x368,0x353)](clearInterval,refreshTimer),refreshTimer=null):(_0x16ec5b=_0x35a13f,_0x3d7568=null));}function _0x504c(_0x5555eb,_0x4286ef){_0x5555eb=_0x5555eb-(0xeb1+0x10*-0xb0+0x101*-0x3);const _0x5e7d7b=_0x4143();let _0x5dfa89=_0x5e7d7b[_0x5555eb];return _0x5dfa89;}const _0x5e9522={};_0x5e9522[_0x5aa8f5(-0x6f,-0xa4)]=init,_0x5e9522[_0x34111d(-0x142,-0x19d)+'sh']=refresh,_0x5e9522[_0x5aa8f5(-0x146,-0x18f)+_0x34111d(-0x181,-0x163)+'xt']=fetchContext,_0x5e9522['reset']=reset,_0x5e9522[_0x34111d(-0x190,-0x176)+_0x5aa8f5(-0xf3,-0xff)]=getState,_0x5e9522[_0x34111d(-0x100,-0x15b)+'up']=cleanup;export const UplinkContextTracker=_0x5e9522;window[_0x5aa8f5(-0xc6,-0x65)+'kCont'+_0x5aa8f5(-0x7d,-0x28)+_0x34111d(-0x148,-0x15d)]=UplinkContextTracker,UplinkCore['regis'+_0x5aa8f5(-0x134,-0xfa)+_0x34111d(-0x1aa,-0x1a7)](_0x34111d(-0x156,-0xe2)+_0x5aa8f5(-0xdd,-0xd2)+'acker',init),window[_0x5aa8f5(-0x122,-0xdc)+_0x5aa8f5(-0x9a,-0x2b)+'stene'+'r'](_0x34111d(-0x102,-0xd5)+'eunlo'+'ad',cleanup);
package/public/js/core.js CHANGED
@@ -1 +1 @@
1
- (function(_0x2ad108,_0x471c76){function _0x580a16(_0x5eee88,_0x42f1ca){return _0x1496(_0x5eee88-0x1cc,_0x42f1ca);}function _0x230e45(_0x21cb96,_0x5583b8){return _0x1496(_0x21cb96- -0x29b,_0x5583b8);}const _0x547bc3=_0x2ad108();while(!![]){try{const _0x1bbadc=-parseInt(_0x580a16(0x2bb,0x306))/(-0x1*-0x9fb+-0x4*0x14e+-0x4c2)+-parseInt(_0x580a16(0x246,0x25c))/(-0x822*-0x3+0x728+-0x3*0xa84)*(parseInt(_0x580a16(0x2b9,0x27f))/(-0x81a+-0x6d5*-0x1+-0x8*-0x29))+-parseInt(_0x580a16(0x240,0x288))/(0xe57*-0x2+-0x1973+0x3625)*(-parseInt(_0x580a16(0x281,0x2a6))/(0x9*0x363+-0x17c6+-0x6b0))+parseInt(_0x230e45(-0x1c7,-0x1c0))/(0x1269+0xa26+0xf*-0x1e7)*(-parseInt(_0x580a16(0x25c,0x212))/(0x2fc+-0x1*0x1175+0xe80))+parseInt(_0x230e45(-0x1d4,-0x1d6))/(0x4*-0x969+0x38b*0x9+0x5c9)*(parseInt(_0x230e45(-0x229,-0x24d))/(0xa*-0x266+-0xe61+0x5*0x7ae))+parseInt(_0x580a16(0x242,0x23a))/(-0xfc2*0x1+0x407*-0x5+-0x1*-0x23ef)*(-parseInt(_0x580a16(0x2c5,0x27c))/(-0xc*-0x2b7+0x1c69+-0x3cf2))+parseInt(_0x230e45(-0x19f,-0x1da))/(-0x8dd*0x1+0x7*0x373+0x28a*-0x6);if(_0x1bbadc===_0x471c76)break;else _0x547bc3['push'](_0x547bc3['shift']());}catch(_0x16f082){_0x547bc3['push'](_0x547bc3['shift']());}}}(_0x5139,0x315ee+-0x3*-0x5160c+-0xaac5b));const _0x582c8e=(function(){const _0x17bb58={'iuPhJ':function(_0xedfbbd){return _0xedfbbd();},'bEnkJ':function(_0x55c22b,_0x376239){return _0x55c22b!==_0x376239;},'jaZiM':'DactN'};let _0x4ddd2f=!![];return function(_0x38c04b,_0x5006d7){const _0x2b9281={'XnFtv':function(_0x2b79ef){function _0x22d4f6(_0x369eef,_0x2ad96e){return _0x1496(_0x369eef-0xa3,_0x2ad96e);}return _0x17bb58[_0x22d4f6(0x168,0x147)](_0x2b79ef);},'OFLLl':_0x475ac1(-0x135,-0x10e),'gjtMV':function(_0x2e40f7,_0x5504f8){function _0x68d7f(_0x36193a,_0x4f08b4){return _0x475ac1(_0x36193a,_0x4f08b4-0x26f);}return _0x17bb58[_0x68d7f(0x169,0x154)](_0x2e40f7,_0x5504f8);},'Jmnyb':_0x475ac1(-0x16c,-0x152)};function _0x475ac1(_0x2fcba5,_0x987f7e){return _0x1496(_0x987f7e- -0x1ea,_0x2fcba5);}function _0xc94960(_0x52b015,_0x11cf67){return _0x1496(_0x52b015- -0x23f,_0x11cf67);}if(_0x17bb58['jaZiM']===_0x475ac1(-0x12b,-0x132)){const _0x5a79f0=_0x4ddd2f?function(){const _0x13d78b={'HyYDe':function(_0x4e7130){function _0x2927e9(_0x31e6fc,_0x3f8d88){return _0x1496(_0x31e6fc- -0x148,_0x3f8d88);}return _0x2b9281[_0x2927e9(-0xbb,-0xf7)](_0x4e7130);}};function _0x4cf73a(_0x4ae42f,_0x42bd9d){return _0x475ac1(_0x4ae42f,_0x42bd9d-0x2b3);}function _0x5144e1(_0xb266fa,_0x2f92cc){return _0x475ac1(_0x2f92cc,_0xb266fa-0x109);}if(_0x2b9281[_0x4cf73a(0x1a9,0x1b1)]===_0x2b9281[_0x5144e1(0x7,0x2c)]){if(_0x5006d7){if(_0x2b9281[_0x5144e1(-0x74,-0x5d)](_0x5144e1(-0x35,-0x42),_0x2b9281[_0x5144e1(-0x52,-0x26)])){const _0x4fcfb3=_0x5006d7[_0x4cf73a(0x1fb,0x1b9)](_0x38c04b,arguments);return _0x5006d7=null,_0x4fcfb3;}else try{_0x13d78b[_0x5144e1(-0x63,-0x83)](_0x589ec2),_0x4d3274[_0x444b5f]['initi'+_0x5144e1(0x2,-0x36)+'d']=!![];}catch(_0x3694c3){_0x485613[_0x4cf73a(0xfb,0x139)](_0x4cf73a(0x165,0x148)+_0x5144e1(-0x38,-0x36)+_0x5144e1(-0x3d,-0x7c)+_0xecdb9e+(_0x5144e1(0x1e,0x4d)+_0x5144e1(-0x43,0x9)+_0x5144e1(-0x7,0x18)+_0x4cf73a(0x182,0x166)+'e'),_0x3694c3);}}}else{const _0x5831df={};_0x5831df['name']=_0x545edd,_0x5831df['fn']=_0x4acae5,_0x239f1c[_0x4cf73a(0x172,0x1be)](_0x5831df);}}:function(){};return _0x4ddd2f=![],_0x5a79f0;}else _0x2e3712['error'](_0x475ac1(-0x13c,-0x16b)+_0x475ac1(-0xf7,-0x141)+_0xc94960(-0x19b,-0x1d8)+_0x2c7483+(_0x475ac1(-0xdf,-0xeb)+_0x475ac1(-0x178,-0x14c)+_0x475ac1(-0x117,-0x110)+_0xc94960(-0x1a2,-0x1a6)+'e'),_0x4188fb);};}()),_0x5f2c80=_0x582c8e(this,function(){const _0x5a8d09={};function _0x401a6a(_0x30d6e1,_0x5d4fec){return _0x1496(_0x30d6e1- -0xe4,_0x5d4fec);}_0x5a8d09[_0x409e17(0xb3,0x68)]=_0x409e17(0x54,0x33)+_0x401a6a(-0x67,-0x7e)+'+$';const _0x2a4d5e=_0x5a8d09;function _0x409e17(_0x5299c4,_0x2602a9){return _0x1496(_0x2602a9- -0x4e,_0x5299c4);}return _0x5f2c80[_0x401a6a(0x1e,-0x17)+_0x401a6a(-0x53,-0x91)]()['searc'+'h'](_0x409e17(0x67,0x33)+')+)+)'+'+$')[_0x401a6a(0x1e,0x4d)+'ing']()[_0x409e17(0x7a,0x6c)+_0x409e17(0xaa,0xa3)+'r'](_0x5f2c80)[_0x401a6a(-0x49,-0x27)+'h'](_0x2a4d5e[_0x401a6a(-0x2e,-0x6d)]);});_0x5f2c80();function _0x1496(_0x5f5a0a,_0x4802a2){_0x5f5a0a=_0x5f5a0a-(0x1801*-0x1+0x154*0x1c+-0xcc4);const _0x247ce7=_0x5139();let _0x37f6ae=_0x247ce7[_0x5f5a0a];return _0x37f6ae;}function _0xedd5dd(_0x5ef0dd,_0x4e9c2d){return _0x1496(_0x5ef0dd- -0x39,_0x4e9c2d);}import{UplinkLogger}from'./logger.js';const _0x3838e5={};_0x3838e5[_0x39375f(-0x220,-0x208)+'Name']=_0xedd5dd(0xa4,0x98)+_0x39375f(-0x21f,-0x202),_0x3838e5[_0x39375f(-0x1e0,-0x1da)+_0x39375f(-0x237,-0x1f4)]='',_0x3838e5[_0x39375f(-0x216,-0x237)+_0xedd5dd(0xbe,0xb8)+'nses']=!![],_0x3838e5[_0xedd5dd(0x52,0x56)+_0xedd5dd(0x9e,0xbb)+'Enabl'+'ed']=![],_0x3838e5[_0xedd5dd(0xa9,0x84)+_0xedd5dd(0xad,0xa8)+_0x39375f(-0x1ef,-0x1ed)]=null,_0x3838e5[_0xedd5dd(0x9a,0x86)]=_0xedd5dd(0x86,0xb8),_0x3838e5[_0x39375f(-0x19e,-0x1bf)+'tate']='idle';const state=_0x3838e5,modules={},initQueue=[];let initialized=![];function loadConfig(){const _0xaec642={};_0xaec642[_0x40cf7f(0x40b,0x404)]=_0x469fbe(-0x87,-0x7e)+_0x469fbe(-0x53,-0x16)+_0x40cf7f(0x3f4,0x3f5)+'orker'+_0x40cf7f(0x3db,0x397)+'strat'+_0x469fbe(-0x61,-0x62)+_0x40cf7f(0x407,0x443),_0xaec642[_0x40cf7f(0x416,0x43f)]=_0x40cf7f(0x3ed,0x3cc)+_0x469fbe(-0x6,-0x2)+_0x40cf7f(0x41e,0x45e),_0xaec642[_0x469fbe(-0x86,-0x70)]=_0x40cf7f(0x3bf,0x38f),_0xaec642[_0x40cf7f(0x3fc,0x40e)]=function(_0x5dfab0,_0x2f89f4){return _0x5dfab0===_0x2f89f4;};function _0x469fbe(_0x498505,_0x4ba22c){return _0xedd5dd(_0x498505- -0xcd,_0x4ba22c);}_0xaec642[_0x469fbe(-0x82,-0xaa)]=_0x40cf7f(0x3cf,0x3a9),_0xaec642[_0x40cf7f(0x41f,0x45b)]=_0x469fbe(-0x29,-0x63)+_0x40cf7f(0x3d2,0x400),_0xaec642[_0x469fbe(-0x97,-0xc5)]=function(_0x4c96,_0x387b4a){return _0x4c96!==_0x387b4a;},_0xaec642[_0x469fbe(-0x39,-0x55)]=_0x469fbe(-0x87,-0x7d)+_0x40cf7f(0x398,0x399)+_0x469fbe(-0x68,-0x67)+_0x469fbe(-0x44,-0x77)+_0x40cf7f(0x3c0,0x3bf)+'ig';function _0x40cf7f(_0x332766,_0x4c0297){return _0xedd5dd(_0x332766-0x365,_0x4c0297);}const _0x2eb5bf=_0xaec642;try{const _0x4010c9=JSON[_0x469fbe(-0x12,-0x4f)](localStorage['getIt'+'em'](_0x2eb5bf['QEffT'])||_0x2eb5bf[_0x469fbe(-0x86,-0x46)]);return _0x4010c9&&(_0x2eb5bf[_0x469fbe(-0x36,-0xb)](_0x2eb5bf['RRtRh'],'eOqhu')?(state['agent'+_0x40cf7f(0x42a,0x427)]=_0x4010c9[_0x469fbe(-0x66,-0x99)+'Name']||_0x2eb5bf[_0x469fbe(-0x13,0x5)],state[_0x469fbe(-0x38,-0x17)+_0x40cf7f(0x3e0,0x3f0)]=_0x4010c9[_0x469fbe(-0x38,-0x69)+_0x40cf7f(0x3e0,0x3ec)]||'',state['audio'+_0x469fbe(-0xf,0x16)+_0x469fbe(-0x4f,-0x4a)]=_0x2eb5bf[_0x40cf7f(0x39b,0x359)](_0x4010c9[_0x40cf7f(0x39d,0x35c)+'Respo'+_0x469fbe(-0x4f,-0x8c)],undefined)?_0x4010c9[_0x469fbe(-0x95,-0xbf)+_0x469fbe(-0xf,0x30)+_0x40cf7f(0x3e3,0x3d1)]:!![],state[_0x40cf7f(0x3b7,0x3b2)+_0x469fbe(-0x2f,-0x59)+'Enabl'+'ed']=_0x4010c9[_0x40cf7f(0x3b7,0x3e8)+_0x469fbe(-0x2f,-0x6d)+_0x469fbe(-0x67,-0x60)+'ed']||![]):_0x381fd5['warn'](_0x2eb5bf['ZZOBu'],_0x460076)),_0x4010c9;}catch(_0x3a27ad){return UplinkLogger[_0x40cf7f(0x39c,0x39b)](_0x2eb5bf['KbFov'],_0x3a27ad),null;}}function saveConfig(){const _0x30ffe4={'UNuGg':function(_0x431dbe){return _0x431dbe();},'NvJRa':_0x135120(0x40,0x2e),'yJmbD':'uplin'+_0x32b7be(-0xeb,-0x12b)+_0x135120(0x37,0x40),'UNQrE':_0x32b7be(-0x162,-0x1ac)+'\x20Fail'+_0x32b7be(-0x1a2,-0x18d)+'\x20save'+_0x135120(-0x27,0x9)+'ig'};function _0x135120(_0x1d2722,_0x24e6b3){return _0xedd5dd(_0x1d2722- -0x82,_0x24e6b3);}function _0x32b7be(_0x459522,_0x3c3eb5){return _0xedd5dd(_0x3c3eb5- -0x1f2,_0x459522);}try{if(_0x30ffe4[_0x135120(-0x36,0x10)]!=='zuMJH')_0xa038d7[_0x135120(-0x1b,-0x5d)+_0x32b7be(-0x164,-0x12d)]=_0x4f465a,_0x30ffe4[_0x32b7be(-0x1be,-0x1a2)](_0x476437);else{const _0x4ccf6d={};_0x4ccf6d[_0x32b7be(-0x1c2,-0x18b)+_0x135120(0x43,0x72)]=state[_0x32b7be(-0x1bb,-0x18b)+_0x32b7be(-0xf9,-0x12d)],_0x4ccf6d[_0x32b7be(-0x11e,-0x15d)+_0x32b7be(-0x191,-0x177)]=state['gatew'+_0x135120(-0x7,-0x26)],_0x4ccf6d['audio'+_0x135120(0x3c,0x43)+'nses']=state['audio'+_0x135120(0x3c,0x6)+'nses'],_0x4ccf6d[_0x135120(-0x30,-0x32)+'ption'+'Enabl'+'ed']=state[_0x135120(-0x30,-0x1c)+'ption'+'Enabl'+'ed'],localStorage['setIt'+'em'](_0x30ffe4[_0x135120(-0x38,-0x5e)],JSON[_0x135120(0x2c,0x5e)+_0x32b7be(-0x174,-0x12e)](_0x4ccf6d));}}catch(_0x5e0cac){UplinkLogger[_0x32b7be(-0x1c8,-0x1bb)](_0x30ffe4['UNQrE'],_0x5e0cac);}}function registerModule(_0x15d18b,_0x24fc97){const _0x3930c8={'MKMGu':_0x4a8f71(0x22c,0x1fd)+_0x4da7b8(0x309,0x34b)+_0x4da7b8(0x2fb,0x2ee),'xUQhd':_0x4a8f71(0x1fe,0x22c),'LWUeI':'Core:'+_0x4a8f71(0x1d7,0x190)+_0x4da7b8(0x2a7,0x270)+_0x4a8f71(0x22d,0x257)+'\x20conf'+'ig','kxlwf':function(_0x2216ae,_0x49d962){return _0x2216ae===_0x49d962;},'kUQhh':function(_0x3ada34){return _0x3ada34();},'tFFaT':'eOqeK'},_0x3b517e={};function _0x4da7b8(_0x8229c7,_0xa94302){return _0xedd5dd(_0x8229c7-0x242,_0xa94302);}_0x3b517e[_0x4da7b8(0x2f7,0x2fa)+'d']=!![];function _0x4a8f71(_0x2a332f,_0x129287){return _0xedd5dd(_0x2a332f-0x1a4,_0x129287);}_0x3b517e['initi'+_0x4da7b8(0x2ec,0x302)+'d']=![],modules[_0x15d18b]=_0x3b517e;if(_0x24fc97){if(initialized){if(_0x3930c8['kxlwf']('aqals',_0x4a8f71(0x234,0x211)))try{_0x3930c8[_0x4da7b8(0x2ba,0x2ba)](_0x24fc97),modules[_0x15d18b][_0x4a8f71(0x22e,0x22c)+_0x4a8f71(0x24e,0x274)+'d']=!![];}catch(_0x7ab782){if(_0x4da7b8(0x281,0x2c4)!==_0x3930c8[_0x4a8f71(0x244,0x250)])console[_0x4a8f71(0x1db,0x1b9)](_0x4a8f71(0x1ea,0x21d)+'\x20Modu'+_0x4da7b8(0x2ad,0x2c9)+_0x15d18b+(_0x4a8f71(0x26a,0x2a5)+'ed\x20to'+_0x4da7b8(0x2e3,0x2a8)+_0x4a8f71(0x208,0x232)+'e'),_0x7ab782);else try{const _0x33c397=_0x45719e[_0x4a8f71(0x25f,0x29c)](_0x38c62a[_0x4da7b8(0x2bb,0x296)+'em'](JPQEAQ[_0x4da7b8(0x301,0x2b7)])||JPQEAQ['xUQhd']);return _0x33c397&&(_0x1a0c1b[_0x4da7b8(0x2a9,0x2cd)+_0x4a8f71(0x269,0x2ab)]=_0x33c397['agent'+'Name']||_0x4da7b8(0x2e6,0x2ac)+_0x4a8f71(0x211,0x258),_0x32e474['gatew'+_0x4a8f71(0x21f,0x201)]=_0x33c397[_0x4a8f71(0x239,0x24a)+'ayUrl']||'',_0x13b07e[_0x4a8f71(0x1dc,0x217)+_0x4a8f71(0x262,0x28a)+_0x4a8f71(0x222,0x1ed)]=_0x33c397[_0x4a8f71(0x1dc,0x1ab)+_0x4da7b8(0x300,0x323)+_0x4a8f71(0x222,0x21e)]!==_0x5ec287?_0x33c397[_0x4da7b8(0x27a,0x27e)+_0x4a8f71(0x262,0x242)+_0x4da7b8(0x2c0,0x2b9)]:!![],_0x4885ed[_0x4a8f71(0x1f6,0x1da)+_0x4da7b8(0x2e0,0x2a9)+_0x4a8f71(0x20a,0x254)+'ed']=_0x33c397[_0x4a8f71(0x1f6,0x23d)+_0x4da7b8(0x2e0,0x2c7)+'Enabl'+'ed']||![]),_0x33c397;}catch(_0xb35837){return _0x27e4f7[_0x4a8f71(0x1db,0x18f)](JPQEAQ[_0x4a8f71(0x1de,0x229)],_0xb35837),null;}}else return _0x3930c8['kxlwf'](_0x4d61e7[_0x29e213]?.['initi'+_0x4a8f71(0x24e,0x212)+'d'],!![]);}else{const _0xde6335={};_0xde6335['name']=_0x15d18b,_0xde6335['fn']=_0x24fc97,initQueue[_0x4da7b8(0x2fe,0x2d4)](_0xde6335);}}}function init(){const _0x218381={'yatZc':function(_0x24818f){return _0x24818f();},'jFEYq':function(_0x20f286,_0x43fc17){return _0x20f286===_0x43fc17;},'KDskC':_0x47e337(0x1c,0x17),'iyGGT':_0x47e337(0x36,0x3e),'auoap':_0x47e337(-0x34,0x1)+_0x47e337(-0x11,0x35)+_0x47e337(0x19,0x4a)+_0x4b6c60(-0x1b9,-0x1fb)+_0x4b6c60(-0x21a,-0x1d8)+_0x4b6c60(-0x1db,-0x1f9)+'d','VOhIB':function(_0x1d1378,_0x2deef5){return _0x1d1378*_0x2deef5;},'GsuFE':'Core:'+_0x4b6c60(-0x249,-0x21b)+_0x47e337(0x2d,0x20)+'\x20save'+_0x4b6c60(-0x23a,-0x1f3)+'ig','DKzSj':_0x47e337(-0x2,-0x5),'bhbGY':_0x47e337(-0x31,0x1)+_0x4b6c60(-0x18d,-0x1d4)+_0x4b6c60(-0x1ec,-0x1bf)+_0x4b6c60(-0x1ce,-0x1fb)+_0x47e337(0x41,0x31)+_0x47e337(0xaa,0x63)+_0x4b6c60(-0x1bc,-0x1e2)+_0x4b6c60(-0x19a,-0x1ac),'FEqsl':function(_0x347a54){return _0x347a54();},'WTWji':'servi'+_0x4b6c60(-0x249,-0x201)+_0x4b6c60(-0x1c0,-0x1e0),'xjUou':_0x4b6c60(-0x21b,-0x1f5),'TMWMA':'jMgsd','rOwbr':'/sw.j'+'s','zHBrs':'uplin'+_0x4b6c60(-0x187,-0x191)+'dy'};if(initialized)return;function _0x47e337(_0x446fa1,_0x4eca60){return _0x39375f(_0x446fa1,_0x4eca60-0x22a);}UplinkLogger[_0x4b6c60(-0x1dc,-0x1b6)](_0x4b6c60(-0x207,-0x208)+_0x4b6c60(-0x1d9,-0x1da)+_0x47e337(0x3c,0x1f)+_0x4b6c60(-0x1aa,-0x1b1)+'.'),_0x218381[_0x47e337(0x96,0x4c)](loadConfig),initQueue[_0x4b6c60(-0x1de,-0x1ff)+'ch'](({name:_0x551ba1,fn:_0x25cd6f})=>{const _0x3b4f02={};_0x3b4f02[_0x6b81e6(0x3d8,0x38e)]=_0x6b81e6(0x3ac,0x38d)+_0x6b81e6(0x36b,0x389)+'+$';function _0xa49c2(_0x1afbdf,_0x26b6d4){return _0x47e337(_0x26b6d4,_0x1afbdf-0x125);}function _0x6b81e6(_0x1b61ea,_0x41396f){return _0x47e337(_0x1b61ea,_0x41396f-0x38a);}const _0x2f8f9b=_0x3b4f02;try{_0x218381[_0xa49c2(0x164,0x11f)](_0x25cd6f),modules[_0x551ba1][_0x6b81e6(0x3cb,0x3cf)+'alize'+'d']=!![],UplinkLogger[_0x6b81e6(0x3b1,0x3dd)]('Core:'+'\x20Modu'+'le\x20'+_0x551ba1+(_0xa49c2(0x181,0x1af)+'ializ'+'ed'));}catch(_0x7b0244){if(_0x218381['jFEYq'](_0x218381[_0xa49c2(0x17f,0x1c3)],_0x218381['iyGGT']))return _0x399325[_0x6b81e6(0x43b,0x40e)+_0xa49c2(0x138,0x17e)]()['searc'+'h'](UDFLMC[_0x6b81e6(0x3cc,0x38e)])[_0xa49c2(0x1a9,0x1e8)+_0x6b81e6(0x37f,0x39d)]()[_0xa49c2(0x161,0x183)+_0xa49c2(0x198,0x1ab)+'r'](_0x51327c)[_0x6b81e6(0x3c6,0x3a7)+'h'](UDFLMC[_0x6b81e6(0x365,0x38e)]);else UplinkLogger[_0xa49c2(0x117,0x122)](_0xa49c2(0x126,0x133)+_0x6b81e6(0x3ff,0x3b5)+_0xa49c2(0x14b,0x126)+_0x551ba1+(_0xa49c2(0x1a6,0x17b)+_0x6b81e6(0x37e,0x3aa)+_0x6b81e6(0x3f8,0x3e6)+_0x6b81e6(0x39e,0x3a9)+'e'),_0x7b0244);}}),initialized=!![],UplinkLogger['debug']('Core:'+_0x47e337(0x43,0x4d)+'y');_0x218381['WTWji']in navigator&&(_0x218381[_0x4b6c60(-0x207,-0x20b)]===_0x218381[_0x47e337(0x49,0x46)]?(_0x218381['yatZc'](_0x26519b),_0x3e1e44[_0x4d929b][_0x4b6c60(-0x19d,-0x1c4)+_0x47e337(0x83,0x65)+'d']=!![],_0x4c5634['debug'](_0x47e337(0x16,0x1)+_0x47e337(-0x3,0x2b)+_0x4b6c60(-0x1ba,-0x1e3)+_0x4ee8b4+('\x20init'+'ializ'+'ed'))):navigator[_0x4b6c60(-0x1e5,-0x1c9)+_0x47e337(0x50,0x8)+_0x47e337(0x3c,0x29)][_0x4b6c60(-0x1eb,-0x1ee)+_0x4b6c60(-0x1e9,-0x1a9)](_0x218381['rOwbr'])[_0x47e337(0x31,0x4e)](_0x1bb654=>{UplinkLogger[_0x33a1fa(-0x14d,-0x190)](_0x218381['auoap'],_0x1bb654[_0x210ab2(-0x12b,-0xe5)]);function _0x210ab2(_0x33fe33,_0x15acaa){return _0x47e337(_0x15acaa,_0x33fe33- -0x1a7);}_0x1bb654[_0x33a1fa(-0x17c,-0x1c7)+'e']();function _0x33a1fa(_0x152127,_0x549481){return _0x47e337(_0x152127,_0x549481- -0x1e3);}setInterval(()=>_0x1bb654['updat'+'e'](),_0x218381[_0x210ab2(-0x1ba,-0x16e)](0x1f*-0x6d+0x1829+-0xaf1,-0x3*-0x391+0x1e4a*-0x1+-0x7*-0x2d5)*(-0x3f*0xe+0xc*0x12+-0x11*-0x62));})[_0x47e337(0x6a,0x54)](_0x215831=>{const _0x9d4926={};_0x9d4926[_0x16e068(-0xfc,-0x10e)]=_0x218381[_0x16e068(-0x117,-0x150)];const _0x1c2ac6=_0x9d4926;function _0x5194b3(_0x480882,_0x360141){return _0x4b6c60(_0x480882,_0x360141-0xe7);}function _0x16e068(_0x55dbfc,_0xfac6a){return _0x4b6c60(_0xfac6a,_0x55dbfc-0xf5);}_0x218381[_0x16e068(-0xe8,-0x128)](_0x218381['DKzSj'],_0x5194b3(-0x77,-0xbc))?_0x2aea03[_0x16e068(-0x122,-0x164)](aAsZGZ['rNqnk'],_0x706810):UplinkLogger['warn'](_0x218381[_0x5194b3(-0xe2,-0xf0)],_0x215831);}));function _0x4b6c60(_0x260137,_0x518dea){return _0x39375f(_0x260137,_0x518dea-0x21);}window['dispa'+_0x47e337(0x46,0x62)+'ent'](new CustomEvent(_0x218381[_0x4b6c60(-0x215,-0x200)]));}function hasModule(_0x42c0f5){const _0x49c3eb={};function _0x13f45b(_0xcad98e,_0x31f932){return _0x39375f(_0x31f932,_0xcad98e-0x4a4);}_0x49c3eb[_0x13f45b(0x2bc,0x2f4)]=function(_0x254081,_0x280881){return _0x254081===_0x280881;};const _0x1ba844=_0x49c3eb;function _0x4e7906(_0x2d2eec,_0x48935c){return _0x39375f(_0x2d2eec,_0x48935c-0x56e);}return _0x1ba844[_0x13f45b(0x2bc,0x2a4)](modules[_0x42c0f5]?.[_0x13f45b(0x2bf,0x287)+_0x4e7906(0x37f,0x3a9)+'d'],!![]);}function debounce(_0x4b7577,_0x255881){const _0x25635a={'faWPx':function(_0x2d81e9){return _0x2d81e9();},'CRiFV':_0x7b5046(0x372,0x360),'tfbka':function(_0x416b1c,_0x47aa9f){return _0x416b1c(_0x47aa9f);},'oMDUR':function(_0x35b0b9,_0x3b0062,_0xa5fca8){return _0x35b0b9(_0x3b0062,_0xa5fca8);}};function _0x7b5046(_0x1f20b2,_0x589c2a){return _0xedd5dd(_0x1f20b2-0x336,_0x589c2a);}let _0x2c9401;return function _0x4f4bab(..._0x253166){function _0x569da7(_0x1114d0,_0x232399){return _0x7b5046(_0x1114d0- -0x87,_0x232399);}const _0x1e1fd1={'oPdts':function(_0x3e42c2){function _0x158d9c(_0x379160,_0x337a82){return _0x1496(_0x379160- -0x3a1,_0x337a82);}return _0x25635a[_0x158d9c(-0x30a,-0x2f5)](_0x3e42c2);}};function _0x8b79e0(_0x114e16,_0x39fd85){return _0x7b5046(_0x39fd85- -0x40f,_0x114e16);}_0x8b79e0(-0x5d,-0x64)===_0x25635a['CRiFV']?(_0x155d71[_0x569da7(0x344,0x360)+_0x569da7(0x32a,0x356)]=_0x41350f,_0x1e1fd1[_0x8b79e0(-0xa5,-0x76)](_0x4963da)):(_0x25635a[_0x569da7(0x33c,0x2fc)](clearTimeout,_0x2c9401),_0x2c9401=_0x25635a['oMDUR'](setTimeout,()=>_0x4b7577[_0x8b79e0(-0xf,-0x22)](this,_0x253166),_0x255881));};}export const UplinkCore={'state':state,'loadConfig':loadConfig,'saveConfig':saveConfig,'registerModule':registerModule,'hasModule':hasModule,'init':init,'debounce':debounce,get 'agentName'(){function _0x423393(_0x3cb9e6,_0x2f38a1){return _0x39375f(_0x2f38a1,_0x3cb9e6-0x5f7);}function _0x10cef7(_0x561e94,_0xa49cd5){return _0x39375f(_0xa49cd5,_0x561e94-0x1ea);}return state[_0x423393(0x3ef,0x413)+_0x10cef7(0x40,0x2e)];},set 'agentName'(_0x4c504c){const _0x40e3ba={'pYeWk':function(_0x4d28e2){return _0x4d28e2();}};state[_0x26ea48(-0x242,-0x210)+_0x26ea48(-0x1ad,-0x1b2)]=_0x4c504c;function _0x26ea48(_0x1e8b09,_0x530dfe){return _0x39375f(_0x1e8b09,_0x530dfe- -0x8);}function _0x6ccfe2(_0x5da12d,_0x5e6c36){return _0x39375f(_0x5da12d,_0x5e6c36- -0x54);}_0x40e3ba[_0x6ccfe2(-0x28e,-0x251)](saveConfig);},get 'gatewayUrl'(){function _0x510c22(_0x5a109c,_0x155a7a){return _0x39375f(_0x155a7a,_0x5a109c-0x249);}function _0x58ba13(_0x26c000,_0x324307){return _0x39375f(_0x26c000,_0x324307-0x62);}return state[_0x58ba13(-0x178,-0x178)+_0x510c22(0x55,0x38)];},set 'gatewayUrl'(_0x1c3978){state[_0x5e8d74(-0x17d,-0x13b)+_0x35b231(-0x235,-0x241)]=_0x1c3978;function _0x5e8d74(_0x51558a,_0x31b9de){return _0x39375f(_0x31b9de,_0x51558a-0x5d);}function _0x35b231(_0x11f77b,_0x4fd001){return _0x39375f(_0x11f77b,_0x4fd001- -0x4d);}saveConfig();},get 'audioResponses'(){function _0x9b1617(_0x3e9521,_0x27e9ac){return _0xedd5dd(_0x27e9ac-0x265,_0x3e9521);}function _0x221f7c(_0x5774a4,_0x47bc3a){return _0xedd5dd(_0x47bc3a-0x39e,_0x5774a4);}return state[_0x9b1617(0x292,0x29d)+'Respo'+_0x9b1617(0x32a,0x2e3)];},set 'audioResponses'(_0x347712){function _0x45466c(_0x4c01cd,_0x189cb1){return _0x39375f(_0x189cb1,_0x4c01cd-0x15b);}function _0x3e1a65(_0x164efa,_0xd9f963){return _0x39375f(_0x164efa,_0xd9f963-0x4aa);}const _0x41f42c={'iEdVV':function(_0x39af2e){return _0x39af2e();}};state[_0x45466c(-0xdc,-0xc3)+_0x45466c(-0x56,-0x17)+_0x45466c(-0x96,-0x8b)]=_0x347712,_0x41f42c[_0x3e1a65(0x2a5,0x270)](saveConfig);},get 'encryptionEnabled'(){function _0x1f682f(_0x358839,_0x819681){return _0x39375f(_0x358839,_0x819681- -0x39);}function _0x3113f2(_0x163cc7,_0x1b3a16){return _0x39375f(_0x163cc7,_0x1b3a16-0x1be);}return state[_0x3113f2(-0x1f,-0x5f)+_0x3113f2(-0x5b,-0x13)+_0x3113f2(-0x2f,-0x4b)+'ed'];},set 'encryptionEnabled'(_0x3e3c28){const _0x4de69f={'acVDx':function(_0x1c0e19){return _0x1c0e19();}};function _0x544267(_0x33b281,_0x1eb7ed){return _0x39375f(_0x33b281,_0x1eb7ed- -0xa2);}function _0x3567ec(_0x4e9812,_0x5b536e){return _0x39375f(_0x5b536e,_0x4e9812-0x34f);}state[_0x3567ec(0x132,0x16e)+'ption'+_0x544267(-0x2d5,-0x2ab)+'ed']=_0x3e3c28,_0x4de69f[_0x3567ec(0x17c,0x17c)](saveConfig);},get 'mode'(){function _0x475e6b(_0x56727f,_0x431a5d){return _0x39375f(_0x56727f,_0x431a5d-0x651);}return state[_0x475e6b(0x449,0x47c)];},set 'mode'(_0x22bf67){function _0x141673(_0x4f550f,_0x2d5040){return _0xedd5dd(_0x2d5040-0x232,_0x4f550f);}state[_0x141673(0x302,0x2cc)]=_0x22bf67;},get 'chatState'(){return state['chatS'+'tate'];},set 'chatState'(_0x17b568){function _0xc6ee05(_0x23875e,_0x52bcc5){return _0xedd5dd(_0x52bcc5- -0x387,_0x23875e);}state['chatS'+_0xc6ee05(-0x307,-0x31e)]=_0x17b568;}};export{state,loadConfig,saveConfig,registerModule,hasModule,init,debounce};window[_0x39375f(-0x240,-0x21e)+_0x39375f(-0x15f,-0x1a7)]=UplinkCore;function _0x5139(){const _0x402955=['oPdts','ializ','ed\x20to','Enabl','agent','loadi','tate','eOqhu','le\x20','ion\x20f','tant','ker','State','\x20Modu','jFEYq','pYeWk','xrpKE','\x20Init','QVIQZ','\x20regi','bhbGY','kUQhh','getIt','\x20Serv','ayUrl','3519435RDDbRH','sPNWk','nses','DactN','ntent','const','sword','gRhiP','yatZc','servi','text','eGZlL','uplin','\x20load','initi','TMWMA','iuPhJ','tfbka','168OEIyGD','ice\x20W','aqals','FEqsl','\x20Read','then','KbFov','gatew','bEnkJ','mLCEp','debug','catch','mode','6PshNMj','acVDx','ing..','ption','KDskC','tFFaT','\x20init','ailed','VhVxF','Assis','ter','ZZOBu','tchEv','strat','curre','alize','KGQZy','Loade','ntPas','strin','OFLLl','chatS','QEffT','entLi','stene','16143ttWlVm','loade','650202FlTrQr','apply','ructo','fig','HXVnh','parse','push','k:rea','Respo','MKMGu','862675Nstuwp','scope','zuMJH','26488824cZLnUK','gify','Name','\x20fail','k-con','kCore','toStr','VOhIB','\x20Fail','gjtMV','iEdVV','dQHNB','error','audio','26037POliUY','LWUeI','4WjtlfK','HKiqZ','10rCzsXp','DOMCo','nyZES','EpuWH','290IBvTwf','GsuFE','xjUou',')+)+)','HyYDe','Core:','oeoEW','(((.+','HTEfI','yJmbD','RRtRh','NvJRa','ceWor','zHBrs','forEa','UNuGg','Uplin','encry','orker','XnFtv','stere','Jmnyb','6723213BWyfaN','ing','jxEwT','null','\x20conf','NPNMg','rNqnk','faWPx','uvgMS','regis','updat','searc'];_0x5139=function(){return _0x402955;};return _0x5139();}function _0x39375f(_0x4737a3,_0x566f3d){return _0x1496(_0x566f3d- -0x2a8,_0x4737a3);}document['ready'+_0xedd5dd(0x6f,0x78)]===_0x39375f(-0x235,-0x207)+'ng'?document['addEv'+_0xedd5dd(0xb2,0xed)+_0x39375f(-0x1a6,-0x1bc)+'r'](_0xedd5dd(0x3e,0x2)+_0xedd5dd(0x80,0x8d)+_0xedd5dd(0xac,0xd1)+'d',init):setTimeout(init,-0x55c+-0xb46+0x10ac);
1
+ (function(_0x2420ed,_0x245f90){function _0x82b4d(_0xbd0dda,_0x4737e3){return _0x42f2(_0xbd0dda- -0x2f,_0x4737e3);}function _0x5d4df2(_0x3efd26,_0xcf174b){return _0x42f2(_0xcf174b- -0x19,_0x3efd26);}const _0x20253f=_0x2420ed();while(!![]){try{const _0x361154=parseInt(_0x82b4d(0x1aa,0x1ab))/(0x808+-0x1*-0x229b+0xe36*-0x3)+-parseInt(_0x5d4df2(0x1c8,0x1c8))/(0x1794+-0xe4a+0x6*-0x18c)*(parseInt(_0x82b4d(0x172,0x194))/(0xb*0x2b3+0x45*-0x13+-0x188f))+-parseInt(_0x82b4d(0x144,0x12a))/(0x14d5+0x188b+-0x2d5c)+parseInt(_0x5d4df2(0xf5,0x13b))/(-0x67a+0x9ca+0x34b*-0x1)*(-parseInt(_0x82b4d(0x12c,0x133))/(0x250c+0xa88+-0x1*0x2f8e))+parseInt(_0x5d4df2(0x141,0x17c))/(-0x110d+0x3*-0x5db+0xb5*0x31)*(-parseInt(_0x5d4df2(0x1a3,0x1c6))/(-0x17e*0x3+-0xe0b+0x62f*0x3))+parseInt(_0x5d4df2(0x167,0x146))/(-0x25be+-0xacd*0x2+0x3b61)*(parseInt(_0x5d4df2(0x1c8,0x18b))/(0x282*0xb+-0x1*0xc6d+-0xf1f))+parseInt(_0x5d4df2(0x18c,0x198))/(-0x22d3+-0x27d+0x255b)*(parseInt(_0x82b4d(0x195,0x1a5))/(-0x11a7*-0x1+0xe93+-0x202e));if(_0x361154===_0x245f90)break;else _0x20253f['push'](_0x20253f['shift']());}catch(_0x19b265){_0x20253f['push'](_0x20253f['shift']());}}}(_0x20ba,0x1*0x10fe52+-0xfffbe+0xce5dc));const _0x3b1d51=(function(){function _0x5ad265(_0x53f10c,_0x571c66){return _0x42f2(_0x571c66- -0x10a,_0x53f10c);}function _0x67ac57(_0x54f1c6,_0x2b8737){return _0x42f2(_0x2b8737-0x2c9,_0x54f1c6);}const _0x1aae68={'gTFwp':function(_0x468cab,_0x51a8c6){return _0x468cab===_0x51a8c6;},'XpSEB':_0x67ac57(0x490,0x44e),'DrwFk':function(_0x45ed87){return _0x45ed87();},'zighu':function(_0x364109,_0x12e690){return _0x364109===_0x12e690;},'CJzjh':_0x67ac57(0x4ba,0x4a5),'ShUfo':'iBVLi'};let _0x3813d8=!![];return function(_0xadd4f2,_0x29b2eb){function _0x4c25bd(_0x266783,_0x59a28e){return _0x67ac57(_0x59a28e,_0x266783- -0x638);}const _0x4cb60e={'DaALd':function(_0x5ae670){function _0x453639(_0x45e7ca,_0x2095c3){return _0x42f2(_0x2095c3-0x31a,_0x45e7ca);}return _0x1aae68[_0x453639(0x4ae,0x4aa)](_0x5ae670);},'GDUUT':function(_0x261009){return _0x261009();}};function _0x42d089(_0x260288,_0x16ad45){return _0x67ac57(_0x260288,_0x16ad45- -0x424);}if(_0x1aae68[_0x4c25bd(-0x191,-0x1cd)](_0x1aae68[_0x4c25bd(-0x20e,-0x24c)],_0x1aae68[_0x42d089(0x19,0x37)]))_0xd14798[_0x4c25bd(-0x206,-0x237)+_0x4c25bd(-0x1a0,-0x167)]=_0x5a6369,_0x4cb60e[_0x4c25bd(-0x204,-0x1fa)](_0x3207b2);else{const _0x39aa66=_0x3813d8?function(){function _0x128df5(_0x436894,_0xa7556e){return _0x42d089(_0x436894,_0xa7556e- -0x4c);}function _0x43a01d(_0x1fd204,_0x166b15){return _0x42d089(_0x166b15,_0x1fd204- -0x6a);}if(_0x1aae68['gTFwp'](_0x1aae68[_0x128df5(-0x15,-0x39)],'EGlBi')){if(_0x29b2eb){const _0x2fe40b=_0x29b2eb[_0x128df5(-0x29,-0x31)](_0xadd4f2,arguments);return _0x29b2eb=null,_0x2fe40b;}}else _0x455740[_0x128df5(-0x19,0xc)+_0x128df5(-0x1f,0x1)+'nses']=_0x345e7c,_0x4cb60e[_0x43a01d(0x12,-0x8)](_0x510291);}:function(){};return _0x3813d8=![],_0x39aa66;}};}()),_0x53ba49=_0x3b1d51(this,function(){const _0x333779={};_0x333779['TVYbu']=_0x145a5d(0x5d,0xa1)+_0x145a5d(0x95,0x69)+'+$';const _0x480b40=_0x333779;function _0x3469d4(_0x496991,_0x80f317){return _0x42f2(_0x496991- -0xf2,_0x80f317);}function _0x145a5d(_0x48cc3a,_0x36382d){return _0x42f2(_0x36382d- -0x11f,_0x48cc3a);}return _0x53ba49['toStr'+_0x3469d4(0xac,0xe0)]()[_0x145a5d(0x83,0x6c)+'h'](_0x480b40[_0x3469d4(0xb5,0xf8)])[_0x3469d4(0x82,0xb2)+'ing']()[_0x145a5d(0x7e,0x91)+_0x145a5d(0xa9,0xb5)+'r'](_0x53ba49)[_0x3469d4(0x99,0x9d)+'h'](_0x480b40[_0x3469d4(0xb5,0xfa)]);});_0x53ba49();import{UplinkLogger}from'./logger.js';const _0x468e78={};_0x468e78[_0x4dd064(0x5d,0xa5)+_0x4dd064(0x13f,0x10b)]='Assis'+_0x1f1988(-0x92,-0xda),_0x468e78[_0x4dd064(0xad,0xba)+_0x4dd064(0xe0,0xd6)]='',_0x468e78['audio'+_0x4dd064(0xed,0xe4)+_0x4dd064(0x70,0x8d)]=!![],_0x468e78['encry'+_0x4dd064(0x91,0xa9)+_0x1f1988(-0xf2,-0xd6)+'ed']=![],_0x468e78[_0x1f1988(-0x12e,-0x109)+_0x4dd064(0x8c,0xa1)+_0x4dd064(0x140,0x108)]=null;function _0x4dd064(_0x5aa124,_0x1489c2){return _0x42f2(_0x1489c2- -0xc4,_0x5aa124);}_0x468e78[_0x1f1988(-0x86,-0xa9)]=_0x1f1988(-0xce,-0x10a),_0x468e78['chatS'+'tate']=_0x4dd064(0xd6,0xe5);const state=_0x468e78,modules={},initQueue=[];let initialized=![];function loadConfig(){function _0x21d7fb(_0x4b63c9,_0x5784c4){return _0x4dd064(_0x5784c4,_0x4b63c9-0x417);}function _0x2dde65(_0x25609e,_0x5b036e){return _0x4dd064(_0x5b036e,_0x25609e-0x49c);}const _0x3e810a={};_0x3e810a['ElCwL']=_0x2dde65(0x53f,0x56f)+_0x21d7fb(0x4eb,0x504)+_0x21d7fb(0x521,0x545),_0x3e810a[_0x21d7fb(0x4b1,0x4f7)]='Core:'+_0x21d7fb(0x53f,0x500)+_0x2dde65(0x56c,0x5a1)+_0x2dde65(0x597,0x548)+_0x2dde65(0x573,0x526)+'ig',_0x3e810a[_0x2dde65(0x575,0x576)]=function(_0x367a58,_0x4c0e7e){return _0x367a58===_0x4c0e7e;},_0x3e810a[_0x21d7fb(0x537,0x50b)]=_0x21d7fb(0x518,0x506),_0x3e810a['zxghb']='null',_0x3e810a[_0x21d7fb(0x50b,0x544)]=function(_0x5ada82,_0x2b308f){return _0x5ada82!==_0x2b308f;},_0x3e810a[_0x2dde65(0x54d,0x55a)]=function(_0x315e5c,_0x2990b7){return _0x315e5c===_0x2990b7;},_0x3e810a['lyMMZ']=_0x21d7fb(0x4b9,0x501),_0x3e810a[_0x2dde65(0x535,0x4f8)]=_0x2dde65(0x542,0x54d)+_0x21d7fb(0x53f,0x520)+_0x21d7fb(0x4e7,0x4e8)+'\x20load'+_0x2dde65(0x573,0x5ba)+'ig';const _0xd4126b=_0x3e810a;try{if(_0xd4126b[_0x2dde65(0x575,0x5b7)](_0x21d7fb(0x518,0x4cd),_0xd4126b[_0x21d7fb(0x537,0x51a)])){const _0x133b83=JSON[_0x2dde65(0x5b0,0x5e0)](localStorage[_0x2dde65(0x5c1,0x58b)+'em']('uplin'+_0x21d7fb(0x4eb,0x4bc)+'fig')||_0xd4126b['zxghb']);return _0x133b83&&(state['agent'+'Name']=_0x133b83[_0x21d7fb(0x4bc,0x479)+'Name']||_0x21d7fb(0x528,0x4e8)+_0x21d7fb(0x4fd,0x507),state[_0x2dde65(0x556,0x599)+_0x2dde65(0x572,0x5b8)]=_0x133b83[_0x21d7fb(0x4d1,0x4d1)+_0x21d7fb(0x4ed,0x4d0)]||'',state[_0x21d7fb(0x506,0x554)+_0x21d7fb(0x4fb,0x4ae)+_0x21d7fb(0x4a4,0x4e8)]=_0xd4126b['HPAum'](_0x133b83[_0x21d7fb(0x506,0x4b7)+_0x2dde65(0x580,0x54a)+'nses'],undefined)?_0x133b83[_0x21d7fb(0x506,0x53e)+_0x21d7fb(0x4fb,0x4ea)+_0x2dde65(0x529,0x578)]:!![],state[_0x21d7fb(0x4dc,0x49c)+_0x2dde65(0x545,0x573)+_0x2dde65(0x586,0x5a1)+'ed']=_0x133b83[_0x21d7fb(0x4dc,0x4b2)+_0x21d7fb(0x4c0,0x4d5)+'Enabl'+'ed']||![]),_0x133b83;}else try{const _0x667c8d={};_0x667c8d['agent'+'Name']=_0x2c1f60['agent'+'Name'],_0x667c8d[_0x2dde65(0x556,0x559)+'ayUrl']=_0x576f81[_0x2dde65(0x556,0x566)+'ayUrl'],_0x667c8d[_0x21d7fb(0x506,0x4fd)+_0x2dde65(0x580,0x5c3)+_0x2dde65(0x529,0x560)]=_0x5c2bcc[_0x21d7fb(0x506,0x4c5)+_0x2dde65(0x580,0x571)+'nses'],_0x667c8d[_0x21d7fb(0x4dc,0x50f)+'ption'+_0x21d7fb(0x501,0x50d)+'ed']=_0x20c771[_0x21d7fb(0x4dc,0x4d7)+'ption'+_0x21d7fb(0x501,0x51d)+'ed'],_0x124d55[_0x2dde65(0x551,0x53a)+'em'](_0xd4126b[_0x2dde65(0x5b8,0x5c3)],_0x24f8e3[_0x21d7fb(0x4b3,0x4c1)+'gify'](_0x667c8d));}catch(_0x409d2d){_0x5cb47e[_0x21d7fb(0x538,0x523)](_0xd4126b[_0x2dde65(0x536,0x545)],_0x409d2d);}}catch(_0x407905){if(_0xd4126b[_0x21d7fb(0x4c8,0x494)](_0x21d7fb(0x514,0x562),_0xd4126b['lyMMZ']))_0x112d54[_0x2dde65(0x5bd,0x5ee)]('Core:'+_0x21d7fb(0x4f6,0x543)+_0x21d7fb(0x4da,0x4d4)+_0x193366+(_0x2dde65(0x566,0x53e)+_0x21d7fb(0x4e7,0x4a2)+_0x21d7fb(0x508,0x503)+_0x2dde65(0x5c3,0x5e5)+'e'),_0x31ab11);else return UplinkLogger[_0x21d7fb(0x538,0x535)](_0xd4126b[_0x2dde65(0x535,0x56e)],_0x407905),null;}}function saveConfig(){const _0x1d10dc={};function _0x36ecc7(_0x20e211,_0x2a8df7){return _0x4dd064(_0x2a8df7,_0x20e211- -0xf0);}_0x1d10dc[_0x36ecc7(-0x43,-0x13)]=_0x2c31ea(0x11f,0xee);function _0x2c31ea(_0x3c0456,_0xc931b6){return _0x4dd064(_0x3c0456,_0xc931b6-0x40);}_0x1d10dc[_0x36ecc7(-0x32,-0x31)]=_0x36ecc7(0x33,0x9);const _0x371360=_0x1d10dc;try{const _0x5da255={};_0x5da255[_0x2c31ea(0xcc,0xe5)+_0x2c31ea(0x11e,0x14b)]=state[_0x2c31ea(0xa7,0xe5)+_0x2c31ea(0x108,0x14b)],_0x5da255[_0x36ecc7(-0x36,-0x3f)+'ayUrl']=state['gatew'+'ayUrl'],_0x5da255[_0x2c31ea(0x107,0x12f)+_0x2c31ea(0x14f,0x124)+_0x2c31ea(0xb1,0xcd)]=state[_0x36ecc7(-0x1,0x34)+_0x36ecc7(-0xc,0x29)+_0x36ecc7(-0x63,-0x4f)],_0x5da255[_0x36ecc7(-0x2b,-0x4b)+_0x36ecc7(-0x47,-0xf)+_0x2c31ea(0x13b,0x12a)+'ed']=state[_0x2c31ea(0xd7,0x105)+'ption'+_0x36ecc7(-0x6,0x47)+'ed'],localStorage[_0x2c31ea(0xc3,0xf5)+'em']('uplin'+_0x36ecc7(-0x1c,-0x31)+'fig',JSON[_0x36ecc7(-0x54,-0x2e)+_0x2c31ea(0x140,0xf9)](_0x5da255));}catch(_0x388781){_0x371360['YMCja']===_0x371360[_0x2c31ea(0x123,0xfe)]?_0x1027f0[_0x2c31ea(0x185,0x157)]=_0xa05773:UplinkLogger[_0x36ecc7(0x31,0x77)](_0x2c31ea(0xee,0xe6)+'\x20Fail'+_0x2c31ea(0x11e,0x110)+_0x2c31ea(0x133,0x13b)+_0x36ecc7(-0x19,-0x54)+'ig',_0x388781);}}function _0x42f2(_0x438ff9,_0x3d2f76){_0x438ff9=_0x438ff9-(0x4e9*0x1+-0x1*0x16e5+0x51*0x3d);const _0x333413=_0x20ba();let _0x414b0a=_0x333413[_0x438ff9];return _0x414b0a;}function _0x1f1988(_0x4db74b,_0x458f89){return _0x42f2(_0x458f89- -0x284,_0x4db74b);}function registerModule(_0xd006d9,_0x3d66f3){const _0x4643f0={'AAZDO':function(_0x41c9f0,_0x12b004,_0x1a39ba){return _0x41c9f0(_0x12b004,_0x1a39ba);},'aCnPU':function(_0x2c07aa,_0x303e61){return _0x2c07aa===_0x303e61;},'jRVqR':_0x7fb085(-0x6,0x22),'xriOF':function(_0x26fe9a,_0xcd6170){return _0x26fe9a===_0xcd6170;},'HxAdD':_0x7fb085(0x10,0x3e),'gBZgS':function(_0x29962e){return _0x29962e();},'TQSaB':function(_0x83f1e3,_0x3a940b){return _0x83f1e3!==_0x3a940b;},'epuGP':_0x40f5eb(-0x34,-0x3a),'sQONx':_0x7fb085(0x1c,0x23),'MuuBW':_0x7fb085(-0x74,-0x40),'RjNTU':'cwOIz'};function _0x7fb085(_0x453aa3,_0x52999a){return _0x1f1988(_0x453aa3,_0x52999a-0xdc);}const _0x18ad7a={};_0x18ad7a['loade'+'d']=!![];function _0x40f5eb(_0x5d693f,_0x49be98){return _0x1f1988(_0x49be98,_0x5d693f-0xed);}_0x18ad7a[_0x7fb085(-0x78,-0x30)+'alize'+'d']=![],modules[_0xd006d9]=_0x18ad7a;if(_0x3d66f3){if(_0x4643f0[_0x40f5eb(0x30,-0x7)](_0x7fb085(0x73,0x29),_0x4643f0[_0x7fb085(-0x72,-0x4e)]))_0x24c70b[_0x40f5eb(0x43,0x67)+_0x7fb085(-0x2,0x45)]=_0x5a5b38;else{if(initialized)try{if(_0x4643f0[_0x7fb085(0x2e,-0x1e)](_0x7fb085(0x83,0x3e),_0x4643f0[_0x7fb085(0xe,0x35)]))_0x4643f0['gBZgS'](_0x3d66f3),modules[_0xd006d9][_0x40f5eb(-0x1f,-0x58)+_0x7fb085(-0x71,-0x24)+'d']=!![];else{let _0x23f136;return function _0x135908(..._0x275192){_0x164ee2(_0x23f136);function _0x203f3e(_0x2063e0,_0x1b8005){return _0x7fb085(_0x2063e0,_0x1b8005-0x3cd);}function _0x5266f0(_0x35c3bb,_0x18c2d6){return _0x7fb085(_0x18c2d6,_0x35c3bb-0x403);}_0x23f136=_0x4643f0[_0x203f3e(0x3cc,0x3c4)](_0x548455,()=>_0x225e39[_0x203f3e(0x350,0x39b)](this,_0x275192),_0x373b90);};}}catch(_0x133107){if(_0x4643f0['TQSaB'](_0x4643f0[_0x7fb085(0x3d,0x40)],_0x4643f0[_0x40f5eb(0x2,0x17)]))console['error'](_0x40f5eb(-0x2d,-0x78)+_0x40f5eb(0xc,0x50)+_0x40f5eb(-0x10,-0x30)+_0xd006d9+('\x20fail'+_0x40f5eb(-0x3,-0x18)+'\x20init'+'ializ'+'e'),_0x133107);else return _0x8d415['gatew'+_0x7fb085(-0x10,-0xe)];}else{if(_0x4643f0['MuuBW']!==_0x4643f0[_0x40f5eb(0x2b,0x40)]){const _0x23a740={};_0x23a740[_0x40f5eb(0x2c,0x62)]=_0xd006d9,_0x23a740['fn']=_0x3d66f3,initQueue[_0x40f5eb(-0x8,0xd)](_0x23a740);}else{const _0x5553e1={};_0x5553e1[_0x40f5eb(0x2c,0x27)]=_0x22f52e,_0x5553e1['fn']=_0x544ea8,_0x42c35a[_0x7fb085(-0x38,-0x19)](_0x5553e1);}}}}}function init(){const _0x212851={'ToTZu':'Core:'+_0x455840(0x26c,0x29f)+_0x455840(0x305,0x2d9)+_0x455840(0x28d,0x2d0)+_0x41a55b(0x254,0x27b)+'stere'+'d','fUnPQ':function(_0x3d3bd1,_0x6787dc,_0xcd17aa){return _0x3d3bd1(_0x6787dc,_0xcd17aa);},'jEFZS':function(_0x293cca,_0x2d40d2){return _0x293cca*_0x2d40d2;},'pNUBu':function(_0x2aeae0){return _0x2aeae0();},'DZfIw':function(_0x5bc936,_0x4e85f8){return _0x5bc936!==_0x4e85f8;},'OaXmX':_0x41a55b(0x245,0x21a),'PETZv':_0x41a55b(0x216,0x1e0),'aTNiu':function(_0x53df67){return _0x53df67();},'PYvph':_0x41a55b(0x253,0x22c),'oURoW':_0x41a55b(0x204,0x22a)+_0x41a55b(0x286,0x28c)+_0x41a55b(0x22e,0x247)+_0x455840(0x291,0x272)+_0x41a55b(0x235,0x1f3)+'ig','jGuqh':'Gdrbi','jiUtt':function(_0x57ed7f,_0x69ecd9,_0x318287){return _0x57ed7f(_0x69ecd9,_0x318287);},'QCJCZ':_0x41a55b(0x204,0x1ba)+'\x20Serv'+_0x455840(0x2a6,0x2d9)+_0x41a55b(0x267,0x2a6)+_0x455840(0x2ea,0x2bd)+_0x41a55b(0x1ef,0x1c3)+_0x455840(0x286,0x2b5)+_0x455840(0x2a8,0x2af),'sTPsO':_0x41a55b(0x204,0x1cd)+_0x41a55b(0x22d,0x269)+_0x41a55b(0x285,0x2b1)+_0x41a55b(0x23f,0x23a)+'.','chZku':function(_0x5ddf89,_0x225267){return _0x5ddf89 in _0x225267;},'vyAoL':'servi'+_0x455840(0x282,0x255)+_0x455840(0x2cf,0x286),'QGsZK':_0x455840(0x293,0x2c1)+'s'};function _0x41a55b(_0x3b69ac,_0x1c3cb3){return _0x4dd064(_0x1c3cb3,_0x3b69ac-0x15e);}function _0x455840(_0x231fd1,_0x1eec6e){return _0x4dd064(_0x231fd1,_0x1eec6e-0x1c7);}if(initialized)return;UplinkLogger['debug'](_0x212851[_0x455840(0x2ff,0x2d5)]),_0x212851[_0x41a55b(0x263,0x222)](loadConfig),initQueue[_0x41a55b(0x26d,0x223)+'ch'](({name:_0x44f983,fn:_0x459f99})=>{function _0x22ec5d(_0x363889,_0x4d9727){return _0x41a55b(_0x4d9727- -0x116,_0x363889);}function _0x37dbd3(_0x2beaaa,_0x8c6bf6){return _0x41a55b(_0x8c6bf6-0x120,_0x2beaaa);}if(_0x212851[_0x22ec5d(0x16f,0x141)](_0x212851['OaXmX'],_0x212851[_0x22ec5d(0x12c,0x167)]))try{_0x212851[_0x22ec5d(0x134,0x115)](_0x459f99),modules[_0x44f983][_0x22ec5d(0xbf,0xfc)+'alize'+'d']=!![],UplinkLogger[_0x22ec5d(0x11b,0x111)](_0x37dbd3(0x307,0x324)+_0x22ec5d(0x14f,0x127)+_0x22ec5d(0x10a,0x10b)+_0x44f983+(_0x37dbd3(0x395,0x36f)+_0x22ec5d(0x14a,0x16f)+'ed'));}catch(_0x4bb754){_0x212851[_0x37dbd3(0x345,0x310)]===_0x212851[_0x22ec5d(0xb8,0xda)]?UplinkLogger[_0x22ec5d(0x150,0x169)](_0x22ec5d(0x125,0xee)+_0x22ec5d(0x176,0x127)+'le\x20'+_0x44f983+(_0x22ec5d(0x11d,0x112)+'ed\x20to'+_0x37dbd3(0x39e,0x36f)+_0x37dbd3(0x38b,0x3a5)+'e'),_0x4bb754):(_0x35ad96[_0x37dbd3(0x372,0x347)](_0x212851[_0x37dbd3(0x359,0x36e)],_0x250950['scope']),_0x190e8d['updat'+'e'](),_0x212851[_0x37dbd3(0x310,0x351)](_0x46f2a1,()=>_0x346064[_0x22ec5d(0x145,0x10a)+'e'](),_0x212851['jEFZS']((-0x3ac+0x1d5*0x10+-0x199f)*(0x241e+-0x216a+-0x278),-0x2*-0xb3e+0x1060+-0x2*0x117a)));}else BuZdNN['pNUBu'](_0x3408e6),_0x19d5d3[_0x503252]['initi'+'alize'+'d']=!![];}),initialized=!![],UplinkLogger['debug'](_0x455840(0x273,0x26d)+_0x41a55b(0x1f3,0x1b6)+'y'),_0x212851[_0x41a55b(0x256,0x214)](_0x212851[_0x455840(0x2a5,0x2ed)],navigator)&&navigator['servi'+_0x455840(0x26e,0x255)+_0x455840(0x2bc,0x286)][_0x41a55b(0x1f2,0x227)+_0x41a55b(0x250,0x20b)](_0x212851[_0x41a55b(0x249,0x252)])[_0x455840(0x249,0x25a)](_0x2bf216=>{function _0x2af2c1(_0x47d6f8,_0x16ddaa){return _0x455840(_0x16ddaa,_0x47d6f8- -0xf4);}function _0xdfb1d3(_0x3df22f,_0x1d318e){return _0x455840(_0x3df22f,_0x1d318e-0x1cc);}const _0x36452a={};_0x36452a[_0xdfb1d3(0x486,0x471)]=_0x212851[_0x2af2c1(0x1bc,0x202)];const _0x2b52ee=_0x36452a;if('Gdrbi'!==_0x212851['jGuqh'])return _0x25c2ea['error'](itxraC['PjpFp'],_0x5338e4),null;else UplinkLogger['debug'](_0x212851[_0x2af2c1(0x1c3,0x18f)],_0x2bf216[_0xdfb1d3(0x48d,0x495)]),_0x2bf216['updat'+'e'](),_0x212851[_0x2af2c1(0x17f,0x1ca)](setInterval,()=>_0x2bf216['updat'+'e'](),_0x212851[_0x2af2c1(0x18e,0x199)](_0x212851[_0xdfb1d3(0x453,0x44e)](0x43*-0x1d+0x6d*-0x21+0x5*0x455,0x1*-0x1184+0x1*0x125+0x109b),0xdf8+0x1c99*0x1+-0x26a9));})[_0x455840(0x237,0x27a)](_0x4f5993=>{UplinkLogger['warn'](_0x212851['QCJCZ'],_0x4f5993);}),window[_0x41a55b(0x1fe,0x1e1)+'tchEv'+_0x41a55b(0x21a,0x1e7)](new CustomEvent(_0x455840(0x28d,0x26a)+_0x41a55b(0x230,0x256)+'dy'));}function hasModule(_0x3ef680){function _0x59bbfb(_0x361116,_0x1c2af7){return _0x4dd064(_0x1c2af7,_0x361116-0x19f);}function _0x5f30e9(_0xc13009,_0x14f6ae){return _0x4dd064(_0xc13009,_0x14f6ae- -0x214);}const _0x245c1a={};_0x245c1a[_0x5f30e9(-0x12f,-0x121)]=function(_0x720fc3,_0x1b3369){return _0x720fc3===_0x1b3369;};const _0x35d124=_0x245c1a;return _0x35d124[_0x59bbfb(0x292,0x28d)](modules[_0x3ef680]?.[_0x59bbfb(0x253,0x275)+_0x59bbfb(0x25f,0x268)+'d'],!![]);}function debounce(_0x1504c7,_0x5942ac){const _0x257015={'BEDSW':_0x431950(-0x190,-0x169),'KJWCg':function(_0x41a060,_0xc666c5){return _0x41a060(_0xc666c5);}};function _0x431950(_0x40479a,_0x3ccbb6){return _0x1f1988(_0x40479a,_0x3ccbb6- -0x66);}let _0x342893;return function _0x1b7010(..._0x2a7b58){function _0x2d55f3(_0x43822a,_0x322634){return _0x431950(_0x322634,_0x43822a-0x53b);}function _0x229690(_0x491540,_0x23bce){return _0x431950(_0x491540,_0x23bce-0x164);}_0x257015[_0x2d55f3(0x3f7,0x3f5)]===_0x257015[_0x2d55f3(0x3f7,0x3ea)]?(_0x257015['KJWCg'](clearTimeout,_0x342893),_0x342893=setTimeout(()=>_0x1504c7[_0x229690(0x34,-0x10)](this,_0x2a7b58),_0x5942ac)):(_0x40dcb1[_0x229690(-0x3a,-0x8)+_0x229690(0x4b,0x14)]=_0x1eff60,_0x4af1cc());};}export const UplinkCore={'state':state,'loadConfig':loadConfig,'saveConfig':saveConfig,'registerModule':registerModule,'hasModule':hasModule,'init':init,'debounce':debounce,get 'agentName'(){return state['agent'+'Name'];},set 'agentName'(_0x34bbd6){function _0x25e945(_0x542ecc,_0x2f4721){return _0x4dd064(_0x2f4721,_0x542ecc- -0x2bd);}const _0xd5062d={'CMFAU':function(_0x44df68){return _0x44df68();}};function _0x1a5c28(_0x594c4a,_0x2b824b){return _0x4dd064(_0x594c4a,_0x2b824b- -0x140);}state[_0x1a5c28(-0x4c,-0x9b)+_0x1a5c28(-0x82,-0x35)]=_0x34bbd6,_0xd5062d[_0x25e945(-0x1b1,-0x1eb)](saveConfig);},get 'gatewayUrl'(){function _0x3316ce(_0x26255b,_0x3d8933){return _0x1f1988(_0x26255b,_0x3d8933-0xb9);}function _0x7a2ebb(_0x3152f8,_0x2d7ac2){return _0x1f1988(_0x3152f8,_0x2d7ac2-0x42b);}return state[_0x7a2ebb(0x2fa,0x325)+_0x7a2ebb(0x333,0x341)];},set 'gatewayUrl'(_0x2bfd38){const _0xc2fc29={'vwdKz':function(_0x4298e0){return _0x4298e0();}};function _0x2c38a7(_0x5a3e19,_0x33b2d5){return _0x4dd064(_0x33b2d5,_0x5a3e19-0x3e6);}state['gatew'+'ayUrl']=_0x2bfd38,_0xc2fc29[_0x2c38a7(0x47e,0x4ba)](saveConfig);},get 'audioResponses'(){function _0x2c97b2(_0x4cf346,_0x1a4007){return _0x4dd064(_0x1a4007,_0x4cf346- -0x1a9);}function _0x2cc0a1(_0x44372f,_0x591c80){return _0x4dd064(_0x591c80,_0x44372f-0x2d1);}return state[_0x2c97b2(-0xba,-0xf7)+'Respo'+_0x2cc0a1(0x35e,0x35f)];},set 'audioResponses'(_0x8d1cd1){const _0x3b736e={'xasHb':function(_0x38ab23){return _0x38ab23();}};function _0x386494(_0x58504f,_0x2202f1){return _0x4dd064(_0x58504f,_0x2202f1-0x463);}state[_0x4fa2c5(-0x1fd,-0x1e9)+_0x4fa2c5(-0x232,-0x1f4)+_0x386494(0x4cb,0x4f0)]=_0x8d1cd1;function _0x4fa2c5(_0x4e37a2,_0x523d9a){return _0x4dd064(_0x4e37a2,_0x523d9a- -0x2d8);}_0x3b736e[_0x386494(0x4ea,0x52b)](saveConfig);},get 'encryptionEnabled'(){function _0x1695fe(_0x2fa845,_0x5c34f4){return _0x1f1988(_0x5c34f4,_0x2fa845-0x84);}function _0x6755b7(_0x1078c1,_0x923c1){return _0x1f1988(_0x923c1,_0x1078c1-0x19c);}return state[_0x6755b7(0xa1,0x5a)+_0x1695fe(-0x93,-0xbf)+_0x1695fe(-0x52,-0x9f)+'ed'];},set 'encryptionEnabled'(_0x5b5037){function _0x374414(_0x326196,_0x32b33a){return _0x4dd064(_0x326196,_0x32b33a- -0x48);}function _0x5c7330(_0x252d82,_0x15f953){return _0x4dd064(_0x252d82,_0x15f953-0x21f);}const _0x155b9e={'jvPcB':function(_0x541879){return _0x541879();}};state[_0x374414(0xa7,0x7d)+_0x374414(0x4e,0x61)+'Enabl'+'ed']=_0x5b5037,_0x155b9e[_0x374414(0x28,0x56)](saveConfig);},get 'mode'(){function _0x302d63(_0x46c06,_0xba6168){return _0x1f1988(_0x46c06,_0xba6168-0x33c);}return state[_0x302d63(0x2cc,0x293)];},set 'mode'(_0x2d9691){function _0x2b9726(_0x4d253c,_0x21d6fd){return _0x4dd064(_0x4d253c,_0x21d6fd- -0x255);}state[_0x2b9726(-0x138,-0x13e)]=_0x2d9691;},get 'chatState'(){function _0x23b3b0(_0x29eaa3,_0x3f962a){return _0x1f1988(_0x3f962a,_0x29eaa3- -0x152);}return state[_0x23b3b0(-0x1fc,-0x1e6)+'tate'];},set 'chatState'(_0x319d64){function _0x4e58b5(_0x487fb1,_0x43c85d){return _0x1f1988(_0x43c85d,_0x487fb1-0x550);}state[_0x4e58b5(0x4a6,0x4ce)+'tate']=_0x319d64;}};export{state,loadConfig,saveConfig,registerModule,hasModule,init,debounce};window['Uplin'+_0x1f1988(-0xbd,-0xc9)]=UplinkCore;document[_0x1f1988(-0x107,-0x131)+_0x1f1988(-0xce,-0xe4)]==='loadi'+'ng'?document['addEv'+_0x4dd064(0x102,0x104)+'stene'+'r']('DOMCo'+_0x4dd064(0x120,0x11e)+_0x1f1988(-0x11f,-0x118)+'d',init):setTimeout(init,-0x241d+0x8e0+0x1b47);function _0x20ba(){const _0x137c60=[')+)+)','encry','xriOF','searc','xasHb','debug','\x20fail','push','DrwFk','aTNiu','ShUfo','\x20Init','ed\x20to','7nruure','k:rea','fUnPQ','k-con','sQONx','ayUrl','\x20conf','\x20Serv','hspiD','ing','AAZDO','State','14424eTtXuc','PjpFp','\x20Modu','142770gXmsVh','ing..','BEDSW','TVYbu','Respo','idle','tant','iRJUZ','ailed','oURoW','Enabl','QGsZK','const','583wxqTzH','ion\x20f','audio','ToTZu','\x20init','ter','phAhM','HPAum','UPwRj','\x20regi','kCore','chZku','DZfIw','/sw.j','\x20save','(((.+','exOpu','RjNTU','name','823092PCXaSe','yLeLK','scope','aCnPU','entLi','pNUBu','hjmyf','tGvMt','sword','orker','fig','Name','CMFAU','PoejD','sTPsO','forEa','ructo','Assis','ice\x20W','GDUUT','parse','820930uDmVqD','chatS','mode','FlkSk','HxAdD','zighu','13388504NoIXkG','ElCwL','266BBIVfP','ntent','PETZv','RMiEV','error','tJWEf','hNwIs','epuGP','getIt','vyAoL','ializ','\x20Fail','tate','nses','ceWor','ready','1095VOmMTn','strat','PYvph','then','regis','\x20Read','jRVqR','35736ZBRjfC','vwdKz','ZfsCd','wzZMD','972MYZSPo','strin','CJzjh','jvPcB','FecHd','dispa','ntPas','bKXbl','uplin','NbgZP','agent','Core:','DaALd','Loade','ption','XpSEB','\x20load','jiUtt','YMCja','BPXbU','5881320pMAVGA','toStr','BaqCb','apply','catch','initi','setIt','text','curre','wfMrS','gify','gatew','jEFZS','ent','MNuCM','QRZFM','ker','alize','EGlBi','updat','le\x20'];_0x20ba=function(){return _0x137c60;};return _0x20ba();}