@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
package/server/share.js CHANGED
@@ -1 +1 @@
1
- (function(_0x562d75,_0x4a8ef1){const _0x42286b=_0x562d75();function _0x434754(_0x5a8642,_0x2fc6c3){return _0x17e4(_0x5a8642-0x7,_0x2fc6c3);}function _0x2aa844(_0x4c8763,_0x4897b5){return _0x17e4(_0x4897b5- -0x271,_0x4c8763);}while(!![]){try{const _0x3e8113=parseInt(_0x434754(0x137,0x147))/(-0x230c+0xce4+-0x1*-0x1629)*(parseInt(_0x2aa844(-0x58,0x87))/(0x38a*0x9+-0x1330+-0xca8))+-parseInt(_0x2aa844(-0x23f,-0x16c))/(-0x97f+0x1c68+-0x76*0x29)*(-parseInt(_0x2aa844(0xab,0x72))/(0x2f6*0xb+-0x1349+-0xd45))+parseInt(_0x434754(0x1bc,0xd9))/(-0x1*-0x1f1b+0x19e7+0x12ff*-0x3)*(-parseInt(_0x434754(0x15f,0x69))/(0x1c22+0x67*0x59+-0x3feb))+-parseInt(_0x434754(0x332,0x30e))/(0x2524+0x20+0x1*-0x253d)*(parseInt(_0x2aa844(-0xa3,-0xa8))/(-0x3*-0x655+0x1fe5+-0x43d*0xc))+-parseInt(_0x2aa844(-0xb7,0x7))/(0x11f*0x19+-0x13*0x101+-0x1*0x8eb)*(parseInt(_0x434754(0x19b,0xe0))/(0x4*0x696+0x5d+-0x1aab))+-parseInt(_0x2aa844(-0x32,-0x13))/(0x29*0xd4+-0x2f5*-0x6+0x761*-0x7)*(-parseInt(_0x2aa844(0x180,0xd3))/(-0xa25+0x20b1*0x1+-0x168*0x10))+parseInt(_0x2aa844(-0xf9,-0x73))/(0x2*-0x1af+-0xc67+0x5a*0x2d);if(_0x3e8113===_0x4a8ef1)break;else _0x42286b['push'](_0x42286b['shift']());}catch(_0x24d719){_0x42286b['push'](_0x42286b['shift']());}}}(_0x5e4a,0xd3d*-0x1d+0x20b37+0x5*0x85df));const _0x593094=(function(){const _0xb58ee={};_0xb58ee[_0x43a007(0x25d,0x1d4)]=_0x1e2fe2(0x520,0x587),_0xb58ee['nkLCI']=_0x43a007(0x17e,0x69),_0xb58ee[_0x1e2fe2(0x70f,0x71d)]=function(_0x4fd00e,_0x557c1c){return _0x4fd00e===_0x557c1c;},_0xb58ee[_0x1e2fe2(0x4bb,0x449)]=_0x43a007(0x85,-0x1f),_0xb58ee[_0x1e2fe2(0x570,0x449)]='(((.+'+')+)+)'+'+$',_0xb58ee['tQDOJ']=_0x43a007(0xe6,0x37)+'m',_0xb58ee[_0x43a007(0x261,0x305)]='strin'+'g',_0xb58ee[_0x43a007(0x111,0x81)]=function(_0x551b3c,_0x1a4de1){return _0x551b3c!==_0x1a4de1;};function _0x1e2fe2(_0x5c7b78,_0x2abd90){return _0x17e4(_0x5c7b78-0x3ad,_0x2abd90);}_0xb58ee['qdnfH']='aPbev';const _0x17c516=_0xb58ee;let _0x142758=!![];function _0x43a007(_0x4728ca,_0x2b9215){return _0x17e4(_0x4728ca- -0xcb,_0x2b9215);}return function(_0x25d13d,_0x4a7c79){const _0x456447={};function _0x3483cb(_0xaadcd4,_0x2f41b3){return _0x1e2fe2(_0xaadcd4-0x30,_0x2f41b3);}_0x456447[_0x4929a5(0x208,0xf8)]=_0x17c516['jzFuD'];function _0x4929a5(_0x2a0a41,_0x319331){return _0x1e2fe2(_0x2a0a41- -0x32b,_0x319331);}_0x456447[_0x4929a5(0x176,0x1b6)]=_0x17c516['tQDOJ'],_0x456447['POQoj']=_0x17c516[_0x4929a5(0x3ae,0x421)];const _0x33ec41=_0x456447;if(_0x17c516[_0x4929a5(0x25e,0x2af)](_0x17c516[_0x3483cb(0x50c,0x5b9)],_0x17c516[_0x4929a5(0x1b1,0x130)]))return _0x52df6a[_0x3483cb(0x696,0x6fb)+_0x4929a5(0x257,0x370)]()[_0x3483cb(0x4c6,0x48c)+'h'](_0x33ec41['mwJyv'])[_0x4929a5(0x33b,0x38e)+_0x3483cb(0x5b2,0x637)]()[_0x4929a5(0x2ec,0x39f)+_0x3483cb(0x548,0x4be)+'r'](_0x1fe14d)[_0x4929a5(0x16b,0x1cc)+'h'](_0x33ec41['mwJyv']);else{const _0x180559=_0x142758?function(){function _0x260ef8(_0x3989f4,_0x20f879){return _0x4929a5(_0x20f879-0x274,_0x3989f4);}function _0x344253(_0x388393,_0x4892eb){return _0x4929a5(_0x388393- -0x2ec,_0x4892eb);}if(_0x17c516[_0x260ef8(0x5c4,0x61e)]===_0x17c516[_0x260ef8(0x459,0x40f)])return _0x45fa32[_0x260ef8(0x689,0x594)+'quest'](_0x3958a4,_0xd57d10['error']);else{if(_0x4a7c79){if(_0x17c516[_0x260ef8(0x528,0x658)](_0x17c516[_0x344253(-0x15c,-0x16c)],_0x17c516['uUDmB'])){const _0x68aad6=_0x4a7c79[_0x344253(0x9c,0x53)](_0x25d13d,arguments);return _0x4a7c79=null,_0x68aad6;}else{const _0x54a6f8=[_0x260ef8(0x32c,0x44c),_0x260ef8(0x4d4,0x3fd)+_0x260ef8(0x65c,0x5f5),_0x33ec41['ZAmmo']];if(typeof _0xcd7924===_0x33ec41[_0x260ef8(0x578,0x43e)]&&_0x54a6f8[_0x344253(-0x79,-0x1b6)+_0x344253(-0x109,0x35)](_0x4eb918))return _0x5b4005;return _0x344253(-0x114,-0x1e5);}}}}:function(){};return _0x142758=![],_0x180559;}};}());function _0xc14d83(_0x2b224a,_0x1a4200){return _0x17e4(_0x2b224a- -0x3c1,_0x1a4200);}const _0x12c6be=_0x593094(this,function(){function _0x6d8738(_0x20c0bd,_0x58334e){return _0x17e4(_0x20c0bd- -0x1e6,_0x58334e);}const _0x28ddfa={};_0x28ddfa[_0x6d8738(0x13e,0xbe)]=_0x6d8738(0x9d,0x1af)+_0x6d8738(0xd7,0x216)+'+$';function _0x288099(_0x43acd9,_0x37dcc6){return _0x17e4(_0x43acd9- -0x38c,_0x37dcc6);}const _0x2f3286=_0x28ddfa;return _0x12c6be['toStr'+_0x6d8738(-0x11,-0x71)]()[_0x288099(-0x2a3,-0x282)+'h'](_0x2f3286[_0x6d8738(0x13e,0xa8)])[_0x288099(-0xd3,-0xf0)+_0x288099(-0x1b7,-0x2e2)]()['const'+_0x288099(-0x221,-0x1ca)+'r'](_0x12c6be)[_0x288099(-0x2a3,-0x3cc)+'h'](_0x6d8738(0x9d,0x1a9)+_0x288099(-0xcf,0x0)+'+$');});_0x12c6be();import{randomUUID}from'crypto';import _0x59ffde from'fs/promises';import _0x24835c from'path';import{log}from'./utils.js';import{escapeHtml,escapeForJS}from'../utils/html-escape.js';import{sanitizeShareId,parseNumericParam}from'../utils/id-sanitize.js';import{sendSuccess,sendError}from'../utils/response.js';import{errors}from'../utils/errors.js';import{strictLimiter}from'./middleware.js';function _0x5e4a(){const _0x31df3c=['16780sMXFMX','\x20{\x20bo','0;\x20pa','qvVIR','now','Too\x20m','oSjQk','tant','IkYsj','\x20<div','cSyst','op:\x201','wFxxl','/scri','apply','ation','\x20data','eta\x20c','\x20\x20\x20\x20d','ment.','ar\x20d\x20','-size','\x20=>\x20\x27','\x27</di','ss=\x22e','GJHOl','api/s','hrrJK','ratio','\x20\x20\x20\x20*','r>\x27);','\x20\x20\x20\x20b','tml>\x0a','lemen','/api/','BdzEi','\x20{\x20ma','utf8','any\x20m','olid\x20','ft-ra','r\x22>\x0a\x20','r)\x20{\x0a',');\x20d.','aCwyq','}\x0a\x20\x20\x20','der-t','12px;','Suhau',':\x2012p','\x27shar','2769718FliZqt','rkLRV','zplfU','2em;\x20','Name','\x20\x20\x20do','value','\x20#636','min-h','ooter','ocume','\x27;\x0a\x20\x20','dius:','ount','error','ges\x20{','px;\x20c','self:','nt.cr','flex;',';\x20ret','hareT','WomBD','send','ment(','1281276mMuNzu','entBy','d\x20Con','CTYPE','UI\x27,\x20','zEmpb','iv>\x27)','Conve','c(dat','n\x22>\x0a<','addin','\x20\x20\x20\x20.',';\x20}\x0a\x20','le\x22>L','g...<','rsati','l-sca','eateE','Gkqmh','ument','pt>\x0a<','viewp','\x20auto','s\x27).i','v\x27);\x0a','info','>\x0a</h','y:\x20-a',';\x20\x0a\x20\x20','ng\x20co','uOJqT','ages\x0a','t-siz','>\x0a\x20\x20\x20','ne;\x20}','rErro','olor:','etEle',',\x20\x27<b','!==\x20\x27','searc','ter;\x20',':\x202em','retur','hareI','onten','ch(\x27/','share','888;\x20','e]\x20Ge','\x20text','ZAmmo','\x20.the','k</a>','tom:\x20','\x204px;','\x20\x20\x20ba','es\x20(m','FqLia','});\x0a\x20','rgin-','eader','\x20\x20}\x0a\x20','xt)\x20{','\x0a\x20\x20<m','harse','\x27)\x20+\x20','>Fail','27DEEKGj','\x20\x20mar','assis','valid','tion\x20','s:\x204p','.json','=\x20\x27Er','\x200\x2030','uUDmB','itle\x27','=\x22mes','xKaJg','post','sages','{\x20tex','\x2085%;','r\x20{\x20t','{\x20fon','\x27mess','nkLCI','\x0a\x20\x20\x20\x20','/crea','\x20\x27<di','\x20\x27</d','zHFvx','PTduo','ter\x20{','...</','\x20<tit','\x20\x27Unk','type\x20','head>','UBbop','=\x22foo','CHopn','red\x20v',':\x20#63','tom-r','\x27\x20+\x20m','ufBgJ','apeHt','qdnfH','13SpdwbK','s=\x22me','FppqK','GmROx','DiEWa','om-le','pple-','ng:\x201','inkMa','\x2040px','sage.','recur','\x27div\x27','\x20\x20con','parse',').tex','.mess','ction','Faile','/shar','rHTML','\x20\x20tex','ainer','type','POQoj','SVEVM','ter\x22>','hare/','escap','\x20\x20ali','times',':\x20col','AvLyy','y>\x0a\x20\x20','ding:','\x20has\x20','nnerH','\x20\x20bor','user','ent.g','166008XLAbxi','\x20\x27Err','tCont','gn-se','\x20#ef4','333;\x0a','yZuye','ight-','.filt','des','adius','viewC','ById(','reTit','ok\x20||','sage\x20','getEl','/styl','r\x20=>\x20','ructo',':\x20100','20px;','ff;\x0a\x20','defau','e.ass',';\x20mar','esAt','lsmKb','<div\x20','user\x20','docum','-bott','or:','\x20shar','0\x22>\x0a\x20','r:\x20#6','text-','er;\x20p','ours','lass=','\x20marg','m,\x20Bl','\x20\x20\x20ma','\x20back',':\x200;\x20','tent\x20','mwJyv','=\x20doc','File','ax\x20','rZqPW','then(','1a;\x20\x0a','\x20}\x0a\x20\x20','gap:\x20','ssage','ing\x22>','\x20\x20\x20co','ta.ti','\x22load','10iTetnR','\x20\x20\x20.m','/body','gin:\x20','.erro','CVxpE','get\x20s','\x22titl','yle>\x0a','t\x20=\x20t','6px;\x20','strin','\x200.9e','TML\x20=','n())\x0a','lex-e','on\x20-\x20','n;\x0a\x20\x20','QjKxY','div>\x0a','nd;\x0a\x20','\x2020px','color','borde','eta\x20n','\x20\x20\x20\x20}','teEle','heade','expir','syste','JykLI','map(m','found','10BVIOff','\x20.mes',';\x20pad','er(m\x20','e>\x0a</','JftKU','k</ti','paddi','d(\x27me','taine','essag','bBNdr','e-wid','t=\x22UT','jzFuD','ing:\x20','tle>\x0a','t\x20err','lace(','\x20clas','8kyYqFe','\x20\x20\x20\x20\x20','\x20=\x20da','luTvn','wrnKr','v\x20=\x20d','nGvMG','tEKcx','rray\x20','x;\x20\x0a\x20','8;\x20}\x0a','s\x22\x20id','ing','x;\x0a\x20\x20','le=1.','ement','\x20retu','PIpSq','requi','lMTML','textC','BMosQ','idth:','tamp','yId(\x27','px;\x0a\x20','}\x0a\x20\x20<','\x27\x20+\x20s','Route','und:\x20','tElem','sans-','notFo','\x20\x20\x20fu','t\x20=\x20s','jEYnZ','NDAKu','nkPkI','ame=\x22','>\x27;\x0a\x20','inclu','ia\x20<a','lengt','</div','=\x22/\x22>','F-8\x22>','\x20=>\x20{','mXZTW','eTitl','xtCon','eate\x20','L\x20=\x20\x27','ext-a','7220512XCOySD','k</di',';\x0a\x20\x20\x20','\x20\x20\x20.f','nown\x20','\x20load','\x20\x20.ca','size:','font-','2px\x201','nt=\x22w','gin-b','ext;\x0a','{\x20\x0a\x20\x20','\x20font','\x20a\x20{\x20','ml\x20la','or\x27;\x0a','class','rn\x20di','ml(te','umn;\x20','ntByI','t.get','oadin','mentB','Loadi','catch','\x20\x20Sha','rror\x22','6f1;\x20','areId','nt.ge','body','o\x22>🛰️\x20','r:\x20#f','\x20+\x20\x27\x22','sive','\x20not\x20','if\x20(!','enter','qDCJr','ound:','order','L.rep','\x20\x20.me','66;\x0a\x20','mkdir','>\x0a\x20\x20<','>\x0a<ht','ed\x20to','>\x27\x20+\x20','readF','v.inn','a\x20=>\x20','.crea','\x20{\x20\x0a\x20','r-bot','gbhnd','gn:\x20c','cumen','n(dat','n(\x27\x27)','t(\x27di','vh;\x0a\x20','lay:\x20','=>\x20m.','\x0a<bod','isArr','.inne','ent\x20=','nitia','zLgwj','nFpXg','istan','JchxE','e]\x20Cr','\x20disp','text',':\x20#88','repla','und','Uplin','lign:','\x20html',').inn','TewCH','v>\x27;\x0a','esc(s','Eleme','uLcpI','lid\x20#','ror\x27;','in:\x200',':\x20cen','ages\x27','11FSqbDt','ges\x20a','twpqn','Url','g:\x2040','v\x20cla','hare','v>\x0a\x20\x20','or\x20||','ackgr','(m.te',':\x2020p','const','quest','\x20docu','{\x0a\x20\x20\x20','t\x20{\x20\x0a','d:\x20#1','a.err','emFon','444;\x20','#0f0f','ijvdw','e/:sh','extCo','ckgro','1597014urAkKa','le>Sh','\x20\x20<st','d\x20=\x20\x27','\x20+\x20es','\x0a\x20\x20<s','=\x22con','\x22>\x0a\x20\x20','\x20func','messa','\x20cent','(((.+','\x20.loa','th:\x207','urn\x20d','radiu','RFteq','/\x5cn/g','\x20\x20\x20<d','\x20\x20\x20.t','n\x20esc','erHTM','/:sha','[Shar','\x20\x20\x20.l','YryHd','get','\x20\x20\x20})','unlin','e\x22\x20id','ized','Share',')\x20{\x20v','fcEtE','.cont','.tmp-','Id(\x27s','GeBot','badRe','x-siz','t;\x0a\x20\x20','div\x20c','0px;\x0a','Title','serif','\x27).te','or:\x20#','ort\x22\x20','\x20\x20\x20\x20a','r.jso','sanit','BBiMK','e:\x201.','der-r','reId','itle\x20','\x20\x20pad','x-wid','subst','\x20.foo','tion','renam','=\x22log','/div>','groun','toStr','align','\x20colo','m\x27)\x0a\x20',')+)+)','max-w','\x20flex','numbe','ring','d\x20to\x20','unvXq','nst\x20s','00px;','n:\x20no','iv\x20cl','\x20.joi','ottom','ared\x20','gKzQB','66f1;','ding\x20','t-ali','tch(e','devic','ng=\x22e','-deco','eight','=\x22err','JYCNN','nvers','conte','WIRqI','th,\x20i','\x20\x20\x20\x20<','tle;\x0a',':\x208px','FsFvf','r-box','top:\x20','join','px\x20so','red','28536mNtmOs','ile','ogo\x20{','-dire','param','cript','ding-','yJOsq','mmXmm','d)\x0a\x20\x20','1px\x20s','eHtml','egoe\x20','30px;','serve',';\x20col','lf:\x20f','nctio','iIRyF','e:\x20','idth='];_0x5e4a=function(){return _0x31df3c;};return _0x5e4a();}function _0x17e4(_0x3bc4e3,_0x5d821e){_0x3bc4e3=_0x3bc4e3-(-0x2c5*-0x1+0x8cf*-0x1+0x6f0);const _0x73a8cd=_0x5e4a();let _0x4329b3=_0x73a8cd[_0x3bc4e3];return _0x4329b3;}const DEFAULT_EXPIRY_HOURS=-0x25f5+0xb99*0x3+0x3d2,MIN_EXPIRY_HOURS=-0xd05+0x2354+-0x164e,MAX_EXPIRY_HOURS=-0x2e*0x104+0x10a0+0x4050,MAX_MESSAGE_TEXT_LENGTH=-0x2729+0x2*-0x1a51+0x8b*0xf1;function _0x25e230(_0x19d07e,_0x18ded9){return _0x17e4(_0x19d07e- -0x2f8,_0x18ded9);}const MAX_MESSAGES_PER_SHARE=0xfde+-0x1b9b+0xdb1;function sanitizeMessageText(_0x1a2371){const _0x1473b7={};function _0x407042(_0x287940,_0x3a371d){return _0x17e4(_0x3a371d- -0x20,_0x287940);}_0x1473b7[_0x407042(0xb3,0x108)]=_0x407042(0x1db,0x261)+_0x4568c1(-0x23,-0xf5)+_0x407042(0x2ae,0x1b1)+_0x4568c1(-0xa7,-0x127)+_0x4568c1(0x60,0x6f),_0x1473b7['BBiMK']=_0x4568c1(-0xe3,-0xcf)+'g',_0x1473b7[_0x4568c1(0x68,0xd8)]=function(_0x5a8b65,_0x65f971){return _0x5a8b65!==_0x65f971;},_0x1473b7[_0x4568c1(-0x139,-0x1a1)]=_0x407042(0x170,0x186);const _0x23e2bf=_0x1473b7;if(!_0x1a2371||typeof _0x1a2371!==_0x23e2bf[_0x4568c1(0x29,-0x8f)])return _0x23e2bf['yJOsq']('QjKxY',_0x23e2bf[_0x4568c1(-0x139,-0x62)])?_0x251657[_0x407042(0x23e,0x27e)+_0x4568c1(-0x17,-0xaf)](_0x584572,_0x23e2bf[_0x4568c1(-0x15a,-0x2b)]):'';let _0x2aa1a0=_0x1a2371[_0x4568c1(0x30,0x122)+_0x4568c1(0x3f,0x68)](-0x1eb2+0x1*-0xe8d+-0xd*-0x37b,MAX_MESSAGE_TEXT_LENGTH);function _0x4568c1(_0x5b34c0,_0x38283c){return _0x17e4(_0x5b34c0- -0x282,_0x38283c);}return _0x2aa1a0=_0x2aa1a0[_0x407042(0x1be,0x22e)+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,''),_0x2aa1a0;}function sanitizeMessageType(_0x5bb8b0){function _0x59b1ca(_0x9d9c9e,_0x2fc395){return _0x17e4(_0x9d9c9e-0x13,_0x2fc395);}function _0x4623b5(_0x4d3595,_0x4fcc52){return _0x17e4(_0x4d3595- -0x29e,_0x4fcc52);}const _0xf836db={'SegHu':function(_0x4f1f8e,_0x3fb509,_0x28643f,_0x16ffac){return _0x4f1f8e(_0x3fb509,_0x28643f,_0x16ffac);},'BdzEi':'error','sxKVg':'[Shar'+'e]\x20Ge'+_0x59b1ca(0x1d9,0x2d8)+_0x4623b5(-0x126,-0x15b),'Gkqmh':'assis'+_0x59b1ca(0x312,0x43f),'JzeOT':_0x59b1ca(0x1c4,0x1c6)+'m','bBNdr':function(_0x2f2a8d,_0x9f212a){return _0x2f2a8d===_0x9f212a;},'gbhnd':_0x59b1ca(0x1b2,0x1f4)+'g','JykLI':_0x4623b5(-0x180,-0x272),'BMosQ':_0x59b1ca(0x169,0x10e)},_0x56feab=[_0x59b1ca(0x169,0xce),_0xf836db[_0x59b1ca(0x369,0x3da)],_0xf836db['JzeOT']];if(_0xf836db[_0x4623b5(-0xde,-0x9b)](typeof _0x5bb8b0,_0xf836db[_0x59b1ca(0x24b,0x1d2)])&&_0x56feab[_0x59b1ca(0x204,0x146)+_0x4623b5(-0x13d,-0x210)](_0x5bb8b0))return _0xf836db[_0x4623b5(-0xec,-0x19)]===_0x4623b5(-0x180,-0x15a)?_0x5bb8b0:(_0xf836db['SegHu'](_0x55e63e,_0xf836db[_0x59b1ca(0x32e,0x3f6)],_0xf836db['sxKVg'],_0x2eed5c[_0x4623b5(-0x1d,-0x85)+'ge']),_0x50cb4d[_0x4623b5(0x53,0x162)+_0x59b1ca(0x37a,0x47d)+'r'](_0x3e99c4,_0x59b1ca(0x155,0x156)+_0x4623b5(0x24,0x2d)+_0x4623b5(-0x104,-0x20b)+_0x4623b5(-0x3a,-0x106)));return _0xf836db[_0x4623b5(-0xc0,-0xb)];}export function setupShareRoutes(_0x53d687,_0x385ce5){function _0x57212c(_0x41a6c6,_0x5c7108){return _0x17e4(_0x5c7108- -0xb3,_0x41a6c6);}const _0x55be4c={'wFxxl':function(_0x2d4968,_0x11243b){return _0x2d4968(_0x11243b);},'luTvn':_0x36779f(-0x3b,0x80),'CVxpE':_0x36779f(0x192,0xe3),'HuzgR':_0x57212c(0x14f,0xfd)+'esInH'+_0x36779f(0x1b8,0x103),'uLcpI':function(_0xfbf557,_0x14ae0c){return _0xfbf557===_0x14ae0c;},'WomBD':_0x36779f(0x26d,0x2ce),'TewCH':_0x36779f(0xea,0x206)+'ges\x20a'+_0x57212c(0x176,0x11e)+_0x57212c(0x15e,0x128)+_0x36779f(0x197,0x267),'DhAZS':function(_0x355de4,_0x3cd0df){return _0x355de4>_0x3cd0df;},'xKaJg':function(_0x766d0f){return _0x766d0f();},'WIRqI':function(_0x15e72c,_0x22b57a){return _0x15e72c*_0x22b57a;},'JqbjJ':function(_0x55774e,_0x266f98){return _0x55774e*_0x266f98;},'oSjQk':function(_0x2e110){return _0x2e110();},'PIpSq':function(_0x447d2b,_0x3cad6a,_0x4d1604){return _0x447d2b(_0x3cad6a,_0x4d1604);},'zLgwj':_0x36779f(0x3d0,0x2e2),'FppqK':function(_0x1acb3f,_0x48f1d9,_0x510bb6){return _0x1acb3f(_0x48f1d9,_0x510bb6);},'nFpXg':function(_0x1a9a52,_0x143a38,_0x333b3f,_0x87080){return _0x1a9a52(_0x143a38,_0x333b3f,_0x87080);},'JftKU':_0x57212c(-0x3c,0x8f)+_0x57212c(0x2d0,0x20f)+'creat'+'e\x20sha'+'re','hrrJK':'Share'+_0x57212c(0x5a,0x171)+_0x36779f(0x1a2,0x139),'jXPfp':_0x57212c(0x170,0x286),'GeBot':'[Shar'+_0x36779f(0xf6,0x1cf)+_0x36779f(0x14b,0x180)+'error'+':','Zwwtq':function(_0x27dc0e,_0x23a059){return _0x27dc0e!==_0x23a059;},'fcEtE':_0x57212c(0x130,0xec)+'g','jEYnZ':_0x36779f(0x1e1,0x10f),'yYXOv':function(_0x46c7cf,_0x2ab3b0){return _0x46c7cf(_0x2ab3b0);},'GmROx':_0x36779f(0x2bd,0x280),'JYCNN':_0x36779f(0x16f,0x172),'mmXmm':function(_0x401d3c,_0x4dcbe1){return _0x401d3c!==_0x4dcbe1;},'UBbop':_0x57212c(0x2c1,0x210),'ZPAuG':_0x36779f(0x318,0x2a2),'IkYsj':function(_0x487ca7,_0x385cec){return _0x487ca7!==_0x385cec;},'qDCJr':_0x57212c(0x395,0x25e),'ijvdw':_0x57212c(0xde,0x1d5),'DiEWa':function(_0x1abf54,_0x33f632,_0x2c7d86){return _0x1abf54(_0x33f632,_0x2c7d86);},'PTduo':'cmkzy','VEtsR':_0x36779f(0x171,0xb2),'zplfU':function(_0x21b6a2,_0x4989ef,_0x3c462a,_0x393d38){return _0x21b6a2(_0x4989ef,_0x3c462a,_0x393d38);},'FsFvf':_0x57212c(0x242,0x1dc)+_0x57212c(-0xd2,0x3f)+_0x57212c(0x17b,0x113)+_0x36779f(0x95,0xfd),'BEhrl':_0x57212c(0xa7,0x8f)+_0x57212c(0x153,0x20f)+_0x57212c(0x1b1,0xe7)+_0x57212c(0x2e2,0x1b1),'HgwQA':function(_0x13239d,_0x24e67a){return _0x13239d(_0x24e67a);},'mXZTW':_0x36779f(0xf1,0x216),'iIRyF':function(_0x502ee2,_0x587ac0){return _0x502ee2(_0x587ac0);},'gKzQB':_0x57212c(0x20b,0x1ad),'quQSl':'/api/'+_0x57212c(-0x10,0x3d)+_0x57212c(-0xad,0x68)+'te','DJNZy':_0x36779f(0x19c,0x29f)+'share'+_0x36779f(0x2e2,0x213)+_0x36779f(0x2db,0x233),'nGvMG':_0x36779f(-0x57,0xc8)+_0x57212c(0xed,0x1c2)+_0x36779f(0x1bc,0x1a2)},_0x1de1d7={};_0x1de1d7[_0x57212c(-0xa4,0x88)+_0x57212c(0x1a0,0x170)]=!![],_0x59ffde[_0x57212c(0x58,0x17a)](_0x385ce5,_0x1de1d7)[_0x57212c(0xd5,0x166)](()=>{}),_0x53d687[_0x57212c(0x13,0x5f)](_0x55be4c['quQSl'],strictLimiter,async(_0x263091,_0x44326f)=>{function _0x5c5529(_0x18ae4e,_0x13caac){return _0x36779f(_0x18ae4e,_0x13caac- -0x2e1);}function _0x173b42(_0x12cbb8,_0x3e1cdf){return _0x36779f(_0x3e1cdf,_0x12cbb8- -0x330);}if(_0x55be4c[_0x173b42(-0x1df,-0x206)]===_0x55be4c[_0x5c5529(-0x2dd,-0x1c3)])return _0x40e495[_0x173b42(-0x10d,-0xcd)+_0x5c5529(-0xd3,-0xf1)](_0x3611d1,_0x2c2fbd[_0x5c5529(0x5,-0x23)]);else try{if(_0x173b42(-0x1db,-0x263)!==_0x173b42(-0x1db,-0x111))return _0x1cc633[_0x5c5529(-0x94,-0xbe)+'quest'](_0x516ca7,_0x241159[_0x173b42(-0x72,-0x14c)]);else{const {title:_0x29e4a,messages:_0x5a4456,expiresInHours:_0x415e47}=_0x263091[_0x5c5529(-0x1cd,-0x13d)],_0x798703={};_0x798703['min']=MIN_EXPIRY_HOURS,_0x798703['max']=MAX_EXPIRY_HOURS,_0x798703[_0x173b42(-0x23c,-0x328)+'ltVal'+'ue']=DEFAULT_EXPIRY_HOURS,_0x798703[_0x5c5529(0x85,-0x75)+_0x173b42(-0x7c,-0x8f)]=_0x55be4c['HuzgR'];const _0x51cd1e=parseNumericParam(_0x415e47,_0x798703);if(!_0x51cd1e['valid'])return errors[_0x5c5529(-0x192,-0xbe)+_0x5c5529(0x46,-0xf1)](_0x44326f,_0x51cd1e['error']);const _0x55f721=_0x51cd1e[_0x173b42(-0x7a,0x44)];if(!_0x5a4456||!Array[_0x5c5529(-0x2e,-0x11a)+'ay'](_0x5a4456)||_0x55be4c[_0x5c5529(-0x2b,-0x104)](_0x5a4456[_0x5c5529(-0x279,-0x169)+'h'],-0xd25*0x1+-0xe1c+0x1b41*0x1)){if(_0x173b42(-0x62,-0x52)!==_0x55be4c[_0x5c5529(0xa9,-0x1b)]){const _0xbf47fc=_0x55be4c[_0x173b42(-0xa7,0x72)](_0x254e8e,_0x1c1046[_0x5c5529(-0x200,-0x10e)+'ce'](/[^a-zA-Z0-9]/g,'')[_0x5c5529(-0x10b,-0xaa)+_0x5c5529(0x8e,-0x9b)](-0x1*0x626+-0x7*0x31d+-0x137*-0x17,0x6*0x613+-0x566+-0x20*0xf8));return'\x0a<!DO'+_0x5c5529(-0x72,-0x15)+_0x173b42(-0x159,-0xe1)+_0x173b42(-0x17c,-0x8d)+_0x173b42(-0x19d,-0x293)+_0x173b42(-0xda,-0x105)+_0x173b42(-0x5e,0xbd)+_0x173b42(-0x286,-0x2d5)+'\x0a\x20\x20<m'+_0x5c5529(0x18,-0x53)+_0x173b42(-0x2a9,-0x261)+'t=\x22UT'+_0x5c5529(-0xb8,-0x166)+'\x0a\x20\x20<m'+_0x5c5529(-0x153,-0x1b0)+_0x5c5529(-0x1e7,-0x16d)+_0x173b42(-0x52,-0x5b)+_0x173b42(-0x104,-0x134)+_0x5c5529(-0xf6,-0x85)+_0x5c5529(-0x129,-0x154)+_0x173b42(-0xb4,0x28)+_0x173b42(-0xdb,-0x16)+_0x5c5529(-0xf8,-0x19b)+_0x173b42(-0xd2,-0x206)+_0x173b42(-0x166,-0x13c)+_0x173b42(-0x57,-0x82)+_0x5c5529(-0x50,-0x185)+_0x173b42(-0x231,-0x267)+'\x20<tit'+_0x173b42(-0x132,-0x96)+_0x173b42(-0xe1,-0xae)+_0x5c5529(0xc6,-0x11)+_0x173b42(-0x58,0xe2)+_0x173b42(-0x207,-0x2d7)+'Uplin'+_0x5c5529(-0x2c3,-0x1a1)+_0x173b42(-0x1e6,-0xaf)+_0x173b42(-0x131,-0x1fe)+_0x173b42(-0x20f,-0x190)+_0x5c5529(0x52,-0x47)+_0x173b42(-0xb2,0x33)+_0x173b42(-0x10c,0x20)+'ing:\x20'+_0x5c5529(-0x223,-0x1b1)+'r-box'+_0x5c5529(-0x162,-0x1eb)+_0x5c5529(-0x27e,-0x1c5)+_0x5c5529(0x5a,-0x62)+'dding'+_0x5c5529(-0x2b6,-0x1d8)+_0x173b42(-0x86,0x84)+'\x20body'+_0x173b42(-0x175,-0x223)+_0x173b42(-0x1e1,-0x300)+'font-'+'famil'+_0x173b42(-0x4c,-0x86)+_0x173b42(-0x275,-0x150)+_0x173b42(-0x1fa,-0x19f)+_0x173b42(-0x22a,-0x1ce)+_0x5c5529(-0x2d3,-0x224)+_0x5c5529(-0x48,-0x5a)+_0x5c5529(0xb,-0xeb)+'t,\x20\x27S'+'egoe\x20'+'UI\x27,\x20'+'sans-'+_0x5c5529(0x2,-0xb8)+_0x173b42(-0x1ab,-0x119)+_0x173b42(-0x2b2,-0x38a)+_0x5c5529(-0x18,-0xe5)+_0x5c5529(-0x11b,-0x176)+_0x173b42(-0x138,-0x1f4)+'1a;\x20\x0a'+_0x5c5529(-0x263,-0x192)+'\x20colo'+_0x173b42(-0x18a,-0x2a7)+_0x173b42(-0x23d,-0x143)+'\x20\x20\x20\x20\x20'+'min-h'+'eight'+_0x173b42(-0x23f,-0x33b)+_0x173b42(-0x16d,-0x127)+_0x5c5529(-0x263,-0x192)+_0x173b42(-0x1ef,-0x1bc)+'ng:\x202'+_0x173b42(-0x109,-0x1af)+_0x173b42(-0x1fe,-0x317)+_0x5c5529(-0x36f,-0x242)+'.cont'+_0x5c5529(-0x345,-0x216)+_0x173b42(-0x8f,-0x18d)+_0x173b42(-0xfa,-0x1c7)+_0x173b42(-0x126,-0x127)+_0x173b42(-0xe6,-0xa9)+_0x5c5529(-0xef,-0x1dc)+_0x173b42(-0x150,-0x60)+_0x173b42(-0x51,-0x145)+_0x173b42(-0x5b,-0xf)+'\x20\x20\x20.h'+_0x173b42(-0x2ad,-0x1d1)+_0x5c5529(-0x79,-0x126)+'\x20\x20\x20\x20\x20'+_0x173b42(-0x22f,-0x284)+_0x173b42(-0xf1,-0x147)+_0x173b42(-0x14f,-0x173)+'ter;\x20'+_0x5c5529(-0x160,-0x242)+_0x5c5529(-0x137,-0xac)+_0x173b42(-0x259,-0x266)+'\x2020px'+_0x5c5529(-0x2ec,-0x24f)+'px;\x0a\x20'+_0x173b42(-0x1e1,-0x16e)+_0x173b42(-0x200,-0xc8)+'r-bot'+_0x5c5529(-0x2ab,-0x265)+_0x5c5529(-0x106,-0x6f)+_0x5c5529(-0x18,-0x3d)+'#333;'+'\x0a\x20\x20\x20\x20'+'\x20\x20mar'+'gin-b'+_0x5c5529(0x13,-0x93)+':\x2020p'+_0x173b42(-0x1d5,-0x1f3)+_0x5c5529(-0x11f,-0x25d)+_0x173b42(-0x11b,-0xf6)+_0x173b42(-0xc6,-0x100)+_0x173b42(-0x19f,-0xe2)+_0x173b42(-0x9e,0x3f)+_0x173b42(-0x2c0,-0x35d)+_0x5c5529(-0x1ee,-0x1eb)+_0x5c5529(-0x22e,-0x153)+'ottom'+':\x208px'+_0x5c5529(0xae,-0xc)+'\x20\x20\x20.t'+'itle\x20'+_0x5c5529(-0x1b7,-0x245)+'t-siz'+_0x5c5529(0x66,-0xb0)+_0x173b42(-0x7d,-0x19b)+_0x173b42(-0x201,-0x210)+_0x5c5529(-0x24d,-0x10f)+_0x173b42(-0x1d8,-0x19e)+_0x173b42(-0x5c,-0x1)+_0x5c5529(-0x1d,-0xdb)+_0x5c5529(-0x2c,-0x22)+_0x5c5529(-0x24d,-0x111)+'lay:\x20'+_0x5c5529(-0x28,-0x1e)+_0x5c5529(-0x128,-0x9d)+_0x173b42(-0xc5,-0x6b)+_0x5c5529(-0x13c,-0x21b)+':\x20col'+_0x5c5529(-0x1f2,-0x149)+_0x5c5529(-0x202,-0x1ce)+_0x173b42(-0x84,-0xf6)+_0x173b42(-0x21e,-0x16b)+'\x20\x20.me'+_0x5c5529(-0x2ca,-0x1cd)+'\x20{\x20\x0a\x20'+_0x173b42(-0x1e1,-0x26b)+_0x173b42(-0x1ef,-0x2e1)+_0x5c5529(-0x19e,-0x225)+'2px\x201'+_0x173b42(-0x20d,-0x1c0)+_0x5c5529(-0x302,-0x242)+_0x173b42(-0x256,-0x1e2)+_0x5c5529(0x50,-0xaf)+_0x5c5529(-0x15c,-0x1fa)+_0x5c5529(0x11,-0x33)+_0x173b42(-0x1d9,-0x2ec)+_0x173b42(-0x1e1,-0xac)+_0x5c5529(-0x119,-0x9e)+_0x173b42(-0x1cc,-0x132)+_0x5c5529(-0x241,-0x247)+_0x173b42(-0x291,-0x358)+_0x5c5529(0xb0,-0x37)+_0x173b42(-0x1f5,-0x2a3)+_0x5c5529(-0x110,-0x222)+_0x173b42(-0x236,-0x13d)+_0x173b42(-0x1a0,-0x21b)+_0x173b42(-0x94,-0x69)+_0x5c5529(-0xbb,-0xf5)+_0x173b42(-0x183,-0x2ba)+_0x5c5529(-0x21,-0x2a)+_0x5c5529(-0x21a,-0x140)+'\x0a\x20\x20\x20\x20'+_0x5c5529(-0x2cc,-0x20f)+'gn-se'+_0x5c5529(0x21,-0x69)+_0x173b42(-0x208,-0x28e)+_0x5c5529(-0x1be,-0x1b4)+_0x5c5529(-0x17d,-0x192)+'borde'+_0x5c5529(0x3,-0x125)+_0x5c5529(-0x243,-0x231)+_0x173b42(-0x24c,-0x185)+('radiu'+_0x173b42(-0x2a1,-0x3d3)+'x;\x0a\x20\x20'+_0x5c5529(-0x343,-0x25d)+_0x5c5529(-0x15c,-0x1c7)+_0x5c5529(-0x267,-0x19d)+_0x5c5529(-0x2ad,-0x1ec)+_0x5c5529(-0xb7,-0x114)+_0x5c5529(-0x5c,-0xee)+_0x173b42(-0x1e1,-0x130)+_0x173b42(-0x228,-0x25c)+'groun'+_0x5c5529(-0x184,-0xed)+'e1e2e'+_0x5c5529(-0xc6,0x4)+'\x20\x20\x20\x20a'+'lign-'+'self:'+'\x20flex'+'-star'+_0x173b42(-0x10b,-0x247)+'\x20\x20\x20\x20b'+_0x173b42(-0x182,-0x146)+_0x173b42(-0x234,-0x20e)+_0x173b42(-0x276,-0x343)+_0x5c5529(0x32,-0x3c)+'dius:'+_0x5c5529(-0x232,-0x264)+'\x0a\x20\x20\x20\x20'+_0x173b42(-0x86,0x1f)+_0x173b42(-0xf8,-0x1ed)+_0x5c5529(-0x1f1,-0x23c)+'\x0a\x20\x20\x20\x20'+_0x173b42(-0x266,-0x2d1)+'t-ali'+_0x173b42(-0x172,-0xd9)+_0x5c5529(-0x11e,-0x136)+';\x0a\x20\x20\x20'+_0x5c5529(-0x227,-0x1da)+_0x173b42(-0x2ae,-0x173)+_0x5c5529(0x42,-0x7d)+_0x5c5529(-0xdb,-0x6c)+_0x5c5529(-0x2af,-0x242)+_0x5c5529(0x2c,-0xac)+_0x173b42(-0xc2,-0x34)+_0x173b42(-0xcc,-0x13b)+_0x5c5529(-0x309,-0x1ef)+'\x0a\x20\x20\x20\x20'+_0x173b42(-0x256,-0x281)+'der-t'+_0x5c5529(-0xe5,-0x59)+'px\x20so'+_0x5c5529(-0x238,-0x103)+_0x173b42(-0x24e,-0x328)+'\x20\x20\x20\x20\x20'+_0x5c5529(-0x100,-0xa1)+_0x173b42(-0x230,-0x1f1)+_0x173b42(-0x17f,-0x195)+'\x20\x20\x20\x20\x20'+'font-'+_0x5c5529(-0x71,-0x157)+'\x200.9e'+'m;\x0a\x20\x20'+_0x173b42(-0x2ac,-0x184)+_0x5c5529(-0x1f,-0x15b)+_0x5c5529(-0x63,-0x28)+_0x5c5529(-0x3c,-0x14f)+_0x173b42(-0x201,-0x33a)+_0x5c5529(-0x204,-0x232)+'66f1;'+'\x20text'+_0x5c5529(-0x12b,-0x8a)+_0x5c5529(-0x140,-0x48)+_0x5c5529(-0x1cb,-0x96)+_0x5c5529(0x111,0xa)+'\x0a\x20\x20\x20\x20'+'.erro'+_0x173b42(-0x295,-0x25a)+_0x173b42(-0x1ae,-0x126)+_0x173b42(-0x15a,-0x38)+_0x5c5529(-0xbe,-0xda)+_0x5c5529(-0x2d8,-0x1df)+_0x173b42(-0x5d,0x0)+_0x173b42(-0x149,-0x18d)+_0x5c5529(0xe1,-0x21)+_0x173b42(-0x43,0xba)+'\x20#ef4'+_0x5c5529(-0x1bf,-0xea)+_0x5c5529(0xfa,-0x37)+_0x5c5529(-0xa1,-0xd8)+_0x173b42(-0xde,-0x217)+'{\x20tex'+'t-ali'+_0x5c5529(-0x10,-0x123)+_0x173b42(-0x185,-0x27f)+';\x20pad'+_0x5c5529(-0x15e,-0x20a)+_0x173b42(-0x272,-0x391)+_0x5c5529(-0x4c,-0x6a)+_0x5c5529(-0x53,-0xb6)+_0x173b42(-0x2ba,-0x1de)+_0x5c5529(-0x1eb,-0x179)+_0x173b42(-0x242,-0x368)+_0x173b42(-0x1f2,-0x233)+'head>'+'\x0a<bod'+_0x173b42(-0x25a,-0x36d)+_0x173b42(-0x237,-0x146)+_0x5c5529(-0x285,-0x14c)+_0x5c5529(-0x1d2,-0xde)+_0x173b42(-0x1ed,-0x2d7)+'r\x22>\x0a\x20'+_0x5c5529(-0xe8,-0xd2)+_0x173b42(-0xe4,-0xb)+'ass=\x22'+'heade'+_0x5c5529(-0x5c,-0x3b)+_0x173b42(-0x1e1,-0x143)+_0x5c5529(-0xbe,-0x1e8)+'class'+_0x5c5529(-0xc9,-0xa6)+'o\x22>🛰️\x20'+_0x173b42(-0x15b,-0x190)+'k</di'+_0x173b42(-0x146,-0x22f)+_0x5c5529(-0x9f,-0x82)+_0x5c5529(-0x1af,-0xbb)+_0x173b42(-0x22c,-0xf8)+_0x5c5529(-0x20c,-0x1c1)+_0x5c5529(-0x51,-0xc7)+'=\x22sha'+_0x173b42(-0x246,-0x19a)+_0x5c5529(0x7,-0xb)+'oadin'+'g...<'+_0x5c5529(0x8b,-0xa5)+_0x5c5529(-0x274,-0x242)+_0x5c5529(-0x1b6,-0x168)+_0x173b42(-0x46,0xee)+'\x20<div'+_0x173b42(-0x1e3,-0x272)+_0x5c5529(-0x28f,-0x22b)+_0x5c5529(-0xea,-0x1cd)+'s\x22\x20id'+_0x173b42(-0x29b,-0x2e2)+_0x173b42(-0x298,-0x303)+_0x5c5529(-0x1ab,-0xdd)+'\x20\x20\x20\x20<'+_0x173b42(-0x10a,-0x1b)+_0x173b42(-0x22c,-0x12a)+_0x173b42(-0x218,-0x1bd)+_0x173b42(-0x21b,-0x160)+'Loadi'+_0x5c5529(-0x4a,0x5)+'nvers'+_0x5c5529(0x6a,-0x55)+'...</'+_0x5c5529(-0x23d,-0x1b5)+_0x173b42(-0xd1,-0x149)+_0x173b42(-0xf4,-0x11)+_0x173b42(-0x291,-0x178)+_0x173b42(-0x237,-0x326)+_0x5c5529(-0x181,-0x14c)+'=\x22foo'+_0x5c5529(-0x33f,-0x212)+'\x0a\x20\x20\x20\x20'+_0x5c5529(-0x1e2,-0x142)+_0x5c5529(-0x1bf,-0x233)+_0x5c5529(-0x84,-0x16a)+'\x20href'+_0x173b42(-0x1b6,-0x238)+_0x173b42(-0x15b,-0x1aa)+'k</a>'+_0x5c5529(-0x353,-0x242)+_0x5c5529(-0x234,-0x168)+_0x5c5529(-0x26,-0x12e)+_0x5c5529(-0x1c5,-0xa5)+'\x0a\x20\x20<s'+_0x173b42(-0xc3,-0x1ab)+_0x5c5529(0x77,0x9)+_0x5c5529(0x3f,-0xdc)+_0x173b42(-0x2a2,-0x26c)+_0x173b42(-0x155,-0x17c)+_0x173b42(-0x113,-0x20b)+_0x5c5529(0x13,-0x50)+_0x5c5529(-0x21f,-0x1d5)+_0x5c5529(-0xf4,-0x5)+_0x5c5529(-0xf7,-0x127)+_0x173b42(-0x1fd,-0x27d)+_0x173b42(-0x68,0xb3)+_0x5c5529(-0x294,-0x220)+_0x173b42(-0x88,0xb)+_0x173b42(-0x1ce,-0x155)+_0x173b42(-0x2bd,-0x1be)+_0x5c5529(-0x212,-0x171)+_0x173b42(-0x6c,-0x71)+_0x5c5529(0xc,-0xd6)+_0x5c5529(-0x4d,-0x119)+_0x5c5529(-0x344,-0x218)+';\x20}\x0a\x20')+(_0x173b42(-0x21a,-0x343)+_0x5c5529(-0x10f,-0x98)+'hareI'+_0x173b42(-0x130,-0x148))+_0xbf47fc+('\x27;\x0a\x20\x20'+'\x20\x20fet'+_0x5c5529(-0x293,-0x26d)+'api/s'+_0x5c5529(-0x12c,-0x211)+'\x27\x20+\x20s'+_0x5c5529(-0x2e5,-0x26f)+_0x5c5529(0x9a,-0x70)+'\x20\x20\x20\x20.'+_0x5c5529(-0x1a7,-0x1d1)+'r\x20=>\x20'+_0x173b42(-0x102,-0x81)+'n())\x0a'+_0x5c5529(-0x1b1,-0x192)+_0x173b42(-0x2b6,-0x374)+'n(dat'+'a\x20=>\x20'+_0x173b42(-0x13e,-0xa2)+_0x5c5529(-0x22f,-0x192)+_0x5c5529(-0xab,-0x137)+'data.'+'ok\x20||'+'\x20data'+_0x5c5529(-0x2b2,-0x1c4)+_0x5c5529(0xf,-0x3a)+_0x173b42(-0x1e1,-0x120)+_0x173b42(-0x1e1,-0xff)+_0x173b42(-0x235,-0x1e0)+_0x5c5529(-0x26a,-0x205)+_0x173b42(-0x2c5,-0x1d5)+'mentB'+_0x173b42(-0x1ca,-0xcd)+'share'+_0x5c5529(0x3e,-0xb9)+_0x5c5529(0x77,-0xb7)+_0x173b42(-0x1b1,-0x253)+'tent\x20'+_0x173b42(-0x29f,-0x1b4)+_0x173b42(-0x151,-0x18f)+_0x173b42(-0x291,-0x26f)+'\x20\x20\x20\x20\x20'+_0x173b42(-0x13f,-0x10a)+'ment.'+_0x5c5529(-0x248,-0x1f4)+_0x173b42(-0x1d3,-0x1a4)+_0x173b42(-0x247,-0x119)+_0x173b42(-0x293,-0x3b7)+_0x5c5529(-0x1e7,-0xff)+_0x173b42(-0x158,-0x111)+_0x5c5529(-0x188,-0xcf)+_0x5c5529(-0x16a,-0x160)+'<div\x20'+_0x5c5529(-0x195,-0x14c)+'=\x22err'+'or\x22>\x27'+_0x173b42(-0x12f,-0x87)+'c(dat'+'a.err'+_0x5c5529(-0x1cb,-0xf6)+_0x5c5529(-0x202,-0x239)+_0x173b42(-0x1a9,-0x241)+_0x173b42(-0x72,-0xda)+_0x173b42(-0x2a8,-0x21c)+_0x5c5529(0x52,-0x4d)+'v>\x27;\x0a'+'\x20\x20\x20\x20\x20'+_0x5c5529(-0x17a,-0x192)+_0x5c5529(-0x3a2,-0x270)+_0x5c5529(-0x11b,-0x1b7)+_0x5c5529(-0x141,-0x192)+_0x173b42(-0x21e,-0x176)+'\x20\x20\x20\x20\x20'+_0x173b42(-0x13f,-0x9b)+_0x173b42(-0xa0,0xa1)+_0x5c5529(-0x28b,-0x1f4)+_0x5c5529(-0xad,-0x184)+_0x5c5529(-0x306,-0x1f8)+_0x173b42(-0x81,-0x13b)+_0x173b42(-0x1b2,-0x232)+'e\x27).t'+_0x173b42(-0x135,-0x214)+'ntent'+_0x5c5529(-0x23d,-0x191)+_0x5c5529(-0x1f8,-0x1ca)+_0x173b42(-0xd0,-0x78)+_0x5c5529(-0x2be,-0x192)+_0x173b42(-0x7b,-0x73)+_0x5c5529(-0xd5,-0x122)+_0x5c5529(-0xe4,-0x147)+_0x5c5529(-0x217,-0x105)+_0x173b42(-0x197,-0x6d)+_0x5c5529(-0x129,-0x19f)+_0x173b42(-0x21c,-0x145)+_0x5c5529(0x7d,-0x1)+'nnerH'+_0x5c5529(-0x279,-0x1bb)+'\x20data'+_0x173b42(-0x26b,-0x2f2)+_0x173b42(-0x48,-0x49)+'\x20\x20\x20\x20\x20'+_0x5c5529(-0x28c,-0x192)+_0x5c5529(-0x14d,-0x1fc)+_0x5c5529(-0x113,-0x1a4)+_0x173b42(-0x16b,-0x275)+_0x5c5529(-0x2f3,-0x238)+_0x173b42(-0x2c3,-0x188)+'syste'+'m\x27)\x0a\x20'+'\x20\x20\x20\x20\x20'+_0x5c5529(0x132,-0xd)+_0x5c5529(-0x292,-0x1a9)+_0x5c5529(0x26,-0x4e)+'<div\x20'+_0x5c5529(-0xd1,-0x14c)+_0x5c5529(-0x221,-0x24c)+_0x173b42(-0x244,-0x30c)+'\x27\x20+\x20m'+'.type'+'\x20+\x20\x27\x22'+_0x5c5529(-0x24d,-0x12b)+_0x5c5529(-0x22d,-0x210)+_0x173b42(-0xbd,-0xf2)+_0x5c5529(-0x150,-0xf4)+'xt)\x20+'+_0x173b42(-0x28e,-0x1ca)+_0x173b42(-0x61,0x71)+_0x173b42(-0x291,-0x1dd)+_0x5c5529(-0x1eb,-0x192)+_0x173b42(-0xe3,0x20)+_0x173b42(-0x16f,-0x1c8)+_0x173b42(-0x1ab,-0xf9)+_0x5c5529(-0xed,-0xc9)+'\x0a\x20\x20\x20\x20'+'\x20\x20.ca'+'tch(e'+_0x5c5529(-0x24e,-0x165)+_0x5c5529(-0x372,-0x242)+_0x173b42(-0xa1,-0x16a)+_0x173b42(-0x76,-0x123)+_0x173b42(-0x18d,-0x2c2)+_0x5c5529(-0x16d,-0x175)+_0x173b42(-0x66,-0x138)+_0x173b42(-0x10f,-0x1b3)+_0x5c5529(0x1a,-0x1c)+_0x5c5529(-0x2b7,-0x24d)+_0x173b42(-0x26c,-0x284)+'tCont'+_0x173b42(-0x167,-0x1e9)+_0x5c5529(-0x1ab,-0x203)+_0x5c5529(-0xf2,-0x14d)+'\x20\x20\x20\x20\x20'+_0x173b42(-0x7b,0xb8)+'cumen'+'t.get'+'Eleme'+_0x173b42(-0x197,-0xc7)+_0x173b42(-0x1ee,-0x128)+_0x5c5529(-0x21b,-0x1cd)+_0x5c5529(0x17,-0x1)+'nnerH'+'TML\x20='+_0x173b42(-0x28f,-0x248)+_0x173b42(-0x148,-0xc6)+'ss=\x22e'+_0x173b42(-0x190,-0x1e3)+_0x5c5529(-0x22c,-0x258)+'ed\x20to'+_0x5c5529(-0x61,-0x159)+_0x5c5529(-0xff,-0x168)+_0x5c5529(-0x1e8,-0x16c)+_0x5c5529(-0x192,-0x192)+_0x5c5529(-0x26b,-0x260)+_0x173b42(-0x1c1,-0xcc)+_0x5c5529(0xa4,-0x68)+_0x5c5529(-0x14a,-0xd0)+_0x5c5529(-0x355,-0x22e)+_0x5c5529(-0x9f,-0x14a)+'xt)\x20{'+_0x5c5529(-0x150,-0x242)+_0x5c5529(-0x2af,-0x21f)+'st\x20di'+_0x173b42(-0x1dd,-0xbe)+_0x5c5529(0xd6,-0x27)+_0x173b42(-0x6e,0x1a)+_0x5c5529(-0x55,-0x7)+'lemen'+_0x173b42(-0x16e,-0xcc)+'v\x27);\x0a'+_0x5c5529(-0x97,-0x192)+'\x20div.'+_0x173b42(-0x1ce,-0x1a2)+_0x5c5529(-0x38a,-0x26e)+_0x5c5529(-0x110,-0x1bf)+'ext;\x0a'+_0x5c5529(-0x28b,-0x192)+_0x5c5529(-0x1d9,-0x183)+_0x5c5529(-0x9f,-0x14b)+_0x173b42(-0x178,-0x1ac)+_0x173b42(-0x11e,-0x1b6)+_0x173b42(-0x181,-0x74)+('lace('+_0x173b42(-0x122,-0x18a)+_0x173b42(-0x2c4,-0x30d)+_0x5c5529(-0xfe,-0x46)+_0x5c5529(-0x2ac,-0x242)+_0x173b42(-0x1c8,-0x186)+'/scri'+_0x5c5529(-0xe6,-0x4)+_0x5c5529(-0x2a9,-0x1c6)+_0x173b42(-0x4d,-0xd0)+_0x173b42(-0x93,-0xed)+'\x20\x20'));}else return errors[_0x173b42(-0x10d,-0x10a)+_0x173b42(-0x140,-0x1cb)](_0x44326f,_0x55be4c[_0x173b42(-0x157,-0xfe)]);}if(_0x55be4c['DhAZS'](_0x5a4456[_0x5c5529(-0x13f,-0x169)+'h'],MAX_MESSAGES_PER_SHARE))return errors['badRe'+_0x173b42(-0x140,-0x214)](_0x44326f,_0x173b42(-0xae,-0xb0)+_0x5c5529(0xfe,-0x3e)+_0x5c5529(-0x2be,-0x19d)+'es\x20(m'+_0x5c5529(-0x303,-0x1d3)+MAX_MESSAGES_PER_SHARE+')');const _0x3c4d60=_0x55be4c[_0x5c5529(-0x28a,-0x24b)](randomUUID)[_0x173b42(-0x15d,-0xa0)+'ce'](/-/g,'')['subst'+_0x173b42(-0xea,-0xc2)](0xecd+0xf0d*-0x2+0xf4d*0x1,0x1112*-0x1+-0x3fa+0x1518),_0x1357b5=_0x24835c[_0x173b42(-0xcb,-0x183)](_0x385ce5,_0x3c4d60+_0x173b42(-0x2a0,-0x30c)),_0x390cc6=typeof _0x29e4a===_0x5c5529(-0xf5,-0x1bd)+'g'?_0x29e4a['subst'+_0x173b42(-0xea,0x1b)](0x1*-0x22ba+-0x1ee*-0x4+0x1b02,-0xdd9+0x96*-0x2+0xfcd)[_0x173b42(-0x15d,-0x77)+'ce'](/[\x00-\x1F\x7F]/g,''):_0x173b42(-0x114,-0xe0)+_0x173b42(-0x65,-0x68)+'versa'+_0x173b42(-0xf7,-0x1dd),_0x31c005=_0x5a4456['map'](_0x126458=>({'type':sanitizeMessageType(_0x126458[_0x5c5529(-0x214,-0x215)]),'text':sanitizeMessageText(_0x126458[_0x5c5529(-0xfb,-0x110)]),'timestamp':typeof _0x126458[_0x173b42(-0x25d,-0x2e9)+_0x5c5529(-0x29f,-0x17c)]===_0x5c5529(-0xda,-0x9c)+'r'?_0x126458[_0x5c5529(-0x286,-0x20e)+_0x173b42(-0x1cb,-0xb3)]:Date[_0x173b42(-0xaf,-0xf6)]()})),_0x16222e={'id':_0x3c4d60,'title':_0x390cc6,'messages':_0x31c005,'createdAt':Date[_0x5c5529(0x57,-0x60)](),'expiresAt':Date[_0x5c5529(-0xb2,-0x60)]()+_0x55be4c[_0x5c5529(-0x198,-0x84)](_0x55be4c['JqbjJ'](_0x55f721,-0x11b9+0xf5*0x1+-0x88*-0x20),-0xd4c+0x10d*0x13+-0x66f)*(0x781+-0x3fd*-0x7+0x7e1*-0x4),'viewCount':0x0},_0x28f75d=_0x24835c[_0x5c5529(0x5b,-0x7c)](_0x385ce5,_0x5c5529(-0x122,-0xc1)+_0x3c4d60+'-'+_0x55be4c[_0x5c5529(-0xb,-0x5e)](randomUUID)+_0x173b42(-0x2a0,-0x360));await _0x59ffde['write'+_0x5c5529(-0x1f8,-0x1d4)](_0x28f75d,JSON[_0x5c5529(-0x159,-0x1bd)+'gify'](_0x16222e,null,-0x98*0xb+-0x1b6b+0x21f5)),await _0x59ffde[_0x5c5529(0x74,-0xa7)+'e'](_0x28f75d,_0x1357b5),_0x55be4c[_0x173b42(-0x1d1,-0x28f)](log,_0x55be4c[_0x5c5529(-0x175,-0x116)],_0x173b42(-0x11c,0x18)+'e]\x20Cr'+'eated'+_0x173b42(-0x232,-0x256)+_0x173b42(-0xb5,-0x6b)+_0x3c4d60);const _0x14c347={};return _0x14c347['share'+'Id']=_0x3c4d60,_0x14c347[_0x5c5529(-0x188,-0x26c)+_0x5c5529(-0x4d,-0xfb)]='/shar'+'e/'+_0x3c4d60,_0x14c347[_0x5c5529(-0x24e,-0x1ac)+'esAt']=_0x16222e[_0x173b42(-0x1fb,-0x217)+_0x173b42(-0x239,-0x267)],_0x55be4c[_0x173b42(-0x279,-0x2fe)](sendSuccess,_0x44326f,_0x14c347);}}catch(_0x3c7661){return _0x55be4c[_0x5c5529(0x7,-0x115)](log,_0x5c5529(-0xc7,-0x23),_0x5c5529(-0x119,-0xcd)+_0x5c5529(-0x12d,-0x112)+'eate\x20'+_0x5c5529(0x22,-0x23)+':',_0x3c7661[_0x5c5529(0x52,-0xdb)+'ge']),errors['serve'+'rErro'+'r'](_0x44326f,_0x55be4c[_0x5c5529(-0x251,-0x1a2)]);}}),_0x53d687[_0x36779f(0x2cd,0x217)](_0x55be4c['DJNZy'],async(_0xdcb38f,_0x27ec5e)=>{function _0x2948e7(_0x58f6e7,_0x38fe58){return _0x36779f(_0x58f6e7,_0x38fe58-0x136);}function _0x5a2075(_0x2f2319,_0x4e1275){return _0x36779f(_0x2f2319,_0x4e1275-0x247);}if(_0x55be4c['uLcpI'](_0x2948e7(0x283,0x245),_0x55be4c[_0x5a2075(0x370,0x3b8)]))try{const {shareId:_0x17e440}=_0xdcb38f[_0x5a2075(0x4c6,0x4b3)+'s'],_0x3f84d7=_0x55be4c['yYXOv'](sanitizeShareId,_0x17e440);if(!_0x3f84d7[_0x5a2075(0x3e4,0x2d4)])return _0x55be4c[_0x5a2075(0x394,0x424)](_0x55be4c[_0x5a2075(0x2d7,0x2ff)],_0x55be4c[_0x5a2075(0x491,0x4a1)])?_0x1ac79b['notFo'+_0x2948e7(0x24f,0x30a)](_0x2b2660,_0x55be4c['hrrJK']):errors['badRe'+'quest'](_0x27ec5e,_0x3f84d7[_0x5a2075(0x5f3,0x505)]);const _0x5324ca=_0x3f84d7[_0x2948e7(0x499,0x365)+_0x2948e7(0x2eb,0x351)],_0x23b2b3=_0x24835c[_0x5a2075(0x4b8,0x4ac)](_0x385ce5,_0x5324ca+_0x2948e7(0x144,0x1c6));try{if(_0x55be4c[_0x2948e7(0x354,0x3a6)](_0x55be4c[_0x5a2075(0x424,0x2f2)],_0x55be4c[_0x5a2075(0x23b,0x2f2)]))return _0x30d5a8[_0x5a2075(0x38e,0x46a)+_0x5a2075(0x3bc,0x437)](_0x3dc24d,_0x2948e7(0x425,0x3b8)+_0x5a2075(0x41a,0x4ea)+_0x5a2075(0x281,0x38b)+_0x5a2075(0x2c3,0x2c6)+_0x2948e7(0x292,0x244)+_0x346c22+')');else{const _0x103eb9=await _0x59ffde[_0x2948e7(0x3cb,0x2ed)+_0x2948e7(0x44f,0x39f)](_0x23b2b3,_0x55be4c['ZPAuG']),_0x411d6b=JSON[_0x5a2075(0x25c,0x30a)](_0x103eb9);if(Date[_0x5a2075(0x506,0x4c8)]()>_0x411d6b['expir'+_0x5a2075(0x2c7,0x33e)])return _0x55be4c[_0x2948e7(0x33b,0x3bb)](_0x55be4c[_0x5a2075(0x379,0x3f3)],_0x55be4c[_0x5a2075(0x421,0x440)])?(await _0x59ffde[_0x2948e7(0x28a,0x34f)+'k'](_0x23b2b3)[_0x2948e7(0x2f6,0x2d4)](()=>{}),errors['notFo'+_0x5a2075(0x476,0x41b)](_0x27ec5e,_0x2948e7(0x2f1,0x352)+'\x20link'+_0x2948e7(0xed,0x20e)+_0x2948e7(0x1b4,0x26b)+'ed')):_0x31e36d[_0x2948e7(0x31d,0x2a4)+_0x5a2075(0x37d,0x41b)](_0x5d1494,_0x55be4c[_0x2948e7(0x357,0x3ce)]);return _0x411d6b[_0x2948e7(0x349,0x21e)+_0x2948e7(0x363,0x3f3)]++,await _0x59ffde['write'+_0x2948e7(0x266,0x243)](_0x23b2b3,JSON[_0x5a2075(0x351,0x36b)+'gify'](_0x411d6b,null,-0x1fdf+-0xce+0x20af)),_0x55be4c[_0x5a2075(0x1c3,0x300)](sendSuccess,_0x27ec5e,_0x411d6b);}}catch(_0x480a47){return _0x55be4c['uLcpI'](_0x2948e7(0x3a5,0x2a9),_0x55be4c[_0x5a2075(0x1dc,0x2eb)])?(_0x55be4c[_0x2948e7(0x343,0x302)](_0x38e665,_0x55be4c['jXPfp'],_0x55be4c[_0x2948e7(0x424,0x358)],_0x3ab30b[_0x5a2075(0x4ab,0x44d)+'ge']),_0x376169[_0x5a2075(0x39c,0x4bd)+_0x2948e7(0x4ce,0x422)+'r'](_0x15599a,_0x55be4c[_0x2948e7(0x375,0x275)])):errors[_0x5a2075(0x477,0x3b5)+_0x5a2075(0x303,0x41b)](_0x27ec5e,_0x55be4c['hrrJK']);}}catch(_0x38a3dc){if(_0x55be4c['Zwwtq'](_0x5a2075(0x4a7,0x399),_0x55be4c['VEtsR']))return _0x55be4c[_0x2948e7(0x511,0x3e8)](log,_0x55be4c['jXPfp'],_0x55be4c[_0x5a2075(0x3da,0x4a9)],_0x38a3dc[_0x2948e7(0x207,0x33c)+'ge']),errors[_0x5a2075(0x4d5,0x4bd)+_0x2948e7(0x43d,0x422)+'r'](_0x27ec5e,_0x55be4c['BEhrl']);else{if(!_0x416f4c||NXBUBb['Zwwtq'](typeof _0x2e0c62,NXBUBb[_0x2948e7(0x3c8,0x354)]))return'';let _0xfa0055=_0x43920c[_0x5a2075(0x46f,0x47e)+_0x5a2075(0x52f,0x48d)](0x200f+-0x5*-0x1c6+-0x28ed,_0x1c782a);return _0xfa0055=_0xfa0055[_0x2948e7(0x235,0x309)+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,''),_0xfa0055;}}else return _0xc08a2b;}),_0x53d687['delet'+'e'](_0x57212c(0x313,0x267)+_0x57212c(0x111,0x3d)+_0x36779f(0xfe,0x213)+'reId',strictLimiter,async(_0x2c8b46,_0x1643f4)=>{function _0x268469(_0x2ae12f,_0x2c3ec3){return _0x36779f(_0x2c3ec3,_0x2ae12f- -0x215);}function _0x2823a8(_0x3511e8,_0x5190f7){return _0x36779f(_0x5190f7,_0x3511e8- -0x8e);}try{if(_0x55be4c[_0x268469(0x5b,0x4d)](_0x55be4c[_0x2823a8(0xef,0x1e1)],'YryHd'))_0x5d44ef[_0x2823a8(0x239,0x368)](_0x55be4c['HgwQA'](_0x1a7a6c,_0x1e0f91[_0x2823a8(0x1de,0x306)+'s'][_0x268469(-0x1a0,-0x19d)+'Id']));else{const {shareId:_0x385b52}=_0x2c8b46['param'+'s'],_0x22a23e=_0x55be4c[_0x2823a8(0x1ec,0x104)](sanitizeShareId,_0x385b52);if(!_0x22a23e[_0x268469(-0x188,-0x28c)])return _0x55be4c['uLcpI'](_0x268469(-0x30,-0xb8),_0x55be4c[_0x268469(0x3b,-0x34)])?errors[_0x268469(0xe,0x70)+_0x268469(-0x25,0xd4)](_0x1643f4,_0x22a23e[_0x2823a8(0x230,0x157)]):'';const _0x305dfa=_0x22a23e['sanit'+_0x268469(0x6,0x87)],_0x41fa95=_0x24835c[_0x268469(0x50,0xb5)](_0x385ce5,_0x305dfa+_0x268469(-0x185,-0x6d));return await _0x59ffde[_0x2823a8(0x18b,0x19b)+'k'](_0x41fa95),sendSuccess(_0x1643f4);}}catch(_0x3190a0){return errors[_0x2823a8(0xe0,0x1a5)+_0x268469(-0x41,-0xbf)](_0x1643f4,_0x2823a8(0x18e,0x279)+_0x2823a8(0x11b,0xbf)+'found');}});function _0x36779f(_0x5d06e4,_0x2f423f){return _0x17e4(_0x2f423f- -0x7b,_0x5d06e4);}_0x53d687[_0x57212c(0x16a,0x1df)](_0x55be4c[_0x57212c(0x187,0x11c)],async(_0x21c72,_0x1f3959)=>{function _0x954976(_0x5d1b4b,_0x17f23d){return _0x57212c(_0x5d1b4b,_0x17f23d- -0x333);}function _0x1391dc(_0x56b45f,_0x1a60eb){return _0x57212c(_0x1a60eb,_0x56b45f-0x353);}_0x1f3959[_0x1391dc(0x5e2,0x4e0)](_0x55be4c[_0x954976(-0x1b2,-0xf1)](getSharePageHTML,_0x21c72[_0x954976(0x42,-0xff)+'s'][_0x954976(-0x3dc,-0x2f6)+'Id']));});}function getSharePageHTML(_0x1a2389){function _0x2f6899(_0x4da810,_0x3cb93b){return _0x17e4(_0x4da810- -0x131,_0x3cb93b);}function _0x5df831(_0x109657,_0x513fd5){return _0x17e4(_0x109657- -0x184,_0x513fd5);}const _0x1868b5=escapeForJS(_0x1a2389[_0x2f6899(0x11d,0x22b)+'ce'](/[^a-zA-Z0-9]/g,'')[_0x5df831(0x12e,0x1b4)+_0x2f6899(0x190,0x79)](-0x2271+-0x2*-0x81e+0x1235,0x1*-0x2405+0x2*-0xb11+0x3a33));return'\x0a<!DO'+_0x5df831(0x1c3,0xf4)+_0x5df831(0xce,0xc8)+_0x5df831(0xab,0xe3)+'ml\x20la'+_0x2f6899(0x1a0,0x219)+'n\x22>\x0a<'+_0x2f6899(-0xc,0x11b)+_0x5df831(-0x83,-0x1c3)+'eta\x20c'+'harse'+_0x5df831(0x3e,0x17f)+_0x5df831(0x72,0x110)+'\x0a\x20\x20<m'+'eta\x20n'+_0x2f6899(0xbe,-0x12)+_0x2f6899(0x228,0x119)+'ort\x22\x20'+_0x2f6899(0x1a6,0x7d)+_0x2f6899(0xd7,0x153)+_0x2f6899(0x1c6,0x1f9)+_0x2f6899(0x19f,0x203)+'e-wid'+_0x2f6899(0x1a8,0x29a)+_0x5df831(0xc1,0xb)+_0x2f6899(0x223,0x101)+_0x5df831(0x53,0x159)+_0x5df831(-0xa,0x4a)+_0x5df831(-0x62,0xdd)+_0x5df831(0xf5,0x166)+_0x5df831(0x146,0x108)+_0x5df831(0x1c7,0x141)+'rsati'+_0x5df831(0x20,0xa8)+_0x2f6899(0x11f,0x213)+_0x5df831(0x37,-0x71)+_0x2f6899(0x94,0x52)+_0x5df831(0xf6,0x1f9)+_0x2f6899(0x6b,0x3a)+_0x2f6899(0x1e4,0x204)+_0x5df831(0x175,0x5c)+_0x5df831(0x11b,0x171)+_0x2f6899(0x93,0x17a)+_0x5df831(0x27,-0x84)+_0x2f6899(0x1ad,0x266)+';\x20mar'+'gin:\x20'+'0;\x20pa'+'dding'+':\x200;\x20'+_0x2f6899(0x1f4,0x231)+'\x20body'+'\x20{\x20\x0a\x20'+_0x2f6899(0x99,0x16b)+_0x2f6899(0xd5,0x124)+'famil'+_0x5df831(0x1db,0x2f5)+_0x5df831(-0x4e,-0x187)+'syste'+_0x5df831(-0x3,-0xba)+'inkMa'+_0x5df831(0x17e,0xb8)+'emFon'+'t,\x20\x27S'+_0x2f6899(0x1be,0x17c)+_0x2f6899(0x217,0x155)+_0x2f6899(0xb7,0x1da)+_0x5df831(0x120,-0x9)+_0x5df831(0x7c,0xd5)+_0x5df831(-0x8b,-0x11d)+_0x2f6899(0x146,0x164)+'und:\x20'+_0x5df831(0xef,0x18)+_0x5df831(0x8,0x88)+_0x2f6899(0x99,0xb1)+_0x2f6899(0x18a,0xd6)+_0x2f6899(0xf0,0x39)+_0x2f6899(0x3d,0xb1)+'\x20\x20\x20\x20\x20'+_0x2f6899(0x202,0xf9)+_0x2f6899(0x1a2,0x18d)+_0x2f6899(0x3b,-0x8e)+_0x5df831(0xba,0xca)+_0x2f6899(0x99,0x116)+'paddi'+'ng:\x202'+'0px;\x0a'+_0x5df831(0x29,-0x99)+_0x5df831(-0x6a,-0xa9)+_0x2f6899(0x169,0x21d)+_0x2f6899(0x15,0x8f)+_0x5df831(0x198,0xda)+_0x5df831(0x12d,0x72)+_0x2f6899(0x154,0xdf)+_0x5df831(0x141,0x91)+'\x20marg'+_0x5df831(0xd7,-0x5)+'\x20auto'+_0x5df831(0x1cc,0x225)+'\x20\x20\x20.h'+'eader'+_0x2f6899(0x105,0x95)+_0x5df831(0x46,-0x7e)+_0x2f6899(0x4b,0x92)+'align'+':\x20cen'+_0x2f6899(-0x47,-0x179)+'\x0a\x20\x20\x20\x20'+_0x2f6899(0x17f,0x141)+_0x2f6899(0x21,0xd0)+_0x5df831(0x25,-0xf4)+_0x2f6899(-0x24,0xe9)+_0x2f6899(0xb1,0x24)+_0x2f6899(0x99,0xe0)+_0x2f6899(0x7a,0x1b5)+_0x2f6899(0x106,0x171)+_0x5df831(-0x8d,-0x20)+_0x2f6899(0x1bc,0x26c)+'olid\x20'+'#333;'+_0x5df831(-0x6a,-0x81)+_0x2f6899(-0x2b,-0x1a)+'gin-b'+'ottom'+_0x5df831(0xe5,0x206)+_0x2f6899(0xa5,-0x5e)+_0x2f6899(-0x32,-0x156)+_0x5df831(0x10c,0x1a4)+'ogo\x20{'+'\x20font'+'-size'+_0x2f6899(-0x46,-0x144)+_0x2f6899(0x40,0x2a)+_0x5df831(0x85,0x107)+'ottom'+_0x5df831(0x158,0x16c)+_0x5df831(0x1cc,0xce)+_0x5df831(0x107,0x3a)+_0x2f6899(0x17e,0x201)+_0x5df831(-0x6d,0x8f)+_0x5df831(0x1e0,0x1f8)+_0x2f6899(0x17b,0x1a2)+_0x5df831(0x1aa,0x92)+_0x5df831(0x26,-0x98)+_0x5df831(0xc9,-0x78)+_0x5df831(0x4f,0xb9)+_0x2f6899(0x21e,0x1d3)+_0x2f6899(0x150,0x92)+_0x5df831(0x1b6,0x270)+_0x5df831(0xc7,0x17)+_0x5df831(0xbb,-0x60)+_0x5df831(0x1ba,0x127)+_0x5df831(0x13b,0x132)+_0x2f6899(0x1b5,0x137)+_0x2f6899(0x10,0xc)+_0x2f6899(0x1e,-0xf8)+_0x5df831(0x8f,0x10e)+_0x2f6899(0x5d,0x15)+'12px;'+_0x5df831(0x9,-0x5b)+_0x2f6899(0xfa,0x7f)+_0x2f6899(0x5e,0x1e)+_0x5df831(0xb2,0xf7)+_0x2f6899(0x99,0x14d)+_0x5df831(0x38,-0x27)+_0x2f6899(0x6,-0x105)+_0x5df831(0x83,-0x97)+'6px;\x20'+'\x0a\x20\x20\x20\x20'+'\x20\x20bor'+_0x2f6899(0x17c,0x116)+_0x5df831(-0x22,-0x164)+_0x2f6899(0x1f8,0x127)+'x;\x20\x0a\x20'+_0x5df831(0x46,-0xa1)+_0x2f6899(0x18d,0x29a)+_0x2f6899(0xae,0x1b2)+_0x2f6899(-0x1c,0xef)+'\x0a\x20\x20\x20\x20'+_0x5df831(0x1a1,0x293)+'\x20.mes'+_0x2f6899(0x9,-0x8f)+'user\x20'+'{\x20\x0a\x20\x20'+_0x2f6899(0x1e6,0x185)+_0x5df831(0xe3,0x1c5)+_0x5df831(0xa4,-0x46)+_0x5df831(0x1ae,0x1ec)+_0x2f6899(0xeb,0x104)+_0x5df831(-0x6a,-0x171)+_0x5df831(-0x37,0x109)+_0x5df831(-0x29,0xba)+_0x2f6899(0x1c2,0x236)+'lex-e'+_0x2f6899(0x77,0x4f)+_0x5df831(0x46,-0xd6)+_0x5df831(0x27,-0xfc)+_0x5df831(0xb3,0x56)+_0x2f6899(-0x6,0x69)+_0x5df831(-0x25,0xbd)+(_0x5df831(0x103,0x1d1)+'s:\x204p'+_0x5df831(0x52,-0xc0)+'\x20\x20}\x0a\x20'+_0x5df831(0x11,-0xac)+_0x2f6899(0x8e,-0x8c)+'e.ass'+_0x5df831(0xc4,-0x5e)+_0x2f6899(0x13d,0xb1)+'\x20\x20\x20\x20\x20'+'\x20back'+_0x2f6899(0x187,0x280)+_0x2f6899(0x13e,0xcb)+'e1e2e'+_0x5df831(0x1dc,0x1f0)+_0x2f6899(0x177,0x288)+'lign-'+_0x5df831(0x1b8,0x115)+'\x20flex'+'-star'+_0x5df831(0x11c,0x2f)+_0x2f6899(0x1e6,0x2de)+_0x2f6899(0xf8,0xd8)+_0x2f6899(0x46,0x33)+_0x5df831(-0x4f,-0x10b)+_0x2f6899(0x1ef,0x21c)+_0x2f6899(0x206,0x10a)+_0x5df831(-0x8c,-0x13a)+_0x5df831(-0x6a,-0x3)+_0x2f6899(0x1f4,0x1df)+_0x5df831(0x12f,0x3a)+_0x2f6899(-0x11,0xd)+_0x5df831(-0x6a,-0x128)+_0x5df831(-0x3f,0x4)+_0x2f6899(0x19d,0x11a)+'gn:\x20c'+'enter'+';\x0a\x20\x20\x20'+_0x2f6899(0x51,0x1c)+'rgin-'+_0x5df831(0x15b,0x228)+'30px;'+_0x5df831(-0x6a,-0x189)+_0x2f6899(0x17f,0x1b3)+_0x5df831(0x165,0x240)+_0x2f6899(0x1ae,0x115)+_0x5df831(-0x17,0xe7)+_0x2f6899(-0x17,-0x9a)+_0x5df831(-0x2f,-0xd1)+_0x2f6899(0x1f5,0x2a0)+'op:\x201'+_0x5df831(0x15d,0x79)+'lid\x20#'+'333;\x0a'+_0x5df831(0x46,-0x2)+_0x5df831(0x137,0x11)+_0x5df831(-0x9,0x8c)+'66;\x0a\x20'+'\x20\x20\x20\x20\x20'+_0x2f6899(0xd5,0x1e5)+_0x2f6899(0xd4,0x18e)+_0x2f6899(0x6f,0x157)+'m;\x0a\x20\x20'+_0x5df831(-0x85,-0x133)+_0x2f6899(0xd0,0x16)+'ooter'+'\x20a\x20{\x20'+_0x5df831(0x26,0x54)+':\x20#63'+_0x5df831(0x148,0x26e)+_0x2f6899(-0x3e,-0x119)+_0x5df831(0x14e,0x2f)+'ratio'+'n:\x20no'+_0x2f6899(0x235,0x1d5)+_0x2f6899(-0x17,-0x3d)+_0x5df831(0x14,0x90)+'r\x20{\x20t'+_0x2f6899(0xcc,0x17a)+_0x5df831(0xcd,0x9d)+'\x20cent'+_0x5df831(-0x7,0x38)+'addin'+_0x5df831(0xde,0x76)+_0x2f6899(0x20a,0x1ef)+_0x2f6899(0x237,0x2bb)+_0x2f6899(0x2b,-0xb4)+'444;\x20'+_0x2f6899(0x1f4,0x11b)+_0x2f6899(0x153,0x1fc)+_0x5df831(0x149,0x1e3)+_0x5df831(-0x70,-0x195)+_0x2f6899(0x19d,0x2c5)+_0x5df831(0xb5,0x101)+_0x2f6899(0xf5,0x12c)+_0x5df831(0x33,0x9f)+_0x5df831(-0x32,0x62)+'\x2040px'+_0x2f6899(0x1c1,0x116)+_0x5df831(0x122,0x6f)+_0x5df831(-0x93,-0x33)+'}\x0a\x20\x20<'+_0x5df831(-0x1b,-0x80)+_0x5df831(0x35,0x6)+_0x5df831(-0x5f,-0x8f)+_0x5df831(0xbd,-0x10)+_0x2f6899(0x20,0x12e)+'<div\x20'+_0x2f6899(0xdf,0x6e)+_0x5df831(0xfa,0x1e7)+'taine'+_0x5df831(0x19d,0xb8)+_0x2f6899(0x159,0x56)+'iv\x20cl'+'ass=\x22'+_0x5df831(0x2b,-0xf3)+_0x2f6899(0x1f0,0x20b)+'\x20\x20\x20\x20\x20'+_0x2f6899(0x43,0x15a)+_0x5df831(0x8c,0xe0)+_0x2f6899(0x185,0x164)+_0x2f6899(0xef,0x1cf)+_0x2f6899(0x11f,0xee)+_0x5df831(0x7b,-0x1b)+_0x2f6899(0x134,0x12a)+_0x2f6899(0x1a9,0x21f)+_0x2f6899(0x170,0x2a9)+_0x5df831(-0x5,-0x13f)+'\x22titl'+_0x5df831(0x111,0xc6)+'=\x22sha'+_0x2f6899(0x34,0x2c)+_0x5df831(0x1cd,0x1af)+_0x2f6899(0xe5,0xea)+_0x5df831(0x1ce,0xcc)+_0x2f6899(0x186,0x9b)+_0x2f6899(-0x17,-0x65)+'</div'+_0x2f6899(0x234,0x266)+_0x5df831(0x17d,0x27b)+'\x20clas'+_0x2f6899(0x0,-0x90)+_0x5df831(0xb,-0xf8)+_0x2f6899(0xa3,-0x94)+_0x5df831(-0x74,-0x119)+_0x2f6899(-0x1e,0x6e)+_0x5df831(0xfb,0x202)+_0x5df831(0x156,0x243)+_0x5df831(0x11d,0x129)+_0x2f6899(0x4e,0x2b)+_0x5df831(0xf,0xb1)+_0x5df831(0xc,0x41)+_0x2f6899(0xe7,0x41)+_0x2f6899(0x230,0x271)+_0x2f6899(0x1a5,0x2ac)+_0x5df831(0x183,0x257)+_0x2f6899(-0x10,0x67)+_0x2f6899(0x76,0x1a1)+'\x20\x20\x20\x20<'+_0x2f6899(0x186,0x97)+_0x5df831(-0x6a,-0x103)+_0x2f6899(0x43,-0x1d)+'class'+_0x2f6899(-0xa,0x117)+_0x2f6899(0x19,-0xd7)+_0x2f6899(-0x17,-0xf7)+_0x5df831(0x96,-0x4e)+_0x5df831(-0x5b,-0x14b)+_0x2f6899(0xc1,0x1ac)+'\x20href'+_0x5df831(0x71,0x149)+_0x2f6899(0x11f,0x15c)+_0x5df831(-0x8e,0xac)+_0x2f6899(-0x17,-0x108)+'</div'+_0x5df831(0xaa,-0x6b)+_0x5df831(0x133,0xf1)+_0x5df831(0xf9,0x141)+_0x5df831(0x164,0x104)+_0x5df831(0x1e1,0x180)+_0x2f6899(0x14f,0x1d7)+_0x2f6899(-0x28,-0x3d)+_0x5df831(0xd2,0x11d)+_0x5df831(0x114,0xe8)+_0x5df831(0x188,0x19a)+_0x2f6899(0x56,-0x32)+'ument'+_0x2f6899(0x104,0x53)+_0x5df831(0x2a,-0xdd)+_0x5df831(0x1bf,0x2bd)+_0x2f6899(0xb,-0xf8)+_0x2f6899(0x1f2,0x17b)+_0x2f6899(0xac,0x50)+_0x2f6899(-0x43,0xd4)+'t\x20=\x20s'+_0x5df831(0x1bb,0xf6)+'urn\x20d'+_0x5df831(0xbf,0x183)+_0x5df831(-0x40,-0x155)+';\x20}\x0a\x20')+(_0x2f6899(0x60,0x118)+_0x2f6899(0x193,0x135)+_0x5df831(-0x97,-0x11d)+_0x5df831(0xf7,0x92))+_0x1868b5+(_0x5df831(0x1b2,0x20e)+'\x20\x20fet'+_0x2f6899(-0x42,-0xa1)+_0x2f6899(0x1e1,0x250)+_0x5df831(-0x39,-0x156)+_0x5df831(0x60,-0x42)+_0x2f6899(-0x44,-0xfe)+'d)\x0a\x20\x20'+_0x5df831(0x1cb,0x1c6)+_0x2f6899(0x5a,0x53)+_0x2f6899(0x39,0x144)+_0x2f6899(0x178,0x264)+_0x5df831(0x1e,-0x10a)+'\x20\x20\x20\x20\x20'+_0x5df831(-0x8f,-0xfd)+_0x5df831(0xb7,0x67)+_0x2f6899(0x103,0x1e0)+_0x5df831(0xe9,0x1cd)+'\x20\x20\x20\x20\x20'+_0x5df831(0xa1,0x6c)+'data.'+_0x2f6899(0x35,-0xdb)+_0x5df831(0x184,0x13b)+_0x5df831(0x14,0x49)+_0x5df831(0x19e,0xc1)+_0x2f6899(0x99,0xf0)+_0x5df831(0x46,-0xf7)+_0x2f6899(0x45,0x1)+_0x5df831(-0x2d,-0xea)+_0x2f6899(-0x4b,0xa)+_0x2f6899(0xe6,-0x47)+_0x2f6899(0xb0,0xdc)+'share'+'Title'+_0x5df831(0x121,0x232)+_0x5df831(0x76,-0x61)+_0x2f6899(0x54,-0x81)+'=\x20\x27Er'+_0x5df831(0xd6,0x11b)+_0x2f6899(-0x17,0x96)+'\x20\x20\x20\x20\x20'+_0x5df831(0xe8,0x7d)+_0x5df831(0x187,0x250)+'getEl'+_0x5df831(0x54,0x12d)+'ById('+_0x2f6899(-0x19,-0xc8)+_0x2f6899(0x12c,0xcc)+_0x2f6899(0x122,0x1a1)+_0x2f6899(0x15c,0x26a)+_0x2f6899(0xcb,0x2f)+'<div\x20'+_0x5df831(0x8c,0xf3)+_0x5df831(0x150,0x12)+'or\x22>\x27'+'\x20+\x20es'+_0x5df831(0x1c8,0xa1)+_0x5df831(0xec,0x121)+_0x2f6899(0x135,0x1a6)+_0x5df831(-0x61,-0x18f)+_0x5df831(0x7e,-0x83)+'error'+_0x5df831(-0x81,-0x147)+_0x5df831(0x18b,0x2b9)+_0x2f6899(0x124,0x97)+_0x5df831(0x46,-0xdb)+_0x5df831(0x46,0x15b)+_0x5df831(-0x98,-0x148)+_0x5df831(0x21,0xd3)+_0x5df831(0x46,0xa5)+_0x5df831(0x9,0xc5)+_0x2f6899(0x99,-0x4e)+_0x2f6899(0x13b,0x77)+_0x2f6899(0x1da,0xaa)+_0x5df831(-0x1c,0x7d)+_0x5df831(0x54,0x61)+_0x5df831(-0x20,0x45)+'\x27shar'+_0x5df831(0x75,-0x59)+'e\x27).t'+_0x2f6899(0x145,0xed)+'ntent'+_0x5df831(0x47,-0x23)+_0x2f6899(0x61,0x126)+_0x2f6899(0x1aa,0x2c1)+_0x2f6899(0x99,-0x7a)+_0x2f6899(0x1ff,0x2bc)+'cumen'+_0x5df831(0x91,0x163)+_0x2f6899(0x126,0xa5)+_0x2f6899(0xe3,0x106)+_0x2f6899(0x8c,0xf4)+'ssage'+'s\x27).i'+_0x5df831(-0x30,-0x10a)+'TML\x20='+_0x5df831(0x184,0xe6)+'.mess'+'ages\x0a'+'\x20\x20\x20\x20\x20'+_0x2f6899(0x99,0x183)+_0x2f6899(0x2f,-0x45)+_0x2f6899(0x87,0x85)+_0x2f6899(0x10f,-0x32)+_0x2f6899(-0xd,0x121)+_0x2f6899(-0x49,-0x102)+_0x2f6899(0x80,0x3f)+_0x5df831(0x138,0xd0)+_0x5df831(0x46,-0xf4)+_0x5df831(0x1cb,0x1d2)+_0x2f6899(0x82,0x104)+_0x5df831(0x18a,0x1c5)+_0x2f6899(0x43,-0x80)+_0x5df831(0x8c,0x65)+_0x5df831(-0x74,-0xd6)+_0x5df831(-0x1d,-0x2c)+_0x5df831(-0x58,-0xc3)+'.type'+_0x2f6899(0xf1,0x1f5)+'>\x27\x20+\x20'+'escap'+_0x5df831(0x16a,0x8a)+'(m.te'+'xt)\x20+'+'\x20\x27</d'+_0x2f6899(0x219,0x26a)+_0x2f6899(-0x17,-0xa0)+_0x5df831(0x46,0xad)+_0x5df831(0x144,0x1c3)+'n(\x27\x27)'+_0x2f6899(0xcf,0x1bf)+'\x20\x20\x20})'+_0x5df831(-0x6a,-0x12e)+_0x5df831(0x80,0x10c)+_0x2f6899(0x19e,0x1e4)+_0x5df831(0x73,0x6a)+'\x0a\x20\x20\x20\x20'+_0x5df831(0x186,0x1b9)+_0x2f6899(0x204,0x179)+_0x5df831(0x9a,-0x89)+_0x2f6899(0xb6,-0x85)+_0x5df831(0x1c1,0xd3)+_0x5df831(0x118,0x107)+'hareT'+'itle\x27'+_0x2f6899(0xe,-0x18)+_0x5df831(-0x2a,-0x13d)+_0x5df831(0xc0,0x118)+'\x20\x27Err'+'or\x27;\x0a'+_0x5df831(0x46,0xfc)+_0x5df831(0x1ac,0x284)+_0x2f6899(0x109,0x1da)+_0x5df831(0x91,-0xa4)+_0x2f6899(0x126,0x197)+_0x2f6899(0xe3,0xe7)+_0x5df831(0x39,-0xcb)+_0x5df831(0xb,0x46)+_0x2f6899(0x22a,0x138)+_0x5df831(-0x30,0x3)+_0x2f6899(0x70,-0x52)+_0x5df831(-0x68,-0x68)+'v\x20cla'+_0x2f6899(0x1df,0x2f6)+_0x2f6899(0xea,0x154)+'>Fail'+_0x5df831(0xac,-0x5c)+_0x2f6899(0xd2,0xd0)+_0x5df831(0x70,0x22)+_0x2f6899(0xbf,0x9e)+_0x2f6899(0x99,0x23)+_0x5df831(-0x88,0x65)+_0x2f6899(0xb9,0x1e9)+_0x2f6899(0x1c3,0x1c0)+'n\x20esc'+_0x2f6899(-0x3,0x9c)+'ml(te'+_0x2f6899(-0x31,0xf0)+_0x2f6899(-0x17,-0x12f)+_0x5df831(-0x47,0xf9)+'st\x20di'+_0x5df831(0x4a,-0xa4)+_0x2f6899(0x204,0x161)+_0x2f6899(0x20c,0x177)+_0x2f6899(0x224,0x1dd)+_0x2f6899(0x1e8,0x15a)+_0x5df831(0xb9,0x1ea)+_0x5df831(0x1d8,0x14e)+_0x5df831(0x46,0x102)+'\x20div.'+'textC'+_0x2f6899(-0x43,-0x17d)+_0x2f6899(0x6c,0x153)+_0x2f6899(0xd9,0x1fa)+'\x20\x20\x20\x20\x20'+_0x5df831(0x55,-0xcb)+_0x2f6899(0xe0,0x128)+_0x5df831(0xaf,0x1c8)+_0x5df831(0x109,0x84)+_0x5df831(0xa6,-0x51)+(_0x2f6899(0x96,-0x6b)+_0x5df831(0x105,-0xa)+_0x5df831(-0x9d,-0x1a1)+_0x2f6899(0x1e5,0x116)+_0x5df831(-0x6a,-0xe0)+_0x2f6899(0xb2,0x7a)+_0x2f6899(0x1d4,0x107)+_0x2f6899(0x227,0x183)+_0x2f6899(0x65,0xec)+_0x5df831(0x1da,0xab)+'tml>\x0a'+'\x20\x20'));}const _0x4a917d={};_0x4a917d['setup'+_0x25e230(-0x61,0xb1)+_0x25e230(-0x113,-0x1b1)+'s']=setupShareRoutes;export default _0x4a917d;
1
+ (function(_0x280fd5,_0x3dfa5a){function _0x124828(_0x3d3d16,_0x31b606){return _0x1113(_0x3d3d16- -0x2ed,_0x31b606);}const _0x2ce36b=_0x280fd5();function _0x2ce78a(_0xbeca85,_0x50b8d2){return _0x1113(_0xbeca85- -0x186,_0x50b8d2);}while(!![]){try{const _0x43ae4e=-parseInt(_0x2ce78a(0x71,-0x9e))/(-0xd3*-0x1f+-0x6cf+-0x12bd)+parseInt(_0x124828(-0xb0,-0xec))/(0x32f*0x3+0x22ef+-0x2c7a)*(-parseInt(_0x124828(0xa7,0x91))/(0xd5*-0x8+0x1*0x1fc7+-0x4*0x647))+-parseInt(_0x124828(-0xbe,-0x79))/(-0x8f7*-0x1+0x1*-0x25fe+0x1d0b)*(-parseInt(_0x2ce78a(0xe3,-0x31))/(0x254+-0xdfc+0xbad))+parseInt(_0x2ce78a(0x55,-0xaa))/(0x18da+-0x2bd*0xd+0xac5)+-parseInt(_0x124828(-0x6,0x88))/(0x7*0x593+0x1e52+0x8*-0x8aa)+-parseInt(_0x124828(-0x6e,-0x128))/(-0x25*0xcb+0x1bde+-0xb*-0x23)*(parseInt(_0x124828(-0x15f,-0x299))/(0x5*-0x167+0x900*0x1+-0x19*0x14))+parseInt(_0x2ce78a(0xd3,0x1d4))/(-0x5c9+0xca*-0x15+0x777*0x3)*(parseInt(_0x124828(-0xf5,-0x22b))/(-0x59*0x49+0xd47+0xc25));if(_0x43ae4e===_0x3dfa5a)break;else _0x2ce36b['push'](_0x2ce36b['shift']());}catch(_0xecd60d){_0x2ce36b['push'](_0x2ce36b['shift']());}}}(_0x43d5,-0x25008+-0x2f83*0x9+0x5c310));const _0x5ae76e=(function(){const _0x1e8c45={};_0x1e8c45[_0x2333e3(0x7c,0x15c)]=function(_0x1d4f4c,_0x19e7dd){return _0x1d4f4c!==_0x19e7dd;},_0x1e8c45[_0x14b605(-0x96,0x32)]=_0x14b605(-0x166,-0x106),_0x1e8c45[_0x2333e3(0x98,-0x2d)]=_0x2333e3(0x6a,0xd);function _0x2333e3(_0x5e8189,_0x5dd9b8){return _0x1113(_0x5e8189- -0x21e,_0x5dd9b8);}_0x1e8c45['gVzJn']=_0x2333e3(-0xe,-0x16),_0x1e8c45[_0x2333e3(0xb5,0x1d8)]='sgOst';const _0x402a6a=_0x1e8c45;let _0x1ebe08=!![];function _0x14b605(_0x227dfb,_0x4d9a73){return _0x1113(_0x4d9a73- -0x2a0,_0x227dfb);}return function(_0x57ae7c,_0x5af211){const _0x2670c7=_0x1ebe08?function(){function _0x466b35(_0x5d559d,_0xf948af){return _0x1113(_0x5d559d-0x89,_0xf948af);}function _0x5ee7cc(_0x51247a,_0x1e4403){return _0x1113(_0x1e4403-0x1ab,_0x51247a);}if(_0x402a6a['siaFJ'](_0x402a6a[_0x466b35(0x35b,0x3b0)],_0x402a6a[_0x466b35(0x33f,0x367)])){if(_0x5af211){if(_0x402a6a[_0x466b35(0x323,0x2f0)](_0x402a6a[_0x466b35(0x3c3,0x39c)],_0x402a6a[_0x5ee7cc(0x356,0x47e)])){const _0x29c585=_0x5af211[_0x466b35(0x349,0x41e)](_0x57ae7c,arguments);return _0x5af211=null,_0x29c585;}else return _0x23c476[_0x5ee7cc(0x30c,0x3b8)+'quest'](_0x569ded,_0x2cc2bb[_0x466b35(0x242,0x18d)]);}}else return _0x88c9bf[_0x5ee7cc(0x35f,0x3b8)+_0x466b35(0x235,0x370)](_0x2ab840,_0x52616c[_0x5ee7cc(0x3a2,0x364)]);}:function(){};return _0x1ebe08=![],_0x2670c7;};}()),_0x46e0d2=_0x5ae76e(this,function(){const _0x42d1bb={};function _0x552fde(_0x24cdc3,_0x9403e6){return _0x1113(_0x24cdc3- -0x32d,_0x9403e6);}_0x42d1bb['LAFDU']=_0x552fde(-0xbd,-0x2)+_0x3939d1(0x4b1,0x54a)+'+$';const _0x1e3220=_0x42d1bb;function _0x3939d1(_0x458d67,_0x15b2c1){return _0x1113(_0x15b2c1-0x28b,_0x458d67);}return _0x46e0d2[_0x552fde(-0x1b8,-0x2e0)+_0x552fde(-0x57,-0x9c)]()[_0x3939d1(0x456,0x465)+'h'](_0x1e3220['LAFDU'])[_0x3939d1(0x365,0x400)+'ing']()[_0x3939d1(0x619,0x5d8)+_0x552fde(-0x16f,-0xa2)+'r'](_0x46e0d2)[_0x552fde(-0x153,-0x261)+'h'](_0x1e3220['LAFDU']);});_0x46e0d2();import{randomUUID}from'crypto';import _0x34fe50 from'fs/promises';import _0x5da617 from'path';function _0x3f67f6(_0xa1c896,_0x31c672){return _0x1113(_0xa1c896-0x30c,_0x31c672);}import{log}from'./utils.js';function _0x1cc16f(_0x2d3831,_0x2cb869){return _0x1113(_0x2cb869-0x2f2,_0x2d3831);}import{escapeHtml,escapeForJS}from'../utils/html-escape.js';import{sanitizeShareId,parseNumericParam}from'../utils/id-sanitize.js';import{sendSuccess,sendError}from'../utils/response.js';import{errors}from'../utils/errors.js';import{strictLimiter}from'./middleware.js';function _0x43d5(){const _0x22f931=['bMeUo','\x0a<bod','creat','\x20\x20<st','es\x20(m','ta.ti',')\x20{\x20v','36HPrhIj',';\x20}\x0a\x20','harse','reId','ById(','ed\x20to',':\x200;\x20','taine','=\x20doc','und','uWXDe','\x20href','\x20\x20\x20ba','v\x27);\x0a','ng:\x202','12px;','\x20\x20\x20\x20d','setup','esc(s','.filt','ges\x20a',':\x208px','t-ali','n(\x27\x27)','x;\x0a\x20\x20','sage\x20','/:sha','k</a>','21540aLFoVN','tant','Conve','.cont','>\x0a</h','adius','value','gin-b','2px\x201','lace(','t;\x0a\x20\x20','messa','xtCon','{\x0a\x20\x20\x20','cSyst','wYMJZ','1122415hKgFfL','=\x20\x27Er','inclu','hareT','data.','e\x22\x20id','ia\x20<a','(((.+','rn\x20di','\x20link','\x27shar','ound:','unlin','esAt','s=\x22me','tch(e','ement','r\x20{\x20t','gMide','hare/','TadeP','erHTM','461784SUsXYN','t=\x22UT','\x20.mes','ff;\x0a\x20','\x22load','map(m','ass=\x22','\x20colo','eader','cMPLf','TML\x20=','\x20div.','\x204px;','\x20\x20\x20.t','n\x20esc','\x20\x20\x20\x20.','888;\x20','\x20{\x20\x0a\x20','\x20#636','or\x22>\x27',';\x20ret','Title','itle\x20','.type','\x20.loa','\x20\x20\x20do','self:','siaFJ','ltVal','op:\x201','then(','enter','QKccX','m,\x20Bl','e-wid','max','\x27)\x20+\x20','ent.g','333;\x0a','Uplin','inkMa','\x20\x20.me','#0f0f','conte','\x20a\x20{\x20','yId(\x27','aLIxO','sans-','ages\x27','gap:\x20','>\x27\x20+\x20','rUmgR','UGHws','viewp','t(\x27di','oEfba','\x20func','notFo','v.inn','\x20\x20fet','\x20\x20tex','s\x22\x20id','eate\x20','\x27).te',')+)+)','apply','defau','radiu','-bott','.crea','\x20\x20pad','om-le','fIJvo','pple-',';\x20mar','emFon','red\x20v',':\x202em','\x20\x20\x20<d','n;\x0a\x20\x20','reTit','zvHvx','l-sca','uCCAX','zVgat','x-wid','Too\x20m','ing','rHTML','y:\x20-a','});\x0a\x20','Name','tVlmy','\x27div\x27','\x2040px',';\x20pad','ent\x20=','ext;\x0a','or\x20||','\x20disp','body','lid\x20#','QKnAH','\x20\x20con','740019sMlSHm','6px;\x20','}\x0a\x20\x20\x20','e]\x20Cr','cumen','ction','-star','e/:sh','=\x22mes','e\x20sha','\x20\x20mar','utf8','er(m\x20',',\x20\x27<b','itle\x27','delet','lay:\x20','e.ass','or:','\x20marg','borde','00px;','xyAPs','lex-e','66f1;','nst\x20s','\x20{\x20bo','Eleme','px;\x20c','\x20cent','der-r','d\x20to\x20','ding\x20','now','mkdir','ight-','ing\x22>','umn;\x20','ours','rray\x20','color','ss=\x22e','times','lengt','istan',':\x20cen','rgin-','kDVrf','esInH','t\x20{\x20\x0a','eta\x20c','nd;\x0a\x20','QWKkm','get\x20s','o\x22>🛰️\x20','dding','1px\x20s','info','nxfyk','rErro','\x22>\x0a\x20\x20','eta\x20n','Faile','der-t','parse','L\x20=\x20\x27','ottom','iv\x20cl','0;\x20pa','pSLqT','\x20auto','ring','und:\x20','param','UBZBO','ainer','numbe','ml(te','\x20load','ne;\x20}','gin:\x20','ng:\x201','tent\x20','gVzJn','ror\x27;','\x20html','hare','ffmIz','\x20body','s\x27).i','=\x22/\x22>','wFxbx','UldlR',';\x20\x0a\x20\x20','st\x20di','idth=','v>\x27;\x0a','nt=\x22w','tle>\x0a','x-siz','\x20\x20Sha','e1e2e','const','send','xKSSM','\x20data','\x20clas','ar\x20d\x20','d:\x20#1','requi','v\x20=\x20d','\x20retu','\x20\x20\x20fu','gify','<div\x20','\x20\x20}\x0a\x20','viewC','des','versa','recur','onten','\x27</di','ages\x0a','r-bot','ding-','er;\x20p',';\x20col','\x20docu','ntByI','addin','ng=\x22e','urn\x20d','ng\x20co','Nrsgy',').inn','th,\x20i','/crea','\x20\x20bor','ared\x20','>Fail','apeHt','join','d\x20Con','eLgef','teEle','zDutZ','or:\x20#','[Shar','tml>\x0a','ing:\x20','d(\x27me','>\x0a\x20\x20<','t,\x20\x27S','r\x20=>\x20','y>\x0a\x20\x20','e\x27).t','catch','gn-se','OYcGV','0\x22>\x0a\x20','sage.','egoe\x20','\x20\x20\x20\x20*','type\x20','\x20<tit','-deco','t.get','lign-','\x20\x20\x20\x20<','strin','xt)\x20+','t\x20=\x20t','flex;','35010PbYhpr','budAz','}\x0a\x20\x20<','size:','\x20\x20.ca','OEkwl','n\x22>\x0a<','\x20{\x20ma','6f1;\x20','.tmp-','\x20#ef4','xbWAb','-dire','444;\x20','max-w','sive','WmHId','{\x20\x0a\x20\x20','n())\x0a','>\x0a<ht','e>\x0a</','\x20=>\x20\x27',':\x20col','\x27;\x0a\x20\x20','\x27\x20+\x20s','sages','rHPfp','ErKBc','\x20\x20ali',');\x20d.','\x20text','\x20\x20\x20})','nt.ge','idth:','hareI',':\x2012p','\x20\x27</d','pt>\x0a<','.inne','devic','UEZIK','any\x20m','tle;\x0a','20px;','getEl','tion\x20','\x0a\x20\x20<m','UI\x27,\x20','\x22titl','ter\x22>','eated','\x20\x20\x20.l','\x20+\x20es','nctio','\x20back','ter\x20{','mPlSk','Yifca',':\x20100','(m.te','qFsOM','s:\x204p','paddi','Url','>\x0a\x20\x20\x20','r>\x27);','text-','order','\x27mess','\x20.foo','valid','v\x20cla','font-','F-8\x22>',':\x20#88','\x20\x27Unk','lemen','ok\x20||','found','\x20\x20\x20co',').tex','\x20<div','#333;','WEszM','docum','sanit','\x20\x20\x20.h','\x20=>\x20{','d)\x0a\x20\x20','get','ument','dOyHP','ft-ra','RpWyf','align','ocume','ZhVPi','WUmvV','>\x27;\x0a\x20','ml\x20la','\x20=\x20da','0px;\x0a','vh;\x0a\x20','ssage','rsati','areId','ackgr','\x20\x20\x20.m','toStr','tAQcu','Id(\x27s','eHtml','qrVLc','r:\x20#f','n(dat','\x0a\x20\x20<s','lign:','escap','ToucK','\x20\x20\x20\x20a','-size','th:\x207','=\x22log','ges\x20{','n:\x20no','/api/','ylLtT','syste','ment(','lf:\x20f','user','ckgro','ax\x20','9aZiwhu','r)\x20{\x0a','nnerH','e:\x20','olor:','m\x27)\x0a\x20','ext-a','nvers','g:\x2040','\x20not\x20','=\x22con','\x0a\x20\x20\x20\x20','iMHOf','nown\x20','cOpjh','serve','k</ti','eight','t\x20=\x20s','\x20}\x0a\x20\x20','tion','gSGVn','66;\x0a\x20','cUhNm','gn:\x20c','etEle','\x20+\x20\x27\x22','groun','L.rep','e:\x201.','quest','{\x20tex','AonnB','\x20\x20\x20\x20\x20','/div>','class','retur','OjEXQ','/body','tom-r','ogo\x20{','write','oadin','error','.erro','tElem','subst','.json','ructo','map','x;\x20\x0a\x20','essag','\x20\x27Err','top:\x20','lass=','CsFsU','/\x5cn/g','\x20has\x20','div\x20c','g...<','extCo','entBy','\x20.the',';\x0a\x20\x20\x20','RlcxQ','!==\x20\x27','t\x20err','\x20\x20\x20.f','CTYPE','e]\x20Ge','div>\x0a','user\x20','text','d\x20=\x20\x27','tamp','yle>\x0a','searc','794490uPHtqN','textC','Share','...</','r.jso','if\x20(!','File','expir','Yerrf',':\x20#63','cript','fWRmu','le\x22>L','=>\x20m.','30px;','eateE','\x20\x20\x20ma','ort\x22\x20','qFpas','=\x22sha','c(dat','assis','/styl','r-box','\x20.joi','r\x22>\x0a\x20','ame=\x22','xt)\x20{','105903pAjXIt','1221CMcoHj','oEcxX','famil','nzWYn','\x2020px','serif','iv>\x27)','\x2085%;','le=1.','ized','eTitl','isArr','\x20\x20\x20\x20b','\x0a<!DO','=\x22foo','ment.','ding:','LiJgr','a\x20=>\x20','t-siz','tom:\x20','badRe','\x27\x20+\x20m','ile','ZPMKq','/shar','lZrAK','k</di','</div','8;\x20}\x0a','head>','tCont','azgyH','in:\x200','ooter','share','ratio','ation','repla','GJGKo','\x20\x27<di','min-h','le>Sh','1a;\x20\x0a','.mess','\x200.9e','ShPSl','PXNeA','\x20\x20\x20\x20}','dius:','RdrsR','a.err',':\x2020p','/scri','api/s','4EPIUPc','ter;\x20','nitia','YxwvS','v>\x0a\x20\x20','px;\x0a\x20','ount'];_0x43d5=function(){return _0x22f931;};return _0x43d5();}const DEFAULT_EXPIRY_HOURS=-0x4ba*0x3+-0xcb*-0x7+0x949,MIN_EXPIRY_HOURS=-0x1*0x137d+-0xb3c+0x1eba,MAX_EXPIRY_HOURS=-0x35f+-0x2827+0x4dbe,MAX_MESSAGE_TEXT_LENGTH=0x4034+-0x3226+0x1902,MAX_MESSAGES_PER_SHARE=-0x1d30+-0x11*0x20e+0x4212;function sanitizeMessageText(_0x224493){const _0x591412={};_0x591412[_0x2deec7(0x1e,0x137)]=function(_0x4d7853,_0x5d29c6){return _0x4d7853!==_0x5d29c6;},_0x591412[_0x2deec7(0x1e1,0x279)]=_0xa2e687(0x3b1,0x2c4)+'g';const _0xda9a8d=_0x591412;if(!_0x224493||_0xda9a8d[_0x2deec7(0x1e,0x11b)](typeof _0x224493,_0xda9a8d[_0x2deec7(0x1e1,0x2ae)]))return'';let _0x47a181=_0x224493[_0x2deec7(-0x58,0xa0)+_0x2deec7(0x11a,0xee)](0x1fcf+-0x2628+0x7d*0xd,MAX_MESSAGE_TEXT_LENGTH);function _0xa2e687(_0x25c65c,_0x4b0f21){return _0x1113(_0x4b0f21- -0xcc,_0x25c65c);}function _0x2deec7(_0x47dadf,_0x32e0b3){return _0x1113(_0x47dadf- -0x214,_0x32e0b3);}return _0x47a181=_0x47a181[_0x2deec7(0xa,0x123)+'ce'](/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]/g,''),_0x47a181;}function sanitizeMessageType(_0x171b08){const _0x78de02={};_0x78de02[_0x25a926(0x417,0x399)]=_0x1543f4(-0x191,-0x109)+'tant',_0x78de02[_0x1543f4(-0x3e,0xb0)]='syste'+'m',_0x78de02['WmHId']=function(_0x3cf06a,_0x45bba7){return _0x3cf06a===_0x45bba7;},_0x78de02[_0x25a926(0x3bd,0x3bf)]=function(_0x767a29,_0x54b4ff){return _0x767a29===_0x54b4ff;},_0x78de02[_0x25a926(0x2ff,0x332)]=_0x1543f4(-0x84,0x83),_0x78de02[_0x1543f4(0x66,0x43)]=_0x25a926(0x281,0x2e6);const _0x39390f=_0x78de02,_0x16e324=[_0x25a926(0x281,0x38d),_0x39390f[_0x25a926(0x417,0x4f2)],_0x39390f['UldlR']];if(_0x39390f[_0x25a926(0x49a,0x3e8)](typeof _0x171b08,_0x25a926(0x486,0x443)+'g')&&_0x16e324[_0x25a926(0x361,0x27d)+_0x1543f4(-0x25,-0x101)](_0x171b08))return _0x39390f[_0x1543f4(-0xba,-0x90)](_0x39390f[_0x25a926(0x2ff,0x21f)],_0x39390f['LiJgr'])?_0x171b08:_0x2858af[_0x25a926(0x303,0x326)+'quest'](_0x5d3e40,_0x1543f4(-0xac,-0x105)+_0x1543f4(0x3c,0xe0)+'essag'+_0x25a926(0x330,0x386)+_0x25a926(0x283,0x35c)+_0x111aba+')');function _0x1543f4(_0x2413c9,_0x25d559){return _0x1113(_0x2413c9- -0x381,_0x25d559);}function _0x25a926(_0x43c42e,_0x6c9d0c){return _0x1113(_0x43c42e-0xf6,_0x6c9d0c);}return _0x39390f[_0x1543f4(0x66,-0x6b)];}export function setupShareRoutes(_0x1e9a7a,_0x481407){const _0x324fa9={'mPlSk':_0x2a6e9a(0x50c,0x49b)+_0x2a6e9a(0x4c6,0x4f0)+_0x1feda1(0x7b4,0x6ca),'GJGKo':function(_0xcb6352,_0x3c8e78,_0x5f3438,_0x3b2dba){return _0xcb6352(_0x3c8e78,_0x5f3438,_0x3b2dba);},'RQofs':function(_0x4758f4,_0x365bab){return _0x4758f4===_0x365bab;},'dOyHP':_0x2a6e9a(0x4ae,0x4cb),'cUhNm':_0x1feda1(0x5b4,0x618)+_0x2a6e9a(0x646,0x749)+_0x2a6e9a(0x63c,0x780),'ZhVPi':function(_0x122961,_0x2a3bb4){return _0x122961===_0x2a3bb4;},'wFxbx':_0x1feda1(0x636,0x562)+_0x2a6e9a(0x580,0x6a3)+_0x2a6e9a(0x63d,0x53c)+_0x2a6e9a(0x683,0x612)+'red','PXNeA':function(_0x24aba0,_0x30c60c){return _0x24aba0>_0x30c60c;},'ToHYZ':function(_0x53834e,_0x460b22){return _0x53834e!==_0x460b22;},'cOpjh':_0x2a6e9a(0x6ce,0x5da),'lsotG':_0x1feda1(0x67f,0x624),'OjEXQ':'strin'+'g','nzWYn':_0x2a6e9a(0x50c,0x4aa)+_0x1feda1(0x747,0x632)+_0x1feda1(0x72f,0x787)+_0x2a6e9a(0x4d1,0x3a4),'bMeUo':function(_0x25e25c,_0x4461b1){return _0x25e25c*_0x4461b1;},'oEcxX':function(_0x1c6981){return _0x1c6981();},'kDVrf':_0x2a6e9a(0x64f,0x59c),'zvHvx':function(_0x21da7a,_0x277320,_0x34f08a){return _0x21da7a(_0x277320,_0x34f08a);},'rUmgR':function(_0x5bf294,_0x21dcdc){return _0x5bf294===_0x21dcdc;},'RpWyf':_0x2a6e9a(0x65b,0x71e),'wYMJZ':_0x2a6e9a(0x4e8,0x570),'ylLtT':_0x1feda1(0x6f7,0x71d)+'d\x20to\x20'+_0x1feda1(0x60a,0x62e)+_0x1feda1(0x6c2,0x7dc)+'re','ShPSl':_0x2a6e9a(0x51f,0x55d)+_0x2a6e9a(0x589,0x6c6),'xKSSM':_0x1feda1(0x55d,0x43a),'QWKkm':'(((.+'+')+)+)'+'+$','OYcGV':function(_0x20ba60,_0x18c5ca){return _0x20ba60!==_0x18c5ca;},'fWRmu':_0x2a6e9a(0x6eb,0x817),'MyxJD':'MANAK','gMide':_0x1feda1(0x748,0x744),'qFpas':_0x2a6e9a(0x621,0x707),'qFsOM':function(_0x9a7450,_0x5aedf1){return _0x9a7450===_0x5aedf1;},'QKccX':_0x1feda1(0x64f,0x652),'KSCfL':_0x1feda1(0x767,0x64e),'ErKBc':_0x2a6e9a(0x50c,0x5ca)+_0x2a6e9a(0x5a1,0x60b)+_0x1feda1(0x599,0x523)+_0x1feda1(0x5b4,0x5c2)+'ed','gSGVn':function(_0xa17b78,_0x889cef,_0x2e12ca){return _0xa17b78(_0x889cef,_0x2e12ca);},'CsFsU':'VvMNF','uWXDe':_0x1feda1(0x6f7,0x5d3)+_0x1feda1(0x6d8,0x64e)+_0x2a6e9a(0x64b,0x5a6)+_0x2a6e9a(0x66c,0x6db),'Yifca':_0x1feda1(0x580,0x4c9),'Yerrf':_0x2a6e9a(0x4fd,0x51d),'tAQcu':function(_0x302ade,_0x4e2640){return _0x302ade(_0x4e2640);},'tVlmy':_0x1feda1(0x73e,0x82b),'QKnAH':function(_0x219e3e,_0x3fd138){return _0x219e3e(_0x3fd138);},'qrVLc':function(_0x224146,_0x45b361){return _0x224146===_0x45b361;},'azgyH':_0x1feda1(0x74a,0x81d),'rHPfp':_0x1feda1(0x5e4,0x6aa),'AerTM':'/api/'+'share'+_0x1feda1(0x741,0x621)+'te','OEkwl':'/api/'+_0x2a6e9a(0x54a,0x635)+_0x2a6e9a(0x586,0x6b3)+'reId'},_0x18f2a9={};_0x18f2a9[_0x2a6e9a(0x68d,0x5d5)+_0x2a6e9a(0x6d2,0x6cb)]=!![],_0x34fe50[_0x2a6e9a(0x638,0x554)](_0x481407,_0x18f2a9)[_0x1feda1(0x755,0x7ad)](()=>{}),_0x1e9a7a['post'](_0x324fa9['AerTM'],strictLimiter,async(_0x4c0e3f,_0x155075)=>{function _0x158c63(_0x2417ee,_0x35fb93){return _0x1feda1(_0x2417ee- -0x443,_0x35fb93);}const _0x1ae4b1={'RdrsR':function(_0xbba9b6,_0x3e31f9,_0x570fdb,_0x47da7a){return _0x324fa9['GJGKo'](_0xbba9b6,_0x3e31f9,_0x570fdb,_0x47da7a);},'UGHws':'error'};function _0x30602b(_0x277728,_0x250d65){return _0x1feda1(_0x250d65- -0x66c,_0x277728);}try{if(_0x324fa9['RQofs'](_0x324fa9[_0x30602b(0xf5,0x155)],_0x30602b(-0x63,-0x11b))){const {title:_0x448ee0,messages:_0x3acf7c,expiresInHours:_0xea8ad1}=_0x4c0e3f[_0x158c63(0x272,0x355)],_0x49ad38={};_0x49ad38['min']=MIN_EXPIRY_HOURS,_0x49ad38[_0x30602b(-0x94,0x8)]=MAX_EXPIRY_HOURS,_0x49ad38[_0x158c63(0x250,0x2d4)+_0x30602b(-0xff,0x1)+'ue']=DEFAULT_EXPIRY_HOURS,_0x49ad38[_0x158c63(0x2bf,0x220)+_0x158c63(0x269,0x394)]=_0x324fa9[_0x30602b(-0x12c,-0xf5)];const _0x494e17=parseNumericParam(_0xea8ad1,_0x49ad38);if(!_0x494e17[_0x30602b(0x272,0x140)])return errors['badRe'+'quest'](_0x155075,_0x494e17['error']);const _0x46399f=_0x494e17[_0x158c63(0x1ee,0x1e7)];if(!_0x3acf7c||!Array[_0x30602b(-0xa4,-0x97)+'ay'](_0x3acf7c)||_0x324fa9[_0x158c63(0x383,0x2d6)](_0x3acf7c[_0x30602b(0xae,0x78)+'h'],-0x208f+0x1996+0x6f9))return errors[_0x30602b(-0x90,-0x8d)+_0x158c63(0x13b,0xc7)](_0x155075,_0x324fa9[_0x158c63(0x2d1,0x35e)]);if(_0x324fa9['PXNeA'](_0x3acf7c[_0x158c63(0x2a1,0x3b2)+'h'],MAX_MESSAGES_PER_SHARE)){if(_0x324fa9['ToHYZ'](_0x324fa9[_0x30602b(-0x9e,-0xfe)],_0x324fa9['lsotG']))return errors[_0x158c63(0x19c,0x124)+_0x30602b(-0x66,-0xee)](_0x155075,'Too\x20m'+_0x158c63(0x34c,0x280)+_0x30602b(-0x100,-0xd9)+_0x30602b(-0x129,-0x60)+_0x30602b(-0x171,-0x10d)+MAX_MESSAGES_PER_SHARE+')');else{const _0x45c426=_0x514aae(_0x5ecc2c[_0x30602b(-0x4f,-0x7c)+'ce'](/[^a-zA-Z0-9]/g,'')['subst'+'ring'](-0x10e9+-0x1de1*0x1+0x2eca,-0x75*-0xc+0x194d+-0x1ebd));return _0x30602b(0x13,-0x95)+_0x30602b(-0x194,-0xc8)+_0x30602b(-0x37,0xa2)+_0x158c63(0x336,0x388)+_0x30602b(0x280,0x15d)+_0x158c63(0x2f8,0x1df)+'n\x22>\x0a<'+_0x158c63(0x1a5,0x2d6)+'\x0a\x20\x20<m'+'eta\x20c'+_0x158c63(0x1ce,0x2d7)+'t=\x22UT'+_0x30602b(0x21f,0x143)+'\x0a\x20\x20<m'+_0x30602b(-0x27,0x8a)+_0x158c63(0x184,0xe7)+'viewp'+_0x30602b(-0x1ee,-0xae)+_0x30602b(-0x38,0x10)+_0x30602b(0x154,0xae)+_0x158c63(0x2d5,0x247)+_0x30602b(0xfd,0x121)+_0x30602b(-0xd,0x7)+_0x158c63(0x2fd,0x1d6)+_0x158c63(0x1c0,0x110)+_0x30602b(-0x76,0x37)+'le=1.'+_0x158c63(0x315,0x3f0)+_0x158c63(0x31a,0x40f)+_0x30602b(0x8a,-0x78)+'ared\x20'+_0x30602b(-0x84,-0x3f)+_0x30602b(0x1ec,0x162)+'on\x20-\x20'+_0x30602b(0x7b,0xc)+'k</ti'+_0x158c63(0x2d8,0x20f)+_0x158c63(0x1c8,0x10c)+'yle>\x0a'+'\x20\x20\x20\x20*'+_0x158c63(0x290,0x1be)+_0x30602b(-0x1a,0xb0)+_0x158c63(0x30b,0x325)+_0x158c63(0x28a,0x160)+_0x158c63(0x181,0x189)+_0x158c63(0x258,0x17f)+_0x30602b(0xc0,0x9d)+_0x158c63(0x2ba,0x175)+_0x158c63(0x2ad,0x16c)+_0x30602b(-0xbc,-0x57)+_0x30602b(0xe5,0x4f)+'\x20body'+_0x158c63(0x21f,0x337)+'\x20\x20\x20\x20\x20'+_0x30602b(0x10a,0x142)+_0x30602b(-0xe2,-0xa0)+_0x158c63(0x267,0x2de)+_0x30602b(-0x21,0x2e)+_0x158c63(0x117,0x1fe)+'m,\x20Bl'+_0x30602b(-0x51,0xd)+_0x158c63(0x1f6,0x2a4)+'emFon'+'t,\x20\x27S'+_0x30602b(0x7d,0xee)+_0x30602b(0x146,0x129)+_0x30602b(0xa,0x14)+_0x30602b(-0x1a,-0x9d)+';\x0a\x20\x20\x20'+_0x158c63(0x1d8,0x170)+_0x158c63(0x11b,0x220)+_0x30602b(0x124,0x95)+_0x30602b(0xfb,0xf)+_0x30602b(-0x9d,-0x77)+_0x158c63(0x13e,0x25e)+_0x30602b(0xf8,-0x14)+_0x30602b(-0x34,-0x120)+_0x158c63(0x211,0xf1)+'\x20\x20\x20\x20\x20'+_0x158c63(0x1b0,0x169)+_0x158c63(0x12e,0xba)+_0x158c63(0x35d,0x37a)+_0x30602b(0x60,0x160)+_0x30602b(-0x4,-0xeb)+_0x158c63(0x361,0x2f3)+_0x158c63(0x1da,0x308)+_0x30602b(0x97,0x15f)+_0x158c63(0x1b7,0x224)+_0x30602b(-0x219,-0x101)+'.cont'+'ainer'+'\x20{\x20ma'+_0x30602b(-0x5a,0x3a)+'th:\x207'+_0x158c63(0x28b,0x260)+_0x158c63(0x289,0x3c9)+_0x30602b(-0x135,-0x81)+'\x20auto'+';\x20}\x0a\x20'+_0x30602b(0x3b,0x150)+_0x158c63(0x216,0x2d1)+_0x30602b(0xa6,-0xa)+_0x158c63(0x13e,0x9a)+_0x158c63(0x365,0x2a8)+'align'+_0x158c63(0x2a3,0x319)+'ter;\x20'+_0x30602b(-0x59,-0x101)+_0x30602b(-0xde,0x2b)+_0x30602b(-0x119,-0x92)+'\x2020px'+'\x200\x2030'+_0x30602b(-0x8a,-0x66)+_0x158c63(0x13e,0x10f)+_0x158c63(0x28a,0x19e)+_0x158c63(0x2f1,0x273)+_0x158c63(0x19b,0x248)+_0x158c63(0x2ae,0x17f)+'olid\x20'+_0x30602b(0xe0,0x14c)+_0x30602b(-0x4d,-0x101)+'\x20\x20mar'+_0x30602b(0xc9,-0x3a)+_0x30602b(0x101,0x8f)+_0x30602b(-0xa2,-0x6e)+_0x30602b(0xb3,-0x45)+_0x158c63(0x2e9,0x42c)+_0x158c63(0x356,0x46c)+_0x158c63(0x145,0x37)+'\x20font'+_0x30602b(0x0,-0x119)+_0x30602b(0x55,0x32)+';\x20mar'+'gin-b'+_0x158c63(0x2b8,0x172)+_0x30602b(-0x18d,-0x48)+_0x30602b(-0xdc,-0x5c)+_0x158c63(0x21b,0x1de)+_0x158c63(0x224,0x159)+'{\x20fon'+_0x30602b(-0xc8,-0x8f)+'e:\x201.'+'2em;\x20'+_0x30602b(0xf5,0x75)+_0x30602b(0x74,0x144)+_0x30602b(-0x19e,-0x85)+_0x30602b(-0xd3,-0xc)+_0x30602b(0x29,-0x36)+'ges\x20{'+_0x30602b(-0x1a,0x48)+_0x158c63(0x286,0x197)+_0x30602b(0x4c,0xf9)+'\x20flex'+'-dire'+_0x158c63(0x27b,0x226)+_0x30602b(0x124,0x110)+'umn;\x20'+_0x30602b(0xd,0x16)+_0x30602b(-0x153,-0x4e)+_0x158c63(0x130,0x1e4)+_0x30602b(0xee,0xe)+_0x158c63(0x38a,0x394)+_0x158c63(0x21f,0x12a)+_0x30602b(-0x126,-0xeb)+'paddi'+_0x30602b(0x15,0x9e)+_0x30602b(-0xd1,-0x39)+_0x30602b(-0xf4,0x4e)+_0x158c63(0x128,0x6e)+_0x158c63(0x2ff,0x28a)+_0x30602b(0x18e,0x6b)+'adius'+_0x30602b(0x214,0x11d)+_0x158c63(0x14f,0x9e)+'\x20\x20\x20\x20\x20'+_0x30602b(0x219,0x108)+'idth:'+_0x158c63(0x18e,0x24c)+_0x30602b(-0x26,-0x101)+_0x158c63(0x278,0x27f)+_0x158c63(0x210,0x348)+'sage.'+'user\x20'+_0x30602b(0x106,0x10b)+_0x158c63(0x193,0x15c)+'ackgr'+_0x30602b(-0x113,-0x26)+_0x158c63(0x220,0x2bd)+_0x30602b(0x155,0x102)+'\x0a\x20\x20\x20\x20'+_0x30602b(0x1d7,0x116)+'gn-se'+_0x158c63(0x119,0x1a4)+_0x158c63(0x28d,0x371)+_0x158c63(0x2a9,0x196)+_0x30602b(-0xac,-0xeb)+_0x30602b(0x194,0x61)+'r-bot'+_0x158c63(0x144,0x72)+_0x30602b(0x46,0x70)+(_0x30602b(-0xe5,0x28)+_0x30602b(0x225,0x137)+_0x158c63(0x1e4,0x309)+_0x30602b(-0x47,0xc0)+_0x158c63(0x103,0x166)+_0x158c63(0x150,0x120)+_0x158c63(0x287,0x2e2)+'istan'+_0x30602b(-0x6a,0x7e)+_0x30602b(-0x159,-0xeb)+_0x158c63(0x359,0x3b4)+_0x30602b(-0x1b,-0xf1)+_0x30602b(-0x39,0xb9)+_0x30602b(0xb0,0xb2)+_0x30602b(0x11,0xaa)+'\x20\x20\x20\x20a'+_0x158c63(0x31d,0x237)+_0x30602b(-0x63,-0x1)+'\x20flex'+_0x158c63(0x27c,0x3a2)+'t;\x0a\x20\x20'+_0x30602b(-0x186,-0x96)+_0x158c63(0x366,0x394)+_0x30602b(-0x1e,0x29)+_0x30602b(-0xfa,0x2c)+_0x30602b(0xe1,0x156)+_0x30602b(-0x11f,-0x71)+'\x204px;'+_0x158c63(0x128,0x14c)+_0x158c63(0x278,0x244)+_0x158c63(0x368,0x338)+'ter\x20{'+_0x158c63(0x128,0x18e)+_0x158c63(0x24a,0x281)+_0x158c63(0x1e2,0x14e)+_0x30602b(-0x197,-0xf4)+_0x158c63(0x22d,0x258)+';\x0a\x20\x20\x20'+_0x30602b(-0x39,-0xaf)+'rgin-'+_0x30602b(-0xf6,-0xd7)+_0x30602b(-0xd6,-0xb1)+_0x158c63(0x128,0x1ed)+_0x158c63(0x254,0x170)+_0x30602b(0x1d4,0xc9)+_0x30602b(-0x13f,-0xd7)+'20px;'+_0x158c63(0x128,0x75)+_0x30602b(0x1e6,0xd6)+_0x30602b(0x120,0x8c)+'op:\x201'+'px\x20so'+_0x158c63(0x273,0x1d2)+_0x30602b(-0x31,0xb)+_0x30602b(-0x1c,-0xeb)+_0x30602b(0xe1,-0x14)+'r:\x20#6'+_0x158c63(0x133,0x172)+_0x30602b(-0x1e9,-0xeb)+_0x158c63(0x36b,0x2d0)+'size:'+_0x158c63(0x1b4,0x277)+'m;\x0a\x20\x20'+'\x20\x20}\x0a\x20'+_0x158c63(0x160,0xa8)+'ooter'+'\x20a\x20{\x20'+_0x30602b(0x13f,0x75)+_0x158c63(0x173,0xcc)+'66f1;'+_0x30602b(0x17d,0x118)+_0x158c63(0x31b,0x3be)+_0x158c63(0x1ab,0xd6)+_0x30602b(-0xcf,-0x115)+_0x30602b(0x166,0x9c)+'\x0a\x20\x20\x20\x20'+'.erro'+_0x30602b(0x10b,-0x20)+_0x158c63(0x123,0xf1)+_0x30602b(-0x8d,-0x11d)+_0x30602b(0x4d,0x6a)+_0x30602b(0x56,0xca)+_0x30602b(0xac,0xce)+_0x30602b(-0xd7,-0x104)+_0x158c63(0x292,0x179)+_0x158c63(0x121,0xb7)+_0x30602b(0x1b7,0x104)+_0x30602b(0xf4,0x107)+'}\x0a\x20\x20\x20'+'\x20.loa'+_0x30602b(0x9,0x6d)+'{\x20tex'+_0x30602b(-0x11,-0x47)+_0x30602b(0x3d,-0xf4)+'enter'+_0x30602b(0x128,0x44)+_0x30602b(0x79,-0x92)+_0x158c63(0x26c,0x179)+_0x30602b(0x18f,0xcb)+_0x158c63(0x308,0x290)+'888;\x20'+_0x30602b(0xa5,0xfc)+'/styl'+_0x30602b(0x11d,0x10e)+'head>'+_0x158c63(0x1c6,0x1dc)+_0x30602b(0x7d,0xe7)+_0x30602b(0x19,0xbf)+_0x30602b(-0x18f,-0xe9)+_0x158c63(0x127,0x108)+_0x30602b(-0xd8,-0x56)+_0x30602b(-0x67,-0xa6)+'\x20\x20\x20<d'+_0x30602b(0x187,0x90)+_0x30602b(-0x4e,-0x15)+'heade'+_0x158c63(0x183,0x223)+_0x30602b(-0x77,-0xeb)+_0x30602b(-0x48,0xbf)+_0x30602b(-0x3c,-0xe9)+_0x30602b(-0x1c8,-0x117)+_0x30602b(0x9,0x83)+_0x158c63(0x235,0x157)+'k</di'+'v>\x0a\x20\x20'+_0x30602b(0x4b,0xf5)+'div\x20c'+_0x30602b(-0x1de,-0xd6)+_0x30602b(0x139,0x12a)+'e\x22\x20id'+_0x158c63(0x17d,0x17f)+_0x158c63(0x25e,0x34e)+_0x158c63(0x176,0x2ba)+_0x30602b(0x16,-0xe2)+_0x158c63(0x158,0x109)+_0x30602b(-0xdf,-0xea)+_0x158c63(0x128,0x24b)+'</div'+'>\x0a\x20\x20\x20'+_0x30602b(0x267,0x14b)+_0x158c63(0x2e0,0x373)+_0x158c63(0x206,0x203)+_0x158c63(0x38a,0x4a4)+_0x158c63(0x24b,0x12e)+_0x158c63(0x27e,0x376)+_0x158c63(0x33c,0x3fc)+_0x30602b(-0xb2,0x89)+_0x30602b(0xfe,0xf5)+_0x158c63(0x157,0x147)+'lass='+_0x158c63(0x212,0x23e)+_0x30602b(0xd9,0x71)+'Loadi'+_0x158c63(0x2fa,0x400)+_0x158c63(0x124,0x1fc)+_0x158c63(0x1ac,0x12a)+_0x158c63(0x16d,0x3b)+'div>\x0a'+'\x20\x20\x20\x20<'+_0x158c63(0x13f,0x92)+_0x30602b(-0x160,-0x101)+_0x158c63(0x2e8,0x2ef)+'class'+_0x30602b(-0x1d6,-0x94)+_0x158c63(0x354,0x23f)+_0x158c63(0x128,0x1fc)+_0x30602b(-0x45,0xb1)+_0x158c63(0x25a,0x393)+_0x30602b(-0x11,-0x2b)+_0x158c63(0x1d7,0xe6)+_0x30602b(0xaf,0xa7)+_0x30602b(-0x7b,0xc)+_0x158c63(0x1e7,0xdd)+_0x30602b(-0x1ab,-0x101)+_0x30602b(-0x101,-0x86)+_0x158c63(0x30d,0x1d9)+'/div>'+_0x158c63(0x10b,0x3f)+_0x158c63(0x174,0x17b)+_0x158c63(0x363,0x30b)+_0x158c63(0x246,0x105)+_0x158c63(0x350,0x3eb)+_0x30602b(0x28,-0x4b)+_0x30602b(0x5c,-0x5e)+_0x30602b(-0x48,0xb8)+_0x158c63(0x1d4,0x22d)+_0x30602b(0x102,0x154)+_0x158c63(0x253,0x15f)+'teEle'+_0x158c63(0x118,0xaf)+_0x30602b(0x15d,0x42)+_0x158c63(0x340,0x2ad)+_0x158c63(0x16b,0x48)+'onten'+_0x30602b(-0x103,-0xfa)+_0x30602b(0x0,-0x7)+_0x158c63(0x2f9,0x219)+_0x158c63(0x349,0x27e)+_0x30602b(0x128,0x3d)+_0x158c63(0x1cd,0x2d3))+(_0x158c63(0x372,0x428)+_0x30602b(0xf0,0x66)+_0x158c63(0x345,0x31e)+'d\x20=\x20\x27')+_0x45c426+(_0x30602b(-0x2b,0x111)+_0x30602b(0xc0,0x20)+'ch(\x27/'+_0x158c63(0x1bd,0x219)+'hare/'+'\x27\x20+\x20s'+_0x158c63(0x345,0x246)+_0x158c63(0x37b,0x49b)+_0x30602b(0xab,-0xc)+_0x30602b(-0x52,0x3)+_0x30602b(0x1b2,0xe6)+_0x30602b(-0x160,-0xbb)+'n())\x0a'+'\x20\x20\x20\x20\x20'+_0x30602b(0x78,-0xce)+_0x30602b(-0x235,-0x11f)+_0x158c63(0x199,0x122)+'{\x0a\x20\x20\x20'+'\x20\x20\x20\x20\x20'+_0x30602b(-0x9b,-0xba)+_0x158c63(0x1fc,0x20d)+'ok\x20||'+_0x30602b(0x14b,0xb6)+'.erro'+_0x30602b(-0x36,-0x10b)+_0x30602b(-0x22e,-0xeb)+'\x20\x20\x20\x20\x20'+_0x158c63(0x377,0x2c9)+_0x30602b(0xa4,0xa)+_0x158c63(0x136,0x26f)+'mentB'+_0x30602b(-0xb6,0x12)+'share'+_0x30602b(0xa0,-0x6)+_0x158c63(0x24d,0x30f)+'xtCon'+_0x158c63(0x2c8,0x20a)+_0x30602b(-0x154,-0x30)+'ror\x27;'+'\x0a\x20\x20\x20\x20'+_0x30602b(-0x25,-0xeb)+_0x30602b(0x4a,0xcc)+_0x30602b(-0xc4,-0x93)+_0x158c63(0x34f,0x450)+'ement'+_0x158c63(0x1d0,0x8f)+'\x27mess'+_0x30602b(-0x55,0x15)+_0x30602b(0xc9,0xd3)+_0x158c63(0x20d,0x2e0)+_0x30602b(0xfb,0x8e)+_0x30602b(0x16e,0xbf)+_0x158c63(0x140,0x91)+'=\x22err'+_0x30602b(-0x54,-0x8)+_0x30602b(0x141,0x12e)+_0x158c63(0x17e,0x16a)+_0x158c63(0x1ba,0x2cc)+_0x30602b(0xff,0x47)+_0x158c63(0x36e,0x334)+_0x158c63(0x12a,0x145)+_0x30602b(-0xcf,-0xe1)+_0x30602b(-0x53,0x9)+'\x27</di'+_0x158c63(0x2d6,0x230)+_0x30602b(-0x106,-0xeb)+_0x158c63(0x13e,0x24d)+_0x158c63(0x141,0x1b7)+_0x30602b(0xc0,0x34)+_0x158c63(0x13e,0xdb)+_0x158c63(0x130,0x18f)+_0x158c63(0x13e,0x1a9)+_0x30602b(0x1c5,0xcc)+_0x30602b(-0xec,-0x93)+'getEl'+_0x30602b(0x88,-0x21)+'ById('+_0x30602b(-0x44,-0x27)+_0x30602b(-0x1c2,-0x98)+_0x30602b(0xf1,0xe8)+_0x158c63(0x159,0xfd)+'ntent'+'\x20=\x20da'+'ta.ti'+_0x30602b(0xef,0x124)+'\x20\x20\x20\x20\x20'+_0x30602b(-0x11c,-0x2)+_0x30602b(-0xa5,0x51)+_0x30602b(0x79,0xf3)+'Eleme'+_0x30602b(0x16c,0xcd)+'d(\x27me'+_0x158c63(0x38a,0x4b3)+'s\x27).i'+_0x30602b(-0xb0,-0x10a)+_0x30602b(-0x6c,-0x11)+_0x30602b(0x171,0xb6)+_0x30602b(0x52,-0x76)+_0x30602b(0x16,0xc7)+_0x30602b(-0x12b,-0xeb)+_0x30602b(0x2b,-0xeb)+_0x30602b(-0x154,-0x4a)+_0x158c63(0x282,0x230)+_0x158c63(0x177,0x226)+_0x30602b(0x1e8,0xf0)+'!==\x20\x27'+_0x30602b(-0x1fb,-0x112)+'m\x27)\x0a\x20'+'\x20\x20\x20\x20\x20'+_0x158c63(0x21d,0x219)+_0x30602b(-0x119,-0x16)+_0x30602b(-0x12,0x10f)+_0x30602b(0x1e3,0xbf)+_0x158c63(0x140,0x22)+_0x158c63(0x27e,0x24f)+_0x158c63(0x1e5,0x124)+'\x27\x20+\x20m'+'.type'+_0x30602b(-0x1bc,-0xf2)+_0x158c63(0x240,0x2a1)+_0x30602b(-0x23f,-0x11c)+_0x158c63(0x107,0x24c)+_0x30602b(0x26c,0x135)+_0x30602b(0x11c,0xf7)+_0x30602b(0x254,0x11e)+_0x30602b(-0x198,-0x9c)+_0x158c63(0x128,0x73)+'\x20\x20\x20\x20\x20'+_0x30602b(-0x1c8,-0xa7)+_0x158c63(0x1e3,0xee)+_0x30602b(-0x1db,-0xcd)+_0x30602b(0x11c,0x119)+_0x158c63(0x128,0x1f2)+_0x158c63(0x327,0x2e6)+_0x30602b(0x24,-0x22)+'\x20=>\x20{'+_0x30602b(-0x5b,-0x101)+_0x30602b(-0x9a,-0x4d)+_0x30602b(0x19d,0x159)+_0x158c63(0x343,0x453)+'tElem'+_0x158c63(0x15a,0xae)+_0x158c63(0x106,0x53)+_0x158c63(0x1fb,0x26b)+_0x158c63(0x284,0x20d)+_0x30602b(0x20a,0x14a)+_0x158c63(0x1a6,0x2d3)+_0x158c63(0x26e,0x1b6)+_0x158c63(0x151,0x1c9)+'or\x27;\x0a'+_0x158c63(0x13e,0x23a)+'\x20\x20\x20do'+_0x158c63(0x27a,0x380)+'t.get'+_0x30602b(-0x7f,0x68)+_0x30602b(-0x5,0xcd)+'d(\x27me'+_0x30602b(0x9d,0x161)+'s\x27).i'+_0x158c63(0x11f,0x1ac)+_0x30602b(-0x17,-0x11)+_0x30602b(-0xd8,-0x7a)+_0x158c63(0x36a,0x405)+_0x30602b(0xd4,0x76)+'rror\x22'+_0x158c63(0x301,0x3f2)+_0x158c63(0x1d1,0x2ac)+_0x158c63(0x2c4,0x24f)+_0x30602b(-0x1ca,-0x86)+'>\x27;\x0a\x20'+_0x30602b(-0x15,-0xeb)+_0x158c63(0x268,0x284)+_0x30602b(0x1a6,0xbd)+_0x158c63(0x358,0x23f)+'n\x20esc'+_0x158c63(0x302,0x3fc)+_0x158c63(0x2c3,0x245)+_0x30602b(-0x197,-0xa4)+_0x158c63(0x128,0x6f)+_0x158c63(0x275,0x17d)+_0x30602b(0x17e,0xab)+_0x30602b(0x7f,0xbb)+_0x158c63(0x382,0x374)+'nt.cr'+_0x30602b(-0x15f,-0xb0)+_0x30602b(0x14c,0x146)+'t(\x27di'+_0x158c63(0x1d9,0x2d5)+_0x158c63(0x13e,0xb3)+'\x20div.'+_0x30602b(-0x11c,-0xbe)+'onten'+_0x30602b(0x110,0xf8)+_0x158c63(0x26f,0x321)+_0x30602b(-0x117,-0xeb)+_0x30602b(0x7f,0xbc)+'rn\x20di'+_0x158c63(0x248,0x27d)+_0x30602b(-0xfe,-0x1c)+_0x30602b(-0x78,-0xf0)+(_0x158c63(0x1f1,0x202)+_0x30602b(-0x72,-0xd4)+_0x158c63(0x283,0x3ac)+_0x30602b(0x101,0x13b)+'\x0a\x20\x20\x20\x20'+'}\x0a\x20\x20<'+'/scri'+_0x158c63(0x348,0x475)+'/body'+'>\x0a</h'+_0x158c63(0x30a,0x372)+'\x20\x20'));}}const _0x256ac7=randomUUID()[_0x30602b(-0x10f,-0x7c)+'ce'](/-/g,'')[_0x158c63(0x14b,0x1b)+_0x30602b(0xc,0x94)](0x1514+-0x20+-0x14f4,-0x33*-0xc1+0x584*-0x4+0x1*-0x1057),_0x4bfec0=_0x5da617['join'](_0x481407,_0x256ac7+'.json'),_0x3ca978=typeof _0x448ee0===_0x324fa9[_0x30602b(-0x1b3,-0xe7)]?_0x448ee0[_0x158c63(0x14b,0x262)+'ring'](-0xb03+-0x17db+0x22de*0x1,-0x20e+0x17f*-0x4+0x8d2)[_0x158c63(0x1ad,0x2e7)+'ce'](/[\x00-\x1F\x7F]/g,''):_0x324fa9[_0x158c63(0x18a,0x1a0)],_0xd279f7=_0x3acf7c[_0x30602b(-0xa3,-0xdb)](_0x1aa1ed=>({'type':sanitizeMessageType(_0x1aa1ed['type']),'text':sanitizeMessageText(_0x1aa1ed[_0x158c63(0x165,0x1e6)]),'timestamp':typeof _0x1aa1ed[_0x158c63(0x2a0,0x365)+_0x158c63(0x167,0x1ab)]===_0x158c63(0x2c2,0x305)+'r'?_0x1aa1ed['times'+_0x158c63(0x167,0x20c)]:Date[_0x158c63(0x297,0x2a4)]()})),_0x378ebd={'id':_0x256ac7,'title':_0x3ca978,'messages':_0xd279f7,'createdAt':Date[_0x30602b(0x54,0x6e)](),'expiresAt':Date[_0x30602b(0xd,0x6e)]()+_0x324fa9['bMeUo'](_0x324fa9[_0x158c63(0x1c5,0x195)](_0x46399f,-0x880+0x4f*-0xe+0xd0e),-0x17c3+-0xb72+0x2371)*(-0xaba*0x1+-0x1d35+0x2bd7),'viewCount':0x0},_0x3b63ab=_0x5da617[_0x30602b(0x1f5,0xda)](_0x481407,_0x30602b(0x6f,0x103)+_0x256ac7+'-'+_0x324fa9[_0x158c63(0x188,0x219)](randomUUID)+'.json');await _0x34fe50[_0x30602b(-0x1c9,-0xe3)+_0x158c63(0x170,0x127)](_0x3b63ab,JSON[_0x30602b(0x89,0xf6)+_0x30602b(0x18d,0xbe)](_0x378ebd,null,-0x8a*-0x33+0x2405+-0x3f81)),await _0x34fe50['renam'+'e'](_0x3b63ab,_0x4bfec0),log(_0x324fa9[_0x158c63(0x2a5,0x277)],_0x30602b(0x113,0xe0)+_0x30602b(0xbd,0x50)+_0x158c63(0x355,0x40d)+'\x20shar'+_0x30602b(0x11,-0x109)+_0x256ac7);const _0x3fe768={};return _0x3fe768['share'+'Id']=_0x256ac7,_0x3fe768['share'+_0x30602b(0x1ba,0x139)]=_0x158c63(0x1a0,0x291)+'e/'+_0x256ac7,_0x3fe768[_0x158c63(0x171,0x1a0)+_0x30602b(-0x36,-0x24)]=_0x378ebd['expir'+'esAt'],_0x324fa9[_0x158c63(0x25f,0x13e)](sendSuccess,_0x155075,_0x3fe768);}else return _0x1ae4b1[_0x158c63(0x1b9,0x1c2)](_0x99e739,_0x1ae4b1[_0x158c63(0x242,0x1a6)],'[Shar'+_0x30602b(0x62,-0xc7)+_0x30602b(-0x15b,-0xca)+_0x158c63(0x288,0x33a),_0xff406d[_0x30602b(-0xda,-0x36)+'ge']),_0x3ad6e1['serve'+_0x158c63(0x2b1,0x358)+'r'](_0x5d21fa,_0x158c63(0x2b4,0x276)+_0x30602b(-0x35,0x6c)+'get\x20s'+_0x30602b(0x75,0xa3));}catch(_0x407888){return _0x324fa9[_0x30602b(0x153,0x18)](_0x324fa9[_0x158c63(0x380,0x2af)],_0x324fa9[_0x30602b(0x273,0x157)])?(log(_0x324fa9[_0x30602b(-0xe8,-0x32)],'[Shar'+'e]\x20Cr'+_0x30602b(-0x3d,0x23)+_0x158c63(0x148,0xa6)+':',_0x407888['messa'+'ge']),errors[_0x30602b(-0x22b,-0xfd)+_0x158c63(0x2b1,0x185)+'r'](_0x155075,_0x324fa9[_0x30602b(-0x1bd,-0x113)])):_0x510ea7[_0x158c63(0x247,0x137)+'und'](_0x542fa6,_0x324fa9[_0x30602b(0x26b,0x132)]);}}),_0x1e9a7a[_0x1feda1(0x7bf,0x877)](_0x1feda1(0x558,0x56e)+'share'+_0x1feda1(0x629,0x657)+_0x1feda1(0x612,0x723),async(_0x30e6f7,_0x4bc8a4)=>{function _0x5306b9(_0x1974fa,_0xc9e3b6){return _0x1feda1(_0x1974fa- -0x5bf,_0xc9e3b6);}function _0x448fa0(_0x4f3c56,_0x545db7){return _0x1feda1(_0x545db7- -0x42a,_0x4f3c56);}if(_0x324fa9[_0x5306b9(0x198,0x134)](_0x324fa9[_0x448fa0(0x269,0x18e)],_0x324fa9[_0x5306b9(-0x7,0x75)])){const _0x2ab850=[_0x448fa0(0x102,0x133),PYaMTD[_0x5306b9(0x39,0xfc)],'syste'+'m'];if(PYaMTD['ZhVPi'](typeof _0x166ffc,PYaMTD[_0x5306b9(-0x3a,0xda)])&&_0x2ab850[_0x448fa0(0x24d,0x213)+_0x5306b9(0x16f,0xdf)](_0xff644))return _0x4007d2;return PYaMTD[_0x5306b9(0x162,0x1b1)];}else try{const {shareId:_0x417add}=_0x30e6f7[_0x5306b9(0x143,0x10d)+'s'],_0x529999=sanitizeShareId(_0x417add);if(!_0x529999['valid'])return errors[_0x5306b9(0x20,0xe8)+'quest'](_0x4bc8a4,_0x529999[_0x5306b9(-0x34,-0xe7)]);const _0x17f2d4=_0x529999[_0x448fa0(0x4c0,0x391)+'ized'],_0x31c00f=_0x5da617[_0x448fa0(0x423,0x31c)](_0x481407,_0x17f2d4+_0x448fa0(0x1a7,0x165));try{if(_0x324fa9[_0x5306b9(0xc5,0xdc)](_0x324fa9['MyxJD'],_0x324fa9[_0x5306b9(0x8e,-0x3f)]))return'';else{const _0x18ff8f=await _0x34fe50['readF'+_0x448fa0(0x268,0x1b7)](_0x31c00f,_0x324fa9[_0x5306b9(0x0,0x28)]),_0x5a9042=JSON[_0x448fa0(0x213,0x2cf)](_0x18ff8f);if(_0x324fa9[_0x5306b9(0x3a,0x86)](Date['now'](),_0x5a9042[_0x448fa0(0x23e,0x18a)+_0x5306b9(0x89,0x13)]))return _0x324fa9[_0x448fa0(0x3e2,0x378)](_0x324fa9[_0x448fa0(0x147,0x247)],_0x324fa9['KSCfL'])?_0x5bcdb7[_0x5306b9(-0x78,-0x11d)+_0x5306b9(0xe9,0x28)]()['searc'+'h'](PYaMTD[_0x448fa0(0x348,0x2c3)])[_0x448fa0(0x1b6,0x11d)+_0x448fa0(0x38d,0x27e)]()[_0x448fa0(0x344,0x2f5)+_0x448fa0(0x7c,0x166)+'r'](_0xcc6ceb)[_0x5306b9(-0x13,-0x105)+'h'](PYaMTD[_0x5306b9(0x12e,0x1e)]):(await _0x34fe50[_0x5306b9(0x88,-0x22)+'k'](_0x31c00f)[_0x448fa0(0x3ff,0x32b)](()=>{}),errors[_0x5306b9(0xcb,0x125)+_0x5306b9(0x59,-0x42)](_0x4bc8a4,_0x324fa9[_0x448fa0(0x382,0x357)]));return _0x5a9042[_0x448fa0(0x379,0x303)+_0x448fa0(0x24a,0x1dd)]++,await _0x34fe50['write'+_0x448fa0(0xd5,0x189)](_0x31c00f,JSON['strin'+_0x5306b9(0x16b,0xc5)](_0x5a9042,null,0xa4a+-0x17e7+0xd9f)),_0x324fa9[_0x5306b9(-0x4a,0x6c)](sendSuccess,_0x4bc8a4,_0x5a9042);}}catch(_0x43148c){return _0x324fa9[_0x5306b9(0x207,0x215)](_0x324fa9[_0x5306b9(-0x28,-0x151)],_0x324fa9[_0x5306b9(-0x28,-0xb4)])?errors[_0x448fa0(0x121,0x260)+'und'](_0x4bc8a4,_0x324fa9[_0x5306b9(0x1df,0x21a)]):_0x2d7cda[_0x448fa0(0x18f,0x260)+_0x448fa0(0x173,0x1ee)](_0x876dc2,_0x324fa9['mPlSk']);}}catch(_0x1265a3){return _0x324fa9[_0x448fa0(0x28c,0x1c7)](log,_0x324fa9[_0x5306b9(0x7b,-0x3d)],_0x5306b9(0x18d,0x178)+_0x448fa0(0xfd,0x17b)+_0x5306b9(-0x1d,0x9e)+'or:',_0x1265a3[_0x5306b9(0x77,-0x8d)+'ge']),errors[_0x448fa0(0x8f,0x145)+'rErro'+'r'](_0x4bc8a4,_0x324fa9[_0x5306b9(0x5a,0x66)]);}});function _0x2a6e9a(_0x544e45,_0x35fe0b){return _0x1113(_0x544e45-0x32f,_0x35fe0b);}function _0x1feda1(_0x45a7ec,_0x1e95db){return _0x1113(_0x45a7ec-0x3d2,_0x1e95db);}_0x1e9a7a[_0x2a6e9a(0x625,0x4e0)+'e'](_0x324fa9[_0x1feda1(0x76b,0x779)],strictLimiter,async(_0x5bf5f4,_0x239d21)=>{function _0x4dade1(_0x2d6790,_0x329780){return _0x2a6e9a(_0x329780- -0x4bc,_0x2d6790);}function _0x12da6f(_0xe2156d,_0x1f9416){return _0x2a6e9a(_0x1f9416- -0x4e7,_0xe2156d);}if(_0x324fa9[_0x12da6f(0x33f,0x215)]!==_0x324fa9[_0x12da6f(0x88,0x2b)])try{const {shareId:_0x2d6ab1}=_0x5bf5f4[_0x4dade1(0x1b6,0x1a3)+'s'],_0xf60695=_0x324fa9[_0x12da6f(-0x6b,-0x42)](sanitizeShareId,_0x2d6ab1);if(!_0xf60695[_0x4dade1(0x13d,0x24d)])return _0x12da6f(0xa3,0x179)!==_0x324fa9[_0x4dade1(0x1b4,0x14e)]?errors[_0x12da6f(0xd7,0x55)+_0x4dade1(-0x27,0x1f)](_0x239d21,_0xf60695['error']):_0x3755d1['badRe'+_0x12da6f(0xd4,-0xc)](_0x213db7,_0x40150e[_0x4dade1(0x6b,0x2c)]);const _0x492cd8=_0xf60695[_0x12da6f(0x250,0x231)+_0x12da6f(-0xea,0x49)],_0x562f23=_0x5da617['join'](_0x481407,_0x492cd8+_0x4dade1(0x55,0x30));return await _0x34fe50[_0x12da6f(0x180,0xbd)+'k'](_0x562f23),_0x324fa9[_0x12da6f(0x259,0x12d)](sendSuccess,_0x239d21);}catch(_0x228db1){return errors[_0x4dade1(0xe6,0x12b)+_0x4dade1(-0x61,0xb9)](_0x239d21,_0x324fa9[_0x4dade1(0x163,0x23f)]);}else return _0x2125a1[_0x12da6f(0x192,0x55)+_0x12da6f(0xa9,-0xc)](_0x5f3684,'messa'+_0x4dade1(0x28,0xc4)+_0x12da6f(0x1da,0x156)+_0x12da6f(0x2c5,0x19c)+'red');}),_0x1e9a7a[_0x1feda1(0x7bf,0x72a)](_0x2a6e9a(0x540,0x573)+_0x2a6e9a(0x61d,0x73b)+_0x2a6e9a(0x4a1,0x3d2),async(_0x11fd35,_0x13a4b6)=>{function _0x460102(_0x25f9cc,_0x43d115){return _0x1feda1(_0x25f9cc- -0xaa,_0x43d115);}function _0x3bd2a1(_0x212c5e,_0x3511fd){return _0x1feda1(_0x212c5e- -0x42a,_0x3511fd);}if(_0x324fa9[_0x3bd2a1(0x121,0xfd)](_0x324fa9[_0x460102(0x540,0x44c)],_0x324fa9[_0x3bd2a1(0x356,0x449)]))return _0x550654;else _0x13a4b6[_0x460102(0x676,0x7a7)](getSharePageHTML(_0x11fd35[_0x3bd2a1(0x2d8,0x2b3)+'s'][_0x460102(0x543,0x65f)+'Id']));});}function getSharePageHTML(_0x53127b){function _0x253ec8(_0x2579f3,_0x41c597){return _0x1113(_0x41c597-0x143,_0x2579f3);}function _0x1678ab(_0x23fcfc,_0x21f3f7){return _0x1113(_0x23fcfc- -0x139,_0x21f3f7);}const _0x365b7a={'ffmIz':function(_0x5c5b69,_0x36e215){return _0x5c5b69(_0x36e215);}},_0x23b13b=_0x365b7a[_0x1678ab(0x205,0x18e)](escapeForJS,_0x53127b[_0x1678ab(0xe5,0x135)+'ce'](/[^a-zA-Z0-9]/g,'')[_0x1678ab(0x83,-0x6c)+_0x1678ab(0x1f5,0x188)](0x105e*-0x1+0x127*-0x21+0x3665,-0x10*-0x8e+-0x68+-0x86c));return'\x0a<!DO'+_0x1678ab(0x99,0xa8)+_0x253ec8(0x587,0x47f)+_0x253ec8(0x4d1,0x4ea)+_0x1678ab(0x2be,0x251)+_0x253ec8(0x3ee,0x4ac)+_0x1678ab(0x261,0x16c)+_0x253ec8(0x3e8,0x359)+_0x253ec8(0x50b,0x505)+_0x253ec8(0x59e,0x45c)+_0x1678ab(0x106,0x23f)+_0x1678ab(0x147,0x245)+'F-8\x22>'+_0x1678ab(0x289,0x26e)+_0x1678ab(0x1eb,0xb0)+'ame=\x22'+_0x253ec8(0x37c,0x3f7)+'ort\x22\x20'+_0x1678ab(0x171,0x29b)+_0x1678ab(0x20f,0x289)+_0x253ec8(0x3c3,0x489)+_0x253ec8(0x62e,0x4fe)+_0x1678ab(0x168,0xd0)+_0x253ec8(0x3b3,0x4b1)+_0x253ec8(0x2bc,0x374)+_0x253ec8(0x2d3,0x414)+_0x253ec8(0x2b3,0x343)+_0x253ec8(0x56e,0x4c9)+'\x20<tit'+_0x1678ab(0xe9,0xe)+_0x1678ab(0x238,0x131)+'Conve'+_0x253ec8(0x557,0x53f)+'on\x20-\x20'+_0x253ec8(0x3c1,0x3e9)+_0x1678ab(0x65,0x177)+'tle>\x0a'+_0x1678ab(0x100,0x1ec)+_0x1678ab(0xa0,0xe4)+_0x1678ab(0x250,0x1b0)+_0x253ec8(0x497,0x444)+'x-siz'+'ing:\x20'+_0x253ec8(0x314,0x43e)+_0x1678ab(0xb9,0xfa)+_0x1678ab(0x190,0x11b)+_0x253ec8(0x34c,0x47a)+_0x1678ab(0x1f2,0x1f4)+_0x253ec8(0x52a,0x461)+_0x1678ab(0x10a,0x1f1)+_0x1678ab(0x1b0,0x28c)+_0x1678ab(0x206,0x318)+_0x1678ab(0x157,0x80)+_0x1678ab(0x76,0x181)+_0x1678ab(0x2a3,0x18b)+_0x1678ab(0xc1,0x16f)+_0x1678ab(0x19f,0x14c)+_0x253ec8(0x3b6,0x40b)+'syste'+_0x1678ab(0x167,0x126)+_0x1678ab(0x16e,0x10f)+_0x1678ab(0x12e,0x12)+_0x1678ab(0x191,0x89)+_0x253ec8(0x452,0x4c2)+_0x1678ab(0x24f,0x2fc)+'UI\x27,\x20'+_0x253ec8(0x341,0x3f1)+_0x253ec8(0x21b,0x340)+';\x0a\x20\x20\x20'+_0x253ec8(0x3bf,0x38c)+'ckgro'+_0x1678ab(0x1f6,0xf8)+_0x253ec8(0x3fa,0x3ec)+_0x253ec8(0x2e3,0x366)+_0x253ec8(0x3cb,0x2f2)+'\x20colo'+_0x1678ab(0x41,0x128)+_0x1678ab(0x149,0x84)+_0x253ec8(0x40d,0x2f2)+_0x253ec8(0x372,0x364)+_0x253ec8(0x361,0x2e2)+':\x20100'+_0x1678ab(0x2c1,0x17c)+_0x253ec8(0x277,0x2f2)+_0x253ec8(0x51a,0x515)+_0x1678ab(0x112,0x14a)+_0x1678ab(0x2c0,0x3db)+_0x253ec8(0x35d,0x36b)+_0x253ec8(0x29a,0x2dc)+_0x253ec8(0x2cb,0x39f)+_0x1678ab(0x1f9,0x20b)+_0x253ec8(0x548,0x4de)+_0x1678ab(0x19b,0x1f0)+_0x253ec8(0x3e0,0x2c5)+_0x1678ab(0x1c3,0x107)+_0x1678ab(0x1c1,0xa6)+_0x1678ab(0xe0,-0x30)+_0x1678ab(0x1f4,0x21a)+_0x253ec8(0x361,0x381)+_0x253ec8(0x44c,0x52d)+'eader'+_0x253ec8(0x490,0x3d3)+_0x253ec8(0x3da,0x2f2)+_0x1678ab(0x29d,0x2ed)+_0x1678ab(0x2b9,0x20e)+_0x253ec8(0x562,0x457)+_0x253ec8(0x26b,0x373)+_0x253ec8(0x22e,0x2dc)+_0x1678ab(0x18c,0xb5)+_0x253ec8(0x273,0x34b)+_0x1678ab(0xc3,0x2b)+'\x200\x2030'+_0x1678ab(0xfb,0x1de)+_0x253ec8(0x356,0x2f2)+'borde'+_0x1678ab(0x229,0x22d)+_0x1678ab(0xd3,0xae)+_0x253ec8(0x32d,0x462)+'olid\x20'+_0x1678ab(0x2ad,0x2ac)+_0x1678ab(0x60,0x29)+_0x253ec8(0x46c,0x434)+'gin-b'+_0x253ec8(0x544,0x46c)+_0x1678ab(0xf3,0x4c)+'x;\x0a\x20\x20'+'\x20\x20}\x0a\x20'+_0x1678ab(0x28e,0x254)+'ogo\x20{'+'\x20font'+'-size'+_0x253ec8(0x491,0x40f)+_0x1678ab(0x190,0x263)+_0x253ec8(0x265,0x3a3)+'ottom'+_0x253ec8(0x362,0x395)+_0x1678ab(0x105,0xfb)+_0x1678ab(0x153,0xea)+_0x1678ab(0x15c,0xdd)+'{\x20fon'+_0x253ec8(0x3cc,0x34e)+_0x1678ab(0x72,0xba)+'2em;\x20'+_0x1678ab(0x1d6,0x216)+':\x20#88'+_0x1678ab(0xdc,0xb1)+'\x20\x20\x20\x20.'+_0x1678ab(0x12b,0x207)+_0x1678ab(0x4b,-0x97)+_0x1678ab(0x1a9,0x2a4)+'lay:\x20'+_0x1678ab(0x25a,0x28c)+'\x20flex'+_0x253ec8(0x5f6,0x4e3)+'ction'+_0x253ec8(0x4c8,0x4ed)+_0x1678ab(0x1d3,0x2d4)+_0x253ec8(0x425,0x3f3)+_0x1678ab(0x113,0x232)+_0x253ec8(0x33e,0x2e4)+_0x253ec8(0x446,0x3eb)+_0x1678ab(0x2c2,0x2d4)+_0x1678ab(0x157,0x12e)+'\x20\x20\x20\x20\x20'+_0x253ec8(0x524,0x515)+_0x1678ab(0x1ff,0xcb)+'2px\x201'+_0x1678ab(0x1af,0x22d)+'\x0a\x20\x20\x20\x20'+_0x253ec8(0x42c,0x4b3)+'der-r'+_0x253ec8(0x278,0x3a1)+':\x2012p'+'x;\x20\x0a\x20'+_0x253ec8(0x3d0,0x2f2)+_0x253ec8(0x4b2,0x4e5)+_0x1678ab(0x27c,0x383)+'\x2085%;'+_0x1678ab(0x60,-0xac)+_0x1678ab(0x1b0,0x2ae)+_0x1678ab(0x148,0x23e)+_0x1678ab(0x24e,0x1df)+_0x1678ab(0x9c,0xff)+_0x1678ab(0x26c,0x20e)+'\x20\x20\x20\x20b'+_0x253ec8(0x28f,0x2b6)+_0x253ec8(0x309,0x3b7)+_0x253ec8(0x394,0x3d4)+_0x253ec8(0x616,0x4df)+_0x253ec8(0x2c9,0x2dc)+_0x1678ab(0x277,0x2a6)+_0x1678ab(0x24b,0x250)+'lf:\x20f'+_0x253ec8(0x382,0x441)+_0x1678ab(0x1e1,0x225)+_0x253ec8(0x21b,0x2f2)+_0x1678ab(0x1c2,0xc3)+_0x1678ab(0x229,0x363)+_0x253ec8(0x3a4,0x2f8)+_0x253ec8(0x343,0x44d)+('radiu'+_0x253ec8(0x435,0x514)+'x;\x0a\x20\x20'+_0x253ec8(0x434,0x49d)+_0x1678ab(0x3b,0x168)+'essag'+_0x1678ab(0x1bf,0x8e)+_0x1678ab(0x1da,0x227)+_0x253ec8(0x490,0x45b)+_0x253ec8(0x435,0x2f2)+_0x253ec8(0x478,0x50d)+'groun'+'d:\x20#1'+_0x1678ab(0x213,0x1ce)+';\x20\x0a\x20\x20'+_0x253ec8(0x243,0x2c3)+'lign-'+_0x253ec8(0x44d,0x3dc)+'\x20flex'+'-star'+_0x253ec8(0x2f5,0x3a6)+_0x253ec8(0x282,0x347)+_0x1678ab(0x29e,0x388)+'-bott'+'om-le'+_0x253ec8(0x556,0x533)+_0x1678ab(0xf0,0x1a5)+_0x253ec8(0x382,0x3ce)+_0x253ec8(0x41f,0x2dc)+_0x253ec8(0x51c,0x42c)+_0x1678ab(0x2a0,0x1a2)+_0x253ec8(0x56a,0x50e)+'\x0a\x20\x20\x20\x20'+_0x1678ab(0x182,0x14f)+'t-ali'+_0x253ec8(0x26a,0x2e9)+'enter'+_0x253ec8(0x1d6,0x310)+'\x20\x20\x20ma'+_0x1678ab(0x1dc,0x289)+_0x1678ab(0x8a,0x19e)+_0x253ec8(0x307,0x32c)+_0x1678ab(0x60,0xef)+_0x1678ab(0x18c,0x1c4)+'ding-'+_0x1678ab(0x8a,0x149)+_0x253ec8(0x5ac,0x502)+_0x253ec8(0x2c9,0x2dc)+'\x20\x20bor'+_0x1678ab(0x1ed,0x184)+_0x253ec8(0x300,0x3df)+'px\x20so'+'lid\x20#'+_0x1678ab(0x16c,0x18a)+_0x1678ab(0x76,0x23)+'\x20colo'+'r:\x20#6'+_0x1678ab(0x6b,0x14)+_0x253ec8(0x2e6,0x2f2)+'font-'+_0x253ec8(0x53c,0x4da)+_0x253ec8(0x3ef,0x368)+'m;\x0a\x20\x20'+_0x1678ab(0x221,0x12f)+_0x253ec8(0x338,0x314)+_0x253ec8(0x36b,0x35d)+_0x253ec8(0x454,0x3ee)+_0x1678ab(0x1d6,0x306)+_0x1678ab(0xab,-0x8a)+_0x1678ab(0x1c6,0x131)+_0x1678ab(0x279,0x1a0)+_0x1678ab(0x253,0x316)+_0x253ec8(0x312,0x35f)+'n:\x20no'+'ne;\x20}'+_0x253ec8(0x376,0x2dc)+_0x253ec8(0x41c,0x2fd)+_0x1678ab(0x141,0x1ba)+'ext-a'+_0x253ec8(0x3e1,0x2c0)+_0x253ec8(0x333,0x447)+'er;\x20p'+_0x253ec8(0x574,0x4ab)+_0x253ec8(0x1d1,0x2d9)+_0x253ec8(0x558,0x446)+'olor:'+_0x1678ab(0x265,0x2cb)+_0x1678ab(0x268,0x25b)+_0x253ec8(0x315,0x42c)+_0x1678ab(0x15e,0xad)+_0x1678ab(0x1ce,0x1cd)+_0x253ec8(0x39f,0x2f0)+'t-ali'+_0x1678ab(0x6d,0xf1)+_0x1678ab(0x165,0x6c)+_0x1678ab(0x1a5,0x2a3)+_0x1678ab(0xcf,0xe2)+'\x2040px'+_0x253ec8(0x5c5,0x4a8)+_0x253ec8(0x508,0x4bc)+_0x1678ab(0x156,0x297)+'}\x0a\x20\x20<'+_0x1678ab(0xb8,-0x15)+_0x1678ab(0x26f,0x37d)+_0x1678ab(0xdd,0x136)+'\x0a<bod'+'y>\x0a\x20\x20'+_0x253ec8(0x5b3,0x49c)+'class'+'=\x22con'+_0x253ec8(0x38c,0x387)+_0x253ec8(0x253,0x337)+_0x253ec8(0x2ea,0x410)+_0x253ec8(0x4af,0x46d)+_0x1678ab(0x14c,0x52)+'heade'+_0x1678ab(0xbb,0x1fe)+_0x1678ab(0x76,-0x95)+_0x253ec8(0x397,0x49c)+_0x1678ab(0x78,0xf3)+_0x253ec8(0x36b,0x2c6)+_0x1678ab(0x1e4,0x24f)+'Uplin'+_0x253ec8(0x351,0x356)+_0x1678ab(0xfa,0xe5)+_0x1678ab(0x256,0x1ed)+_0x1678ab(0x8f,0x4d)+_0x1678ab(0x8b,0xe8)+_0x1678ab(0x28b,0x335)+_0x253ec8(0x446,0x3b1)+_0x253ec8(0x2aa,0x331)+_0x1678ab(0x196,0xe6)+_0x1678ab(0xae,0x14f)+_0x253ec8(0x215,0x2fb)+'g...<'+_0x1678ab(0x77,0x172)+'\x0a\x20\x20\x20\x20'+_0x1678ab(0xdb,0x46)+_0x1678ab(0x29b,0x17e)+_0x253ec8(0x4cc,0x528)+'\x20clas'+_0x253ec8(0x324,0x3ba)+_0x1678ab(0x2c2,0x3a7)+'s\x22\x20id'+_0x253ec8(0x32a,0x432)+_0x253ec8(0x3c3,0x4f0)+_0x1678ab(0x1ea,0x23b)+_0x1678ab(0x256,0x188)+'div\x20c'+_0x253ec8(0x2f3,0x307)+_0x253ec8(0x42a,0x3c6)+'ing\x22>'+'Loadi'+_0x253ec8(0x479,0x4ae)+_0x1678ab(0x5c,0x124)+'ation'+'...</'+_0x1678ab(0x9b,0x57)+_0x253ec8(0x412,0x4d2)+'/div>'+_0x253ec8(0x2f8,0x2dc)+'<div\x20'+'class'+_0x253ec8(0x40c,0x349)+_0x1678ab(0x28c,0x230)+'\x0a\x20\x20\x20\x20'+_0x1678ab(0x212,0xf4)+'red\x20v'+_0x253ec8(0x48d,0x3b2)+_0x1678ab(0x10f,0x6a)+'=\x22/\x22>'+_0x1678ab(0x16d,0x150)+_0x253ec8(0x3ff,0x39b)+_0x1678ab(0x60,0x172)+_0x1678ab(0xdb,0x15c)+_0x253ec8(0x3d9,0x4c1)+_0x1678ab(0x77,0xe1)+_0x1678ab(0x43,-0xd3)+_0x253ec8(0x29d,0x328)+'>\x0a\x20\x20\x20'+_0x253ec8(0x3f0,0x3fa)+_0x1678ab(0x288,0x3ae)+_0x1678ab(0x116,0xf7)+_0x253ec8(0x323,0x37f)+_0x253ec8(0x4ef,0x495)+'=\x20doc'+_0x1678ab(0x2b5,0x3e0)+_0x253ec8(0x370,0x407)+_0x253ec8(0x5f4,0x4ba)+'ment('+_0x253ec8(0x2f1,0x41f)+_0x253ec8(0x5e9,0x4f4)+_0x1678ab(0xa3,-0x4f)+'onten'+_0x1678ab(0x67,-0x72)+_0x253ec8(0x382,0x3d6)+_0x253ec8(0x4ad,0x4ad)+_0x1678ab(0x281,0x2c2)+_0x253ec8(0x3f2,0x41a)+_0x1678ab(0x105,0x5c))+('\x20\x20\x20co'+'nst\x20s'+_0x1678ab(0x27d,0x14c)+_0x253ec8(0x210,0x31a))+_0x23b13b+('\x27;\x0a\x20\x20'+'\x20\x20fet'+'ch(\x27/'+_0x1678ab(0xf5,0x1e9)+_0x253ec8(0x3e9,0x3bf)+_0x1678ab(0x273,0x365)+_0x253ec8(0x536,0x4f9)+_0x253ec8(0x4c2,0x52f)+_0x253ec8(0x352,0x3d1)+_0x1678ab(0x164,0x279)+_0x1678ab(0x247,0x34c)+'r.jso'+_0x253ec8(0x623,0x4e9)+_0x253ec8(0x33f,0x2f2)+_0x1678ab(0x93,-0x5a)+_0x1678ab(0x42,0x12a)+_0x253ec8(0x25a,0x34d)+_0x1678ab(0x12d,0x5f)+'\x20\x20\x20\x20\x20'+_0x1678ab(0xa7,0x6e)+_0x253ec8(0x411,0x3b0)+_0x1678ab(0x2a8,0x2eb)+_0x253ec8(0x581,0x493)+_0x253ec8(0x1c7,0x2fd)+_0x253ec8(0x2bf,0x2d2)+_0x1678ab(0x76,0xb0)+'\x20\x20\x20\x20\x20'+'docum'+_0x1678ab(0x16b,0x51)+'etEle'+'mentB'+_0x253ec8(0x41c,0x3ef)+_0x1678ab(0xe2,0x44)+'Title'+_0x253ec8(0x512,0x401)+_0x253ec8(0x3ac,0x3a8)+_0x253ec8(0x542,0x47c)+_0x1678ab(0x131,0x20c)+_0x1678ab(0x202,0x28c)+_0x1678ab(0x60,-0xab)+_0x1678ab(0x76,-0xa2)+_0x253ec8(0x3dd,0x4a9)+_0x253ec8(0x44e,0x34a)+'getEl'+_0x1678ab(0x140,0x23b)+_0x1678ab(0x108,0x161)+_0x1678ab(0x29f,0x37f)+_0x1678ab(0x176,0x159)+_0x1678ab(0x234,0x1f9)+_0x1678ab(0x145,0x35)+_0x253ec8(0x3d7,0x46b)+'<div\x20'+'class'+'=\x22err'+_0x1678ab(0x159,0x34)+_0x1678ab(0x28f,0x247)+'c(dat'+_0x253ec8(0x2de,0x36e)+_0x1678ab(0x1a8,0x1d6)+_0x253ec8(0x4e3,0x522)+'nown\x20'+_0x253ec8(0x206,0x2fc)+_0x253ec8(0x2b4,0x3e6)+_0x1678ab(0x227,0x224)+_0x253ec8(0x461,0x48a)+_0x253ec8(0x1b4,0x2f2)+_0x1678ab(0x76,0x9d)+'retur'+_0x1678ab(0x195,0xd9)+'\x20\x20\x20\x20\x20'+_0x1678ab(0x68,-0x77)+_0x1678ab(0x76,0x1b5)+_0x253ec8(0x598,0x4a9)+_0x1678ab(0xce,0x209)+_0x1678ab(0x287,0x14c)+_0x253ec8(0x4bb,0x3bc)+'ById('+'\x27shar'+_0x1678ab(0xc9,0xc8)+'e\x27).t'+'extCo'+'ntent'+_0x253ec8(0x5b1,0x53b)+_0x253ec8(0x255,0x37e)+'tle;\x0a'+_0x253ec8(0x1f3,0x2f2)+_0x1678ab(0x15f,0x57)+_0x253ec8(0x3ca,0x42e)+'t.get'+_0x1678ab(0x1c9,0x292)+_0x1678ab(0x22e,0x12f)+_0x253ec8(0x4b3,0x4c0)+_0x1678ab(0x2c2,0x2fe)+_0x1678ab(0x207,0x271)+'nnerH'+_0x1678ab(0x150,0x285)+_0x253ec8(0x5b2,0x493)+_0x1678ab(0xeb,0x1bb)+'ages\x0a'+_0x1678ab(0x76,0xa6)+'\x20\x20\x20\x20\x20'+_0x253ec8(0x312,0x393)+_0x1678ab(0x1ba,0x2b8)+_0x253ec8(0x42f,0x32b)+_0x253ec8(0x5d6,0x4cd)+_0x253ec8(0x291,0x312)+_0x253ec8(0x343,0x2cb)+_0x1678ab(0x5a,0xc8)+_0x1678ab(0x76,0x2)+_0x1678ab(0x155,0x95)+_0x253ec8(0x4b8,0x3c7)+_0x253ec8(0x466,0x4ec)+'<div\x20'+'class'+'=\x22mes'+_0x253ec8(0x370,0x399)+_0x253ec8(0x36f,0x351)+_0x253ec8(0x394,0x3d9)+_0x1678ab(0x6f,-0x4d)+_0x253ec8(0x38c,0x3f4)+'escap'+_0x253ec8(0x3e0,0x2bb)+'(m.te'+_0x1678ab(0x258,0x24c)+_0x253ec8(0x569,0x4fb)+'iv>\x27)'+'\x0a\x20\x20\x20\x20'+_0x1678ab(0x76,-0xb2)+_0x253ec8(0x22b,0x336)+'n(\x27\x27)'+_0x1678ab(0x94,0xc0)+'\x20\x20\x20})'+_0x1678ab(0x60,-0xa3)+'\x20\x20.ca'+_0x1678ab(0x13f,0x17c)+_0x1678ab(0x2b2,0x2e9)+_0x253ec8(0x35d,0x2dc)+_0x253ec8(0x28d,0x390)+_0x253ec8(0x500,0x536)+_0x253ec8(0x3e0,0x4f7)+_0x1678ab(0x82,-0x90)+_0x253ec8(0x31b,0x30e)+_0x253ec8(0x310,0x2ba)+_0x253ec8(0x48e,0x3af)+_0x1678ab(0x1bc,0x218)+_0x253ec8(0x59b,0x527)+_0x253ec8(0x2b6,0x35a)+_0x253ec8(0x363,0x422)+_0x253ec8(0x2cf,0x305)+'or\x27;\x0a'+_0x253ec8(0x265,0x2f2)+_0x253ec8(0x36d,0x3db)+_0x1678ab(0x1b2,0x121)+'t.get'+_0x1678ab(0x1c9,0x1b3)+_0x1678ab(0x22e,0x2b2)+_0x1678ab(0x244,0x13a)+_0x1678ab(0x2c2,0x400)+_0x253ec8(0x596,0x483)+_0x1678ab(0x57,-0xe5)+_0x1678ab(0x150,0x218)+_0x1678ab(0xe7,0x16f)+_0x253ec8(0x580,0x51e)+_0x1678ab(0x1d7,0x2ea)+'rror\x22'+_0x1678ab(0x239,0x16c)+_0x253ec8(0x408,0x385)+'\x20load'+_0x253ec8(0x38a,0x357)+_0x253ec8(0x494,0x539)+_0x253ec8(0x360,0x2f2)+'});\x0a\x20'+_0x253ec8(0x4e0,0x49a)+'nctio'+_0x1678ab(0x154,0x118)+'apeHt'+_0x1678ab(0x1fb,0x272)+_0x253ec8(0x32d,0x339)+_0x1678ab(0x60,0x10e)+_0x1678ab(0x1ad,0x126)+'st\x20di'+_0x253ec8(0x368,0x498)+_0x1678ab(0x2ba,0x31c)+'nt.cr'+_0x1678ab(0xb1,0x2f)+_0x253ec8(0x5fa,0x523)+_0x1678ab(0x17c,0x2bf)+'v\x27);\x0a'+_0x1678ab(0x76,-0x53)+_0x253ec8(0x3c6,0x3cd)+'textC'+_0x253ec8(0x410,0x4a2)+_0x1678ab(0x259,0x39d)+_0x1678ab(0x1a7,0x29a)+_0x1678ab(0x76,-0x5d)+_0x1678ab(0x21d,0x2e0)+_0x253ec8(0x3f9,0x3b4)+_0x1678ab(0x180,0x57)+_0x1678ab(0x145,0x1db)+_0x1678ab(0x71,0x43)+(_0x253ec8(0x37d,0x3a5)+_0x1678ab(0x8d,-0x78)+_0x253ec8(0x507,0x437)+'r>\x27);'+_0x1678ab(0x60,-0x7d)+_0x1678ab(0x25d,0x292)+_0x1678ab(0xf4,0x1c)+_0x1678ab(0x280,0x2a6)+_0x1678ab(0x7b,-0x2c)+_0x1678ab(0x124,0x260)+_0x1678ab(0x242,0x316)+'\x20\x20'));}const _0x32851b={};function _0x1113(_0x4892e0,_0x52038a){_0x4892e0=_0x4892e0-(0x124b+0x2261*-0x1+-0x88*-0x21);const _0x2e4611=_0x43d5();let _0x39f825=_0x2e4611[_0x4892e0];return _0x39f825;}_0x32851b[_0x1cc16f(0x586,0x540)+_0x3f67f6(0x4e9,0x4d7)+'Route'+'s']=setupShareRoutes;export default _0x32851b;
@@ -1 +1 @@
1
- (function(_0x59674a,_0x39ecec){function _0x2ee359(_0x321189,_0xde83c0){return _0x1c88(_0x321189- -0x1e3,_0xde83c0);}function _0x43aa8f(_0x48244a,_0x1cc7f4){return _0x1c88(_0x1cc7f4-0x2e1,_0x48244a);}const _0x3e0eb0=_0x59674a();while(!![]){try{const _0x2b5ed7=-parseInt(_0x43aa8f(0x399,0x3a0))/(-0x33a+-0xd92+0xbb*0x17)+-parseInt(_0x43aa8f(0x3d1,0x3b5))/(0xfb+0x155+0x2*-0x127)+-parseInt(_0x2ee359(-0x119,-0x13b))/(0x1be8+-0x1efe+0x319)+-parseInt(_0x2ee359(-0x123,-0x131))/(0x1*0x18d7+-0x12*0x225+0xdc7)+parseInt(_0x2ee359(-0x13f,-0x12b))/(0xaff*0x2+0x470*-0x4+-0x439)+-parseInt(_0x43aa8f(0x3cc,0x3c0))/(0x84e+-0x18ff+-0x185*-0xb)*(parseInt(_0x2ee359(-0x137,-0x10d))/(-0x115*-0x1+0x518*-0x4+0x2*0x9a9))+parseInt(_0x43aa8f(0x3b9,0x38c))/(-0xc7*0x1+0x1841+-0x1772);if(_0x2b5ed7===_0x39ecec)break;else _0x3e0eb0['push'](_0x3e0eb0['shift']());}catch(_0x37b6c6){_0x3e0eb0['push'](_0x3e0eb0['shift']());}}}(_0x177c,0x20a61+-0x2*0x34d69+0x11*0x8158));const _0x58e7fa=(function(){function _0x3f7f61(_0x2ca957,_0x1698cb){return _0x1c88(_0x1698cb- -0x187,_0x2ca957);}const _0x35727f={};_0x35727f[_0x3f7f61(-0x8c,-0xa3)]='jUjsV';const _0x3b15fa=_0x35727f;let _0x11cd8a=!![];return function(_0x53dc9a,_0x16efdf){function _0x9380cc(_0x277928,_0x1d6abb){return _0x3f7f61(_0x1d6abb,_0x277928- -0x16c);}function _0x3da09c(_0x7ced38,_0x5b741d){return _0x3f7f61(_0x7ced38,_0x5b741d-0x33b);}if(_0x3b15fa[_0x3da09c(0x2b2,0x298)]!==_0x3b15fa[_0x9380cc(-0x20f,-0x216)])throw new _0x390985(_0x3da09c(0x27d,0x275)+_0x3da09c(0x296,0x285)+_0x3da09c(0x25c,0x250)+_0x9380cc(-0x228,-0x20c)+_0x9380cc(-0x25e,-0x283)+_0x3da09c(0x250,0x25d)+_0x3da09c(0x2a0,0x27d)+_0x9380cc(-0x269,-0x281)+_0x4c64b3+(_0x9380cc(-0x238,-0x215)+_0x3da09c(0x29b,0x279)+'nning'+'?'));else{const _0x7cd68b=_0x11cd8a?function(){if(_0x16efdf){const _0x1f36b9=_0x16efdf['apply'](_0x53dc9a,arguments);return _0x16efdf=null,_0x1f36b9;}}:function(){};return _0x11cd8a=![],_0x7cd68b;}};}()),_0x4c4e4f=_0x58e7fa(this,function(){const _0x2e8e28={};_0x2e8e28[_0x529cfc(0x320,0x314)]=_0x529cfc(0x35e,0x378)+_0x508237(0x26c,0x251)+'+$';function _0x508237(_0x41e328,_0x16d7e4){return _0x1c88(_0x16d7e4-0x193,_0x41e328);}function _0x529cfc(_0x4234e6,_0x265dc5){return _0x1c88(_0x4234e6-0x27e,_0x265dc5);}const _0x1171d2=_0x2e8e28;return _0x4c4e4f[_0x529cfc(0x324,0x302)+_0x529cfc(0x35c,0x38a)]()[_0x508237(0x22c,0x24f)+'h'](_0x1171d2[_0x529cfc(0x320,0x30a)])[_0x508237(0x231,0x239)+_0x508237(0x244,0x271)]()[_0x508237(0x251,0x26a)+_0x508237(0x257,0x23b)+'r'](_0x4c4e4f)[_0x508237(0x27a,0x24f)+'h'](_0x1171d2[_0x529cfc(0x320,0x332)]);});function _0x1c88(_0x4bc62c,_0x619e3a){_0x4bc62c=_0x4bc62c-(-0x64f*0x4+-0x9d*-0x1b+0x934);const _0x5c63bb=_0x177c();let _0x27f09f=_0x5c63bb[_0x4bc62c];return _0x27f09f;}_0x4c4e4f();function _0x177c(){const _0x5e4f64=['Faste','webm','Error','jvjnH','it\x20ru','e\x20ser','BNkNm','faste','hable','972276hqcZyC','serve','QOBpc','unnin','ut\x20(3','reque','hleBk','r-Whi','lzUzN','perUr','989996RdbteY','rge-v','RqOpK','const','st\x20ti','vXONI','REFUS','jDnBq','\x20-\x20','lYEjy','ing','1357602XLswRY','(((.+','er-la','FtiRn','repla','zvMIL','CdTlC','ECONN','SeSfS','\x20at\x20','name','IPnhL','model','EYvLh','\x20not\x20','gured','DLGFu','udio/','age','LJtsn','r\x20not','r\x20URL','POST','kDCln','tlBPF','CRjoc','readF','sper\x20','ile','nning','Abort','appen','audio','JHkwM','yauie','656140RjReXl','abort','toStr','YxFXn','ructo','\x20reac','med\x20o','14043008kvgwwT','7xJtJIb','file','code','text','slice','Is\x20th','confi','/v1/a','signa','json','cript','r\x20err','or:\x20','ions','3-tur','.\x20Is\x20','searc','trans',')+)+)','192447vbigok','1540068mnKjod'];_0x177c=function(){return _0x5e4f64;};return _0x177c();}import _0x182e8c from'fs/promises';import _0x26b9e6 from'path';export async function transcribe(_0x3a433c,_0x272f47){const _0x357e6b={'yauie':_0x20e469(-0x266,-0x268)+'r-Whi'+_0x20e469(-0x28b,-0x280)+_0x20e469(-0x25c,-0x265)+'r\x20URL'+_0x34804d(0x2f0,0x310)+_0x20e469(-0x275,-0x28f)+_0x20e469(-0x297,-0x2af),'YxFXn':'Faste'+_0x20e469(-0x256,-0x255)+_0x20e469(-0x28b,-0x267)+_0x20e469(-0x258,-0x285)+_0x20e469(-0x24f,-0x24a)+_0x20e469(-0x27d,-0x299)+_0x34804d(0x369,0x34f)+'0s).\x20'+_0x34804d(0x34d,0x332)+_0x20e469(-0x261,-0x260)+'ver\x20r'+_0x34804d(0x351,0x34e)+'g?','hleBk':function(_0x1eeb48,_0x19daa2){return _0x1eeb48(_0x19daa2);},'jvjnH':function(_0x4c8f09,_0x46f2ac){return _0x4c8f09===_0x46f2ac;},'IPnhL':function(_0x1fa05b,_0x526e16){return _0x1fa05b===_0x526e16;},'WhmNk':function(_0x102513,_0x2853dd){return _0x102513!==_0x2853dd;},'CRjoc':_0x20e469(-0x25b,-0x23c),'lYEjy':_0x34804d(0x304,0x30e),'lzUzN':'whisp'+_0x34804d(0x35c,0x362)+_0x20e469(-0x252,-0x22f)+_0x20e469(-0x26d,-0x28e)+'bo','vXONI':'langu'+_0x34804d(0x2eb,0x314),'EYvLh':function(_0x495386,_0x30a373,_0x418736){return _0x495386(_0x30a373,_0x418736);},'tlBPF':_0x20e469(-0x245,-0x21b),'RqOpK':_0x20e469(-0x296,-0x2c4),'jDnBq':_0x20e469(-0x290,-0x261),'BNkNm':function(_0x1c4fe5,_0x520146){return _0x1c4fe5(_0x520146);},'SeSfS':'GVXJm','kDCln':_0x34804d(0x303,0x308),'LJtsn':function(_0x32217f,_0x880cd0){return _0x32217f===_0x880cd0;}},_0x556467=_0x272f47[_0x34804d(0x330,0x349)+'rWhis'+_0x34804d(0x381,0x354)+'l']||process.env.FASTER_WHISPER_URL;if(!_0x556467){if(_0x357e6b['WhmNk'](_0x357e6b[_0x20e469(-0x28d,-0x261)],_0x357e6b[_0x20e469(-0x28d,-0x293)]))throw new _0x37ac4b(_0x357e6b[_0x34804d(0x32c,0x324)]);else throw new Error(_0x20e469(-0x266,-0x266)+_0x34804d(0x349,0x352)+'sper\x20'+_0x20e469(-0x25c,-0x232)+_0x34804d(0x304,0x317)+'\x20not\x20'+_0x20e469(-0x275,-0x27f)+_0x34804d(0x2e5,0x311));}const _0x410a30=_0x556467[_0x20e469(-0x244,-0x21e)+'ce'](/\/+$/,'')+(_0x34804d(0x31d,0x334)+_0x20e469(-0x295,-0x270)+_0x20e469(-0x26a,-0x255)+_0x20e469(-0x271,-0x274)+_0x34804d(0x334,0x33a)),_0x4041e5=await _0x182e8c[_0x20e469(-0x28c,-0x2a2)+_0x34804d(0x31a,0x31e)](_0x3a433c),_0x1750a8=_0x26b9e6['extna'+'me'](_0x3a433c)[_0x20e469(-0x277,-0x28d)](0x2190*-0x1+-0x25*-0x2+0x2147)||_0x34804d(0x334,0x343);function _0x34804d(_0x3d87c8,_0xf2af61){return _0x1c88(_0xf2af61-0x281,_0x3d87c8);}const _0x29f98b={};_0x29f98b['type']=_0x20e469(-0x286,-0x289)+'/'+_0x1750a8;const _0x383751=new Blob([_0x4041e5],_0x29f98b),_0x5b1fbd=new FormData();_0x5b1fbd[_0x34804d(0x31c,0x321)+'d'](_0x34804d(0x329,0x32e),_0x383751,_0x20e469(-0x286,-0x2b3)+'.'+_0x1750a8),_0x5b1fbd[_0x20e469(-0x287,-0x2aa)+'d'](_0x357e6b[_0x34804d(0x38b,0x35e)],_0x357e6b[_0x34804d(0x35b,0x353)]),_0x5b1fbd[_0x34804d(0x312,0x321)+'d'](_0x357e6b[_0x20e469(-0x24e,-0x24c)],'en');function _0x20e469(_0x1a2761,_0x1065ce){return _0x1c88(_0x1a2761- -0x327,_0x1065ce);}const _0x135544=new AbortController(),_0x113a68=_0x357e6b['EYvLh'](setTimeout,()=>_0x135544[_0x20e469(-0x282,-0x280)](),-0xb1f3+0x4a23*0x1+-0x88*-0x1a0);try{if(_0x357e6b[_0x20e469(-0x29b,-0x299)](_0x357e6b[_0x34804d(0x341,0x31a)],_0x357e6b[_0x20e469(-0x251,-0x247)]))throw new _0x28681c(_0x357e6b[_0x34804d(0x33a,0x328)]);else{const _0x27f79c=await _0x357e6b[_0x34804d(0x31a,0x30f)](fetch,_0x410a30,{'method':_0x357e6b[_0x20e469(-0x24c,-0x237)],'body':_0x5b1fbd,'signal':_0x135544[_0x20e469(-0x273,-0x28e)+'l']});_0x357e6b[_0x34804d(0x36c,0x351)](clearTimeout,_0x113a68);if(!_0x27f79c['ok']){const _0x347e30=await _0x27f79c['text']();throw new Error(_0x34804d(0x359,0x342)+_0x34804d(0x377,0x352)+_0x34804d(0x346,0x31d)+_0x34804d(0x37b,0x34c)+_0x34804d(0x33e,0x338)+_0x34804d(0x32d,0x339)+_0x27f79c['statu'+'s']+_0x20e469(-0x24b,-0x241)+_0x347e30);}const _0x5e2962=await _0x27f79c[_0x20e469(-0x272,-0x257)]();return _0x5e2962[_0x20e469(-0x278,-0x279)]||'';}}catch(_0x583038){_0x357e6b[_0x34804d(0x36b,0x348)](clearTimeout,_0x113a68);if(_0x357e6b['jvjnH'](_0x583038[_0x34804d(0x2ff,0x30c)],'Abort'+_0x34804d(0x343,0x344))){if(_0x357e6b[_0x20e469(-0x29e,-0x2b5)]===_0x357e6b[_0x20e469(-0x28f,-0x27f)]){_0x357e6b[_0x34804d(0x333,0x351)](_0x42be3c,_0x3a2095);if(_0x357e6b[_0x20e469(-0x263,-0x23d)](_0x11b573[_0x34804d(0x2ff,0x30c)],_0x34804d(0x310,0x320)+_0x34804d(0x321,0x344)))throw new _0x4c4532(_0x357e6b[_0x34804d(0x303,0x328)]);if(_0x357e6b['IPnhL'](_0x374d5a[_0x34804d(0x338,0x32f)],_0x34804d(0x31f,0x309)+_0x20e469(-0x24d,-0x223)+'ED'))throw new _0x461778(_0x20e469(-0x266,-0x26a)+_0x34804d(0x37c,0x352)+_0x20e469(-0x28b,-0x29a)+_0x34804d(0x346,0x34c)+_0x34804d(0x338,0x316)+_0x34804d(0x318,0x32a)+'hable'+_0x20e469(-0x29d,-0x29e)+_0x11725+('.\x20Is\x20'+_0x20e469(-0x262,-0x254)+_0x34804d(0x2f4,0x31f)+'?'));throw _0x17af66;}else throw new Error(_0x357e6b[_0x20e469(-0x280,-0x2a4)]);}if(_0x357e6b[_0x20e469(-0x293,-0x2b6)](_0x583038[_0x34804d(0x33f,0x32f)],_0x20e469(-0x29f,-0x2a8)+_0x20e469(-0x24d,-0x22d)+'ED'))throw new Error(_0x20e469(-0x266,-0x264)+_0x34804d(0x325,0x352)+_0x20e469(-0x28b,-0x27b)+_0x20e469(-0x25c,-0x25f)+_0x20e469(-0x292,-0x2c0)+_0x20e469(-0x27e,-0x257)+_0x34804d(0x339,0x34a)+_0x34804d(0x2e6,0x30b)+_0x556467+('.\x20Is\x20'+_0x20e469(-0x262,-0x239)+_0x34804d(0x333,0x31f)+'?'));throw _0x583038;}}
1
+ (function(_0x164a9d,_0x3a6178){const _0x3a12ad=_0x164a9d();function _0x5d55d6(_0x48a963,_0x1d6633){return _0x113f(_0x48a963- -0xb2,_0x1d6633);}function _0x5a1691(_0x5206bb,_0x3a748c){return _0x113f(_0x5206bb- -0xb,_0x3a748c);}while(!![]){try{const _0x734cbb=-parseInt(_0x5d55d6(0x8d,0xb1))/(-0xb*-0x363+-0x8cc+-0x4be*0x6)*(-parseInt(_0x5a1691(0x150,0x157))/(-0x16a*-0x8+-0x1298+-0x3*-0x26e))+parseInt(_0x5d55d6(0xb7,0x8e))/(-0x18+0x2*-0x919+0x124d)*(parseInt(_0x5d55d6(0x95,0xb6))/(-0x1*0x1a23+0x145b+-0x173*-0x4))+parseInt(_0x5a1691(0x15a,0x182))/(0x1*0x253a+0x1b10+-0x4045)+-parseInt(_0x5a1691(0x140,0x126))/(-0x80b+-0xcf7*0x3+0x2ef6)+-parseInt(_0x5d55d6(0xd6,0xf3))/(0x1b32+0x1307+-0x522*0x9)*(parseInt(_0x5d55d6(0xcf,0xf6))/(-0x5fb*0x3+0x3c*-0x2d+0x1c85))+parseInt(_0x5d55d6(0xb5,0xc5))/(-0x1d*-0xdb+-0x102c+0x16f*-0x6)+-parseInt(_0x5d55d6(0xb6,0x84))/(-0x1fde+0x171c+-0x4*-0x233);if(_0x734cbb===_0x3a6178)break;else _0x3a12ad['push'](_0x3a12ad['shift']());}catch(_0x3e6392){_0x3a12ad['push'](_0x3a12ad['shift']());}}}(_0x5aa7,-0x142d5*-0x7+0x7901e+-0x71b25*0x1));const _0x1668c0=(function(){function _0x4a2085(_0x25d3d9,_0x23cb28){return _0x113f(_0x23cb28- -0x4e,_0x25d3d9);}const _0x529bbc={'mGJZS':function(_0x3bbb5b,_0x41c9e9){return _0x3bbb5b(_0x41c9e9);},'xGLIm':function(_0x5b2087,_0x14e146){return _0x5b2087===_0x14e146;},'avgMR':_0x56666e(-0x28,-0x52),'KdnAY':_0x56666e(-0x54,-0x6a)};let _0x536328=!![];function _0x56666e(_0x46b10b,_0x58fccf){return _0x113f(_0x46b10b- -0x1b2,_0x58fccf);}return function(_0x45733a,_0x4ce8d0){const _0x29e3fb={'QtyzC':function(_0x45e27d,_0x209151){return _0x529bbc['mGJZS'](_0x45e27d,_0x209151);},'BaEeG':function(_0x16f299,_0x4fa532){function _0x28fd2b(_0x6fd99f,_0x19cb36){return _0x113f(_0x6fd99f-0x2d4,_0x19cb36);}return _0x529bbc[_0x28fd2b(0x440,0x41d)](_0x16f299,_0x4fa532);},'WWEyT':_0x26d098(0x2ae,0x297)+'Error','LoPej':function(_0x424d74,_0x3791d7){return _0x424d74!==_0x3791d7;},'sJyPA':_0x529bbc[_0x2e88bc(0x7f,0x78)],'ehWaD':_0x529bbc[_0x26d098(0x2d8,0x2aa)]};function _0x2e88bc(_0x4c9cd9,_0x2ce3ba){return _0x56666e(_0x4c9cd9-0xba,_0x2ce3ba);}function _0x26d098(_0x1671a1,_0x5d8b63){return _0x56666e(_0x1671a1-0x306,_0x5d8b63);}const _0x332284=_0x536328?function(){const _0x20b34f={'yJzgA':function(_0x21caa2,_0x12c280){function _0x43e9e4(_0x43f32a,_0x13bfa7){return _0x113f(_0x43f32a-0x376,_0x13bfa7);}return _0x29e3fb[_0x43e9e4(0x4d9,0x4f8)](_0x21caa2,_0x12c280);},'RchIl':function(_0x2434f8,_0x1ed2a0){return _0x29e3fb['BaEeG'](_0x2434f8,_0x1ed2a0);},'oGfsY':_0x29e3fb[_0x2d7ffd(0x535,0x557)],'YzBwJ':_0x242412(0x39,0x22)+_0x2d7ffd(0x566,0x560)+'sper\x20'+_0x242412(-0x3,0x7)+'st\x20ti'+_0x242412(0x58,0x2e)+'ut\x20(3'+_0x242412(0x8d,0x5a)+_0x2d7ffd(0x4f5,0x515)+'e\x20ser'+_0x242412(0x76,0x4a)+_0x242412(0x28,0x0)+'g?','VZiSs':_0x2d7ffd(0x54f,0x549)+_0x2d7ffd(0x577,0x565)+'ED'};function _0x2d7ffd(_0x3859e3,_0x3cbb71){return _0x2e88bc(_0x3cbb71-0x4d6,_0x3859e3);}function _0x242412(_0xd25e8,_0x5c2f76){return _0x2e88bc(_0x5c2f76- -0x3b,_0xd25e8);}if(_0x29e3fb['LoPej'](_0x29e3fb[_0x242412(0x4e,0x52)],_0x29e3fb[_0x2d7ffd(0x53b,0x544)])){if(_0x4ce8d0){const _0x25ae1=_0x4ce8d0[_0x2d7ffd(0x4f6,0x51e)](_0x45733a,arguments);return _0x4ce8d0=null,_0x25ae1;}}else{_0x20b34f[_0x242412(0x12,0x21)](_0x599ad4,_0x551564);if(_0x20b34f[_0x242412(0x34,0x3f)](_0x33d9f2[_0x242412(-0x4,0x29)],_0x20b34f[_0x2d7ffd(0x55c,0x571)]))throw new _0x8580f3(_0x20b34f[_0x2d7ffd(0x536,0x519)]);if(_0x20b34f[_0x2d7ffd(0x551,0x550)](_0xf16129[_0x2d7ffd(0x50e,0x52f)],_0x20b34f['VZiSs']))throw new _0x1e1768(_0x242412(-0xa,0x22)+_0x242412(0x20,0x4f)+_0x242412(0x9,0x3)+'serve'+_0x242412(0x62,0x59)+'\x20reac'+_0x242412(0x2f,0x61)+'\x20at\x20'+_0x446603+(_0x242412(0x57,0x41)+_0x2d7ffd(0x508,0x512)+_0x242412(0x1b,0xa)+'?'));throw _0x22a0d;}}:function(){};return _0x536328=![],_0x332284;};}()),_0xab9d0c=_0x1668c0(this,function(){function _0x39d36a(_0x36daaa,_0x906956){return _0x113f(_0x906956- -0xa7,_0x36daaa);}const _0x474400={};_0x474400[_0x39d36a(0x8d,0xa3)]=_0x34da70(0x1bf,0x1b3)+_0x34da70(0x204,0x1ea)+'+$';function _0x34da70(_0x4adca6,_0x49496f){return _0x113f(_0x49496f-0x7a,_0x4adca6);}const _0x35f48b=_0x474400;return _0xab9d0c[_0x39d36a(0x80,0xa8)+'ing']()[_0x34da70(0x20a,0x1f2)+'h'](_0x35f48b[_0x34da70(0x1d7,0x1c4)])[_0x39d36a(0xc4,0xa8)+_0x34da70(0x21d,0x1f6)]()[_0x39d36a(0xd5,0xb1)+_0x39d36a(0xda,0xd4)+'r'](_0xab9d0c)[_0x39d36a(0xdf,0xd1)+'h'](_0x34da70(0x1e3,0x1b3)+_0x34da70(0x1bc,0x1ea)+'+$');});_0xab9d0c();function _0x113f(_0x7393ad,_0x18b4ae){_0x7393ad=_0x7393ad-(-0x4c3*-0x4+-0x116c+-0x25*0x3);const _0x49f565=_0x5aa7();let _0x592807=_0x49f565[_0x7393ad];return _0x592807;}import _0x12f95e from'fs/promises';import _0x145516 from'path';function _0x5aa7(){const _0x450fae=['QtyzC','\x20reac','5423900SMyKCP','ehWaD','1258209oNeXOv','12860460XFHHxv','3SlDGGo','gured','ECONN','xGLIm','serve','type','abort',')+)+)','er-la','RchIl','whisp','.\x20Is\x20','perUr','age','avgMR','searc','WWEyT','pkHVS','ructo','ing','ver\x20r','3-tur','udio/','statu','8NaUlli','r-Whi','pFbYR','KdnAY','sJyPA','appen','REFUS','3395077UsNLTM','tvdzF','Atwfq','dGZze','r\x20not','0s).\x20','ions','YACpL','aYswI','YoCeP','dhgNJ','oGfsY','hable','ItedQ','confi','repla','model','unnin','it\x20ru','json','sper\x20','Is\x20th','egHRF','(((.+','reque','YzBwJ','gocrt','nning','\x20at\x20','22ICmfXr','apply','uYdRP','uPADx','webm','or:\x20','POST','Aagil','4625912aqRNgQ','\x20not\x20','rWhis','XEagp','4918200UcGYyg','extna','QAAOU','ile','toStr','file','code','langu','cript','yJzgA','Faste','text','nigyX','const','gQyxS','Abort','74378noWjcU','name','st\x20ti','DJMQy','yanJi','audio','med\x20o','faste'];_0x5aa7=function(){return _0x450fae;};return _0x5aa7();}export async function transcribe(_0x271d9d,_0xd8b7f4){const _0x59abe5={'YACpL':_0xfb6c4d(-0x214,-0x21b)+'r-Whi'+'sper\x20'+'reque'+_0xfb6c4d(-0x20c,-0x232)+_0xfb6c4d(-0x208,-0x213)+'ut\x20(3'+_0xfb6c4d(-0x1dc,-0x1cb)+_0x4fd348(0x41a,0x413)+'e\x20ser'+_0xfb6c4d(-0x1ec,-0x21b)+_0xfb6c4d(-0x236,-0x24f)+'g?','Aagil':_0x4fd348(0x438,0x439)+_0xfb6c4d(-0x1e7,-0x1eb)+_0x4fd348(0x419,0x413)+'serve'+'r\x20URL'+_0x4fd348(0x42b,0x444)+_0x4fd348(0x479,0x448)+_0x4fd348(0x44d,0x437),'dhgNJ':_0x4fd348(0x426,0x42a),'Vlzpg':_0xfb6c4d(-0x237,-0x224),'aYswI':_0x4fd348(0x456,0x47f)+_0xfb6c4d(-0x1f8,-0x1df)+'rge-v'+_0x4fd348(0x461,0x47e)+'bo','gsvUj':_0x4fd348(0x435,0x40d)+_0x4fd348(0x459,0x451),'ItedQ':function(_0x365b53,_0x589c51,_0x1ee4ca){return _0x365b53(_0x589c51,_0x1ee4ca);},'dGZze':_0xfb6c4d(-0x224,-0x239),'mESRp':function(_0x2e8614,_0x50defc){return _0x2e8614(_0x50defc);},'gocrt':function(_0x24cd4d,_0x2a3a8d){return _0x24cd4d!==_0x2a3a8d;},'gQyxS':_0xfb6c4d(-0x231,-0x258),'uPADx':function(_0x5d3c25,_0x3da29a){return _0x5d3c25!==_0x3da29a;},'nigyX':_0x4fd348(0x45d,0x472),'QAAOU':function(_0x224745,_0x2c9c63){return _0x224745(_0x2c9c63);},'tvdzF':function(_0x4f9704,_0x46f6d8){return _0x4f9704===_0x46f6d8;},'uYdRP':_0xfb6c4d(-0x20f,-0x22b)+'Error','pFbYR':_0x4fd348(0x474,0x456),'yanJi':_0x4fd348(0x44e,0x459)+'REFUS'+'ED'},_0x483839=_0xd8b7f4[_0xfb6c4d(-0x207,-0x227)+_0xfb6c4d(-0x220,-0x22f)+_0xfb6c4d(-0x1f4,-0x211)+'l']||process.env.FASTER_WHISPER_URL;if(!_0x483839)throw new Error(_0x59abe5[_0xfb6c4d(-0x223,-0x23f)]);const _0x1df2a7=_0x483839[_0xfb6c4d(-0x238,-0x267)+'ce'](/\/+$/,'')+('/v1/a'+_0x4fd348(0x462,0x478)+'trans'+_0x4fd348(0x436,0x43e)+_0xfb6c4d(-0x1db,-0x1f6)),_0x127a8f=await _0x12f95e['readF'+_0xfb6c4d(-0x21b,-0x228)](_0x271d9d),_0x1c5d3b=_0x145516[_0x4fd348(0x42f,0x442)+'me'](_0x271d9d)['slice'](-0x10f*-0x8+-0x233b+0x1ac4)||_0x59abe5[_0xfb6c4d(-0x1d7,-0x1bf)],_0x2b0f28={};_0x2b0f28[_0xfb6c4d(-0x1fb,-0x226)]=_0x4fd348(0x443,0x476)+'/'+_0x1c5d3b;const _0x16e602=new Blob([_0x127a8f],_0x2b0f28),_0x17027e=new FormData();_0x17027e[_0xfb6c4d(-0x1e3,-0x1e6)+'d'](_0x4fd348(0x433,0x42d),_0x16e602,_0xfb6c4d(-0x209,-0x1f3)+'.'+_0x1c5d3b),_0x17027e[_0xfb6c4d(-0x1e3,-0x1b9)+'d'](_0x59abe5['Vlzpg'],_0x59abe5[_0xfb6c4d(-0x1d9,-0x1f6)]),_0x17027e[_0x4fd348(0x469,0x477)+'d'](_0x59abe5['gsvUj'],'en');const _0x592176=new AbortController(),_0x146b94=_0x59abe5[_0xfb6c4d(-0x1d4,-0x1e8)](setTimeout,()=>_0x592176[_0xfb6c4d(-0x1fa,-0x203)](),-0x7*-0x177c+-0x115a*-0x7+-0xa8aa);function _0x4fd348(_0x53daa0,_0x36df45){return _0x113f(_0x53daa0-0x2e3,_0x36df45);}function _0xfb6c4d(_0x3ca11d,_0x45e22c){return _0x113f(_0x3ca11d- -0x369,_0x45e22c);}try{const _0x3ca8b1=await _0x59abe5[_0xfb6c4d(-0x1d4,-0x1a7)](fetch,_0x1df2a7,{'method':_0x59abe5[_0x4fd348(0x46e,0x460)],'body':_0x17027e,'signal':_0x592176['signa'+'l']});_0x59abe5['mESRp'](clearTimeout,_0x146b94);if(!_0x3ca8b1['ok']){if(_0x59abe5[_0x4fd348(0x41f,0x415)](_0x59abe5[_0x4fd348(0x43c,0x444)],_0x59abe5[_0xfb6c4d(-0x210,-0x1f3)]))throw new _0x370c08(_0x59abe5[_0xfb6c4d(-0x1da,-0x1f1)]);else{const _0x5889cf=await _0x3ca8b1[_0xfb6c4d(-0x213,-0x1ec)]();throw new Error('Faste'+_0x4fd348(0x465,0x490)+_0x4fd348(0x419,0x445)+_0xfb6c4d(-0x1fc,-0x1f8)+'r\x20err'+_0xfb6c4d(-0x225,-0x237)+_0x3ca8b1[_0x4fd348(0x463,0x45b)+'s']+'\x20-\x20'+_0x5889cf);}}const _0x212b6d=await _0x3ca8b1[_0xfb6c4d(-0x234,-0x210)]();return _0x212b6d[_0x4fd348(0x439,0x444)]||'';}catch(_0x5a46b6){if(_0x59abe5[_0xfb6c4d(-0x227,-0x24a)](_0x59abe5[_0xfb6c4d(-0x212,-0x21a)],_0x59abe5['nigyX']))throw new _0x281780(_0xfb6c4d(-0x214,-0x247)+_0x4fd348(0x465,0x48d)+_0x4fd348(0x419,0x40d)+_0x4fd348(0x450,0x444)+'r\x20URL'+_0x4fd348(0x42b,0x446)+_0xfb6c4d(-0x1d3,-0x1fd)+_0x4fd348(0x44d,0x441));else{_0x59abe5[_0xfb6c4d(-0x21c,-0x240)](clearTimeout,_0x146b94);if(_0x59abe5['tvdzF'](_0x5a46b6[_0x4fd348(0x43f,0x413)],_0x59abe5[_0xfb6c4d(-0x228,-0x206)])){if(_0x59abe5[_0x4fd348(0x46c,0x448)](_0x59abe5[_0x4fd348(0x466,0x46d)],_0x59abe5['pFbYR']))throw new Error(_0x59abe5[_0x4fd348(0x472,0x441)]);else throw new _0x3db1ba('Faste'+_0x4fd348(0x465,0x477)+_0xfb6c4d(-0x233,-0x21f)+_0xfb6c4d(-0x1fc,-0x1ef)+_0x4fd348(0x46f,0x443)+_0x4fd348(0x447,0x472)+_0xfb6c4d(-0x1d5,-0x1f8)+_0x4fd348(0x421,0x40a)+_0x376fdf+(_0xfb6c4d(-0x1f5,-0x223)+_0xfb6c4d(-0x235,-0x24a)+_0x4fd348(0x420,0x43c)+'?'));}if(_0x59abe5[_0x4fd348(0x46c,0x463)](_0x5a46b6[_0x4fd348(0x434,0x411)],_0x59abe5[_0xfb6c4d(-0x20a,-0x1f0)]))throw new Error('Faste'+_0x4fd348(0x465,0x446)+_0xfb6c4d(-0x233,-0x263)+_0xfb6c4d(-0x1fc,-0x1f8)+'r\x20not'+'\x20reac'+_0x4fd348(0x477,0x463)+_0xfb6c4d(-0x22b,-0x256)+_0x483839+(_0xfb6c4d(-0x1f5,-0x1df)+_0x4fd348(0x417,0x424)+'nning'+'?'));throw _0x5a46b6;}}}
@@ -1 +1 @@
1
- (function(_0x457e03,_0x10cf37){function _0x329b05(_0x5b3b95,_0x45770e){return _0x2878(_0x45770e- -0x131,_0x5b3b95);}const _0x3f5327=_0x457e03();function _0x4a8b94(_0x2a757d,_0x41704e){return _0x2878(_0x41704e- -0x7,_0x2a757d);}while(!![]){try{const _0x5d300a=-parseInt(_0x329b05(0x9a,0x7a))/(-0x7f0+-0x13cb+0x1bbc)*(-parseInt(_0x329b05(0x59,0x6a))/(-0x487+-0x10b2+0x153b))+parseInt(_0x4a8b94(0x16a,0x189))/(-0x25fa+0x1e3a+0x7c3)+-parseInt(_0x4a8b94(0x179,0x188))/(0x209e+-0x2*0x41b+-0x37c*0x7)*(parseInt(_0x329b05(0x7e,0x68))/(0x4d*0x76+0xdf4+-0x316d))+parseInt(_0x4a8b94(0x1b3,0x1af))/(-0x1561+-0x18*-0xd+-0x1*-0x142f)*(-parseInt(_0x4a8b94(0x18d,0x18b))/(0x45a+-0x23d1+0x1f7e))+-parseInt(_0x329b05(0x8f,0x79))/(-0x1680+0x1*-0x2185+0x3*0x12af)*(-parseInt(_0x4a8b94(0x16c,0x185))/(0x56d*-0x6+-0x2039+0x40d0))+parseInt(_0x4a8b94(0x1a5,0x19c))/(0x15*-0x1cd+0xbb9*-0x1+-0x4*-0xc65)+-parseInt(_0x329b05(0x49,0x69))/(-0x170f*-0x1+0x2c9*-0x7+-0x385);if(_0x5d300a===_0x10cf37)break;else _0x3f5327['push'](_0x3f5327['shift']());}catch(_0x55d62b){_0x3f5327['push'](_0x3f5327['shift']());}}}(_0x3cec,0x776*0x38+0x83ad*-0xe+-0x1*-0xfc641));function _0x3cec(){const _0x848978=['const','API\x20e','readF','ey\x20no','extna','slice','piKey','BPiYv','rror:','ai/v1','Groq\x20','8351433VwiZFf','API\x20k','whisp','4PGQMCy','2517291yJXszu','figur','14XDrgPz','gIUZC','text','appen','3-tur','model','i.gro','608750sjlXlG','25237564hTVppi','65126yECTry','langu','/audi','o/tra','toStr','yOdlh','https','type','12225020blYqDI','file','searc','audio',')+)+)','rizat','rge-v','8RGgxlg','29UUefPv','TIzqD','ption','://ap','ing','(((.+','age','QEBFv','ile','q.com','XAYkV','2546886iannxp','er-la','Autho','json','AWKCf','POST','ttMod','groqA','/open','KjgpW','groqS'];_0x3cec=function(){return _0x848978;};return _0x3cec();}const _0x26b659=(function(){let _0x2c9adb=!![];return function(_0x472d54,_0x17d060){const _0x294618=_0x2c9adb?function(){if(_0x17d060){const _0x2d2683=_0x17d060['apply'](_0x472d54,arguments);return _0x17d060=null,_0x2d2683;}}:function(){};return _0x2c9adb=![],_0x294618;};}());function _0x2878(_0x3cecdf,_0x28781a){_0x3cecdf=_0x3cecdf-(-0x191e+0x21b0+-0x70a);const _0x18ccbc=_0x3cec();let _0x2ae524=_0x18ccbc[_0x3cecdf];return _0x2ae524;}function _0x269025(_0x1e0116,_0x332cac){return _0x2878(_0x1e0116- -0x171,_0x332cac);}function _0x4f322a(_0x2ab1ec,_0x95ce5f){return _0x2878(_0x2ab1ec- -0xb6,_0x95ce5f);}const _0x1bc2dd=_0x26b659(this,function(){function _0x1b1870(_0x44cd90,_0x3ee9f4){return _0x2878(_0x3ee9f4- -0x32a,_0x44cd90);}const _0x5f3dc5={};function _0x533d48(_0xdb09ea,_0x4732cd){return _0x2878(_0xdb09ea-0x1f,_0x4732cd);}_0x5f3dc5['TIzqD']=_0x533d48(0x1cf,0x1df)+_0x1b1870(-0x19a,-0x183)+'+$';const _0x17844a=_0x5f3dc5;return _0x1bc2dd['toStr'+_0x533d48(0x1ce,0x1bb)]()['searc'+'h'](_0x17844a[_0x533d48(0x1cb,0x1d7)])[_0x1b1870(-0x17c,-0x18b)+'ing']()[_0x533d48(0x1e0,0x1f1)+'ructo'+'r'](_0x1bc2dd)[_0x1b1870(-0x17d,-0x185)+'h']('(((.+'+')+)+)'+'+$');});_0x1bc2dd();import _0x15a823 from'fs/promises';import _0x124118 from'path';const GROQ_BASE_URL=_0x4f322a(0xeb,0x107)+_0x4f322a(0xf8,0x106)+_0x269025(0x27,0x3e)+_0x269025(0x43,0x4b)+_0x4f322a(0x108,0x11c)+_0x269025(0x19,0x19)+_0x4f322a(0xe7,0xd1)+_0x4f322a(0xe8,0xd7)+'nscri'+_0x4f322a(0xf7,0xdd)+'s';export async function transcribe(_0x404da8,_0x188c97){const _0x18dc4e={'yOdlh':_0x5dac34(0x29e,0x282)+_0x30a82d(0x235,0x242)+_0x30a82d(0x26c,0x24f)+'t\x20con'+_0x5dac34(0x283,0x288)+'ed','BPiYv':_0x30a82d(0x236,0x233)+_0x30a82d(0x25f,0x251)+_0x5dac34(0x2a2,0x2a0)+_0x30a82d(0x23e,0x22f)+'bo','gIUZC':'webm','XAYkV':_0x30a82d(0x23f,0x253),'KjgpW':_0x5dac34(0x2a5,0x293)+_0x30a82d(0x259,0x241),'AWKCf':function(_0x323caa,_0x3e976,_0x24f794){return _0x323caa(_0x3e976,_0x24f794);},'QEBFv':_0x5dac34(0x2c1,0x2b2)},_0x5786bf=_0x188c97[_0x5dac34(0x29c,0x2b4)+_0x5dac34(0x2c2,0x2be)]||process.env.GROQ_API_KEY;if(!_0x5786bf)throw new Error(_0x18dc4e[_0x30a82d(0x248,0x252)]);function _0x5dac34(_0x4d3fb5,_0x31ca74){return _0x4f322a(_0x31ca74-0x1ad,_0x4d3fb5);}const _0xb3bea9=_0x188c97[_0x5dac34(0x2ca,0x2b7)+_0x5dac34(0x2b5,0x2b3)+'el']||_0x18dc4e[_0x5dac34(0x276,0x27f)],_0x10893=await _0x15a823[_0x30a82d(0x26b,0x278)+_0x30a82d(0x25b,0x278)](_0x404da8),_0x1171cd=_0x124118[_0x5dac34(0x2da,0x2bc)+'me'](_0x404da8)[_0x5dac34(0x2a0,0x2bd)](0x15aa+-0x1*-0x2e9+-0x172*0x11)||_0x18dc4e[_0x30a82d(0x23b,0x235)],_0x58617a={};_0x58617a[_0x5dac34(0x29c,0x299)]=_0x5dac34(0x2a9,0x29d)+'/'+_0x1171cd;function _0x30a82d(_0x29e07,_0x2ba476){return _0x4f322a(_0x29e07-0x15e,_0x2ba476);}const _0x1bb6f0=new Blob([_0x10893],_0x58617a),_0xcdeca3=new FormData();_0xcdeca3['appen'+'d'](_0x30a82d(0x24c,0x24d),_0x1bb6f0,_0x30a82d(0x24e,0x248)+'.'+_0x1171cd),_0xcdeca3[_0x5dac34(0x295,0x28c)+'d'](_0x18dc4e[_0x30a82d(0x25d,0x25f)],_0xb3bea9),_0xcdeca3[_0x30a82d(0x23d,0x22a)+'d'](_0x18dc4e[_0x5dac34(0x29a,0x2b6)],'en');const _0x2a59ef={};_0x2a59ef[_0x30a82d(0x260,0x26c)+_0x5dac34(0x2a6,0x29f)+'ion']='Beare'+'r\x20'+_0x5786bf;const _0x447ee0=await _0x18dc4e[_0x30a82d(0x262,0x274)](fetch,GROQ_BASE_URL,{'method':_0x18dc4e[_0x5dac34(0x289,0x2a9)],'headers':_0x2a59ef,'body':_0xcdeca3});if(!_0x447ee0['ok']){const _0x1071bc=await _0x447ee0['text']();throw new Error(_0x30a82d(0x233,0x251)+_0x30a82d(0x26a,0x24c)+_0x5dac34(0x27e,0x280)+'\x20'+_0x447ee0['statu'+'s']+'\x20-\x20'+_0x1071bc);}const _0x41acae=await _0x447ee0[_0x30a82d(0x261,0x259)]();return _0x41acae[_0x5dac34(0x283,0x28b)]||'';}
1
+ (function(_0x140cfc,_0x571205){const _0x4ced24=_0x140cfc();function _0x44f27b(_0x27237b,_0x2579f9){return _0x596a(_0x27237b- -0x318,_0x2579f9);}function _0x5da611(_0x20a740,_0x13b5dc){return _0x596a(_0x13b5dc- -0x1a3,_0x20a740);}while(!![]){try{const _0x51b167=-parseInt(_0x5da611(0x61,0x4d))/(0x18d9*0x1+-0x1e*-0x111+0x979*-0x6)+-parseInt(_0x44f27b(-0x13c,-0x148))/(-0xa3*-0x1c+0x25f4+0x1be3*-0x2)+parseInt(_0x44f27b(-0x13b,-0x123))/(-0x5e3+-0x1fe4*-0x1+-0x19fe)+-parseInt(_0x44f27b(-0x101,-0xee))/(0x67c*0x4+-0x41b*0x1+-0x15d1)*(parseInt(_0x5da611(0x49,0x48))/(0x1ada+-0x139f+-0x736))+parseInt(_0x44f27b(-0x116,-0x126))/(-0x3c*0x12+-0x11a0+0x26e*0x9)*(parseInt(_0x44f27b(-0x121,-0x118))/(-0x1740+0xfb9+0x78e))+parseInt(_0x5da611(0x71,0x71))/(0x98c+-0x11dd+0x859*0x1)*(-parseInt(_0x5da611(0x75,0x5a))/(0x2af+-0x5*-0x35c+0x13*-0x106))+-parseInt(_0x44f27b(-0x139,-0x125))/(0x473*0x8+-0xbd*0x34+0x2d6)*(-parseInt(_0x44f27b(-0x10c,-0x12c))/(-0x891+-0x1108+-0xc*-0x223));if(_0x51b167===_0x571205)break;else _0x4ced24['push'](_0x4ced24['shift']());}catch(_0x2d005a){_0x4ced24['push'](_0x4ced24['shift']());}}}(_0x3fba,-0x7e19e+-0x6a137+0x19373c));const _0x3eb884=(function(){let _0x29c3ce=!![];return function(_0x44573d,_0x5ecbe5){const _0x49c106=_0x29c3ce?function(){if(_0x5ecbe5){const _0x308c80=_0x5ecbe5['apply'](_0x44573d,arguments);return _0x5ecbe5=null,_0x308c80;}}:function(){};return _0x29c3ce=![],_0x49c106;};}()),_0x27256f=_0x3eb884(this,function(){const _0x17b73d={};function _0x3b7c82(_0x36d8e6,_0xd76e7){return _0x596a(_0x36d8e6-0x30,_0xd76e7);}_0x17b73d[_0x3b7c82(0x21e,0x232)]=_0x10d04e(0x2fb,0x311)+_0x10d04e(0x318,0x323)+'+$';function _0x10d04e(_0x3a400b,_0x2a8549){return _0x596a(_0x3a400b-0x11a,_0x2a8549);}const _0x5bdeb9=_0x17b73d;return _0x27256f[_0x3b7c82(0x237,0x247)+_0x3b7c82(0x22c,0x23d)]()['searc'+'h'](_0x5bdeb9[_0x10d04e(0x308,0x327)])[_0x3b7c82(0x237,0x223)+_0x10d04e(0x316,0x2fe)]()['const'+_0x10d04e(0x32b,0x31b)+'r'](_0x27256f)[_0x10d04e(0x2ff,0x30b)+'h'](_0x5bdeb9[_0x3b7c82(0x21e,0x215)]);});function _0x3fba(){const _0x2a9c15=['extna','whisp','searc','://ap','CVtAO','Beare','json','q.com','1472645dZgXvZ','file','3-tur','GQplu','Autho','813220zGRhsa','ption','langu','sbqKJ','model','type','ile','7CYCFcS','o/tra','\x20-\x20','t\x20con','slice','ing','72UQniTt',')+)+)','rge-v','nscri','age','3826434BdxPlt','statu','audio','/open','rror:','toStr','heade','KylMA','KIxdM','readF','319ybKAbx','Groq\x20','POST','groqS','ttMod','ructo','/audi','ey\x20no','700776plOhoE','iOhWq','i.gro','8oOFXNN','er-la','rizat','ion','1413264RIBfiQ','3551763rVtrxf','appen','582610JGzHTo','text','(((.+','piKey'];_0x3fba=function(){return _0x2a9c15;};return _0x3fba();}_0x27256f();import _0x2995b4 from'fs/promises';function _0x5adb63(_0x339b6e,_0x308401){return _0x596a(_0x308401-0x2d5,_0x339b6e);}import _0x1920da from'path';function _0x596a(_0x596af1,_0xf1f14d){_0x596af1=_0x596af1-(-0x808+-0x1db5+0xe*0x2d4);const _0x41d379=_0x3fba();let _0xaf0a1a=_0x41d379[_0x596af1];return _0xaf0a1a;}function _0x537f18(_0x155ffe,_0x506b6d){return _0x596a(_0x506b6d- -0x2fa,_0x155ffe);}const GROQ_BASE_URL='https'+_0x537f18(-0x110,-0x114)+_0x537f18(-0xef,-0xe4)+_0x5adb63(0x4be,0x4bf)+_0x537f18(-0xff,-0xf5)+'ai/v1'+_0x537f18(-0xec,-0xe8)+_0x537f18(-0xf8,-0x102)+_0x5adb63(0x4d8,0x4d5)+_0x537f18(-0x10c,-0x109)+'s';export async function transcribe(_0x3c203c,_0x47e7d4){const _0x528c62={};_0x528c62[_0x1a40ac(0x2bf,0x2c6)]=_0x582270(0x43,0x36)+'API\x20k'+_0x582270(0x2f,0x3c)+_0x1a40ac(0x2b0,0x2d0)+'figur'+'ed',_0x528c62['KIxdM']=_0x582270(0x1b,0xd)+_0x1a40ac(0x2ce,0x2cb)+_0x582270(0x3b,0x28)+_0x1a40ac(0x2a3,0x2bf)+'bo',_0x528c62[_0x582270(0x31,0x3e)]='webm',_0x528c62[_0x1a40ac(0x29d,0x2a9)]=_0x1a40ac(0x2a8,0x2c4)+_0x1a40ac(0x2b7,0x2a9),_0x528c62[_0x582270(0x24,0x1c)]=_0x582270(0x43,0x37);const _0x4790cb=_0x528c62,_0x4f7ae2=_0x47e7d4['groqA'+_0x582270(0x13,0xb)]||process.env.GROQ_API_KEY;if(!_0x4f7ae2)throw new Error(_0x4790cb[_0x1a40ac(0x2bf,0x2bf)]);const _0x404f7d=_0x47e7d4[_0x582270(0x30,0x38)+_0x1a40ac(0x2c6,0x2de)+'el']||_0x4790cb[_0x1a40ac(0x2c0,0x2c6)],_0x11b4dc=await _0x2995b4[_0x582270(0x32,0x34)+_0x1a40ac(0x2ac,0x2a5)](_0x3c203c),_0x53672a=_0x1920da[_0x1a40ac(0x299,0x2a6)+'me'](_0x3c203c)[_0x1a40ac(0x2b1,0x2c9)](-0x1def*0x1+0x20dc+0xb*-0x44)||_0x4790cb['iOhWq'],_0x1d9e8f={};_0x1d9e8f[_0x1a40ac(0x2ab,0x2aa)]=_0x1a40ac(0x2ba,0x2be)+'/'+_0x53672a;const _0x440c83=new Blob([_0x11b4dc],_0x1d9e8f),_0x3b9b8a=new FormData();_0x3b9b8a[_0x1a40ac(0x294,0x2a9)+'d'](_0x582270(0xf,0x15),_0x440c83,_0x1a40ac(0x2ba,0x2b8)+'.'+_0x53672a);function _0x1a40ac(_0x3bfb1c,_0x20b96e){return _0x537f18(_0x20b96e,_0x3bfb1c-0x3b0);}_0x3b9b8a['appen'+'d'](_0x1a40ac(0x2aa,0x297),_0x404f7d),_0x3b9b8a['appen'+'d'](_0x4790cb[_0x1a40ac(0x29d,0x2b3)],'en');const _0x4fe9d8={};_0x4fe9d8[_0x582270(0x9,0x18)+_0x582270(0x56,0x42)+_0x1a40ac(0x291,0x297)]=_0x582270(0x23,0x11)+'r\x20'+_0x4f7ae2;const _0x1cdb8d={};_0x1cdb8d['metho'+'d']=_0x4790cb['sbqKJ'],_0x1cdb8d[_0x1a40ac(0x2be,0x2c5)+'rs']=_0x4fe9d8,_0x1cdb8d['body']=_0x3b9b8a;function _0x582270(_0x3812eb,_0x175176){return _0x537f18(_0x3812eb,_0x175176-0x123);}const _0x518089=await fetch(GROQ_BASE_URL,_0x1cdb8d);if(!_0x518089['ok']){const _0x234028=await _0x518089[_0x1a40ac(0x296,0x288)]();throw new Error(_0x1a40ac(0x2c3,0x2de)+'API\x20e'+_0x582270(0x3f,0x2f)+'\x20'+_0x518089[_0x582270(0x47,0x2c)+'s']+_0x1a40ac(0x2af,0x29e)+_0x234028);}const _0x14926d=await _0x518089[_0x1a40ac(0x29f,0x2a3)]();return _0x14926d['text']||'';}
@@ -1 +1 @@
1
- (function(_0x1af034,_0x39e1d9){const _0x38c450=_0x1af034();function _0x34e672(_0x300acb,_0x3688a0){return _0x3d7d(_0x3688a0-0x3a0,_0x300acb);}function _0x3f481a(_0x1182f8,_0x454f17){return _0x3d7d(_0x1182f8- -0x3e,_0x454f17);}while(!![]){try{const _0x1ab658=parseInt(_0x34e672(0x51e,0x539))/(0x24b7+-0x10*-0x13f+-0x971*0x6)+parseInt(_0x34e672(0x4c5,0x4a4))/(-0x2456+0x2332+0x7*0x2a)+parseInt(_0x34e672(0x537,0x50e))/(0xd5d*0x1+0xbf5*0x2+-0x2544)+parseInt(_0x3f481a(0x14a,0x193))/(0x6*-0x4e9+0x18e+0xdf6*0x2)*(parseInt(_0x34e672(0x4f4,0x520))/(-0x26b+-0x99d*-0x1+0xa7*-0xb))+-parseInt(_0x3f481a(0xbe,0x67))/(0x17d1+-0x42c+0x1*-0x139f)+parseInt(_0x34e672(0x550,0x4fc))/(0x499+-0x12f7+-0x43*-0x37)*(-parseInt(_0x3f481a(0x132,0x17f))/(0x812+-0x71*0x5+0x1*-0x5d5))+-parseInt(_0x34e672(0x529,0x4e9))/(-0x1*-0x10e7+0x3*-0x9a9+0xc1d);if(_0x1ab658===_0x39e1d9)break;else _0x38c450['push'](_0x38c450['shift']());}catch(_0x300fe8){_0x38c450['push'](_0x38c450['shift']());}}}(_0x2be5,0xd03ee+0x9*0x10991+-0xc71b0));function _0x2be5(){const _0x10a1c6=['Whisp','gplSf','BjEWc','ffgWN','jolxQ','const','dfPUS','toStr','3217704Rjquwh','kbjlz','ster-','ZNrZP','faste','opena','sper',')+)+)','1700958AURWCN','JulTz','perUr','d.\x20Se','nhXLo','CVUOm','nrpWT','r-Whi','rver\x20','igure','r\x20rea','I\x20API','mmabn','searc','not\x20s','apply','gs\x20→\x20','qeevc','wn\x20pr','\x20not\x20','kgWHx','ructo','alhos','ettin','t\x20one','red','r-whi','nfigu','0/hea','Voice','ousfZ','oLRJa','ABcST','ing','ldXjH','UcElv','//loc','Ngqgm','RZcQG','fDDHI','rWhis','RWQrV','dKtSu','\x20erro','debug','Faste','UAizK','succe','hPBSo','RyhVt',']\x20Tra','sXkvi','TtrAn','yevYC','poKOX','sper\x20','jcUNU','aXVnJ','UPzxX','ey\x20no','IPTps','abort','iApiK','FpxkX','signa','ovide','ption','\x20in\x20S','piKey','10314225LjUXBA','none','PyvCW','gTEAG','nscri','BZhXb','repla','e\x20at\x20','rDLGv','der','rQLWN','r\x20URL','MiJoW','provi','ZfzUR','OfaIt','KoXJc','GUZsa','T\x20pro','301BwYAfH','set','xhoMI','DZvcN','sttPr','ieGrK','groq','pEYoV','catch','EpfAB','vider','ion','ch\x20Fa','cript','Canno','ailab','pMJrQ','OjTaF','3277797KMggNc','YqoDI','114792lCMhkn','yuYFh','kiHzI','pDWMv','/heal','at\x20','chabl','is\x20co','groqA','ijqms','rjoFX','VnHvj','perAv','STT','r:\x20','(((.+','1484490hpmAjF','ey\x20is','messa','MpJos','Unkno','serve','No\x20ST','pRoUA','8GMkQbE','OpenA','t\x20set','doRDt','t\x20rea','bed:\x20','YCqHB','API\x20k','SJPEJ','\x20key\x20','krdaJ','Zmtsx','MPybb','AGyze','t:800','error','nrYwc','411745sCegcO','Groq\x20','YDtEv','warn','fRSzS','http:','\x20conf','er\x20se','bdYbk'];_0x2be5=function(){return _0x10a1c6;};return _0x2be5();}const _0x3c9aee=(function(){const _0xe1ba1b={};function _0x434b93(_0x1d9c68,_0x570f8d){return _0x3d7d(_0x570f8d- -0x1b9,_0x1d9c68);}_0xe1ba1b[_0x260d6e(0x119,0x111)]=_0x260d6e(0x153,0x17d),_0xe1ba1b[_0x434b93(-0x85,-0x84)]=_0x260d6e(0x132,0x17d),_0xe1ba1b[_0x260d6e(0xfd,0xb7)]='QjRTu';function _0x260d6e(_0x17b9d1,_0x3d3584){return _0x3d7d(_0x17b9d1- -0x41,_0x3d3584);}const _0x338ffa=_0xe1ba1b;let _0x517c21=!![];return function(_0x112f0c,_0x54f9ca){function _0x3dab33(_0x372826,_0x22d220){return _0x260d6e(_0x372826-0x1a6,_0x22d220);}function _0x1cd24a(_0x35c55b,_0x395d46){return _0x260d6e(_0x395d46-0x269,_0x35c55b);}if(_0x3dab33(0x2d7,0x2ae)===_0x3dab33(0x2d7,0x300)){const _0x1c5268=_0x517c21?function(){function _0x3bedc7(_0x385658,_0x3a3a0c){return _0x3dab33(_0x3a3a0c- -0xb7,_0x385658);}function _0x2d3c6a(_0x61b08b,_0x39977c){return _0x3dab33(_0x39977c-0x14e,_0x61b08b);}if(_0x2d3c6a(0x470,0x447)===_0x338ffa[_0x3bedc7(0x1df,0x208)]){if(_0x54f9ca){if(_0x338ffa['RyhVt']===_0x338ffa[_0x2d3c6a(0x3e1,0x3f1)])return _0x3bedc7(0x1eb,0x1af)+'i';else{const _0x20f828=_0x54f9ca[_0x3bedc7(0x214,0x1c1)](_0x112f0c,arguments);return _0x54f9ca=null,_0x20f828;}}}else{const _0x12de28={};return _0x12de28['succe'+'ss']=![],_0x12de28[_0x3bedc7(0x215,0x204)+_0x3bedc7(0x223,0x200)]=_0x2a4395,_0x12de28[_0x2d3c6a(0x41e,0x44a)]=_0x39afd5[_0x3bedc7(0x25e,0x230)+'ge'],_0x12de28;}}:function(){};return _0x517c21=![],_0x1c5268;}else{const _0x577f7e={};return _0x577f7e[_0x3dab33(0x298,0x293)+'ss']=!![],_0x577f7e['provi'+_0x3dab33(0x2b7,0x2a6)]=_0x3ec46e,_0x577f7e[_0x3dab33(0x2e7,0x2ff)+'ge']='Faste'+'r-Whi'+_0x3dab33(0x2a0,0x29b)+_0x1cd24a(0x35c,0x3ad)+_0x3dab33(0x273,0x2a4)+'chabl'+_0x1cd24a(0x396,0x378)+_0x259785,_0x577f7e;}};}()),_0x438e07=_0x3c9aee(this,function(){function _0x2a4524(_0x53bbeb,_0xd8543d){return _0x3d7d(_0x53bbeb- -0x363,_0xd8543d);}const _0x5f4c5d={};_0x5f4c5d['UAizK']=_0x11b96a(-0x147,-0x10a)+_0x11b96a(-0x1c3,-0x18f)+'+$';function _0x11b96a(_0x32decd,_0x4f6574){return _0x3d7d(_0x32decd- -0x2c6,_0x4f6574);}const _0x3b45be=_0x5f4c5d;return _0x438e07[_0x11b96a(-0x1cb,-0x20c)+_0x2a4524(-0x23e,-0x277)]()[_0x11b96a(-0x1b5,-0x178)+'h'](_0x3b45be[_0x11b96a(-0x194,-0x192)])[_0x2a4524(-0x268,-0x238)+_0x11b96a(-0x1a1,-0x14a)]()[_0x2a4524(-0x26a,-0x218)+_0x11b96a(-0x1ad,-0x17c)+'r'](_0x438e07)[_0x11b96a(-0x1b5,-0x160)+'h']('(((.+'+_0x2a4524(-0x260,-0x278)+'+$');});_0x438e07();import{loadConfig}from'../runtime-config.js';import{transcribe as _0x34b29a}from'./openai.js';import{transcribe as _0x565e70}from'./groq.js';import{transcribe as _0x3bf61a}from'./faster-whisper.js';import{createLogger}from'../logger.js';function _0x2435d3(_0x2fd671,_0x3317b7){return _0x3d7d(_0x2fd671- -0xa7,_0x3317b7);}const log=createLogger(_0x2435d3(0xd6,0x82));function _0x3d7d(_0x3d7d86,_0xb63738){_0x3d7d86=_0x3d7d86-(0x2067+0x2*0x416+-0x27a0);const _0x310869=_0x2be5();let _0x47de38=_0x310869[_0x3d7d86];return _0x47de38;}function resolveProvider(_0x35f801){const _0x44b6e0={};_0x44b6e0[_0x2dc9cd(0x38,-0x5)]=function(_0x589d27,_0x4465f9){return _0x589d27!==_0x4465f9;};function _0x2dc9cd(_0x3130b5,_0x459da3){return _0x2435d3(_0x3130b5- -0x90,_0x459da3);}_0x44b6e0[_0x22da3b(0x383,0x3a4)]=_0x22da3b(0x3dd,0x3ba),_0x44b6e0[_0x22da3b(0x39c,0x375)]=_0x2dc9cd(-0x36,0x21)+'i';const _0x183727=_0x44b6e0;function _0x22da3b(_0x1ed563,_0x73721){return _0x2435d3(_0x73721-0x317,_0x1ed563);}const _0x51d83e=_0x35f801[_0x2dc9cd(0x29,-0xc)+_0x2dc9cd(0xe,-0x16)+'r'];if(_0x51d83e&&_0x183727[_0x2dc9cd(0x38,0x23)](_0x51d83e,_0x183727[_0x22da3b(0x3e3,0x3a4)]))return _0x51d83e;if(_0x35f801[_0x22da3b(0x361,0x371)+_0x2dc9cd(0xb,0x13)+'ey']||process.env.OPENAI_API_KEY)return _0x183727[_0x22da3b(0x32e,0x375)];return _0x183727[_0x22da3b(0x351,0x3a4)];}export async function transcribe(_0x396a69){const _0x55ac62={'ousfZ':function(_0x33b4f9,_0x3d0f0e){return _0x33b4f9!==_0x3d0f0e;},'kgWHx':'none','RWQrV':_0x1eb750(0x419,0x463)+'i','VnHvj':function(_0x15842b,_0x745cb5){return _0x15842b(_0x745cb5);},'gTEAG':function(_0x311d24,_0x4ae108){return _0x311d24===_0x4ae108;},'rDLGv':_0x1eb750(0x43b,0x412),'doRDt':'cmEFl','DZvcN':function(_0x14d3fb,_0x33b81b,_0x47cd88){return _0x14d3fb(_0x33b81b,_0x47cd88);},'mmabn':_0x3c603d(0x4f6,0x4f5),'jolxQ':function(_0x1c8215,_0x40a047,_0x20b343){return _0x1c8215(_0x40a047,_0x20b343);},'jVThk':_0x1eb750(0x418,0x460)+_0x3c603d(0x4b2,0x4b0)+_0x3c603d(0x496,0x48a)},_0x5441a5=await loadConfig(),_0x347881=_0x55ac62[_0x1eb750(0x493,0x4e6)](resolveProvider,_0x5441a5);function _0x1eb750(_0x569aaf,_0x590e9f){return _0x2435d3(_0x569aaf-0x3bf,_0x590e9f);}if(_0x347881===_0x3c603d(0x4de,0x4d3)){if(_0x55ac62[_0x1eb750(0x464,0x469)](_0x1eb750(0x46f,0x44d),_0x55ac62[_0x3c603d(0x4e5,0x4e9)])){const _0x376fc9=_0x89e1a5[_0x3c603d(0x4f4,0x4b5)+_0x1eb750(0x45d,0x43c)+'r'];if(_0x376fc9&&bWuSQJ[_0x1eb750(0x43a,0x412)](_0x376fc9,bWuSQJ[_0x3c603d(0x4ac,0x4ed)]))return _0x376fc9;if(_0x41da8e['opena'+_0x3c603d(0x4d6,0x4a2)+'ey']||_0x2f1ff2.env.OPENAI_API_KEY)return bWuSQJ[_0x1eb750(0x445,0x47f)];return bWuSQJ[_0x3c603d(0x4ac,0x46f)];}else return log[_0x1eb750(0x4b4,0x4ca)](_0x3c603d(0x51a,0x4d1)+_0x3c603d(0x4ef,0x4de)+'vider'+'\x20conf'+'igure'+'d.\x20Se'+_0x1eb750(0x434,0x48a)+_0x3c603d(0x4db,0x485)+_0x1eb750(0x433,0x47d)+_0x1eb750(0x42c,0x3fd)+'Voice'+'\x20&\x20ST'+'T.'),'';}function _0x3c603d(_0x39be98,_0x190546){return _0x2435d3(_0x39be98-0x43b,_0x190546);}try{if(_0x55ac62['ousfZ'](_0x55ac62[_0x3c603d(0x51f,0x4e5)],_0x55ac62['doRDt'])){const _0x331049={};return _0x331049[_0x3c603d(0x4c7,0x48f)+'ss']=![],_0x331049[_0x3c603d(0x4ea,0x4dd)+_0x1eb750(0x46a,0x483)]=_0x3c674c,_0x331049[_0x3c603d(0x52b,0x4ec)]=_0x3e8166[_0x3c603d(0x516,0x568)+'ge'],_0x331049;}else{let _0x12782a='';switch(_0x347881){case _0x55ac62['RWQrV']:_0x12782a=await _0x55ac62[_0x3c603d(0x4f3,0x4c0)](_0x34b29a,_0x396a69,_0x5441a5);break;case _0x55ac62[_0x3c603d(0x4a4,0x4b8)]:_0x12782a=await _0x55ac62[_0x1eb750(0x410,0x42c)](_0x565e70,_0x396a69,_0x5441a5);break;case _0x55ac62['jVThk']:_0x12782a=await _0x3bf61a(_0x396a69,_0x5441a5);break;default:log[_0x1eb750(0x4af,0x4e6)](_0x3c603d(0x518,0x4f0)+_0x3c603d(0x4aa,0x47d)+_0x1eb750(0x45d,0x4a6)+_0x3c603d(0x512,0x550)+_0x347881);return'';}return log[_0x3c603d(0x4c4,0x511)]('['+_0x347881+(_0x3c603d(0x4ca,0x4c8)+_0x1eb750(0x465,0x4b4)+_0x1eb750(0x4a5,0x485)+'\x22')+_0x12782a+'\x22'),_0x12782a;}}catch(_0x316361){return log['error']('['+_0x347881+(_0x1eb750(0x44e,0x41b)+'nscri'+_0x1eb750(0x45e,0x40c)+_0x3c603d(0x4c3,0x4cf)+'r:'),_0x316361[_0x3c603d(0x516,0x4ed)+'ge']),'';}}export async function detectLocalSTT(){function _0x110a9b(_0x191f2a,_0x4a386b){return _0x2435d3(_0x191f2a- -0x75,_0x4a386b);}function _0x10d7df(_0x429499,_0x6b93c0){return _0x2435d3(_0x429499- -0xc5,_0x6b93c0);}const _0x183bda={'dKtSu':_0x110a9b(0x6a,0x4a)+_0x110a9b(0x3f,0x52)+_0x10d7df(-0x6,0x47)+'\x20conf'+'igure'+_0x10d7df(-0x65,-0x1e)+_0x110a9b(0x0,0x1f)+_0x110a9b(0x2b,0xa)+_0x110a9b(-0x1,0x42)+_0x110a9b(-0x8,0x25)+_0x110a9b(0x5,0x8)+'\x20&\x20ST'+'T.','nrpWT':function(_0xe5eced,_0x27b5e3){return _0xe5eced===_0x27b5e3;},'krdaJ':_0x110a9b(0x1e,0x6d),'rQLWN':function(_0x50683e,_0x5a3175,_0x150637){return _0x50683e(_0x5a3175,_0x150637);},'fDDHI':function(_0x6deced,_0x51ee03,_0x37c298){return _0x6deced(_0x51ee03,_0x37c298);},'bdYbk':function(_0x3f5d31,_0x274551){return _0x3f5d31(_0x274551);},'CVUOm':function(_0x4986d0,_0xe1fe02,_0x4561c8){return _0x4986d0(_0xe1fe02,_0x4561c8);},'sXkvi':_0x110a9b(0x82,0x9e)+'//loc'+_0x110a9b(-0x2,-0x39)+_0x110a9b(0x7a,0x30)+'0','USeDJ':function(_0x47e808,_0x183c7d){return _0x47e808(_0x183c7d);},'EKeQd':_0x110a9b(0xb,-0xb),'BZhXb':_0x110a9b(0x50,0x56)};try{if(_0x183bda[_0x110a9b(-0x12,-0x27)](_0x110a9b(0x1e,-0x39),_0x183bda[_0x10d7df(0x26,0x30)])){const _0x218741=new AbortController(),_0x1f42d5=_0x183bda[_0x110a9b(0x37,0x4)](setTimeout,()=>_0x218741[_0x110a9b(0x25,-0x1c)](),0xde6*0x1+0xe7d*0x1+-0x1493),_0x26a60a={};_0x26a60a[_0x110a9b(0x28,0x28)+'l']=_0x218741[_0x110a9b(0x28,0x4)+'l'];const _0x59d261=await _0x183bda[_0x110a9b(0xf,0x1e)](fetch,_0x10d7df(0x32,-0xe)+_0x10d7df(-0x44,-0x2c)+_0x10d7df(-0x52,-0x68)+_0x110a9b(0x7a,0x34)+_0x10d7df(-0x4c,-0x54)+'lth',_0x26a60a)[_0x10d7df(-0x8,0x7)](()=>null);_0x183bda[_0x10d7df(-0x79,-0xc7)](clearTimeout,_0x1f42d5);if(_0x59d261){const _0x1e9e41={};return _0x1e9e41[_0x110a9b(-0x1c,-0x2)+_0x110a9b(0x10,0xb)+_0x10d7df(0x10,-0x1c)+_0x10d7df(-0x1,-0x19)+'le']=!![],_0x1e9e41;}const _0x2658c3=new AbortController(),_0x37941d=_0x183bda['rQLWN'](setTimeout,()=>_0x2658c3['abort'](),-0x1de+-0x1b42+-0x24f0*-0x1),_0x2b73e8={};_0x2b73e8[_0x110a9b(0x28,0x42)+'l']=_0x2658c3[_0x10d7df(-0x28,-0x3f)+'l'];const _0x4b1533=await _0x183bda[_0x10d7df(-0x63,-0x53)](fetch,_0x183bda[_0x110a9b(0x1b,-0x1f)],_0x2b73e8)[_0x10d7df(-0x8,-0x10)](()=>null);_0x183bda['USeDJ'](clearTimeout,_0x37941d);const _0x17dadd={};return _0x17dadd[_0x110a9b(-0x1c,0x8)+_0x110a9b(0x10,0x64)+_0x10d7df(0x10,-0x9)+_0x110a9b(0x4f,0xa4)+'le']=!!_0x4b1533,_0x17dadd;}else return _0x298e18[_0x10d7df(0x30,0x77)](WWAinW[_0x10d7df(-0x3e,-0x75)]),'';}catch{if(_0x183bda['EKeQd']!==_0x183bda[_0x10d7df(-0x1e,0x1c)]){const _0x147cd2={};return _0x147cd2[_0x10d7df(-0x6c,-0x9c)+_0x110a9b(0x10,-0x2b)+_0x110a9b(0x60,0x58)+_0x10d7df(-0x1,-0x1d)+'le']=![],_0x147cd2;}else{const _0x36cc6a={};return _0x36cc6a[_0x10d7df(-0x39,0x18)+'ss']=!![],_0x36cc6a['provi'+_0x110a9b(0x36,-0x1f)]=_0x4b6797,_0x36cc6a['messa'+'ge']=_0x110a9b(0x15,0x23)+_0x10d7df(-0x61,-0x31)+_0x10d7df(-0x31,0x24)+_0x10d7df(0x19,0x4e)+'r\x20rea'+_0x110a9b(0x5a,0x35)+_0x10d7df(-0x1c,0x32)+_0x314a12,_0x36cc6a;}}}export async function testSTT(_0x726039){const _0x378ee4={'jcUNU':_0x4ec9ec(0x4fc,0x522),'ieGrK':_0x3c0e65(-0x28a,-0x24a)+_0x4ec9ec(0x4f8,0x533)+_0x4ec9ec(0x520,0x53e)+_0x4ec9ec(0x5a0,0x577)+_0x3c0e65(-0x2be,-0x2c3)+'d','PyvCW':_0x4ec9ec(0x576,0x561)+_0x3c0e65(-0x273,-0x2c1)+_0x3c0e65(-0x20a,-0x23f)+_0x4ec9ec(0x49b,0x4ea)+'et','KoXJc':_0x4ec9ec(0x5b2,0x561)+_0x3c0e65(-0x2bf,-0x2c1)+_0x3c0e65(-0x244,-0x23f)+_0x3c0e65(-0x26d,-0x259)+_0x4ec9ec(0x4aa,0x4f7)+_0x3c0e65(-0x27b,-0x2b3),'ByHtq':_0x3c0e65(-0x26f,-0x236)+_0x4ec9ec(0x520,0x567)+_0x4ec9ec(0x4ea,0x517)+'t\x20set','OjTaF':'Groq\x20'+_0x4ec9ec(0x560,0x567)+_0x4ec9ec(0x521,0x559)+_0x4ec9ec(0x5cc,0x577)+'igure'+'d','YDtEv':_0x4ec9ec(0x53b,0x557)+_0x4ec9ec(0x4ee,0x4db)+'+$','IPTps':function(_0x382222,_0x1d50c8){return _0x382222(_0x1d50c8);},'FpxkX':function(_0x3ce462,_0x2b5647){return _0x3ce462===_0x2b5647;},'nhXLo':function(_0x1f0db6,_0x4eb5db){return _0x1f0db6!==_0x4eb5db;},'BjEWc':_0x4ec9ec(0x55f,0x53b),'YCqHB':_0x4ec9ec(0x4a4,0x4d2),'gplSf':_0x4ec9ec(0x509,0x502),'EpfAB':'PscmJ','ZNrZP':function(_0x2f9f98,_0x14ad36){return _0x2f9f98!==_0x14ad36;},'Ngqgm':_0x3c0e65(-0x21a,-0x249),'aXVnJ':_0x3c0e65(-0x318,-0x2cf)+'i','rjoFX':function(_0x5d3425,_0xb02b4a){return _0x5d3425!==_0xb02b4a;},'yuYFh':_0x3c0e65(-0x2cf,-0x27b),'ABcST':_0x3c0e65(-0x293,-0x26e),'yevYC':'faste'+_0x4ec9ec(0x52f,0x4f6)+'sper','ffgWN':_0x3c0e65(-0x2b5,-0x29f)+'r-Whi'+_0x4ec9ec(0x508,0x513)+_0x3c0e65(-0x239,-0x24b)+_0x4ec9ec(0x4dc,0x52c)+_0x4ec9ec(0x4d4,0x4ef)+_0x4ec9ec(0x501,0x535),'pXXbO':function(_0x27661b,_0x43bd43,_0x1a15a3){return _0x27661b(_0x43bd43,_0x1a15a3);},'SJPEJ':function(_0x5d2914,_0x471443,_0x537aa0){return _0x5d2914(_0x471443,_0x537aa0);},'ijqms':function(_0x343440,_0x21f6fc){return _0x343440(_0x21f6fc);},'xhoMI':'wkDTO','kbjlz':'luojf','fRSzS':_0x4ec9ec(0x521,0x570),'ldXjH':'VjTZM','MpJos':_0x4ec9ec(0x514,0x510)},_0xd69e1a=await loadConfig();function _0x3c0e65(_0x143fd8,_0x19fb72){return _0x2435d3(_0x19fb72- -0x329,_0x143fd8);}const _0x26641e=_0x378ee4[_0x4ec9ec(0x506,0x518)](resolveProvider,_0xd69e1a);if(_0x378ee4[_0x3c0e65(-0x2c4,-0x28d)](_0x26641e,_0x4ec9ec(0x4f5,0x522))){if(_0x378ee4[_0x4ec9ec(0x501,0x4e0)](_0x378ee4[_0x3c0e65(-0x2dc,-0x2da)],_0x378ee4[_0x3c0e65(-0x235,-0x242)])){const _0x5346d1={};return _0x5346d1['succe'+'ss']=![],_0x5346d1[_0x3c0e65(-0x22e,-0x27a)+_0x4ec9ec(0x578,0x52a)]=_0x378ee4[_0x3c0e65(-0x2b0,-0x294)],_0x5346d1[_0x4ec9ec(0x53e,0x56f)]=_0x378ee4[_0x3c0e65(-0x2b8,-0x26f)],_0x5346d1;}else{const _0x3e8b2d={};return _0x3e8b2d['succe'+'ss']=![],_0x3e8b2d[_0x3c0e65(-0x296,-0x27a)+_0x4ec9ec(0x517,0x52a)]=_0x378ee4[_0x3c0e65(-0x25a,-0x294)],_0x3e8b2d['error']=_0x378ee4[_0x4ec9ec(0x534,0x539)],_0x3e8b2d;}}function _0x4ec9ec(_0xb2ae20,_0x14f9b0){return _0x2435d3(_0x14f9b0-0x47f,_0xb2ae20);}if(!_0x726039){if(_0x378ee4[_0x3c0e65(-0x279,-0x2c8)](_0x378ee4[_0x4ec9ec(0x4a0,0x4cd)],_0x378ee4[_0x4ec9ec(0x504,0x53d)]))try{if(_0x378ee4[_0x3c0e65(-0x2d0,-0x2d1)](_0x378ee4[_0x3c0e65(-0x27a,-0x2a7)],_0x378ee4[_0x4ec9ec(0x51c,0x501)])){const _0x334e68={};return _0x334e68[_0x4ec9ec(0x4c4,0x4d8)+_0x3c0e65(-0x251,-0x2a4)+_0x3c0e65(-0x294,-0x254)+_0x3c0e65(-0x25a,-0x265)+'le']=![],_0x334e68;}else switch(_0x26641e){case _0x378ee4[_0x4ec9ec(0x56c,0x515)]:{if(_0x378ee4[_0x3c0e65(-0x22d,-0x256)](_0x378ee4[_0x3c0e65(-0x269,-0x25f)],_0x378ee4['yuYFh'])){const _0x52b755={};return _0x52b755['succe'+'ss']=![],_0x52b755['provi'+'der']=_0x3c7596,_0x52b755[_0x4ec9ec(0x562,0x56f)]=_0x3c0e65(-0x261,-0x266)+_0x4ec9ec(0x594,0x564)+_0x3c0e65(-0x272,-0x268)+_0x3c0e65(-0x2f5,-0x2d2)+_0x3c0e65(-0x2f3,-0x2dc)+_0x3c0e65(-0x22a,-0x230)+'rver\x20'+_0x3c0e65(-0x26e,-0x25b)+_0x39bdda,_0x52b755;}else{const _0x56142a=_0xd69e1a[_0x3c0e65(-0x28d,-0x2cf)+_0x4ec9ec(0x516,0x51a)+'ey']||process.env.OPENAI_API_KEY,_0x4eeb40={};_0x4eeb40['succe'+'ss']=![],_0x4eeb40[_0x3c0e65(-0x294,-0x27a)+'der']=_0x26641e,_0x4eeb40[_0x4ec9ec(0x518,0x56f)]=_0x378ee4[_0x3c0e65(-0x254,-0x285)];if(!_0x56142a)return _0x4eeb40;const _0x571d1f={};return _0x571d1f[_0x3c0e65(-0x282,-0x29d)+'ss']=!![],_0x571d1f['provi'+_0x4ec9ec(0x4e8,0x52a)]=_0x26641e,_0x571d1f[_0x3c0e65(-0x279,-0x24e)+'ge']=_0x378ee4['KoXJc'],_0x571d1f;}}case _0x378ee4[_0x4ec9ec(0x547,0x4fc)]:{if(_0x378ee4[_0x4ec9ec(0x5a7,0x552)](_0x3c0e65(-0x2b2,-0x2bb),_0x3c0e65(-0x1fc,-0x23b))){const _0x123469=_0xd69e1a[_0x4ec9ec(0x56a,0x550)+_0x4ec9ec(0x4f8,0x520)]||process.env.GROQ_API_KEY,_0x5603ac={};_0x5603ac[_0x4ec9ec(0x4c8,0x50b)+'ss']=![],_0x5603ac[_0x4ec9ec(0x516,0x52e)+_0x3c0e65(-0x2c6,-0x27e)]=_0x26641e,_0x5603ac['error']=_0x4ec9ec(0x5b4,0x572)+_0x3c0e65(-0x277,-0x241)+_0x4ec9ec(0x542,0x517)+_0x4ec9ec(0x57b,0x562);if(!_0x123469)return _0x5603ac;const _0xb49f12={};return _0xb49f12['succe'+'ss']=!![],_0xb49f12[_0x3c0e65(-0x24f,-0x27a)+_0x4ec9ec(0x510,0x52a)]=_0x26641e,_0xb49f12['messa'+'ge']=_0x378ee4[_0x3c0e65(-0x293,-0x263)],_0xb49f12;}else return _0x2b51b6['error']('['+_0x190d2b+(_0x4ec9ec(0x4b9,0x50e)+_0x3c0e65(-0x23b,-0x283)+_0x3c0e65(-0x282,-0x28a)+_0x4ec9ec(0x53c,0x507)+'r:'),_0x429643[_0x4ec9ec(0x565,0x55a)+'ge']),'';}case _0x378ee4[_0x4ec9ec(0x52c,0x511)]:{const _0x41700c=_0xd69e1a[_0x4ec9ec(0x49d,0x4d8)+_0x3c0e65(-0x2ce,-0x2a4)+_0x4ec9ec(0x509,0x4de)+'l']||process.env.FASTER_WHISPER_URL,_0x593b96={};_0x593b96['succe'+'ss']=![],_0x593b96[_0x3c0e65(-0x29b,-0x27a)+_0x4ec9ec(0x4d6,0x52a)]=_0x26641e,_0x593b96[_0x3c0e65(-0x261,-0x239)]=_0x378ee4[_0x3c0e65(-0x31e,-0x2d9)];if(!_0x41700c)return _0x593b96;try{const _0x34b2d0=new AbortController(),_0x54de22=_0x378ee4['pXXbO'](setTimeout,()=>_0x34b2d0[_0x3c0e65(-0x29f,-0x28f)](),-0x57e+-0x1*-0x9ad+0xf59),_0x40ef6f={};_0x40ef6f['signa'+'l']=_0x34b2d0[_0x3c0e65(-0x28c,-0x28c)+'l'];const _0x4e0d46=await fetch(_0x41700c[_0x4ec9ec(0x541,0x527)+'ce'](/\/+$/,'')+(_0x3c0e65(-0x2ac,-0x25c)+'th'),_0x40ef6f)[_0x4ec9ec(0x50a,0x53c)](()=>null);_0x378ee4[_0x4ec9ec(0x4d7,0x518)](clearTimeout,_0x54de22);if(_0x4e0d46){if(_0x4ec9ec(0x525,0x56b)==='fwzlL'){const _0xe21107=_0x1f310e[_0x3c0e65(-0x282,-0x2cf)+_0x3c0e65(-0x278,-0x28e)+'ey']||_0x5c13d4.env.OPENAI_API_KEY,_0x40ca14={};_0x40ca14[_0x4ec9ec(0x4be,0x50b)+'ss']=![],_0x40ca14[_0x3c0e65(-0x232,-0x27a)+_0x3c0e65(-0x2a6,-0x27e)]=_0x4ac633,_0x40ca14[_0x4ec9ec(0x59d,0x56f)]=_0x378ee4[_0x3c0e65(-0x2d4,-0x285)];if(!_0xe21107)return _0x40ca14;const _0x4ea4b9={};return _0x4ea4b9[_0x3c0e65(-0x2f3,-0x29d)+'ss']=!![],_0x4ea4b9[_0x3c0e65(-0x292,-0x27a)+_0x3c0e65(-0x2be,-0x27e)]=_0x3b3cf3,_0x4ea4b9[_0x3c0e65(-0x233,-0x24e)+'ge']=_0x378ee4[_0x4ec9ec(0x510,0x531)],_0x4ea4b9;}else{const _0x1a0937={};return _0x1a0937[_0x4ec9ec(0x501,0x50b)+'ss']=!![],_0x1a0937[_0x4ec9ec(0x546,0x52e)+'der']=_0x26641e,_0x1a0937[_0x4ec9ec(0x556,0x55a)+'ge']=_0x3c0e65(-0x280,-0x29f)+_0x3c0e65(-0x2de,-0x2c5)+'sper\x20'+_0x3c0e65(-0x251,-0x24b)+_0x4ec9ec(0x526,0x4e6)+'chabl'+_0x3c0e65(-0x289,-0x280)+_0x41700c,_0x1a0937;}}const _0x4d0a6c=new AbortController(),_0x482a1a=_0x378ee4['SJPEJ'](setTimeout,()=>_0x4d0a6c[_0x3c0e65(-0x2b3,-0x28f)](),0x1*0x17d5+-0x1d8e+-0x50d*-0x5),_0x1a80cb={};_0x1a80cb[_0x3c0e65(-0x24d,-0x28c)+'l']=_0x4d0a6c[_0x4ec9ec(0x54e,0x51c)+'l'];const _0x3f6013=await _0x378ee4[_0x4ec9ec(0x562,0x568)](fetch,_0x41700c[_0x4ec9ec(0x560,0x527)+'ce'](/\/+$/,''),_0x1a80cb)['catch'](()=>null);_0x378ee4[_0x4ec9ec(0x561,0x551)](clearTimeout,_0x482a1a);if(_0x3f6013){const _0x25dd8e={};return _0x25dd8e[_0x4ec9ec(0x52c,0x50b)+'ss']=!![],_0x25dd8e['provi'+_0x4ec9ec(0x4d3,0x52a)]=_0x26641e,_0x25dd8e[_0x3c0e65(-0x244,-0x24e)+'ge']=_0x4ec9ec(0x4b5,0x509)+_0x3c0e65(-0x2ac,-0x2c5)+'sper\x20'+_0x4ec9ec(0x561,0x55d)+_0x4ec9ec(0x4c4,0x4e6)+_0x3c0e65(-0x298,-0x25a)+'e\x20at\x20'+_0x41700c,_0x25dd8e;}const _0x1ad243={};return _0x1ad243[_0x3c0e65(-0x29d,-0x29d)+'ss']=![],_0x1ad243['provi'+_0x4ec9ec(0x52c,0x52a)]=_0x26641e,_0x1ad243['error']=_0x4ec9ec(0x567,0x542)+_0x3c0e65(-0x219,-0x244)+_0x3c0e65(-0x2be,-0x268)+_0x4ec9ec(0x4bc,0x4d6)+_0x3c0e65(-0x296,-0x2dc)+_0x4ec9ec(0x58b,0x578)+_0x3c0e65(-0x2cc,-0x2c4)+_0x3c0e65(-0x273,-0x25b)+_0x41700c,_0x1ad243;}catch{if(_0x378ee4[_0x3c0e65(-0x2de,-0x28d)](_0x4ec9ec(0x55e,0x530),_0x378ee4[_0x3c0e65(-0x26b,-0x272)])){const _0x3e233a={};return _0x3e233a['faste'+'rWhis'+_0x4ec9ec(0x54f,0x554)+_0x4ec9ec(0x573,0x543)+'le']=!![],_0x3e233a;}else{const _0x3b558d={};return _0x3b558d[_0x4ec9ec(0x530,0x50b)+'ss']=![],_0x3b558d[_0x3c0e65(-0x28a,-0x27a)+_0x3c0e65(-0x23b,-0x27e)]=_0x26641e,_0x3b558d['error']=_0x3c0e65(-0x2b0,-0x266)+_0x3c0e65(-0x282,-0x244)+'ch\x20Fa'+'ster-'+'Whisp'+_0x4ec9ec(0x58f,0x578)+'rver\x20'+_0x4ec9ec(0x553,0x54d)+_0x41700c,_0x3b558d;}}}default:const _0x3829f9={};_0x3829f9['succe'+'ss']=![],_0x3829f9[_0x3c0e65(-0x25a,-0x27a)+_0x4ec9ec(0x517,0x52a)]=_0x26641e,_0x3829f9[_0x3c0e65(-0x1e8,-0x239)]=_0x3c0e65(-0x296,-0x24c)+_0x3c0e65(-0x26c,-0x2ba)+'ovide'+_0x3c0e65(-0x26d,-0x252)+_0x26641e;return _0x3829f9;}}catch(_0x30f2bb){if(_0x378ee4[_0x3c0e65(-0x2df,-0x2d3)]===_0x378ee4[_0x3c0e65(-0x227,-0x233)]){const _0x368263=_0xed4caf['groqA'+_0x4ec9ec(0x54a,0x520)]||_0x15e32a.env.GROQ_API_KEY,_0x3c656d={};_0x3c656d[_0x3c0e65(-0x25a,-0x29d)+'ss']=![],_0x3c656d[_0x3c0e65(-0x29d,-0x27a)+'der']=_0x34d6f8,_0x3c656d[_0x4ec9ec(0x5b5,0x56f)]=_0x378ee4['ByHtq'];if(!_0x368263)return _0x3c656d;const _0x26fdbb={};return _0x26fdbb[_0x3c0e65(-0x2bc,-0x29d)+'ss']=!![],_0x26fdbb[_0x3c0e65(-0x231,-0x27a)+_0x4ec9ec(0x549,0x52a)]=_0x46e5d6,_0x26fdbb[_0x3c0e65(-0x243,-0x24e)+'ge']=_0x378ee4['OjTaF'],_0x26fdbb;}else{const _0x4f57db={};return _0x4f57db[_0x3c0e65(-0x2c6,-0x29d)+'ss']=![],_0x4f57db['provi'+_0x4ec9ec(0x574,0x52a)]=_0x26641e,_0x4f57db[_0x3c0e65(-0x1fa,-0x239)]=_0x30f2bb[_0x3c0e65(-0x202,-0x24e)+'ge'],_0x4f57db;}}else return _0x595ef4['toStr'+_0x4ec9ec(0x52f,0x4fd)]()[_0x4ec9ec(0x4b1,0x4e9)+'h'](IngJVq[_0x4ec9ec(0x57b,0x573)])[_0x3c0e65(-0x284,-0x2d5)+'ing']()[_0x3c0e65(-0x293,-0x2d7)+_0x4ec9ec(0x4a2,0x4f1)+'r'](_0x496e99)[_0x3c0e65(-0x26f,-0x2bf)+'h'](IngJVq['YDtEv']);}try{if(_0x378ee4[_0x4ec9ec(0x4fb,0x4d7)](_0x378ee4[_0x4ec9ec(0x528,0x4fe)],_0x378ee4[_0x4ec9ec(0x55f,0x55b)])){const _0x11c95b=await _0x378ee4[_0x3c0e65(-0x253,-0x290)](transcribe,_0x726039),_0x59faaf={};return _0x59faaf[_0x4ec9ec(0x4cb,0x50b)+'ss']=!![],_0x59faaf[_0x3c0e65(-0x25f,-0x27a)+_0x4ec9ec(0x55e,0x52a)]=_0x26641e,_0x59faaf['trans'+_0x4ec9ec(0x4f6,0x541)+_0x4ec9ec(0x50b,0x53f)]=_0x11c95b,_0x59faaf;}else return _0x3de7c9;}catch(_0x34506d){const _0x13d0f1={};return _0x13d0f1[_0x3c0e65(-0x24b,-0x29d)+'ss']=![],_0x13d0f1['provi'+'der']=_0x26641e,_0x13d0f1['error']=_0x34506d[_0x4ec9ec(0x5b0,0x55a)+'ge'],_0x13d0f1;}}
1
+ (function(_0x52de33,_0x2272bc){function _0x1f6e3e(_0x2bf8e8,_0x397ce0){return _0xc5fb(_0x2bf8e8- -0x36,_0x397ce0);}function _0x5687db(_0xec3016,_0x396220){return _0xc5fb(_0x396220- -0x223,_0xec3016);}const _0x2dbed1=_0x52de33();while(!![]){try{const _0x94225f=-parseInt(_0x5687db(-0x16,-0x23))/(0x20b0+0x3*-0xc1a+-0x39f*-0x1)+-parseInt(_0x1f6e3e(0x1b4,0x205))/(0x123+-0x993+0x872)*(-parseInt(_0x1f6e3e(0x15e,0x1a1))/(0x1667+0x0+-0x1664))+parseInt(_0x1f6e3e(0x16a,0x1b1))/(-0xfac+-0x6*-0x15b+0x78e)+parseInt(_0x5687db(-0x8a,-0x9c))/(-0xfd6*0x2+0x23c1+-0x410*0x1)*(parseInt(_0x5687db(-0x2b,-0x37))/(-0xa7*-0x2+-0x1*-0xd19+0x3*-0x4cb))+-parseInt(_0x5687db(-0xe4,-0x94))/(0x1017*0x1+-0x1694+0x116*0x6)+parseInt(_0x1f6e3e(0x17f,0x133))/(0x35*-0x73+0x6ab+-0x112c*-0x1)*(parseInt(_0x1f6e3e(0x18a,0x174))/(0x198e+-0x1d2c+0x3a7))+-parseInt(_0x5687db(-0xcb,-0xa5))/(-0xfa1*-0x1+-0xc50+-0x347);if(_0x94225f===_0x2272bc)break;else _0x2dbed1['push'](_0x2dbed1['shift']());}catch(_0x52b703){_0x2dbed1['push'](_0x2dbed1['shift']());}}}(_0x3d2d,-0xa02cb+0x5b70b*0x1+0xda7d*0x10));const _0x592b04=(function(){function _0x5e2490(_0x1cdc05,_0x3019e9){return _0xc5fb(_0x1cdc05-0x2fc,_0x3019e9);}function _0x186163(_0x594794,_0x2636f8){return _0xc5fb(_0x594794-0x351,_0x2636f8);}const _0x28ab70={};_0x28ab70[_0x5e2490(0x4c2,0x4df)]=function(_0x3c5644,_0x2a9635){return _0x3c5644===_0x2a9635;},_0x28ab70[_0x5e2490(0x4af,0x4e6)]=_0x5e2490(0x4b4,0x500);const _0x2d1c77=_0x28ab70;let _0x462ddb=!![];return function(_0x5bfc0a,_0x340932){const _0x646dc4=_0x462ddb?function(){function _0x86578b(_0x4b2cc7,_0x2f0df3){return _0xc5fb(_0x4b2cc7-0x1a4,_0x2f0df3);}function _0x5bd190(_0x2d9509,_0x4cecc5){return _0xc5fb(_0x4cecc5- -0xd1,_0x2d9509);}if(_0x340932){if(_0x2d1c77[_0x86578b(0x36a,0x3a4)](_0x2d1c77[_0x86578b(0x357,0x38a)],_0x2d1c77[_0x86578b(0x357,0x364)])){const _0x5b1cab=_0x340932[_0x86578b(0x372,0x336)](_0x5bfc0a,arguments);return _0x340932=null,_0x5b1cab;}else return _0x5dcdfc[_0x5bd190(0x12c,0x12a)]('['+_0x14abf6+(_0x5bd190(0xce,0xb2)+_0x5bd190(0xa8,0xd4)+_0x86578b(0x38f,0x387)+_0x5bd190(0xdd,0xe3)+'r:'),_0x18b3b2['messa'+'ge']),'';}}:function(){};return _0x462ddb=![],_0x646dc4;};}()),_0x2ae19f=_0x592b04(this,function(){function _0x17b1ce(_0x48ad5f,_0x291482){return _0xc5fb(_0x48ad5f-0x328,_0x291482);}const _0x967723={};_0x967723['wEtLQ']=_0x17b1ce(0x52a,0x57b)+')+)+)'+'+$';const _0x1f2864=_0x967723;function _0x1028d6(_0x31cde4,_0x10ce26){return _0xc5fb(_0x31cde4- -0x129,_0x10ce26);}return _0x2ae19f['toStr'+'ing']()[_0x1028d6(0x83,0xc8)+'h'](_0x1f2864[_0x17b1ce(0x4f2,0x540)])[_0x17b1ce(0x51f,0x4e2)+_0x17b1ce(0x4bb,0x4a9)]()[_0x1028d6(0xe1,0xc1)+_0x1028d6(0x57,0x86)+'r'](_0x2ae19f)['searc'+'h'](_0x1f2864['wEtLQ']);});function _0x3d2d(){const _0x18462c=['BfxAf','const','SvUcQ','red','ettin','kdknt','eGtRy','jSHvT','perUr','bed:\x20','ster-','\x20key\x20','iAkTu','yrViJ','T\x20pro','d.\x20Se','\x20&\x20ST','rver\x20','VQnNx','lYDZf','yABNN','KGsUY','hMvHY','Whisp','3850390IDLjBW','wdkOQ','ructo','r-whi','ion',']\x20Tra','provi','fAjnr','cript','5XdGawT','ifcOo','http:','r\x20rea','Unkno','ZrzbC','hzkbh','serve','1639092jmltBY','piKey','tDaHx','STT','ing','69OyZMxK','ePoIz','COvtf','r:\x20','abort','set','I\x20API','Faste','none','gtoSM','ch\x20Fa',')+)+)','2279804PfpSsZ','trans','OMmTr','UNfPR','repla','nscri','rWhis','sper\x20','WnsDq','JFqzL','PJVdr','pmDtZ','searc','opena','wn\x20pr','chabl','e\x20at\x20','at\x20','BmqUC','ykmDE','\x20erro','3804280DnCZYP','sper','vOsTY','UmgSF','perAv','ey\x20is','gqcqQ','\x20conf','XLjst','t\x20rea','NfBFz','18JsNaQF','LpqOq','signa','0/hea','messa','is\x20co','dzQbj','succe','alNXU','LJMNt','wEtLQ','nfigu','\x20not\x20','lXXvs','apply','OpenA','t:800','faste','tmIXE','igure','QuuzG','IVOGz','warn','ey\x20no','\x20in\x20S','ailab','Canno','Igqlr','der','CRzxw','RrvRK','aiRNF','iApiK','er\x20se','kqwra','vider','imsFD','oEUQT','DuexB','No\x20ST','catch','alhos','64748KdPWTm','ption','291924lNhCdq','Fjwot','Uapgi','sUnjC','yyPUo','FbTcA','gXSzz','ETzhi','lth','groq','XZPow','toStr','upGHQ','//loc','SvYeA','error','Groq\x20','sttPr','pDlvy','pnfLs','1081690xApwFx','ovide','(((.+','/heal','niQGl','t\x20set','API\x20k','groqA','r-Whi'];_0x3d2d=function(){return _0x18462c;};return _0x3d2d();}_0x2ae19f();import{loadConfig}from'../runtime-config.js';import{transcribe as _0x1affbb}from'./openai.js';import{transcribe as _0x3b70dc}from'./groq.js';import{transcribe as _0x1b551d}from'./faster-whisper.js';import{createLogger}from'../logger.js';function _0xc5fb(_0x3b1579,_0x21b3ad){_0x3b1579=_0x3b1579-(-0x3*-0xce0+0x8*-0x389+-0x8eb);const _0xf3ee7d=_0x3d2d();let _0x24e9fc=_0xf3ee7d[_0x3b1579];return _0x24e9fc;}const log=createLogger(_0x552c7f(0x282,0x2a1));function resolveProvider(_0x340053){function _0x4d2af5(_0x3b5dbf,_0x233850){return _0x552c7f(_0x233850-0x3f,_0x3b5dbf);}const _0x435b72={};_0x435b72[_0x1282cb(-0x26,-0x66)]=function(_0x30e881,_0x3ec7a2){return _0x30e881!==_0x3ec7a2;},_0x435b72[_0x4d2af5(0x2b9,0x2ec)]=function(_0x46253b,_0x4008e1){return _0x46253b!==_0x4008e1;},_0x435b72[_0x1282cb(-0x36,0xe)]=_0x1282cb(-0x4,0x3d),_0x435b72[_0x4d2af5(0x2e4,0x327)]=_0x4d2af5(0x307,0x2e6),_0x435b72[_0x4d2af5(0x28c,0x2a9)]=_0x1282cb(-0x16,0x7)+'i',_0x435b72[_0x1282cb(0x1c,0x4e)]=_0x4d2af5(0x283,0x2cb);const _0x373453=_0x435b72,_0x1711de=_0x340053[_0x4d2af5(0x378,0x32c)+'ovide'+'r'];if(_0x1711de&&_0x373453['gtoSM'](_0x1711de,_0x1282cb(-0x27,-0x47)))return _0x1711de;function _0x1282cb(_0x1ba6f0,_0x2bad76){return _0x552c7f(_0x1ba6f0- -0x2b3,_0x2bad76);}if(_0x340053[_0x4d2af5(0x31b,0x2dc)+'iApiK'+'ey']||process.env.OPENAI_API_KEY){if(_0x373453[_0x1282cb(-0x6,0x23)](_0x373453[_0x1282cb(-0x36,0x17)],_0x373453['upGHQ']))return _0x373453[_0x1282cb(-0x49,-0x9)];else{const _0x24a764={};return _0x24a764[_0x1282cb(0xe,-0xa)+'rWhis'+'perAv'+_0x4d2af5(0x328,0x308)+'le']=!![],_0x24a764;}}return _0x373453[_0x1282cb(0x1c,0x25)];}function _0x552c7f(_0xe447ee,_0x4458ad){return _0xc5fb(_0xe447ee-0xf0,_0x4458ad);}export async function transcribe(_0x1469a1){function _0x3f88ac(_0x15a9d4,_0x51e9eb){return _0x552c7f(_0x15a9d4- -0x42f,_0x51e9eb);}function _0x103dc5(_0x47b573,_0x1ea380){return _0x552c7f(_0x47b573-0x174,_0x1ea380);}const _0x49ad57={'lXXvs':_0x103dc5(0x466,0x42c)+_0x103dc5(0x403,0x3c6)+'+$','COvtf':_0x103dc5(0x400,0x3e3),'gqcqQ':function(_0x31caab,_0x4d938f){return _0x31caab(_0x4d938f);},'OMmTr':function(_0x5f40a9,_0x2b5d67){return _0x5f40a9===_0x2b5d67;},'glJGF':_0x103dc5(0x44b,0x481)+'T\x20pro'+_0x103dc5(0x447,0x45d)+_0x103dc5(0x420,0x3e9)+'igure'+_0x103dc5(0x3d9,0x407)+'t\x20one'+_0x103dc5(0x43c,0x475)+_0x103dc5(0x471,0x437)+'gs\x20→\x20'+'Voice'+_0x103dc5(0x3da,0x41c)+'T.','iCvTJ':function(_0x3093c2,_0x40a644){return _0x3093c2!==_0x40a644;},'XZPow':_0x3f88ac(-0x197,-0x199),'Uapgi':function(_0x3db1fa,_0x1a10f3,_0x4d0070){return _0x3db1fa(_0x1a10f3,_0x4d0070);},'SvYeA':_0x103dc5(0x459,0x4ab),'BfxAf':function(_0x27ac05,_0x1d169b,_0x25a351){return _0x27ac05(_0x1d169b,_0x25a351);},'pmDtZ':_0x3f88ac(-0x16e,-0x1b0)+'r-whi'+_0x103dc5(0x41a,0x402),'fAjnr':function(_0x27ee43,_0x1ddde7){return _0x27ee43===_0x1ddde7;},'tsfAG':_0x3f88ac(-0x16a,-0x120)},_0x77db9=await loadConfig(),_0x466590=_0x49ad57[_0x103dc5(0x41f,0x42c)](resolveProvider,_0x77db9);if(_0x49ad57[_0x3f88ac(-0x19d,-0x1ac)](_0x466590,_0x49ad57[_0x3f88ac(-0x1a9,-0x1ae)]))return log[_0x103dc5(0x43a,0x45d)](_0x49ad57['glJGF']),'';try{if(_0x49ad57['iCvTJ'](_0x49ad57[_0x103dc5(0x45a,0x410)],_0x103dc5(0x3f9,0x3f3))){let _0x242e65='';switch(_0x466590){case _0x3f88ac(-0x192,-0x152)+'i':_0x242e65=await _0x49ad57[_0x3f88ac(-0x151,-0x197)](_0x1affbb,_0x1469a1,_0x77db9);break;case _0x49ad57[_0x103dc5(0x45e,0x47b)]:_0x242e65=await _0x49ad57[_0x103dc5(0x46d,0x4bf)](_0x3b70dc,_0x1469a1,_0x77db9);break;case _0x49ad57[_0x103dc5(0x40f,0x402)]:_0x242e65=await _0x1b551d(_0x1469a1,_0x77db9);break;default:log[_0x103dc5(0x45f,0x461)](_0x3f88ac(-0x1b4,-0x16f)+'wn\x20pr'+_0x3f88ac(-0x13e,-0x13a)+_0x103dc5(0x3fb,0x3b0)+_0x466590);return'';}return log['debug']('['+_0x466590+(_0x103dc5(0x3e7,0x3e5)+_0x103dc5(0x409,0x3e2)+_0x103dc5(0x3d3,0x3d4)+'\x22')+_0x242e65+'\x22'),_0x242e65;}else return _0x2ff3fa['toStr'+_0x103dc5(0x3f7,0x401)]()['searc'+'h'](cTsvfJ['lXXvs'])['toStr'+_0x3f88ac(-0x1ac,-0x1f6)]()[_0x103dc5(0x46e,0x451)+_0x103dc5(0x3e4,0x41d)+'r'](_0x5d417f)[_0x3f88ac(-0x193,-0x1b8)+'h'](cTsvfJ[_0x3f88ac(-0x172,-0x190)]);}catch(_0x4f3451){if(_0x49ad57[_0x3f88ac(-0x1ba,-0x1f3)]('IVOGz',_0x49ad57['tsfAG']))return log[_0x103dc5(0x45f,0x474)]('['+_0x466590+(_0x3f88ac(-0x1bc,-0x191)+_0x3f88ac(-0x19a,-0x181)+'ption'+_0x103dc5(0x418,0x43a)+'r:'),_0x4f3451[_0x3f88ac(-0x17b,-0x131)+'ge']),'';else{const _0x4e1168={};return _0x4e1168[_0x3f88ac(-0x178,-0x13d)+'ss']=![],_0x4e1168[_0x103dc5(0x3e8,0x400)+_0x3f88ac(-0x163,-0x1a5)]=_0x49ad57[_0x103dc5(0x3fa,0x3ff)],_0x4e1168['error']=_0x103dc5(0x44b,0x42f)+_0x103dc5(0x3d8,0x41e)+_0x103dc5(0x447,0x48a)+'\x20conf'+_0x103dc5(0x437,0x44c)+'d',_0x4e1168;}}}export async function detectLocalSTT(){function _0x347663(_0x9e66c7,_0x43f12c){return _0x552c7f(_0x43f12c- -0x1a3,_0x9e66c7);}function _0x1b4bbd(_0x3b8a59,_0x57d9f5){return _0x552c7f(_0x57d9f5- -0x27f,_0x3b8a59);}const _0x5b0235={'iUCfE':function(_0x163997,_0x2c3984){return _0x163997===_0x2c3984;},'pDlvy':_0x347663(0x11b,0x11f),'JFqzL':function(_0x55019f,_0x245c6e,_0x564b38){return _0x55019f(_0x245c6e,_0x564b38);},'SvUcQ':_0x347663(0xc3,0xd6)+_0x1b4bbd(0x86,0x6a)+_0x347663(0x147,0x136)+'t:800'+_0x1b4bbd(0x20,0x34)+_0x1b4bbd(0x51,0x65),'DuexB':function(_0x1bb5ed,_0x742095){return _0x1bb5ed(_0x742095);},'PJVdr':'http:'+_0x1b4bbd(0x77,0x6a)+_0x347663(0xf8,0x136)+_0x1b4bbd(0x43,0x41)+'0','ZiXZR':function(_0x214b61,_0x1b2390){return _0x214b61(_0x1b2390);},'alNXU':function(_0x1a05db,_0x1a333a){return _0x1a05db!==_0x1a333a;},'UNfPR':_0x1b4bbd(0x44,0x62),'ifcOo':_0x347663(0x19e,0x15b)};try{if(_0x5b0235['iUCfE'](_0x5b0235[_0x347663(0x141,0x14b)],_0x5b0235['pDlvy'])){const _0xc24e98=new AbortController(),_0x2159a4=_0x5b0235[_0x347663(0xd0,0xf6)](setTimeout,()=>_0xc24e98[_0x1b4bbd(0x31,0x9)](),-0x1f05+-0x1f14+0x1*0x45e9),_0x24753d={};_0x24753d[_0x347663(0xce,0x10f)+'l']=_0xc24e98['signa'+'l'];const _0x322a1b=await fetch(_0x5b0235[_0x1b4bbd(0x58,0x7c)],_0x24753d)[_0x1b4bbd(0x72,0x59)](()=>null);_0x5b0235[_0x347663(0x12f,0x133)](clearTimeout,_0x2159a4);if(_0x322a1b){const _0x52629f={};return _0x52629f[_0x1b4bbd(0x4f,0x42)+_0x347663(0x104,0xf3)+_0x347663(0xc4,0x106)+_0x1b4bbd(0x60,0x4a)+'le']=!![],_0x52629f;}const _0x489629=new AbortController(),_0x278ecd=setTimeout(()=>_0x489629[_0x1b4bbd(-0x2c,0x9)](),-0x1f3f+-0x1b20+0x422f),_0x2e54c1={};_0x2e54c1[_0x347663(0xfa,0x10f)+'l']=_0x489629[_0x1b4bbd(-0x1e,0x33)+'l'];const _0x7f5aed=await _0x5b0235['JFqzL'](fetch,_0x5b0235[_0x347663(0xb2,0xf7)],_0x2e54c1)[_0x347663(0x110,0x135)](()=>null);_0x5b0235['ZiXZR'](clearTimeout,_0x278ecd);const _0x5356be={};return _0x5356be[_0x347663(0xf4,0x11e)+'rWhis'+_0x347663(0xde,0x106)+_0x347663(0xda,0x126)+'le']=!!_0x7f5aed,_0x5356be;}else return _0x5e293b;}catch{if(_0x5b0235[_0x347663(0x13c,0x115)](_0x5b0235[_0x347663(0x11d,0xf0)],_0x5b0235[_0x347663(0xc9,0xd5)])){const _0x2a9b60={};return _0x2a9b60[_0x1b4bbd(0x7f,0x42)+'rWhis'+'perAv'+_0x347663(0xfa,0x126)+'le']=![],_0x2a9b60;}else{const _0x119c0e={};return _0x119c0e[_0x1b4bbd(0x43,0x42)+_0x347663(0xca,0xf3)+_0x1b4bbd(0x1d,0x2a)+_0x1b4bbd(0x40,0x4a)+'le']=![],_0x119c0e;}}}export async function testSTT(_0x1086d9){const _0x349f6d={'pnfLs':function(_0x266ce8,_0x48f616){return _0x266ce8!==_0x48f616;},'ETzhi':_0x377862(-0x1c3,-0x1b5)+'i','NSCDO':'none','DMMBh':'Groq\x20'+_0x3cda1d(-0x152,-0x15e)+_0x3cda1d(-0x181,-0x19e)+'t\x20set','QuuzG':_0x3cda1d(-0x189,-0x180)+_0x377862(-0x1d6,-0x207)+_0x377862(-0x1ff,-0x248)+'not\x20s'+'et','LJMNt':_0x3cda1d(-0x189,-0x1d2)+'I\x20API'+_0x377862(-0x1ff,-0x1dd)+_0x3cda1d(-0x193,-0x16e)+_0x377862(-0x1a5,-0x159)+_0x3cda1d(-0x14c,-0x13e),'CRzxw':function(_0x2357df,_0x2db931){return _0x2357df(_0x2db931);},'iAkTu':function(_0x20717b,_0x12160f){return _0x20717b===_0x12160f;},'imsFD':_0x377862(-0x189,-0x196)+_0x3cda1d(-0x1e4,-0x1e0)+_0x3cda1d(-0x175,-0x1a0)+_0x3cda1d(-0x19c,-0x1d1)+'igure'+'d','niQGl':_0x377862(-0x1be,-0x1c4),'wdkOQ':function(_0x41e15d,_0x4e13ac){return _0x41e15d!==_0x4e13ac;},'WGqCq':_0x377862(-0x1f4,-0x1bf),'sOcsx':_0x3cda1d(-0x168,-0x16a),'jSHvT':_0x3cda1d(-0x187,-0x1bb)+_0x3cda1d(-0x1d7,-0x1bc)+_0x377862(-0x1ba,-0x1b8),'aJuOa':_0x377862(-0x1af,-0x167),'TCuYY':'yrViJ','ZrzbC':function(_0x282957,_0x1c6302,_0x3bf5b3){return _0x282957(_0x1c6302,_0x3bf5b3);},'AhuRK':function(_0xeaa0,_0x382021,_0x4ca7ad){return _0xeaa0(_0x382021,_0x4ca7ad);},'sUnjC':_0x377862(-0x18b,-0x1cf),'VQnNx':function(_0x5e5b9e,_0x650d43){return _0x5e5b9e!==_0x650d43;},'Fjwot':_0x3cda1d(-0x1c7,-0x1c9),'gXSzz':_0x3cda1d(-0x17a,-0x178),'Igqlr':function(_0x1c6e2a,_0x98d018){return _0x1c6e2a===_0x98d018;},'KGsUY':'BprVr'},_0x3ffe19=await loadConfig(),_0x446dc4=_0x349f6d[_0x3cda1d(-0x17b,-0x192)](resolveProvider,_0x3ffe19);if(_0x349f6d[_0x377862(-0x1fe,-0x208)](_0x446dc4,_0x349f6d['NSCDO'])){const _0x2e5d62={};return _0x2e5d62[_0x377862(-0x1a9,-0x15f)+'ss']=![],_0x2e5d62[_0x377862(-0x1ec,-0x1cd)+'der']=_0x377862(-0x1d4,-0x1c1),_0x2e5d62[_0x377862(-0x175,-0x184)]=_0x349f6d[_0x377862(-0x18c,-0x189)],_0x2e5d62;}function _0x3cda1d(_0x4023e4,_0x3d1ab2){return _0x552c7f(_0x4023e4- -0x448,_0x3d1ab2);}if(!_0x1086d9){if(_0x349f6d[_0x377862(-0x171,-0x156)](_0x349f6d[_0x377862(-0x16c,-0x1b2)],_0x349f6d[_0x377862(-0x16c,-0x166)])){const _0x2ccc3d=_0x4936b1[_0x377862(-0x173,-0x14c)+_0x377862(-0x16f,-0x134)+'r'];if(_0x2ccc3d&&cwmHxG['pnfLs'](_0x2ccc3d,_0x3cda1d(-0x1bc,-0x1ea)))return _0x2ccc3d;if(_0x26c53e['opena'+_0x3cda1d(-0x178,-0x18b)+'ey']||_0x56f673.env.OPENAI_API_KEY)return cwmHxG[_0x3cda1d(-0x165,-0x15d)];return cwmHxG['NSCDO'];}else try{if(_0x349f6d[_0x3cda1d(-0x1d9,-0x221)](_0x349f6d['WGqCq'],_0x349f6d['sOcsx']))switch(_0x446dc4){case _0x377862(-0x1c3,-0x1c9)+'i':{if(_0x349f6d[_0x377862(-0x1fe,-0x237)](_0x3cda1d(-0x1df,-0x216),_0x3cda1d(-0x176,-0x157))){const _0x26b7ee={};return _0x26b7ee[_0x377862(-0x1a9,-0x174)+'ss']=!![],_0x26b7ee[_0x3cda1d(-0x1d4,-0x18e)+_0x377862(-0x194,-0x1a5)]=_0x391631,_0x26b7ee[_0x3cda1d(-0x194,-0x1b7)+'ge']=_0x377862(-0x1d5,-0x19c)+_0x3cda1d(-0x150,-0x167)+_0x3cda1d(-0x1b1,-0x1f6)+_0x377862(-0x1e2,-0x22c)+_0x3cda1d(-0x1ce,-0x1ad)+_0x377862(-0x1c1,-0x20f)+'e\x20at\x20'+_0x454331,_0x26b7ee;}else{const _0x5aa6ad=_0x3ffe19['opena'+_0x3cda1d(-0x178,-0x1c7)+'ey']||process.env.OPENAI_API_KEY,_0x1ace12={};_0x1ace12['succe'+'ss']=![],_0x1ace12[_0x3cda1d(-0x1d4,-0x184)+_0x3cda1d(-0x17c,-0x1c3)]=_0x446dc4,_0x1ace12[_0x3cda1d(-0x15d,-0x12d)]=_0x349f6d[_0x3cda1d(-0x184,-0x176)];if(!_0x5aa6ad)return _0x1ace12;const _0xcfbd98={};return _0xcfbd98['succe'+'ss']=!![],_0xcfbd98[_0x3cda1d(-0x1d4,-0x1d7)+_0x377862(-0x194,-0x165)]=_0x446dc4,_0xcfbd98['messa'+'ge']=_0x349f6d[_0x377862(-0x1a7,-0x18e)],_0xcfbd98;}}case _0x377862(-0x17b,-0x1aa):{const _0x590e78=_0x3ffe19[_0x3cda1d(-0x151,-0x166)+_0x377862(-0x1e0,-0x1b2)]||process.env.GROQ_API_KEY,_0x1ce5d8={};_0x1ce5d8[_0x377862(-0x1a9,-0x168)+'ss']=![],_0x1ce5d8[_0x377862(-0x1ec,-0x228)+_0x3cda1d(-0x17c,-0x19f)]=_0x446dc4,_0x1ce5d8[_0x377862(-0x175,-0x19f)]='Groq\x20'+_0x377862(-0x16a,-0x1ab)+'ey\x20no'+_0x3cda1d(-0x153,-0x18b);if(!_0x590e78)return _0x1ce5d8;const _0x4c01bc={};return _0x4c01bc[_0x3cda1d(-0x191,-0x1bf)+'ss']=!![],_0x4c01bc[_0x377862(-0x1ec,-0x20b)+_0x377862(-0x194,-0x193)]=_0x446dc4,_0x4c01bc[_0x377862(-0x1ac,-0x177)+'ge']=_0x377862(-0x174,-0x1bb)+_0x377862(-0x16a,-0x14a)+_0x377862(-0x1b6,-0x172)+'\x20conf'+_0x3cda1d(-0x185,-0x1b5)+'d',_0x4c01bc;}case _0x349f6d[_0x3cda1d(-0x1eb,-0x1cf)]:{if(_0x349f6d['iAkTu'](_0x3cda1d(-0x149,-0x11e),_0x349f6d['aJuOa'])){const _0x3b247a=_0x1ce037['groqA'+_0x3cda1d(-0x1c8,-0x1a2)]||_0xa0dd1d.env.GROQ_API_KEY,_0xb9a74f={};_0xb9a74f[_0x3cda1d(-0x191,-0x14b)+'ss']=![],_0xb9a74f[_0x3cda1d(-0x1d4,-0x194)+_0x3cda1d(-0x17c,-0x14f)]=_0x1cc7fb,_0xb9a74f[_0x3cda1d(-0x15d,-0x198)]=_0x349f6d['DMMBh'];if(!_0x3b247a)return _0xb9a74f;const _0x34e12a={};return _0x34e12a[_0x3cda1d(-0x191,-0x16a)+'ss']=!![],_0x34e12a[_0x377862(-0x1ec,-0x20e)+_0x3cda1d(-0x17c,-0x174)]=_0x11affa,_0x34e12a[_0x377862(-0x1ac,-0x1c5)+'ge']=_0x377862(-0x174,-0x190)+_0x377862(-0x16a,-0x16e)+_0x377862(-0x1b6,-0x1cb)+'\x20conf'+_0x3cda1d(-0x185,-0x161)+'d',_0x34e12a;}else{const _0x59e866=_0x3ffe19[_0x3cda1d(-0x187,-0x1d1)+_0x3cda1d(-0x1b2,-0x1ed)+_0x3cda1d(-0x1ea,-0x20b)+'l']||process.env.FASTER_WHISPER_URL,_0x3ae355={};_0x3ae355['succe'+'ss']=![],_0x3ae355['provi'+_0x377862(-0x194,-0x16f)]=_0x446dc4,_0x3ae355[_0x377862(-0x175,-0x18a)]='Faste'+_0x377862(-0x168,-0x1a9)+_0x377862(-0x1c9,-0x1e0)+_0x3cda1d(-0x1ca,-0x217)+'r\x20URL'+_0x3cda1d(-0x18c,-0x1da)+_0x3cda1d(-0x1bf,-0x196);if(!_0x59e866)return _0x3ae355;try{if(_0x349f6d[_0x3cda1d(-0x1e6,-0x1e4)](_0x3cda1d(-0x1e5,-0x1c7),_0x349f6d['TCuYY'])){const _0x9414fc=new AbortController(),_0x75fd18=_0x349f6d[_0x377862(-0x1e4,-0x194)](setTimeout,()=>_0x9414fc[_0x377862(-0x1d8,-0x1b7)](),-0x183*-0xa+-0xfe5+0x144f),_0x33b3a0={};_0x33b3a0['signa'+'l']=_0x9414fc[_0x3cda1d(-0x196,-0x15c)+'l'];const _0x5c032a=await _0x349f6d[_0x377862(-0x1e4,-0x1da)](fetch,_0x59e866[_0x377862(-0x1cc,-0x1a2)+'ce'](/\/+$/,'')+(_0x3cda1d(-0x155,-0x106)+'th'),_0x33b3a0)['catch'](()=>null);clearTimeout(_0x75fd18);if(_0x5c032a){const _0x515d12={};return _0x515d12[_0x3cda1d(-0x191,-0x1da)+'ss']=!![],_0x515d12[_0x3cda1d(-0x1d4,-0x1b6)+_0x377862(-0x194,-0x176)]=_0x446dc4,_0x515d12[_0x377862(-0x1ac,-0x17a)+'ge']=_0x3cda1d(-0x1bd,-0x1c0)+_0x3cda1d(-0x150,-0x10f)+_0x377862(-0x1c9,-0x1c2)+_0x377862(-0x1e2,-0x19e)+_0x3cda1d(-0x1ce,-0x1db)+_0x3cda1d(-0x1a9,-0x1d7)+'e\x20at\x20'+_0x59e866,_0x515d12;}const _0x36f222=new AbortController(),_0xeebce0=_0x349f6d[_0x3cda1d(-0x1cc,-0x1f6)](setTimeout,()=>_0x36f222['abort'](),-0x744+0xc1b*0x2+0x296),_0x155b48={};_0x155b48['signa'+'l']=_0x36f222[_0x377862(-0x1ae,-0x191)+'l'];const _0x16e0fc=await _0x349f6d['AhuRK'](fetch,_0x59e866[_0x3cda1d(-0x1b4,-0x19b)+'ce'](/\/+$/,''),_0x155b48)[_0x377862(-0x188,-0x145)](()=>null);_0x349f6d[_0x377862(-0x193,-0x1ad)](clearTimeout,_0xeebce0);if(_0x16e0fc){const _0x35613a={};return _0x35613a[_0x377862(-0x1a9,-0x1d1)+'ss']=!![],_0x35613a[_0x377862(-0x1ec,-0x1f0)+_0x377862(-0x194,-0x178)]=_0x446dc4,_0x35613a['messa'+'ge']=_0x3cda1d(-0x1bd,-0x180)+'r-Whi'+_0x3cda1d(-0x1b1,-0x1a0)+_0x3cda1d(-0x1ca,-0x18b)+'r\x20rea'+_0x3cda1d(-0x1a9,-0x195)+_0x3cda1d(-0x1a8,-0x183)+_0x59e866,_0x35613a;}const _0x2aadf7={};return _0x2aadf7[_0x3cda1d(-0x191,-0x1d2)+'ss']=![],_0x2aadf7['provi'+_0x3cda1d(-0x17c,-0x148)]=_0x446dc4,_0x2aadf7[_0x3cda1d(-0x15d,-0x179)]=_0x377862(-0x196,-0x197)+'t\x20rea'+_0x377862(-0x1d2,-0x1f7)+'ster-'+'Whisp'+_0x377862(-0x18f,-0x16f)+_0x377862(-0x1f9,-0x1be)+'at\x20'+_0x59e866,_0x2aadf7;}else{const _0x5be908={};return _0x5be908[_0x3cda1d(-0x191,-0x190)+'ss']=![],_0x5be908[_0x3cda1d(-0x1d4,-0x18c)+_0x377862(-0x194,-0x185)]=_0x234937,_0x5be908[_0x3cda1d(-0x15d,-0x190)]=_0x377862(-0x196,-0x1bc)+_0x3cda1d(-0x19a,-0x166)+'ch\x20Fa'+_0x377862(-0x200,-0x1f9)+_0x3cda1d(-0x1db,-0x205)+_0x377862(-0x18f,-0x15e)+_0x377862(-0x1f9,-0x1d2)+'at\x20'+_0x2309c7,_0x5be908;}}catch{if(_0x349f6d[_0x3cda1d(-0x159,-0x174)](_0x349f6d[_0x3cda1d(-0x169,-0x12e)],_0x349f6d[_0x377862(-0x181,-0x13a)]))return cwmHxG[_0x377862(-0x17d,-0x1c1)];else{const _0x186840={};return _0x186840[_0x377862(-0x1a9,-0x1a3)+'ss']=![],_0x186840[_0x377862(-0x1ec,-0x1f5)+_0x3cda1d(-0x17c,-0x1ac)]=_0x446dc4,_0x186840['error']=_0x3cda1d(-0x17e,-0x1bc)+_0x3cda1d(-0x19a,-0x1da)+_0x377862(-0x1d2,-0x184)+_0x377862(-0x200,-0x238)+_0x3cda1d(-0x1db,-0x215)+_0x377862(-0x18f,-0x198)+_0x3cda1d(-0x1e1,-0x217)+_0x377862(-0x1bf,-0x18b)+_0x59e866,_0x186840;}}}}default:const _0x5d85a7={};_0x5d85a7[_0x377862(-0x1a9,-0x18d)+'ss']=![],_0x5d85a7[_0x3cda1d(-0x1d4,-0x1d8)+_0x377862(-0x194,-0x1b6)]=_0x446dc4,_0x5d85a7[_0x377862(-0x175,-0x1bd)]=_0x3cda1d(-0x1cd,-0x20d)+_0x3cda1d(-0x1aa,-0x1e6)+_0x377862(-0x16f,-0x1a8)+_0x3cda1d(-0x1c1,-0x178)+_0x446dc4;return _0x5d85a7;}else{const _0x3849a9={};return _0x3849a9[_0x3cda1d(-0x191,-0x1a2)+'ss']=![],_0x3849a9[_0x377862(-0x1ec,-0x227)+_0x377862(-0x194,-0x1e2)]=_0x593f48,_0x3849a9['error']=_0x35500d[_0x3cda1d(-0x194,-0x1bf)+'ge'],_0x3849a9;}}catch(_0x32303e){if(_0x349f6d[_0x377862(-0x1f8,-0x235)](_0x349f6d[_0x3cda1d(-0x16b,-0x17e)],_0x349f6d[_0x377862(-0x17e,-0x181)])){const _0x4e8a40={};return _0x4e8a40[_0x3cda1d(-0x191,-0x194)+'ss']=![],_0x4e8a40[_0x377862(-0x1ec,-0x1a7)+_0x3cda1d(-0x17c,-0x1b9)]=_0x446dc4,_0x4e8a40[_0x3cda1d(-0x15d,-0x129)]=_0x32303e[_0x3cda1d(-0x194,-0x1b8)+'ge'],_0x4e8a40;}else{const _0x296fe9=_0xa268c0[_0x377862(-0x1c3,-0x179)+_0x377862(-0x190,-0x151)+'ey']||_0x532c4e.env.OPENAI_API_KEY,_0x142abb={};_0x142abb[_0x377862(-0x1a9,-0x19c)+'ss']=![],_0x142abb[_0x3cda1d(-0x1d4,-0x203)+_0x3cda1d(-0x17c,-0x173)]=_0x4e0dde,_0x142abb[_0x377862(-0x175,-0x188)]=_0x349f6d[_0x377862(-0x19c,-0x1d1)];if(!_0x296fe9)return _0x142abb;const _0x2ea638={};return _0x2ea638[_0x3cda1d(-0x191,-0x1b3)+'ss']=!![],_0x2ea638['provi'+_0x3cda1d(-0x17c,-0x1c9)]=_0x5ca4aa,_0x2ea638[_0x3cda1d(-0x194,-0x164)+'ge']=_0x349f6d[_0x3cda1d(-0x18f,-0x1d6)],_0x2ea638;}}}function _0x377862(_0x4174a2,_0x4bee4c){return _0x552c7f(_0x4174a2- -0x460,_0x4bee4c);}try{const _0x23eba5=await _0x349f6d['CRzxw'](transcribe,_0x1086d9),_0x5354cd={};return _0x5354cd['succe'+'ss']=!![],_0x5354cd[_0x377862(-0x1ec,-0x1d0)+'der']=_0x446dc4,_0x5354cd[_0x3cda1d(-0x1b7,-0x206)+_0x3cda1d(-0x1d2,-0x217)+_0x377862(-0x1ee,-0x1c8)]=_0x23eba5,_0x5354cd;}catch(_0x4aed74){if(_0x349f6d[_0x3cda1d(-0x17d,-0x19f)]('VPfNQ',_0x349f6d[_0x377862(-0x1f5,-0x202)])){const _0x19341a={};return _0x19341a[_0x377862(-0x1a9,-0x172)+'ss']=![],_0x19341a[_0x377862(-0x1ec,-0x1da)+_0x377862(-0x194,-0x143)]=_0x5f2f7f,_0x19341a[_0x377862(-0x175,-0x17e)]=_0xce8614[_0x3cda1d(-0x194,-0x162)+'ge'],_0x19341a;}else{const _0x5afceb={};return _0x5afceb[_0x377862(-0x1a9,-0x1d8)+'ss']=![],_0x5afceb[_0x3cda1d(-0x1d4,-0x18e)+_0x3cda1d(-0x17c,-0x13c)]=_0x446dc4,_0x5afceb[_0x377862(-0x175,-0x1a3)]=_0x4aed74['messa'+'ge'],_0x5afceb;}}}
@@ -1 +1 @@
1
- function _0x34bd(_0x3a4a1d,_0x1da572){_0x3a4a1d=_0x3a4a1d-(0x16*-0x15a+-0x65*0x29+0x2f11*0x1);const _0x232d4d=_0x1454();let _0x4a5ff9=_0x232d4d[_0x3a4a1d];return _0x4a5ff9;}(function(_0x498025,_0x474150){function _0x2a482a(_0x124661,_0x3015e0){return _0x34bd(_0x3015e0- -0x183,_0x124661);}const _0x3c09c8=_0x498025();function _0x5d693c(_0x265122,_0x5375e9){return _0x34bd(_0x265122-0x268,_0x5375e9);}while(!![]){try{const _0x2ba4f8=parseInt(_0x5d693c(0x3c5,0x3d2))/(0x2636*-0x1+0x22f2+0x345)*(-parseInt(_0x5d693c(0x3a2,0x39c))/(0x110+-0x1*0x1797+0x3*0x783))+-parseInt(_0x5d693c(0x3aa,0x3c0))/(-0x210a+0x7ec+0x1921)+parseInt(_0x2a482a(-0x3d,-0x55))/(0x22e1+-0x5*-0x159+-0x299a)+parseInt(_0x2a482a(-0x74,-0x56))/(-0x1ff1+-0x7*-0x3c9+0x577*0x1)+parseInt(_0x5d693c(0x3a4,0x3be))/(-0xa*0x87+0x93d+-0x3f1)*(parseInt(_0x2a482a(-0x4e,-0x32))/(0x1c4*-0x1+-0x1*0xb4e+0xd19))+-parseInt(_0x2a482a(-0x39,-0x2e))/(0x44d+0x21+-0x466)+parseInt(_0x2a482a(-0x5c,-0x52))/(0xd*-0x123+0x56*-0x65+0x2de*0x11);if(_0x2ba4f8===_0x474150)break;else _0x3c09c8['push'](_0x3c09c8['shift']());}catch(_0x1167e7){_0x3c09c8['push'](_0x3c09c8['shift']());}}}(_0x1454,-0x2ae*-0x85+-0x438ca+0x1720*0x4f));const _0x5a746e=(function(){let _0xa960e5=!![];return function(_0x721253,_0x292af6){const _0xff7be8=_0xa960e5?function(){function _0x7e3c7(_0xea8474,_0x2255b9){return _0x34bd(_0x2255b9- -0x9e,_0xea8474);}if(_0x292af6){const _0x80daa7=_0x292af6[_0x7e3c7(0xaa,0x8d)](_0x721253,arguments);return _0x292af6=null,_0x80daa7;}}:function(){};return _0xa960e5=![],_0xff7be8;};}()),_0x425a96=_0x5a746e(this,function(){const _0x32dbbf={};_0x32dbbf[_0x43b5fc(0x34e,0x32e)]=_0x43b5fc(0x354,0x34e)+_0x43b5fc(0x315,0x323)+'+$';function _0x43b5fc(_0x3908bc,_0x5a9513){return _0x34bd(_0x5a9513-0x1f7,_0x3908bc);}function _0x5928fe(_0x1c9570,_0x5cc96c){return _0x34bd(_0x1c9570- -0x388,_0x5cc96c);}const _0x5a1436=_0x32dbbf;return _0x425a96[_0x5928fe(-0x228,-0x220)+_0x43b5fc(0x374,0x35c)]()[_0x5928fe(-0x245,-0x256)+'h'](_0x5a1436['aGxDv'])[_0x5928fe(-0x228,-0x21b)+_0x5928fe(-0x223,-0x20e)]()[_0x43b5fc(0x302,0x321)+_0x43b5fc(0x336,0x343)+'r'](_0x425a96)['searc'+'h'](_0x5928fe(-0x231,-0x22f)+_0x43b5fc(0x30e,0x323)+'+$');});function _0x1454(){const _0x25ecd7=['\x20key\x20','aGxDv','qFsfC','Beare','2byVAaS','brpns','199212iWgShk','Autho','nai.c','\x20-\x20','ured','odel','903348UqzyJy','searc','JkdTD','/audi','I\x20API','model','opena','fuMGs','file','iApiK','ructo','i.ope','slice','zMddJ','sper\x20','63qvWwuQ','ption','onfig','https','3761632YfUulO','type','(((.+','FZiOJ','appen','webm','text','whisp','530445rhkGkJ','OpenA','gKNSh','toStr','er-1','nscri','iSttM','extna','ing','statu','ion','readF','const','apply',')+)+)','797570Zvodrm','2017804wtftca','API\x20e','ile','5590962qSYUBA','POST','json','age','audio'];_0x1454=function(){return _0x25ecd7;};return _0x1454();}_0x425a96();import _0x533ecd from'fs/promises';import _0x79f3a3 from'path';export async function transcribe(_0x57abfd,_0x4af303){const _0x525d04={};_0x525d04[_0x4bb522(-0x5c,-0x43)]=_0x40b699(0x4d9,0x4bb)+_0x4bb522(-0x20,-0x35)+_0x4bb522(-0x4d,-0x45)+'not\x20c'+_0x4bb522(-0x3a,-0x28)+_0x4bb522(-0x39,-0x3b);function _0x40b699(_0x542b99,_0x3f844a){return _0x34bd(_0x3f844a-0x35d,_0x542b99);}_0x525d04[_0x40b699(0x4b4,0x4bc)]=_0x4bb522(-0x29,-0x21),_0x525d04[_0x4bb522(-0x3c,-0x37)]=_0x4bb522(-0x4e,-0x31),_0x525d04[_0x4bb522(-0x46,-0x32)]=_0x40b699(0x489,0x4a4),_0x525d04[_0x4bb522(-0x15,-0x2c)]='langu'+_0x40b699(0x48d,0x491),_0x525d04[_0x4bb522(-0x22,-0x23)]=_0x4bb522(-0x1c,-0x27)+'://ap'+_0x4bb522(-0x1c,-0x2e)+_0x40b699(0x47f,0x49b)+'om/v1'+_0x40b699(0x498,0x4a2)+'o/tra'+_0x4bb522(-0x2b,-0x19)+_0x40b699(0x49b,0x4af)+'s',_0x525d04[_0x40b699(0x47e,0x498)]=_0x4bb522(-0x66,-0x49);function _0x4bb522(_0x428e64,_0x1ea191){return _0x34bd(_0x1ea191- -0x17b,_0x428e64);}const _0x34ba84=_0x525d04,_0x11e09a=_0x4af303[_0x40b699(0x49c,0x4a5)+_0x40b699(0x4ad,0x4a8)+'ey']||process.env.OPENAI_API_KEY;if(!_0x11e09a)throw new Error(_0x34ba84[_0x40b699(0x477,0x495)]);const _0x4ed170=_0x4af303['opena'+_0x4bb522(-0x2d,-0x18)+_0x4bb522(-0x4b,-0x3a)]||_0x40b699(0x4c7,0x4b9)+_0x4bb522(-0x13,-0x1a),_0x21627f=await _0x533ecd[_0x40b699(0x483,0x486)+_0x4bb522(-0x3f,-0x4b)](_0x57abfd),_0x3ebab8=_0x79f3a3[_0x40b699(0x4b6,0x4c1)+'me'](_0x57abfd)[_0x4bb522(-0x12,-0x2d)](0x245f+0x1144+-0x35a2)||_0x34ba84[_0x4bb522(-0x33,-0x1c)],_0xc4054c={};_0xc4054c[_0x4bb522(-0x19,-0x25)]='audio'+'/'+_0x3ebab8;const _0x468992=new Blob([_0x21627f],_0xc4054c),_0x120b99=new FormData();_0x120b99[_0x4bb522(-0x33,-0x22)+'d'](_0x34ba84[_0x4bb522(-0x1f,-0x37)],_0x468992,_0x40b699(0x49d,0x492)+'.'+_0x3ebab8),_0x120b99['appen'+'d'](_0x34ba84[_0x4bb522(-0x30,-0x32)],_0x4ed170),_0x120b99['appen'+'d'](_0x34ba84['zMddJ'],'en');const _0x11ff95={};_0x11ff95[_0x4bb522(-0x20,-0x3e)+'rizat'+_0x4bb522(-0x41,-0x53)]=_0x40b699(0x4a1,0x496)+'r\x20'+_0x11e09a;const _0x5e4130=await fetch(_0x34ba84[_0x4bb522(-0x35,-0x23)],{'method':_0x34ba84[_0x4bb522(-0x31,-0x40)],'headers':_0x11ff95,'body':_0x120b99});if(!_0x5e4130['ok']){const _0x2b5b13=await _0x5e4130[_0x4bb522(-0x2e,-0x20)]();throw new Error(_0x40b699(0x4d0,0x4bb)+'I\x20Whi'+_0x4bb522(-0x29,-0x2b)+_0x40b699(0x49a,0x48c)+'rror:'+'\x20'+_0x5e4130[_0x4bb522(-0x34,-0x15)+'s']+_0x4bb522(-0x2c,-0x3c)+_0x2b5b13);}const _0x12e24a=await _0x5e4130[_0x40b699(0x476,0x490)]();return _0x12e24a['text']||'';}
1
+ (function(_0x2f53b6,_0x41decf){function _0x4651d8(_0x5ab6ab,_0x38161e){return _0x71ba(_0x5ab6ab-0x17a,_0x38161e);}const _0x28e572=_0x2f53b6();function _0x523c97(_0x116558,_0x2f58f9){return _0x71ba(_0x116558-0x209,_0x2f58f9);}while(!![]){try{const _0x36ce9a=-parseInt(_0x4651d8(0x219,0x204))/(-0x2*-0x74a+-0x3*-0x377+0x63e*-0x4)+parseInt(_0x523c97(0x2c3,0x2cb))/(-0x10f*-0x1f+0x1edc+-0x1539*0x3)+-parseInt(_0x4651d8(0x239,0x243))/(0x19cb+0x865+-0x222d)*(-parseInt(_0x4651d8(0x241,0x256))/(-0x1fa4+-0x2125+0x40cd))+parseInt(_0x523c97(0x2a1,0x294))/(0x1faa+0x3b3+-0x3a*0x9c)+parseInt(_0x523c97(0x2c9,0x2c8))/(0xc24+-0x16*0xda+0x4d*0x16)+-parseInt(_0x523c97(0x2a4,0x29d))/(0x19d5+0x2ba*0x2+0x1f42*-0x1)*(parseInt(_0x4651d8(0x218,0x231))/(0x60d+0x1aff+0x1082*-0x2))+parseInt(_0x4651d8(0x227,0x221))/(0x5ad*-0x5+-0x215c+0x3dc6)*(-parseInt(_0x4651d8(0x240,0x239))/(-0x2b*-0x3c+-0x11d7+0x7cd*0x1));if(_0x36ce9a===_0x41decf)break;else _0x28e572['push'](_0x28e572['shift']());}catch(_0x2c9a9a){_0x28e572['push'](_0x28e572['shift']());}}}(_0x59e0,0x10f1d6+-0x86cc5*-0x2+0x125*-0x139d));const _0x40772d=(function(){let _0x482767=!![];return function(_0x50e4b8,_0x50302b){const _0x3970d5=_0x482767?function(){function _0x40f36(_0x34f20e,_0x3ba3c9){return _0x71ba(_0x3ba3c9- -0x18b,_0x34f20e);}if(_0x50302b){const _0x1b4a98=_0x50302b[_0x40f36(-0xf1,-0xf2)](_0x50e4b8,arguments);return _0x50302b=null,_0x1b4a98;}}:function(){};return _0x482767=![],_0x3970d5;};}()),_0x55a7b7=_0x40772d(this,function(){function _0x1bf907(_0x2c2fa0,_0x876718){return _0x71ba(_0x876718- -0x28a,_0x2c2fa0);}const _0x589cee={};_0x589cee[_0x504930(-0x306,-0x311)]=_0x1bf907(-0x1cd,-0x1c6)+_0x1bf907(-0x1d6,-0x1cd)+'+$';const _0x22c507=_0x589cee;function _0x504930(_0xbc5f02,_0x1ca947){return _0x71ba(_0x1ca947- -0x3a6,_0xbc5f02);}return _0x55a7b7['toStr'+'ing']()[_0x1bf907(-0x208,-0x1f7)+'h'](_0x22c507[_0x1bf907(-0x209,-0x1f5)])['toStr'+'ing']()['const'+_0x504930(-0x2f6,-0x2f1)+'r'](_0x55a7b7)[_0x504930(-0x2f9,-0x313)+'h'](_0x22c507['ukGVH']);});_0x55a7b7();import _0x679cbf from'fs/promises';function _0x71ba(_0x27186a,_0x5ccf39){_0x27186a=_0x27186a-(0x7c2*0x3+0x18f4*-0x1+0x241);const _0x89ed0c=_0x59e0();let _0x6f7d22=_0x89ed0c[_0x27186a];return _0x6f7d22;}import _0x52e148 from'path';export async function transcribe(_0x32c3ad,_0x5e666c){const _0x4a43f3={'juDxA':_0x11d508(-0x1fe,-0x1e4)+'I\x20API'+_0x25322f(0xc0,0xc4)+'not\x20c'+_0x11d508(-0x1ed,-0x1f5)+_0x25322f(0xb7,0xa6),'nHVqj':_0x11d508(-0x1e6,-0x1d2)+'er-1','BoEVv':_0x25322f(0xb1,0xbb),'ZMeyx':_0x11d508(-0x1d2,-0x1ec),'QPTan':'model','SpNhg':function(_0x5a710e,_0x56fefa,_0x44cf0c){return _0x5a710e(_0x56fefa,_0x44cf0c);}},_0x29d505=_0x5e666c['opena'+_0x25322f(0xa0,0xb2)+'ey']||process.env.OPENAI_API_KEY;if(!_0x29d505)throw new Error(_0x4a43f3[_0x11d508(-0x201,-0x212)]);const _0x4e0d15=_0x5e666c[_0x25322f(0xd5,0xc0)+_0x25322f(0x8e,0xa5)+_0x11d508(-0x1eb,-0x1f4)]||_0x4a43f3[_0x25322f(0xac,0xc5)],_0x297d1e=await _0x679cbf[_0x11d508(-0x1e7,-0x1fc)+_0x25322f(0xa0,0x9f)](_0x32c3ad);function _0x11d508(_0x56f05d,_0x363671){return _0x71ba(_0x56f05d- -0x295,_0x363671);}const _0x425d87=_0x52e148['extna'+'me'](_0x32c3ad)[_0x11d508(-0x1f0,-0x204)](-0x1*-0x522+-0x256a+0x675*0x5)||_0x4a43f3[_0x25322f(0xa1,0xaf)],_0x2f844b={};_0x2f844b['type']=_0x11d508(-0x1cb,-0x1bf)+'/'+_0x425d87;const _0x387e9e=new Blob([_0x297d1e],_0x2f844b),_0x241d2e=new FormData();_0x241d2e['appen'+'d'](_0x4a43f3['ZMeyx'],_0x387e9e,_0x25322f(0xcc,0xd3)+'.'+_0x425d87),_0x241d2e[_0x25322f(0x94,0xb0)+'d'](_0x4a43f3[_0x11d508(-0x1df,-0x1e7)],_0x4e0d15);function _0x25322f(_0x523f5f,_0x427fd1){return _0x71ba(_0x427fd1-0x9,_0x523f5f);}_0x241d2e['appen'+'d']('langu'+_0x25322f(0xd1,0xc2),'en');const _0x5217fe={};_0x5217fe[_0x11d508(-0x1e4,-0x1f6)+_0x25322f(0x9f,0xac)+_0x11d508(-0x1f1,-0x200)]=_0x11d508(-0x1d3,-0x1e0)+'r\x20'+_0x29d505;const _0x148709={};_0x148709['metho'+'d']=_0x25322f(0xad,0xbc),_0x148709[_0x11d508(-0x1e5,-0x1e8)+'rs']=_0x5217fe,_0x148709['body']=_0x241d2e;const _0x208337=await _0x4a43f3['SpNhg'](fetch,_0x25322f(0xce,0xd1)+_0x25322f(0xcd,0xb5)+_0x25322f(0xaa,0xa9)+_0x11d508(-0x1e1,-0x1f0)+'om/v1'+_0x11d508(-0x1cc,-0x1b9)+'o/tra'+_0x25322f(0xac,0xc1)+_0x11d508(-0x1f3,-0x20e)+'s',_0x148709);if(!_0x208337['ok']){const _0x10d1bf=await _0x208337[_0x25322f(0x8c,0xa3)]();throw new Error(_0x25322f(0xb7,0xa0)+_0x25322f(0xa5,0xaa)+_0x25322f(0xb4,0xce)+_0x25322f(0xae,0xca)+_0x11d508(-0x1ea,-0x1d8)+'\x20'+_0x208337['statu'+'s']+'\x20-\x20'+_0x10d1bf);}const _0x36d9dd=await _0x208337[_0x25322f(0xd5,0xc7)]();return _0x36d9dd[_0x11d508(-0x1fb,-0x213)]||'';}function _0x59e0(){const _0x3aee22=['text','2947lxKUqA','iSttM','ured','7152wwBJUh','1153399TZRhoc','i.ope','I\x20Whi','ption','rizat','ion','slice','BoEVv','appen','onfig','iApiK','odel','rror:','://ap','18fEEAKz','readF','whisp','heade','Autho','webm','POST','nai.c','ructo','QPTan','opena','nscri','age','953106WXoCkM','\x20key\x20','nHVqj',')+)+)','json','474HkqFnx','3981846DoExFs','API\x20e','Beare','file','(((.+','sper\x20','2993830gOJEXL','24212pSGBMa','https','/audi','audio','searc','juDxA','ukGVH','ile','OpenA','3877850PnTyQB','apply'];_0x59e0=function(){return _0x3aee22;};return _0x59e0();}