opclawtm 1.4.7 → 1.4.9
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.
Potentially problematic release.
This version of opclawtm might be problematic. Click here for more details.
- package/dist/bin/team-manager.d.ts +1 -1
- package/dist/bin/team-manager.js +35 -1
- package/dist/bin/team-setup.js +65 -1
- package/dist/bin/team-setup.js.map +1 -1
- package/dist/bin/team-uninstall.js +103 -1
- package/dist/bin/team-uninstall.js.map +1 -1
- package/dist/cli/commands/agent.command.js +223 -1
- package/dist/cli/commands/checklist.command.js +77 -1
- package/dist/cli/commands/dept.command.js +119 -1
- package/dist/cli/commands/document.command.js +146 -1
- package/dist/cli/commands/domain.command.js +97 -1
- package/dist/cli/commands/feishu.command.d.ts +1 -1
- package/dist/cli/commands/feishu.command.js +433 -1
- package/dist/cli/commands/feishu.command.js.map +1 -1
- package/dist/cli/commands/job.command.js +168 -1
- package/dist/cli/commands/license.command.js +68 -1
- package/dist/cli/commands/message-failure.command.js +137 -1
- package/dist/cli/commands/message.command.js +129 -1
- package/dist/cli/commands/node.command.js +251 -1
- package/dist/cli/commands/role-flow.command.js +54 -1
- package/dist/cli/commands/skill-pack.command.js +137 -1
- package/dist/cli/commands/status.command.js +61 -1
- package/dist/cli/commands/task.command.js +402 -1
- package/dist/cli/commands/user.command.d.ts +4 -4
- package/dist/cli/commands/user.command.js +134 -1
- package/dist/cli/index.js +871 -1
- package/dist/cli/tui/index.d.ts.map +1 -1
- package/dist/cli/tui/index.js +492 -1
- package/dist/cli/tui/index.js.map +1 -1
- package/dist/cli/tui/menus/agent-manage.menu.js +614 -1
- package/dist/cli/tui/menus/dept-manage.menu.js +299 -1
- package/dist/cli/tui/menus/domain-manage.menu.js +208 -1
- package/dist/cli/tui/menus/feishu.menu.js +1738 -1
- package/dist/cli/tui/menus/feishu.menu.js.map +1 -1
- package/dist/cli/tui/menus/job-manage.menu.js +734 -1
- package/dist/cli/tui/menus/license.menu.js +164 -1
- package/dist/cli/tui/menus/main.menu.js +94 -1
- package/dist/cli/tui/menus/reset.menu.js +767 -1
- package/dist/cli/tui/menus/reset.menu.js.map +1 -1
- package/dist/cli/tui/menus/status.menu.js +123 -1
- package/dist/cli/tui/menus/task-manage.menu.js +129 -1
- package/dist/cli/tui/menus/team-create.menu.js +353 -1
- package/dist/config.js +74 -1
- package/dist/core/auth/index.js +22 -1
- package/dist/core/auth/middleware.js +456 -1
- package/dist/core/auth/storage.js +280 -1
- package/dist/core/models/types.js +9 -1
- package/dist/core/services/agent-template.service.js +88 -1
- package/dist/core/services/agent.service.js +381 -1
- package/dist/core/services/auth-profiles.service.js +220 -1
- package/dist/core/services/checklist.service.js +240 -1
- package/dist/core/services/config-tracker.service.js +1093 -1
- package/dist/core/services/config-tracker.service.js.map +1 -1
- package/dist/core/services/crypto.service.d.ts.map +1 -1
- package/dist/core/services/crypto.service.js +400 -1
- package/dist/core/services/crypto.service.js.map +1 -1
- package/dist/core/services/dept.service.js +260 -1
- package/dist/core/services/document.service.js +368 -1
- package/dist/core/services/domain.service.js +98 -1
- package/dist/core/services/feishu.service.js +165 -1
- package/dist/core/services/index.js +89 -1
- package/dist/core/services/job.service.js +190 -1
- package/dist/core/services/log.service.js +237 -1
- package/dist/core/services/message-failure.service.js +112 -1
- package/dist/core/services/message.service.js +374 -1
- package/dist/core/services/message.service.js.map +1 -1
- package/dist/core/services/node.service.js +257 -1
- package/dist/core/services/openclaw-config.service.js +268 -1
- package/dist/core/services/preset-loader.service.js +379 -1
- package/dist/core/services/preset-loader.service.js.map +1 -1
- package/dist/core/services/role-flow.service.js +47 -1
- package/dist/core/services/setup.service.d.ts.map +1 -1
- package/dist/core/services/setup.service.js +337 -1
- package/dist/core/services/setup.service.js.map +1 -1
- package/dist/core/services/skill-pack.service.js +113 -1
- package/dist/core/services/task.service.js +397 -1
- package/dist/core/services/template.service.js +88 -1
- package/dist/core/services/user.service.js +111 -1
- package/dist/core/utils/agent-guide-generator.js +187 -1
- package/dist/core/utils/credentials-cleanup.js +256 -1
- package/dist/core/utils/index.js +462 -1
- package/dist/core/utils/openclaw-helper.d.ts +1 -1
- package/dist/core/utils/openclaw-helper.js +1632 -1
- package/dist/core/utils/template-generator.js +170 -1
- package/dist/db/index.d.ts.map +1 -1
- package/dist/db/index.js +405 -1
- package/dist/db/index.js.map +1 -1
- package/dist/db/repositories/agent-template.repo.js +108 -1
- package/dist/db/repositories/agent.repo.js +103 -1
- package/dist/db/repositories/base.repository.js +107 -1
- package/dist/db/repositories/company.repo.js +33 -1
- package/dist/db/repositories/config-change.repo.js +119 -1
- package/dist/db/repositories/dept.repo.js +66 -1
- package/dist/db/repositories/document.repo.js +51 -1
- package/dist/db/repositories/domain.repo.js +79 -1
- package/dist/db/repositories/index.js +81 -1
- package/dist/db/repositories/init-session.repo.js +112 -1
- package/dist/db/repositories/job.repo.js +119 -1
- package/dist/db/repositories/message-failure.repo.js +141 -1
- package/dist/db/repositories/message-log.repo.js +64 -1
- package/dist/db/repositories/node.repo.js +276 -1
- package/dist/db/repositories/role-flow.repo.js +83 -1
- package/dist/db/repositories/skill-pack.repo.js +149 -1
- package/dist/db/repositories/task.repo.js +381 -1
- package/dist/db/repositories/template.repo.js +66 -1
- package/dist/db/repositories/user.repo.js +75 -1
- package/package.json +1 -1
- package/resources/preset-data-hash.enc +1 -1
- package/resources/preset-data.enc +1 -1
|
@@ -1 +1,381 @@
|
|
|
1
|
-
'use strict';(function(_0x3521b4,_0x46b454){const _0xd23df4={_0x524f61:0x168,_0x1af283:0x220,_0x340c66:0x5e4,_0x1e1065:'5@iN',_0x29fcad:0x64b,_0x56ad75:0x14c,_0x2d807c:0x123,_0x271ac1:0x33,_0x1aadb1:0x16b,_0x3f2bfe:0x137,_0x23b957:'L&X]',_0x378817:0x1d5,_0x192b8e:'fBj^',_0x52a909:0x161,_0x331e7f:0x2b2,_0x15db3c:0x24f,_0xb0580f:0x253,_0xb8fcba:'7!da',_0x3c593e:0x126,_0x31d1f2:0x2c,_0x1824ab:0x279,_0xbde245:0x216},_0xb2ca23={_0x34fbe2:0x140},_0x243b8b={_0x4a78c9:0x2c6},_0x78e9d3=_0x3521b4();function _0x4a9298(_0x4de401,_0xb81576,_0x203066,_0x35f64b){return _0x32ca(_0xb81576-_0x243b8b._0x4a78c9,_0x203066);}function _0x581dfb(_0x20e036,_0x30fdb5,_0x2d2c94,_0x4a2cab){return _0x32ca(_0x2d2c94- -_0xb2ca23._0x34fbe2,_0x30fdb5);}while(!![]){try{const _0x35de3d=-parseInt(_0x581dfb(_0xd23df4._0x524f61,'NLEw',0x1d7,_0xd23df4._0x1af283))/(0x1f0d+-0x1f2b+0x1f)*(parseInt(_0x4a9298(_0xd23df4._0x340c66,0x600,_0xd23df4._0x1e1065,_0xd23df4._0x29fcad))/(0x5b1*0x1+-0xe*-0x7b+0x1*-0xc69))+parseInt(_0x581dfb(0x28f,'ETU]',_0xd23df4._0x56ad75,0xf2))/(0x27*-0x15+0x9e4+-0x6ae)+parseInt(_0x581dfb(0x19f,'n1Xg',_0xd23df4._0x2d807c,-_0xd23df4._0x271ac1))/(-0x2b*0x2+0x59*0x59+0x29*-0xbf)*(parseInt(_0x581dfb(0x115,'Z9p(',_0xd23df4._0x1aadb1,0xcc))/(0x1e8*-0xc+0x3*0x49+0x160a))+-parseInt(_0x581dfb(_0xd23df4._0x3f2bfe,_0xd23df4._0x23b957,0x182,0x41))/(-0x14bf*0x1+0x17b7+-0x2f2)*(-parseInt(_0x581dfb(_0xd23df4._0x378817,_0xd23df4._0x192b8e,_0xd23df4._0x52a909,_0xd23df4._0x331e7f))/(0x1a0f+0x16df+-0x75*0x6b))+-parseInt(_0x581dfb(0x192,'7!da',_0xd23df4._0x15db3c,_0xd23df4._0xb0580f))/(0x631+-0x2503+0x16*0x167)+parseInt(_0x581dfb(0x287,'JwR8',0x26a,0x2e0))/(-0x54a+-0x1ee2+0x1f*0x12b)*(parseInt(_0x4a9298(0x400,0x51f,_0xd23df4._0xb8fcba,0x4c2))/(0x5*-0xb5+0x89*0x3f+-0x1e24))+-parseInt(_0x581dfb(0x11,'S66V',_0xd23df4._0x3c593e,_0xd23df4._0x31d1f2))/(0xbc*0x2b+-0x11fd+-0xd8c)*(-parseInt(_0x581dfb(0x207,'4bJu',_0xd23df4._0x1824ab,_0xd23df4._0xbde245))/(-0x1d6b*-0x1+-0x9bc+-0x13a3*0x1));if(_0x35de3d===_0x46b454)break;else _0x78e9d3['push'](_0x78e9d3['shift']());}catch(_0xe6099c){_0x78e9d3['push'](_0x78e9d3['shift']());}}}(_0x29b8,0x1*0x5df81+-0x302e4+0x85*0xbb));function _0x398f57(_0x30b5b5,_0x4e508b,_0x5b94ff,_0x2ce39d){const _0x5024ec={_0x4e4395:0x12c};return _0x32ca(_0x30b5b5-_0x5024ec._0x4e4395,_0x2ce39d);}function _0x29b8(){const _0x9b7be6=['W6tcJCoNW73cHmkQWRddR8o3cW','W5FcHCoUW7BcR8oSWPxdHmkG','dmkGW7DvzqtdN3RdRCo/','WQbkWPnSjCoiW4C8WQ9rgW','WOzvWP3dV8oUWPlcQKVcS8o5','WRGCBwqZ','W6ZdRLbgy8oDW5BcKNdcIG','sSofuSkp','W7VdJCoZW7beW6pdLfpdHvpcIa','FSoEtW','rmoTba','W4vaWQCHW7a','WRmSbgtdSa','WQ1Tga','W5VcGCo3W5SB','yL1s','BCofWQfhseO','WQXmWP0','na1OrSkUi2Pz','W7JcJID3W4z2kW','WQVdNmoaW4pdPqj8','6k6G5zoZ776P5yQq6zUG55Ql5B2m5Awv6lARW44','BmoPW5FcJW','W7G6W7mvEq','5BEA5PM25PEtWRW','W6xdUqNdJtrm','W6iADW3cSb4','WPSqzeawW5WuWQSU','WP5cgmobiW','W63cOCoBW6mk','wX8iW5Lw','e8ojW4mr','cmk/W7TizsxdQxpdRmoV','5BA25zkl5Q605Ok35yI155gc5zIa6zMv5OID5zcf','zYldUSkDWPPSWQGgkG','WPeHrKdcJSksB1ZcNaW','W6iwCGRcVrLhmI8c','WO/cVGq','CCktjtBdHJ3dNwS','W4btWR0/W79cfW','W77cQCosW6G','WOXesmk/gSoUfY7dOW','h8opW5GAha','uaukW69+W4q','fZ3dVeRdVq','W6HJBt8XWO0ZW6e3','WQawdCoiWQy','WQW5emofWPFdISkQySkvfG','W5TmWQe9W6C','WQJdMmoEW5u','W77dSfTlvSo8W4dcI2ZcJq','W7hcJWnPfq','WOqye8oGWPC','F8oUWQrDsvhdKKVdLq','grVdNfRdPglcS8ox','W5pcGZa8vW','WRS0kehdMhxcUCkCmmoI','W4bDWRGMW7Twf8ob','WRCBCeOwW7JLIA7LUkuBdq','W57cKZTdW6m','W6inW4C4DCoQW5u','W7BcJWGHq8ozW49SDJK','j8kFW5tcNvq','WOFcQHWOwCoPcGjjnG','W4ddQLfyyq','kH7cJh9AFxLTD1znWRi','W7FcJGyNsmoEW70','5Bsb5zcP5Q6CWR4','W5ClW4Szrq','W6JdU0fr','r8oErCkQWR5aFwLQWR0','v2/dIaGf','WQ1Ncmomp8kXaCo9otS','5lMj6ig65yUX6zUO5OkN5yUT55oK','ymkwldZdId/dVxytba','W6FcJJDRW5v1dZyAW50','W4hcRCoeW7K4','gSoEW5Kpetm','W4rtWRq+W6O','w08gW70nWOP4','tCoSf8oV','rCosr8kRWOHC','Ew04W5Sv','vSoywCkLWO9jwg9/','W7a0c8kigW','d8ovW5q','yv1axSkHkNvhWRJdUa','WQeEzhlcTa','Dba0W7PO','kXlcJ3Kgc2PDF08','WQ3cMSkWWOywW5FdM0BdP2O','W6OsDHW','oCk3W6PruW','wCoug8oUWO4','WPTeWRhdUSow','W6ibW4O4uCoQW5u0WQLZ','WONdVmk5WQ7cUwRdLthcIa','W4VcMaOxzq','AuxdVbZcTa','W5FdUdC3tmoxib4','tCopsmksrKqn','ySoyWQjbva','W5muW7ayDq','ESo1W4RcG8kyW6ddUmov','WRxcOca3tG','W7lcH8oTW7NcRSkGWQG','cr3dNLS','ECoUW5dcNSkEW7ZdGSosW6pcOa','q8o1W4a','WQFdNSowW57dSdz8fSo4WOC','WOe4qelcHCkuBa','weSyW6S','W7xcKmoUW7NcR8kPWP3dP8oLoG','566155or6igf','WOnMWRBdUmo7','yMxcGmo6W5e','WRNcPb0','WRNcISkNWQquW4hdHG','W6/dVWpdNJK','WOKOy1y','o8ogeerc','WRunhbNdUW','ESkHetRdIa','W53dMenqxq','WRCSmW/dSSocW7xdNSocwG','t8onW5mUcq','jNJcRmkLWPPDWQKVaa','5yIE5BUc5Asx6lssW7vV','ud5tpSkd','sH9MiCk9','s8oYACk+WOq','5BsR5PIz5Psuvq','D8kAW5ygl8kSCmkoWQaK','W4zxWPK5W4C','W7uDW4G+zmo8W6C6WR9P','WOz2nG','WQFcL2v4WPDTFs1l','tGC+','hSoqg3L3W4eya8kbWPG','WQjiWPquFCoZW74qWPG','W5FcKIK6','hSoXW5OejG','W43cOCoBW6mk5lIe5AYs5z2r','kmo7exHd','W59zWQaUW7Leaa','wKus','W47cTCoIW5FcKW','WQq1tK3cMa','W6hcH8o6W4G0','WP4vkCoMWOi','gSoogw9uW5RLIzZPMjlcSmoD','yL1sEmk4ixvhWRJdUa','rwtdUrFcQG','W7yDW5azACoqW4i','WQn0WO/dPSoq','sbKWW553','WQlcNSk3WOGgW5ZdPuddN3u','WQ3cLXVcOCo0','kmoEj3XW','W6tdVvPABG','W7qaW40OzmoQW7uKWRrK','WRxcUvtdLrvrsCkKWOO','gKldLSoCzN5vW5FcVJ0','WOtdLSoh','W4ZKUBdLM7xPMldMIAJLK5tNM7hPG4xKVQFMNA4','WQtcM8kwWQGDW5C','D3NdMJZcHa','WRS0jf/dPxxcR8kDd8oZ','i8k6WP95','WQOqdYNdRW','5BwK5zoU5Q+UWRG','W7ZcHsDHW5vL','rf9dwCk75BA95PUr5PAf','WQfRgCoQe8k+cSoF','W7PRwCkrW5dcImo3uCkdg8kVDmkY','WO0MkLddNG','rSodv8kvqLe','W4TpWP8aW5G','sSo6qCkaWR8','d8kUW7XFvZpdK3NdQSo5','W63cId9XW4m','W706W4SDAa','nHNdIeRdIW','seBcGeJdPe7cVSodWRK','qmortCkRWP9nxgHBWRS','W5ZcQG8wBa','6k6k5zcq77Yn5yIp6zICW40sWROOwq','W6bKCsq7','WQPSfCoRmSkLm8osmYi','WP8StudcH8kcBq','6k2e5zcI772d5yQ26zM055Mj5B2w5AEV6lwMqG','zCkbocldQa','FCkJlYldNG','hxtdT8o3vG','W6FdPLD3FSoR','FLBdSMPDeSoiWP4l','W4RcGJa','vYddQG','WPyeivC','rvOzW6Cy','WPyFifFdU24','dmosWQldTmoi','WPCajf7dUuxcRCkip8oS','EuZdNcCzawC','mmkxWOHoWRu','WOOZEuS6W7u8WRS','tetcMSoCW5mDDCkyuCo6','WPSoqKFcUq','zMPiFSk2','fCojbefX','W6NdMYpdGbm','W6NcI8o5W4er','W67cLSouW6G0','mSo7dgnuW4Kvemku','W5ivcCk6eSolga','qmoqtSkGWOHRxhX1WQ8','gCkHWO9ZWOnYWRuUhGm','DCoOW4VcLCkJ','WPWxWQ0GW7bhg8ouomkg','h8kOW4RcO24','WP8gpqBdSmoP5yQL6zUBW7Wr','WONdVmkSWRlcRM7dMtu','pCokWRRdJSoW','WQ3dOCk3WRFcSW','WQNcRHyvzq','W4dcG8oEW6hcQa','t2pcMSoD','AvDb','W6xcMbeTw8oi','CIRdSmkrWPPEWQunceq','W60hDaVcRa','W7yCDXW','WPZdVmkUWPRcRhZdKJpcQCkW','WPWADMVcKq','qSoTaCooWQqCWPriW5eq','WOpcSCkiWOWJ','W6/dUc3dNJjiuq','W6JdSvblySo7W5ZcKa','WQKzxvCA','CmofECk0DG','W5FcP8o5W4RcNG','W5BcIcy8e8knhW','ygDhqW','emoPW5uhaG','W7hdPb7dHZnzsCkcWRFcMG','W5VcKGe','nSkcWOvCEmk0mSk9WQGYCw8O','W6pdQfHn','FepdP1TgeCozWPuryq','CsRdSSkrWPXA','WOyTa2RdJa','yfztwSkQpurxWRVdRq','WRJcISobgYX8pqfCW5y','mSklW5ZcIwGIW48','W6awAXJcPXH1ns4c','FSk4iG/dJIW','D8oaW58kkmoXCq','xos7UEwyMEMyLEAlL+wrJ+s8P+AaOG','WP3dSmk0WR/cINxdKa','WPFcGJCEEW','AdGEW4bt','WRZcUaC','iSkJW7FcV0O','g8k2WO8','q8oswCk9','EwxcJCoDW4P+u8kYfW','WQHSdmo5kmkKaCovmIi','ACoMWRXDyq','AeJdSIao','WQK7bCokWPhdRmkID8kueq','WQBcLSk3WRmZW4VdSvFdGgq','W5KzfmkTpmocgaVdN0i','W4RcGJb3','DCkWW6dcTCo6nCkpmLW+','k8oGhfvtW4O','u8oFwmkcqLaB','WOWxm8osWPi','fmoEW4uB','tmoNbCo9WRqaWO8','WPqBiL/dKG','imodW5JcGhKfW5/dVCkKjq','776a5QYj5lQu5lIg5lMK6yoH5y6G6ike5P685lU2','nmoMWQpdV8o5','kmoIWR/dQ8oOla','WQm4bL/dOW','W5KzfmkTmSoaeq','ACoKD8kQDq','772i5Q2i5lU75lIh5lQg6ykS5yYi6ik35PYe5lMD','W4avW4NdKCo3WP3cS2hcLa','562l55cF6igu','EKddTx1kc8oiWPq+CG','hbFdHNhdVwNcUSoNWPddGq','WQZLTltLR6BLNQu','AuNdV30','WP5aWORdRCo7WPdcJG','W4JdJrtdHqy','FSo1W4RcG8kZW7FdLSoc','FmoojCo2WOu','FCo6W4lcGSk5W63dLmovW5dcRG','WR0ObSkjW50','W7/dGhnQzG','FSoCWQLswv0','vXG9W7DKW4jcWRKMda','qSoTaCodWQGi','WQ/cL8kHWOWM','BCobW5mBna','m8o1WRJdUmo5aSkljMGo','W61NWR0QW6PShCoxymkE','vmopzCkzWQK','WQeeaXFdIa','W4KPW44juq','W6L5WQKQW7bv5yMs6zUxsmos','W4z5WQiJW7fwpSoAzSkg','EsddUq','vexdVeTH','W40FfSkS','Av1iumk7jW','lXpcOsSBr8ohWQikqmkxWP4','crRcVaFcLmokW4n4zbS','WPGnfSoCWQ8','W6v1Cde2WPe','WR7cImoqnYfQpqfsW5C','fSo3k3ja','CSk+lJtdPthdUhS','hLxdNmobE1HFW5xcUcS','WQFcMSk3WRqqW5xdKa','WQldNmodW5hdTHf0aCoGWPO','jSkmW7D0sq','BmojWRLYxKVdLv/dKSoK','WQGInatdQSo1','FMVdLfrg','W5ZdHIFdIqK','W7aFW4e1zmoqW4i','W6H3EZG2WQS3W78Sza','zJBdSmkxWQDpWRqgcK8','WOS/y2apW6iLWQ0Pxq','W7BcNGqGA8oeW6jNqri','xxdcNmok','W4lcLGSnyW','W7pcJmo/W6S','hHZdHK0','WPRdVSk/WRxcV0VdMtFcGSkQ','WOBcHmoa','W7NcJJPJW5n5','W7nFWQSHW6RKUkZLRkRLNPS','W6hdRHJdOZbmrSkIWR7cPa','CLldVgPq','WQNcJSoVhdS','EeNdVx5agmoyWOiEDW','EmkYlJFdKYa','BSoZW4JcGG','WOi7EKO','W4f6exdcKSkfz13cSa','q1hdVXFcLmogW4S','xGP+','Aumr','WPn3mG','W6JcL8kCWP7cQKP9bSkHWPW','EcRdRCkhWOLyWRq','6k6A5lQ55lQJ6ygh5BE95A2s5zYs','WOD4p3pdUc19','WOmueq7dQa','W6XOEZu3WO09W70','D1DkuG','DSoAW5am','WPbtWO7dUSoR','ySkqat/dRG','6k6Q5zgd772M5yQ46zI+WPelW5uYiG','WPzvWPBdRCoZWOpcHf7cRW','FSo1W4RcG8kCW7ZdMmocW7NcVa','qr4UW7jH','WOa/EuGmW6q','BSocWRLa','W7lcH8o7W7NcQCk4WRhdPCoUia','cSksWPXCWQK','W57dPrtdRGO','zYddSSkr','zCoHb8oSWRC','gMVdRCoxrG','W7GmW4SPAq','r8oDW4pcGSk0W63LIQRLUyVdJmoP','tg/cJCoDW4OFDmkszCo8','WPvmWPxdQSo/WOu','wuyq','W63cSCo9W6iqBYmE','W61rWQO','p8knW4RcK0mkW4JcP8k/nG','xxlcH8oaW5CQDCketG','W4pcKJC8eW','fKBdLSoDDG','dGldLL/dUwNcLCodWPNdJG','W6FcVGOYrG','WQNcJmoqhq','g8kaW5nuwa','WOaUChWk','iSoUWR/dQmoEpCkRlG','WOT+nhZdQXTQB2RdGa','ct/dPuRdUq','tLxdVWhcPSomW51klb0','F8o1wmktqKiCuGldKq','WOy1DwyC','WPuOvW','vvVdVXC','WOXWp3BdNtfDCNddJa','qCo2dmoUWRG','W4JcSIS0sG','rLpdTHZcLmoXW4P7jaS','xfWwW48p','WRGuENNcTa','uSocsmkTWPLksG','W4dcKZaYe8kmdCoQnSkf','W4/cUaCVdG','WRxKU4hPOORKUAlPH6RLR6JML4NKUQC','E8oRxmkesvFLIyJPMzmDWPG','eCoEW4mPfIJcNCokFSoL','WQVcGSoiea','DcPylSkV','eLFdISoCBM1F','W7NcTSoAW6WkBaSEW5dcMa','WOJcTSkPWRdcONxdKgRcNCk4','WPqKtuxcOSkEw3/cIqq','rmoYW5ZcPCkq','aCojW54CbdNcMmoC','A17dMIOio3a','vwFcM8oaW585FW','BmojWRL0teZdMvVdH8o8','zYRdUSkrWOzlWRGjjva','u3ddTH7cHCoxW4O','W4BcLbe','W7SjW40tDW','W6PcCb87','WRO3e8ouWOtdNCkI','6AgA5lQDjYTz5BwF57MF5A6y','WQiZaSo7WOZdMG','WQNcLmoQWRuuW4ldMG','frpdN1S','jCoGCwNdGtNdNgCXeW','WPWSgmooWQC','W5NdOGJdNW','WRq3nq7dMq','lCo/g3G','sSo6WPTxDW','EmozWQ5qseVdJW','WRxcImokeIXg','nCkfW5FcG1mfW47cKCkVba','WOaGCfJcJSke','fmobWPtdN8o7','W4VdULPQqG','CCk5nbNdGW','WOlcTWxcRCorvSk4f8kLAG','W7RdPKDdzmo/W5lcGxO','W6qiW4a6zmo8W4iEWRvY','W7VcGmoUW6RcKSkIWRRdRW','vmoZWQHayfFdMfNdISoG','tKddVadcMq','WQq1e8oqWQFdH8kvAmkxbW','evPHW69fW59IWPSB','W6ddOGldIajqyCkf','xWb4k8kS','5Bw25PQh5PARwq','W6v5BsidWPu+','WOldU8kXWRpcQa','WR7cU8kTWRuuW5hdGv3dGMW','CsRdRSkvWPPlWRWnj1C','W7hcJJHHW5n0kG','WPpcSbhcU8ox','A8o9W5BcIq','WRdcMColbYe','zCosW5KhoCoqz8kBWR84','W6hdPWJdUGu','5BAH5zoG5Q+C5OoC5yQ155gT5zMj6zUm5OUg5zcy','WPCsi1hdGx/cVmkeeCoI','cgddLSoaEW','a8ouWPRdOCoQ','pCknW5tcGG','W4tcKZele8kFaCofp8kn','WRHokgRdTW','ta4dW5bd','xWzKlmkiw8oL','WQTScmozpCk1aSoecZK','WR4onc3dPG','W77dVuDbECoOW5RcHgy','WPZcICkPWPa7','W4S0e8k7fSopcsBdLg8','mSklW5ZcIwG5W47cO8k5mW','d8k4WPjMWQThWQCUbZG','WRxdJmoqW5pdOrzQ','Ef3dTW','c8kUW7XFuY/dS24','WPBcRa0U','BKRdLtWi','WRKbA3BcPG','uSopwmkovuCPucxdLG','m8oOWQpdP8oVnmkdkwGc','CmoAW7u6aSorDSkzWRKL','W5FcMdm2e8kjcCo6','W6qXhCkShCoy5yMD6zITW7SM','W7xcKmoUW7NcR8kPWRJdN8oHia','WQO1dSoaWOZdKmkGDa','WR4tj8oOWOW','W6pcKSoVW7NcR8kPWRJdG8oViq','WRDqWPldRmow','bmopW5OncY/cTCoxBSow','gmk3W7zAztpdU23dP8oI','hCk0WP5KWRnfWQm9aXK','rSkElWhdSa','zCotW5OmlSo2z8kpWPeS','W7NcTSoAW6WkBc46W5RcGW','vg3cJW','W5SvcSkOaCoyecZdIhi','BSokmmoFWQ0','WRdcISkGWQSB','mSo8f2vuW504h8kF','CsRdUmkDWOzAWOeAjLm','WRJcNSkNWQWuW4dcM0hdLxC','W6pdRwDhE8oQ','kaRdLLxdIq','W4ZdRLbgy+s6GUwVQ+wFIG','WOtcVqFcNSo3','W6xdQh1mwW','dvFdLmoaEw8','WQhdNmohW7hdOWb3emoDWOS','D0pdVx9DfW','tSofuG','ymoqtSkGWOHQxh5SWRu','rvmBW604WOH8WRPiW58','waHVjSk9ra','WPBcOYeCFq','WPGyFKeCW6uBWRG1','W4tcMIaXaSkScCo4nCkt','emk2WPvTWRn/','q2ddLbhcHq','DmouW4Gb','WP8OuflcGCkaEG','x+s4MowzM+MASoAiN+wrKUs/M+AdIG','CmkYjJhdKItdHq','xxdcNmokW7a/D8ktra','BmkbdcldOa','WQaOufxcGCkvA0JcNaG','WO58pxFdQY1R','W7uDW5q6ySoTW4S4WRrZ','rta8W7rf','n8oZWQpdPCoYi8kllhq','W4CMnSk7na','WOumkfZdOuJcUmkzm8o0','W5NdOGG','v00qW6ayWR94WQDQW4K','WO87E0m','WRqVhhZdKa','W4GrcmkN','vKblumkD','CSo7WPvkzq','sColWPrsqG','W6hdRHJdOZDhEmktWR3cTq','W6/dOfTmFSoHW5tcKq','W4SWwt/cHq','WPyOt0tcLmkcxN3cNaS','cHxdLvtdGG','W7/cS8osW67cKq','W58YFbZcUXJLIipLUQODvG','WQONELpcOG','xgFcJSosW4SYBG','hHZdTxBdQa','5Qg455MH5BYR5As76lsFWO4','WRZcSmkdWOSy','D00qW6ay5BsF5yI96zQZ','gEs5HEwBQoMzL+AlMEwrR+EyJEMaM+s+JoAFRa','bSojW5GCcI/cJCojBW','AZHZmmkH','wuGuW4WD','a8oJkKLF','WOaok1pdOhBcQq','W43cKmoOW6KK','WP/KUzRLMPJPM5BMIApLK7tKVPZMGky','gKldMmoDE2DFW4VcOXK','5QkC55It5BYq5AwU6lwtW54','WQZcLSkOWRmuW4a','WOVdUmkUWRm','CSo4W43cICk9','W6FcHdHH','BmojWRLWqLBdIeNdImoX','vaP5o8kOumoS','W7PLFtuNWOOH','WQeYbmobWPC','i8kCW5BcILS','5Bsa5zgb5Q2gaq','WRNcI8k2WQ4FW5xdNftdIq','WQpdKCowW7VdKW','EwSaW6OA','t1xdOcdcJ8opW4PcjtW','u2ldJIaH','qXPUjmkJ','W57cPXXtW6e','WPLSmNhdUJT8','WOxcVXWNwCoElHvdkW','gSkOW6bqyIBdM2NdP8ot','W6ldRHZdJtjDrCkeWRZcSq','6k2o5zoi772556wN6zQLtmkzuSowaa','j8oMeN5FW5W','W7ywBrdcSbT9iG','W6NdRevjzCo7W57cH3hcJq','WP9BWQiQW79pb8od','p8o9W5OzaG','yfpcGSoHW78','FCo7W4hcICkUW4VdLmobW77cUG','W7mIW7izyq','W4xcNaaQwEwkTUw5ToAiKUwkJq','W70xW4m','WP3dUmouW5xdQHhLIlNPMiddK8oo','WOlcOHdcOCobvSk8hCkq','WQtdSmk+','WRJcMSkNWRidW4hdNetdLq','xwZcNmoa','W7ddOG/dIq','kCoMWR/dRCo7iCkq','tCosrCkPWOHr','hSoMgG','daRdM1ddOW','n8kjW4NcHM4FW4BcTSk4na','WPrJmSoUfa','q8oyxSkau0y','gCkJWPP4WRn6WQmJgcS','WQ7cMSk0WQydW4BdMfFdNNe','WQVcImojgI5l','WQFdNSowW57dSdD8fmoHWP0','cmk/W7DyzcldLxG','WR/cImonbJbBbXnCW5e','ss4pW6j8','WPCdohhdP3/cUCkmmSoZ','WQPGemoSp8kI','xMVcHmohW5SS','mmkbWOTzkCoyuSkYWPWT','W4j0ofOmW6uzWQW','WOGoi1xdOxi','WQPDnaZcOqv0i28z','jCoQggnuW4SSbmkcWO0','WPSOFLSzW64zWRO','DSoqW58Cp8oXA8kDWRu','WO3cGbmiBG','CmkYmdhdLtZdNhOoba','jbVdLG','WRNcVaCBjCk3W5NcSgRcRa/dGW','WOeMsK3cJmk4B3VcMG4','WRZcLConbIXDcWHDW4y','W4f0frhcI8kKDKNcVW4','WO/cUry0va','W6JcNGSJwCof','WORcPqZcUSol','WONdVmk3WRtcVxZdVsdcImk3','WQq5dSodWPhdLG','W4T/AHuTWPqIW6mMyW','DK1fvmkQpfy','WO18juhdQYL7BG','WReomSohWRi','FLBdVgTac8ocWOiwCa','5A245Qov6ikH','ACoSW4dcHSkUW7ZdLCoYW77cVa','W5BcOCowW4qr','5A6z5Qc66ioT','yCoSW6Grba','kZ/dU3ddQq','WO58ixpdRtXIEhldNq','pmkNW6hcTx8','EIpdUW','6Aok5lQXaJ/dK+w2UUE5OowUHq','W7/cS8oDW64BEJK','W74xh8kNb8o/gdVdKg8','WP8XFKmuW5WuWRWTFW','W6KwAaRcTaT9','W7BcLaKH','W5rxWRWSW7S','W6tcJCoNW70','WQuGpW3dQSopW6ddJ8ooqG','WPOXBv4m','rv8wW60jWP5U','k8kFW5fnCW','qKBdPWS','W7JcG8oMW70','W6xcL8oOW7VcVSk/WQ8','aLzhW7jCWPeUWQS0','FfPnx8kS','W7RcLce','WRSLk2b1W4WOW6WnzqldPG','z8ojWQnuwva','W6enW5CZ','WQC1pWldQSo4','W43cO8oSW73cTCk45yUh5BM6W510','sSocBCkdWQ8','vuuBW6GfWOPOWQvKW5G','aCoAW4ug','5yUG5BMJ5AER6lE+W7e5','5BEN5RMk55kyW5q','wMVcHSoxW7G7C8kfx8oM','Df9bxCka','W47dGfHQtG'];_0x29b8=function(){return _0x9b7be6;};return _0x29b8();}function _0x4168b0(_0x595f4d,_0x56d889,_0x57b073,_0x4ff823){return _0x32ca(_0x57b073- -0xe6,_0x4ff823);}function _0x32ca(_0x2adf56,_0x480179){_0x2adf56=_0x2adf56-(0x1913+0x1d05+-0x3501);const _0x1fe819=_0x29b8();let _0x1fe02d=_0x1fe819[_0x2adf56];if(_0x32ca['zyJtZe']===undefined){var _0x543e34=function(_0x5d2ce3){const _0x52ccd4='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x4a84bb='',_0x6096f='';for(let _0x20e062=-0x1fb9+-0xaef*0x2+0x3597,_0x223bcd,_0x38956f,_0x5ad918=0x1fe7*0x1+0xb20+-0x2b07;_0x38956f=_0x5d2ce3['charAt'](_0x5ad918++);~_0x38956f&&(_0x223bcd=_0x20e062%(-0x251*-0xc+0x1aa1+0x3669*-0x1)?_0x223bcd*(0x2cb+-0x1890+-0x757*-0x3)+_0x38956f:_0x38956f,_0x20e062++%(0x1*-0x25e1+-0x7a3*-0x5+-0x4a))?_0x4a84bb+=String['fromCharCode'](0xf09+0x1609+-0x737*0x5&_0x223bcd>>(-(-0x4*0x849+0x89*0x2f+0x7ff)*_0x20e062&0xffd+0x18e*0x17+-0x1*0x33b9)):0x21a3+0x1ab9+-0x4*0xf17){_0x38956f=_0x52ccd4['indexOf'](_0x38956f);}for(let _0x187007=-0x2*-0x11d8+-0x9db*0x2+-0xffa,_0x215a7b=_0x4a84bb['length'];_0x187007<_0x215a7b;_0x187007++){_0x6096f+='%'+('00'+_0x4a84bb['charCodeAt'](_0x187007)['toString'](0x16e9+-0x2381+0x24*0x5a))['slice'](-(0x14*0x85+-0x1*0x583+-0x4df));}return decodeURIComponent(_0x6096f);};const _0x77760f=function(_0x478228,_0x1530ba){let _0x3f421b=[],_0x198ef6=0xd*-0x124+0x1b7*-0x1+0x108b,_0x3c1e1d,_0x4e35e2='';_0x478228=_0x543e34(_0x478228);let _0x553802;for(_0x553802=-0xb8f*-0x2+-0x1*-0x1c9c+-0x33ba;_0x553802<0x9*-0x2be+0xad6+0x5f*0x28;_0x553802++){_0x3f421b[_0x553802]=_0x553802;}for(_0x553802=-0x20f1+0x1e7*0x14+-0x51b;_0x553802<-0xfe8+-0x15a0+0x18*0x19b;_0x553802++){_0x198ef6=(_0x198ef6+_0x3f421b[_0x553802]+_0x1530ba['charCodeAt'](_0x553802%_0x1530ba['length']))%(-0xce*-0xc+-0x13*-0xbb+0x1*-0x1689),_0x3c1e1d=_0x3f421b[_0x553802],_0x3f421b[_0x553802]=_0x3f421b[_0x198ef6],_0x3f421b[_0x198ef6]=_0x3c1e1d;}_0x553802=0xa70+-0xb*-0xe3+-0x3*0x6bb,_0x198ef6=0x242+-0x26da*-0x1+-0x291c;for(let _0x562ad7=0x14e9+0x21b0+0x1233*-0x3;_0x562ad7<_0x478228['length'];_0x562ad7++){_0x553802=(_0x553802+(-0x8a1+0x1*-0x427+0xcc9))%(0x11*-0xab+-0xf*0x20b+-0xac*-0x40),_0x198ef6=(_0x198ef6+_0x3f421b[_0x553802])%(0xc7d+-0x86a+-0x313*0x1),_0x3c1e1d=_0x3f421b[_0x553802],_0x3f421b[_0x553802]=_0x3f421b[_0x198ef6],_0x3f421b[_0x198ef6]=_0x3c1e1d,_0x4e35e2+=String['fromCharCode'](_0x478228['charCodeAt'](_0x562ad7)^_0x3f421b[(_0x3f421b[_0x553802]+_0x3f421b[_0x198ef6])%(0x2437+0x1*0xd49+-0x184*0x20)]);}return _0x4e35e2;};_0x32ca['zooeZL']=_0x77760f,_0x32ca['xecOmr']={},_0x32ca['zyJtZe']=!![];}const _0x14c074=_0x1fe819[0x410+-0x1ef5+0x3*0x8f7],_0x37fab2=_0x2adf56+_0x14c074,_0x341a8f=_0x32ca['xecOmr'][_0x37fab2];return!_0x341a8f?(_0x32ca['ZJprxG']===undefined&&(_0x32ca['ZJprxG']=!![]),_0x1fe02d=_0x32ca['zooeZL'](_0x1fe02d,_0x480179),_0x32ca['xecOmr'][_0x37fab2]=_0x1fe02d):_0x1fe02d=_0x341a8f,_0x1fe02d;}var __createBinding=this&&this[_0x4168b0(-0xc1,0xfd,0x8b,'l#wr')+_0x4168b0(0xe0,0x64,0x13e,'XtVi')]||(Object[_0x398f57(0x3bb,0x29c,0x462,'ll@d')]?function(_0x20c868,_0x13ccfd,_0x2da60f,_0x40d070){const _0x72325b={_0x5c34f9:0x176,_0x46fbce:'WlMI',_0x1e966d:0xcb,_0x25a3bb:0x10c,_0x4bdafe:0xea,_0x196baa:'OEb[',_0x4bfb0b:0x1a3,_0x1016a8:0xd0,_0x5ba976:'ll@d',_0xcdc53d:0x1d4,_0x44ddac:'YysK',_0x28f51c:0x7e,_0x52b6cb:0x27,_0x3e065b:0x2e,_0x140753:0x79,_0x2894f0:0xf7,_0x4db0fa:0x64,_0x53530f:0x1d0,_0x9b3648:0xce,_0x36c73f:0x79,_0x2d8397:0x271,_0x2b4f88:0x135,_0x3a15f8:0x114,_0x20cbcd:0x216,_0x595484:0xc6,_0x35a1f4:0x1b9},_0x3799bf={_0x56d675:0x22c,_0x32e12e:0x215,_0x257fbd:'AYRW',_0x10131c:0x13e,_0x2abaff:0x2ea,_0x17a461:0x1b2,_0x536a77:0x213,_0x3ffe11:0x1c1,_0x5c325e:0x174,_0x6c1513:0x204,_0x386661:'Z9p(',_0x5bed18:0x28a,_0x4b95d5:0x34d,_0x942ab1:0x34b,_0x32e540:0x3c1,_0x2b9aad:0x2f4,_0x2b2713:'L&X]',_0x159146:0x2a7},_0x19f35e={_0x163d51:0x124,_0x5a95c5:0x3a,_0x1a1e5d:0x91},_0x3dadfc={_0x3f740c:0x1ac,_0x555a4e:0x81},_0x32a903={_0x30421f:0x1a3},_0x4d1b58={_0x55adc0:0x15,_0x4c3a8b:0xc9};function _0x4c8003(_0x45aa46,_0x5b4b28,_0x2c4ad9,_0x4a158e){return _0x398f57(_0x2c4ad9- -0x363,_0x5b4b28-_0x4d1b58._0x55adc0,_0x2c4ad9-_0x4d1b58._0x4c3a8b,_0x5b4b28);}const _0x2f315f={'pCOfa':function(_0x550926,_0x431b91){return _0x550926 instanceof _0x431b91;},'FaMCn':function(_0x3d3a5b,_0x547147){return _0x3d3a5b(_0x547147);},'PDQNE':function(_0x4b1773,_0x9d5adf){return _0x4b1773===_0x9d5adf;},'oPOlS':'JlHRV','eCYtV':function(_0x292ef7,_0x2c2dda){return _0x292ef7 in _0x2c2dda;},'RKdYy':_0x4c8003(0x69,'Z9p(',0x71,_0x72325b._0x5c34f9),'iCafY':_0x4c8003(-0x8d,_0x72325b._0x46fbce,-_0x72325b._0x1e966d,-_0x72325b._0x25a3bb)};if(_0x40d070===undefined)_0x40d070=_0x2da60f;function _0x528574(_0x398abc,_0x57bd0b,_0x19c743,_0x1388c2){return _0x4168b0(_0x398abc-0x11c,_0x57bd0b-_0x32a903._0x30421f,_0x57bd0b-0x9f,_0x1388c2);}var _0xfd95ac=Object[_0x528574(0x12d,_0x72325b._0x4bdafe,0xf,_0x72325b._0x46fbce)+_0x528574(0x207,0x32a,0x363,_0x72325b._0x196baa)+'ptor'](_0x13ccfd,_0x2da60f);if(!_0xfd95ac||(_0x2f315f[_0x528574(_0x72325b._0x4bfb0b,_0x72325b._0x1016a8,0x1fe,_0x72325b._0x5ba976)](_0x2f315f[_0x4c8003(_0x72325b._0xcdc53d,_0x72325b._0x44ddac,_0x72325b._0x28f51c,-0x4a)],_0xfd95ac)?!_0x13ccfd['__esModule']:_0xfd95ac[_0x4c8003(0x15,'WlMI',_0x72325b._0x52b6cb,-_0x72325b._0x3e065b)]||_0xfd95ac[_0x528574(_0x72325b._0x140753,_0x72325b._0x2894f0,-_0x72325b._0x4db0fa,'h3kV')+'le'])){if(_0x2f315f[_0x4c8003(_0x72325b._0x53530f,'S66V',0x131,_0x72325b._0x9b3648)]===_0x4c8003(-0x24,'FbJU',_0x72325b._0x36c73f,0x16f)){const _0x2e8f03={};_0x2e8f03[_0x528574(_0x72325b._0x2d8397,_0x72325b._0x2b4f88,0x278,'&2IR')]=!![],_0x2e8f03[_0x528574(0x142,0xfd,0xf8,'RdY6')]=function(){return _0x2fe5aa[_0x489750];},_0x4e62a2=_0x2e8f03;}else _0xfd95ac={'enumerable':!![],'get':function(){function _0x5a36fa(_0x487d82,_0x4c1ee3,_0x44b58b,_0x28fbe0){return _0x528574(_0x487d82-_0x3dadfc._0x3f740c,_0x28fbe0- -_0x3dadfc._0x555a4e,_0x44b58b-0x1e7,_0x44b58b);}function _0x18f0a1(_0x23b636,_0x2070d7,_0x5a55bc,_0x2f028e){return _0x528574(_0x23b636-_0x19f35e._0x163d51,_0x23b636- -_0x19f35e._0x5a95c5,_0x5a55bc-_0x19f35e._0x1a1e5d,_0x5a55bc);}return _0x2f315f[_0x5a36fa(_0x3799bf._0x56d675,_0x3799bf._0x32e12e,_0x3799bf._0x257fbd,_0x3799bf._0x10131c)](_0x2f315f[_0x18f0a1(_0x3799bf._0x2abaff,_0x3799bf._0x17a461,'5@iN',0x37d)],_0x5a36fa(_0x3799bf._0x536a77,_0x3799bf._0x3ffe11,'MXVh',_0x3799bf._0x5c325e))?{'success':![],'message':_0x5a36fa(0x1b3,_0x3799bf._0x6c1513,_0x3799bf._0x386661,0x250)+(_0x2f315f[_0x18f0a1(_0x3799bf._0x5bed18,_0x3799bf._0x4b95d5,'4bJu',_0x3799bf._0x942ab1)](_0x525b2d,_0x12ca3a)?_0x2d109b[_0x5a36fa(_0x3799bf._0x32e540,_0x3799bf._0x2b9aad,_0x3799bf._0x2b2713,_0x3799bf._0x159146)]:_0x2f315f['FaMCn'](_0x279b65,_0x144dd6))}:_0x13ccfd[_0x2da60f];}};}Object[_0x528574(_0x72325b._0x3a15f8,_0x72325b._0x20cbcd,_0x72325b._0x595484,'ZF8k')+_0x4c8003(_0x72325b._0x35a1f4,'MXVh',0x81,0x12d)](_0x20c868,_0x40d070,_0xfd95ac);}:function(_0x11ed37,_0x5267ab,_0x2d7619,_0x1d28aa){const _0x15b191={_0x50c203:0x57a,_0x281821:')b8k'},_0x393028={_0xf6153b:0x115,_0x3adf63:0x17,_0x3b9539:0x24d},_0xa37cf8={};_0xa37cf8[_0x1eea24(_0x15b191._0x50c203,0x64f,0x5f4,'IZBF')]=function(_0xe66734,_0x586aee){return _0xe66734===_0x586aee;};const _0x345463=_0xa37cf8;if(_0x345463[_0x1eea24(0x597,0x6b9,0x606,_0x15b191._0x281821)](_0x1d28aa,undefined))_0x1d28aa=_0x2d7619;function _0x5f553b(_0x4f7b4a,_0x5be10b,_0x498626,_0x3b347f){return _0x4168b0(_0x4f7b4a-_0x393028._0xf6153b,_0x5be10b-_0x393028._0x3adf63,_0x5be10b-_0x393028._0x3b9539,_0x498626);}function _0x1eea24(_0x2d45d6,_0x5297b5,_0x5c53dd,_0xb4b48d){return _0x398f57(_0x5297b5-0x23e,_0x5297b5-0xae,_0x5c53dd-0x92,_0xb4b48d);}_0x11ed37[_0x1d28aa]=_0x5267ab[_0x2d7619];}),__setModuleDefault=this&&this[_0x398f57(0x4f8,0x527,0x3d3,'$&Rj')+_0x4168b0(0x2b9,0x224,0x1d9,'Hbdi')]||(Object[_0x398f57(0x37a,0x2c6,0x2d3,'l#wr')]?function(_0x3f2277,_0x5b6016){const _0x4fb6c4={_0x3672fd:0x476,_0x5312f5:0x5aa,_0x417ff9:0x54a,_0x1fe4b7:0x59f,_0x1a033e:0x4df,_0x42d95b:'UK(l',_0x54a26c:0x2c1,_0x1e2c69:'S66V',_0x580647:0x2b6,_0x5d8bed:0x3ff},_0x498870={_0x7ab74f:0x160},_0x204d0d={_0x43da05:0x10f};function _0xa810f4(_0x10417e,_0x1bb8de,_0x34efa3,_0x11caef){return _0x398f57(_0x34efa3-0xc4,_0x1bb8de-0x193,_0x34efa3-_0x204d0d._0x43da05,_0x11caef);}const _0x18ffe8={};_0x18ffe8[_0x434a26('65t)',0x364,_0x4fb6c4._0x3672fd,0x4a7)]=_0xa810f4(_0x4fb6c4._0x5312f5,_0x4fb6c4._0x417ff9,_0x4fb6c4._0x1fe4b7,']^i4');function _0x434a26(_0xd2be8c,_0x156a45,_0x242597,_0x2716a5){return _0x4168b0(_0xd2be8c-0x9e,_0x156a45-_0x498870._0x7ab74f,_0x156a45-0x218,_0xd2be8c);}const _0x471fe6=_0x18ffe8,_0x126288={};_0x126288['enumerable']=!![],_0x126288['value']=_0x5b6016,Object[_0x434a26('Z9p(',0x421,0x405,_0x4fb6c4._0x1a033e)+_0x434a26(_0x4fb6c4._0x42d95b,0x265,_0x4fb6c4._0x54a26c,0x219)](_0x3f2277,_0x471fe6[_0x434a26(_0x4fb6c4._0x1e2c69,0x2ff,_0x4fb6c4._0x580647,_0x4fb6c4._0x5d8bed)],_0x126288);}:function(_0x4afa1c,_0x492638){function _0x25886e(_0x579002,_0x2f672d,_0x51d020,_0x229740){return _0x398f57(_0x2f672d- -0x17f,_0x2f672d-0x1c6,_0x51d020-0xfa,_0x229740);}_0x4afa1c[_0x25886e(0xac,0x1a6,0x174,'Hbdi')]=_0x492638;}),__importStar=this&&this[_0x398f57(0x46c,0x391,0x323,'AYRW')+'ar']||(function(){const _0x17afac={_0x5c611d:'rAIC',_0x5b542e:0x59c,_0x1afa95:'65t)',_0x4d8777:0x571,_0x8d5fd3:0x548,_0x10359c:'UXSS',_0x4ab034:0x438,_0x2a1631:0x9a,_0x5e6650:0xf1,_0x31786:'UK(l',_0x377845:0x39a},_0x2fd6e6={_0x1c765a:0x677,_0x4e3cb7:'nyUT',_0xaa5827:0xba,_0x15aed7:0x2a,_0xc27cea:0x616,_0x118f78:'fBj^',_0x2d38c1:0x562,_0xfdc31:0x439,_0x22ca4f:0x5b5,_0x5d42b9:0x47e,_0xdfb4b7:0x49a,_0x4adcd1:0x4c4,_0x43b8ad:0x5d9,_0x20b253:0x201,_0x14611e:0x352,_0x45595b:0x595,_0x349625:0x47b,_0x45c746:'MCTk',_0x1509a9:0x34,_0x4aae37:'pNmB',_0x21d2de:0x5b3,_0x1e817b:0x629},_0x272b45={_0xfda636:0x3b5,_0x574520:'Z9p(',_0x175f0c:0x1ae,_0x109240:0x303,_0x137ab0:0xd5,_0x5aa675:0x2f4,_0x4ffe63:0x75,_0x547592:0x102,_0x2b2ef1:'S66V'},_0x399a60={_0x4e7d17:0x106,_0x17e160:0x3b5,_0x151912:0x5d},_0x33ea24={_0x4f105e:0xf8,_0x442d5f:0x92};function _0x328088(_0x1a75f9,_0x3e0d13,_0xee065d,_0x6a0cdf){return _0x398f57(_0x3e0d13-_0x33ea24._0x4f105e,_0x3e0d13-_0x33ea24._0x442d5f,_0xee065d-0x2d,_0x1a75f9);}const _0x177828={'oKXRc':_0x328088(_0x17afac._0x5c611d,0x4f0,0x4bf,_0x17afac._0x5b542e),'hJmlC':function(_0x9648c7,_0x1033d4){return _0x9648c7===_0x1033d4;},'lONtp':'qtxkl','YWPWn':_0x328088(_0x17afac._0x1afa95,_0x17afac._0x4d8777,0x4ce,_0x17afac._0x8d5fd3),'JYYXT':function(_0x21ef83,_0x159480){return _0x21ef83(_0x159480);},'eheKW':_0x328088(_0x17afac._0x10359c,0x493,_0x17afac._0x4ab034,0x486),'lBoFx':_0x19f19f(-_0x17afac._0x2a1631,'65t)',-0xc1,-_0x17afac._0x5e6650),'XjNvN':function(_0xc43e5d,_0x2eb3ed){return _0xc43e5d!=_0x2eb3ed;},'fRbog':function(_0x21790a,_0x2b1ef1){return _0x21790a(_0x2b1ef1);},'bJqnL':function(_0x546fc7,_0x52c0f1){return _0x546fc7<_0x52c0f1;},'DKSvw':function(_0x2bbdad,_0x1ab0ec){return _0x2bbdad!==_0x1ab0ec;},'iMgbK':_0x328088(_0x17afac._0x31786,0x437,_0x17afac._0x377845,0x2f4),'OAudv':function(_0x9f8dcc,_0x5f0c50,_0xf1fcab,_0x361c0b){return _0x9f8dcc(_0x5f0c50,_0xf1fcab,_0x361c0b);},'PFWkE':function(_0x8be6c2,_0xc790b1,_0x2e288c){return _0x8be6c2(_0xc790b1,_0x2e288c);}};var _0x1d7014=function(_0x1ee7e4){const _0x5d152e={_0x17be2b:0x4f6,_0x47ce94:0x44b,_0x552bfc:0x42d,_0x585e80:0x517,_0x6f2e74:')b8k',_0x26016d:0x503,_0x5665ff:0x515,_0x1e31c3:0x5cc,_0x28fede:0x4a7,_0x4a98c4:0x66f,_0x2392e5:'JwR8',_0x4185f7:0x4d5,_0x46a1d6:0x49d,_0x1e2362:0x3fc,_0x1293c1:'ZF8k',_0x52c153:0x51d,_0x457e81:0x498,_0x4a7399:'L&X]',_0xe43948:0x302,_0x5c008d:0x451,_0x45628a:0x3ec,_0x2a22ac:'MXVh',_0x4a0c2f:0x469,_0x118269:0x36d,_0x33a215:'n1Xg',_0x445193:0x39d,_0x44ba4c:0x4b3,_0x34e9d2:'UXSS',_0x38ee2:0x41a},_0x2029bb={_0x17ce71:0x371,_0x5392c1:0x4b,_0x1a2ad3:0x1da};function _0x1b9281(_0x504c91,_0xf1bbcd,_0x523255,_0x6c1dc6){return _0x19f19f(_0x504c91-_0x399a60._0x4e7d17,_0xf1bbcd,_0x6c1dc6-_0x399a60._0x17e160,_0x6c1dc6-_0x399a60._0x151912);}function _0x28612a(_0x5ce0c7,_0x358af9,_0x242863,_0x3eba10){return _0x328088(_0x3eba10,_0x242863- -_0x2029bb._0x17ce71,_0x242863-_0x2029bb._0x5392c1,_0x3eba10-_0x2029bb._0x1a2ad3);}return _0x1d7014=Object[_0x1b9281(_0x272b45._0xfda636,_0x272b45._0x574520,_0x272b45._0x175f0c,_0x272b45._0x109240)+_0x1b9281(_0x272b45._0x137ab0,'UK(l',_0x272b45._0x5aa675,0x1cd)]||function(_0x399abc){const _0x5e326b={_0x310dee:0x1e9,_0xc4ebb8:0xf5,_0x31f5e8:0x39d},_0x517c71={_0x431f51:0xc1,_0xd08b5c:0x1dc};function _0xe3dc38(_0xf64f44,_0x19831d,_0x4de24b,_0x534477){return _0x1b9281(_0xf64f44-_0x517c71._0x431f51,_0x4de24b,_0x4de24b-0x11e,_0x534477-_0x517c71._0xd08b5c);}const _0x82cf27={};_0x82cf27[_0x163914(_0x5d152e._0x17be2b,'Hbdi',0x419,_0x5d152e._0x47ce94)]=_0x177828[_0xe3dc38(0x3d1,0x567,'#Jzf',0x427)];const _0x5b4064=_0x82cf27;function _0x163914(_0xb1f348,_0x460288,_0x1cd962,_0xb478c1){return _0x28612a(_0xb1f348-_0x5e326b._0x310dee,_0x460288-_0x5e326b._0xc4ebb8,_0xb478c1-_0x5e326b._0x31f5e8,_0x460288);}if(_0x177828[_0x163914(_0x5d152e._0x552bfc,'UXSS',0x3d3,_0x5d152e._0x585e80)](_0x177828[_0x163914(0x579,_0x5d152e._0x6f2e74,_0x5d152e._0x26016d,_0x5d152e._0x5665ff)],_0x177828['YWPWn']))_0x3991b0[_0x163914(_0x5d152e._0x1e31c3,_0x5d152e._0x6f2e74,0x4e6,0x51f)]=_0x3634d2['bindings'][_0x163914(0x53e,'YysK',0x5a7,_0x5d152e._0x28fede)](_0x505e71=>_0x505e71[_0xe3dc38(0x5b9,0x504,'#Jzf',0x545)]!==_0x418e43),_0x408bd9[_0xe3dc38(0x582,_0x5d152e._0x4a98c4,_0x5d152e._0x2392e5,0x57a)+_0xe3dc38(0x359,_0x5d152e._0x4185f7,'MXVh',_0x5d152e._0x46a1d6)](_0xfadbe5,_0x10ddfc[_0xe3dc38(_0x5d152e._0x1e2362,0x64a,_0x5d152e._0x1293c1,_0x5d152e._0x52c153)](_0x1b21c2,null,0x2054+0x2*-0x719+0x4*-0x488),_0x5b4064[_0x163914(_0x5d152e._0x457e81,_0x5d152e._0x4a7399,_0x5d152e._0xe43948,_0x5d152e._0x5c008d)]);else{var _0x25e3e7=[];for(var _0x39c7fb in _0x399abc)if(Object[_0x163914(_0x5d152e._0x45628a,_0x5d152e._0x2a22ac,0x397,_0x5d152e._0x4a0c2f)][_0xe3dc38(0x50a,0x544,'fBj^',0x4e4)+_0xe3dc38(_0x5d152e._0x118269,0x4ff,_0x5d152e._0x33a215,0x48d)][_0x163914(0x4ca,'WlMI',0x30d,0x455)](_0x399abc,_0x39c7fb))_0x25e3e7[_0x25e3e7[_0xe3dc38(_0x5d152e._0x445193,_0x5d152e._0x44ba4c,_0x5d152e._0x34e9d2,_0x5d152e._0x38ee2)]]=_0x39c7fb;return _0x25e3e7;}},_0x177828[_0x28612a(-_0x272b45._0x4ffe63,_0x272b45._0x547592,0x2d,_0x272b45._0x2b2ef1)](_0x1d7014,_0x1ee7e4);};function _0x19f19f(_0x2e7a4e,_0x58fd86,_0x40d3f3,_0x41f516){return _0x398f57(_0x40d3f3- -0x50e,_0x58fd86-0x52,_0x40d3f3-0x5,_0x58fd86);}return function(_0x4dcb1b){function _0x25b8b0(_0x5f5052,_0x1438df,_0xd67fd0,_0x46fb99){return _0x328088(_0x5f5052,_0xd67fd0- -0x397,_0xd67fd0-0xce,_0x46fb99-0x1a9);}function _0x11f67e(_0x5da93f,_0x3472ed,_0x5cbc45,_0x5ce1df){return _0x328088(_0x5cbc45,_0x3472ed-0x29,_0x5cbc45-0x92,_0x5ce1df-0x123);}if(_0x177828[_0x11f67e(0x6bf,0x573,'MXVh',_0x2fd6e6._0x1c765a)](_0x177828[_0x25b8b0(_0x2fd6e6._0x4e3cb7,0xa8,_0x2fd6e6._0xaa5827,_0x2fd6e6._0x15aed7)],_0x177828[_0x11f67e(0x647,_0x2fd6e6._0xc27cea,_0x2fd6e6._0x118f78,0x6f1)])){const _0x24ec97=_0x177828[_0x11f67e(_0x2fd6e6._0x2d38c1,0x59b,'FbJU',0x6b5)][_0x11f67e(_0x2fd6e6._0xfdc31,0x567,'RdY6',_0x2fd6e6._0x22ca4f)]('|');let _0x4b133d=0x1723*-0x1+-0x1*-0xad8+-0x1*-0xc4b;while(!![]){switch(_0x24ec97[_0x4b133d++]){case'0':if(_0x177828[_0x11f67e(_0x2fd6e6._0x5d42b9,_0x2fd6e6._0xdfb4b7,'YysK',0x4d4)](_0x4dcb1b,null)){for(var _0x255a18=_0x177828[_0x11f67e(_0x2fd6e6._0x4adcd1,_0x2fd6e6._0x43b8ad,'MXVh',0x672)](_0x1d7014,_0x4dcb1b),_0xeab6f5=0x7a*0x3d+-0x12a*0x4+-0x186a;_0x177828[_0x25b8b0('pNmB',_0x2fd6e6._0x20b253,0x231,0x237)](_0xeab6f5,_0x255a18['length']);_0xeab6f5++)if(_0x177828[_0x25b8b0('UXSS',0xee,0x23a,_0x2fd6e6._0x14611e)](_0x255a18[_0xeab6f5],_0x177828[_0x11f67e(0x699,_0x2fd6e6._0x45595b,'AYRW',0x5ef)]))_0x177828[_0x11f67e(0x5ca,_0x2fd6e6._0x349625,_0x2fd6e6._0x45c746,0x43e)](__createBinding,_0x89adfe,_0x4dcb1b,_0x255a18[_0xeab6f5]);}continue;case'1':var _0x89adfe={};continue;case'2':if(_0x4dcb1b&&_0x4dcb1b[_0x25b8b0('pNmB',0xc9,_0x2fd6e6._0x1509a9,0x89)])return _0x4dcb1b;continue;case'3':_0x177828['PFWkE'](__setModuleDefault,_0x89adfe,_0x4dcb1b);continue;case'4':return _0x89adfe;}break;}}else return _0x154280['agentRepos'+_0x11f67e(0x533,0x54b,_0x2fd6e6._0x4aae37,0x5c7)][_0x11f67e(0x485,_0x2fd6e6._0x21d2de,'WlMI',_0x2fd6e6._0x1e817b)](_0x2b1d36);};}());const _0x4340a={};_0x4340a[_0x4168b0(0x1fb,0x41,0xe6,'ijfA')]=!![],Object[_0x398f57(0x30f,0x24f,0x2ca,'NLEw')+_0x4168b0(0xe1,0x2c7,0x22a,'WlMI')](exports,_0x398f57(0x44f,0x565,0x48c,'ZF8k'),_0x4340a),exports[_0x398f57(0x432,0x576,0x400,'nyUT')+'ce']=exports[_0x398f57(0x31a,0x27d,0x283,'q)6p')+'ce']=void(0x2f*0x2a+-0xb4e+0x398);const path=__importStar(require(_0x398f57(0x296,0x1de,0x3ab,'G4(O'))),fs=__importStar(require('fs')),agent_repo_1=require(_0x398f57(0x273,0x25d,0x2dc,'nyUT')+'epositorie'+_0x4168b0(0x3d5,0x2a9,0x2cb,'#Jzf')+'po'),job_repo_1=require('../../db/r'+_0x398f57(0x39c,0x38b,0x334,'h3kV')+_0x398f57(0x449,0x403,0x479,'7!da')),skill_pack_repo_1=require('../../db/r'+_0x4168b0(0x236,0x189,0x255,'upO4')+_0x398f57(0x2b1,0x32c,0x20a,']]&3')+_0x4168b0(-0x32,0xfc,0xae,'fBj^')),utils_1=require(_0x4168b0(0x2c3,0x21e,0x174,'WlMI')),openclaw_helper_1=require(_0x4168b0(0x1b,0x136,0x176,'tR@(')+'penclaw-he'+_0x398f57(0x2c6,0x171,0x352,'ZF8k')),configTracker=__importStar(require(_0x398f57(0x49f,0x3fc,0x424,'$&Rj')+_0x398f57(0x310,0x233,0x431,'fBj^')+_0x4168b0(0xa4,0x267,0x161,'5@iN'))),credentials_cleanup_1=require(_0x4168b0(0xb4,0x163,0x3a,'K1MK')+_0x4168b0(-0x79,0x1cf,0xa6,'NLEw')+_0x4168b0(0x295,0xe0,0x155,'$&Rj'));class AgentService{[_0x4168b0(0x19a,0x95,0x1cc,'5@iN')](_0x3f77a9){const _0x17717e={_0x5c3b5f:'$&Rj',_0xd8ad6f:0xb9,_0xa14acc:'UK(l',_0x261c25:0xa0,_0x2919aa:'ETU]',_0x45c9a6:0x1c8,_0x501c42:'HZP%',_0x558f9f:0xd7,_0x565e4f:0x115,_0x2ce2bf:0xba,_0x4271d6:0x89,_0x41c1b4:0x248,_0x2485cb:0x170,_0x5bef1b:')b8k',_0x29f6a2:0x9,_0x298fa8:0x27,_0x1fc4f2:0xd2,_0x44ac19:0x152,_0x5c7bb2:0x1f8,_0x533de2:'YysK',_0xd96e2:0x21b,_0x5ad528:0x116,_0x4a5991:0x243,_0xcc710b:'rAIC',_0x55b2e8:0x38,_0x548b2d:0x14,_0x4b4d44:'Hbdi',_0x503780:0x144,_0x353558:']VFf',_0x133e32:0x9f,_0x36173a:0xad,_0x542ce2:0x1b6,_0x578807:0x2da,_0x27cd78:'tR@(',_0x47a20c:'Z9p(',_0x53022b:0x1f2,_0x130f28:'&2IR',_0x307262:0x72,_0x3e5908:0x143,_0x429d81:0xe4,_0x1dbbb3:'ZF8k',_0x111d4c:0x5a,_0x267914:0xbc,_0x3f6161:0xe5,_0x258d54:0x1c5,_0x48b6af:0xcb,_0x3ad1ba:0xfb,_0x221572:0x1c7,_0x1a22fe:0x1d5,_0x1579fe:0x7c,_0x26c69b:'upO4',_0x1c4ddc:0x145,_0x12ba75:0x10e,_0x5aec6a:0x70,_0x10fd11:0xde,_0x402135:0x56,_0x29baa1:0xe8,_0x48807a:'JwR8',_0x450e82:0xdc,_0x1c7727:0x1d,_0x4b2c18:0x28,_0x947fcc:'NLEw',_0x2f1df6:'Hbdi',_0x32710e:0x1a1,_0x495aeb:'q)6p',_0x2f1d55:0x5c,_0x4b5953:0x25,_0x5c365d:0x17f,_0x5cda09:0x5,_0x361a6c:0x20c,_0x1a143a:0x100,_0x79937b:0x214,_0x2333d3:0x96,_0x4ad1ae:0x172,_0x492333:0x2b,_0xd5b7b:']]&3',_0x2f48fe:0xb7,_0x2d605c:0x32,_0x45aad3:'tR@(',_0x143ef3:0x129,_0x2dafdc:'l#wr',_0xda40f7:0x25c,_0x305728:'UXSS',_0x2133ca:0x8e,_0x8ca5a7:0x6f,_0x1eb764:0x1aa,_0x12e453:0x72,_0x1866f7:']^i4',_0x7ad409:0x76,_0x2a8eb8:0xf2,_0x104496:'S66V',_0x80fa45:0xf8,_0xf4c011:0xef,_0x3f4261:'65t)',_0x4943f1:'#Jzf',_0x18ccf7:0x139,_0x5bf1b9:0xc,_0x134eb6:0x9b,_0x4f96ac:0x1d1,_0x3fb09d:0xd,_0x4e737a:'AYRW',_0x3e8cb8:0x4c,_0x2ce5c1:'OEb[',_0x5244de:'WlMI',_0x1c2fff:0x89,_0x55a82a:0xca,_0x304dca:0xee,_0x5426dc:0x130,_0x319ec9:0x184,_0xb8bdbc:0x3d,_0x13b25c:0x107,_0x37d779:0x10,_0x42efd2:'XtVi',_0xecae09:0xdd,_0x2642d8:0xd4,_0x517787:0x1c7,_0x2bafcc:0x77,_0x5cfb7a:'rAIC',_0x2dd1e:0xd3,_0x407cf3:0x3e,_0x4a880c:0xaa,_0x3c0fc1:0x178,_0x587d8e:0x10b,_0x1e27a6:0x18a,_0x2d2139:0x3f,_0x3c5a7e:0x174,_0x24b296:0x302,_0x32c8c2:0x28a,_0x1d25c8:'k*x7',_0x4b7ee1:0x1a4,_0x2524df:0xa8,_0x129145:'IZBF',_0x3fafc5:0x3a,_0x24ace4:0x215,_0x489ca3:0x312,_0x239a94:'65t)',_0x10b901:0x4b,_0x5587f0:0x378,_0x1d99d8:0xb3,_0x14a802:0x8e,_0x4a62b4:0xc9,_0x5676e7:'XtVi',_0x22064a:0x1a2,_0x155eea:0x10d,_0x202a5f:0xfc,_0x5ba668:0x97,_0x47c42f:'Id0X',_0x4e969c:0xe0,_0x516fa0:0x1a1,_0x4d3a4b:'MCTk',_0x4367dd:0xb2,_0x454a53:0x125,_0x1661fb:0xc,_0x301a09:0x13e,_0x428bba:0x38,_0x3bbd6b:0x48,_0x5cf1d7:0x103,_0x359f62:'S%t6',_0x21c688:'G4(O',_0x3497aa:0x106,_0x5f4cf9:0x1e8,_0x32521e:'n1Xg',_0x2b823a:0x4,_0x11bee9:0x21,_0xec9603:0x16e,_0xf78401:0x216,_0x14e426:0xe3,_0x167d9f:0x7b,_0x5e8daf:0x62,_0x2e469d:0xcd,_0x317df9:0x41,_0x562cce:0x1f3,_0x3008c0:0x11f,_0x3868e7:'5@iN',_0x1f30f4:0xb5,_0x57bd32:0x11a,_0x44f989:0x11,_0x14f838:0x184,_0x194248:0x1e7,_0x5423b9:0x2ad,_0x38925b:0x12f,_0x3ff26d:0x124,_0x26ac16:0x6,_0x3f9a04:'Hbdi',_0x169c0c:0xda,_0x46001b:'NLEw',_0xa6ee54:0x2af,_0x30997f:0x239,_0x5617b3:'IZBF',_0xef40cc:0x1da,_0xa081c5:0x8f,_0x148e33:0x30,_0xcd1849:0xff,_0x22c873:'5@iN',_0x5b208f:0x149,_0x200e9d:0x192,_0x2ff01c:0x176,_0x35ae87:0x2ba,_0x58b205:'Z9p(',_0x4d26da:0x1a9,_0x5cfb69:'HZP%',_0x17007b:0x35e,_0x2d6934:0x23c,_0x19f20c:0x229,_0x51e3e4:'fBj^',_0x8f0bd1:0x1e8,_0x228823:0x14b,_0x28386a:0x157,_0x4a2609:')b8k',_0x1055e0:0x190,_0x1cce4a:0x88,_0x243c49:0xb1,_0x31545c:0x55,_0x163a02:0x33,_0x3b028b:0xd3,_0x41e84b:0x8,_0x415d03:0x6e,_0x32281a:0xf5,_0x44d27f:0x6d,_0xce7a36:0x154,_0x2b0a78:0xfa,_0x29e122:0x21d,_0xf89ba6:0x29,_0x5ba136:0x140,_0x40efe5:0x213,_0x52743b:0x158,_0x777291:'FbJU',_0xca5174:0x116,_0x4c2b76:0x1a,_0x55f339:0x61,_0x126fe9:0x256,_0x4f98f4:'5@iN',_0x206150:0xf,_0x2c416f:0xe9,_0x1f9b80:0x50,_0x44d2c1:0x17f,_0x537405:0xa2,_0x54ae13:0x9a,_0x3fd79d:0x11c,_0x570e06:0x7a,_0x56a21c:0xbe,_0x522c11:'4bJu',_0x27b029:0x16f,_0x2a8d9d:0xd1,_0x3f352f:0x137,_0x279430:0x241,_0x5bf910:'ll@d',_0x19b7dd:0x1,_0x1b3c69:0x272,_0x10b2cb:0x1be,_0x7bf839:'5@iN',_0x381a4f:0x1d8,_0x2655d6:0x2c,_0x4433a5:'4bJu',_0xe52393:0x265,_0x4bdb4c:0xc8,_0x110cc4:0x4d,_0xd845a8:0x20,_0x202b84:0x211,_0x41012f:0xe8,_0xad3e79:0x15,_0x50b274:0x34,_0xdfbbae:0x17e,_0x116625:0x199,_0x52a3fa:0x2a9,_0x1e41d2:0xf9,_0x3741cb:0x10a,_0x335ece:0xa5,_0x33e8ff:0x9c,_0x5e63df:0xab,_0x45afa6:0xa,_0x593abc:0x8c,_0x188ebb:0x10,_0x173aae:0x8d,_0x5a0eac:0x31,_0x1f8116:0xf,_0xed19da:0x1a4,_0x780080:0x1cf,_0x6113a7:0x1e7,_0x562f9a:'L&X]',_0x421629:0x135,_0x34bf3c:0x102,_0x5a6327:0xad,_0x294a29:0x49,_0x564f1d:0xa,_0xab1034:'7!da',_0xf711b9:0xd5,_0x332692:0xf7,_0x2d0c66:'k*x7',_0x43704b:0x117,_0x9c9b9f:0x74,_0x467a64:'nyUT',_0x205a13:0x67,_0xeba4b6:'RdY6',_0x8a6027:0x1a8,_0x5d9459:0x8,_0x286bd4:0x69,_0x304e5b:0x14d,_0x1ac84d:'pNmB',_0x282952:0x80,_0x4a3b74:0x105,_0x458a6b:0x111,_0x3fc087:0xcd,_0x379dba:0xca,_0x14c7a8:0x12,_0x155b17:0x13,_0x57df26:']]&3',_0x3a5943:0x234,_0x17df43:0xc3,_0x310f6b:'MXVh',_0x3057e2:0x149},_0x154778={_0x4bd773:0x1b6,_0x3836fc:0x15d},_0x5f132b={_0x379bde:0x37,_0x29efad:0x270},_0x456623={'PFESg':function(_0x5716d8,_0x430d75){return _0x5716d8===_0x430d75;},'ZXCol':_0x1631a5(_0x17717e._0x5c3b5f,_0x17717e._0xd8ad6f,0x15,-0x99),'ZMKeI':function(_0xa2799d,_0x34d601){return _0xa2799d===_0x34d601;},'uHfsG':function(_0xc152b4,_0x4caeac){return _0xc152b4===_0x4caeac;},'yMkBl':_0x1631a5(_0x17717e._0xa14acc,-0x17e,-_0x17717e._0x261c25,-0x20),'PoBUQ':_0x1631a5(_0x17717e._0x2919aa,-0x151,-_0x17717e._0x45c9a6,-0xb0),'tsmzH':function(_0x3e6434,_0xc6f4c1){return _0x3e6434!==_0xc6f4c1;},'HUsxT':_0x1631a5(_0x17717e._0x501c42,-_0x17717e._0x558f9f,-_0x17717e._0x565e4f,-_0x17717e._0x2ce2bf),'iDpcO':_0x1631a5('HZP%',-0xb3,_0x17717e._0x4271d6,0x1c9),'bFNXY':_0x499954(-_0x17717e._0x41c1b4,-_0x17717e._0x2485cb,-0x2a6,_0x17717e._0x5bef1b),'rMWtt':_0x499954(-_0x17717e._0x29f6a2,_0x17717e._0x298fa8,-0x10c,'rAIC'),'VvmWJ':function(_0x2be1cb,_0x504c69){return _0x2be1cb===_0x504c69;},'cRnIy':_0x1631a5('S66V',-_0x17717e._0x1fc4f2,-0x24,-0xe2),'enGHe':_0x499954(-_0x17717e._0x44ac19,-0xb0,-_0x17717e._0x5c7bb2,_0x17717e._0x533de2),'rIFBq':function(_0x1c011a,_0x41f89f){return _0x1c011a>_0x41f89f;},'DukrL':function(_0x38ac7e,_0x340b41){return _0x38ac7e>_0x340b41;},'MERff':_0x499954(-_0x17717e._0xd96e2,-_0x17717e._0x5ad528,-_0x17717e._0x4a5991,_0x17717e._0xcc710b),'qJFze':function(_0x10c474,_0x593804){return _0x10c474!==_0x593804;},'KKeOX':_0x499954(0xc2,-_0x17717e._0x55b2e8,-_0x17717e._0x548b2d,'$&Rj'),'yWXyH':_0x1631a5(_0x17717e._0x4b4d44,-0x68,-0x139,-_0x17717e._0xd8ad6f),'VaUys':function(_0x30858e,_0x5b0f0a){return _0x30858e instanceof _0x5b0f0a;},'NqonT':function(_0x606cca,_0x20b42d){return _0x606cca(_0x20b42d);}};function _0x499954(_0x465954,_0xb2fb77,_0x2467a0,_0x420c16){return _0x4168b0(_0x465954-0x6a,_0xb2fb77-_0x5f132b._0x379bde,_0xb2fb77- -_0x5f132b._0x29efad,_0x420c16);}function _0x1631a5(_0x474238,_0x3e6036,_0xdfda24,_0x13a103){return _0x398f57(_0xdfda24- -0x440,_0x3e6036-_0x154778._0x4bd773,_0xdfda24-_0x154778._0x3836fc,_0x474238);}try{if(_0x3f77a9[_0x1631a5('k*x7',-_0x17717e._0x503780,-0x1bd,-0xf1)+_0x1631a5(_0x17717e._0x353558,_0x17717e._0x133e32,0x8a,-_0x17717e._0x36173a)]&&(_0x456623[_0x499954(-0x1f3,-_0x17717e._0x542ce2,-_0x17717e._0x578807,'JwR8')](_0x3f77a9[_0x1631a5(_0x17717e._0x27cd78,-0x8d,0x6c,0xc6)],_0x456623['ZXCol'])||_0x456623['ZMKeI'](_0x3f77a9[_0x1631a5(_0x17717e._0x47a20c,-_0x17717e._0x53022b,-0x1c7,-0x23d)],_0x1631a5(_0x17717e._0x130f28,-_0x17717e._0x307262,-_0x17717e._0x3e5908,-_0x17717e._0x429d81)))){if(agent_repo_1[_0x499954(-0x1e,-_0x17717e._0x44ac19,-0x5c,'MCTk')+_0x1631a5(_0x17717e._0x1dbbb3,-0xbd,_0x17717e._0x548b2d,-_0x17717e._0x111d4c)][_0x1631a5('K1MK',-_0x17717e._0x267914,-_0x17717e._0x3f6161,-_0x17717e._0x258d54)+_0x1631a5('h3kV',_0x17717e._0x48b6af,0x48,0x6c)](_0x3f77a9['department'+_0x1631a5('5@iN',-_0x17717e._0x3ad1ba,-0x111,-0x15d)],_0x3f77a9[_0x499954(-_0x17717e._0x221572,-_0x17717e._0x1a22fe,-_0x17717e._0x1579fe,'G4(O')]))return{'success':![],'message':_0x1631a5(_0x17717e._0x26c69b,-_0x17717e._0x1c4ddc,-0x1cb,-0x2fb)+(_0x456623['uHfsG'](_0x3f77a9[_0x1631a5(_0x17717e._0x5bef1b,_0x17717e._0x12ba75,-0x11,-_0x17717e._0x5aec6a)],_0x456623['ZXCol'])?_0x499954(-_0x17717e._0x10fd11,-0x4c,_0x17717e._0x402135,'Hbdi'):_0x456623[_0x499954(-0x32,0x21,-_0x17717e._0x29baa1,_0x17717e._0x48807a)])+(_0x499954(-_0x17717e._0x450e82,0x5c,-0x41,'IZBF')+'个')};}const _0x934310=_0x3f77a9['id']||(0xbb*0xc+0xddb+-0x169f,utils_1[_0x499954(-_0x17717e._0x1c7727,_0x17717e._0x4b2c18,0xdc,_0x17717e._0x947fcc)+_0x1631a5(_0x17717e._0x2f1df6,-0x1b3,-0x172,-_0x17717e._0x32710e)])();if(agent_repo_1[_0x1631a5(_0x17717e._0x495aeb,0x1a0,_0x17717e._0x2f1d55,0xd)+_0x499954(_0x17717e._0x4b5953,-0x8d,-_0x17717e._0x5c365d,'$&Rj')]['exists'](_0x934310)){const _0x1f0b0e={};return _0x1f0b0e[_0x499954(-0x193,-0xd2,-_0x17717e._0x5cda09,'MCTk')]=![],_0x1f0b0e[_0x499954(-_0x17717e._0x361a6c,-0x22f,-0x16f,'fBj^')]=_0x1631a5('UK(l',_0x17717e._0x1a143a,0x8e,0x6)+_0x934310+'\x20已存在',_0x1f0b0e;}const _0xedaf91=(-0x36e*0x7+0xe27+-0x9db*-0x1,utils_1[_0x499954(-_0x17717e._0x79937b,-0x195,-0x77,_0x17717e._0x533de2)+_0x499954(-0xe0,-_0x17717e._0x2333d3,-_0x17717e._0x4ad1ae,_0x17717e._0x5c3b5f)])(_0x934310),_0x5c3843=(0x133+0xd37+-0x171*0xa,utils_1[_0x499954(-0x98,_0x17717e._0x492333,0xd9,_0x17717e._0xd5b7b)+'r'])(_0x934310);(-0x1c0f+-0x355+0x11f*0x1c,openclaw_helper_1[_0x1631a5('k*x7',-0xcb,-0xb,_0x17717e._0x2f48fe)+'tDirectori'+'es'])(_0x934310);let _0x1ecbe4,_0x5a2f93=[];if(_0x3f77a9[_0x499954(-0xf1,0x2a,_0x17717e._0x2d605c,_0x17717e._0x45aad3)]===_0x456623[_0x499954(-0x12a,0x32,_0x17717e._0x143ef3,_0x17717e._0x2dafdc)]&&_0x3f77a9[_0x499954(-_0x17717e._0xda40f7,-0x1c3,-0x224,_0x17717e._0x305728)]){const _0x259319=job_repo_1[_0x1631a5(']^i4',-_0x17717e._0x2133ca,_0x17717e._0x8ca5a7,0xa4)+_0x1631a5(_0x17717e._0x495aeb,-_0x17717e._0x1eb764,-0x127,-0x177)]['findById'](_0x3f77a9[_0x499954(-0x6c,_0x17717e._0x12e453,-0x66,_0x17717e._0x1866f7)]);if(_0x259319){_0x1ecbe4=_0x259319[_0x1631a5('#Jzf',-0x209,-0x158,-_0x17717e._0x7ad409)];if(_0x259319[_0x499954(-0x8e,-_0x17717e._0x2a8eb8,-_0x17717e._0x5ad528,_0x17717e._0x104496)+_0x499954(_0x17717e._0x80fa45,0x53,-_0x17717e._0xf4c011,_0x17717e._0x3f4261)]){if(_0x456623[_0x1631a5(_0x17717e._0x4943f1,0xe7,-0x3d,-_0x17717e._0x18ccf7)](_0x456623[_0x499954(0x5b,_0x17717e._0x5bf1b9,_0x17717e._0x134eb6,'JwR8')],_0x456623['iDpcO']))try{const _0x460430=JSON[_0x1631a5('JwR8',0x195,_0x17717e._0x133e32,_0x17717e._0x4f96ac)](_0x259319[_0x499954(0x13,_0x17717e._0x3fb09d,0x133,_0x17717e._0x4e737a)+_0x499954(-0x12b,-0x15,-_0x17717e._0x3e8cb8,_0x17717e._0x2ce5c1)]);for(const _0xf6f109 of _0x460430){const _0x4f5091=skill_pack_repo_1[_0x1631a5(_0x17717e._0x5244de,-0x12e,-0x97,_0x17717e._0x1c2fff)+_0x1631a5('UK(l',-_0x17717e._0x55a82a,-0x1af,-0x255)][_0x1631a5('pNmB',-0x13c,-_0x17717e._0x304dca,-_0x17717e._0x5426dc)](_0xf6f109);if(_0x4f5091){if(_0x456623[_0x499954(-0x28f,-0x229,-0x1e3,'5@iN')](_0x456623[_0x499954(_0x17717e._0x319ec9,_0x17717e._0xb8bdbc,-_0x17717e._0x13b25c,'AYRW')],_0x456623[_0x1631a5(_0x17717e._0x26c69b,-0x27,0x46,-_0x17717e._0x37d779)]))_0x5a2f93[_0x499954(-0x143,-0xa7,_0x17717e._0x2333d3,_0x17717e._0x42efd2)]({'id':_0xf6f109,'name':_0x4f5091['name'],'content':JSON[_0x1631a5('n1Xg',-0x12a,-0x151,-0x22e)](_0x4f5091,null,0x24cd+-0x1b9e+-0x92d)});else return _0x352023[_0x499954(-_0x17717e._0xecae09,-_0x17717e._0x2642d8,0x15,'ll@d')+_0x499954(-_0x17717e._0x517787,-0x21a,-0x293,'h3kV')][_0x499954(-0x81,-_0x17717e._0x2bafcc,-0x16e,'q)6p')+_0x1631a5(_0x17717e._0x5cfb7a,_0x17717e._0x2dd1e,-_0x17717e._0x407cf3,-_0x17717e._0x4a880c)+_0x1631a5('NLEw',-_0x17717e._0x3c0fc1,-0x9b,-_0x17717e._0x587d8e)](_0xbf8d30,_0x14e957);}}}catch{}else{const _0x3cfacf={};return _0x3cfacf[_0x1631a5('FbJU',-_0x17717e._0x1e27a6,-_0x17717e._0x2d2139,-_0x17717e._0x3c5a7e)]=![],_0x3cfacf[_0x499954(-_0x17717e._0x24b296,-0x1cc,-_0x17717e._0x32c8c2,'UK(l')]=_0x1631a5(_0x17717e._0x1d25c8,-_0x17717e._0x4b7ee1,-0x7a,-_0x17717e._0x2524df)+_0x256b9c+_0x499954(0x3e,0x67,0xb9,_0x17717e._0x129145),_0x3cfacf;}}}}const _0x3d6a08={};_0x3d6a08[_0x499954(0x101,_0x17717e._0x3fafc5,0xdc,'n1Xg')]=_0x3f77a9[_0x499954(-0x1a3,-_0x17717e._0x24ace4,-_0x17717e._0x489ca3,'WlMI')],_0x3d6a08[_0x1631a5(_0x17717e._0x239a94,-0xdf,-_0x17717e._0xf4c011,-0xa4)]=_0x3f77a9[_0x1631a5('AYRW',-0xa1,_0x17717e._0x10b901,0x66)],_0x3d6a08[_0x499954(-0x177,-0x22e,-_0x17717e._0x5587f0,'nyUT')+'Id']=_0x3f77a9[_0x499954(-_0x17717e._0x1d99d8,-_0x17717e._0x14a802,-_0x17717e._0x4a62b4,'UXSS')+_0x499954(-0x190,-0x51,0xcb,_0x17717e._0x5676e7)],_0x3d6a08[_0x1631a5(_0x17717e._0x5244de,-0xab,-_0x17717e._0x22064a,-_0x17717e._0x155eea)]=_0x3f77a9[_0x1631a5('ZF8k',_0x17717e._0x202a5f,_0x17717e._0x5ba668,0x1db)],(-0x1*0xae8+-0x9a4+0x148c,openclaw_helper_1[_0x1631a5(_0x17717e._0x47c42f,0x1b,-_0x17717e._0x4e969c,-0x223)+'tFiles'])(_0x934310,_0x3d6a08);const _0x10c07b=new Date()[_0x499954(-_0x17717e._0x516fa0,-0x186,-0x126,'7!da')+'g'](),_0x372891={};_0x372891['id']=_0x934310,_0x372891[_0x1631a5(_0x17717e._0x4d3a4b,0xfb,-0xc,_0x17717e._0x4367dd)]=_0x3f77a9[_0x1631a5(_0x17717e._0x4d3a4b,_0x17717e._0x454a53,-_0x17717e._0x1661fb,-_0x17717e._0x301a09)],_0x372891['department'+_0x499954(-_0x17717e._0x428bba,_0x17717e._0x3bbd6b,_0x17717e._0x5cf1d7,_0x17717e._0x353558)]=_0x3f77a9[_0x1631a5(_0x17717e._0x359f62,-_0x17717e._0x13b25c,-0x9d,0x6d)+_0x1631a5(_0x17717e._0x21c688,-_0x17717e._0x3497aa,-0x1dc,-_0x17717e._0x5f4cf9)]||null,_0x372891[_0x1631a5(_0x17717e._0x32521e,-_0x17717e._0x2b823a,0x47,-_0x17717e._0x11bee9)]=_0x3f77a9[_0x499954(_0x17717e._0xec9603,0x42,0xf1,'Hbdi')]||null,_0x372891[_0x499954(-0xe0,-_0x17717e._0xf78401,-0xd8,'XtVi')]=_0x3f77a9['role'],_0x372891[_0x1631a5('k*x7',-_0x17717e._0x14e426,-_0x17717e._0x167d9f,_0x17717e._0x5e8daf)+'path']=null,_0x372891[_0x1631a5('YysK',_0x17717e._0x2e469d,_0x17717e._0x317df9,-_0x17717e._0x202a5f)+_0x499954(-0x106,-_0x17717e._0x562cce,-_0x17717e._0x3008c0,'$&Rj')]=null,_0x372891[_0x1631a5(_0x17717e._0x3868e7,_0x17717e._0x1f30f4,0x79,_0x17717e._0x57bd32)+_0x1631a5(']]&3',-_0x17717e._0x44f989,-0xf1,-_0x17717e._0x14f838)]=_0xedaf91,_0x372891['status']=_0x456623[_0x499954(-0x156,-_0x17717e._0x194248,-0x92,')b8k')],_0x372891[_0x499954(-_0x17717e._0x5423b9,-_0x17717e._0x53022b,-_0x17717e._0x38925b,'#Jzf')+_0x499954(0x168,0x35,-0xfb,'Z9p(')]=null,_0x372891[_0x1631a5(_0x17717e._0x1d25c8,-0x1e8,-0x141,-0x1fa)]=_0x10c07b;const _0x168743=_0x372891;agent_repo_1[_0x1631a5('Bgzq',-_0x17717e._0x3ff26d,-0x79,-0x120)+_0x499954(-_0x17717e._0x26ac16,0x3,0xb8,_0x17717e._0x3f9a04)][_0x1631a5(_0x17717e._0x239a94,-0xe8,0x30,_0x17717e._0x169c0c)](_0x168743),(0x1c*0xf5+-0x26a0+0xbd4,openclaw_helper_1[_0x1631a5(_0x17717e._0x46001b,-0x247,-0x1e4,-_0x17717e._0xa6ee54)+_0x499954(-0x21a,-0x1f4,-_0x17717e._0x30997f,_0x17717e._0x5617b3)])(_0x168743);if(_0x168743[_0x1631a5(_0x17717e._0x533de2,_0x17717e._0xef40cc,_0x17717e._0xa081c5,-0x17)+_0x499954(-_0x17717e._0x148e33,-0x153,-_0x17717e._0xcd1849,_0x17717e._0x22c873)]){if(_0x456623[_0x499954(-_0x17717e._0x5b208f,-_0x17717e._0x200e9d,-0x20f,'fBj^')](_0x456623[_0x1631a5('ETU]',-_0x17717e._0x2ff01c,-_0x17717e._0x14f838,-_0x17717e._0x35ae87)],_0x456623[_0x1631a5(_0x17717e._0x58b205,-0x5b,0x55,-0x4f)])){const _0x2bae17=(0x2*0x7d7+-0x25c1+-0x1613*-0x1,openclaw_helper_1[_0x499954(-0xe9,0x71,_0x17717e._0x4d26da,_0x17717e._0x5cfb69)+_0x499954(-_0x17717e._0x17007b,-_0x17717e._0x2d6934,-_0x17717e._0x19f20c,_0x17717e._0x5c3b5f)])(_0x934310,_0x168743[_0x1631a5(_0x17717e._0x51e3e4,-_0x17717e._0x8f0bd1,-0xc4,0x71)+_0x1631a5('K1MK',-0xbb,-_0x17717e._0x228823,-_0x17717e._0x28386a)],_0x456623[_0x1631a5(_0x17717e._0x4a2609,-0x1da,-_0x17717e._0x1a143a,-0x14a)]);_0x2bae17[_0x1631a5('l#wr',-0x94,0x98,_0x17717e._0x1055e0)]&&_0x456623[_0x1631a5('n1Xg',-_0x17717e._0x1cce4a,_0x17717e._0x243c49,-_0x17717e._0x31545c)](_0x2bae17[_0x1631a5('h3kV',0x3c,0xa7,-0x70)+_0x1631a5('UK(l',-0x1b2,-0xce,0x5d)][_0x499954(-0x152,-0x201,-0x2a3,'WlMI')],-0x1c5f+-0x73b*-0x5+-0x6*0x14c)&&console[_0x1631a5('S%t6',_0x17717e._0x163a02,_0x17717e._0x1661fb,0xe1)](_0x1631a5('WlMI',-0x17d,-0x41,_0x17717e._0x3b028b)+_0x1631a5('G4(O',-0x120,_0x17717e._0x41e84b,_0x17717e._0x415d03)+_0x2bae17[_0x499954(_0x17717e._0x32281a,_0x17717e._0x44d27f,_0x17717e._0xce7a36,'XtVi')+_0x499954(-0x1a9,-0x6d,-_0x17717e._0x2b0a78,_0x17717e._0x1866f7)][_0x499954(-0xed,-_0x17717e._0x29e122,-0x2bf,'65t)')]+(_0x1631a5('WlMI',-0xfc,_0x17717e._0xf89ba6,_0x17717e._0x5ba136)+'限'));const _0xcb5641=(0x7*0x1f4+0x7*0x4c4+0x25a*-0x14,openclaw_helper_1[_0x499954(-_0x17717e._0x40efe5,-0x19d,-0x12c,'AYRW')+_0x1631a5(_0x17717e._0x533de2,_0x17717e._0x52743b,0x32,-_0x17717e._0x29f6a2)])(_0x168743[_0x1631a5(_0x17717e._0x777291,-0x19a,-_0x17717e._0xca5174,_0x17717e._0x4c2b76)+_0x499954(-_0x17717e._0x55f339,-0x153,-_0x17717e._0x126fe9,_0x17717e._0x4f98f4)]);_0xcb5641[_0x499954(-_0x17717e._0x206150,-_0x17717e._0x2c416f,-_0x17717e._0x1f9b80,_0x17717e._0x47a20c)]&&_0x456623[_0x499954(-0x13a,-_0x17717e._0x44d2c1,-0xd8,'4bJu')](_0xcb5641[_0x1631a5('XtVi',-0x3d,-_0x17717e._0x537405,-0x1c8)+'nt'],0x6*-0x4fd+-0x176+-0x1c*-0x11f)&&console[_0x499954(-0x213,-_0x17717e._0x3c0fc1,-_0x17717e._0x54ae13,'UK(l')](_0x499954(-0x279,-0x1f8,-_0x17717e._0x3fd79d,_0x17717e._0x5676e7)+_0x499954(-0x15a,-_0x17717e._0x570e06,-_0x17717e._0x56a21c,_0x17717e._0x522c11)+_0xcb5641[_0x1631a5(_0x17717e._0x777291,-0x60,-_0x17717e._0x27b029,-0xdd)+'nt']+_0x1631a5(_0x17717e._0x2ce5c1,_0x17717e._0x2a8d9d,0x86,_0x17717e._0x3f352f));}else{const _0x391e90=_0x3fe6c0[_0x1631a5(_0x17717e._0x353558,-0x223,-0x161,-_0x17717e._0x279430)](_0x1b3374[_0x1631a5(_0x17717e._0x5bf910,0x150,_0x17717e._0x19b7dd,-0xbd)+_0x499954(-_0x17717e._0x1b3c69,-_0x17717e._0x10b2cb,-0x106,_0x17717e._0x7bf839)]);for(const _0x3c0d33 of _0x391e90){const _0x214546=_0x22ae45[_0x1631a5(_0x17717e._0x2ce5c1,-_0x17717e._0x381a4f,-0x14d,-_0x17717e._0x2655d6)+_0x1631a5(_0x17717e._0x4433a5,-0x182,-0x1c2,-_0x17717e._0xe52393)][_0x499954(0x5c,0x3b,0xe9,'h3kV')](_0x3c0d33);_0x214546&&_0x345a12[_0x499954(-0x14c,-_0x17717e._0x4bdb4c,_0x17717e._0x110cc4,_0x17717e._0x777291)]({'id':_0x3c0d33,'name':_0x214546[_0x1631a5('tR@(',0x11e,-_0x17717e._0xd845a8,-0xa9)],'content':_0x2adf56[_0x1631a5('fBj^',-_0x17717e._0x202b84,-_0x17717e._0x41012f,0x3d)](_0x214546,null,0x2*-0xae8+0x423*0x5+-0x1*-0x123)});}}}const _0x54b5ae=(-0x1333+-0x5*0xb+0x136a,openclaw_helper_1[_0x499954(_0x17717e._0xad3e79,-0x8b,-_0x17717e._0x50b274,'n1Xg')+_0x499954(-_0x17717e._0xdfbbae,-_0x17717e._0x116625,-0x104,'&2IR')+_0x1631a5('MXVh',_0x17717e._0x10b901,0x9a,-0x56)])();_0x54b5ae[_0x499954(-_0x17717e._0x52a3fa,-0x1ba,-_0x17717e._0x1e41d2,'pNmB')]&&console[_0x1631a5(_0x17717e._0x4d3a4b,_0x17717e._0x3741cb,0x16,_0x17717e._0x4ad1ae)](_0x499954(-0x66,-0x145,-0x265,'tR@(')+_0x499954(_0x17717e._0x335ece,-_0x17717e._0x33e8ff,-_0x17717e._0x5e63df,_0x17717e._0x48807a)+'信息');const _0x5165c6={};_0x5165c6['id']=_0x168743['id'],_0x5165c6[_0x499954(_0x17717e._0x45afa6,-_0x17717e._0x593abc,0x71,'nyUT')]=_0x168743[_0x1631a5('k*x7',_0x17717e._0x188ebb,-_0x17717e._0x173aae,0x57)],_0x5165c6[_0x499954(-0x108,-_0x17717e._0x5a0eac,-0x4a,'&2IR')]=_0x168743[_0x1631a5(_0x17717e._0xcc710b,-0x1dd,-0x95,-_0x17717e._0x1f8116)],_0x5165c6[_0x499954(-_0x17717e._0xed19da,-0xf5,-0x57,_0x17717e._0x2f1df6)+_0x1631a5('MCTk',-0x1d7,-_0x17717e._0x780080,-_0x17717e._0x6113a7)]=_0x168743[_0x1631a5(_0x17717e._0x562f9a,-0xab,-_0x17717e._0x421629,-_0x17717e._0x34bf3c)+_0x1631a5('65t)',_0x17717e._0x5a6327,_0x17717e._0x294a29,-_0x17717e._0x564f1d)],_0x5165c6[_0x499954(-0x192,-0x1b2,-0x26f,'n1Xg')]=_0x168743[_0x1631a5('Bgzq',-0x1b6,-0xdf,0x69)+_0x1631a5(_0x17717e._0xab1034,-0x20d,-0x11e,-_0x17717e._0x2f48fe)];const _0x1555b6=_0x5165c6;configTracker[_0x1631a5(_0x17717e._0x2dafdc,-_0x17717e._0xf711b9,-0x146,-0x97)+'tCreate'](_0x934310,_0x1555b6);const _0x28304c={};return _0x28304c[_0x499954(-_0x17717e._0x332692,-0xce,-0x9,_0x17717e._0x2d0c66)]=!![],_0x28304c[_0x499954(-_0x17717e._0x43704b,-_0x17717e._0x261c25,-_0x17717e._0x9c9b9f,'IZBF')]=_0x168743,_0x28304c[_0x1631a5(_0x17717e._0x467a64,-0x1ae,-_0x17717e._0x205a13,-0x182)]=_0x456623[_0x1631a5(_0x17717e._0xeba4b6,-0xad,-0x192,-_0x17717e._0x8a6027)],_0x28304c;}catch(_0x25974f){if(_0x456623[_0x1631a5(_0x17717e._0x5bf910,_0x17717e._0x5d9459,-0x2,-0x14a)](_0x456623[_0x499954(-0x1ae,-0x22d,-0x325,'Bgzq')],_0x456623[_0x499954(-_0x17717e._0x286bd4,-_0x17717e._0x304e5b,-0x1d4,_0x17717e._0x1ac84d)]))return{'success':![],'message':_0x1631a5(']]&3',0x8c,-_0x17717e._0x282952,0x16)+(_0x456623[_0x499954(-0x18,0x24,0xff,'k*x7')](_0x25974f,Error)?_0x25974f[_0x1631a5('MCTk',-0x20,-0x2c,_0x17717e._0x4a3b74)]:_0x456623[_0x499954(-_0x17717e._0x458a6b,-0x5b,-_0x17717e._0x3fc087,'K1MK')](String,_0x25974f))};else{if(_0x48b038[_0x1631a5(_0x17717e._0x21c688,-_0x17717e._0x379dba,-0xaf,-0x1b0)](_0x155f1e))try{const _0x318232={};_0x318232[_0x499954(_0x17717e._0x14c7a8,-0x5d,-_0x17717e._0x155b17,_0x17717e._0x57df26)]=!![],_0x318232[_0x499954(-_0x17717e._0x3a5943,-_0x17717e._0x1eb764,-_0x17717e._0xf4c011,'RdY6')]=!![],_0x563b6e['rmSync'](_0x27b2be,_0x318232);}catch(_0x1f5cf4){_0x24a21e[_0x499954(-_0x17717e._0x116625,-_0x17717e._0x17df43,0x8b,_0x17717e._0x310f6b)](_0x499954(-_0x17717e._0x3057e2,-_0x17717e._0x2524df,-0xb9,'nyUT')+_0x2dcb19+':\x20'+_0x1f5cf4);}}}}[_0x4168b0(0x262,0x208,0x24c,'FbJU')](_0x1849ba){const _0x59fa90={_0x1ca92c:0x14d,_0x42fdbd:'AYRW',_0x590d75:0x523,_0x329d52:'ETU]',_0x5decdf:0x5b4,_0xac5b4f:0x4d5},_0xd8cc72={_0x5a9098:0xa9};function _0x4f9916(_0x631d02,_0x3e64e8,_0x5d80d3,_0x35c0cd){return _0x4168b0(_0x631d02-0x16,_0x3e64e8-0x1b6,_0x631d02- -0x269,_0x3e64e8);}function _0x4e8c77(_0x3c0d69,_0x474797,_0x15ffec,_0x13253a){return _0x398f57(_0x15ffec-_0xd8cc72._0x5a9098,_0x474797-0x18d,_0x15ffec-0x16,_0x474797);}return agent_repo_1[_0x4f9916(-_0x59fa90._0x1ca92c,_0x59fa90._0x42fdbd,-0x202,-0xf1)+_0x4e8c77(_0x59fa90._0x590d75,_0x59fa90._0x329d52,0x529,0x499)][_0x4e8c77(_0x59fa90._0x5decdf,'XtVi',_0x59fa90._0xac5b4f,0x50e)](_0x1849ba);}[_0x398f57(0x256,0x1e1,0x225,'pNmB')+'nt'](){const _0xcb3717={_0x4ab071:'XtVi',_0x1fc911:0x1d0,_0x3f160b:0x2cd,_0x40aac8:0x2d2,_0x4534ba:'MXVh',_0x33ac04:0x290},_0x31f961={_0x928e54:0x26,_0x4cfb95:0x1f6},_0x310344={_0x2b4dc8:0x294,_0x56b44a:0xd0};function _0x31f8b8(_0x4e52df,_0x34d910,_0x1357b0,_0x5cc413){return _0x398f57(_0x4e52df- -_0x310344._0x2b4dc8,_0x34d910-_0x310344._0x56b44a,_0x1357b0-0x144,_0x5cc413);}function _0xc6e542(_0x357ce9,_0x2d85aa,_0x21104d,_0x14a434){return _0x4168b0(_0x357ce9-_0x31f961._0x928e54,_0x2d85aa-0x1a0,_0x14a434-_0x31f961._0x4cfb95,_0x21104d);}return agent_repo_1[_0xc6e542(0x318,0x2dc,_0xcb3717._0x4ab071,0x34e)+_0x31f8b8(_0xcb3717._0x1fc911,_0xcb3717._0x3f160b,0x1eb,'n1Xg')][_0xc6e542(0x20b,_0xcb3717._0x40aac8,_0xcb3717._0x4534ba,_0xcb3717._0x33ac04)+'nt']();}[_0x4168b0(-0x10d,-0xf2,0x3d,'G4(O')+_0x4168b0(-0x97,0x2f,0x79,'UK(l')+'le'](_0x24245f,_0x1718bb){const _0x465e29={_0x25a096:0x54,_0x4e423c:'MCTk',_0x33b119:0x660,_0x2633e1:0x51e,_0x560ba0:'AYRW',_0x225619:0x1a4,_0x1c6f61:0x3b,_0x3ade4f:0xb4,_0x1c8088:'S%t6',_0x339acc:0x562,_0x2b9fb3:0x5d3,_0x531b66:'$&Rj',_0x4e727e:0x7,_0x473c81:0xa,_0x561435:'Z9p(',_0x190c4f:0x681,_0x90203:0x5f2,_0xe6874a:'HZP%',_0x51d8ca:0x410,_0x214e9a:'MCTk',_0xcb45ac:0x251,_0x522700:0x17a,_0x4086f1:']]&3',_0x104065:0x5a,_0x1d9de5:0x15,_0x1c4243:0x3f,_0x1583a0:0x755,_0x37d7cc:0x6e8,_0x45b742:0x62c,_0xe4907b:0x6c7,_0x51b97f:0x661,_0xfacb89:0x5ee,_0x3e2c6e:0x614,_0x20e9d4:0x22e,_0x21b813:0x1b6,_0x40fcbc:'JwR8',_0x4043fd:0x67,_0x45d3ab:0x43,_0x4d12c4:0x1d,_0x2b5a5c:'MCTk',_0x4a1ee2:'rAIC',_0x5a422a:0x3ee,_0x2595c9:0x4c7,_0x18a2b1:'#Jzf',_0x507807:0x97,_0x405206:'upO4',_0x24ed6e:0x302,_0x5bd6d6:0x1aa,_0x120298:'L&X]',_0x3813d0:0x5a8,_0x2772bd:0x659,_0x2012c4:0x17,_0x3a0d46:0x19,_0x389746:'n1Xg',_0x4275cc:0x15c,_0x1a31bf:0x568,_0x44353b:'Id0X',_0x401eeb:'MXVh',_0x5b695b:0x15,_0x25e7ca:0x9d},_0x37e772={_0x64b8f7:0x57,_0x4c204a:0x158};function _0x579d2e(_0x133bb9,_0x2caa16,_0x3b6d70,_0x4c7ccf){return _0x398f57(_0x3b6d70- -0x32a,_0x2caa16-_0x37e772._0x64b8f7,_0x3b6d70-_0x37e772._0x4c204a,_0x4c7ccf);}const _0x1a23be={'vAgVn':_0x579d2e(0x101,_0x465e29._0x25a096,0x8b,_0x465e29._0x4e423c),'nwbrX':function(_0x4424c5,_0x28c692){return _0x4424c5!=_0x28c692;},'nvQjo':function(_0x2f10bf,_0x534c4a){return _0x2f10bf<_0x534c4a;},'pnXZP':function(_0x446ca0,_0x377536){return _0x446ca0!==_0x377536;},'obaBq':_0x10fb2a(_0x465e29._0x33b119,0x5e0,_0x465e29._0x2633e1,_0x465e29._0x560ba0),'FmnIN':function(_0x24aca8,_0x51b2c9,_0x4647bb,_0x2556e8){return _0x24aca8(_0x51b2c9,_0x4647bb,_0x2556e8);},'bZVBq':function(_0x2bd3bd,_0x2035eb,_0x5b0bb4){return _0x2bd3bd(_0x2035eb,_0x5b0bb4);},'Vxmlx':function(_0x107448,_0x868104){return _0x107448===_0x868104;},'jvcAc':_0x579d2e(-_0x465e29._0x225619,-_0x465e29._0x1c6f61,-_0x465e29._0x3ade4f,_0x465e29._0x1c8088),'nfZFS':_0x10fb2a(0x724,_0x465e29._0x339acc,_0x465e29._0x2b9fb3,_0x465e29._0x531b66),'mADEJ':_0x579d2e(-_0x465e29._0x4e727e,0x51,_0x465e29._0x473c81,_0x465e29._0x561435),'XWiOH':'haBSf'};function _0x10fb2a(_0xcb5579,_0x29e2a5,_0x5a2db1,_0x518477){return _0x398f57(_0x5a2db1-0x1d5,_0x29e2a5-0xc8,_0x5a2db1-0x70,_0x518477);}if(_0x1a23be[_0x10fb2a(_0x465e29._0x190c4f,0x624,_0x465e29._0x90203,_0x465e29._0xe6874a)](_0x1718bb,_0x1a23be[_0x10fb2a(0x557,_0x465e29._0x51d8ca,0x47a,_0x465e29._0x214e9a)])||_0x1a23be[_0x579d2e(_0x465e29._0xcb45ac,0x1e6,_0x465e29._0x522700,_0x465e29._0x4086f1)](_0x1718bb,_0x1a23be[_0x579d2e(_0x465e29._0x104065,_0x465e29._0x1d9de5,-_0x465e29._0x1c4243,'HZP%')])){if(_0x1a23be[_0x10fb2a(0x730,_0x465e29._0x1583a0,0x62d,'S66V')](_0x1a23be[_0x10fb2a(0x505,0x500,0x62e,'IZBF')],_0x1a23be[_0x10fb2a(_0x465e29._0x37d7cc,0x6ee,_0x465e29._0x45b742,'k*x7')])){const _0x1bed4f=_0x1a23be[_0x10fb2a(0x486,0x457,0x459,'OEb[')][_0x10fb2a(0x61e,_0x465e29._0xe4907b,_0x465e29._0x51b97f,'MCTk')]('|');let _0x3db4cd=-0x1*-0x1d44+0x2*0x431+0x3d*-0x9e;while(!![]){switch(_0x1bed4f[_0x3db4cd++]){case'0':if(_0x1a23be['nwbrX'](_0x9b81d6,null)){for(var _0x4e740c=_0x493636(_0x58ce10),_0x5181eb=0x1c54+-0x1*0x1294+-0x30*0x34;_0x1a23be[_0x10fb2a(_0x465e29._0xfacb89,0x689,_0x465e29._0x3e2c6e,'Hbdi')](_0x5181eb,_0x4e740c[_0x579d2e(0x25e,_0x465e29._0x20e9d4,_0x465e29._0x21b813,_0x465e29._0x40fcbc)]);_0x5181eb++)if(_0x1a23be[_0x579d2e(-0x50,0x74,-0xd,'Id0X')](_0x4e740c[_0x5181eb],_0x1a23be[_0x579d2e(-_0x465e29._0x4043fd,_0x465e29._0x45d3ab,_0x465e29._0x4d12c4,_0x465e29._0x2b5a5c)]))_0x1a23be[_0x579d2e(-0x113,-0x199,-0xca,_0x465e29._0x4a1ee2)](_0x21094c,_0x207e79,_0x2356f6,_0x4e740c[_0x5181eb]);}continue;case'1':return _0x207e79;case'2':var _0x207e79={};continue;case'3':_0x1a23be[_0x10fb2a(0x413,0x3e5,0x540,'FbJU')](_0x529e93,_0x207e79,_0x5579a9);continue;case'4':if(_0x2bcf5f&&_0x30d281['__esModule'])return _0x266051;continue;}break;}}else return agent_repo_1[_0x10fb2a(0x507,_0x465e29._0x5a422a,_0x465e29._0x2595c9,_0x465e29._0x18a2b1)+_0x579d2e(-0x94,-0x1db,-_0x465e29._0x507807,_0x465e29._0x405206)][_0x579d2e(_0x465e29._0x24ed6e,0x2c2,_0x465e29._0x5bd6d6,_0x465e29._0x120298)+_0x10fb2a(_0x465e29._0x3813d0,_0x465e29._0x2772bd,0x521,'upO4')+_0x579d2e(-_0x465e29._0x2012c4,0x5e,-_0x465e29._0x3a0d46,_0x465e29._0x389746)](_0x24245f,_0x1718bb);}else return agent_repo_1[_0x579d2e(-0x3f,-_0x465e29._0x4275cc,-0xc7,']]&3')+_0x10fb2a(0x457,0x643,_0x465e29._0x1a31bf,_0x465e29._0x44353b)]['findByDepa'+_0x579d2e(0x10c,0xd6,-0x26,_0x465e29._0x401eeb)+_0x579d2e(-_0x465e29._0x5b695b,-0x1e5,-_0x465e29._0x25e7ca,_0x465e29._0x214e9a)](_0x24245f,_0x1718bb);}[_0x4168b0(-0x5c,0x37,0xc8,'ETU]')](){const _0x35a52e={_0x543342:0x558,_0x598604:0x425,_0x53ca7c:0x780,_0x5dbe3c:0x56c,_0x3e96bd:'n1Xg',_0x501c1e:0x6b5},_0x5d7b94={_0x5906fe:0x1d3,_0x3b8368:0xe1},_0x31b254={_0x334dee:0x137,_0x25d0ed:0x15,_0x1c392d:0x434};function _0x421598(_0xa19d37,_0x579f32,_0x2d25df,_0x97633c){return _0x4168b0(_0xa19d37-_0x31b254._0x334dee,_0x579f32-_0x31b254._0x25d0ed,_0x97633c-_0x31b254._0x1c392d,_0x2d25df);}function _0x5ccece(_0x45446c,_0x378e73,_0x2c45a1,_0x86a6ae){return _0x398f57(_0x86a6ae-_0x5d7b94._0x5906fe,_0x378e73-_0x5d7b94._0x3b8368,_0x2c45a1-0x18b,_0x45446c);}return agent_repo_1[_0x5ccece('upO4',0x55d,_0x35a52e._0x543342,_0x35a52e._0x598604)+_0x421598(_0x35a52e._0x53ca7c,_0x35a52e._0x5dbe3c,_0x35a52e._0x3e96bd,0x686)][_0x5ccece('L&X]',0x693,0x7a0,_0x35a52e._0x501c1e)]();}[_0x398f57(0x4d3,0x483,0x4fe,'fBj^')+_0x398f57(0x48d,0x458,0x440,'AYRW')](_0x5d9593){const _0x44ff83={_0xafe2c9:'ETU]',_0x17218d:0x197,_0x3664aa:0x1f5,_0x4057d1:'G4(O',_0x332827:0x3e1,_0x4c2b54:0x3ab,_0x29767c:0x391},_0x376edb={_0x1d8d77:0x4d6};function _0x3b056b(_0x388349,_0x563f03,_0x2afc33,_0x14252d){return _0x398f57(_0x2afc33- -_0x376edb._0x1d8d77,_0x563f03-0xe8,_0x2afc33-0xa5,_0x14252d);}function _0x34d50f(_0x152367,_0x3aae3d,_0x4d1f1b,_0x27de9a){return _0x398f57(_0x3aae3d-0x12f,_0x3aae3d-0x185,_0x4d1f1b-0x15e,_0x152367);}return agent_repo_1[_0x34d50f(_0x44ff83._0xafe2c9,0x38a,0x457,0x487)+_0x3b056b(-0x11b,-_0x44ff83._0x17218d,-_0x44ff83._0x3664aa,_0x44ff83._0x4057d1)][_0x34d50f('S66V',_0x44ff83._0x332827,_0x44ff83._0x4c2b54,_0x44ff83._0x29767c)+'rtment'](_0x5d9593);}[_0x4168b0(0xff,0x103,0xc3,'UXSS')](_0x127fcd){const _0x7e0a1a={_0x9a02d5:0x132,_0x1644b0:0xba,_0x4e9691:0xa3,_0x17229e:'XtVi',_0x53a852:0x221,_0x1542ca:0x22,_0x433147:'S%t6',_0x560eb3:0x9f,_0x563ecf:0x1c},_0x199c23={_0x4c0d66:0x340,_0x26641d:0x179},_0x4b01ee={_0x1f8a09:0x28,_0x364c40:0x23};function _0x414001(_0x4bc12b,_0x23ab88,_0x150f40,_0x3c1ea3){return _0x4168b0(_0x4bc12b-_0x4b01ee._0x1f8a09,_0x23ab88-_0x4b01ee._0x364c40,_0x3c1ea3- -0x183,_0x150f40);}function _0x2a299f(_0x1c243c,_0x372ec2,_0x42d387,_0x27f653){return _0x398f57(_0x42d387- -_0x199c23._0x4c0d66,_0x372ec2-0x1a1,_0x42d387-_0x199c23._0x26641d,_0x372ec2);}return agent_repo_1[_0x414001(_0x7e0a1a._0x9a02d5,_0x7e0a1a._0x1644b0,'UXSS',0x13d)+_0x2a299f(_0x7e0a1a._0x4e9691,_0x7e0a1a._0x17229e,0x15e,_0x7e0a1a._0x53a852)][_0x2a299f(_0x7e0a1a._0x1542ca,_0x7e0a1a._0x433147,-_0x7e0a1a._0x560eb3,-_0x7e0a1a._0x563ecf)](_0x127fcd);}[_0x4168b0(0x40a,0x402,0x2e0,'pNmB')](_0x477d88,_0x28b845){const _0x467be3={_0x293ee5:0x53c,_0x5070b0:0x6a5,_0x594b70:0x6c6,_0x2a56c4:0x664,_0x4d2274:0x6c8,_0x298ffb:'Z9p(',_0x218494:0x65d,_0x24b8dc:0x5db,_0x15d566:'&2IR',_0x3c4066:0x63a,_0x399115:0x7e3,_0x241726:'MXVh',_0xd4ea03:0x7dd,_0x381fa6:0x4ca,_0x3e9616:0x6a9,_0x15ac52:0x688,_0x1abb23:0x456,_0x5f480e:0x4ce,_0x44ba39:']]&3',_0xd156f3:0x485,_0x591501:0x545,_0x411c6d:'FbJU',_0x39caa1:0x56e,_0x5cff7c:0x509,_0x929949:0x6f4,_0x1203c5:0x694,_0x4c8f72:'65t)',_0x13a8c1:0x59a,_0x2b4bd3:0x60b,_0x414083:0x544,_0x126d51:0x5fe},_0x5340c8={_0x559147:0x2bc,_0x2361b4:0x123},_0x4ad5cf={_0x488ef0:0x81},_0x21527a={};_0x21527a[_0x17bb5b(0x60a,0x4f1,'MCTk',_0x467be3._0x293ee5)]='Agent不存在';function _0x17bb5b(_0xc3fd9b,_0x4befa4,_0x4ed52c,_0x2ab47d){return _0x398f57(_0xc3fd9b-0x1f3,_0x4befa4-0x1b1,_0x4ed52c-_0x4ad5cf._0x488ef0,_0x4ed52c);}_0x21527a[_0x293c03(_0x467be3._0x5070b0,0x65d,'7!da',_0x467be3._0x594b70)]=_0x17bb5b(_0x467be3._0x2a56c4,_0x467be3._0x4d2274,_0x467be3._0x298ffb,_0x467be3._0x218494);const _0x55fd90=_0x21527a,_0x20948f=agent_repo_1[_0x293c03(0x522,_0x467be3._0x24b8dc,_0x467be3._0x15d566,_0x467be3._0x3c4066)+_0x293c03(_0x467be3._0x399115,0x6ab,_0x467be3._0x241726,_0x467be3._0xd4ea03)][_0x17bb5b(_0x467be3._0x381fa6,0x461,'5@iN',0x4c8)](_0x477d88);if(!_0x20948f){const _0x5bb42c={};return _0x5bb42c[_0x17bb5b(_0x467be3._0x3e9616,0x7e6,_0x467be3._0x15d566,0x564)]=![],_0x5bb42c[_0x17bb5b(0x6de,0x6c0,'4bJu',_0x467be3._0x15ac52)]=_0x55fd90['OGMUy'],_0x5bb42c;}agent_repo_1[_0x17bb5b(_0x467be3._0x1abb23,_0x467be3._0x5f480e,_0x467be3._0x44ba39,0x388)+_0x293c03(_0x467be3._0xd156f3,_0x467be3._0x591501,_0x467be3._0x411c6d,_0x467be3._0x39caa1)]['updateAgen'+'t'](_0x477d88,_0x28b845);function _0x293c03(_0x3401b8,_0x26a083,_0x201204,_0x449d18){return _0x398f57(_0x26a083-_0x5340c8._0x559147,_0x26a083-0x27,_0x201204-_0x5340c8._0x2361b4,_0x201204);}const _0x4b9044={};return _0x4b9044[_0x293c03(0x529,0x663,'IZBF',_0x467be3._0x5cff7c)]=!![],_0x4b9044[_0x293c03(_0x467be3._0x929949,_0x467be3._0x1203c5,_0x467be3._0x4c8f72,_0x467be3._0x13a8c1)]=_0x55fd90[_0x293c03(_0x467be3._0x2b4bd3,_0x467be3._0x414083,'upO4',_0x467be3._0x126d51)],_0x4b9044;}[_0x4168b0(0x1bd,0xd9,0x204,'q)6p')](_0x5b3b31){const _0x485e52={_0x5af0f4:0x10e,_0x5557ae:0xec,_0x587323:0x1af,_0x3b7e8e:0x1d,_0x149bb5:0x28b,_0x383066:'RdY6',_0x370267:0x286,_0x118d85:0x134,_0x27a452:0x1d4,_0x51dc76:'n1Xg',_0x2bea1b:0x10b,_0x311863:0x29c,_0x2ccebc:0x156,_0x28e85d:0x77,_0x15de32:0x66,_0xb5ae5:0x1a8,_0x17e00f:0x6d,_0x39526f:'4bJu',_0x17f5a3:0xed,_0x29be75:0xbd,_0x320f88:'ll@d',_0x5c4137:0x11a,_0x4fec91:0x1dc,_0x4c2320:0xb5,_0x38d8d5:'JwR8',_0x37e39c:')b8k',_0x216bff:0x2c,_0x272427:0xb6,_0x5e0324:0x7,_0x15bc25:'HZP%',_0x103811:0xf9,_0x164620:')b8k',_0x5e2f7f:0x68,_0xfe1ff6:'Z9p(',_0x182a38:0xd2,_0x72d91e:0xa0,_0x4c9472:0xd1,_0x5a6471:'k*x7',_0x41ebf1:0x8d,_0x2aff8f:'ijfA',_0x33a1ca:0x16e,_0x202890:0x11e,_0x2eb476:'Id0X',_0x5d6006:0x8a,_0x5479e2:'G4(O',_0x9a0b55:']^i4',_0x590958:0x278,_0x1d58f2:0x7,_0x32b56f:0x143,_0x504309:0x31,_0xbb90bf:'tR@(',_0x565e55:0xc4,_0x1fe8ae:0x7,_0xeb822:0x199,_0x1a6f95:0x1b3,_0x546e30:'7!da',_0x18ca05:0x1e2,_0x2f4049:0x129,_0x15473d:0x173,_0x5da923:'n1Xg',_0x584c58:0x3a,_0x4a3b3d:0xb0,_0x43329e:0x165,_0x4e8b93:'rAIC',_0x2c3f4e:0x3,_0x4dcf45:0xb2,_0x2473ad:0x8d,_0x520614:0x80,_0xcdcb00:0x8d,_0xf27c3e:'ZF8k',_0x40d03f:0x1b,_0x67332e:0x3d,_0x1c0b1e:'5@iN',_0x30a860:0x10f,_0x3558f1:'XtVi',_0x276578:0x190,_0x56c2c9:']VFf',_0x3c8e1d:0x13,_0x2ae515:0x6b,_0x183a48:0x8f,_0x10cf54:'$&Rj',_0x5eb4cd:0x5a,_0x540d96:0x2af,_0x34ed5a:0x1c6,_0x134268:0x6c,_0x16670d:0x56,_0x4f147c:0x5,_0x4d1d5a:0x22,_0x40a95d:0x253,_0x330227:0x2b,_0x2c8a0e:'K1MK',_0x4bbf60:0x217,_0x16a90a:0x1c0,_0x5c5737:'NLEw',_0x2fd5da:0x14f,_0x515072:0x19d,_0x269812:']]&3',_0x5aaf86:0x97,_0x5574eb:0x10a,_0x55ac3b:'$&Rj',_0x26d312:0xaa,_0x9fae62:0x1da,_0x380388:'Bgzq',_0x1c713b:0x11b,_0x3bbd09:0x9e,_0x339b33:0x6,_0x501d4c:0x15a,_0x1aafb6:0x31,_0x545f50:0x128,_0x34e9b4:'G4(O',_0x9e2e2d:0x9f,_0x145d81:0x190,_0x4e5135:'pNmB',_0x2fdb29:0x5e,_0x44ba1a:0x9b,_0xb26b69:0x231,_0x36e027:0x1fb,_0x21b533:0x14a,_0x30ef19:0x223,_0x2388da:0x1f,_0x3bf0e2:'FbJU',_0x50a4cd:0x10d,_0x54b46b:0x3,_0x18b8ca:']^i4',_0x498570:0x9d,_0x43e703:0x74,_0x5d2ba9:0xd4,_0x55463f:'pNmB',_0x2caa92:0x25a,_0x5c9fd8:0x121,_0x425c04:0xbb,_0xc55f4:0x6f,_0x4ccbf5:0x105,_0x49253c:0x44,_0x428918:0x21f,_0x1370ed:0x19c,_0x458067:'WlMI',_0x273212:0x113,_0x118430:0x15c,_0x5cff49:')b8k',_0x495fea:0x1fb,_0x1100dd:'h3kV',_0x11b8ca:0xf3,_0x1fc4c3:0x72,_0x3b36fa:0x11,_0x148d03:'&2IR',_0x54f453:0x69,_0x391150:0xe,_0x1b134f:0x14,_0x292020:0x1c7,_0x5afc8f:0x114,_0x2edf98:0x117,_0x1750be:'q)6p',_0x4ea320:0x183,_0x227add:0xf0,_0x53fa51:0xa6,_0x21ddae:0x5d,_0x7df32d:0x32,_0x2e7103:0x2e,_0xb905f5:0xb2,_0x137ada:'S66V',_0x3a2213:0x92,_0x4d9e81:0x17,_0x23389e:0x248,_0x33bd7c:0x220,_0x51eee7:'65t)',_0x4a4f9e:0x91,_0x7eb542:0x41,_0x5b8da6:0x22c,_0x2c248a:0xd9,_0x14c240:0x142,_0x5d9963:0x2c,_0x74647a:0x54,_0x3104ef:0x6b,_0x37e703:0x7c,_0x24a25c:0x202,_0x5cb838:0xb9,_0x20a246:0x62,_0x43ce0c:0x2db,_0x35c38a:0x1d0,_0x22bd7e:0x33,_0x2762a0:0x76,_0x47e1cb:0x108,_0xbd3c90:0x115,_0x45b571:0xee,_0x213d9c:0x2b,_0x2f1b67:'MCTk',_0x5826d8:0x263,_0x325eb0:0x1a8,_0x69215:0x1b9,_0x17ea20:0x1ec,_0x1979b5:0x1f2,_0x3142f3:'ZF8k',_0x204878:0x22b,_0x4db14b:0x104,_0x467123:0xb0,_0x11c5da:0x18d,_0x21ba71:0x4f,_0xb205ae:0x21a,_0x13cf21:'IZBF',_0x443325:0x197,_0x4498c7:0x171,_0x42c466:0x63,_0x58736a:0x1d,_0x4e0e97:0xb,_0x52c87d:'5@iN',_0x473754:0x4c,_0x2038e9:0x14e,_0x554cfb:0x90,_0x135ae2:'nyUT',_0x11abed:0x38,_0x17e4e9:0x10c,_0x5acf8e:'k*x7',_0x4121cf:0xb7,_0x596228:'S%t6',_0x206bbb:0x44,_0x21610e:'upO4',_0x5c1a93:0x203,_0x24cace:0x13e,_0x59e5af:0x196,_0x3d2762:0x6a,_0x57a6b9:0xa7,_0x4f9432:0xa3,_0xbd0459:'NLEw',_0x3e33a6:0x2c3,_0x4eb7ad:0x116,_0x13c69f:0xf8,_0x265f2f:0x218,_0x165224:'#Jzf',_0x558e2b:0x10,_0x2e77e0:0x1b4,_0xeaec08:0x165,_0x1fa711:'UXSS',_0x3ea306:0x1ae},_0x16d29b={_0x8385e4:0x19e,_0x2b4386:0x126},_0x7a760c={_0x487ee4:0x197,_0xace9af:0x191},_0x1a2a95={};_0x1a2a95[_0xe6bbcb('rAIC',-0x25f,-0x205,-_0x485e52._0x5af0f4)]=function(_0x1b24ee,_0x307fbe){return _0x1b24ee===_0x307fbe;},_0x1a2a95[_0xe6bbcb('5@iN',-_0x485e52._0x5557ae,-_0x485e52._0x587323,-0xc0)]=function(_0x131f31,_0x34ef11){return _0x131f31 in _0x34ef11;},_0x1a2a95[_0xe6bbcb('HZP%',-_0x485e52._0x3b7e8e,0x31,0x40)]=_0x68b482(-_0x485e52._0x149bb5,'S66V',-0x27d,-0x1db),_0x1a2a95[_0x68b482(0xa,_0x485e52._0x383066,-_0x485e52._0x370267,-_0x485e52._0x118d85)]=_0x68b482(-0xc6,'k*x7',0x35,-0x4c),_0x1a2a95[_0xe6bbcb('AYRW',_0x485e52._0x27a452,0x14e,0x13e)]=_0x68b482(-0x168,_0x485e52._0x51dc76,-_0x485e52._0x2bea1b,-0x167),_0x1a2a95[_0xe6bbcb('UXSS',-0x85,-_0x485e52._0x311863,-_0x485e52._0x2ccebc)]=function(_0x277553,_0x4fc24e){return _0x277553===_0x4fc24e;},_0x1a2a95[_0xe6bbcb('FbJU',0x154,-_0x485e52._0x28e85d,_0x485e52._0x15de32)]=_0x68b482(-_0x485e52._0xb5ae5,'ETU]',-_0x485e52._0x17e00f,-0x88),_0x1a2a95[_0x68b482(-0x1b1,_0x485e52._0x39526f,-0x71,-0x57)]=_0x68b482(-0x18a,'q)6p',-_0x485e52._0x17f5a3,-_0x485e52._0x29be75),_0x1a2a95[_0xe6bbcb(_0x485e52._0x320f88,-_0x485e52._0x5c4137,-_0x485e52._0x4fec91,-_0x485e52._0x4c2320)]=_0x68b482(-0x7b,_0x485e52._0x38d8d5,-0xd0,-0x6c),_0x1a2a95[_0xe6bbcb('IZBF',0x230,0x197,0xf6)]=function(_0x1a9b99,_0x496e30){return _0x1a9b99!==_0x496e30;},_0x1a2a95[_0xe6bbcb(_0x485e52._0x37e39c,0xa8,-0x97,-_0x485e52._0x216bff)]=_0x68b482(-0x146,'n1Xg',-0x22,-_0x485e52._0x272427),_0x1a2a95[_0x68b482(-_0x485e52._0x5e0324,_0x485e52._0x15bc25,0x1c,-_0x485e52._0x103811)]=function(_0x195566,_0x2531b1){return _0x195566>_0x2531b1;};function _0xe6bbcb(_0xc080dd,_0xf8c83c,_0x18baf9,_0x1d1936){return _0x4168b0(_0xc080dd-0xa7,_0xf8c83c-_0x7a760c._0x487ee4,_0x1d1936- -_0x7a760c._0xace9af,_0xc080dd);}_0x1a2a95[_0xe6bbcb(_0x485e52._0x164620,0x1b,-0x9c,-_0x485e52._0x5e2f7f)]=function(_0x490000,_0x6a294){return _0x490000>_0x6a294;};function _0x68b482(_0x49ddc6,_0x24ed10,_0x21a935,_0x2e7932){return _0x398f57(_0x2e7932- -0x47a,_0x24ed10-_0x16d29b._0x8385e4,_0x21a935-_0x16d29b._0x2b4386,_0x24ed10);}_0x1a2a95[_0xe6bbcb(_0x485e52._0xfe1ff6,_0x485e52._0x182a38,-_0x485e52._0x72d91e,0x13)]=_0x68b482(_0x485e52._0x4c9472,_0x485e52._0x5a6471,-_0x485e52._0x41ebf1,0x3b),_0x1a2a95[_0xe6bbcb(']VFf',0x110,-0x93,0xbf)]=_0x68b482(-0x175,_0x485e52._0x2aff8f,-_0x485e52._0x33a1ca,-_0x485e52._0x202890),_0x1a2a95[_0xe6bbcb(_0x485e52._0x2eb476,0x7b,-0x19,_0x485e52._0x5d6006)]=_0x68b482(-0xfb,'MCTk',-0x142,-0x137);const _0x39c2b2=_0x1a2a95,_0x58698f=agent_repo_1[_0xe6bbcb(_0x485e52._0x5479e2,-0x27,0x21f,0x11e)+_0x68b482(-0x257,_0x485e52._0x9a0b55,-_0x485e52._0x590958,-0x1d8)][_0xe6bbcb(_0x485e52._0x38d8d5,_0x485e52._0x1d58f2,-_0x485e52._0x32b56f,-0x10a)](_0x5b3b31);if(!_0x58698f){const _0x242cbc={};return _0x242cbc[_0xe6bbcb('q)6p',-0x1ca,_0x485e52._0x504309,-0xfc)]=![],_0x242cbc[_0xe6bbcb(_0x485e52._0xbb90bf,-0x120,_0x485e52._0x565e55,_0x485e52._0x1fe8ae)]=_0x39c2b2[_0xe6bbcb('JwR8',-_0x485e52._0xeb822,-_0x485e52._0x1a6f95,-0xbc)],_0x242cbc;}if(_0x39c2b2[_0x68b482(0xf4,'4bJu',-0x152,-0x1b)](_0x58698f[_0xe6bbcb(_0x485e52._0x546e30,-_0x485e52._0x18ca05,-0xf8,-_0x485e52._0x2f4049)],_0x39c2b2[_0xe6bbcb('n1Xg',-0x1fe,-0x110,-0xd6)])){if(_0x39c2b2[_0x68b482(-_0x485e52._0x15473d,_0x485e52._0x5da923,0xeb,-_0x485e52._0x584c58)](_0x39c2b2['haHdL'],_0x39c2b2[_0xe6bbcb('n1Xg',_0x485e52._0x4a3b3d,-_0x485e52._0x43329e,-0x8e)])){const _0x43daa1={};return _0x43daa1[_0xe6bbcb(_0x485e52._0x4e8b93,-0x9d,-_0x485e52._0x2c3f4e,0x64)]=![],_0x43daa1[_0xe6bbcb('S66V',_0x485e52._0x4dcf45,_0x485e52._0x2473ad,-_0x485e52._0x520614)]=_0x39c2b2[_0x68b482(_0x485e52._0xcdcb00,_0x485e52._0xf27c3e,-_0x485e52._0x40d03f,-_0x485e52._0x67332e)],_0x43daa1;}else{if(_0x39c2b2['cEovk'](_0x5c6280,_0x331936))_0x11b556=_0x3725a6;var _0x30d64e=_0x18b6d8[_0xe6bbcb(_0x485e52._0x1c0b1e,-0x46,-_0x485e52._0x30a860,-0x6c)+_0x68b482(0xc6,_0x485e52._0x3558f1,-_0x485e52._0x276578,-0x4a)+'ptor'](_0x5546f0,_0x11cd27);if(!_0x30d64e||(_0x39c2b2[_0xe6bbcb(_0x485e52._0x56c2c9,-_0x485e52._0x3c8e1d,-_0x485e52._0x2ae515,-_0x485e52._0x183a48)](_0x39c2b2[_0xe6bbcb(_0x485e52._0x10cf54,0x107,0x38,0xd3)],_0x30d64e)?!_0x174cea[_0xe6bbcb('AYRW',-0x3,0x17c,_0x485e52._0x5eb4cd)]:_0x30d64e[_0x68b482(-0x113,'MXVh',-_0x485e52._0x540d96,-_0x485e52._0x34ed5a)]||_0x30d64e[_0xe6bbcb('MCTk',-_0x485e52._0x134268,-_0x485e52._0x16670d,_0x485e52._0x40d03f)+'le'])){const _0x50e15d={};_0x50e15d[_0x68b482(_0x485e52._0x4f147c,_0x485e52._0xfe1ff6,_0x485e52._0x4d1d5a,0x46)]=!![],_0x50e15d[_0xe6bbcb('OEb[',_0x485e52._0x40a95d,0x1ec,0x129)]=function(){return _0x4a9588[_0x19f701];},_0x30d64e=_0x50e15d;}_0x3eff50['defineProp'+_0x68b482(_0x485e52._0x330227,_0x485e52._0x2c8a0e,-_0x485e52._0x4bbf60,-0xc8)](_0x4bbd90,_0x6b06db,_0x30d64e);}}if(_0x58698f[_0x68b482(-_0x485e52._0x16a90a,_0x485e52._0x5c5737,-_0x485e52._0x2fd5da,-_0x485e52._0x515072)+_0x68b482(-0x213,_0x485e52._0x269812,-_0x485e52._0x5aaf86,-_0x485e52._0x5574eb)]){if(_0x39c2b2['bPjeJ'](_0x39c2b2[_0x68b482(-0x3b,_0x485e52._0x55ac3b,-0x1fa,-_0x485e52._0x26d312)],'CImBY'))_0x28f58c[_0x39c2b2[_0x68b482(-0x14f,'S%t6',-_0x485e52._0x9fae62,-0x190)]]=_0x5e5ab5;else{const _0x3866ac=(-0xb7b*-0x3+0x1254+0x5dd*-0x9,openclaw_helper_1[_0xe6bbcb(_0x485e52._0x380388,-_0x485e52._0x1c713b,-0xad,-_0x485e52._0x3bbd09)+_0x68b482(0x0,'Hbdi',_0x485e52._0x339b33,-_0x485e52._0x2ae515)])(_0x5b3b31,_0x58698f[_0xe6bbcb('tR@(',_0x485e52._0x501d4c,-_0x485e52._0x1aafb6,0x120)+_0xe6bbcb(_0x485e52._0x164620,0x2c,-_0x485e52._0x545f50,-0x15)],_0xe6bbcb(_0x485e52._0x34e9b4,-_0x485e52._0x9e2e2d,0x1b,-0x26));_0x3866ac[_0x68b482(-_0x485e52._0x145d81,_0x485e52._0x4e5135,-0x1b0,-0x1b2)]&&_0x3866ac[_0xe6bbcb(_0x485e52._0x546e30,_0x485e52._0x2fdb29,-0x41,-_0x485e52._0x44ba1a)+_0xe6bbcb(')b8k',-_0x485e52._0xb26b69,-_0x485e52._0x36e027,-0x141)][_0x68b482(-0x107,'ll@d',-_0x485e52._0x21b533,-_0x485e52._0x30ef19)]>-0x1*-0xf13+0x1e64+-0x2d77*0x1&&console[_0x68b482(-_0x485e52._0x2388da,_0x485e52._0x3bf0e2,-0x28,-_0x485e52._0x50a4cd)](_0x68b482(_0x485e52._0x54b46b,'ZF8k',0x94,-0x1f)+_0x68b482(-_0x485e52._0xb5ae5,_0x485e52._0x18b8ca,-0x27,-_0x485e52._0x498570)+_0x3866ac[_0xe6bbcb(_0x485e52._0x56c2c9,_0x485e52._0x43e703,-0x9,-_0x485e52._0x5d2ba9)+_0xe6bbcb(_0x485e52._0x55463f,-_0x485e52._0x2caa92,-_0x485e52._0x5c9fd8,-0x121)][_0xe6bbcb('MXVh',_0x485e52._0x425c04,0x7,_0x485e52._0xc55f4)]+('\x20个团队成员的通信权'+'限'));}}(-0xfb*-0x11+0x2c*-0x14+-0x469*0x3,openclaw_helper_1[_0xe6bbcb(_0x485e52._0x269812,_0x485e52._0x4ccbf5,-0xaf,-0xd)+_0xe6bbcb('UK(l',_0x485e52._0x49253c,_0x485e52._0x428918,0xf0)+'g'])(_0x5b3b31),this['removeAgen'+_0x68b482(-_0x485e52._0x1370ed,_0x485e52._0x458067,-_0x485e52._0x273212,-_0x485e52._0x118430)](_0x5b3b31);const _0x498d16={};_0x498d16['id']=_0x58698f['id'],_0x498d16[_0xe6bbcb(_0x485e52._0x5cff49,-_0x485e52._0x49253c,-_0x485e52._0x495fea,-0xe2)]=_0x58698f['name'],_0x498d16['role']=_0x58698f[_0xe6bbcb(_0x485e52._0x1100dd,_0x485e52._0x11b8ca,_0x485e52._0x1fc4c3,0x147)],_0x498d16[_0x68b482(0xc,'5@iN',_0x485e52._0x3b36fa,-0x118)+_0xe6bbcb(_0x485e52._0x148d03,-_0x485e52._0x54f453,_0x485e52._0x391150,_0x485e52._0x1b134f)]=_0x58698f[_0x68b482(-0x16b,_0x485e52._0x51dc76,-_0x485e52._0x292020,-_0x485e52._0x5afc8f)+_0xe6bbcb('rAIC',0x37,0x1d3,_0x485e52._0x2edf98)],_0x498d16[_0x68b482(-0xf7,_0x485e52._0x1750be,-0x136,-0x62)]=_0x58698f[_0xe6bbcb('JwR8',-0x84,-0x1dd,-0xa8)+_0x68b482(-0xb0,_0x485e52._0x2eb476,-0x2c6,-_0x485e52._0x4ea320)],configTracker[_0xe6bbcb('65t)',_0x485e52._0x227add,-_0x485e52._0x53fa51,0x6d)+_0x68b482(-0x120,'K1MK',-0x2fb,-0x1c1)](_0x5b3b31,_0x498d16),this[_0x68b482(-_0x485e52._0x21ddae,_0x485e52._0x3bf0e2,_0x485e52._0x4ccbf5,-0x2f)+_0xe6bbcb('L&X]',-_0x485e52._0x7df32d,-_0x485e52._0x2e7103,-_0x485e52._0xb905f5)+'es'](_0x5b3b31);const _0x5b1762=(0x611+0x58a*0x7+-0x2cd7,credentials_cleanup_1[_0x68b482(-0xb5,_0x485e52._0x137ada,-_0x485e52._0x5c9fd8,-_0x485e52._0x3a2213)+_0x68b482(_0x485e52._0x4d9e81,'AYRW',-_0x485e52._0x23389e,-0xf8)+_0xe6bbcb('K1MK',-_0x485e52._0x33bd7c,-_0x485e52._0x4ea320,-0x107)+'nt'])(_0x5b3b31);_0x39c2b2['kFVtl'](_0x5b1762[_0xe6bbcb(_0x485e52._0x51eee7,-_0x485e52._0x4a4f9e,_0x485e52._0x7eb542,-0xc5)][_0x68b482(-0x28f,'ETU]',-0x183,-_0x485e52._0x5b8da6)],-0x1e*0x5c+-0x1*-0x40b+0x1*0x6bd)&&console[_0xe6bbcb(']^i4',_0x485e52._0x2c248a,_0x485e52._0x14c240,_0x485e52._0x5d9963)](_0x68b482(-_0x485e52._0x74647a,'L&X]',-_0x485e52._0x3104ef,-0x17c)+_0x68b482(_0x485e52._0x37e703,'NLEw',-_0x485e52._0x24a25c,-_0x485e52._0x5cb838)+_0x5b1762[_0xe6bbcb(_0x485e52._0x2c8a0e,0xe,-0x184,-0x134)][_0xe6bbcb('q)6p',-0xdc,-_0x485e52._0x20a246,-0x2e)]+_0x68b482(-_0x485e52._0x43ce0c,_0x485e52._0x51eee7,-0x1f2,-_0x485e52._0x35c38a));agent_repo_1[_0x68b482(_0x485e52._0x22bd7e,'Id0X',-0x144,-_0x485e52._0x2762a0)+_0x68b482(-_0x485e52._0x47e1cb,'5@iN',_0x485e52._0xbd3c90,-0x3f)][_0xe6bbcb('NLEw',0x101,-0x1e,_0x485e52._0x1c713b)](_0x5b3b31);if(_0x58698f[_0xe6bbcb('#Jzf',0xbf,-_0x485e52._0x45b571,-_0x485e52._0x213d9c)+_0xe6bbcb(_0x485e52._0x2eb476,_0x485e52._0x273212,0xe3,0x96)]){const _0x586e2d=(0x8a1*-0x2+-0x2299+0x33db,openclaw_helper_1[_0x68b482(-0x29a,_0x485e52._0x2f1b67,-_0x485e52._0x5826d8,-0x15f)+_0x68b482(-0x2b8,_0x485e52._0x5a6471,-0x246,-_0x485e52._0x325eb0)])(_0x58698f[_0x68b482(-_0x485e52._0x69215,'n1Xg',-_0x485e52._0x17ea20,-0x114)+_0x68b482(-_0x485e52._0x1979b5,_0x485e52._0x3142f3,-_0x485e52._0x204878,-_0x485e52._0x4db14b)],_0x5b3b31);if(_0x586e2d[_0xe6bbcb('ETU]',_0x485e52._0x467123,-_0x485e52._0x11c5da,-_0x485e52._0x21ba71)]&&_0x39c2b2[_0x68b482(0x6a,_0x485e52._0xfe1ff6,0x6e,-0xb7)](_0x586e2d[_0x68b482(-_0x485e52._0xb205ae,_0x485e52._0x13cf21,-_0x485e52._0x443325,-_0x485e52._0x4498c7)+'nt'],-0x2*0xf3f+0x1ff1+-0x173*0x1)){if(_0x39c2b2[_0x68b482(-_0x485e52._0x42c466,_0x485e52._0x2c8a0e,_0x485e52._0x3bbd09,-_0x485e52._0x58736a)](_0x39c2b2[_0xe6bbcb(']]&3',_0x485e52._0x4e0e97,-0x1ba,-0xc8)],_0x39c2b2[_0x68b482(-0x11,_0x485e52._0x52c87d,-_0x485e52._0x473754,_0x485e52._0x1fc4c3)]))console[_0x68b482(-0x1d,_0x485e52._0x56c2c9,-_0x485e52._0x2038e9,-_0x485e52._0x554cfb)](_0x68b482(-0x224,_0x485e52._0x135ae2,_0x485e52._0x11abed,-_0x485e52._0x17e4e9)+_0xe6bbcb(_0x485e52._0x5acf8e,0x121,-0x15,0xcc)+_0x586e2d['updatedCou'+'nt']+_0x68b482(-_0x485e52._0x4121cf,'L&X]',-0x1eb,-0x12f));else{const _0x34c721={};return _0x34c721[_0xe6bbcb(_0x485e52._0x596228,-0x10c,_0x485e52._0x4f147c,-_0x485e52._0x206bbb)]=![],_0x34c721[_0xe6bbcb(_0x485e52._0x21610e,0x65,-0x1b1,-0xf4)]=_0x39c2b2[_0x68b482(-0x320,_0x485e52._0x320f88,-0x338,-_0x485e52._0x5c1a93)],_0x34c721;}}}const _0x12aea3=(-0x1c11*-0x1+-0x1d26+0x115*0x1,openclaw_helper_1[_0xe6bbcb('FbJU',0x1c5,_0x485e52._0x24cace,0x81)+_0xe6bbcb('YysK',_0x485e52._0x59e5af,0xe0,_0x485e52._0x3d2762)+_0x68b482(-_0x485e52._0x57a6b9,_0x485e52._0x1750be,0xa3,0x53)])();return _0x12aea3[_0xe6bbcb(_0x485e52._0x2aff8f,-_0x485e52._0x4f9432,-0x18b,-0xee)]&&console[_0x68b482(-0x207,_0x485e52._0xbd0459,-_0x485e52._0x3e33a6,-0x233)](_0xe6bbcb('l#wr',-0x207,-_0x485e52._0x4eb7ad,-_0x485e52._0x13c69f)+_0x68b482(-_0x485e52._0x265f2f,_0x485e52._0x165224,-0x249,-0x196)+'信息'),{'success':!![],'message':_0x39c2b2['SmYqc'],'restartReminder':(-0x17e9*0x1+-0x12*-0x124+0x361,openclaw_helper_1[_0xe6bbcb('pNmB',-_0x485e52._0x558e2b,-_0x485e52._0x2e77e0,-0xec)+_0xe6bbcb('S66V',-0x17d,0xa8,-0x7b)+_0x68b482(-_0x485e52._0xeaec08,_0x485e52._0x1fa711,-_0x485e52._0x3ea306,-0x125)])()};}['removeAgen'+_0x398f57(0x3fa,0x378,0x43d,'pNmB')](_0x5302e3){const _0x81a7ec={_0x43d7e2:0x23d,_0x14a83c:0x119,_0xdc2715:'&2IR',_0x3f8785:0x13b,_0x2d2b1:0x59,_0x5688a0:0x98,_0x585aaf:'ZF8k',_0x28f09d:0x9,_0x6da4a:0x237,_0x22eaaf:0x13e,_0x24bfec:'rAIC',_0x45dd14:0x333,_0x3e5c04:0x163,_0x305fd0:0x269,_0x4f71ba:0x1b1,_0x38e256:0x1b4,_0x533432:']^i4',_0x4db63e:0x1a4,_0x2a035f:'#Jzf',_0x976125:0x395,_0x13c967:0x484,_0x5dcbda:0x383,_0x2c9aa6:0x90,_0x56e0fe:0x62,_0x383bac:0x38e,_0x5edf4e:0x190,_0x3d8479:'ZF8k',_0x33b999:'Bgzq',_0x2ed45b:0x55,_0x34fcac:0x3db,_0x4c7217:'q)6p',_0x4df225:0x4ef,_0x2f9cad:0x139,_0x57e6dc:0x244,_0x576ca6:0x1ea,_0x54b619:0x257,_0x571770:0x345,_0x50f64a:0x32c,_0x51e1f8:0x330,_0x5f2339:')b8k',_0x5af3c3:0x374,_0x3a530a:0x251,_0x5c0f6e:0x1bc,_0x1ab9b3:0x273,_0x5cdfc2:0x2f9,_0x78ba3:'5@iN',_0x20ef2b:0x1f0,_0x438dc4:0x335,_0x9f9cd1:0x48d,_0x32a092:0x412,_0xec96bb:'Id0X',_0x104aa4:0x2d7,_0x4dda4b:'YysK',_0x5f05ca:0x7f,_0x1b0191:0x2e1,_0x2c2868:0x3b1,_0x44041a:0x314,_0x2d61a2:0x294,_0x31040d:0x3dd,_0x3a274f:0x106,_0x59eda3:0x227,_0x26082c:'tR@(',_0xb4d699:0x202,_0x5ace08:0x206,_0x507dd3:0x327,_0x32c49c:'JwR8',_0x1df717:0x470,_0x435de2:'AYRW',_0x530167:0x380,_0x41a11b:0x3e2,_0x19e507:0x356,_0x113a80:0x407,_0x3bf8a9:'k*x7',_0x47f7c4:'S66V',_0x12953b:0xbe,_0x1ee462:0x296,_0x4c27fb:0x1f9,_0x2cc797:0x236,_0x4a7221:0x273,_0x435969:0x29f,_0xea25a2:0x210,_0x2288bd:'L&X]',_0x27870c:0x276,_0x11b76a:0xfc,_0x256d29:0x4d5,_0xfd1812:0x451,_0x498e90:0x266,_0x20e2b9:'#Jzf',_0x244ecb:0x1c3,_0x10343a:'fBj^'},_0x5bb5ba={_0x228d58:0x1b8,_0x3cb545:0x89,_0x430da7:0xa9},_0xede548={_0xb58bc3:0x6c},_0x4dc93c={};function _0x4cabf3(_0x4d271f,_0x13b871,_0x227226,_0x45ef8b){return _0x398f57(_0x4d271f- -_0xede548._0xb58bc3,_0x13b871-0x176,_0x227226-0x174,_0x227226);}_0x4dc93c[_0x4cabf3(_0x81a7ec._0x43d7e2,_0x81a7ec._0x14a83c,_0x81a7ec._0xdc2715,_0x81a7ec._0x3f8785)]=function(_0x500ac7,_0x4f32b6){return _0x500ac7!==_0x4f32b6;},_0x4dc93c[_0x304900(-_0x81a7ec._0x2d2b1,_0x81a7ec._0x5688a0,_0x81a7ec._0x585aaf,-_0x81a7ec._0x28f09d)]=_0x4cabf3(_0x81a7ec._0x6da4a,_0x81a7ec._0x22eaaf,_0x81a7ec._0x24bfec,_0x81a7ec._0x45dd14),_0x4dc93c[_0x304900(_0x81a7ec._0x3e5c04,_0x81a7ec._0x305fd0,'Bgzq',_0x81a7ec._0x4f71ba)]=_0x4cabf3(0x2a0,_0x81a7ec._0x38e256,_0x81a7ec._0x533432,0x2eb),_0x4dc93c[_0x4cabf3(0x2ea,_0x81a7ec._0x4db63e,_0x81a7ec._0x2a035f,_0x81a7ec._0x976125)]=_0x4cabf3(_0x81a7ec._0x13c967,0x479,'UXSS',_0x81a7ec._0x5dcbda),_0x4dc93c['uxNWU']=function(_0x6652be,_0x246024){return _0x6652be!==_0x246024;},_0x4dc93c[_0x304900(0xb7,_0x81a7ec._0x2c9aa6,'h3kV',_0x81a7ec._0x56e0fe)]=_0x4cabf3(0x482,0x58f,']^i4',_0x81a7ec._0x383bac),_0x4dc93c[_0x304900(0x28d,_0x81a7ec._0x5edf4e,_0x81a7ec._0x3d8479,0x1c2)]=_0x304900(-0x6b,0xdf,_0x81a7ec._0x33b999,_0x81a7ec._0x2ed45b);function _0x304900(_0x47786e,_0x420823,_0xdf968c,_0x312e8f){return _0x398f57(_0x420823- -_0x5bb5ba._0x228d58,_0x420823-_0x5bb5ba._0x3cb545,_0xdf968c-_0x5bb5ba._0x430da7,_0xdf968c);}const _0x303e1a=_0x4dc93c;try{if(_0x303e1a[_0x4cabf3(_0x81a7ec._0x34fcac,0x2ec,_0x81a7ec._0x4c7217,_0x81a7ec._0x4df225)](_0x303e1a[_0x304900(_0x81a7ec._0x2f9cad,_0x81a7ec._0x57e6dc,'rAIC',_0x81a7ec._0x576ca6)],_0x303e1a[_0x4cabf3(_0x81a7ec._0x54b619,_0x81a7ec._0x571770,'UXSS',_0x81a7ec._0x50f64a)])){const _0x2a9571=(0x131b+-0x16db*-0x1+0x2*-0x14fb,utils_1[_0x304900(0x24a,_0x81a7ec._0x51e1f8,_0x81a7ec._0x5f2339,0x1f2)+_0x4cabf3(_0x81a7ec._0x5af3c3,0x4c8,'WlMI',_0x81a7ec._0x3a530a)])();if(!fs['existsSync'](_0x2a9571))return;const _0x4333e9=fs[_0x4cabf3(0x1f2,0x2bf,'rAIC',0xbc)+'nc'](_0x2a9571,_0x303e1a[_0x304900(_0x81a7ec._0x5c0f6e,0x10d,'ll@d',-0x3e)]),_0x5360a8=JSON['parse'](_0x4333e9);_0x5360a8['bindings']&&Array[_0x304900(_0x81a7ec._0x1ab9b3,_0x81a7ec._0x5cdfc2,_0x81a7ec._0x78ba3,0x1fa)](_0x5360a8[_0x304900(_0x81a7ec._0x20ef2b,_0x81a7ec._0x438dc4,'XtVi',0x3c0)])&&(_0x303e1a[_0x4cabf3(_0x81a7ec._0x9f9cd1,0x54f,'q)6p',_0x81a7ec._0x32a092)](_0x303e1a[_0x304900(0x363,0x2ed,_0x81a7ec._0xec96bb,0x449)],_0x303e1a[_0x4cabf3(0x3ba,0x49c,'rAIC',_0x81a7ec._0x104aa4)])?_0x1ec6b4[_0x4cabf3(0x43b,0x346,'UK(l',0x31e)](_0x304900(-0x68,0xc5,_0x81a7ec._0x4dda4b,_0x81a7ec._0x5f05ca)+_0x4cabf3(_0x81a7ec._0x1b0191,0x2ec,'&2IR',_0x81a7ec._0x2c2868)+_0x1943d5+':\x20'+_0x2f7d31):(_0x5360a8[_0x4cabf3(0x2cc,_0x81a7ec._0x44041a,'n1Xg',0x3de)]=_0x5360a8[_0x4cabf3(_0x81a7ec._0x2d61a2,_0x81a7ec._0x31040d,'UXSS',0x21e)][_0x304900(_0x81a7ec._0x3a274f,_0x81a7ec._0x59eda3,_0x81a7ec._0x26082c,_0x81a7ec._0xb4d699)](_0xa16ed5=>_0xa16ed5['agentId']!==_0x5302e3),fs['writeFileS'+_0x4cabf3(_0x81a7ec._0x5ace08,_0x81a7ec._0x507dd3,'S%t6',0xdc)](_0x2a9571,JSON[_0x4cabf3(0x2c0,0x3ba,_0x81a7ec._0x32c49c,0x299)](_0x5360a8,null,-0x3ce+0x24c9+-0x20f9),_0x303e1a[_0x4cabf3(_0x81a7ec._0x1df717,0x4ee,_0x81a7ec._0x435de2,_0x81a7ec._0x530167)])));}else _0x1c9fcc[_0x4cabf3(_0x81a7ec._0x41a11b,0x34f,'HZP%',_0x81a7ec._0x19e507)](_0x4cabf3(0x350,_0x81a7ec._0x113a80,_0x81a7ec._0x3bf8a9,_0x81a7ec._0x1df717)+_0x304900(0x2b2,0x19f,_0x81a7ec._0x47f7c4,_0x81a7ec._0x12953b)+_0xd165b9[_0x4cabf3(_0x81a7ec._0x1ee462,0x229,'k*x7',_0x81a7ec._0x4c27fb)+'nt']+_0x4cabf3(0x2b8,0x27c,'upO4',0x30b));}catch(_0x2c3107){if(_0x303e1a[_0x304900(_0x81a7ec._0x2cc797,_0x81a7ec._0x4a7221,'FbJU',_0x81a7ec._0x435969)]===_0x4cabf3(_0x81a7ec._0xea25a2,0x147,'Hbdi',0x157))console[_0x304900(0x29c,0x17b,_0x81a7ec._0x2288bd,0x1ec)](_0x304900(_0x81a7ec._0x27870c,0x1ab,_0x81a7ec._0x533432,_0x81a7ec._0x11b76a)+'ings\x20失败:\x20'+_0x2c3107);else return _0x36d166[_0x4cabf3(0x455,_0x81a7ec._0x256d29,'G4(O',0x42b)+_0x4cabf3(0x43f,_0x81a7ec._0xfd1812,'tR@(',0x35d)][_0x304900(_0x81a7ec._0x498e90,0x112,_0x81a7ec._0x20e2b9,0x187)+_0x304900(0xca,_0x81a7ec._0x244ecb,'OEb[',0x81)+_0x4cabf3(0x3fe,0x367,_0x81a7ec._0x10343a,0x4d3)](_0x143577,_0x2515a4);}}[_0x4168b0(0x1eb,0x155,0x128,'S66V')+_0x398f57(0x2dc,0x26d,0x275,'fBj^')+'es'](_0x5d46df){const _0x21b373={_0x46b412:0x100,_0x2ba024:0x8d,_0x1bebe7:'AYRW',_0x129ddc:0x32f,_0x5e61cd:0x46f,_0x5dcce1:0x341,_0xc96a15:0xec,_0x23bd13:'h3kV',_0x83fc3b:0x193,_0x3f114b:0x350,_0x24e62b:0x1f8,_0x2043f2:0xbe,_0x6c32df:0x2e,_0x3d8eb9:0x36,_0x2edf3e:0x402,_0x860d88:0x2a1,_0x3ff456:0x2c9,_0x3691c9:'IZBF',_0x49b6b4:0x19c,_0x2dc3f3:0xe1,_0x2e3f93:0x1b8,_0x48233b:0x35,_0x2753f6:'FbJU',_0x1c84ef:0x45,_0x46a380:'q)6p',_0x1b909a:0x18,_0x4c5a07:0x177,_0x3e3f37:'RdY6',_0x73b06a:0x343,_0x4c96d2:0x3bb,_0x5a1376:0x2c6,_0x4eafbf:0x1be,_0x3b4ffe:'UXSS',_0x59397d:0x199,_0x171e4e:0x3a6,_0x37bd64:'UXSS',_0x20b67e:0x233,_0x3a7e26:0xe2,_0x208fda:0x2f6,_0x5e2d89:0x254,_0x429ee6:0x11f,_0x27451c:'ZF8k',_0x4600a4:0x20a,_0x15a063:0x191,_0x2ec18d:0xaf,_0xff9a86:'pNmB',_0x1f3f96:0xc4,_0x38dd45:'G4(O',_0x27861d:'Bgzq',_0x4e7131:0x1ab,_0x20eb61:0x293,_0xdef3c:0x51,_0x269799:0x23,_0x2651f4:'K1MK',_0x35ce7c:0x65,_0x36eebe:'65t)',_0x2e5420:0x1ef,_0xf23530:0x2b0,_0x572754:0xbf,_0x58f9b3:0x134,_0x1a274d:0x44,_0x1c5f09:0xb,_0x1004f3:'tR@(',_0x2eb115:0x2f,_0x2a4896:0x321,_0x4283b2:0x3ab,_0x2215fa:0x27d,_0x2e0764:0x211,_0x4adc0c:'fBj^',_0x5205fa:0x237,_0x17bab:0x169,_0x80291d:0x22,_0x46076c:0x2d,_0x15f486:'nyUT',_0x5b60a7:0xd5,_0x4ec920:0xfa,_0x257b26:0x2cf,_0x19ca4b:0x240,_0x4371e3:'rAIC',_0x22f7c3:0x1e2,_0x3e64fc:0x279,_0x2ab80e:'n1Xg',_0x140923:0x10d,_0x3b83d7:'HZP%',_0x3a68f3:0x1cc,_0x5cb95a:'fBj^',_0x87c7da:0x126,_0x3e1faa:'S66V',_0x220afc:0x1e4,_0x4b1edb:'rAIC',_0x5dccb4:0x205,_0x4fae84:0x214,_0xef8bfb:0x283,_0x2437d9:0x21a,_0x2ae056:'MXVh',_0xc586a:0x175,_0x4284c9:0x88,_0x2af271:'l#wr',_0xea8411:0x1e,_0x5e9ed8:0x3d,_0x5526af:'5@iN',_0x150856:0x92,_0x2587e3:'upO4',_0x5aa429:0x1ad,_0x11c121:0x1e7,_0x1465d5:'Id0X',_0x5b008e:0x121,_0x2abc71:0xb1,_0x180a32:0x80,_0x1ad1b0:0x5e,_0x2eafea:0x14a,_0x27a0f6:0x19d,_0x478a4f:0x184,_0x41833d:0x24c,_0x44a42d:0x1dc,_0x3643f8:0xa5,_0x4c4c43:0x1f1,_0xb58927:'#Jzf',_0x349367:0x40,_0x3d2605:'OEb[',_0x42c59c:'IZBF',_0x2a1b37:0xb8,_0x45a3ce:0x1a1,_0x24c8fd:0xf7,_0x41ab37:0x242,_0x121218:0x145,_0x1f1fc0:0x1c4,_0x31621e:'UK(l',_0x2b0960:'k*x7',_0xe12d3a:0xb7,_0x356313:0xd1,_0x5968c0:'S%t6',_0x517752:0x1c9,_0x340700:0x100,_0x2b4ddc:0x22e,_0x5558a6:'IZBF',_0x34a791:0x1a0,_0x58ba7a:0x2f5,_0x14cec3:0x81,_0x4c1d80:0x47,_0x370911:'7!da',_0x202376:'&2IR',_0x50e41a:0x173,_0x2df6ec:0x35a,_0x17853a:0x100,_0x59362c:0x24b,_0x1e2921:0x36e,_0x263f74:0x41c,_0x13aeec:0x303,_0x252cb9:'Z9p(',_0x57fe67:0x15d,_0x3bf2e0:'ll@d',_0x1a2ddf:0x41,_0x460e1c:0x21c,_0x38584a:0x31,_0x55db8a:'S%t6',_0x50c2ed:0xd9,_0x2b9e75:0x1d,_0x310d4d:'65t)',_0x55d164:0x85,_0x2fdb92:'4bJu',_0x5b5939:0x4f,_0x4bff73:0x2e4,_0x3f64ca:0x2e4,_0x1d9402:0x320,_0x44df09:0x6e,_0x43d302:0xcc,_0x38d58f:'$&Rj',_0x3b323b:0x236,_0x42cd41:'tR@(',_0x3e3203:0x2d8,_0x537c7e:0x5a,_0x1d60a7:0xce,_0x7b3121:0x19f,_0x1c37cc:0xfc,_0x2dcee0:0x1b2,_0x1769f2:0x10e,_0x165a80:0x1d3,_0x11adbb:'ZF8k',_0x19b0cb:0x39,_0x4dd203:0xd0,_0xcef1ae:0x64,_0x42bc08:'XtVi',_0x48db8a:0x168,_0x324ba3:0xc2,_0x5449c7:0x16,_0x11749c:0x16a,_0x427524:0x250,_0x4f036f:0x28,_0x3c7180:0x239,_0x551ac6:0x257,_0xf310c5:0x52,_0x4bc641:0x413,_0x1e9f49:0x16c,_0x318aeb:0x18f,_0x418598:0x244,_0x27f1dc:'tR@(',_0x1cd18b:0xea,_0x216710:'nyUT',_0x45831d:0x18d,_0x18de20:0x351,_0x672c81:0x25e,_0x595f50:0x10b,_0x9a4c11:0xef,_0xa0bae8:'S66V',_0x94373f:0x3,_0x1943ba:0x155,_0x33aeb5:0x29c,_0x3fda99:'fBj^',_0x4377d0:0x120,_0x374180:'OEb[',_0x5cd2ee:'ETU]',_0xe8be9a:0x3bd,_0x86502e:0x243,_0x47d4ff:0x322,_0x4936bb:0x43,_0x178806:0x1c2,_0x1728f3:0x1de,_0x5aaaa6:0x2e6,_0x3ab579:0x91,_0x14f19e:0x77,_0x82cff0:0xe7,_0x1581a0:0x230,_0x16e950:0x1bf,_0x314791:0xe6,_0x307a4:0xb8,_0x3564e2:'4bJu'},_0x2c5d46={_0x18b3ca:0x344,_0x5224d9:0x173},_0x4e4e64={_0x5e72b0:0x1a5},_0x514baa={};_0x514baa[_0x49a1ce(-_0x21b373._0x46b412,'FbJU',-0xe3,-0x179)]=function(_0x428e6e,_0x44c08c){return _0x428e6e===_0x44c08c;},_0x514baa[_0x49a1ce(_0x21b373._0x2ba024,_0x21b373._0x1bebe7,-0x20,-_0x21b373._0x2ba024)]=_0x27fb0c(_0x21b373._0x129ddc,_0x21b373._0x5e61cd,_0x21b373._0x5dcce1,'S%t6'),_0x514baa[_0x49a1ce(-_0x21b373._0xc96a15,_0x21b373._0x23bd13,-0x13a,-0x174)]=_0x27fb0c(_0x21b373._0x83fc3b,_0x21b373._0x3f114b,_0x21b373._0x24e62b,'G4(O'),_0x514baa[_0x49a1ce(0x16c,'fBj^',_0x21b373._0x2043f2,0x19c)]=_0x49a1ce(-_0x21b373._0x6c32df,'upO4',_0x21b373._0x3d8eb9,-0x148),_0x514baa[_0x27fb0c(0x178,0x254,0x274,'L&X]')]=function(_0x403a11,_0x42206d){return _0x403a11>_0x42206d;},_0x514baa[_0x27fb0c(_0x21b373._0x2edf3e,_0x21b373._0x860d88,_0x21b373._0x3ff456,'ll@d')]=_0x49a1ce(0x10f,_0x21b373._0x3691c9,0x1b9,_0x21b373._0x49b6b4),_0x514baa[_0x27fb0c(0x15c,_0x21b373._0x2dc3f3,_0x21b373._0x2e3f93,'RdY6')]=_0x27fb0c(_0x21b373._0x48233b,0x117,0x119,'rAIC'),_0x514baa[_0x49a1ce(-0x89,_0x21b373._0x2753f6,-_0x21b373._0x1c84ef,0xd0)]=_0x49a1ce(-0xbd,']^i4',-0x11c,-0xce),_0x514baa[_0x49a1ce(0x133,_0x21b373._0x46a380,0x94,-_0x21b373._0x1b909a)]=_0x27fb0c(0x44,0x58,_0x21b373._0x4c5a07,_0x21b373._0x3e3f37),_0x514baa[_0x27fb0c(_0x21b373._0x73b06a,_0x21b373._0x4c96d2,_0x21b373._0x5a1376,'K1MK')]=function(_0x34964d,_0x1962dc){return _0x34964d!==_0x1962dc;},_0x514baa[_0x27fb0c(0x283,_0x21b373._0x4eafbf,0x15c,_0x21b373._0x3b4ffe)]=_0x27fb0c(0x139,0x149,_0x21b373._0x59397d,'S66V'),_0x514baa[_0x27fb0c(0x2a0,_0x21b373._0x171e4e,0x326,'#Jzf')]=_0x49a1ce(0x116,_0x21b373._0x37bd64,_0x21b373._0x20b67e,_0x21b373._0x3a7e26),_0x514baa[_0x27fb0c(_0x21b373._0x208fda,0x103,_0x21b373._0x5e2d89,_0x21b373._0x37bd64)]=function(_0x4cac9e,_0x31e2a0){return _0x4cac9e===_0x31e2a0;};function _0x27fb0c(_0x3348f2,_0x28e6ab,_0x1644f8,_0x4d964e){return _0x398f57(_0x1644f8- -_0x4e4e64._0x5e72b0,_0x28e6ab-0x149,_0x1644f8-0x1e6,_0x4d964e);}_0x514baa[_0x49a1ce(_0x21b373._0x429ee6,_0x21b373._0x27451c,0xd6,_0x21b373._0x4600a4)]=_0x27fb0c(0x158,0x1d8,_0x21b373._0x15a063,'pNmB'),_0x514baa[_0x27fb0c(0x123,_0x21b373._0x2ec18d,0x122,_0x21b373._0xff9a86)]=function(_0x1348e5,_0x333741){return _0x1348e5===_0x333741;},_0x514baa[_0x27fb0c(0x6,0x17d,_0x21b373._0x1f3f96,_0x21b373._0x38dd45)]=_0x49a1ce(0x6d,_0x21b373._0x27861d,-0x82,_0x21b373._0x4e7131),_0x514baa[_0x27fb0c(0x2c2,0x2bd,_0x21b373._0x20eb61,'UK(l')]=function(_0x44ef32,_0x27d937){return _0x44ef32!==_0x27d937;};function _0x49a1ce(_0x310836,_0x450e20,_0x28133c,_0x205fcb){return _0x398f57(_0x310836- -_0x2c5d46._0x18b3ca,_0x450e20-0x10d,_0x28133c-_0x2c5d46._0x5224d9,_0x450e20);}_0x514baa[_0x27fb0c(0x188,_0x21b373._0xdef3c,0xd6,'4bJu')]=_0x49a1ce(-_0x21b373._0x269799,_0x21b373._0x2651f4,_0x21b373._0x35ce7c,0x32),_0x514baa[_0x49a1ce(0xbc,_0x21b373._0x36eebe,0xe2,0x170)]=_0x49a1ce(0x16f,'WlMI',_0x21b373._0x2e5420,_0x21b373._0xf23530),_0x514baa[_0x49a1ce(-_0x21b373._0x572754,'5@iN',-_0x21b373._0x58f9b3,-0x1fa)]=function(_0x3e4f24,_0xbfe71){return _0x3e4f24!==_0xbfe71;},_0x514baa[_0x49a1ce(0x86,'WlMI',-0x6d,-_0x21b373._0x1a274d)]=_0x49a1ce(-_0x21b373._0x1c5f09,_0x21b373._0x1004f3,_0x21b373._0x2eb115,-0x3e),_0x514baa[_0x27fb0c(_0x21b373._0x2a4896,_0x21b373._0x4283b2,_0x21b373._0x2215fa,']^i4')]='hcGpY';const _0x25fdb3=_0x514baa,_0x1d647a=[(-0x17e4+0x1c05+0x97*-0x7,utils_1[_0x27fb0c(0x249,_0x21b373._0x2e0764,0x27a,_0x21b373._0x4adc0c)+_0x27fb0c(0x221,_0x21b373._0x5205fa,0x118,'UXSS')])(_0x5d46df),(-0x172+0xc6d*-0x1+0xddf,utils_1[_0x49a1ce(_0x21b373._0x17bab,']]&3',_0x21b373._0x80291d,0xbf)+'r'])(_0x5d46df),(0x14e+-0x1ce0+-0x1b92*-0x1,utils_1[_0x49a1ce(-_0x21b373._0x46076c,_0x21b373._0x15f486,0xb4,_0x21b373._0x5b60a7)+_0x27fb0c(0x2b7,_0x21b373._0x4ec920,0x169,_0x21b373._0x27451c)])(_0x5d46df)];for(const _0x28f0fe of _0x1d647a){if(fs[_0x27fb0c(0x104,_0x21b373._0x257b26,_0x21b373._0x19ca4b,'Bgzq')](_0x28f0fe))try{if(_0x25fdb3[_0x49a1ce(0x13a,_0x21b373._0x4371e3,_0x21b373._0x22f7c3,_0x21b373._0x3e64fc)](_0x49a1ce(0xc1,_0x21b373._0x2ab80e,_0x21b373._0x140923,0x176),_0x25fdb3[_0x27fb0c(0x20c,_0x21b373._0x3ff456,0x2bb,_0x21b373._0x3b83d7)])){const _0x5e901d={};_0x5e901d[_0x27fb0c(0x166,0x18f,_0x21b373._0x3a68f3,_0x21b373._0x5cb95a)]=!![],_0x5e901d[_0x27fb0c(0x2ea,0xd6,0x207,'$&Rj')]=!![],fs[_0x27fb0c(0x7f,0x168,_0x21b373._0x87c7da,_0x21b373._0x3e1faa)](_0x28f0fe,_0x5e901d);}else return this['bindFeishu'+_0x27fb0c(_0x21b373._0x220afc,0xf0,0x115,_0x21b373._0x4b1edb)](_0x3a1fcc[_0x49a1ce(0x14c,'ijfA',_0x21b373._0x5dccb4,_0x21b373._0x4fae84)],_0x46c393['appId']);}catch(_0x2ba63b){console[_0x27fb0c(0x233,_0x21b373._0xef8bfb,_0x21b373._0x2437d9,_0x21b373._0x2ae056)](_0x49a1ce(0x13f,'HZP%',0x1dc,_0x21b373._0xc586a)+_0x28f0fe+':\x20'+_0x2ba63b);}}const _0x5bd84c=path[_0x49a1ce(_0x21b373._0x4284c9,_0x21b373._0x2af271,_0x21b373._0xea8411,-_0x21b373._0x5e9ed8)]((0x6bb*-0x2+0xc5e*-0x2+-0x2*-0x1319,utils_1[_0x27fb0c(-0x6c,0xea,0xc2,_0x21b373._0x5526af)+_0x27fb0c(0xcd,_0x21b373._0x150856,0x141,_0x21b373._0x2587e3)])(),_0x25fdb3[_0x27fb0c(0x23b,_0x21b373._0x5aa429,_0x21b373._0x11c121,_0x21b373._0x1465d5)],_0x5d46df);if(fs[_0x49a1ce(_0x21b373._0x5b008e,'FbJU',_0x21b373._0x2abc71,_0x21b373._0x180a32)](_0x5bd84c)){if(_0x25fdb3[_0x49a1ce(_0x21b373._0x1ad1b0,')b8k',0xf3,0x9e)](_0x25fdb3[_0x27fb0c(_0x21b373._0x2eafea,0x26d,_0x21b373._0x27a0f6,'fBj^')],_0x25fdb3[_0x49a1ce(_0x21b373._0x478a4f,'Id0X',_0x21b373._0x41833d,_0x21b373._0x44a42d)]))try{if(_0x25fdb3[_0x27fb0c(0x43c,0x25d,0x2ec,'OEb[')](_0x25fdb3[_0x49a1ce(-0x8,'k*x7',-_0x21b373._0x3643f8,-0x62)],_0x25fdb3[_0x27fb0c(_0x21b373._0x4c4c43,0x279,0x2a0,_0x21b373._0x3e3f37)])){const _0x3de9fe=fs['readdirSyn'+'c'](_0x5bd84c);if(_0x25fdb3[_0x49a1ce(0x15c,_0x21b373._0xb58927,_0x21b373._0x349367,0x6d)](_0x3de9fe[_0x27fb0c(0x129,0x2d0,0x17b,_0x21b373._0x3d2605)],0x1e*-0x6b+-0x227d+0x2f07)){if(_0x25fdb3[_0x49a1ce(0x6,_0x21b373._0x42c59c,_0x21b373._0x2a1b37,0x39)](_0x25fdb3['pcKic'],_0x25fdb3[_0x49a1ce(0x18d,'ijfA',0x26a,_0x21b373._0x45a3ce)]))fs[_0x27fb0c(0x156,_0x21b373._0x24c8fd,_0x21b373._0x41ab37,'NLEw')](_0x5bd84c);else return{'success':![],'message':'该事业部已存在'+(_0x25fdb3[_0x27fb0c(_0x21b373._0x121218,0x2fd,_0x21b373._0x1f1fc0,_0x21b373._0x31621e)](_0x130c62[_0x49a1ce(0x69,_0x21b373._0x2b0960,0x82,_0x21b373._0xe12d3a)],_0x27fb0c(0x147,0x20b,_0x21b373._0x356313,_0x21b373._0x5968c0))?_0x25fdb3[_0x27fb0c(_0x21b373._0x517752,_0x21b373._0x340700,_0x21b373._0x2b4ddc,_0x21b373._0x5558a6)]:_0x25fdb3[_0x49a1ce(0x154,'IZBF',0x7a,0x1c5)])+(_0x49a1ce(_0x21b373._0x34a791,'JwR8',_0x21b373._0x58ba7a,0x11d)+'个')};}else{if(_0x25fdb3[_0x27fb0c(0x10a,0x122,0x1fa,_0x21b373._0x5558a6)](_0x25fdb3[_0x49a1ce(-0xc4,'HZP%',-_0x21b373._0x14cec3,-0x59)],_0x25fdb3[_0x27fb0c(0x397,0x1e1,0x29d,'7!da')])){const _0x39db1c={};_0x39db1c[_0x49a1ce(_0x21b373._0x4c1d80,_0x21b373._0x370911,-_0x21b373._0x14cec3,0xed)]=!![],_0x39db1c[_0x49a1ce(-0xb2,_0x21b373._0x202376,-_0x21b373._0x50e41a,0x52)]=!![],fs[_0x27fb0c(_0x21b373._0x2df6ec,_0x21b373._0x17853a,_0x21b373._0x59362c,_0x21b373._0x3b83d7)](_0x5bd84c,_0x39db1c);}else _0x12e2da[_0x27fb0c(_0x21b373._0x1e2921,_0x21b373._0x263f74,_0x21b373._0x13aeec,_0x21b373._0x252cb9)](_0x49a1ce(_0x21b373._0x57fe67,_0x21b373._0x3bf2e0,_0x21b373._0x1a2ddf,0x158)+_0x27fb0c(0x2ae,0x32a,_0x21b373._0x460e1c,'NLEw')+_0x3d155d[_0x27fb0c(_0x21b373._0x38584a,0x2ac,_0x21b373._0x478a4f,_0x21b373._0x55db8a)][_0x49a1ce(-_0x21b373._0x50c2ed,'Hbdi',-_0x21b373._0x2b9e75,-0x226)]+_0x49a1ce(-0x9a,_0x21b373._0x310d4d,-0x6,-0x14c));}}else{const _0xc15ad4=(0x1b8f+0xa45+0x24*-0x10d,_0x5298bf[_0x49a1ce(_0x21b373._0x55d164,_0x21b373._0x2fdb92,-0xaa,0x1cd)+'tAllowList'])(_0x5b375e,_0x5e2f39['department'+_0x49a1ce(0x8a,'q)6p',_0x21b373._0x5b5939,0x8e)],_0x25fdb3[_0x49a1ce(0x19f,'l#wr',0xb9,_0x21b373._0x4bff73)]);_0xc15ad4[_0x27fb0c(_0x21b373._0x3f64ca,0x464,_0x21b373._0x1d9402,_0x21b373._0x370911)]&&_0x25fdb3[_0x27fb0c(0x2d1,0x1bc,0x267,'ijfA')](_0xc15ad4[_0x27fb0c(0xc,0x1e1,0x12a,']VFf')+_0x27fb0c(_0x21b373._0x44df09,_0x21b373._0x43d302,0xbc,_0x21b373._0x2b0960)]['length'],-0x1645*0x1+-0x131+0x4d*0x4e)&&_0x405046[_0x49a1ce(0x112,'MCTk',0xe1,0x1b3)](_0x49a1ce(-0xff,_0x21b373._0x38d58f,-0x211,-_0x21b373._0x3b323b)+_0x27fb0c(0x8a,0x26,0x134,_0x21b373._0x42cd41)+_0xc15ad4[_0x27fb0c(0x22e,0x24b,_0x21b373._0x3e3203,'q)6p')+_0x27fb0c(-_0x21b373._0x537c7e,0x35,0xdd,'pNmB')][_0x49a1ce(0x50,'rAIC',-0x4,-_0x21b373._0x1d60a7)]+(_0x27fb0c(0x1de,0x84,_0x21b373._0x7b3121,'RdY6')+'限'));}}catch(_0x2b8e7e){if(_0x25fdb3[_0x27fb0c(_0x21b373._0x1c37cc,_0x21b373._0x2dcee0,_0x21b373._0x1769f2,'XtVi')](_0x25fdb3[_0x27fb0c(_0x21b373._0x165a80,0x30c,0x2f1,_0x21b373._0x11adbb)],_0x25fdb3[_0x49a1ce(0x140,'Hbdi',_0x21b373._0x19b0cb,_0x21b373._0x4dd203)]))console[_0x49a1ce(-_0x21b373._0xcef1ae,_0x21b373._0x42bc08,0x44,-_0x21b373._0x48db8a)](_0x49a1ce(0x13b,'WlMI',0x63,0x75)+_0x49a1ce(-0x3,'ZF8k',0xa7,_0x21b373._0x324ba3)+_0x5bd84c+':\x20'+_0x2b8e7e);else{const _0x20abe7=_0x3f92b5[_0x49a1ce(-_0x21b373._0x5449c7,'AYRW',0x110,-_0x21b373._0x11749c)+_0x27fb0c(0x18d,0x327,_0x21b373._0x427524,'$&Rj')][_0x49a1ce(-0x4e,'Bgzq',-0x94,-_0x21b373._0x4f036f)](_0x2b806e);if(!_0x20abe7){const _0x31e937={};return _0x31e937[_0x27fb0c(_0x21b373._0x3c7180,_0x21b373._0x551ac6,0x110,'ijfA')]=![],_0x31e937[_0x49a1ce(-_0x21b373._0x4dd203,'NLEw',-0x1a8,_0x21b373._0xf310c5)]=_0x25fdb3[_0x27fb0c(0x28d,_0x21b373._0x4bc641,0x309,'S66V')],_0x31e937;}const _0x50d0c7={};_0x50d0c7[_0x27fb0c(_0x21b373._0x1e9f49,_0x21b373._0x318aeb,_0x21b373._0x418598,_0x21b373._0x27f1dc)+_0x27fb0c(0x1b3,0x1a3,_0x21b373._0x1cd18b,_0x21b373._0x38d58f)]=_0x7260e5,_0x258392[_0x49a1ce(0x3a,_0x21b373._0x216710,-_0x21b373._0x2ba024,_0x21b373._0x45831d)+_0x27fb0c(0x296,0x342,_0x21b373._0x18de20,'7!da')][_0x27fb0c(_0x21b373._0x672c81,0x26,_0x21b373._0x595f50,_0x21b373._0x5558a6)+'t'](_0x243f5f,_0x50d0c7);const _0x3cd560={};return _0x3cd560[_0x49a1ce(_0x21b373._0x9a4c11,_0x21b373._0xa0bae8,-_0x21b373._0x94373f,_0x21b373._0x1943ba)]=!![],_0x3cd560[_0x49a1ce(0xf,'RdY6',-0x67,0x8a)]=_0x25fdb3[_0x27fb0c(_0x21b373._0x33aeb5,0x14b,0x168,_0x21b373._0x3fda99)],_0x3cd560;}}else{const _0x467f6d=_0x3b7a53[_0x27fb0c(_0x21b373._0x4377d0,0x1cd,0x161,_0x21b373._0x374180)+_0x49a1ce(0x13c,_0x21b373._0x5cd2ee,0x148,0x1ee)][_0x27fb0c(_0x21b373._0xe8be9a,_0x21b373._0x86502e,_0x21b373._0x47d4ff,']]&3')]();return{'total':_0x467f6d[_0x49a1ce(_0x21b373._0x4936bb,'AYRW',0x59,-0x22)],'assistants':_0x467f6d[_0x27fb0c(_0x21b373._0x178806,0x2db,_0x21b373._0x1728f3,'YysK')](_0x14f628=>_0x14f628[_0x27fb0c(0x17e,0x5e,0xe1,'NLEw')]===_0x49a1ce(0x2b,']VFf',-0x24,-0xaf))[_0x27fb0c(0x33d,_0x21b373._0x5aaaa6,0x33b,'JwR8')],'managers':_0x467f6d[_0x49a1ce(_0x21b373._0x3ab579,_0x21b373._0xff9a86,0xd4,_0x21b373._0x14f19e)](_0x5d5fab=>_0x5d5fab[_0x27fb0c(0x30a,0x1fa,0x248,'IZBF')]===_0x27fb0c(0x268,0x3df,0x2dd,'S66V'))[_0x27fb0c(_0x21b373._0x82cff0,0x1f,0x124,'G4(O')],'reviewers':_0x467f6d[_0x27fb0c(_0x21b373._0x1581a0,0x12f,_0x21b373._0x16e950,'ZF8k')](_0xc1cd07=>_0xc1cd07[_0x27fb0c(0x2f7,0x2a7,0x248,'IZBF')]===_0x27fb0c(0x37e,0x366,0x2fd,']]&3'))[_0x49a1ce(-0x2c,'h3kV',_0x21b373._0x314791,0xdf)],'executors':_0x467f6d[_0x49a1ce(-_0x21b373._0x307a4,_0x21b373._0x3564e2,0x32,-_0x21b373._0x478a4f)](_0x424dcf=>_0x424dcf[_0x49a1ce(-0xfb,'L&X]',-0x1b,0x54)]===_0x27fb0c(0x31c,0x432,0x30d,'n1Xg'))[_0x49a1ce(-0xdf,'65t)',-0x12f,-0x191)]};}}}[_0x398f57(0x27f,0x1f2,0x1ee,'XtVi')+_0x398f57(0x48a,0x338,0x474,'NLEw')](_0x33bd6d,_0x489838){const _0x15ec3c={_0x4ec614:0x1d2,_0x1dba94:0x1f5,_0xb06a8b:0x165,_0x1b76a9:0x67,_0x1a4264:0x33,_0x2eca9b:0x39,_0x4603ee:'Hbdi',_0x133007:0x128,_0x38f863:0x16d,_0x3e3336:0x2dc,_0x3fb0df:'L&X]',_0x163559:0x25e,_0x41dd2d:0x305,_0x2ce0a0:0x172,_0x2421c3:0x27f,_0x46cdb3:0x2d3,_0x1eaeef:0x31e,_0x540fdd:0x2d5,_0x823b13:0x335,_0x44df40:'4bJu',_0x7da579:0x1f8,_0x1aa10a:'n1Xg',_0x388148:0xc,_0x5d37e6:'K1MK',_0x59a6ea:0x1f3,_0x2ef728:0x125,_0x111b89:'nyUT',_0x40eee7:'l#wr',_0x1952ce:0x1ec,_0x534589:0xed,_0x5d9c7b:0xd9},_0x333e29={_0x241555:0x23d,_0x507d26:0x181},_0x3ff05e={};_0x3ff05e[_0xc599a7(0x2ae,_0x15ec3c._0x4ec614,_0x15ec3c._0x1dba94,'WlMI')]=_0xc599a7(_0x15ec3c._0xb06a8b,0xbf,0xff,'$&Rj');const _0x46fb19=_0x3ff05e,_0x403a3c=agent_repo_1[_0x55dfee(0x112,'K1MK',_0x15ec3c._0x1b76a9,-_0x15ec3c._0x1a4264)+'itory'][_0x55dfee(-_0x15ec3c._0x2eca9b,_0x15ec3c._0x4603ee,0x14,_0x15ec3c._0x133007)](_0x33bd6d);if(!_0x403a3c){const _0x3a9e38={};return _0x3a9e38[_0x55dfee(_0x15ec3c._0x38f863,'fBj^',0x1fd,0x21b)]=![],_0x3a9e38[_0x55dfee(_0x15ec3c._0x3e3336,_0x15ec3c._0x3fb0df,_0x15ec3c._0x163559,_0x15ec3c._0x41dd2d)]=_0x46fb19[_0x55dfee(0xd2,'$&Rj',0x1d6,_0x15ec3c._0x2ce0a0)],_0x3a9e38;}function _0x55dfee(_0x312f02,_0x285dda,_0x27e8bd,_0x2aba92){return _0x398f57(_0x27e8bd- -_0x333e29._0x241555,_0x285dda-_0x333e29._0x507d26,_0x27e8bd-0xcc,_0x285dda);}const _0x2536f2={};_0x2536f2[_0xc599a7(_0x15ec3c._0x2421c3,_0x15ec3c._0x46cdb3,_0x15ec3c._0x1eaeef,'G4(O')+_0xc599a7(_0x15ec3c._0x540fdd,0x36d,_0x15ec3c._0x823b13,_0x15ec3c._0x44df40)]=_0x489838,agent_repo_1[_0x55dfee(_0x15ec3c._0x7da579,_0x15ec3c._0x1aa10a,0x18e,0x2d2)+_0x55dfee(-_0x15ec3c._0x388148,_0x15ec3c._0x5d37e6,0x97,_0x15ec3c._0x38f863)][_0xc599a7(0x193,0x239,0xcd,')b8k')+'t'](_0x33bd6d,_0x2536f2);const _0x10d6fd={};_0x10d6fd[_0xc599a7(_0x15ec3c._0x59a6ea,_0x15ec3c._0x2ef728,0x16a,_0x15ec3c._0x111b89)]=!![],_0x10d6fd[_0x55dfee(0x159,_0x15ec3c._0x40eee7,_0x15ec3c._0x1952ce,_0x15ec3c._0x534589)]=_0x55dfee(_0x15ec3c._0x5d9c7b,_0x15ec3c._0x4603ee,0x169,0x38);function _0xc599a7(_0x431abf,_0x1babc6,_0x9bd14f,_0xf3de4d){return _0x398f57(_0x431abf- -0x101,_0x1babc6-0x175,_0x9bd14f-0x1a,_0xf3de4d);}return _0x10d6fd;}[_0x398f57(0x478,0x528,0x3c0,'Bgzq')+_0x398f57(0x398,0x2e3,0x29d,'ETU]')+'e'](_0x5a6606){const _0x2dc268={_0x29a36e:0x28f,_0x4c2c5d:0x414,_0x40000f:0x537,_0x25e50b:'nyUT',_0x59db9a:0x2ec,_0x31f274:0x9c,_0x45fb13:0x1f1},_0x173bbc={_0x447dbb:0x21},_0x539b24={_0xb136a4:0x13a,_0x516ca7:0x1be};function _0x628edd(_0x4cc98e,_0x2f593d,_0x282654,_0x1bdf21){return _0x4168b0(_0x4cc98e-0x1,_0x2f593d-_0x539b24._0xb136a4,_0x4cc98e-_0x539b24._0x516ca7,_0x282654);}function _0x592be1(_0x4feaba,_0x46b846,_0x6c078e,_0x2748b){return _0x398f57(_0x6c078e- -0x306,_0x46b846-_0x173bbc._0x447dbb,_0x6c078e-0x132,_0x2748b);}return this[_0x628edd(0x36e,_0x2dc268._0x29a36e,'UK(l',0x41d)+_0x628edd(_0x2dc268._0x4c2c5d,_0x2dc268._0x40000f,_0x2dc268._0x25e50b,_0x2dc268._0x59db9a)](_0x5a6606[_0x592be1(-_0x2dc268._0x31f274,-_0x2dc268._0x45fb13,-0xac,'FbJU')],_0x5a6606['appId']);}[_0x4168b0(0x177,0x1ec,0x188,'S%t6')](){const _0x1bf19c={_0x249d64:'7!da',_0x413bf7:0x288,_0x57c017:0x662,_0x1042f5:0x51e,_0x495627:0x475,_0x1e3469:0x565,_0x31e2ea:0x542,_0x4bbbb1:0x4b6,_0x4ff3d8:0x2bb,_0x15056d:'UK(l',_0x2d60c0:0x2d1,_0x1cc2e3:0x48d,_0x49d209:'l#wr',_0x7ee1d6:0x350,_0x397029:0x3d3,_0x5dadf3:0x303,_0x1df8fd:0x54e,_0x5f4aac:0x38c,_0x330cde:'ETU]',_0x19c8ad:0x4a1},_0x49b2cd={_0x3cbccb:0x16f,_0x4533d5:0x1da,_0x3998c2:0x1b8};function _0x30980f(_0x44f710,_0x21b772,_0x5c1b54,_0x30b83f){return _0x4168b0(_0x44f710-_0x49b2cd._0x3cbccb,_0x21b772-_0x49b2cd._0x4533d5,_0x5c1b54-_0x49b2cd._0x3998c2,_0x21b772);}function _0x418703(_0x3b5c33,_0x138c15,_0x284852,_0xbbe23f){return _0x398f57(_0x284852-0x189,_0x138c15-0x13b,_0x284852-0x1e6,_0x138c15);}const _0x354644=agent_repo_1[_0x30980f(0x1a7,_0x1bf19c._0x249d64,_0x1bf19c._0x413bf7,0x353)+_0x418703(_0x1bf19c._0x57c017,']VFf',_0x1bf19c._0x1042f5,0x545)][_0x418703(0x40b,'RdY6',_0x1bf19c._0x495627,_0x1bf19c._0x1e3469)]();return{'total':_0x354644[_0x418703(0x448,'pNmB',_0x1bf19c._0x31e2ea,_0x1bf19c._0x4bbbb1)],'assistants':_0x354644[_0x30980f(_0x1bf19c._0x4ff3d8,_0x1bf19c._0x15056d,0x32a,_0x1bf19c._0x2d60c0)](_0x45aca3=>_0x45aca3[_0x418703(0x540,'&2IR',0x5da,0x6e4)]==='assistant')[_0x418703(0x4ed,'MXVh',0x59b,0x4b2)],'managers':_0x354644[_0x30980f(_0x1bf19c._0x1cc2e3,_0x1bf19c._0x49d209,0x41b,_0x1bf19c._0x7ee1d6)](_0x5242a5=>_0x5242a5[_0x418703(0x47f,'IZBF',0x576,0x4e8)]===_0x30980f(0x39b,'JwR8',0x31a,0x386))[_0x418703(0x4bc,'Z9p(',_0x1bf19c._0x397029,_0x1bf19c._0x5dadf3)],'reviewers':_0x354644[_0x418703(0x3b0,'fBj^',0x4d7,_0x1bf19c._0x1df8fd)](_0x3dd11b=>_0x3dd11b[_0x418703(0x2dd,'K1MK',0x429,0x498)]===_0x418703(0x40a,'tR@(',0x4ee,0x484))[_0x418703(0x3db,'Hbdi',0x3f4,0x48a)],'executors':_0x354644[_0x418703(0x552,'l#wr',0x5fe,0x62f)](_0x374f44=>_0x374f44['role']===_0x418703(0x54a,'Bgzq',0x508,0x5f8))[_0x418703(_0x1bf19c._0x5f4aac,_0x1bf19c._0x330cde,0x3d7,_0x1bf19c._0x19c8ad)]};}}exports[_0x398f57(0x3a8,0x37a,0x386,'L&X]')+'ce']=AgentService,exports[_0x4168b0(0x99,-0xb3,0x88,'S%t6')+'ce']=new AgentService();
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Agent Service
|
|
4
|
+
*
|
|
5
|
+
* Follows OpenClaw official standard directory structure and config format
|
|
6
|
+
*/
|
|
7
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
8
|
+
if (k2 === undefined) k2 = k;
|
|
9
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
10
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
11
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
12
|
+
}
|
|
13
|
+
Object.defineProperty(o, k2, desc);
|
|
14
|
+
}) : (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
o[k2] = m[k];
|
|
17
|
+
}));
|
|
18
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
19
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
20
|
+
}) : function(o, v) {
|
|
21
|
+
o["default"] = v;
|
|
22
|
+
});
|
|
23
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
24
|
+
var ownKeys = function(o) {
|
|
25
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
26
|
+
var ar = [];
|
|
27
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
28
|
+
return ar;
|
|
29
|
+
};
|
|
30
|
+
return ownKeys(o);
|
|
31
|
+
};
|
|
32
|
+
return function (mod) {
|
|
33
|
+
if (mod && mod.__esModule) return mod;
|
|
34
|
+
var result = {};
|
|
35
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
36
|
+
__setModuleDefault(result, mod);
|
|
37
|
+
return result;
|
|
38
|
+
};
|
|
39
|
+
})();
|
|
40
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
|
+
exports.agentService = exports.AgentService = void 0;
|
|
42
|
+
const path = __importStar(require("path"));
|
|
43
|
+
const fs = __importStar(require("fs"));
|
|
44
|
+
const agent_repo_1 = require("../../db/repositories/agent.repo");
|
|
45
|
+
const job_repo_1 = require("../../db/repositories/job.repo");
|
|
46
|
+
const skill_pack_repo_1 = require("../../db/repositories/skill-pack.repo");
|
|
47
|
+
const utils_1 = require("../utils");
|
|
48
|
+
const openclaw_helper_1 = require("../utils/openclaw-helper");
|
|
49
|
+
const configTracker = __importStar(require("./config-tracker.service"));
|
|
50
|
+
const credentials_cleanup_1 = require("../utils/credentials-cleanup");
|
|
51
|
+
class AgentService {
|
|
52
|
+
/**
|
|
53
|
+
* Create agent
|
|
54
|
+
*
|
|
55
|
+
* Complete flow:
|
|
56
|
+
* 1. Parameter validation
|
|
57
|
+
* 2. Create directory structure (workspace, agentDir, sessions)
|
|
58
|
+
* 3. Create guide files (AGENTS.md, SOUL.md, USER.md, MEMORY.md, auth-profiles.json)
|
|
59
|
+
* 4. Create database record
|
|
60
|
+
* 5. Sync openclaw.json config
|
|
61
|
+
*/
|
|
62
|
+
create(data) {
|
|
63
|
+
try {
|
|
64
|
+
// If manager or reviewer, check if department already has this role
|
|
65
|
+
if (data.department_id && (data.role === 'manager' || data.role === 'reviewer')) {
|
|
66
|
+
if (agent_repo_1.agentRepository.hasRoleInDepartment(data.department_id, data.role)) {
|
|
67
|
+
return { success: false, message: `该事业部已存在${data.role === 'manager' ? '管理者' : '审核者'},每个事业部只能有一个` };
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
// Generate ID
|
|
71
|
+
const agentId = data.id || (0, utils_1.generateAgentId)();
|
|
72
|
+
// Check if ID already exists
|
|
73
|
+
if (agent_repo_1.agentRepository.exists(agentId)) {
|
|
74
|
+
return { success: false, message: `Agent ID ${agentId} 已存在` };
|
|
75
|
+
}
|
|
76
|
+
// Get workspace path
|
|
77
|
+
const workspacePath = (0, utils_1.getAgentWorkspace)(agentId);
|
|
78
|
+
const agentDir = (0, utils_1.getAgentDir)(agentId);
|
|
79
|
+
// Create directory structure
|
|
80
|
+
(0, openclaw_helper_1.createAgentDirectories)(agentId);
|
|
81
|
+
// Get job and skill pack info (for executor)
|
|
82
|
+
let jobName;
|
|
83
|
+
let skillPacks = [];
|
|
84
|
+
if (data.role === 'executor' && data.job_id) {
|
|
85
|
+
const job = job_repo_1.jobRepository.findById(data.job_id);
|
|
86
|
+
if (job) {
|
|
87
|
+
jobName = job.name;
|
|
88
|
+
// Get skill pack content
|
|
89
|
+
if (job.skill_pack_ids) {
|
|
90
|
+
try {
|
|
91
|
+
const skillPackIds = JSON.parse(job.skill_pack_ids);
|
|
92
|
+
for (const spId of skillPackIds) {
|
|
93
|
+
const content = skill_pack_repo_1.skillPackRepository.getContent(spId);
|
|
94
|
+
if (content) {
|
|
95
|
+
skillPacks.push({
|
|
96
|
+
id: spId,
|
|
97
|
+
name: content.name,
|
|
98
|
+
content: JSON.stringify(content, null, 2)
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
catch {
|
|
104
|
+
// Ignore parse errors
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
// Create agent files
|
|
110
|
+
(0, openclaw_helper_1.createAgentFiles)(agentId, {
|
|
111
|
+
name: data.name,
|
|
112
|
+
role: data.role,
|
|
113
|
+
departmentId: data.department_id,
|
|
114
|
+
jobId: data.job_id
|
|
115
|
+
});
|
|
116
|
+
// Create database record
|
|
117
|
+
const now = new Date().toISOString();
|
|
118
|
+
const agent = {
|
|
119
|
+
id: agentId,
|
|
120
|
+
name: data.name,
|
|
121
|
+
department_id: data.department_id || null,
|
|
122
|
+
job_id: data.job_id || null,
|
|
123
|
+
role: data.role,
|
|
124
|
+
role_flow_path: null, // Will be set when role flow is assigned
|
|
125
|
+
feishu_bot_id: null,
|
|
126
|
+
workspace_path: workspacePath,
|
|
127
|
+
status: 'active',
|
|
128
|
+
last_active_at: null,
|
|
129
|
+
created_at: now
|
|
130
|
+
};
|
|
131
|
+
agent_repo_1.agentRepository.insert(agent);
|
|
132
|
+
// Sync openclaw.json
|
|
133
|
+
(0, openclaw_helper_1.syncOpenClawConfig)(agent);
|
|
134
|
+
// Update allowAgents for team members (if this agent belongs to a team)
|
|
135
|
+
if (agent.department_id) {
|
|
136
|
+
const allowListResult = (0, openclaw_helper_1.updateAgentAllowList)(agentId, agent.department_id, 'add');
|
|
137
|
+
if (allowListResult.success && allowListResult.affectedAgents.length > 0) {
|
|
138
|
+
console.log(`[Agent创建] 已更新 ${allowListResult.affectedAgents.length} 个团队成员的通信权限`);
|
|
139
|
+
}
|
|
140
|
+
// Sync team member info to all agents in the same department
|
|
141
|
+
const syncResult = (0, openclaw_helper_1.syncTeamMemberInfo)(agent.department_id);
|
|
142
|
+
if (syncResult.success && syncResult.updatedCount > 0) {
|
|
143
|
+
console.log(`[Agent创建] 已同步 ${syncResult.updatedCount} 个团队成员信息`);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
// Sync assistant's team member info (assistant sees all team members)
|
|
147
|
+
const assistantSyncResult = (0, openclaw_helper_1.syncAssistantTeamMembers)();
|
|
148
|
+
if (assistantSyncResult.success) {
|
|
149
|
+
console.log(`[Agent创建] 已同步总助理团队成员信息`);
|
|
150
|
+
}
|
|
151
|
+
// Record agent creation
|
|
152
|
+
const agentConfig = {
|
|
153
|
+
id: agent.id,
|
|
154
|
+
name: agent.name,
|
|
155
|
+
role: agent.role,
|
|
156
|
+
department_id: agent.department_id,
|
|
157
|
+
workspace: agent.workspace_path
|
|
158
|
+
};
|
|
159
|
+
configTracker.recordAgentCreate(agentId, agentConfig);
|
|
160
|
+
return { success: true, agent, message: 'Agent创建成功' };
|
|
161
|
+
}
|
|
162
|
+
catch (error) {
|
|
163
|
+
return { success: false, message: `创建失败: ${error instanceof Error ? error.message : String(error)}` };
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* Get agent by ID
|
|
168
|
+
*/
|
|
169
|
+
getById(id) {
|
|
170
|
+
return agent_repo_1.agentRepository.findById(id);
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* Get assistant (global, unique)
|
|
174
|
+
*/
|
|
175
|
+
getAssistant() {
|
|
176
|
+
return agent_repo_1.agentRepository.getAssistant();
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Get agent by department and role
|
|
180
|
+
*/
|
|
181
|
+
getByDepartmentAndRole(departmentId, role) {
|
|
182
|
+
if (role === 'manager' || role === 'reviewer') {
|
|
183
|
+
// Each department has at most one manager/reviewer
|
|
184
|
+
return agent_repo_1.agentRepository.findOneByDepartmentAndRole(departmentId, role);
|
|
185
|
+
}
|
|
186
|
+
else {
|
|
187
|
+
// Executor can have multiple
|
|
188
|
+
return agent_repo_1.agentRepository.findByDepartmentAndRole(departmentId, role);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* List all agents
|
|
193
|
+
*/
|
|
194
|
+
listAll() {
|
|
195
|
+
return agent_repo_1.agentRepository.findAll();
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* List agents by department
|
|
199
|
+
*/
|
|
200
|
+
listByDepartment(departmentId) {
|
|
201
|
+
return agent_repo_1.agentRepository.findByDepartment(departmentId);
|
|
202
|
+
}
|
|
203
|
+
/**
|
|
204
|
+
* List agents by role
|
|
205
|
+
*/
|
|
206
|
+
listByRole(role) {
|
|
207
|
+
return agent_repo_1.agentRepository.findByRole(role);
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Update agent
|
|
211
|
+
*/
|
|
212
|
+
update(id, data) {
|
|
213
|
+
const agent = agent_repo_1.agentRepository.findById(id);
|
|
214
|
+
if (!agent) {
|
|
215
|
+
return { success: false, message: 'Agent不存在' };
|
|
216
|
+
}
|
|
217
|
+
agent_repo_1.agentRepository.updateAgent(id, data);
|
|
218
|
+
return { success: true, message: 'Agent已更新' };
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Delete agent
|
|
222
|
+
*
|
|
223
|
+
* Note: Cannot delete assistant
|
|
224
|
+
* Will clean up:
|
|
225
|
+
* - Workspace directory
|
|
226
|
+
* - Agent directory
|
|
227
|
+
* - Sessions directory
|
|
228
|
+
* - openclaw.json config
|
|
229
|
+
* - Bindings
|
|
230
|
+
* - Feishu credentials (allowFrom files)
|
|
231
|
+
* - Update allowAgents for team members
|
|
232
|
+
*
|
|
233
|
+
* @returns success, message, and restartReminder if Gateway restart is needed
|
|
234
|
+
*/
|
|
235
|
+
delete(id) {
|
|
236
|
+
// Cannot delete assistant
|
|
237
|
+
const agent = agent_repo_1.agentRepository.findById(id);
|
|
238
|
+
if (!agent) {
|
|
239
|
+
return { success: false, message: 'Agent不存在' };
|
|
240
|
+
}
|
|
241
|
+
if (agent.role === 'assistant') {
|
|
242
|
+
return { success: false, message: '不能删除总助理' };
|
|
243
|
+
}
|
|
244
|
+
// Update allowAgents for team members (remove this agent from their lists)
|
|
245
|
+
if (agent.department_id) {
|
|
246
|
+
const allowListResult = (0, openclaw_helper_1.updateAgentAllowList)(id, agent.department_id, 'remove');
|
|
247
|
+
if (allowListResult.success && allowListResult.affectedAgents.length > 0) {
|
|
248
|
+
console.log(`[Agent删除] 已更新 ${allowListResult.affectedAgents.length} 个团队成员的通信权限`);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
// Remove from OpenClaw config
|
|
252
|
+
(0, openclaw_helper_1.removeAgentFromConfig)(id);
|
|
253
|
+
// Remove from bindings
|
|
254
|
+
this.removeAgentBindings(id);
|
|
255
|
+
// Record change (for undo)
|
|
256
|
+
configTracker.recordAgentDelete(id, {
|
|
257
|
+
id: agent.id,
|
|
258
|
+
name: agent.name,
|
|
259
|
+
role: agent.role,
|
|
260
|
+
department_id: agent.department_id,
|
|
261
|
+
workspace: agent.workspace_path
|
|
262
|
+
});
|
|
263
|
+
// Delete directories
|
|
264
|
+
this.deleteAgentDirectories(id);
|
|
265
|
+
// Clean up feishu credentials for this agent
|
|
266
|
+
const cleanupResult = (0, credentials_cleanup_1.cleanupFeishuCredentialsForAgent)(id);
|
|
267
|
+
if (cleanupResult.deleted.length > 0) {
|
|
268
|
+
console.log(`[Agent删除] 已清理 ${cleanupResult.deleted.length} 个飞书配对文件`);
|
|
269
|
+
}
|
|
270
|
+
// Delete database record
|
|
271
|
+
agent_repo_1.agentRepository.delete(id);
|
|
272
|
+
// Sync team member info to remaining agents in the same department
|
|
273
|
+
if (agent.department_id) {
|
|
274
|
+
const syncResult = (0, openclaw_helper_1.syncTeamMemberInfo)(agent.department_id, id);
|
|
275
|
+
if (syncResult.success && syncResult.updatedCount > 0) {
|
|
276
|
+
console.log(`[Agent删除] 已同步 ${syncResult.updatedCount} 个团队成员信息`);
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
// Sync assistant's team member info (assistant sees all team members)
|
|
280
|
+
const assistantSyncResult = (0, openclaw_helper_1.syncAssistantTeamMembers)();
|
|
281
|
+
if (assistantSyncResult.success) {
|
|
282
|
+
console.log(`[Agent删除] 已同步总助理团队成员信息`);
|
|
283
|
+
}
|
|
284
|
+
// Return success with restart reminder (Gateway restart is needed to disconnect Feishu WebSocket)
|
|
285
|
+
return {
|
|
286
|
+
success: true,
|
|
287
|
+
message: 'Agent已删除',
|
|
288
|
+
restartReminder: (0, openclaw_helper_1.getGatewayRestartReminder)()
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
/**
|
|
292
|
+
* Remove agent bindings from openclaw.json
|
|
293
|
+
*/
|
|
294
|
+
removeAgentBindings(agentId) {
|
|
295
|
+
try {
|
|
296
|
+
const configPath = (0, utils_1.getOpenClawJsonPath)();
|
|
297
|
+
if (!fs.existsSync(configPath))
|
|
298
|
+
return;
|
|
299
|
+
const content = fs.readFileSync(configPath, 'utf-8');
|
|
300
|
+
const config = JSON.parse(content);
|
|
301
|
+
if (config.bindings && Array.isArray(config.bindings)) {
|
|
302
|
+
config.bindings = config.bindings.filter((b) => b.agentId !== agentId);
|
|
303
|
+
fs.writeFileSync(configPath, JSON.stringify(config, null, 2), 'utf-8');
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
catch (error) {
|
|
307
|
+
console.warn(`警告:移除 bindings 失败: ${error}`);
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
/**
|
|
311
|
+
* Delete agent directories
|
|
312
|
+
*/
|
|
313
|
+
deleteAgentDirectories(agentId) {
|
|
314
|
+
const dirs = [
|
|
315
|
+
(0, utils_1.getAgentWorkspace)(agentId),
|
|
316
|
+
(0, utils_1.getAgentDir)(agentId),
|
|
317
|
+
(0, utils_1.getAgentSessionsDir)(agentId)
|
|
318
|
+
];
|
|
319
|
+
for (const dir of dirs) {
|
|
320
|
+
if (fs.existsSync(dir)) {
|
|
321
|
+
try {
|
|
322
|
+
fs.rmSync(dir, { recursive: true, force: true });
|
|
323
|
+
}
|
|
324
|
+
catch (error) {
|
|
325
|
+
console.warn(`警告:删除目录失败 ${dir}: ${error}`);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
// 还需要删除 agents/{agentId} 根目录(如果存在且为空)
|
|
330
|
+
const agentRootDir = path.join((0, utils_1.getOpenClawRoot)(), 'agents', agentId);
|
|
331
|
+
if (fs.existsSync(agentRootDir)) {
|
|
332
|
+
try {
|
|
333
|
+
// 检查是否为空目录
|
|
334
|
+
const remaining = fs.readdirSync(agentRootDir);
|
|
335
|
+
if (remaining.length === 0) {
|
|
336
|
+
fs.rmdirSync(agentRootDir);
|
|
337
|
+
}
|
|
338
|
+
else {
|
|
339
|
+
// 如果不为空,强制删除
|
|
340
|
+
fs.rmSync(agentRootDir, { recursive: true, force: true });
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
catch (error) {
|
|
344
|
+
console.warn(`警告:删除Agent根目录失败 ${agentRootDir}: ${error}`);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* Bind feishu bot
|
|
350
|
+
*/
|
|
351
|
+
bindFeishuBot(id, botId) {
|
|
352
|
+
const agent = agent_repo_1.agentRepository.findById(id);
|
|
353
|
+
if (!agent) {
|
|
354
|
+
return { success: false, message: 'Agent不存在' };
|
|
355
|
+
}
|
|
356
|
+
agent_repo_1.agentRepository.updateAgent(id, { feishu_bot_id: botId });
|
|
357
|
+
return { success: true, message: '飞书Bot已绑定' };
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* Bind feishu bot complete (for TUI compatibility)
|
|
361
|
+
*/
|
|
362
|
+
bindFeishuBotComplete(params) {
|
|
363
|
+
return this.bindFeishuBot(params.agentId, params.appId);
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* Get agent statistics
|
|
367
|
+
*/
|
|
368
|
+
getStats() {
|
|
369
|
+
const all = agent_repo_1.agentRepository.findAll();
|
|
370
|
+
return {
|
|
371
|
+
total: all.length,
|
|
372
|
+
assistants: all.filter(a => a.role === 'assistant').length,
|
|
373
|
+
managers: all.filter(a => a.role === 'manager').length,
|
|
374
|
+
reviewers: all.filter(a => a.role === 'reviewer').length,
|
|
375
|
+
executors: all.filter(a => a.role === 'executor').length
|
|
376
|
+
};
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
exports.AgentService = AgentService;
|
|
380
|
+
exports.agentService = new AgentService();
|
|
381
|
+
//# sourceMappingURL=agent.service.js.map
|