@offgridsec/kira-lite-mcp 0.1.6 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/INSTALL.md +11 -14
  2. package/README.md +15 -14
  3. package/dist/config.js +1 -1
  4. package/dist/core/engines/kira-core.js +1 -1
  5. package/dist/core/engines/osv.js +1 -1
  6. package/dist/core/engines/runner.js +1 -1
  7. package/dist/core/scanner.js +1 -1
  8. package/dist/core/utils.js +1 -1
  9. package/dist/index.js +1 -1
  10. package/dist/rules/c-cpp.js +1 -1
  11. package/dist/rules/cicd.js +1 -1
  12. package/dist/rules/csharp-extended.d.ts +16 -0
  13. package/dist/rules/csharp-extended.js +1 -0
  14. package/dist/rules/csharp.js +1 -1
  15. package/dist/rules/docker.js +1 -1
  16. package/dist/rules/go-extended.d.ts +15 -0
  17. package/dist/rules/go-extended.js +1 -0
  18. package/dist/rules/go.js +1 -1
  19. package/dist/rules/graphql-extended.d.ts +8 -0
  20. package/dist/rules/graphql-extended.js +1 -0
  21. package/dist/rules/index.d.ts +11 -1
  22. package/dist/rules/index.js +1 -1
  23. package/dist/rules/java-extended.d.ts +15 -0
  24. package/dist/rules/java-extended.js +1 -0
  25. package/dist/rules/java.js +1 -1
  26. package/dist/rules/javascript-extended.js +1 -1
  27. package/dist/rules/javascript.js +1 -1
  28. package/dist/rules/kotlin.d.ts +17 -0
  29. package/dist/rules/kotlin.js +1 -0
  30. package/dist/rules/kubernetes.js +1 -1
  31. package/dist/rules/php-extended.d.ts +16 -0
  32. package/dist/rules/php-extended.js +1 -0
  33. package/dist/rules/php.js +1 -1
  34. package/dist/rules/python-extended.js +1 -1
  35. package/dist/rules/python.js +1 -1
  36. package/dist/rules/ruby-extended.d.ts +16 -0
  37. package/dist/rules/ruby-extended.js +1 -0
  38. package/dist/rules/ruby.js +1 -1
  39. package/dist/rules/rust.d.ts +16 -0
  40. package/dist/rules/rust.js +1 -0
  41. package/dist/rules/secrets-extended.js +1 -1
  42. package/dist/rules/secrets.js +1 -1
  43. package/dist/rules/shell.js +1 -1
  44. package/dist/rules/swift.d.ts +17 -0
  45. package/dist/rules/swift.js +1 -0
  46. package/dist/rules/terraform.js +1 -1
  47. package/dist/telemetry.js +1 -1
  48. package/dist/tools/fix-vulnerability.js +1 -1
  49. package/dist/tools/scan-code.js +1 -1
  50. package/dist/tools/scan-dependencies.js +1 -1
  51. package/dist/tools/scan-diff.js +1 -1
  52. package/dist/tools/scan-file.js +1 -1
  53. package/package.json +6 -6
package/INSTALL.md CHANGED
@@ -14,14 +14,10 @@ Kira-Lite by [Offgrid Security](https://offgridsec.com) scans code for vulnerabi
14
14
  ## Step 1: Install
15
15
 
16
16
  ```bash
17
- npm install -g @offgridsec/kira-lite-mcp
17
+ npx -y @offgridsec/kira-lite-mcp
18
18
  ```
19
19
 
20
- Or use `npx` to run without installing:
21
-
22
- ```bash
23
- npx @offgridsec/kira-lite-mcp
24
- ```
20
+ > **No global install needed.** All setups use `npx -y`, which fetches the latest version automatically on every launch — you'll always be up to date.
25
21
 
26
22
  ---
27
23
 
@@ -75,20 +71,23 @@ cd /path/to/your-project
75
71
  #### macOS / Linux
76
72
 
77
73
  ```bash
78
- cp $(npm root -g)/@offgridsec/kira-lite-mcp/config/CLAUDE.md .
74
+ PKG=$(node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/config/CLAUDE.md').replace('/config/CLAUDE.md',''))")
75
+ cp "$PKG/config/CLAUDE.md" .
79
76
  mkdir -p .claude
80
- cp $(npm root -g)/@offgridsec/kira-lite-mcp/config/settings.local.json .claude/settings.local.json
77
+ cp "$PKG/config/settings.local.json" .claude/settings.local.json
81
78
  ```
82
79
 
83
80
  #### Windows (PowerShell)
84
81
 
85
82
  ```powershell
86
- $pkg = (npm root -g) + "\@offgridsec\kira-lite-mcp"
83
+ $pkg = Split-Path (node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/package.json'))")
87
84
  Copy-Item "$pkg\config\CLAUDE.md" .
88
85
  New-Item -ItemType Directory -Force .claude | Out-Null
89
86
  Copy-Item "$pkg\config\settings.local.json" .claude\settings.local.json
90
87
  ```
91
88
 
89
+ > **Tip:** If the package isn't cached yet, run `npx -y @offgridsec/kira-lite-mcp` once first to download it.
90
+
92
91
  ---
93
92
 
94
93
  ### Scenario B: Project Already Has a CLAUDE.md
@@ -98,8 +97,9 @@ Copy-Item "$pkg\config\settings.local.json" .claude\settings.local.json
98
97
  #### macOS / Linux
99
98
 
100
99
  ```bash
100
+ PKG=$(node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/config/CLAUDE.md').replace('/config/CLAUDE.md',''))")
101
101
  echo "" >> CLAUDE.md
102
- cat $(npm root -g)/@offgridsec/kira-lite-mcp/config/CLAUDE.md >> CLAUDE.md
102
+ cat "$PKG/config/CLAUDE.md" >> CLAUDE.md
103
103
  ```
104
104
 
105
105
  #### Manual Option
@@ -282,9 +282,6 @@ get_config()
282
282
  ```bash
283
283
  # Claude Code
284
284
  claude mcp remove --scope user kira-lite
285
-
286
- # npm
287
- npm uninstall -g @offgridsec/kira-lite-mcp
288
285
  ```
289
286
 
290
287
  ### Remove config
@@ -324,7 +321,7 @@ Your scan mode is set to `"on-save"` or `"manual"`. Check with `get_config()` an
324
321
  Make sure Node.js can find the hook script:
325
322
 
326
323
  ```bash
327
- node $(npm root -g)/@offgridsec/kira-lite-mcp/hook.mjs
324
+ node $(node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/hook.mjs'))")
328
325
  ```
329
326
 
330
327
  If it exits with no output, it's working. If it throws an error, check the path.
package/README.md CHANGED
@@ -21,13 +21,11 @@ Security tools shouldn't live in a separate tab. Kira-Lite runs **inside your AI
21
21
  ## Quick Start
22
22
 
23
23
  ```bash
24
- # Install globally
25
- npm install -g @offgridsec/kira-lite-mcp
26
-
27
- # Or run directly without installing
28
- npx @offgridsec/kira-lite-mcp
24
+ npx -y @offgridsec/kira-lite-mcp
29
25
  ```
30
26
 
27
+ > **No global install needed.** All IDE setups below use `npx -y`, which fetches the latest version automatically on every launch — you'll always be up to date.
28
+
31
29
  ---
32
30
 
33
31
  ## Setup by IDE / Tool
@@ -55,12 +53,15 @@ Navigate to your project directory, then copy the two config files:
55
53
  ```bash
56
54
  cd /path/to/your-project
57
55
 
56
+ # Resolve the package path via npx cache
57
+ PKG=$(node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/config/CLAUDE.md').replace('/config/CLAUDE.md',''))")
58
+
58
59
  # Copy CLAUDE.md (tells Claude to scan before every write)
59
- cp $(npm root -g)/@offgridsec/kira-lite-mcp/config/CLAUDE.md .
60
+ cp "$PKG/config/CLAUDE.md" .
60
61
 
61
62
  # Copy settings (auto-allows kira-lite tools + adds post-write hook)
62
63
  mkdir -p .claude
63
- cp $(npm root -g)/@offgridsec/kira-lite-mcp/config/settings.local.json .claude/settings.local.json
64
+ cp "$PKG/config/settings.local.json" .claude/settings.local.json
64
65
  ```
65
66
 
66
67
  **Windows (PowerShell):**
@@ -68,12 +69,14 @@ cp $(npm root -g)/@offgridsec/kira-lite-mcp/config/settings.local.json .claude/s
68
69
  ```powershell
69
70
  cd C:\path\to\your-project
70
71
 
71
- $pkg = (npm root -g) + "\@offgridsec\kira-lite-mcp"
72
+ $pkg = Split-Path (node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/package.json'))")
72
73
  Copy-Item "$pkg\config\CLAUDE.md" .
73
74
  New-Item -ItemType Directory -Force .claude | Out-Null
74
75
  Copy-Item "$pkg\config\settings.local.json" .claude\settings.local.json
75
76
  ```
76
77
 
78
+ > **Tip:** If the package isn't cached yet, run `npx -y @offgridsec/kira-lite-mcp` once first to download it.
79
+
77
80
  > **Already have a `CLAUDE.md` or `.claude/settings.local.json`?** Don't overwrite them — merge manually:
78
81
  >
79
82
  > <details>
@@ -83,8 +86,9 @@ Copy-Item "$pkg\config\settings.local.json" .claude\settings.local.json
83
86
  >
84
87
  > ```bash
85
88
  > # macOS / Linux
89
+ > PKG=$(node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/config/CLAUDE.md').replace('/config/CLAUDE.md',''))")
86
90
  > echo "" >> CLAUDE.md
87
- > cat $(npm root -g)/@offgridsec/kira-lite-mcp/config/CLAUDE.md >> CLAUDE.md
91
+ > cat "$PKG/config/CLAUDE.md" >> CLAUDE.md
88
92
  > ```
89
93
  >
90
94
  > Or manually add this block to the bottom of your `CLAUDE.md`:
@@ -788,7 +792,7 @@ Your scan mode is set to `"on-save"` or `"manual"`. Check with `get_config()` an
788
792
  Make sure Node.js can find the hook script:
789
793
 
790
794
  ```bash
791
- node $(npm root -g)/@offgridsec/kira-lite-mcp/hook.mjs
795
+ node $(node -e "console.log(require.resolve('@offgridsec/kira-lite-mcp/hook.mjs'))")
792
796
  ```
793
797
 
794
798
  If it exits with no output, it's working. If it throws an error, check the path.
@@ -807,10 +811,7 @@ For Claude Code projects, also remove kira-lite entries from `.claude/settings.l
807
811
  # Claude Code
808
812
  claude mcp remove --scope user kira-lite
809
813
 
810
- # npm
811
- npm uninstall -g @offgridsec/kira-lite-mcp
812
-
813
- # Remove config
814
+ # Remove local config
814
815
  rm -rf ~/.kira-lite
815
816
  ```
816
817
 
package/dist/config.js CHANGED
@@ -1 +1 @@
1
- function _0x31fb94(_0x2122fe,_0x15b3a0){const _0x46ddd6={_0x261ffc:0x15b};return _0x1dfe(_0x15b3a0-_0x46ddd6._0x261ffc,_0x2122fe);}(function(_0x13f73f,_0x356878){const _0x224fb0={_0x55ea28:0x4d6,_0x1d0319:0x4ce,_0x2f111e:0x4bb,_0x16a99b:0x4b6,_0x17478a:0x36,_0x1ad6fa:0x4d7,_0xe747d8:0x4e2,_0x4d9c1a:0x3f,_0x505e07:0x33,_0x4d6ca5:0x1e},_0x2a0ce8={_0x432d82:0x38d};function _0x45a5ea(_0x29f6ad,_0x255542){return _0x1dfe(_0x29f6ad-_0x2a0ce8._0x432d82,_0x255542);}function _0x55334c(_0x2a25cf,_0x2f1552){return _0x1dfe(_0x2f1552- -0x115,_0x2a25cf);}const _0x5cce62=_0x13f73f();while(!![]){try{const _0x40b660=-parseInt(_0x45a5ea(0x4dc,_0x224fb0._0x55ea28))/(0x1ffa*-0x1+-0x2*-0x12b+-0x1da5*-0x1)*(parseInt(_0x45a5ea(0x4c8,0x4d3))/(0xa1*0x4+0x779*0x1+-0x9fb))+parseInt(_0x45a5ea(_0x224fb0._0x1d0319,0x4ca))/(-0x24cd*0x1+-0x24c0+-0x932*-0x8)*(parseInt(_0x45a5ea(0x4ba,0x4bb))/(-0x1d89+0x2466+-0x6d9))+-parseInt(_0x45a5ea(_0x224fb0._0x2f111e,_0x224fb0._0x16a99b))/(0x1*0xce9+-0x1a67+0xd83)+parseInt(_0x55334c(0x30,_0x224fb0._0x17478a))/(-0x10a5*-0x1+0x26c5+-0x3764)*(parseInt(_0x45a5ea(_0x224fb0._0x1ad6fa,_0x224fb0._0xe747d8))/(-0x26bc+0x44+0x267f))+-parseInt(_0x55334c(0x31,0x25))/(0x283+-0x6b1*0x1+0x436)*(-parseInt(_0x55334c(0x36,_0x224fb0._0x4d9c1a))/(-0x1b90+-0x246d*-0x1+-0x8d4*0x1))+parseInt(_0x55334c(0x40,_0x224fb0._0x505e07))/(0x1*-0x1e8f+-0x241*-0x5+0x1354)+-parseInt(_0x45a5ea(0x4cf,0x4b6))/(-0x1*0x1eac+-0x2380+-0x43*-0xfd)*(parseInt(_0x55334c(0x2e,_0x224fb0._0x4d6ca5))/(0x115*-0xd+0xc0*-0x3+0x47*0x3b));if(_0x40b660===_0x356878)break;else _0x5cce62['push'](_0x5cce62['shift']());}catch(_0x197730){_0x5cce62['push'](_0x5cce62['shift']());}}}(_0x2dd6,0x4f5*-0x11b+0x83f13+0x3*0x83f2));function _0x2c1161(_0x256735,_0x3f7f30){return _0x1dfe(_0x256735-0x9e,_0x3f7f30);}import{readFileSync,writeFileSync,mkdirSync}from'node:fs';function _0x1dfe(_0x46dcb3,_0x3060c1){_0x46dcb3=_0x46dcb3-(-0x2459+-0xd04+0x327e);const _0x1ced18=_0x2dd6();let _0x4929da=_0x1ced18[_0x46dcb3];if(_0x1dfe['FqLWQX']===undefined){var _0x4a153f=function(_0x4c2c4f){const _0x235657='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x561a9f='',_0x5e3ca9='';for(let _0x24ecec=0x11*0xff+0x14a4+-0x2593,_0x204a19,_0x2953e9,_0x7cbff9=-0x1*-0x12+-0x2618+0x2606;_0x2953e9=_0x4c2c4f['charAt'](_0x7cbff9++);~_0x2953e9&&(_0x204a19=_0x24ecec%(0x1*-0x150b+0x481+0x108e)?_0x204a19*(0x17c3+0x1*0xcdb+0x31*-0xbe)+_0x2953e9:_0x2953e9,_0x24ecec++%(0x4*0x43f+-0x1b59+-0x1*-0xa61))?_0x561a9f+=String['fromCharCode'](0x3*-0xf4+-0x6d3*0x2+0x1181&_0x204a19>>(-(0xedc+-0x260d+0x1733)*_0x24ecec&0x89+0x10*-0xf8+0x3*0x4ff)):-0x98a*-0x2+0x2461+-0x1*0x3775){_0x2953e9=_0x235657['indexOf'](_0x2953e9);}for(let _0x7e8617=0x3*-0x174+-0x2e8+0x744,_0x5cfe39=_0x561a9f['length'];_0x7e8617<_0x5cfe39;_0x7e8617++){_0x5e3ca9+='%'+('00'+_0x561a9f['charCodeAt'](_0x7e8617)['toString'](0x2173+0xb2b+0x1647*-0x2))['slice'](-(0x26d2+-0x7cf*-0x1+0x5*-0x953));}return decodeURIComponent(_0x5e3ca9);};_0x1dfe['VNVBvG']=_0x4a153f,_0x1dfe['hneKGv']={},_0x1dfe['FqLWQX']=!![];}const _0x5c7577=_0x1ced18[-0x1dcb+0x139*-0xb+0x2b3e],_0xb6bd28=_0x46dcb3+_0x5c7577,_0x2b64cc=_0x1dfe['hneKGv'][_0xb6bd28];return!_0x2b64cc?(_0x4929da=_0x1dfe['VNVBvG'](_0x4929da),_0x1dfe['hneKGv'][_0xb6bd28]=_0x4929da):_0x4929da=_0x2b64cc,_0x4929da;}import{join}from'node:path';import{homedir}from'node:os';const _0x162038={};_0x162038[_0x2c1161(0x1e2,0x1d3)+_0x31fb94(0x28c,0x27e)]=_0x2c1161(0x1e3,0x1e4)+'-edit';const DEFAULT_CONFIG=_0x162038,VALID_SCAN_MODES=[_0x2c1161(0x1e3,0x1ec)+_0x2c1161(0x1c9,0x1cb),'on-sa'+'ve','manua'+'l'];function getConfigDir(){const _0x32dacd={_0x1bdf05:0x38c,_0x212e73:0x367,_0x137857:0x378},_0x22fae1={_0x5f5d85:0x14b},_0xf5bf29={'BRenu':function(_0x2ed457,_0x5d6faf,_0x4b4df1){return _0x2ed457(_0x5d6faf,_0x4b4df1);},'Gtizn':function(_0x19b39d){return _0x19b39d();},'zgrIo':_0x313c33(0x390,_0x32dacd._0x1bdf05)+'-lite'};function _0x313c33(_0x465598,_0x5b78e3){return _0x31fb94(_0x465598,_0x5b78e3-0xf8);}function _0x489dd2(_0x5d4aa8,_0x4c3d51){return _0x31fb94(_0x5d4aa8,_0x4c3d51- -_0x22fae1._0x5f5d85);}return _0xf5bf29[_0x313c33(0x38f,0x374)](join,_0xf5bf29[_0x489dd2(0x128,0x136)](homedir),_0xf5bf29[_0x313c33(_0x32dacd._0x212e73,_0x32dacd._0x137857)]);}function getConfigPath(){const _0x42b445={_0x3d3650:0x15f,_0x36776e:0x378,_0x483b91:0x383,_0x316455:0x369,_0x360da5:0x36f,_0x21a2c3:0x375},_0x20c170={_0x217dae:0xdd};function _0x58d22c(_0x5c4b17,_0x24a924){return _0x31fb94(_0x24a924,_0x5c4b17-_0x20c170._0x217dae);}const _0x378662={'INCtr':function(_0x492744,_0x269128,_0x4a97db){return _0x492744(_0x269128,_0x4a97db);},'lUZPB':function(_0x3650a2){return _0x3650a2();},'vsggX':_0x819d49(-_0x42b445._0x3d3650,-0x14e)+_0x58d22c(_0x42b445._0x36776e,_0x42b445._0x483b91)+'n'};function _0x819d49(_0x54e6bd,_0x315824){return _0x2c1161(_0x54e6bd- -0x33a,_0x315824);}return _0x378662[_0x58d22c(0x37e,_0x42b445._0x316455)](join,_0x378662[_0x819d49(-0x16b,-0x155)](getConfigDir),_0x378662[_0x58d22c(_0x42b445._0x360da5,_0x42b445._0x21a2c3)]);}export function loadConfig(){const _0x2f5718={_0x4f564e:0x26d,_0x169f5f:0x156,_0x39c214:0x29e,_0x9f5a7b:0x29f,_0x4c3050:0x149,_0x2f7b5c:0x16d,_0x27ff9a:0x126,_0x56283f:0x28a,_0x3dff96:0x16e,_0x37c991:0x279,_0x5cae3f:0x28a,_0x4ff425:0x12e},_0xb63398={_0x3c457b:0x325},_0x47202f={_0x551814:0x15};function _0x32e910(_0x2f87bc,_0x75d440){return _0x31fb94(_0x2f87bc,_0x75d440- -_0x47202f._0x551814);}function _0x43997b(_0x1655fb,_0xa96cab){return _0x2c1161(_0xa96cab- -_0xb63398._0x3c457b,_0x1655fb);}const _0x2b1461={'jRCet':function(_0x16e9e1,_0x1fb8ab,_0x590591){return _0x16e9e1(_0x1fb8ab,_0x590591);},'CuawS':_0x32e910(_0x2f5718._0x4f564e,0x27f)+'-lite','PfePz':function(_0x1991ad,_0x50026c,_0xef3253){return _0x1991ad(_0x50026c,_0xef3253);},'tdQHD':function(_0x546b2e){return _0x546b2e();},'crdns':_0x43997b(-0x169,-0x158),'cryQV':function(_0x51f07d,_0x75701c){return _0x51f07d===_0x75701c;},'MtOjt':_0x43997b(-_0x2f5718._0x169f5f,-0x14b)+'g'};try{const _0x2bf07d=_0x2b1461[_0x32e910(0x283,0x278)](readFileSync,_0x2b1461[_0x32e910(0x2a3,0x289)](getConfigPath),_0x2b1461['crdns']),_0x47833b=JSON['parse'](_0x2bf07d);if(_0x47833b&&_0x2b1461[_0x32e910(0x2b3,_0x2f5718._0x39c214)](typeof _0x47833b[_0x32e910(_0x2f5718._0x9f5a7b,0x28a)+_0x32e910(0x265,0x269)],_0x2b1461[_0x43997b(-0x163,-_0x2f5718._0x4c3050)])&&VALID_SCAN_MODES[_0x43997b(-_0x2f5718._0x2f7b5c,-0x151)+_0x43997b(-_0x2f5718._0x27ff9a,-0x131)](_0x47833b[_0x32e910(0x28d,_0x2f5718._0x56283f)+_0x43997b(-_0x2f5718._0x3dff96,-0x164)])){if(_0x32e910(0x2b7,0x29d)!==_0x43997b(-0x146,-0x15d)){const _0x2766ba={};return _0x2766ba['scanM'+'ode']=_0x47833b[_0x32e910(_0x2f5718._0x37c991,_0x2f5718._0x5cae3f)+'ode'],_0x2766ba;}else return _0x2b1461[_0x43997b(-0x14e,-0x15f)](_0x1320d3,_0x408289(),_0x2b1461[_0x43997b(-_0x2f5718._0x4ff425,-0x13e)]);}const _0x203c4e={...DEFAULT_CONFIG};return _0x203c4e;}catch{const _0x1be211={...DEFAULT_CONFIG};return _0x1be211;}}export function saveConfig(_0x2940d9){const _0x4c3db1={_0x3c0809:0x77,_0x4b1f14:0x68,_0x541214:0x5e,_0x11a32d:0x2f,_0x174eaa:0x7d,_0x391cbf:0x66,_0x41b4bd:0x2a,_0x54cc10:0x3},_0x3e8847={_0x4cd3c4:0x1c2},_0xf4f398={'aCPrm':function(_0x553626){return _0x553626();},'uArDQ':function(_0x4a10c2,_0x40d9dc,_0x387b1c){return _0x4a10c2(_0x40d9dc,_0x387b1c);}},_0x27bc2a=_0xf4f398[_0x5ea8d0(0x72,_0x4c3db1._0x3c0809)](getConfigDir);function _0x4e46b7(_0x38c964,_0x5be089){return _0x2c1161(_0x38c964- -_0x3e8847._0x4cd3c4,_0x5be089);}function _0x5ea8d0(_0x445a3,_0x572f66){return _0x2c1161(_0x572f66- -0x174,_0x445a3);}const _0xee5db3={};_0xee5db3[_0x5ea8d0(_0x4c3db1._0x4b1f14,0x71)+_0x5ea8d0(0x75,_0x4c3db1._0x541214)]=!![],_0xf4f398[_0x4e46b7(_0x4c3db1._0x11a32d,0x1f)](mkdirSync,_0x27bc2a,_0xee5db3),writeFileSync(getConfigPath(),JSON[_0x5ea8d0(_0x4c3db1._0x174eaa,_0x4c3db1._0x391cbf)+_0x4e46b7(_0x4c3db1._0x41b4bd,0x2f)](_0x2940d9,null,0x19*0x98+-0x68f+-0xd*0xa3),_0x4e46b7(0xb,-_0x4c3db1._0x54cc10));}function getProfilePath(){const _0x453c93={_0x59bc92:0x3ca,_0x46bca3:0x3e4};function _0x4a32b9(_0x2170e5,_0x1e7fb1){return _0x31fb94(_0x1e7fb1,_0x2170e5-0x13a);}function _0x2430ed(_0x33abc5,_0x15ddb4){return _0x31fb94(_0x15ddb4,_0x33abc5- -0x402);}const _0x1eabbb={'wIeSz':function(_0x4ab620,_0x2f0b76,_0xf60e20){return _0x4ab620(_0x2f0b76,_0xf60e20);},'mmPBJ':function(_0x42f00c){return _0x42f00c();}};return _0x1eabbb[_0x2430ed(-0x185,-0x192)](join,_0x1eabbb[_0x2430ed(-0x177,-0x17d)](getConfigDir),'profi'+_0x4a32b9(_0x453c93._0x59bc92,_0x453c93._0x46bca3)+'on');}export function loadProfile(){const _0x48b350={_0x103fa8:0x2a2,_0x2a40f8:0x28b,_0x505379:0x51a,_0x25b556:0x50c,_0x22c44c:0x291,_0x182add:0x506,_0x3dc796:0x4f4,_0x107177:0x2a7,_0xca04de:0x29c,_0x125300:0x2a3,_0x1309b8:0x4fa,_0x430f80:0x27d,_0x55185a:0x4e7,_0x37b18b:0x4e3,_0x3c4a26:0x4d3,_0x239480:0x4e8,_0x5b368f:0x508,_0x45a01b:0x2a3,_0x5b3ce9:0x289,_0x1200bd:0x27e};function _0x43a05a(_0x3d9a58,_0x264e6a){return _0x31fb94(_0x264e6a,_0x3d9a58- -0x9);}function _0x1dc968(_0x1e4045,_0x435a29){return _0x2c1161(_0x435a29-0x31e,_0x1e4045);}const _0x33f79a={'wdBTm':function(_0x174001,_0xb5167e){return _0x174001!==_0xb5167e;},'vHiOp':function(_0xc3a2f3,_0x3389cf,_0x2f9a93){return _0xc3a2f3(_0x3389cf,_0x2f9a93);},'gNDnd':function(_0x17abe7){return _0x17abe7();},'qfyLS':function(_0x105778,_0x47e7e9){return _0x105778===_0x47e7e9;},'SlovT':'strin'+'g','Ujlsk':function(_0x32720c,_0xca20a2){return _0x32720c===_0xca20a2;}};try{if(_0x33f79a['wdBTm'](_0x43a05a(_0x48b350._0x103fa8,_0x48b350._0x2a40f8),_0x1dc968(_0x48b350._0x505379,_0x48b350._0x25b556))){const _0xe7585e={..._0x4db99e};return _0xe7585e;}else{const _0x59a9e8=_0x33f79a[_0x43a05a(_0x48b350._0x22c44c,0x2a3)](readFileSync,_0x33f79a[_0x1dc968(_0x48b350._0x182add,_0x48b350._0x3dc796)](getProfilePath),'utf-8'),_0x4bed1b=JSON[_0x43a05a(0x2a4,0x2b1)](_0x59a9e8),_0x26407a={};return _0x4bed1b&&_0x33f79a[_0x43a05a(_0x48b350._0x107177,_0x48b350._0xca04de)](typeof _0x4bed1b[_0x1dc968(0x4f6,0x4e0)],_0x33f79a[_0x43a05a(_0x48b350._0x125300,0x2af)])&&(_0x26407a[_0x1dc968(_0x48b350._0x1309b8,0x4e0)]=_0x4bed1b[_0x43a05a(0x276,_0x48b350._0x430f80)]),_0x4bed1b&&_0x33f79a[_0x1dc968(_0x48b350._0x55185a,_0x48b350._0x37b18b)](typeof _0x4bed1b[_0x1dc968(_0x48b350._0x3c4a26,_0x48b350._0x239480)+_0x1dc968(0x518,_0x48b350._0x5b368f)+'il'],_0x33f79a[_0x43a05a(_0x48b350._0x45a01b,_0x48b350._0x5b3ce9)])&&(_0x26407a['skipp'+_0x1dc968(0x522,_0x48b350._0x5b368f)+'il']=_0x4bed1b[_0x43a05a(_0x48b350._0x1200bd,0x28d)+_0x43a05a(0x29e,0x28f)+'il']),_0x26407a;}}catch{return{};}}function _0x2dd6(){const _0x4a6a78=['C2L2zq','BguUANm','Aw5JBhu','DNnNz1G','z05eBMq','lMTPCMe','mta0mJi1nLrVDxzMtG','nJa2mZHIqxbXweG','C3rYAw4','y29UzMK','txrpANq','DKHPt3a','zY5QC28','ntuWnxL1v0zuvW','otaZmwfoqLrhzG','Dgrrseq','C2nHBK0','zxzLCNK','su5dDhi','CMvJDxi','nduWnJaXmgLRB3vTza','q3vHD1m','otfSu1r4tLC','mtG4mtq4tvvRswzy','zwrvBNq','yunqCM0','z2LMEq','mtfVvwHICKS','qM9osM8','u2XVDLq','CgfYC2u','DufYrfe','mtHcywTyrhe','Cwz5tfm','zgvZ','vuPStxK','y3j5uvy','qLjLBNu','D0LLu3O','B2rL','zw1HAwW','EMDYsw8','r3rPEM4','vwPSC2S','ALjdzxq','A1P5rgy','veDnwNu','lwvKAxq','C2TPCha','mZy0rg1PtgHK','mJm1odK2mgHtEMrxsG','DxrMltG','Bw1qqKO','BfvAuei','ugzLuhO','mJG5mMvcEe9HwG'];_0x2dd6=function(){return _0x4a6a78;};return _0x2dd6();}export function saveProfile(_0x3a4ff1){const _0x1f27c5={_0x45aab0:0xfc,_0x5d3e0c:0x256,_0x542836:0x256,_0x479890:0x274,_0x446564:0x264,_0x3b7f25:0x24d,_0xee592a:0x24f},_0x199a2e={_0x3aa652:0x4f8},_0x46243e={'kZyDf':function(_0xf0368d){return _0xf0368d();},'JHWlb':function(_0x40576f,_0xfb2080,_0xfb280c){return _0x40576f(_0xfb2080,_0xfb280c);}};function _0xae56af(_0x198f76,_0x396685){return _0x31fb94(_0x198f76,_0x396685- -_0x199a2e._0x3aa652);}const _0x3e8d40=_0x46243e[_0xdc2d14(-0xf5,-_0x1f27c5._0x45aab0)](getConfigDir);function _0xdc2d14(_0x42f5a2,_0x3d644f){return _0x2c1161(_0x42f5a2- -0x2bc,_0x3d644f);}const _0x2b1c5a={};_0x2b1c5a[_0xae56af(-0x26b,-_0x1f27c5._0x5d3e0c)+_0xae56af(-_0x1f27c5._0x542836,-0x269)]=!![],_0x46243e['JHWlb'](mkdirSync,_0x3e8d40,_0x2b1c5a),writeFileSync(_0x46243e[_0xae56af(-0x273,-_0x1f27c5._0x479890)](getProfilePath),JSON[_0xae56af(-_0x1f27c5._0x446564,-0x261)+_0xae56af(-_0x1f27c5._0x3b7f25,-_0x1f27c5._0xee592a)](_0x3a4ff1,null,0xd7+0x120e*-0x1+0x1139),'utf-8');}
1
+ function _0x24461e(_0x488e81,_0x3cc1ef){const _0x506da2={_0x8e86e5:0x16};return _0x5bbc(_0x3cc1ef- -_0x506da2._0x8e86e5,_0x488e81);}(function(_0x5586b1,_0x1e87b5){const _0x51e0e9={_0x22db4a:0x9d,_0x32e0f1:0x8c,_0x46784a:0x9b,_0x579bb2:0xab,_0x385d70:0xae,_0xea281e:0xa5,_0x5d27f3:0xae,_0x563431:0x388,_0x262fcb:0x37e,_0x16a64b:0x375,_0x25e488:0x378,_0xa5c9bd:0x8a,_0x469825:0x99},_0x482eef={_0x5b28f3:0x20e},_0x2cb213={_0x3c98e2:0x200},_0x35f87f=_0x5586b1();function _0x2efe16(_0x402df1,_0x4c0a8c){return _0x5bbc(_0x4c0a8c-_0x2cb213._0x3c98e2,_0x402df1);}function _0x383cab(_0x550409,_0x321ed8){return _0x5bbc(_0x550409- -_0x482eef._0x5b28f3,_0x321ed8);}while(!![]){try{const _0x5d7866=-parseInt(_0x383cab(-0x8e,-_0x51e0e9._0x22db4a))/(0x2383+-0x19*0xc1+-0x10a9)+parseInt(_0x383cab(-_0x51e0e9._0x22db4a,-0xab))/(0x19*-0x148+-0x3*0x609+0x3225)+-parseInt(_0x383cab(-_0x51e0e9._0x32e0f1,-_0x51e0e9._0x46784a))/(0xd56+-0x17*-0x16c+-0x2e07)*(-parseInt(_0x383cab(-_0x51e0e9._0x579bb2,-0xac))/(0x3*-0xa1+0x258d+-0x4e*0x75))+-parseInt(_0x383cab(-0x9c,-_0x51e0e9._0x385d70))/(0x556+-0xac3+0x572*0x1)*(-parseInt(_0x383cab(-_0x51e0e9._0xea281e,-0x8b))/(0x2*0x81e+0x76c+-0x17a2))+-parseInt(_0x383cab(-_0x51e0e9._0x5d27f3,-_0x51e0e9._0x5d27f3))/(0x45c+0x41c+-0x871*0x1)+-parseInt(_0x2efe16(_0x51e0e9._0x563431,_0x51e0e9._0x262fcb))/(-0x1f2+-0x1840+0x8be*0x3)+-parseInt(_0x2efe16(_0x51e0e9._0x16a64b,_0x51e0e9._0x25e488))/(-0x1f*-0x119+0x305*-0x1+-0x1ef9)*(-parseInt(_0x383cab(-_0x51e0e9._0xa5c9bd,-_0x51e0e9._0x469825))/(-0x1cad+0x1f91+0xa*-0x49));if(_0x5d7866===_0x1e87b5)break;else _0x35f87f['push'](_0x35f87f['shift']());}catch(_0x18fe4c){_0x35f87f['push'](_0x35f87f['shift']());}}}(_0x5aed,-0xbdf71+-0x252*0x4b1+0x222c84));import{readFileSync,writeFileSync,mkdirSync}from'node:fs';import{join}from'node:path';import{homedir}from'node:os';const _0x2d84e5={};_0x2d84e5[_0x3baa08(0x15e,0x176)+_0x3baa08(0x147,0x15c)]=_0x3baa08(0x12f,0x115)+'-edit';const DEFAULT_CONFIG=_0x2d84e5,VALID_SCAN_MODES=[_0x24461e(0x136,0x13e)+_0x24461e(0x14b,0x142),_0x24461e(0x14c,0x150)+'ve',_0x24461e(0x134,0x14e)+'l'];function _0x5aed(){const _0x1305d0=['DuHOB3y','y29UzMK','lwvKAxq','qM1pzfa','v05JEwS','C1zwDxO','wffmAKe','zwrvBNq','tgHYuum','B1PyBeS','ntmXodqZmNPYvxHbvq','ChjVzMK','sLrAveC','ngzetMnZEq','BwfUDwe','CgfYC2u','B24TC2e','zw1HAwW','C3rYAw4','mZa2AeHeqxbo','tejZDgi','sLbHDMu','B2rL','C2TPCha','zY5QC28','C2L2zq','Aw5JBhu','mJeXmJyWnerwzKD6uW','mte3odi1renICeP0','DxrMltG','z2LMEq','wfbZAgi','zgvZ','tfHoAKi','odq4ode3BhvfqKDA','AuPgyMq','txjvvxm','vhDxzva','wxvjzum','C3rYDKq','mtaXnZmXnZzowLDgBhO','BwXtENu','odK1mdKYyKz4uxDU','EuLXy00','mJu1mtK0n0jkwK9Izq','C2nHBK0','nJbXBgzlsuO','lwXPDgu','z2viCge','B0HMCuC','CMvJDxi','zxzLCNK','q0TStNe'];_0x5aed=function(){return _0x1305d0;};return _0x5aed();}function getConfigDir(){const _0x2e503e={_0x3609a6:0xf,_0x44651c:0x29b,_0x59796e:0x2aa};function _0x242728(_0x4e5f43,_0x3c9415){return _0x24461e(_0x4e5f43,_0x3c9415- -0x135);}const _0x59e8a7={'uHhov':function(_0x431948,_0x5237d1,_0x1a6dc8){return _0x431948(_0x5237d1,_0x1a6dc8);},'yIqcM':'.kira'+_0x242728(0x2f,0x3a)};function _0x56e52b(_0x36dd82,_0x11a89e){return _0x3baa08(_0x36dd82-0x13f,_0x11a89e);}return _0x59e8a7[_0x242728(_0x2e503e._0x3609a6,0xb)](join,homedir(),_0x59e8a7[_0x56e52b(_0x2e503e._0x44651c,_0x2e503e._0x59796e)]);}function _0x3baa08(_0x2b2a41,_0x5302da){const _0x5399ee={_0x46f3dd:0x25};return _0x5bbc(_0x2b2a41- -_0x5399ee._0x46f3dd,_0x5302da);}function getConfigPath(){const _0x4198f6={_0x54206a:0x277,_0x585236:0x262},_0x9a5e0e={_0x799c64:0x11f};function _0x41683f(_0x7940e1,_0x29924a){return _0x3baa08(_0x29924a-0x102,_0x7940e1);}const _0x208fd6={'Veqsc':function(_0x327dfd,_0x438e84,_0x16b6c9){return _0x327dfd(_0x438e84,_0x16b6c9);},'BmOdP':function(_0x549563){return _0x549563();},'iJFbd':_0x3532a9(0x260,0x247)+_0x3532a9(_0x4198f6._0x54206a,0x278)+'n'};function _0x3532a9(_0x560789,_0x32378f){return _0x24461e(_0x32378f,_0x560789-_0x9a5e0e._0x799c64);}return _0x208fd6['Veqsc'](join,_0x208fd6[_0x3532a9(_0x4198f6._0x585236,0x252)](getConfigDir),_0x208fd6[_0x3532a9(0x282,0x27f)]);}export function loadConfig(){const _0x2ee8af={_0x53e33e:0x22c,_0x5501ae:0x18d,_0x25dedc:0x1a0,_0x16d850:0x17f,_0x57bb59:0x24d,_0x15e4fe:0x21c,_0x750691:0x218,_0x3d6d5d:0x16b,_0x48a780:0x16c,_0x530ab0:0x186,_0x97c002:0x18e,_0x47c5a2:0x239,_0x49bf8d:0x224,_0xbe67ef:0x233,_0x2d7eba:0x212,_0x39cde0:0x182,_0x22562f:0x193,_0x3cae4d:0x264,_0x5e07bc:0x185,_0x1af32d:0x174,_0x56fc58:0x245,_0x84b1b0:0x18a,_0x299931:0x173},_0x355ef2={_0x3af8ba:0x37a};function _0x5cceed(_0x44a924,_0x3ecd5a){return _0x3baa08(_0x44a924- -_0x355ef2._0x3af8ba,_0x3ecd5a);}function _0x3be7c1(_0x2e4b3a,_0x35cb92){return _0x3baa08(_0x2e4b3a-0x3b,_0x35cb92);}const _0x2c858={'xgcgv':function(_0x1beb49){return _0x1beb49();},'LhrQC':function(_0x1f1d80,_0x524f9d,_0x5e78b5){return _0x1f1d80(_0x524f9d,_0x5e78b5);},'MAUmw':function(_0x1d0dcf,_0x67b957,_0x491e8a,_0x3651d5){return _0x1d0dcf(_0x67b957,_0x491e8a,_0x3651d5);},'geHpa':_0x5cceed(-_0x2ee8af._0x53e33e,-0x23c),'LXNjB':function(_0x28cd4f){return _0x28cd4f();},'CKlNq':'strin'+'g','BUhNC':function(_0x18b508,_0x2a8555){return _0x18b508!==_0x2a8555;}};try{const _0xe8fbef=readFileSync(_0x2c858[_0x3be7c1(_0x2ee8af._0x5501ae,_0x2ee8af._0x25dedc)](getConfigPath),_0x2c858[_0x3be7c1(0x167,_0x2ee8af._0x16d850)]),_0x19f028=JSON[_0x5cceed(-0x23a,-_0x2ee8af._0x57bb59)](_0xe8fbef);if(_0x19f028&&typeof _0x19f028[_0x5cceed(-_0x2ee8af._0x15e4fe,-_0x2ee8af._0x750691)+_0x5cceed(-0x233,-0x238)]===_0x2c858[_0x3be7c1(_0x2ee8af._0x3d6d5d,_0x2ee8af._0x48a780)]&&VALID_SCAN_MODES[_0x3be7c1(_0x2ee8af._0x530ab0,_0x2ee8af._0x97c002)+_0x5cceed(-0x229,-_0x2ee8af._0x47c5a2)](_0x19f028[_0x5cceed(-0x21c,-_0x2ee8af._0x49bf8d)+_0x5cceed(-_0x2ee8af._0xbe67ef,-0x23d)])){const _0x3b469c={};return _0x3b469c[_0x5cceed(-0x21c,-_0x2ee8af._0x2d7eba)+'ode']=_0x19f028[_0x3be7c1(0x199,0x18e)+_0x3be7c1(_0x2ee8af._0x39cde0,0x16c)],_0x3b469c;}const _0x27bd40={...DEFAULT_CONFIG};return _0x27bd40;}catch{if(_0x2c858['BUhNC']('strvD',_0x3be7c1(_0x2ee8af._0x22562f,0x17e))){const _0x4f520f=_0x2c858['xgcgv'](_0x22726a),_0x508755={};_0x508755[_0x5cceed(-0x24c,-_0x2ee8af._0x3cae4d)+_0x3be7c1(_0x2ee8af._0x5e07bc,0x176)]=!![],_0x2c858[_0x3be7c1(_0x2ee8af._0x1af32d,0x15f)](_0xd203ff,_0x4f520f,_0x508755),_0x2c858['MAUmw'](_0x303132,_0x560ceb(),_0x223196[_0x5cceed(-0x237,-_0x2ee8af._0x56fc58)+_0x3be7c1(_0x2ee8af._0x84b1b0,_0x2ee8af._0x299931)](_0x32efea,null,0x1299+-0x4*-0x466+-0x242f),_0x2c858['geHpa']);}else{const _0xd8c199={...DEFAULT_CONFIG};return _0xd8c199;}}}export function saveConfig(_0x3f0442){const _0x1be6b3={_0x51d90d:0x256,_0x22212d:0x126,_0x193353:0x125},_0x181598={_0x44a0aa:0x3a0};function _0x49b002(_0x10f343,_0x4343e9){return _0x24461e(_0x4343e9,_0x10f343- -0x38);}const _0x29518e={'oZXlK':function(_0x11a1ad,_0x43ede5,_0x4e8f25,_0x47a16e){return _0x11a1ad(_0x43ede5,_0x4e8f25,_0x47a16e);},'MiHZM':function(_0x3c25c8){return _0x3c25c8();}},_0x52206e=getConfigDir(),_0x3497fe={};_0x3497fe[_0x3f8873(-0x26e,-0x272)+_0x3f8873(-0x242,-_0x1be6b3._0x51d90d)]=!![];function _0x3f8873(_0x79ef8a,_0x54cfb4){return _0x3baa08(_0x54cfb4- -_0x181598._0x44a0aa,_0x79ef8a);}mkdirSync(_0x52206e,_0x3497fe),_0x29518e[_0x49b002(0x111,0x114)](writeFileSync,_0x29518e['MiHZM'](getConfigPath),JSON[_0x3f8873(-0x273,-0x25d)+_0x49b002(_0x1be6b3._0x22212d,0x129)](_0x3f0442,null,0x113b+0x1508+-0x577*0x7),_0x49b002(_0x1be6b3._0x193353,0x129));}function getProfilePath(){const _0x64601e={_0x21fb7a:0x1e1,_0x241aa8:0x1ed,_0x33c201:0x3d8},_0x104e08={_0x4721d7:0x26f},_0x203832={_0x43eac4:0xc0};function _0x2827cd(_0x140a60,_0xcd30ed){return _0x3baa08(_0xcd30ed-_0x203832._0x43eac4,_0x140a60);}const _0x5b7e49={'gwPdn':function(_0x47ded8,_0x4e4d8f,_0x2cb041){return _0x47ded8(_0x4e4d8f,_0x2cb041);},'oHfqG':function(_0x52cf90){return _0x52cf90();},'mlSzu':_0x4a0e5e(0x3ba,0x3b3)+'le.js'+'on'};function _0x4a0e5e(_0xa9c60d,_0x262c40){return _0x24461e(_0x262c40,_0xa9c60d-_0x104e08._0x4721d7);}return _0x5b7e49['gwPdn'](join,_0x5b7e49[_0x2827cd(_0x64601e._0x21fb7a,_0x64601e._0x241aa8)](getConfigDir),_0x5b7e49[_0x4a0e5e(_0x64601e._0x33c201,0x3c1)]);}export function loadProfile(){const _0x288e35={_0x43ef5d:0x239,_0x4bf8be:0x22f,_0x21719b:0x21b,_0x32e52e:0x228,_0xe4edf3:0x255,_0x51de67:0x25f,_0x6bb4c7:0x214,_0x3be7bb:0x222,_0x25800c:0x23b,_0x2c5766:0x233,_0x37a8fb:0x269,_0x19916f:0x25e,_0x1e1890:0x23f,_0x8f4b7a:0x223,_0x3b55eb:0x233,_0x109c45:0x20e,_0x58bb94:0x230,_0x50da45:0x231,_0x3729b0:0x243,_0x34c7b5:0x228,_0x34bad5:0x267,_0x1d43be:0x23e,_0x46fc11:0x24b,_0x20a159:0x246,_0xb95217:0x26a,_0x515c77:0x284,_0x14e22a:0x256,_0x1bf092:0x23c,_0x346d24:0x249,_0x57e44f:0x25a,_0x1112d3:0x24a,_0x1e073a:0x252},_0x478eaa={_0x44eb3f:0xeb},_0xb61a7a={_0x53f328:0x3b0};function _0x3d6b6e(_0x409253,_0x43d9b3){return _0x24461e(_0x43d9b3,_0x409253- -_0xb61a7a._0x53f328);}const _0x4ccd8b={'eQVNI':function(_0xc10cee,_0x18c437,_0x442ba){return _0xc10cee(_0x18c437,_0x442ba);},'YuIeC':function(_0x4068a6){return _0x4068a6();},'aLtTd':_0xb542c4(0x232,_0x288e35._0x43ef5d),'JPave':function(_0x4cd69f,_0x13a9eb){return _0x4cd69f===_0x13a9eb;},'XQLjA':_0x3d6b6e(-0x25e,-0x263)+'g','zUAlo':function(_0x3cd10a,_0xd4f4e0,_0xaaaf41){return _0x3cd10a(_0xd4f4e0,_0xaaaf41);},'MrUUs':function(_0x1df986){return _0x1df986();},'hWIJw':function(_0x4aa599,_0x3eae1b){return _0x4aa599!==_0x3eae1b;},'XPshb':_0xb542c4(_0x288e35._0x4bf8be,0x220),'LBstb':_0xb542c4(_0x288e35._0x21719b,_0x288e35._0x32e52e)};function _0xb542c4(_0x3c48bf,_0x39b36c){return _0x3baa08(_0x39b36c-_0x478eaa._0x44eb3f,_0x3c48bf);}try{const _0x47b476=_0x4ccd8b['zUAlo'](readFileSync,_0x4ccd8b[_0xb542c4(_0x288e35._0xe4edf3,0x240)](getProfilePath),'utf-8'),_0x562789=JSON[_0xb542c4(0x23b,0x22b)](_0x47b476),_0x108e84={};return _0x562789&&typeof _0x562789[_0x3d6b6e(-_0x288e35._0x51de67,-0x247)]===_0x4ccd8b[_0xb542c4(_0x288e35._0x6bb4c7,_0x288e35._0x3be7bb)]&&(_0x4ccd8b['hWIJw'](_0x4ccd8b[_0xb542c4(0x252,_0x288e35._0x25800c)],_0xb542c4(0x238,0x241))?_0x108e84[_0x3d6b6e(-_0x288e35._0x51de67,-0x26d)]=_0x562789['email']:_0x3d0afc[_0xb542c4(0x23e,_0x288e35._0x2c5766)+_0x3d6b6e(-_0x288e35._0x37a8fb,-_0x288e35._0x51de67)+'il']=_0x4adf3a['skipp'+_0x3d6b6e(-0x269,-_0x288e35._0x19916f)+'il']),_0x562789&&typeof _0x562789[_0x3d6b6e(-0x259,-0x23f)+'edUnt'+'il']===_0x4ccd8b['XQLjA']&&(_0x108e84[_0x3d6b6e(-0x259,-_0x288e35._0x1e1890)+_0xb542c4(0x20b,_0x288e35._0x8f4b7a)+'il']=_0x562789[_0xb542c4(0x220,_0x288e35._0x3b55eb)+_0xb542c4(_0x288e35._0x109c45,0x223)+'il']),_0x108e84;}catch{if(_0x4ccd8b[_0xb542c4(_0x288e35._0x58bb94,_0x288e35._0x50da45)](_0xb542c4(_0x288e35._0x3729b0,_0x288e35._0x34c7b5),_0x4ccd8b[_0x3d6b6e(-0x25c,-_0x288e35._0x34bad5)]))return{};else{const _0x51d101=_0x4ccd8b['eQVNI'](_0x5e081e,_0x4ccd8b[_0xb542c4(_0x288e35._0x1d43be,0x242)](_0xa3d98a),_0x4ccd8b['aLtTd']),_0x2acee0=_0x3db6bb[_0xb542c4(0x22f,0x22b)](_0x51d101);if(_0x2acee0&&_0x4ccd8b[_0xb542c4(_0x288e35._0x46fc11,0x231)](typeof _0x2acee0['scanM'+_0xb542c4(_0x288e35._0x20a159,0x232)],_0x4ccd8b[_0x3d6b6e(-_0x288e35._0xb95217,-_0x288e35._0x515c77)])&&_0x539c96[_0x3d6b6e(-_0x288e35._0x14e22a,-0x25f)+_0xb542c4(0x23d,_0x288e35._0x1bf092)](_0x2acee0[_0xb542c4(0x250,_0x288e35._0x346d24)+_0x3d6b6e(-_0x288e35._0x57e44f,-_0x288e35._0x1112d3)])){const _0x1867f9={};return _0x1867f9[_0x3d6b6e(-_0x288e35._0x3729b0,-0x229)+_0x3d6b6e(-_0x288e35._0x57e44f,-_0x288e35._0x1e073a)]=_0x2acee0[_0xb542c4(0x24b,0x249)+'ode'],_0x1867f9;}const _0x245bba={..._0x46d370};return _0x245bba;}}}function _0x5bbc(_0x2df971,_0x5b9dea){_0x2df971=_0x2df971-(0x1718*0x1+-0x170c+0x145);const _0x38b1bc=_0x5aed();let _0x398219=_0x38b1bc[_0x2df971];if(_0x5bbc['KzSaKc']===undefined){var _0x1bc986=function(_0x303132){const _0x560ceb='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x223196='',_0x32efea='';for(let _0x2c429f=-0x18c7+-0xd68+0x262f,_0x2752f0,_0x112628,_0x3461fe=-0x19ea+-0x281*-0x5+-0x477*-0x3;_0x112628=_0x303132['charAt'](_0x3461fe++);~_0x112628&&(_0x2752f0=_0x2c429f%(0x1*0x1ebb+0x5b*0x25+-0x2bde)?_0x2752f0*(0x3f4*-0x1+-0x1dcf*0x1+0x2203)+_0x112628:_0x112628,_0x2c429f++%(0x3e4+-0x1ab4+-0x1e7*-0xc))?_0x223196+=String['fromCharCode'](0x944*0x4+0x61+0x2472*-0x1&_0x2752f0>>(-(0x5*-0x623+0xb7e+0x1333)*_0x2c429f&0xd2*-0x6+-0x1b27+0x2019)):-0x1189+-0x22f+0x13b8*0x1){_0x112628=_0x560ceb['indexOf'](_0x112628);}for(let _0x415c56=0x2537+0x3f1*0x3+-0x310a,_0x1b20f7=_0x223196['length'];_0x415c56<_0x1b20f7;_0x415c56++){_0x32efea+='%'+('00'+_0x223196['charCodeAt'](_0x415c56)['toString'](0xdc3*-0x1+0x114c+0x379*-0x1))['slice'](-(0x3*0x2a2+-0x1fae+-0x1*-0x17ca));}return decodeURIComponent(_0x32efea);};_0x5bbc['WrFgps']=_0x1bc986,_0x5bbc['FzmJzz']={},_0x5bbc['KzSaKc']=!![];}const _0x3c1b17=_0x38b1bc[0x2294+0x1406+0xf1*-0x3a],_0x22726a=_0x2df971+_0x3c1b17,_0xd203ff=_0x5bbc['FzmJzz'][_0x22726a];return!_0xd203ff?(_0x398219=_0x5bbc['WrFgps'](_0x398219),_0x5bbc['FzmJzz'][_0x22726a]=_0x398219):_0x398219=_0xd203ff,_0x398219;}export function saveProfile(_0x244e33){const _0x4578bc={_0x2b2897:0xd2,_0x51752f:0xba,_0x516f77:0xce,_0x39847b:0x151,_0x4c052d:0x14c,_0x4d3f53:0xcb},_0x57e67b={_0x34091f:0x1a},_0x4f8db5={'sVVuz':function(_0x2f8012){return _0x2f8012();},'iAObp':function(_0x135890,_0x3d253c,_0x26cdea){return _0x135890(_0x3d253c,_0x26cdea);},'IguKI':function(_0x52219e,_0x21f000,_0x52127a,_0xcaaebd){return _0x52219e(_0x21f000,_0x52127a,_0xcaaebd);},'EBgmA':function(_0x233547){return _0x233547();},'FYXWJ':_0x2e3958(_0x4578bc._0x2b2897,0xd4)},_0x93f4f=_0x4f8db5[_0x2e3958(_0x4578bc._0x51752f,_0x4578bc._0x516f77)](getConfigDir);function _0x2e3958(_0x98302f,_0x1c3f47){return _0x3baa08(_0x98302f- -0x7c,_0x1c3f47);}const _0x435fd2={};_0x435fd2[_0x2e3958(0xb2,0xc0)+_0xf0e29e(_0x4578bc._0x39847b,0x13f)]=!![],_0x4f8db5['iAObp'](mkdirSync,_0x93f4f,_0x435fd2);function _0xf0e29e(_0x36eaf,_0x5240d2){return _0x24461e(_0x36eaf,_0x5240d2- -_0x57e67b._0x34091f);}_0x4f8db5['IguKI'](writeFileSync,_0x4f8db5['EBgmA'](getProfilePath),JSON[_0xf0e29e(_0x4578bc._0x4c052d,0x138)+_0x2e3958(0xd3,_0x4578bc._0x4d3f53)](_0x244e33,null,0x21d1+0x1f38+-0x4107),_0x4f8db5['FYXWJ']);}
@@ -1 +1 @@
1
- (function(_0x1ca039,_0x4a97c7){const _0x1b5c70={_0x49c7e6:0x271,_0x379ef9:0x15f,_0x138795:0x121,_0x514bbd:0x155,_0x409c52:0x156,_0x3a2782:0x147,_0x40e309:0x13d,_0x16dd00:0x28b,_0x311b0b:0x266,_0x133b9f:0x247,_0x387d5a:0x240,_0x154257:0x248,_0x219d4e:0x245,_0x2c5eab:0x17d,_0x3ac098:0x107},_0x4b8776={_0x17236a:0x5b},_0x13a0eb={_0x5f09d1:0xc9};function _0x55cc71(_0x43a94a,_0x32af28){return _0x1607(_0x32af28-_0x13a0eb._0x5f09d1,_0x43a94a);}function _0x1fdca3(_0x423115,_0x36fa02){return _0x1607(_0x423115- -_0x4b8776._0x17236a,_0x36fa02);}const _0x3991d6=_0x1ca039();while(!![]){try{const _0x2741ab=parseInt(_0x55cc71(0x255,_0x1b5c70._0x49c7e6))/(-0x1*0x1fe1+-0x165*-0x1+0x1e7d)*(-parseInt(_0x55cc71(0x23e,0x23e))/(-0x1901+0x1*-0x12eb+0x2bee))+-parseInt(_0x1fdca3(0x154,_0x1b5c70._0x379ef9))/(0x23b5+-0x1*0x2c3+-0x20ef)*(parseInt(_0x1fdca3(0x11d,_0x1b5c70._0x138795))/(0x22*0xe5+0x1f*-0x119+0x3a1*0x1))+parseInt(_0x1fdca3(_0x1b5c70._0x514bbd,_0x1b5c70._0x409c52))/(0x4cd*-0x1+0x26a1+-0x21cf)+parseInt(_0x1fdca3(_0x1b5c70._0x3a2782,_0x1b5c70._0x40e309))/(0x13d4+-0x1*-0x25bf+-0x398d)*(parseInt(_0x55cc71(_0x1b5c70._0x16dd00,_0x1b5c70._0x311b0b))/(-0x25bc+0x2*-0x1a6+0x290f))+-parseInt(_0x55cc71(_0x1b5c70._0x133b9f,_0x1b5c70._0x387d5a))/(-0x9d5+0x2279+-0x189c)*(parseInt(_0x55cc71(_0x1b5c70._0x154257,_0x1b5c70._0x219d4e))/(0x289*-0x2+0x1e50*-0x1+0x236b*0x1))+-parseInt(_0x55cc71(0x232,0x229))/(0x29*-0x33+-0x51*0x71+0x2bf6*0x1)*(-parseInt(_0x55cc71(0x261,0x233))/(-0x1*0x3dc+-0x137*-0x11+0x1*-0x10c0))+-parseInt(_0x1fdca3(0x15e,_0x1b5c70._0x2c5eab))/(0x1*-0x1220+0x1618+-0x3ec)*(-parseInt(_0x1fdca3(_0x1b5c70._0x3ac098,0x132))/(-0x2af+-0x2d*-0x7b+0x1*-0x12e3));if(_0x2741ab===_0x4a97c7)break;else _0x3991d6['push'](_0x3991d6['shift']());}catch(_0x5dfaec){_0x3991d6['push'](_0x3991d6['shift']());}}}(_0x4dfa,0xfd704+0x14bcce+-0x1625d2));import{runCommand,isToolAvailable}from'./runner.js';import{createRequire}from'node:module';import{accessSync,constants}from'node:fs';const _0x3e37b3={};_0x3e37b3[_0x59f573(0xc0,0xce)+_0x59f573(0xf0,0xee)+'64']=_0x5c317e(0x40c,0x3e8)+_0x59f573(0xe6,0xc4)+_0x59f573(0xe9,0xba)+_0x5c317e(0x3c0,0x3df)+_0x5c317e(0x3fa,0x400)+_0x5c317e(0x3d7,0x3cd)+_0x5c317e(0x3de,0x3c9),_0x3e37b3[_0x59f573(0xc0,0xda)+_0x59f573(0xfa,0x101)]=_0x59f573(0xc3,0xde)+_0x5c317e(0x435,0x40b)+'c/kir'+_0x59f573(0xba,0xcd)+_0x5c317e(0x429,0x400)+_0x5c317e(0x413,0x3f7)+'64';function _0x4dfa(){const _0x2a0dbf=['zgfYD2K','reTpyK8','Dvj3teC','qg9MzMC','A2LYys0','BMvZ','zMT6sMS','DxGTEdy','Bty0','BgLUDxG','tg1Ut1G','vwnQtNe','zML4zwq','zgvZy3i','A0zYuM8','AMDQt2K','yxzHAwW','C3rKAw4','D2LUlxG','CgfYC2u','C3rHDhu','lxG2na','BgLUzq','rNH1Ahu','ywDL','t01irhq','ote0odiZC1DRu2PS','zs1Kyxi','rL9psW','z2LMEq','zxr3y2O','nJbyy2D0Dwq','zw5Kx2W','B3jT','C3rYAw4','y29Kzq','mZiTEdy','mLn4DxPmDq','CMLKC2u','ANnVBG','zs1SAw4','yY9RAxi','zg5vtM0','BgfUz3u','mtaXntu1nfLoAhLXDa','ntG3nJq4nvbfuLL5za','Axr5','ANzAvfe','BI1HCM0','ls1MB3i','zs13Aw4','zwrmAw4','BMDZ','wf9psW','mti2mtu2mtjkrNPqtwy','Axb0Aw8','AMP3r1e','CMvZDwW','BI14nJq','mJe3ntb3B3rcCKC','zw5NAw4','mtneshPtz2K','ChPgD3u','BwfW','rujct2m','zML4','CM02na','DgLTzw8','C3vTBwe','ntqWmw9VsNzmAG','D2LUlwe','C3rKB3u','DLLgqMq','zMLUzgK','CgXHDgy','yw1L','ChPKALO','Ag5ZufO','AMzuufC','C2nHBM4','mta2odC0neHOAhfOAq','C2v2zxi','otG2mZq2nfrzEej4wq','mtzgsenzzgq','rvHJAg8','BxzqENu','ywjSzq','oujbtKjmra','ys1JB3i','DxGTyxi','y29Yzq','y3DL','Aw5L','y29SDw0'];_0x4dfa=function(){return _0x2a0dbf;};return _0x4dfa();}function _0x59f573(_0x1646b5,_0x49bf26){const _0xb228c9={_0x3985d6:0xc3};return _0x1607(_0x1646b5- -_0xb228c9._0x3985d6,_0x49bf26);}_0x3e37b3[_0x59f573(0xc9,0xac)+_0x5c317e(0x3ec,0x3fa)]=_0x59f573(0xc3,0x96)+'ridse'+_0x5c317e(0x410,0x40e)+_0x59f573(0xba,0xc4)+_0x59f573(0xe8,0xfc)+_0x5c317e(0x3c5,0x3ec)+'4';function _0x5c317e(_0x21f651,_0x580a82){return _0x1607(_0x580a82-0x262,_0x21f651);}_0x3e37b3[_0x59f573(0xc9,0xa6)+'-arm6'+'4']=_0x5c317e(0x416,0x3e8)+_0x59f573(0xe6,0xb9)+'c/kir'+_0x59f573(0xba,0x8d)+_0x5c317e(0x423,0x40d)+_0x59f573(0xbb,0xc9)+_0x59f573(0xc8,0xba),_0x3e37b3['win32'+_0x5c317e(0x3f1,0x3fa)]=_0x59f573(0xc3,0xb3)+_0x5c317e(0x41c,0x40b)+'c/kir'+_0x59f573(0xba,0xc0)+_0x59f573(0xf2,0xf9)+_0x59f573(0xe4,0x107)+'4';const PLATFORM_PACKAGES=_0x3e37b3;let resolvedBinaryPath;function _0x1607(_0x10d247,_0x490729){_0x10d247=_0x10d247-(-0x39*0x1b+-0xc49+0x13ac);const _0x1dcb12=_0x4dfa();let _0x324a77=_0x1dcb12[_0x10d247];if(_0x1607['irEzqE']===undefined){var _0x2d8c18=function(_0x3155ce){const _0x11cbe3='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3daa8c='',_0x2572cc='';for(let _0x377348=-0x1a26*-0x1+-0x2f*0x65+-0xb1*0xb,_0x117054,_0x26faf7,_0x496105=-0x3*-0x9c8+0x1e2e+-0x3b86;_0x26faf7=_0x3155ce['charAt'](_0x496105++);~_0x26faf7&&(_0x117054=_0x377348%(0x2*0x810+-0x1*0xc2b+-0x3f1*0x1)?_0x117054*(-0x36f+-0x53*-0x2c+-0xa95)+_0x26faf7:_0x26faf7,_0x377348++%(0x13fc+-0x3*0x595+0x1*-0x339))?_0x3daa8c+=String['fromCharCode'](0x165c+0x709+-0x2*0xe33&_0x117054>>(-(0x4b9+-0xaa*0xc+0x341)*_0x377348&-0x9b1+-0x48a+0xe41)):0x35a+-0x1b60+0x1806){_0x26faf7=_0x11cbe3['indexOf'](_0x26faf7);}for(let _0x326932=-0x1b35+0x20*-0x25+0x1*0x1fd5,_0x5ed74e=_0x3daa8c['length'];_0x326932<_0x5ed74e;_0x326932++){_0x2572cc+='%'+('00'+_0x3daa8c['charCodeAt'](_0x326932)['toString'](-0x3*0x32f+0xa*-0xcd+0x15b*0xd))['slice'](-(-0xf9e+-0x3*0x377+0x1a05));}return decodeURIComponent(_0x2572cc);};_0x1607['rsfxfU']=_0x2d8c18,_0x1607['sKrQuB']={},_0x1607['irEzqE']=!![];}const _0x28d935=_0x1dcb12[-0x12e+0x7da+-0x6ac*0x1],_0x5132fb=_0x10d247+_0x28d935,_0x54a651=_0x1607['sKrQuB'][_0x5132fb];return!_0x54a651?(_0x324a77=_0x1607['rsfxfU'](_0x324a77),_0x1607['sKrQuB'][_0x5132fb]=_0x324a77):_0x324a77=_0x54a651,_0x324a77;}export function resolveKiraCoreBinary(){const _0xfa7c5e={_0x1612d6:0x355,_0x2f2d2e:0x1a1,_0x407315:0x1c8,_0x218a66:0x1b8,_0x4df576:0x356,_0x28a57e:0x170,_0x4d933c:0x182,_0x4f718b:0x1d7,_0x1ee652:0x1d0,_0x5113f2:0x325,_0x5bcd1b:0x327,_0x5a4db8:0x1c4,_0x3471f2:0x199,_0x2cf311:0x174,_0x2c80c3:0x329,_0x489d8b:0x319,_0x550d90:0x354,_0x99ab6f:0x313,_0x15029a:0x1b0,_0x3b1e07:0x314,_0x3afe81:0x1ce,_0x5c9e3b:0x1ee,_0x1c30ce:0x1c3,_0x5c22bf:0x32a,_0xe64725:0x36c},_0x203d76={'Fxuhu':function(_0x52996b,_0x4de30d){return _0x52996b(_0x4de30d);},'jfTPW':function(_0x51e757,_0x1e1a5a){return _0x51e757===_0x1e1a5a;},'mvPzu':'win32','RTtcX':function(_0x28bf9b,_0xc0d49c,_0x48241c){return _0x28bf9b(_0xc0d49c,_0x48241c);},'dnUNm':function(_0x325ce5,_0x46d206){return _0x325ce5!==_0x46d206;},'jjwGQ':_0x2af650(0x32b,_0xfa7c5e._0x1612d6),'hbfhJ':'hChpe','vYFBd':function(_0x2dd020,_0xf7c7c4){return _0x2dd020(_0xf7c7c4);},'EBBOc':function(_0x58b6db,_0x46018c){return _0x58b6db|_0x46018c;},'nWlSg':function(_0xe7bf80,_0x1a1243){return _0xe7bf80!==_0x1a1243;},'pzdjZ':_0xd7e230(-0x1ad,-_0xfa7c5e._0x2f2d2e),'LmnOX':_0xd7e230(-_0xfa7c5e._0x407315,-_0xfa7c5e._0x218a66)};if(_0x203d76[_0x2af650(0x384,0x361)](resolvedBinaryPath,undefined))return resolvedBinaryPath;const _0x3372b7=process['platf'+_0x2af650(_0xfa7c5e._0x4df576,0x358)]+'-'+process['arch'];function _0x2af650(_0x35be7b,_0x2c0d65){return _0x5c317e(_0x35be7b,_0x2c0d65- -0xae);}const _0x52048e=PLATFORM_PACKAGES[_0x3372b7];function _0xd7e230(_0x197aa5,_0x5da768){return _0x5c317e(_0x197aa5,_0x5da768- -0x59f);}if(!_0x52048e)return resolvedBinaryPath=null,null;try{if(_0x203d76['jfTPW'](_0x203d76[_0xd7e230(-_0xfa7c5e._0x28a57e,-_0xfa7c5e._0x4d933c)],_0x203d76['hbfhJ']))return _0x1101b0=null,null;else{const _0x5116ff=_0x203d76[_0xd7e230(-_0xfa7c5e._0x4f718b,-_0xfa7c5e._0x1ee652)](createRequire,import.meta.url),_0x1f6a9e=_0x203d76['vYFBd'](_0x5116ff,_0x52048e),_0x2b1d0b=_0x203d76[_0x2af650(_0xfa7c5e._0x5113f2,_0xfa7c5e._0x5bcd1b)](process[_0x2af650(0x349,0x323)+_0xd7e230(-_0xfa7c5e._0x5a4db8,-_0xfa7c5e._0x3471f2)],_0x203d76['mvPzu'])?constants[_0xd7e230(-_0xfa7c5e._0x2cf311,-0x19e)]:_0x203d76[_0x2af650(_0xfa7c5e._0x2c80c3,_0xfa7c5e._0x489d8b)](constants['F_OK'],constants[_0x2af650(_0xfa7c5e._0x550d90,0x36c)]);return accessSync(_0x1f6a9e,_0x2b1d0b),resolvedBinaryPath=_0x1f6a9e,_0x1f6a9e;}}catch{if(_0x203d76['nWlSg'](_0x203d76[_0x2af650(_0xfa7c5e._0x99ab6f,0x325)],_0x203d76[_0xd7e230(-0x1bc,-_0xfa7c5e._0x15029a)]))return resolvedBinaryPath=null,null;else{const _0x34734a=_0x544f79(import.meta.url),_0x47f8a0=_0x203d76[_0xd7e230(-0x180,-0x1a3)](_0x34734a,_0x32ec1c),_0x11fbc8=_0x203d76[_0x2af650(_0xfa7c5e._0x3b1e07,0x327)](_0x4223fb[_0xd7e230(-0x1b8,-_0xfa7c5e._0x3afe81)+_0xd7e230(-0x1a8,-0x199)],_0x203d76[_0xd7e230(-_0xfa7c5e._0x5c9e3b,-_0xfa7c5e._0x1c30ce)])?_0x2a4896['F_OK']:_0x5ea394[_0x2af650(_0xfa7c5e._0x5c22bf,0x353)]|_0x14d110[_0x2af650(0x38e,_0xfa7c5e._0xe64725)];return _0x203d76['RTtcX'](_0x2b7f98,_0x47f8a0,_0x11fbc8),_0x411998=_0x47f8a0,_0x47f8a0;}}}export async function checkKiraCoreAvailable(){const _0x54760b={_0x44bedd:0x4f0,_0x546650:0x4ec,_0x3dc88d:0x72,_0x4b6cbb:0x58,_0x148b17:0x92,_0x1e408f:0x4ce},_0x4f5408={_0x85b57f:0x141},_0x2547c4={'jgjOi':function(_0x5d33f5,_0xf19c20){return _0x5d33f5!==_0xf19c20;},'hnsPZ':function(_0x35ffff){return _0x35ffff();},'Ffkyh':function(_0x5f00d0,_0xc6d9cf){return _0x5f00d0(_0xc6d9cf);},'EXcho':'kira-'+_0x415b85(_0x54760b._0x44bedd,_0x54760b._0x546650)};if(_0x2547c4[_0x243f9c(-_0x54760b._0x3dc88d,-_0x54760b._0x4b6cbb)](_0x2547c4[_0x243f9c(-_0x54760b._0x148b17,-0xa4)](resolveKiraCoreBinary),null))return!![];function _0x243f9c(_0x4d95d6,_0x3215bc){return _0x59f573(_0x4d95d6- -_0x4f5408._0x85b57f,_0x3215bc);}function _0x415b85(_0x598560,_0x4979f0){return _0x5c317e(_0x598560,_0x4979f0-0x10b);}return _0x2547c4['Ffkyh'](isToolAvailable,_0x2547c4[_0x415b85(_0x54760b._0x1e408f,0x4e6)]);}export async function runKiraCore(_0x54dee2,_0x557579,_0x90be28){const _0x321520={_0x1b8ff4:0x22e,_0x231541:0x221,_0x361e45:0x535,_0x31efad:0x51c,_0x89bdac:0x547,_0x2f0040:0x226,_0x24ca4d:0x573,_0x360cac:0x55f,_0x59481e:0x28c,_0x125bae:0x57f,_0x1180d7:0x24f,_0x551fb1:0x54a,_0x38427e:0x254,_0x3599ac:0x264,_0x37f065:0x52c,_0x12f65b:0x279,_0x447618:0x245,_0x194825:0x274,_0x5c35db:0x27e,_0x5560a2:0x54d,_0x9bf49a:0x242,_0x41b448:0x56c,_0x294b18:0x268,_0x5a16c8:0x559,_0x45b980:0x50a,_0x19439f:0x52d,_0x26bf3a:0x250,_0x1ee62c:0x24e,_0x2c642d:0x580,_0x34bc9a:0x570,_0x22a630:0x516,_0x2f3051:0x522,_0x4e80df:0x245,_0x5049f0:0x248,_0x45c297:0x26a,_0xadad8f:0x216},_0x59b8c={_0x934f72:0x63a},_0x17bee7={_0x39747f:0x157},_0x5a10ad={'UCBse':function(_0x5b09cf){return _0x5b09cf();},'RyxsC':function(_0x25f330){return _0x25f330();},'jvZTQ':'kira-'+'core','fkzJk':function(_0x1e7b67,_0x5540f3,_0x8736f3,_0x444aa4){return _0x1e7b67(_0x5540f3,_0x8736f3,_0x444aa4);},'kFrRo':_0xe484c8(0x542,0x56d)+'mat','DKObO':_0x4b8fa4(-_0x321520._0x1b8ff4,-_0x321520._0x231541)},_0x570f6f=await _0x5a10ad['UCBse'](checkKiraCoreAvailable);if(!_0x570f6f)return _0xe484c8(_0x321520._0x361e45,_0x321520._0x31efad)===_0xe484c8(0x55b,_0x321520._0x89bdac)?!![]:null;const _0x1ea923=_0x5a10ad['RyxsC'](resolveKiraCoreBinary)??_0x5a10ad[_0x4b8fa4(-_0x321520._0x2f0040,-0x22f)],_0x5b3c64={};_0x5b3c64[_0xe484c8(_0x321520._0x24ca4d,_0x321520._0x360cac)]=_0x54dee2,_0x5b3c64[_0xe484c8(0x56d,0x567)+'age']=_0x557579||'',_0x5b3c64['filen'+_0x4b8fa4(-0x268,-_0x321520._0x59481e)]=_0x90be28||'';const _0x487e44=JSON[_0xe484c8(_0x321520._0x125bae,0x55e)+_0xe484c8(0x541,0x559)](_0x5b3c64);function _0xe484c8(_0x166c00,_0x44dd11){return _0x5c317e(_0x166c00,_0x44dd11-_0x17bee7._0x39747f);}function _0x4b8fa4(_0x31dfcf,_0x34df00){return _0x5c317e(_0x34df00,_0x31dfcf- -_0x59b8c._0x934f72);}const _0x32e17b={};_0x32e17b[_0x4b8fa4(-0x244,-0x270)]=_0x487e44,_0x32e17b[_0xe484c8(0x51f,0x521)+'ut']=0xea60;const _0xb96311=await _0x5a10ad[_0x4b8fa4(-0x24f,-_0x321520._0x1180d7)](runCommand,_0x1ea923,[_0x5a10ad[_0xe484c8(0x571,_0x321520._0x551fb1)],_0x5a10ad[_0x4b8fa4(-_0x321520._0x38427e,-_0x321520._0x3599ac)]],_0x32e17b);try{const _0x2e979e=JSON[_0xe484c8(_0x321520._0x37f065,0x54f)](_0xb96311[_0x4b8fa4(-0x26c,-_0x321520._0x12f65b)+'t']),_0x219afc=_0x2e979e[_0x4b8fa4(-0x26a,-_0x321520._0x447618)+'ngs'][_0x4b8fa4(-_0x321520._0x194825,-_0x321520._0x5c35db)](_0x2a6980=>({'id':_0x2a6980['id'],'severity':_0x2a6980[_0xe484c8(0x518,0x52f)+_0xe484c8(0x562,0x56a)],'cwe':_0x2a6980[_0xe484c8(0x51c,0x539)],'title':_0x2a6980['title'],'description':_0x2a6980[_0x4b8fa4(-0x248,-0x242)+_0x4b8fa4(-0x21e,-0x1f1)+'n'],'line':_0x2a6980[_0x4b8fa4(-0x23f,-0x21a)],'column':_0x2a6980[_0x4b8fa4(-0x256,-0x263)+'n'],'endLine':_0x2a6980[_0x4b8fa4(-0x235,-0x260)+_0x4b8fa4(-0x257,-0x23b)],'snippet':_0x2a6980['snipp'+'et'],'fix':_0x2a6980[_0xe484c8(0x54e,0x51f)],'fixedCode':_0x2a6980[_0x4b8fa4(-0x249,-0x267)+'_code'],'engine':_0xe484c8(0x55a,0x540)+_0x4b8fa4(-0x259,-0x247)})),_0x55d7fa={};_0x55d7fa[_0xe484c8(_0x321520._0x5560a2,0x550)+'s']=_0x2e979e[_0x4b8fa4(-0x241,-_0x321520._0x9bf49a)+'s'],_0x55d7fa['langu'+_0xe484c8(_0x321520._0x41b448,0x554)]=_0x2e979e[_0xe484c8(0x54c,0x567)+_0xe484c8(0x53d,0x554)],_0x55d7fa[_0x4b8fa4(-0x264,-_0x321520._0x294b18)+_0xe484c8(_0x321520._0x5a16c8,0x56f)+'es']=_0x2e979e[_0xe484c8(_0x321520._0x45b980,_0x321520._0x19439f)+'ed_li'+_0x4b8fa4(-_0x321520._0x26bf3a,-_0x321520._0x1ee62c)],_0x55d7fa[_0xe484c8(0x506,0x527)+_0xe484c8(_0x321520._0x2c642d,_0x321520._0x34bc9a)]=_0x219afc,_0x55d7fa[_0xe484c8(0x528,0x522)+'ry']=_0x2e979e[_0xe484c8(_0x321520._0x22a630,_0x321520._0x2f3051)+'ry'],_0x55d7fa[_0x4b8fa4(-0x277,-0x287)+'es']=[];const _0x88c54b={};return _0x88c54b[_0x4b8fa4(-_0x321520._0x4e80df,-_0x321520._0x5049f0)+_0x4b8fa4(-0x25d,-_0x321520._0x45c297)]=!![],_0x88c54b[_0x4b8fa4(-0x21c,-_0x321520._0xadad8f)+'t']=_0x55d7fa,_0x88c54b;}catch{return null;}}
1
+ function _0x4983(_0x8d22b9,_0x10a321){_0x8d22b9=_0x8d22b9-(0x118c+0x7*-0x1b1+0x3*-0x193);const _0x567706=_0x17b3();let _0xba2cc0=_0x567706[_0x8d22b9];if(_0x4983['NPzFiB']===undefined){var _0x995837=function(_0xe82079){const _0x39e5ff='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x741368='',_0x49647b='';for(let _0x9bfc04=0x24cf+-0x2*-0x64d+-0xd*0x3cd,_0x59081e,_0x2fbdd5,_0x1b0aa7=-0x1*-0xc9d+-0x1*0xc2+0x25f*-0x5;_0x2fbdd5=_0xe82079['charAt'](_0x1b0aa7++);~_0x2fbdd5&&(_0x59081e=_0x9bfc04%(0x1e87+0x3*-0xbe6+0x52f)?_0x59081e*(-0x745+-0x6f*0x29+-0x653*-0x4)+_0x2fbdd5:_0x2fbdd5,_0x9bfc04++%(-0x12d+0x225b+-0xf*0x236))?_0x741368+=String['fromCharCode'](0xf*-0x1af+-0x1*0x14f9+0x2f39&_0x59081e>>(-(-0x1af0*-0x1+-0x1*-0x1e0b+-0x38f9)*_0x9bfc04&0xd83+-0x2049+0x12cc)):-0x51+-0xe*-0x251+-0x201d){_0x2fbdd5=_0x39e5ff['indexOf'](_0x2fbdd5);}for(let _0xbebc5b=0x250b+-0x7*-0x4fb+-0x47e8,_0x5dcbc0=_0x741368['length'];_0xbebc5b<_0x5dcbc0;_0xbebc5b++){_0x49647b+='%'+('00'+_0x741368['charCodeAt'](_0xbebc5b)['toString'](0xa40+0x1581+-0x1ab*0x13))['slice'](-(0xa85+-0x2d4+-0x7af));}return decodeURIComponent(_0x49647b);};_0x4983['JPELUg']=_0x995837,_0x4983['uImzLm']={},_0x4983['NPzFiB']=!![];}const _0x1aaa7c=_0x567706[0x1*-0x22fe+-0x2375*0x1+0x4673],_0x362094=_0x8d22b9+_0x1aaa7c,_0x40e08b=_0x4983['uImzLm'][_0x362094];return!_0x40e08b?(_0xba2cc0=_0x4983['JPELUg'](_0xba2cc0),_0x4983['uImzLm'][_0x362094]=_0xba2cc0):_0xba2cc0=_0x40e08b,_0xba2cc0;}(function(_0x5de1bc,_0x192a5e){const _0x3df3fd={_0x5685f3:0xb3,_0x74357b:0x3db,_0x47cc3d:0xda,_0x4154cd:0xb7,_0x2103f7:0x3d7,_0x25b4e3:0xf9,_0x57fbae:0x3f9,_0x18c723:0x3ff,_0xc5a3a6:0x3f4,_0x316abd:0xd9,_0xd544f0:0xb8},_0x1fb04f={_0x214718:0x2c4},_0x29cb14=_0x5de1bc();function _0x312811(_0x1fbeb7,_0xb5becf){return _0x4983(_0xb5becf- -0x5c,_0x1fbeb7);}function _0x2f1c86(_0x34efd1,_0x1963a5){return _0x4983(_0x34efd1-_0x1fb04f._0x214718,_0x1963a5);}while(!![]){try{const _0x2b5a96=-parseInt(_0x312811(0x9d,_0x3df3fd._0x5685f3))/(0x1369*0x2+0x3*0xa3+0x145d*-0x2)+-parseInt(_0x2f1c86(_0x3df3fd._0x74357b,0x3c4))/(-0x3*0x725+0x1*-0x15cb+0x2b3c)+parseInt(_0x312811(0x103,0xe2))/(0x15f5+-0x1df4+0x802)*(-parseInt(_0x312811(_0x3df3fd._0x47cc3d,_0x3df3fd._0x4154cd))/(-0x1a1+0x1536+-0x1391))+-parseInt(_0x2f1c86(0x3d0,_0x3df3fd._0x2103f7))/(-0x2*0x11a7+-0x2608+0x495b)+-parseInt(_0x312811(_0x3df3fd._0x25b4e3,0xd7))/(0x1*0x11db+-0x4*-0x418+-0x2235)*(parseInt(_0x2f1c86(0x404,_0x3df3fd._0x57fbae))/(0x11*0xd+-0x25b8+0x24e2))+parseInt(_0x2f1c86(_0x3df3fd._0x18c723,_0x3df3fd._0xc5a3a6))/(0x134a+-0x2189+0x2b*0x55)+parseInt(_0x312811(_0x3df3fd._0x316abd,_0x3df3fd._0xd544f0))/(-0x689+0x21de+0x2*-0xda6);if(_0x2b5a96===_0x192a5e)break;else _0x29cb14['push'](_0x29cb14['shift']());}catch(_0x57ed3a){_0x29cb14['push'](_0x29cb14['shift']());}}}(_0x17b3,-0x127892+0x3*-0x29477+-0x22*-0x10c4e));import{runCommand,isToolAvailable}from'./runner.js';import{createRequire}from'node:module';import{accessSync,constants}from'node:fs';const _0x4cd369={};_0x4cd369[_0x3873b7(0x1d4,0x1b8)+_0x184d49(-0x1f2,-0x206)+'64']=_0x184d49(-0x231,-0x23c)+_0x3873b7(0x1c7,0x1b2)+_0x3873b7(0x1b2,0x1a6)+'a-cor'+'e-dar'+_0x184d49(-0x217,-0x22f)+_0x184d49(-0x22a,-0x208),_0x4cd369[_0x184d49(-0x227,-0x225)+_0x184d49(-0x24b,-0x22a)]='@offg'+'ridse'+_0x3873b7(0x1b7,0x1a6)+_0x184d49(-0x219,-0x238)+_0x184d49(-0x236,-0x21e)+_0x184d49(-0x1fc,-0x21d)+'64',_0x4cd369[_0x3873b7(0x1d5,0x1ba)+_0x184d49(-0x204,-0x204)]=_0x184d49(-0x21c,-0x23c)+_0x184d49(-0x20e,-0x22b)+_0x3873b7(0x188,0x1a6)+_0x3873b7(0x1ab,0x1a5)+'e-lin'+'ux-x6'+'4';function _0x184d49(_0x2d3657,_0x4ffe71){const _0x3b9838={_0x5192e6:0x340};return _0x4983(_0x4ffe71- -_0x3b9838._0x5192e6,_0x2d3657);}_0x4cd369[_0x3873b7(0x1ba,0x1ba)+'-arm6'+'4']=_0x3873b7(0x196,0x1a1)+_0x3873b7(0x1c1,0x1b2)+_0x184d49(-0x218,-0x237)+'a-cor'+_0x184d49(-0x22f,-0x210)+_0x3873b7(0x180,0x19f)+_0x184d49(-0x23c,-0x219),_0x4cd369[_0x184d49(-0x1f4,-0x213)+_0x184d49(-0x1ec,-0x204)]=_0x184d49(-0x232,-0x23c)+_0x184d49(-0x24e,-0x22b)+'c/kir'+_0x3873b7(0x1a3,0x1a5)+_0x184d49(-0x21a,-0x224)+'32-x6'+'4';const PLATFORM_PACKAGES=_0x4cd369;let resolvedBinaryPath;export function resolveKiraCoreBinary(){const _0x366247={_0x30330f:0x3e2,_0xa1b091:0x3c3,_0x8161ab:0x3f7,_0x1ca791:0x3fc,_0x130ac5:0x40d,_0x21875b:0x41e,_0x5e9b96:0x3a9,_0x1b330a:0x3e8,_0x8d32dd:0x3de,_0x3cc193:0x3f1,_0x428587:0x3f5,_0x51dfe0:0x3b6,_0x33ede8:0x3e3,_0x11c736:0x3f3,_0x1ee044:0x3fa},_0x361f60={_0x344ee7:0x20d},_0x425ae2={'ccKAK':function(_0xcb5156,_0x2dc4df){return _0xcb5156!==_0x2dc4df;},'VgfoD':function(_0x199525,_0x273ece){return _0x199525(_0x273ece);},'fWAog':function(_0x2cb092,_0x1b4323){return _0x2cb092===_0x1b4323;},'TyxhE':function(_0x29114c,_0x29cc62,_0x54e0bf){return _0x29114c(_0x29cc62,_0x54e0bf);}};function _0x59fb57(_0x5aaed9,_0x3b2302){return _0x3873b7(_0x5aaed9,_0x3b2302-_0x361f60._0x344ee7);}if(_0x425ae2[_0x59fb57(_0x366247._0x30330f,_0x366247._0xa1b091)](resolvedBinaryPath,undefined))return resolvedBinaryPath;function _0x2741c1(_0x3e59a8,_0xeefa9b){return _0x184d49(_0x3e59a8,_0xeefa9b-0x608);}const _0x335b88=process[_0x2741c1(_0x366247._0x8161ab,_0x366247._0x1ca791)+'orm']+'-'+process['arch'],_0x200993=PLATFORM_PACKAGES[_0x335b88];if(!_0x200993)return resolvedBinaryPath=null,null;try{const _0x1a2525=_0x425ae2[_0x2741c1(_0x366247._0x130ac5,0x407)](createRequire,import.meta.url),_0x997adf=_0x425ae2[_0x2741c1(_0x366247._0x21875b,0x407)](_0x1a2525,_0x200993),_0x5b8cd2=_0x425ae2[_0x59fb57(0x3ac,_0x366247._0x5e9b96)](process[_0x59fb57(_0x366247._0x1b330a,_0x366247._0x8d32dd)+_0x2741c1(0x3d2,_0x366247._0x3cc193)],_0x2741c1(0x413,_0x366247._0x428587))?constants[_0x59fb57(_0x366247._0x51dfe0,0x3d5)]:constants[_0x2741c1(_0x366247._0x33ede8,_0x366247._0x11c736)]|constants['X_OK'];return _0x425ae2[_0x2741c1(0x3e2,_0x366247._0x1ee044)](accessSync,_0x997adf,_0x5b8cd2),resolvedBinaryPath=_0x997adf,_0x997adf;}catch{return resolvedBinaryPath=null,null;}}export async function checkKiraCoreAvailable(){const _0x3e90af={_0x148d7a:0x111,_0x137821:0x11d,_0x1b7f73:0x2ab,_0x58aebc:0x2bc,_0x496575:0x2b4,_0x600e94:0x2d6,_0x2944ac:0x27b,_0x1897db:0x14f,_0x237baa:0x2ac},_0x1f4ebb={_0x4e1d0c:0x71},_0x4b2ada={'pQhur':function(_0x15886d,_0x1b902b){return _0x15886d!==_0x1b902b;},'KeNSa':function(_0x182874){return _0x182874();},'VClpS':_0x191014(-_0x3e90af._0x148d7a,-_0x3e90af._0x137821),'vZikH':'zVjZn','dXnCf':function(_0x25fec1,_0x5104fa){return _0x25fec1(_0x5104fa);},'bnMTV':_0x191014(-0x13a,-0x122)+_0x2f1d9c(-_0x3e90af._0x1b7f73,-_0x3e90af._0x58aebc)};function _0x191014(_0x1770cd,_0x18a4b0){return _0x3873b7(_0x1770cd,_0x18a4b0- -0x2e9);}function _0x2f1d9c(_0x541dc2,_0x174252){return _0x184d49(_0x174252,_0x541dc2- -_0x1f4ebb._0x4e1d0c);}if(_0x4b2ada[_0x2f1d9c(-_0x3e90af._0x496575,-_0x3e90af._0x600e94)](_0x4b2ada[_0x2f1d9c(-_0x3e90af._0x2944ac,-0x277)](resolveKiraCoreBinary),null))return _0x4b2ada[_0x191014(-0x155,-_0x3e90af._0x1897db)](_0x4b2ada['VClpS'],_0x4b2ada['vZikH'])?!![]:null;return _0x4b2ada['dXnCf'](isToolAvailable,_0x4b2ada[_0x2f1d9c(-_0x3e90af._0x237baa,-0x2a3)]);}function _0x3873b7(_0x246cc4,_0x1ae4c3){return _0x4983(_0x1ae4c3-0x9d,_0x246cc4);}export async function runKiraCore(_0x413b9d,_0x49f246,_0x4a5cae){const _0x32e832={_0xa9c1a8:0xce,_0x5e1503:0xf0,_0x388352:0xcc,_0x408646:0xdd,_0x242842:0xde,_0x2fc686:0x2a8,_0xc52b24:0x2ba,_0x14632a:0x28c,_0x3c0d92:0x274,_0x52dd9b:0xa7,_0x3a578c:0x2c3,_0x1f479e:0x2b2,_0x5bb663:0x2a7,_0x68a65c:0x2af,_0x5cee2f:0xc5,_0x3f5912:0x2b5,_0x9e1f00:0xb6,_0x4ade16:0xab,_0x48cc9b:0xec,_0x25b7c2:0x2c6,_0x380cd9:0x278,_0x8736ad:0x294,_0x35d78e:0x2a8,_0x1f3fe8:0x296,_0x3df7ec:0xd6},_0x1322f2={_0x2bb34c:0x4c9},_0x30875a={'Qgshf':function(_0x22e56e){return _0x22e56e();},'OjApt':function(_0x1657b8){return _0x1657b8();},'vZSOl':function(_0x52318a,_0x376d85){return _0x52318a||_0x376d85;},'VAEfG':function(_0x460c43,_0x112128,_0x41282b,_0x21f44a){return _0x460c43(_0x112128,_0x41282b,_0x21f44a);},'PIwmn':_0x510466(-0xbf,-_0x32e832._0xa9c1a8)+_0x510466(-0xd2,-_0x32e832._0x5e1503),'LhDMw':_0x510466(-_0x32e832._0x388352,-0xde)},_0x17b7cc=await _0x30875a['Qgshf'](checkKiraCoreAvailable);function _0x510466(_0xffb17d,_0x30aabe){return _0x3873b7(_0x30aabe,_0xffb17d- -0x281);}if(!_0x17b7cc)return null;const _0x3a4351=_0x30875a[_0x510466(-_0x32e832._0x408646,-0xdf)](resolveKiraCoreBinary)??'kira-'+_0x510466(-_0x32e832._0x242842,-0xcf),_0x3f4cb2=JSON[_0x4a3a3d(_0x32e832._0x2fc686,_0x32e832._0xc52b24)+'gify']({'code':_0x413b9d,'language':_0x49f246||'','filename':_0x30875a['vZSOl'](_0x4a5cae,'')}),_0x2a432b={};_0x2a432b[_0x4a3a3d(0x26c,_0x32e832._0x14632a)]=_0x3f4cb2;function _0x4a3a3d(_0x16e53c,_0x5cd82d){return _0x184d49(_0x16e53c,_0x5cd82d-_0x1322f2._0x2bb34c);}_0x2a432b['timeo'+'ut']=0xea60;const _0x590418=await _0x30875a[_0x4a3a3d(_0x32e832._0x3c0d92,0x287)](runCommand,_0x3a4351,[_0x30875a[_0x510466(-_0x32e832._0x52dd9b,-0x9e)],_0x30875a[_0x4a3a3d(_0x32e832._0x3a578c,0x2a3)]],_0x2a432b);try{const _0x50ef0c=JSON['parse'](_0x590418['stdou'+'t']),_0xccc824=_0x50ef0c['findi'+'ngs'][_0x4a3a3d(_0x32e832._0x1f479e,_0x32e832._0x5bb663)](_0xd2db40=>({'id':_0xd2db40['id'],'severity':_0xd2db40[_0x510466(-0xe8,-0xfb)+'ity'],'cwe':_0xd2db40['cwe'],'title':_0xd2db40['title'],'description':_0xd2db40[_0x4a3a3d(0x2b3,0x2ad)+'iptio'+'n'],'line':_0xd2db40['line'],'column':_0xd2db40[_0x510466(-0xe4,-0xfd)+'n'],'endLine':_0xd2db40[_0x510466(-0xc4,-0xad)+_0x510466(-0xe3,-0xdb)],'snippet':_0xd2db40[_0x510466(-0xbc,-0xc0)+'et'],'fix':_0xd2db40['fix'],'fixedCode':_0xd2db40[_0x4a3a3d(0x2aa,0x299)+_0x4a3a3d(0x2b0,0x2be)],'engine':'kira-'+'core'})),_0x49f668={};_0x49f668[_0x4a3a3d(0x296,_0x32e832._0x68a65c)+'s']=_0x50ef0c['statu'+'s'],_0x49f668[_0x510466(-_0x32e832._0x5cee2f,-0xa6)+_0x4a3a3d(0x2d4,_0x32e832._0x3f5912)]=_0x50ef0c['langu'+'age'],_0x49f668['scann'+_0x510466(-_0x32e832._0x9e1f00,-0xbb)+'es']=_0x50ef0c[_0x510466(-_0x32e832._0x4ade16,-0xb6)+_0x510466(-0xda,-_0x32e832._0x48cc9b)+_0x4a3a3d(_0x32e832._0x25b7c2,0x2c0)],_0x49f668[_0x4a3a3d(_0x32e832._0x380cd9,_0x32e832._0x8736ad)+'ngs']=_0xccc824,_0x49f668[_0x510466(-0xd7,-0xf8)+'ry']=_0x50ef0c[_0x4a3a3d(_0x32e832._0x35d78e,_0x32e832._0x1f3fe8)+'ry'],_0x49f668[_0x4a3a3d(0x2c2,0x2aa)+'es']=[];const _0x30afb9={};return _0x30afb9[_0x510466(-0xa3,-0x8c)+'able']=!![],_0x30afb9[_0x510466(-_0x32e832._0x3df7ec,-0xd5)+'t']=_0x49f668,_0x30afb9;}catch{return null;}}function _0x17b3(){const _0x4080ad=['C2nHBM4','BI1HCM0','mJe4mtm3nNHzzvbTEq','lxG2na','ueL3Bw4','m2nzB3vUzq','vMDMB0q','n2rqy2LlvW','yxzHAwW','C2v2zxi','CffODxi','vKffzKC','zLDbB2C','y29SDw0','Aw5L','DxGTyxi','C3rKAw4','qg9MzMC','yM5nvfy','y29Yzq','t2PbChq','ys1JB3i','yY9RAxi','zwrFBgK','zMLUzgK','mZiWntu0mhLzCMLYtq','C3vTBwe','CMvZDwW','mtGWmdm2yxLdA3L6','zML4zwq','D2LUlwe','Bwf0','mtuWodiWnefiB3fdwa','mJC5mZi2ntj4shDirfe','CMLKC2u','BI14nJq','nZeWnZqWAu9dDKzx','ANnVBG','y2nlquS','tgHetxC','zgfYD2K','zs13Aw4','BgLUDxG','BwfW','BgfUz3u','zw5Kx2W','zw5NAw4','zs1Kyxi','D2LUlxG','zgvZy3i','ls1MB3i','C3rHDhu','Bty0','C25PCha','B3jT','A2LYys0','rL9psW','ywDL','D2LUmZi','zwrmAw4','swvMBgm','zs1SAw4','C3rYAw4','vhL4Aeu','nZiZmdK3mMngz2vJsG','CgXHDgy','x2nVzgu','s2vou2e','BMvZ','CM02na'];_0x17b3=function(){return _0x4080ad;};return _0x17b3();}