hedgequantx 2.6.163 → 2.7.1
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.
- package/README.md +15 -88
- package/bin/cli.js +0 -11
- package/dist/lib/api.jsc +0 -0
- package/dist/lib/api2.jsc +0 -0
- package/dist/lib/core.jsc +0 -0
- package/dist/lib/core2.jsc +0 -0
- package/dist/lib/data.js +1 -1
- package/dist/lib/data.jsc +0 -0
- package/dist/lib/data2.jsc +0 -0
- package/dist/lib/decoder.jsc +0 -0
- package/dist/lib/m/mod1.jsc +0 -0
- package/dist/lib/m/mod2.jsc +0 -0
- package/dist/lib/n/r1.jsc +0 -0
- package/dist/lib/n/r2.jsc +0 -0
- package/dist/lib/n/r3.jsc +0 -0
- package/dist/lib/n/r4.jsc +0 -0
- package/dist/lib/n/r5.jsc +0 -0
- package/dist/lib/n/r6.jsc +0 -0
- package/dist/lib/n/r7.jsc +0 -0
- package/dist/lib/o/util1.jsc +0 -0
- package/dist/lib/o/util2.jsc +0 -0
- package/package.json +8 -5
- package/src/app.js +40 -162
- package/src/config/constants.js +31 -33
- package/src/config/propfirms.js +13 -217
- package/src/config/settings.js +0 -43
- package/src/lib/api.js +198 -0
- package/src/lib/api2.js +353 -0
- package/src/lib/core.js +539 -0
- package/src/lib/core2.js +341 -0
- package/src/lib/data.js +555 -0
- package/src/lib/data2.js +492 -0
- package/src/lib/decoder.js +599 -0
- package/src/lib/m/s1.js +804 -0
- package/src/lib/m/s2.js +34 -0
- package/src/lib/n/r1.js +454 -0
- package/src/lib/n/r2.js +514 -0
- package/src/lib/n/r3.js +631 -0
- package/src/lib/n/r4.js +401 -0
- package/src/lib/n/r5.js +335 -0
- package/src/lib/n/r6.js +425 -0
- package/src/lib/n/r7.js +530 -0
- package/src/lib/o/l1.js +44 -0
- package/src/lib/o/l2.js +427 -0
- package/src/lib/python-bridge.js +206 -0
- package/src/menus/connect.js +14 -176
- package/src/menus/dashboard.js +65 -110
- package/src/pages/accounts.js +18 -18
- package/src/pages/algo/copy-trading.js +210 -240
- package/src/pages/algo/index.js +41 -104
- package/src/pages/algo/one-account.js +386 -33
- package/src/pages/algo/ui.js +312 -151
- package/src/pages/orders.js +3 -3
- package/src/pages/positions.js +3 -3
- package/src/pages/stats/chart.js +74 -0
- package/src/pages/stats/display.js +228 -0
- package/src/pages/stats/index.js +236 -0
- package/src/pages/stats/metrics.js +213 -0
- package/src/pages/user.js +6 -6
- package/src/services/hqx-server/constants.js +55 -0
- package/src/services/hqx-server/index.js +401 -0
- package/src/services/hqx-server/latency.js +81 -0
- package/src/services/index.js +12 -3
- package/src/services/rithmic/accounts.js +7 -32
- package/src/services/rithmic/connection.js +1 -204
- package/src/services/rithmic/contracts.js +116 -99
- package/src/services/rithmic/handlers.js +21 -196
- package/src/services/rithmic/index.js +63 -120
- package/src/services/rithmic/market.js +31 -0
- package/src/services/rithmic/orders.js +5 -111
- package/src/services/rithmic/protobuf.js +384 -138
- package/src/services/session.js +22 -173
- package/src/ui/box.js +10 -18
- package/src/ui/index.js +1 -3
- package/src/ui/menu.js +1 -1
- package/src/utils/prompts.js +2 -2
- package/dist/lib/m/s1.js +0 -1
- package/src/menus/ai-agent-connect.js +0 -181
- package/src/menus/ai-agent-models.js +0 -219
- package/src/menus/ai-agent-oauth.js +0 -292
- package/src/menus/ai-agent-ui.js +0 -141
- package/src/menus/ai-agent.js +0 -484
- package/src/pages/algo/algo-config.js +0 -195
- package/src/pages/algo/algo-multi.js +0 -801
- package/src/pages/algo/algo-utils.js +0 -58
- package/src/pages/algo/copy-engine.js +0 -449
- package/src/pages/algo/custom-strategy.js +0 -459
- package/src/pages/algo/logger.js +0 -245
- package/src/pages/algo/smart-logs-data.js +0 -218
- package/src/pages/algo/smart-logs.js +0 -387
- package/src/pages/algo/ui-constants.js +0 -144
- package/src/pages/algo/ui-summary.js +0 -184
- package/src/pages/stats-calculations.js +0 -191
- package/src/pages/stats-ui.js +0 -381
- package/src/pages/stats.js +0 -339
- package/src/services/ai/client-analysis.js +0 -194
- package/src/services/ai/client-models.js +0 -333
- package/src/services/ai/client.js +0 -343
- package/src/services/ai/index.js +0 -384
- package/src/services/ai/oauth-anthropic.js +0 -265
- package/src/services/ai/oauth-gemini.js +0 -223
- package/src/services/ai/oauth-iflow.js +0 -269
- package/src/services/ai/oauth-openai.js +0 -233
- package/src/services/ai/oauth-qwen.js +0 -279
- package/src/services/ai/providers/direct-providers.js +0 -323
- package/src/services/ai/providers/index.js +0 -62
- package/src/services/ai/providers/other-providers.js +0 -104
- package/src/services/ai/proxy-install.js +0 -249
- package/src/services/ai/proxy-manager.js +0 -494
- package/src/services/ai/proxy-remote.js +0 -161
- package/src/services/ai/strategy-supervisor.js +0 -1312
- package/src/services/ai/supervisor-data.js +0 -195
- package/src/services/ai/supervisor-optimize.js +0 -215
- package/src/services/ai/supervisor-sync.js +0 -178
- package/src/services/ai/supervisor-utils.js +0 -158
- package/src/services/ai/supervisor.js +0 -484
- package/src/services/ai/validation.js +0 -250
- package/src/services/hqx-server-events.js +0 -110
- package/src/services/hqx-server-handlers.js +0 -217
- package/src/services/hqx-server-latency.js +0 -136
- package/src/services/hqx-server.js +0 -403
- package/src/services/position-constants.js +0 -28
- package/src/services/position-exit-logic.js +0 -174
- package/src/services/position-manager.js +0 -438
- package/src/services/position-momentum.js +0 -206
- package/src/services/projectx/accounts.js +0 -142
- package/src/services/projectx/index.js +0 -443
- package/src/services/projectx/market.js +0 -172
- package/src/services/projectx/stats.js +0 -110
- package/src/services/projectx/trading.js +0 -180
- package/src/services/rithmic/latency-tracker.js +0 -182
- package/src/services/rithmic/market-data-decoders.js +0 -229
- package/src/services/rithmic/market-data.js +0 -272
- package/src/services/rithmic/orders-fast.js +0 -246
- package/src/services/rithmic/proto-decoders.js +0 -403
- package/src/services/rithmic/specs.js +0 -146
- package/src/services/rithmic/trade-history.js +0 -254
- package/src/services/session-history.js +0 -475
- package/src/services/strategy/hft-signal-calc.js +0 -147
- package/src/services/strategy/hft-tick.js +0 -407
- package/src/services/strategy/recovery-math.js +0 -402
- package/src/services/tradovate/constants.js +0 -109
- package/src/services/tradovate/index.js +0 -392
- package/src/services/tradovate/market.js +0 -47
- package/src/services/tradovate/orders.js +0 -145
- package/src/services/tradovate/websocket.js +0 -97
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
### Prop Futures Algo Trading CLI
|
|
8
8
|
|
|
9
|
-
*Connect to
|
|
9
|
+
*Connect to 37+ prop firms and automate your futures trading*
|
|
10
10
|
|
|
11
11
|
[](https://hedgequantx.com)
|
|
12
12
|
[](https://www.npmjs.com/package/hedgequantx)
|
|
@@ -21,11 +21,10 @@
|
|
|
21
21
|
|
|
22
22
|
[](https://hedgequantx.com)
|
|
23
23
|
[](https://hedgequantx.com)
|
|
24
|
-
[](https://hedgequantx.com)
|
|
24
|
+
[](https://hedgequantx.com)
|
|
26
25
|
[](https://hedgequantx.com)
|
|
27
26
|
|
|
28
|
-
[Website](https://hedgequantx.com) | [Installation](#installation) | [Features](#features) | [
|
|
27
|
+
[Website](https://hedgequantx.com) | [Installation](#installation) | [Features](#features) | [Algo Trading](#algo-trading) | [Discord](https://discord.gg/UBKCERctZu)
|
|
29
28
|
|
|
30
29
|
</div>
|
|
31
30
|
|
|
@@ -35,13 +34,12 @@
|
|
|
35
34
|
|
|
36
35
|
| Feature | Description |
|
|
37
36
|
|---------|-------------|
|
|
38
|
-
| **Multi-Platform** | ProjectX
|
|
39
|
-
| **
|
|
37
|
+
| **Multi-Platform** | ProjectX & Rithmic APIs |
|
|
38
|
+
| **37+ Prop Firms** | TopStep, Apex, Bulenox, and more |
|
|
40
39
|
| **Multi-Account** | Connect multiple accounts simultaneously |
|
|
41
40
|
| **Real-Time Stats** | Balance, P&L, positions, orders |
|
|
42
41
|
| **Algo Trading** | One Account & Copy Trading modes |
|
|
43
|
-
| **
|
|
44
|
-
| **Claude Pro/Max OAuth** | Login with your Claude subscription |
|
|
42
|
+
| **Algo Trading** | Proprietary HQX Strategy |
|
|
45
43
|
| **Market Hours** | Auto-blocks when market closed |
|
|
46
44
|
| **Local Execution** | Direct API trading, no server needed |
|
|
47
45
|
| **Secure Storage** | AES-256-GCM encrypted sessions |
|
|
@@ -97,55 +95,6 @@ hqx --version
|
|
|
97
95
|
|
|
98
96
|
---
|
|
99
97
|
|
|
100
|
-
## AI Integration
|
|
101
|
-
|
|
102
|
-
HedgeQuantX integrates with leading AI providers for intelligent trading supervision.
|
|
103
|
-
|
|
104
|
-
### Supported AI Providers
|
|
105
|
-
|
|
106
|
-
| Provider | Authentication | Models |
|
|
107
|
-
|----------|---------------|--------|
|
|
108
|
-
| **Anthropic Claude** | OAuth (Pro/Max) or API Key | Claude 4, Sonnet, Haiku, Opus |
|
|
109
|
-
| **OpenAI** | API Key | GPT-4o, GPT-4, GPT-3.5 |
|
|
110
|
-
| **Google Gemini** | API Key | Gemini Pro, Gemini Flash |
|
|
111
|
-
| **OpenRouter** | API Key | 100+ models (unified API) |
|
|
112
|
-
| **DeepSeek** | API Key | DeepSeek Chat, Coder |
|
|
113
|
-
| **Groq** | API Key | Llama, Mixtral (fast inference) |
|
|
114
|
-
| **xAI** | API Key | Grok |
|
|
115
|
-
| **Mistral** | API Key | Mistral Large, Medium, Small |
|
|
116
|
-
| **Perplexity** | API Key | Sonar models |
|
|
117
|
-
| **Together AI** | API Key | Open source models |
|
|
118
|
-
| **Ollama** | Local | Any local model |
|
|
119
|
-
| **LM Studio** | Local | Any local model |
|
|
120
|
-
|
|
121
|
-
### Claude Pro/Max OAuth Login
|
|
122
|
-
|
|
123
|
-
If you have a Claude Pro or Max subscription, you can login directly without an API key:
|
|
124
|
-
|
|
125
|
-
```
|
|
126
|
-
1. AI Agent Menu -> [+] Add Agent
|
|
127
|
-
2. Select DIRECT PROVIDERS -> CLAUDE (ANTHROPIC)
|
|
128
|
-
3. Choose "CLAUDE PRO/MAX (OAUTH)"
|
|
129
|
-
4. Browser opens -> Login to claude.ai
|
|
130
|
-
5. Copy the authorization code
|
|
131
|
-
6. Paste in terminal -> Connected!
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
Benefits:
|
|
135
|
-
- No API key needed
|
|
136
|
-
- Use your existing subscription
|
|
137
|
-
- Unlimited usage with your plan
|
|
138
|
-
- Tokens auto-refresh
|
|
139
|
-
|
|
140
|
-
### AI Features
|
|
141
|
-
|
|
142
|
-
- **Trading Analysis**: Real-time position and risk analysis
|
|
143
|
-
- **Multi-Agent Support**: Connect multiple AI providers simultaneously
|
|
144
|
-
- **Auto Token Scanner**: Detects existing AI sessions from VS Code, Cursor, Claude CLI
|
|
145
|
-
- **Token Auto-Refresh**: OAuth tokens refresh automatically when expired
|
|
146
|
-
|
|
147
|
-
---
|
|
148
|
-
|
|
149
98
|
## Algo Trading
|
|
150
99
|
|
|
151
100
|
### One Account Mode
|
|
@@ -158,18 +107,12 @@ Trade on a single account with HQX algo strategy.
|
|
|
158
107
|
|
|
159
108
|
### Copy Trading Mode
|
|
160
109
|
|
|
161
|
-
Mirror trades from Lead to Follower accounts
|
|
110
|
+
Mirror trades from Lead to Follower accounts.
|
|
162
111
|
|
|
163
112
|
<div align="center">
|
|
164
113
|
<img src="assets/copy-trading.png" alt="HQX Copy Trading" width="800">
|
|
165
114
|
</div>
|
|
166
115
|
|
|
167
|
-
Features:
|
|
168
|
-
- Real order execution via API
|
|
169
|
-
- Position synchronization
|
|
170
|
-
- Multi-account support
|
|
171
|
-
- Configurable lot multiplier
|
|
172
|
-
|
|
173
116
|
---
|
|
174
117
|
|
|
175
118
|
## Supported Prop Firms
|
|
@@ -208,27 +151,13 @@ Features:
|
|
|
208
151
|
| Rate Limiting | API protection |
|
|
209
152
|
| File Permissions | 0600 (owner only) |
|
|
210
153
|
| Credentials | Never stored in plain text |
|
|
211
|
-
| OAuth Tokens | Secure PKCE flow |
|
|
212
154
|
|
|
213
155
|
---
|
|
214
156
|
|
|
215
157
|
## Changelog
|
|
216
158
|
|
|
217
159
|
<details>
|
|
218
|
-
<summary><b>
|
|
219
|
-
|
|
220
|
-
- **AI Integration**: Multi-provider AI supervision
|
|
221
|
-
- **Claude OAuth**: Login with Pro/Max subscription (no API key needed)
|
|
222
|
-
- **Token Scanner**: Auto-detect AI sessions from VS Code, Cursor, Claude CLI
|
|
223
|
-
- **Real API Models**: Fetch models from provider APIs (no hardcoded lists)
|
|
224
|
-
- **Copy Trading**: Real order execution via API
|
|
225
|
-
- **Multi-Agent**: Connect multiple AI providers simultaneously
|
|
226
|
-
- **Auto Token Refresh**: OAuth tokens refresh automatically
|
|
227
|
-
|
|
228
|
-
</details>
|
|
229
|
-
|
|
230
|
-
<details>
|
|
231
|
-
<summary><b>v1.8.x</b></summary>
|
|
160
|
+
<summary><b>v1.8.x (Current)</b></summary>
|
|
232
161
|
|
|
233
162
|
- Separate UI for One Account and Copy Trading
|
|
234
163
|
- Market hours validation
|
|
@@ -265,14 +194,12 @@ Features:
|
|
|
265
194
|
|
|
266
195
|
| Done | Done | Coming Soon |
|
|
267
196
|
|------|------|-------------|
|
|
268
|
-
| :white_check_mark: ProjectX integration | :white_check_mark: One Account mode | :hourglass:
|
|
269
|
-
| :white_check_mark: Rithmic integration | :white_check_mark: Copy Trading mode | :hourglass:
|
|
270
|
-
| :white_check_mark: 38+ prop firms | :white_check_mark: HQX Server | :hourglass:
|
|
271
|
-
| :white_check_mark: Multi-account | :white_check_mark: Market hours check | :hourglass:
|
|
272
|
-
| :white_check_mark: Trailing SL & BE | :white_check_mark: Session summary | :hourglass:
|
|
273
|
-
| :white_check_mark: Encrypted sessions | :white_check_mark: Auto-update | :hourglass:
|
|
274
|
-
| :white_check_mark: AI Integration | :white_check_mark: Claude OAuth | :hourglass: Voice commands |
|
|
275
|
-
| :white_check_mark: Multi-AI Agents | :white_check_mark: Token Scanner | |
|
|
197
|
+
| :white_check_mark: ProjectX integration | :white_check_mark: One Account mode | :hourglass: Tradovate integration |
|
|
198
|
+
| :white_check_mark: Rithmic integration | :white_check_mark: Copy Trading mode | :hourglass: Telegram alerts |
|
|
199
|
+
| :white_check_mark: 38+ prop firms | :white_check_mark: HQX Server | :hourglass: Multi-symbol trading |
|
|
200
|
+
| :white_check_mark: Multi-account | :white_check_mark: Market hours check | :hourglass: Performance analytics |
|
|
201
|
+
| :white_check_mark: Trailing SL & BE | :white_check_mark: Session summary | :hourglass: Trade journal export |
|
|
202
|
+
| :white_check_mark: Encrypted sessions | :white_check_mark: Auto-update | :hourglass: Web dashboard |
|
|
276
203
|
|
|
277
204
|
---
|
|
278
205
|
|
|
@@ -281,7 +208,7 @@ Features:
|
|
|
281
208
|
<div align="center">
|
|
282
209
|
|
|
283
210
|
[](https://discord.gg/UBKCERctZu)
|
|
284
|
-
[](https://github.com/HedgeQuantX/
|
|
211
|
+
[](https://github.com/HedgeQuantX/HQX-CLI/issues)
|
|
285
212
|
|
|
286
213
|
</div>
|
|
287
214
|
|
package/bin/cli.js
CHANGED
|
@@ -51,17 +51,6 @@ program
|
|
|
51
51
|
console.log(`HedgeQuantX CLI v${pkg.version}`);
|
|
52
52
|
});
|
|
53
53
|
|
|
54
|
-
program
|
|
55
|
-
.command('test-latency')
|
|
56
|
-
.description('Test order latency (requires active Rithmic connection)')
|
|
57
|
-
.option('-s, --symbol <symbol>', 'Symbol to test (e.g., NQ, ES, MNQ)', 'NQ')
|
|
58
|
-
.option('-c, --count <count>', 'Number of test iterations', '10')
|
|
59
|
-
.option('-p, --propfirm <propfirm>', 'Propfirm to use', 'apex')
|
|
60
|
-
.action(async (options) => {
|
|
61
|
-
const { runLatencyTest } = require('../src/commands/test-latency');
|
|
62
|
-
await runLatencyTest(options);
|
|
63
|
-
});
|
|
64
|
-
|
|
65
54
|
// Handle -u flag before parsing commands
|
|
66
55
|
if (process.argv.includes('-u') || process.argv.includes('--update')) {
|
|
67
56
|
const { execSync } = require('child_process');
|
package/dist/lib/api.jsc
CHANGED
|
Binary file
|
package/dist/lib/api2.jsc
CHANGED
|
Binary file
|
package/dist/lib/core.jsc
CHANGED
|
Binary file
|
package/dist/lib/core2.jsc
CHANGED
|
Binary file
|
package/dist/lib/data.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';(function(_0x43451f,_0x12bd94){const _0x2b0cba={_0x541cde:0x539,_0x298819:0x59f,_0x1f0f5a:0x59a,_0x4ad6bf:0x56e,_0x5595cd:0x612,_0x467659:0x694,_0xfb0036:0x54a,_0x5dc8f7:0x5aa,_0x529c4f:0x55c,_0xf7edc4:0x5bd,_0x395d1e:0x59c,_0x504e75:0x4c1,_0x4d9136:0x516,_0x40f1dd:0x482,_0x4ef307:0x4b8,_0x11adda:0x3f4,_0x107849:0x4a5,_0x617d78:0x428,_0x5f023b:0x517,_0x541ff1:0x5dc,_0x2206f6:0x575,_0x3a5817:0x5ba},_0x5ece06={_0x38edb3:0x26b};function _0x27924d(_0x479299,_0x5469fe,_0x10d64c,_0xc5a1a0){return _0x3af8(_0xc5a1a0-_0x5ece06._0x38edb3,_0x10d64c);}function _0x4dd534(_0x20b698,_0x24412d,_0x10ef12,_0xcb1880){return _0x3af8(_0x10ef12-0x389,_0x20b698);}const _0x5b077c=_0x43451f();while(!![]){try{const _0x47ae5b=-parseInt(_0x4dd534(_0x2b0cba._0x541cde,_0x2b0cba._0x298819,_0x2b0cba._0x1f0f5a,_0x2b0cba._0x4ad6bf))/(0xfa1+0x1f20+-0x2ec0)*(parseInt(_0x4dd534(_0x2b0cba._0x5595cd,0x5f4,0x620,_0x2b0cba._0x467659))/(0x3*0x633+-0x2432*0x1+0x119b))+parseInt(_0x4dd534(_0x2b0cba._0xfb0036,0x5f8,_0x2b0cba._0x5dc8f7,_0x2b0cba._0x529c4f))/(-0x1*0xf29+0x67*-0x35+0x247f)+-parseInt(_0x4dd534(_0x2b0cba._0xf7edc4,_0x2b0cba._0x395d1e,0x55a,0x50d))/(-0xdc5+0xb3*-0x7+0x6*0x31d)*(parseInt(_0x27924d(_0x2b0cba._0x504e75,_0x2b0cba._0x4d9136,0x4f8,0x4cb))/(-0x1e0d+0x141d+0x9f5))+parseInt(_0x27924d(0x46f,_0x2b0cba._0x40f1dd,0x52e,_0x2b0cba._0x4ef307))/(-0x2*-0x12fd+-0x1*-0x160e+-0x3c02)*(parseInt(_0x4dd534(0x65b,0x5aa,0x621,0x5ba))/(0x15f2*0x1+-0xe1d+-0x9*0xde))+parseInt(_0x27924d(_0x2b0cba._0x11adda,0x4b9,0x42e,0x442))/(0x227+-0x19e2+0xb*0x229)+parseInt(_0x27924d(0x44a,0x41f,_0x2b0cba._0x107849,_0x2b0cba._0x617d78))/(0x49d*0x1+-0x1*-0x21ce+-0x2*0x1331)+-parseInt(_0x4dd534(_0x2b0cba._0x5f023b,0x5f1,0x584,_0x2b0cba._0x541ff1))/(-0x3f8+0x9*0x107+0x3*-0x1bf)*(parseInt(_0x4dd534(0x5a2,0x5f0,_0x2b0cba._0x2206f6,_0x2b0cba._0x3a5817))/(-0x1*-0x90a+0x20c3+0x2*-0x14e1));if(_0x47ae5b===_0x12bd94)break;else _0x5b077c['push'](_0x5b077c['shift']());}catch(_0x5ad7f2){_0x5b077c['push'](_0x5b077c['shift']());}}}(_0x2ea1,0x2d*-0x7cd1+-0x121d9+0x22e657));const EventEmitter=require(_0x90d980(0x451,0x3f3,0x480,0x415)),{HubConnectionBuilder,HttpTransportType,LogLevel}=require(_0x90d980(0x3ba,0x40f,0x353,0x433)+_0x3794d0(-0x239,-0x1d9,-0x1eb,-0x1ed)),_0x59d736={};_0x59d736[_0x3794d0(-0x1d6,-0x198,-0x14d,-0x117)]='api.topste'+'px.com';const _0x4ce9ec={};_0x4ce9ec[_0x90d980(0x41b,0x4a1,0x3ae,0x3f5)]='api.alphaf'+_0x3794d0(-0xca,-0x11b,-0xd0,-0x119)+_0x3794d0(-0x211,-0x1c6,-0x197,-0x18a);const _0x574273={};_0x574273['gatewayApi']=_0x3794d0(-0x1a0,-0x1a0,-0x1a2,-0x146)+_0x3794d0(-0x262,-0x1dd,-0x1e6,-0x213)+_0x90d980(0x3df,0x393,0x451,0x3ab)+'m';const _0x5f1d48={};_0x5f1d48[_0x3794d0(-0x207,-0x198,-0x13d,-0x180)]=_0x90d980(0x3c3,0x38f,0x441,0x3d8)+_0x90d980(0x448,0x48a,0x3e6,0x46d)+_0x3794d0(-0xed,-0x15e,-0x1de,-0x143);const _0x2d3f9e={};_0x2d3f9e[_0x90d980(0x41b,0x47b,0x3f0,0x494)]=_0x90d980(0x45e,0x3fd,0x400,0x4de)+_0x3794d0(-0x241,-0x207,-0x24c,-0x214)+_0x3794d0(-0x17e,-0x1b3,-0x226,-0x231);const _0x880a09={};_0x880a09[_0x3794d0(-0x127,-0x198,-0x1e2,-0x18a)]=_0x3794d0(-0x1a7,-0x172,-0x112,-0xff)+_0x90d980(0x3fd,0x461,0x3f4,0x42f)+'com';const _0x386f08={};_0x386f08['gatewayApi']=_0x90d980(0x429,0x430,0x4a1,0x3aa)+_0x3794d0(-0x164,-0x108,-0xc9,-0x167)+_0x3794d0(-0x14e,-0x19c,-0x150,-0x19e);const _0x1a4329={};_0x1a4329['gatewayApi']=_0x3794d0(-0x1a7,-0x160,-0x132,-0x187)+'uresdesk.p'+_0x90d980(0x3df,0x399,0x3a8,0x358)+'m';const _0x234aab={};_0x234aab['gatewayApi']=_0x90d980(0x3d0,0x39c,0x34f,0x351)+'ders.proje'+'ctx.com';const _0x400ff6={};_0x400ff6[_0x3794d0(-0x1d9,-0x198,-0x20d,-0x169)]=_0x90d980(0x476,0x47d,0x3f3,0x4a2)+'res.projec'+_0x90d980(0x46a,0x43a,0x430,0x4a1);const _0x19d86f={};_0x19d86f['gatewayApi']=_0x3794d0(-0x127,-0x166,-0x138,-0x140)+_0x3794d0(-0xcc,-0x114,-0x14f,-0xd5)+_0x90d980(0x48e,0x4c4,0x43e,0x488)+'tx.com';function _0x90d980(_0x320587,_0x1e049f,_0x2d5b9d,_0x34265a){const _0x10d105={_0x50bf46:0x1fc};return _0x3af8(_0x320587-_0x10d105._0x50bf46,_0x1e049f);}function _0x3794d0(_0x2afe6a,_0x140b43,_0x1d44b4,_0x10220e){return _0x3af8(_0x140b43- -0x3b7,_0x1d44b4);}const _0x5c77b3={};function _0x2ea1(){const _0x44e35d=['Dg9RqwO','AxL0Dhy','Ee9gvei','BwLU','yxbPlMz1DhvYzq','DgvK','B3bLBG','yxbPlMDVyxrMDq','ChrPB25Z','yMLK','su94suC','BwvZC2fNzq','vwPzqKm','ihWG','y29UBMvJDgLVBG','DM9SDw1L','CMvJB25Uzwn0qq','DgLUzW','C3LTyM9StMfTzq','r2f0zxDHEurLCa','C3rHCNq','C3PStLO','AxrL','zMfPBgvKoIa','Dxzdshy','DeHHBMrSzxjZ','u3fQvK4','C2HjCe0','vM9xyu4','B250CMfJDfrYyq','CMn5rvC','yxbPlMjSDxnREq','y3rbDhrLBxb0CW','DhjHBNnWB3j0','BgfZDfbYAwnL','yMX1C2T5','C3D4y2G','C3f1r1K','Ec5WCM9Qzwn0Ea','mJe1ote0ohzgA1Desa','DgLJAW','AwPhBMO','B3bTzuO','yxbPlMjSDwvNDq','tM90ignVBM5LyW','C3rYAw5N','CMvWBgfJzq','zxzLBNrZ','C3LTyM9Sswq','yxbPlNrOzwz1Da','Dennt3u','lMnVBq','r1bzruu','wKrMvha','B250CMfJDff1BW','yxbPlNrYywrLAq','DgLJA3rPy2T0CG','yxbPlNr4m2z1BG','nty3mZu1whzpEuTw','ChjVCgzPCM1lzq','yxbPlNrYywrLza','zNv0DxjLC19LBa','uwPUsLy','zNv0DxjLCY5WCG','BwfYA2v0','u3vIC2nYAwjLqW','CMzxrK4','yY50B3bZDgvWEa','rNvpvLe','sKT0wKS','B250CMfJDe1HCG','s2jcshC','DhGUy29T','DhjHzgvPzNK','C3rVCa','y0vgEeK','nNWY','B3v0sw5nAwXSAq','Dhj5q291BNq','v2fYBMLUzW','Dw1L','yxrPB24','CNrJlG','zNHPzNK','yxbPlMu4zNv0Dq','C3rHDgu','zgvZ','qwnXq04','ywrK','Ahr0Chm6lY8','Bwf4uMvJB25Uzq','CMvJB25Uzwn0zq','y1DltKC','D3LqCeO','yxjRzxrezxb0Aa','vLPMthm','sw5ezLK','A2vLCefSAxzLsq','zNKUChjVAMvJDa','y2ToBLi','AxnbCNjHEq','p2fJy2vZC190BW','z1riv2G','zw1PDa','DgLJuMvJB25Uzq','u3vIC2nYAwjLia','v2Tgvfa','wMnszfy','CMvZlNbYB2PLyW','zgf5DhjHzgvYCW','uwTHrKK','yxbPlNrVCg9Uzq','DgvZ','mty2BerTq0nk','mtreBe1YDvi','r2f0zxDHEvf1BW','BM93','rMTAveW','Dxr1CMvZlNbYBW','Cg93','ChjPy2u','tMvZr2e','DhrLBxb0CW','zNvUzgLUz19MDq','C2TLAwW','yxjKAwfUzNv0Dq','Dg9WC3rLCa','vw5ZDwjZy3jPyG','BfjRsNC','Dg9tDhjPBMC','Dg9Rzw4','DhvYzxm','B2PLy3r4lMnVBq','AgLNAa','sfHyq04','Dg9mB3DLCKnHCW','zunVBNrYywn0uq','DhvYzxmUChjVAG','zxjYB3i','r0fzzLG','zw50','v2DRr2m','zgvWDgG','lMnVBs9ODwjZlW','uKnru3K','r2f0zxDHEvrYyq','DhzKvKK','wgn3ufy','zvfzsfq','ugXZt2W','Dw5RBM93BG','EMzUCfC','mxWZFdb8nhWY','C3LTyM9S','y2HHBMDLugvYyW','Bufevei','uwvOsLm','zhLnAu8','yxKUChjVAMvJDa','Dg9Wx29Uzv9MDq','BM1gAhm','A0Xdy3q','DhjHzgvKyxK','C2vJB25KCW','C3vIC2nYAxb0Aq','r1Hqr3i','Aw52B2TL','y2HHBMDL','v2vIu29JA2v0CW','z2z1DhvYzxmUCa','zKXVCM0','mtiWnZi2nJnmuK5Qz3e','qg1Py3jVC29MDa','mhWZFdr8nxWXFa','rfz1EeS','re5Pzvi','DvbLuw0','r2Dlvum','Ag9Syv9WCMLTzq','yNvPBgq','yxbPlMX1y2LKDa','yxbPlMj1BgvUBW','zfDwtKG','ywH2wLK','Dw5ZDwjZy3jPyG','AhLrruu','CMDUwNK','Bg93','l2H1yNmVBwfYAW','yxnR','s1joCeK','mJHuAM9Yvvm','C2vSBa','zgvSzxrL','yxbPlMrHExrYyq','CMvZ','shvIvxjS','mtaYmZm4ndHHDxPwyuy','C3rHy2S','DgLTzxn0yw1W','y2T0CMfKzxiUCa','y29UBMvJDa','B2DNAw5N','qNvjDKq','l3nPz25HBhi','CevZzKG','CgD6rLm','Ahr0Chm6lY9YDa','wfnQy0S','CM9Qzwn0Ec5JBW','ywXWAgfFzNv0Dq','zu1gzwe','z29HDf9MDxr1CG','ywrLCG','C2vSAxrLlNbYBW','BNrLCNzHBeLUtq','AwXSAxnLy29Uza','y29UzMLNDxjLta','mta1mdaWnZjrvLncDhy','svnIzMu','EgPyyMO','sMzWA1G','y29UDhjHy3rjza','AMvJDhGUy29T','C0Lft0i','CMfKAw5NlNbYBW','DKnLsgu','x3nLDhvWrxzLBG','CMfKzxm','ruviu0e','rwPJquK','x2DLDe1HCMTLDa','yMvZDefZAW','mZbYueDmufq','C3bSAxq','twfYA2v0rgf0yq','DhGZx2z1BMrPBG','yMvZDejPza','AuXVBhq','lNbYB2PLy3r4lG','B25JBg9Zzq','yMvbBgW','Ec5JB20','rMvLza','x3jLC3vIC2nYAq','Aw1LlNbYB2PLyW','DeH4weO','ENbpqLa','DhLWzq','DMnsANu','zgLZy29UBMvJDa','DM1kwwu','zg9T','q29UBMvJDgvK','z2v0vgLTzq','mZu3m1j0zurpDG','se5mrLO','uK5dAfe','C3vIC2nYAwjLza','DwPAueq','C3vIC2nYAwjL','yxbPlNrPy2T0Aq','z2v0u3vIC2nYAq','y2XLyxi','C2TPCe5Lz290Aq','zwn0Ec5JB20','vu9ZBfK','mhWYFdr8mxWZ','D2L0AfvYBa','z2f0zxDHEufWAq','y29UBMvJDgvK','nde2nZC4owXiwLbyuW','B25Z','ChjLDMLVDxnszq','Aw5N','BhvJAwrFDhjHza'];_0x2ea1=function(){return _0x44e35d;};return _0x2ea1();}_0x5c77b3[_0x3794d0(-0x136,-0x198,-0x110,-0x1ab)]=_0x90d980(0x426,0x461,0x4a5,0x479)+_0x3794d0(-0x1de,-0x1cf,-0x15e,-0x236)+_0x3794d0(-0x204,-0x1c6,-0x152,-0x1fd);const _0x40ce19={};_0x40ce19[_0x3794d0(-0x1fb,-0x198,-0x15d,-0x20d)]='api.fxify.'+'projectx.c'+'om';const _0x1081fb={};function _0x3af8(_0x2ce87c,_0x3c5fe1){_0x2ce87c=_0x2ce87c-(-0x59b+-0xfac*0x1+-0x16f7*-0x1);const _0x4c9c89=_0x2ea1();let _0x5cc6af=_0x4c9c89[_0x2ce87c];if(_0x3af8['qZManE']===undefined){var _0x37a32d=function(_0x6d813b){const _0x56fc66='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3f9b84='',_0x3ab19b='';for(let _0x9f34e2=-0x1*-0x11a7+0x4*0x18b+0x3*-0x7f1,_0x417b35,_0x17cd87,_0x245b96=0x5*-0x74f+0x4ba+0xb5*0x2d;_0x17cd87=_0x6d813b['charAt'](_0x245b96++);~_0x17cd87&&(_0x417b35=_0x9f34e2%(0x1e37+0xa*-0x161+-0x1069)?_0x417b35*(-0x47f+0x2b6+-0x1*-0x209)+_0x17cd87:_0x17cd87,_0x9f34e2++%(0x7*0x25+-0x19cc+-0x1*-0x18cd))?_0x3f9b84+=String['fromCharCode'](0x1*-0x590+-0x41d+-0x2*-0x556&_0x417b35>>(-(-0xc0+-0x2467*-0x1+-0x23a5*0x1)*_0x9f34e2&0x40c+-0xa6b*-0x1+-0xe71*0x1)):-0x1*0x1565+0x260e+0x1*-0x10a9){_0x17cd87=_0x56fc66['indexOf'](_0x17cd87);}for(let _0x3caefc=-0x62+-0x4f9*0x3+0x1*0xf4d,_0x48ecc8=_0x3f9b84['length'];_0x3caefc<_0x48ecc8;_0x3caefc++){_0x3ab19b+='%'+('00'+_0x3f9b84['charCodeAt'](_0x3caefc)['toString'](-0x862*0x1+0x1f4a+-0x16d8))['slice'](-(0x290+0x1da2+0x50*-0x67));}return decodeURIComponent(_0x3ab19b);};_0x3af8['PTdPim']=_0x37a32d,_0x3af8['kNvvBN']={},_0x3af8['qZManE']=!![];}const _0x38ccf9=_0x4c9c89[0x1d13+-0x15f*0x3+0x27f*-0xa],_0x23c90e=_0x2ce87c+_0x38ccf9,_0x27ff12=_0x3af8['kNvvBN'][_0x23c90e];return!_0x27ff12?(_0x5cc6af=_0x3af8['PTdPim'](_0x5cc6af),_0x3af8['kNvvBN'][_0x23c90e]=_0x5cc6af):_0x5cc6af=_0x27ff12,_0x5cc6af;}_0x1081fb[_0x3794d0(-0x1a3,-0x198,-0x1c2,-0x21a)]='api.holapr'+_0x3794d0(-0x23a,-0x1b0,-0x1b8,-0x1a3)+_0x3794d0(-0x11d,-0x149,-0x10c,-0x15a);const _0x336e68={};_0x336e68[_0x90d980(0x41b,0x3bf,0x480,0x413)]=_0x90d980(0x491,0x4bc,0x423,0x4bd)+_0x3794d0(-0xe1,-0x152,-0xd1,-0x16a)+_0x3794d0(-0xe1,-0x10d,-0x185,-0xf0);const _0x180321={};_0x180321['gatewayApi']='api.fundin'+_0x90d980(0x3b7,0x3b4,0x3c5,0x33c)+_0x3794d0(-0x1be,-0x1d4,-0x1ee,-0x1e2)+'m';const _0x20a8f0={};_0x20a8f0[_0x3794d0(-0x19c,-0x198,-0x219,-0x1ec)]=_0x3794d0(-0xdd,-0x158,-0x1bf,-0x105)+'ding.proje'+'ctx.com';const _0x12e638={};_0x12e638[_0x90d980(0x41b,0x3b4,0x446,0x4a5)]=_0x3794d0(-0x1da,-0x1f1,-0x1c2,-0x177)+_0x90d980(0x3ef,0x43b,0x378,0x3ec)+'jectx.com';const _0x384937={};_0x384937[_0x90d980(0x41b,0x47f,0x3bf,0x3b6)]=_0x90d980(0x459,0x4d9,0x477,0x4d9)+_0x3794d0(-0x13d,-0x12f,-0x19e,-0x114)+_0x90d980(0x400,0x3aa,0x3a1,0x43b);const _0x5b8c8c={};_0x5b8c8c[_0x3794d0(-0xe7,-0x113,-0x12e,-0x89)]=_0x59d736,_0x5b8c8c[_0x90d980(0x3e0,0x3a5,0x367,0x45e)+_0x90d980(0x3d1,0x3e1,0x37d,0x3ef)]=_0x4ce9ec,_0x5b8c8c[_0x3794d0(-0x12e,-0x159,-0xd9,-0x18a)+_0x90d980(0x3e3,0x3c0,0x459,0x3ac)]=_0x574273,_0x5b8c8c['bulenox']=_0x5f1d48,_0x5b8c8c[_0x3794d0(-0x1ae,-0x203,-0x216,-0x211)]=_0x2d3f9e,_0x5b8c8c[_0x90d980(0x445,0x3e0,0x403,0x3cd)]=_0x880a09,_0x5b8c8c[_0x3794d0(-0x22c,-0x1d1,-0x23c,-0x169)+'es']=_0x386f08,_0x5b8c8c['futures_de'+'sk']=_0x1a4329,_0x5b8c8c[_0x3794d0(-0xad,-0x124,-0xa5,-0x19c)]=_0x234aab,_0x5b8c8c['e8_futures']=_0x400ff6,_0x5b8c8c['blue_guard'+'ian']=_0x19d86f,_0x5b8c8c[_0x90d980(0x45f,0x48d,0x42b,0x4c3)+_0x3794d0(-0x108,-0x17b,-0x196,-0x161)]=_0x5c77b3,_0x5b8c8c[_0x90d980(0x475,0x46d,0x42d,0x3eb)]=_0x40ce19,_0x5b8c8c[_0x90d980(0x3c0,0x3f1,0x3ff,0x3aa)]=_0x1081fb,_0x5b8c8c[_0x90d980(0x3ad,0x42b,0x3c4,0x402)+_0x3794d0(-0x160,-0x10e,-0x99,-0x95)]=_0x336e68,_0x5b8c8c[_0x3794d0(-0x189,-0x116,-0x13a,-0x173)+_0x3794d0(-0x119,-0x10e,-0x12e,-0xf0)]=_0x180321,_0x5b8c8c[_0x3794d0(-0x16f,-0x1b9,-0x189,-0x223)+'g']=_0x20a8f0,_0x5b8c8c[_0x90d980(0x421,0x41d,0x3e6,0x3be)+_0x90d980(0x420,0x3c2,0x47a,0x407)]=_0x12e638,_0x5b8c8c[_0x3794d0(-0x175,-0x148,-0x171,-0xca)]=_0x384937;const PROPFIRMS=_0x5b8c8c;class MarketDataFeed extends EventEmitter{constructor(_0x1a4f54={}){const _0x4ea4eb={_0x2a2128:0x7c,_0x10f8fa:0xe0,_0x36b014:0xe3,_0x671c92:0xba,_0x367f51:0x1d8,_0x56aa0f:0x4b,_0x7dcf1a:0x165,_0x5d5aef:0xdc,_0x4599b2:0x9a,_0x279cb3:0x10f,_0x279fed:0x17a,_0x3c745a:0x148,_0x2dae44:0xd5,_0x20202e:0x14f,_0x4c8926:0x172,_0x295bcf:0x101,_0x48ea6c:0x17f,_0x50e69a:0xa2,_0x3b4967:0xe5,_0x1ec9b3:0x84,_0x2253b6:0x18c},_0x506270={_0x4a16c7:0x6a,_0x2d7691:0x62},_0x278e55={_0x632352:0x337},_0x5921cc={};_0x5921cc[_0x25cbab(0x101,0x177,0x17e,0x13f)]=_0x25cbab(_0x4ea4eb._0x2a2128,0xfa,0x84,_0x4ea4eb._0x10f8fa)+_0x50773c(-_0x4ea4eb._0x36b014,-0x8a,-0x137,-_0x4ea4eb._0x671c92),_0x5921cc[_0x50773c(-0x173,-_0x4ea4eb._0x367f51,-0x190,-0x122)]=_0x50773c(-0xb1,-0x8a,-0x101,-_0x4ea4eb._0x56aa0f);const _0x29a8a5=_0x5921cc,_0x58d616=_0x29a8a5['XcwPV'][_0x50773c(-0x159,-0xe2,-_0x4ea4eb._0x7dcf1a,-_0x4ea4eb._0x5d5aef)]('|');function _0x25cbab(_0x26999f,_0x8c0d31,_0x2e74be,_0x2e6d1e){return _0x90d980(_0x2e74be- -_0x278e55._0x632352,_0x2e6d1e,_0x2e74be-0xf5,_0x2e6d1e-0x49);}function _0x50773c(_0x3120bd,_0x354204,_0x4a6c74,_0x151d8e){return _0x3794d0(_0x3120bd-_0x506270._0x4a16c7,_0x3120bd-_0x506270._0x2d7691,_0x354204,_0x151d8e-0x0);}let _0x532b59=-0x3b5*-0x1+-0x1*0xd56+-0x1*-0x9a1;while(!![]){switch(_0x58d616[_0x532b59++]){case'0':super();continue;case'1':this[_0x25cbab(_0x4ea4eb._0x4599b2,0x62,0x7b,0x9c)+'ons']=new Set();continue;case'2':this['maxReconne'+_0x50773c(-_0x4ea4eb._0x279cb3,-_0x4ea4eb._0x279fed,-_0x4ea4eb._0x3c745a,-_0x4ea4eb._0x2dae44)]=0x168d+-0x1709*0x1+0x81*0x1;continue;case'3':this['propfirmKe'+'y']=(_0x1a4f54['propfirm']||_0x29a8a5[_0x25cbab(0x48,0x48,0xa7,0x75)])[_0x25cbab(0x130,_0x4ea4eb._0x20202e,_0x4ea4eb._0x4c8926,0x122)+'e']()[_0x50773c(-_0x4ea4eb._0x295bcf,-_0x4ea4eb._0x48ea6c,-_0x4ea4eb._0x50e69a,-0x168)](/\s+/g,'_');continue;case'4':this['connection']=null;continue;case'5':this[_0x25cbab(0x142,0xfc,_0x4ea4eb._0x3b4967,_0x4ea4eb._0x1ec9b3)]=![];continue;case'6':this[_0x50773c(-0x11f,-_0x4ea4eb._0x2253b6,-0x174,-0x154)+'ttempts']=0x2673+-0x1d41*-0x1+-0x4d6*0xe;continue;}break;}}[_0x3794d0(-0x238,-0x1be,-0x22a,-0x190)+_0x3794d0(-0x207,-0x1e1,-0x1e6,-0x1ce)](_0x46268d){const _0x2e7c3b={_0x2e62f6:0x9b,_0x5c0d6b:0x114,_0x1c738d:0x63,_0x1c393f:0x56a,_0x2b73ea:0x4f1,_0x4f1d46:0x56f,_0x470dd8:0x5e1,_0x392bc1:0x102,_0x5945fd:0xf6,_0x4ab782:0xda,_0x442707:0x68,_0x15849e:0xb0,_0x51ef2f:0xd8,_0x3b36cf:0x115,_0x5665c4:0x90,_0x283689:0xf4,_0x51e565:0xcb,_0x5a8e37:0x656,_0x1a4e23:0x673,_0x1be1f5:0x641,_0x21fc44:0x572,_0x4f3615:0xba,_0x52e3cb:0xe9,_0x58cdf6:0x5dc,_0x1ceaa1:0x668,_0x10547c:0x80,_0x1d2792:0x632,_0x508992:0x59c,_0x2c330d:0x589,_0x3290e6:0x648,_0x350392:0x1f,_0x752433:0x38,_0x18e6a8:0x63,_0x584798:0xb5,_0x24518e:0x5d2,_0x6f4c4b:0xde,_0x34bf3a:0x21,_0x165311:0x16,_0x543ed4:0x3a,_0x206578:0x5c0,_0x59120c:0x538,_0x447ee2:0xf4,_0x47c2d6:0xb4,_0xc5f22b:0x75,_0x3c3b73:0xd2,_0x1f7231:0xa7,_0x1f0092:0xc5,_0x19e074:0xdf,_0x2ca729:0x56f,_0x6cfbab:0x5bb,_0x4b8e8b:0x5ba},_0x41ebf2={_0x58c3ee:0x39c,_0x42b7a0:0x1b6,_0x5b63e1:0x1ab},_0x4878f7={_0x9434b5:0x17b},_0x295731={};_0x295731[_0x340575(0xef,_0x2e7c3b._0x2e62f6,_0x2e7c3b._0x5c0d6b,_0x2e7c3b._0x1c738d)]='unknown',_0x295731[_0x235d40(_0x2e7c3b._0x1c393f,_0x2e7c3b._0x2b73ea,_0x2e7c3b._0x4f1d46,_0x2e7c3b._0x470dd8)]=function(_0x5133e2,_0x570af0){return _0x5133e2+_0x570af0;},_0x295731[_0x340575(0xa5,_0x2e7c3b._0x392bc1,_0x2e7c3b._0x5945fd,0x15c)]=_0x340575(_0x2e7c3b._0x4ab782,0x6c,0x84,_0x2e7c3b._0x442707)+'ed';function _0x235d40(_0x1b26e7,_0x211eb1,_0x2aa497,_0x181114){return _0x3794d0(_0x1b26e7-0x1e0,_0x1b26e7-0x758,_0x181114,_0x181114-_0x4878f7._0x9434b5);}_0x295731[_0x340575(0x142,0xfb,_0x2e7c3b._0x15849e,0x125)]=_0x340575(0x112,_0x2e7c3b._0x51ef2f,_0x2e7c3b._0x3b36cf,0xb6),_0x295731[_0x340575(0x13b,0xc4,_0x2e7c3b._0x5665c4,0x44)]='https://rt'+_0x340575(0x12f,0xc9,_0x2e7c3b._0x283689,_0x2e7c3b._0x51e565)+_0x235d40(_0x2e7c3b._0x5a8e37,_0x2e7c3b._0x1a4e23,0x611,0x6c4)+_0x235d40(0x607,_0x2e7c3b._0x1be1f5,0x648,0x611);const _0x233c87=_0x295731,_0x5c6902=PROPFIRMS[_0x46268d]||PROPFIRMS['topstep'];if(_0x5c6902[_0x235d40(0x5c0,_0x2e7c3b._0x21fc44,0x580,0x5ef)]){if(_0x340575(0xfd,_0x2e7c3b._0x4f3615,_0x2e7c3b._0x52e3cb,0x49)===_0x235d40(0x659,_0x2e7c3b._0x58cdf6,_0x2e7c3b._0x1ceaa1,0x68e)){this[_0x340575(0xd,_0x2e7c3b._0x10547c,0x24,0x4)]=![];let _0x1a7acb=_0x233c87[_0x235d40(_0x2e7c3b._0x58cdf6,_0x2e7c3b._0x1d2792,_0x2e7c3b._0x508992,0x5f3)];if(_0x47aadc){_0x1a7acb=_0x474348[_0x235d40(0x5d2,0x648,_0x2e7c3b._0x2c330d,0x647)]||_0x251293[_0x235d40(_0x2e7c3b._0x3290e6,0x62c,0x6c4,0x5df)]();if(_0xffdd96[_0x340575(-_0x2e7c3b._0x350392,_0x2e7c3b._0x752433,_0x2e7c3b._0x18e6a8,_0x2e7c3b._0x584798)])_0x1a7acb+=_0x233c87[_0x235d40(0x56a,0x52e,0x540,_0x2e7c3b._0x24518e)](_0x340575(_0x2e7c3b._0x6f4c4b,0x93,0x3f,_0x2e7c3b._0x34bf3a),_0x3bb77c[_0x340575(_0x2e7c3b._0x165311,_0x2e7c3b._0x752433,-_0x2e7c3b._0x543ed4,0xbd)]['split']('\x0a')[0x1ed7*0x1+0xc33+0x2*-0x1585]);}this[_0x340575(0x107,0xed,0x14f,0x146)](_0x233c87['skeil'],new _0x5e2301(_0x1a7acb));}else{const _0x556ac4=_0x5c6902[_0x235d40(_0x2e7c3b._0x206578,0x5b2,0x603,_0x2e7c3b._0x59120c)][_0x340575(_0x2e7c3b._0x447ee2,_0x2e7c3b._0x47c2d6,_0x2e7c3b._0xc5f22b,_0x2e7c3b._0x3c3b73)](/^api\./,_0x233c87[_0x340575(0x86,0xfb,_0x2e7c3b._0x1f7231,0xc6)]);return _0x340575(_0x2e7c3b._0x1f0092,_0x2e7c3b._0x19e074,_0x2e7c3b._0x19e074,0x101)+_0x556ac4+(_0x235d40(_0x2e7c3b._0x2ca729,_0x2e7c3b._0x6cfbab,0x5d5,0x50a)+'et');}}function _0x340575(_0x2030d1,_0x405d94,_0x5573f9,_0x2c3f6b){return _0x90d980(_0x405d94- -_0x41ebf2._0x58c3ee,_0x2030d1,_0x5573f9-_0x41ebf2._0x42b7a0,_0x2c3f6b-_0x41ebf2._0x5b63e1);}return _0x233c87[_0x235d40(0x605,0x599,_0x2e7c3b._0x4b8e8b,0x673)];}async[_0x3794d0(-0x1d3,-0x1dc,-0x24f,-0x15b)](_0x3853fe,_0x596a80,_0x65f2e2=null){const _0x12af99={_0x58155f:0x452,_0x3929a8:0x39c,_0x146e5e:0x382,_0x17a533:0x344,_0x5bd746:0x3ba,_0x4fab07:0x412,_0x5d804d:0x3fa,_0x2dc2ca:0x423,_0x124c95:0x3ee,_0x424a5e:0x372,_0x2e3310:0x310,_0x583000:0x357,_0x4b6ef7:0x303,_0x4fd021:0x321,_0x47af32:0xb8,_0x2839a6:0x1c,_0x5360b7:0xd,_0x441e45:0x45,_0x11725:0x8f,_0x1c7bc2:0xbc,_0x456e8f:0x67,_0x38be6d:0x64,_0x3d216a:0x78,_0x576cd1:0x3d7,_0x28b5b1:0x3c9,_0x143431:0xab,_0xf9705c:0x9a,_0x143299:0x3d,_0x406a86:0x94,_0x1c2689:0x55,_0x527f3b:0x112,_0x5f4df4:0x31b,_0x29c5ec:0x32d,_0x126636:0x104,_0x401636:0x4,_0x2d8b2c:0x2d,_0x591a9f:0x31,_0x493eec:0x36e,_0x5915c5:0x3ed,_0x59c690:0x465,_0x2af1b1:0x37,_0x3b7e80:0x7d,_0x4c0fb2:0x21,_0x57e99a:0x404,_0x1f13c2:0x12,_0x209b8f:0x3f,_0x3a21f1:0x3e,_0x22c165:0x21,_0x2e48f7:0x3eb,_0x168a97:0x88,_0x4bf8f2:0x42,_0x4652c9:0x9a,_0x5e2523:0xa6,_0x2315db:0x2e4,_0x4ed418:0x3ae,_0x4943b9:0x47,_0x314218:0x91,_0x2b67ac:0x37,_0x153db2:0x2c,_0x53ca33:0xcd,_0x4d4a4b:0x8a,_0x4b11a8:0x7a,_0x1c7cc7:0x35f,_0x410093:0x39a,_0x41c3c9:0x86,_0x4124fd:0x42,_0x542c63:0x10,_0x5a9d80:0xaf,_0x35b1ec:0x396,_0x53766b:0x3ce,_0x287770:0x3eb,_0x27eedb:0x3d3,_0x61371:0x3fa,_0x48d80a:0x72,_0x3296d5:0x122,_0x3f1919:0x11b,_0x345ade:0x8,_0x176750:0x19,_0x383caa:0x62,_0x5d988a:0x55,_0x4cf080:0xa3,_0x5c2f68:0xb,_0x21345f:0x26,_0x44c0ca:0x51,_0x1431c0:0xa3,_0x5d8738:0x77,_0x849970:0xe6,_0x43e809:0x37e,_0x2a2cab:0x3d9,_0x5afc48:0x3c5,_0x5487fa:0xec,_0x171fff:0xa0,_0x51dceb:0x388,_0x452922:0x92,_0x28b1c9:0x95,_0x56af63:0xe7,_0x2e8c2:0x59,_0x47f9fc:0x331,_0x429941:0x42d,_0x240735:0x3c,_0x2cb6fb:0x128,_0x32e862:0x331,_0x521ff0:0x395,_0x2d2983:0x31f,_0x515173:0x3b8,_0x4d7fa9:0x22,_0x3837ca:0x29,_0x1fea9c:0x2a,_0x3c60c5:0x57,_0x578108:0x3f0,_0x388354:0x3f5,_0x4c30f4:0x373,_0x52eb01:0x6e,_0xa1bdc6:0x35f,_0x2da028:0x396,_0x495199:0x3fc,_0x1aa3e3:0x387,_0x33474f:0x3a8},_0x3c0e0e={_0x210727:0x5e6,_0x1db178:0x6ac,_0x26cffe:0x5d1,_0x484470:0x5de,_0x2796be:0x66e,_0x28137b:0x6a7,_0x56a075:0x699,_0x26557a:0x658,_0x3c68cf:0x69d,_0x538b31:0x614,_0x17b770:0x6b4,_0x43441a:0x664,_0x49f41c:0x692,_0x2fcccd:0x62a,_0xee63eb:0x590,_0x43217a:0x65e,_0x3026d3:0x683,_0x5da89e:0x6aa,_0x5f53b7:0x607,_0x1eecaf:0x59e,_0x2d446e:0x598,_0x17c1a6:0x658,_0x3fe4e2:0x601},_0x5446ac={_0x6f59db:0x122,_0x52d986:0x26e,_0xf2cf3c:0x193},_0x3ae3ba={_0x5f0347:0x52d,_0x34d807:0x1a0},_0x5119de={_0x328c3e:0x3f9},_0xe5589d={'dnWSc':_0x4e5035(_0x12af99._0x58155f,0x3c8,_0x12af99._0x3929a8,0x39c)+_0x4e5035(_0x12af99._0x146e5e,0x3a1,_0x12af99._0x17a533,_0x12af99._0x5bd746),'gTHWh':_0x4e5035(_0x12af99._0x4fab07,0x388,0x3f9,_0x12af99._0x5d804d),'ISbfe':'pyhjc','dyMiO':function(_0x5c161c,_0x244227){return _0x5c161c>=_0x244227;},'NesGa':function(_0x13e7ee,_0x34fbba){return _0x13e7ee*_0x34fbba;},'nmFhs':function(_0x2779c9,_0x18a1b8){return _0x2779c9>=_0x18a1b8;},'WgcMq':_0x4e5035(_0x12af99._0x2dc2ca,_0x12af99._0x124c95,_0x12af99._0x424a5e,0x449),'rcyEW':_0x4e5035(_0x12af99._0x2e3310,_0x12af99._0x583000,_0x12af99._0x4b6ef7,_0x12af99._0x4fd021)+'c.topstepx'+_0xd0ef37(0x7f,0xb8,_0x12af99._0x47af32,0x113)+_0xd0ef37(-_0x12af99._0x2839a6,-_0x12af99._0x5360b7,0x69,0x3d),'GXPGr':function(_0x5077ac,_0x52a93c){return _0x5077ac(_0x52a93c);},'XrlSy':function(_0x2a8b53,_0x25623f){return _0x2a8b53!==_0x25623f;},'VSDYd':'CZlcM','eQYHT':_0x4e5035(0x410,0x396,0x412,0x346),'PlsOl':function(_0x58af4c,_0x377fd1){return _0x58af4c!==_0x377fd1;},'vLSEy':_0xd0ef37(0x64,-0x3a,_0x12af99._0x441e45,_0x12af99._0x11725),'UjYBC':_0xd0ef37(0xd8,0xbc,0xb3,0x95)};function _0xd0ef37(_0x4bd63a,_0x220604,_0x4d51c7,_0x2b663a){return _0x90d980(_0x4d51c7- -_0x5119de._0x328c3e,_0x220604,_0x4d51c7-0x38,_0x2b663a-0x106);}function _0x4e5035(_0x470ec7,_0x1d1797,_0x37bd0b,_0x3edad2){return _0x3794d0(_0x470ec7-0x44,_0x1d1797-_0x3ae3ba._0x5f0347,_0x3edad2,_0x3edad2-_0x3ae3ba._0x34d807);}if(this['connected'])return;this[_0xd0ef37(_0x12af99._0x1c7bc2,_0x12af99._0x456e8f,_0x12af99._0x38be6d,_0x12af99._0x3d216a)+'y']=_0x596a80||this[_0x4e5035(0x45d,_0x12af99._0x576cd1,_0x12af99._0x28b5b1,0x44c)+'y'],this['token']=_0x3853fe;const _0x35a452=this['_getMarket'+_0xd0ef37(0x63,-_0x12af99._0x143431,-0x27,-_0x12af99._0xf9705c)](this[_0xd0ef37(0x60,_0x12af99._0x143299,0x64,_0x12af99._0x406a86)+'y']),_0x1e4b83=_0x35a452+(_0xd0ef37(0xb3,_0x12af99._0x1c2689,0x8e,_0x12af99._0x527f3b)+'ken=')+_0xe5589d[_0x4e5035(_0x12af99._0x5f4df4,_0x12af99._0x29c5ec,0x33d,0x39e)](encodeURIComponent,this[_0xd0ef37(0xf3,0xf6,0xab,_0x12af99._0x126636)]);try{if(_0xe5589d['XrlSy'](_0xe5589d['VSDYd'],_0xd0ef37(0x45,_0x12af99._0x401636,-_0x12af99._0x2d8b2c,_0x12af99._0x591a9f))){const _0x384f62={};_0x384f62[_0x4e5035(_0x12af99._0x493eec,0x390,0x35d,0x331)+_0x4e5035(0x3df,_0x12af99._0x5915c5,_0x12af99._0x59c690,0x3b8)]=!![],_0x384f62[_0x4e5035(0x38e,0x3bd,0x37a,0x397)]=HttpTransportType[_0x4e5035(0x33d,0x330,0x311,0x2cd)],this[_0xd0ef37(0x19,0x7b,_0x12af99._0x2af1b1,0x3a)]=new HubConnectionBuilder()[_0xd0ef37(0x67,_0x12af99._0x3b7e80,_0x12af99._0x4c0fb2,-0x1f)](_0x1e4b83,_0x384f62)['withAutoma'+_0x4e5035(0x421,_0x12af99._0x57e99a,0x43c,0x42a)+'ct']({'nextRetryDelayInMilliseconds':_0x44b6ac=>{const _0x110239={_0x3e227b:0x1a8};function _0x29431(_0xdbbeee,_0x3d8b0a,_0x4a070c,_0x5e33a2){return _0x4e5035(_0xdbbeee-_0x5446ac._0x6f59db,_0x3d8b0a-_0x5446ac._0x52d986,_0x4a070c-_0x5446ac._0xf2cf3c,_0x4a070c);}function _0x10d851(_0x3c83cd,_0x10e596,_0x50358a,_0x3e0a29){return _0x4e5035(_0x3c83cd-0xc8,_0x50358a-0xe6,_0x50358a-_0x110239._0x3e227b,_0x10e596);}if(_0xe5589d[_0x29431(_0x3c0e0e._0x210727,0x670,_0x3c0e0e._0x1db178,0x676)]!==_0xe5589d[_0x29431(0x54d,_0x3c0e0e._0x26cffe,0x561,_0x3c0e0e._0x484470)]){if(_0xe5589d[_0x29431(_0x3c0e0e._0x2796be,_0x3c0e0e._0x28137b,0x6ba,0x6cd)](_0x44b6ac[_0x29431(0x59f,0x607,0x5e2,0x63a)+_0x29431(_0x3c0e0e._0x56a075,_0x3c0e0e._0x26557a,_0x3c0e0e._0x3c68cf,_0x3c0e0e._0x538b31)],this[_0x29431(_0x3c0e0e._0x17b770,_0x3c0e0e._0x43441a,0x650,_0x3c0e0e._0x49f41c)+_0x29431(0x6ab,_0x3c0e0e._0x2fcccd,0x60e,0x635)]))return null;return Math[_0x29431(_0x3c0e0e._0xee63eb,0x60d,0x5f5,0x5ce)](_0xe5589d[_0x29431(_0x3c0e0e._0x43217a,_0x3c0e0e._0x3026d3,_0x3c0e0e._0x5da89e,0x705)](0x899+0x20b2+-0x2563,Math['pow'](-0x1*-0x2581+-0xb*-0x282+-0x4115,_0x44b6ac[_0x29431(0x642,_0x3c0e0e._0x5f53b7,_0x3c0e0e._0x1eecaf,_0x3c0e0e._0x2d446e)+_0x29431(0x690,_0x3c0e0e._0x17c1a6,_0x3c0e0e._0x3fe4e2,0x612)])),0x2f79+0xe0b1*0x1+-0x53*0x1de);}else throw new _0x32d113(_0xe5589d['dnWSc']);}})[_0xd0ef37(0x49,0xb,-_0x12af99._0x1f13c2,-0x78)+_0xd0ef37(-_0x12af99._0x209b8f,-_0x12af99._0x3a21f1,-_0x12af99._0x22c165,-0x93)](LogLevel[_0x4e5035(_0x12af99._0x2e48f7,0x3eb,0x402,0x398)])[_0xd0ef37(-_0x12af99._0x168a97,-_0x12af99._0x4bf8f2,-0x38,-0x6c)](),this[_0xd0ef37(0x32,0x8c,0x37,0x62)]['serverTime'+_0xd0ef37(0x3,_0x12af99._0x4652c9,0x76,_0x12af99._0x5e2523)+_0x4e5035(_0x12af99._0x2315db,0x32b,_0x12af99._0x4ed418,0x396)]=0x1aa1+-0x12f32+0x1fef1,this[_0xd0ef37(-_0x12af99._0x4943b9,_0x12af99._0x314218,_0x12af99._0x2b67ac,_0x12af99._0x153db2)][_0xd0ef37(_0x12af99._0x53ca33,0x5f,_0x12af99._0x4d4a4b,_0x12af99._0x4b11a8)+_0x4e5035(0x2e3,_0x12af99._0x1c7cc7,_0x12af99._0x410093,0x392)+_0xd0ef37(-_0x12af99._0x3d216a,-_0x12af99._0x41c3c9,-0x13,-0x21)+'s']=0x595c+0x227+0x9f*-0x35,this['_setupEven'+_0xd0ef37(_0x12af99._0x406a86,0xa3,_0x12af99._0x4124fd,_0x12af99._0x542c63)](),await this['connection'][_0xd0ef37(0x6b,-0x1e,0x3d,_0x12af99._0x5a9d80)](),this[_0x4e5035(0x3fd,_0x12af99._0x35b1ec,0x330,_0x12af99._0x53766b)]=!![],this['reconnectA'+_0x4e5035(_0x12af99._0x287770,0x416,_0x12af99._0x27eedb,0x3a5)]=0xc4e+0x2ed*-0x1+-0x961,this[_0x4e5035(0x3ae,0x403,_0x12af99._0x61371,0x40c)](_0xe5589d[_0xd0ef37(_0x12af99._0x48d80a,_0x12af99._0x3296d5,0xbd,_0x12af99._0x3f1919)]),_0x65f2e2&&await this[_0xd0ef37(-0x55,-_0x12af99._0x345ade,_0x12af99._0x176750,-_0x12af99._0x383caa)](null,_0x65f2e2);}else{if(_0xe5589d[_0xd0ef37(-0x47,-_0x12af99._0x5d988a,-0x4b,-_0x12af99._0x4cf080)](_0x426476[_0xd0ef37(0x9b,-_0x12af99._0x5c2f68,_0x12af99._0x21345f,-_0x12af99._0x44c0ca)+_0xd0ef37(-_0x12af99._0x542c63,_0x12af99._0x1431c0,_0x12af99._0x5d8738,0x86)],this[_0xd0ef37(_0x12af99._0x849970,0xe5,0x83,0xf3)+'ctAttempts']))return null;return _0x468e03[_0x4e5035(_0x12af99._0x43e809,0x39f,_0x12af99._0x4fab07,_0x12af99._0x2a2cab)](_0xe5589d[_0x4e5035(0x47c,0x415,0x49d,_0x12af99._0x5afc48)](0x1*0xd10+0x171d+-0x2ef*0xb,_0x2ce969[_0xd0ef37(0x85,_0x12af99._0x5487fa,_0x12af99._0x171fff,_0x12af99._0x4c0fb2)](0x14c4+0x1408*-0x1+0xba*-0x1,_0x2a3333[_0x4e5035(_0x12af99._0x51dceb,0x399,_0x12af99._0x4fd021,0x324)+_0xd0ef37(0xfc,_0x12af99._0x452922,0x77,0x58)])),-0x38*-0x3ee+-0x3d*-0x5e+-0x7d46);}}catch(_0x48c2e0){if(_0xe5589d[_0xd0ef37(_0x12af99._0x28b1c9,_0x12af99._0x56af63,0xbe,_0x12af99._0x2e8c2)](_0xe5589d['vLSEy'],_0x4e5035(_0x12af99._0x47f9fc,0x3b8,_0x12af99._0x429941,0x3de))){const _0x311a9c=_0x3b16ac[_0x3ac323]||_0x3165c6[_0xd0ef37(0x104,_0x12af99._0x240735,0xa7,_0x12af99._0x2cb6fb)];if(_0x311a9c[_0x4e5035(_0x12af99._0x32e862,_0x12af99._0x521ff0,_0x12af99._0x2d2983,_0x12af99._0x515173)]){const _0x3e7974=_0x311a9c[_0xd0ef37(-0x29,0x41,_0x12af99._0x4d7fa9,-0x3)][_0xd0ef37(-_0x12af99._0x3837ca,-_0x12af99._0x1fea9c,_0x12af99._0x3c60c5,0x69)](/^api\./,_0xe5589d['WgcMq']);return _0x4e5035(_0x12af99._0x578108,_0x12af99._0x388354,0x389,_0x12af99._0x4c30f4)+_0x3e7974+(_0xd0ef37(0x5a,-0x71,-0x2f,-_0x12af99._0x52eb01)+'et');}return _0xe5589d[_0x4e5035(_0x12af99._0xa1bdc6,0x3ba,0x3ac,0x3c0)];}else{this[_0x4e5035(0x3c6,_0x12af99._0x2da028,_0x12af99._0x495199,0x3b7)]=![],this['emit'](_0xe5589d[_0x4e5035(_0x12af99._0x1aa3e3,_0x12af99._0x33474f,0x3d2,0x380)],_0x48c2e0);throw _0x48c2e0;}}}[_0x3794d0(-0x17d,-0x1c2,-0x157,-0x140)+_0x90d980(0x43b,0x40a,0x474,0x4ac)](){const _0x9ae358={_0x146b34:0x490,_0x38f24e:0x4c1,_0x132bc8:0x15e,_0x498c17:0x17a,_0x50bc32:0x469,_0x1850d8:0x42d,_0x358fd3:0x407,_0x20ca5e:0x412,_0x1d0592:0x3cd,_0x57d897:0x3f8,_0x160cf0:0x42f,_0x33cdf0:0x40e,_0x463d55:0x3e6,_0x5724ad:0x443,_0x16dd13:0xd1,_0x2262c3:0x40e,_0x281c53:0x131,_0x53866d:0x4b6,_0x5be274:0x49e,_0x3ef291:0x1c4,_0x145ff5:0x10b,_0x36b540:0x168,_0x1fa671:0x1f4,_0x3e192e:0x16a,_0x91d149:0x3ff,_0x42e7b8:0x44d,_0x3f8e27:0x418,_0x4bd689:0x3f3,_0x2b034e:0x40a,_0x59bf27:0x3ba,_0x2ad849:0x3e8,_0x194691:0x10e,_0x4352c4:0x148,_0x14333a:0x146,_0x81bd39:0x14d,_0x543bc6:0x124,_0x2d9f38:0xd9,_0x27d16c:0xf1,_0x5fbfc2:0x4af,_0x333c71:0x500,_0x2f448c:0x556,_0x69afc9:0x3cb,_0x17e3fe:0x442,_0x6dc34:0x184,_0x11d577:0x182,_0x3f464a:0x502,_0x42b1d7:0x4ce,_0x5d37fe:0x476,_0x2655ff:0x4ec,_0x2b4eb7:0x4e3,_0x34885c:0x48c,_0x401bde:0x1b4,_0x26e0fe:0xc4,_0x4e5e4f:0x1ec,_0x2d8e3c:0x88,_0x1363db:0x17f,_0x1db69a:0x129,_0x2166ba:0x196,_0x37fe12:0x3bb,_0x382891:0x3e7,_0x3a35fd:0x3f0,_0x10507f:0x3d9,_0x4e3172:0x454,_0x72310b:0x49b,_0x1775d2:0x44f,_0x5f37c3:0x467,_0x128302:0x41e,_0x27baaa:0x44f,_0x2ca6a0:0x4d8,_0x2d050d:0x49d,_0x4aaca6:0x4b1,_0x229182:0xb6,_0x2df437:0x44,_0x114ee3:0xc9,_0x442077:0x1ab,_0x2f853c:0xda,_0x11b351:0xb3,_0xe5c1ad:0x38a,_0x9cbf77:0x447,_0xad0479:0x467,_0x4a645b:0x109,_0x4a204d:0x11b,_0x5a86e2:0x46a,_0xa435aa:0x483,_0x13433a:0x3ee,_0x53f6a9:0x446,_0x44a2d5:0x43b,_0x39791c:0x48f,_0x173bc8:0x47a},_0x285be6={_0x58c74a:0x111,_0x3e6fed:0x1d0,_0x12be0b:0x1a1,_0x541778:0x18d,_0x405d41:0x137,_0x4a1122:0x16c,_0x4ad892:0x17e,_0xfd7668:0x198,_0x1c2771:0xfe,_0x207bfe:0x177,_0x25efaf:0x13e,_0x1518a5:0x1e4,_0x5c7826:0x1c0,_0x26aca3:0x1e8,_0x2782a3:0x134,_0x254cfb:0x121,_0x506560:0x194,_0x361990:0x50,_0x596972:0xbe,_0xbe205e:0xef,_0x3b088b:0x18c,_0x204ef1:0xbc,_0xdf0e30:0x126,_0x190d40:0x143,_0x1c6104:0x163,_0x246753:0x117,_0x3faa80:0x95,_0x3baffa:0x178,_0x345f69:0xd6,_0x23c726:0x1bb,_0x4ae4c9:0x167,_0x5365e4:0x144},_0x244a30={_0x5d2518:0x5a2,_0x56b325:0x56b,_0x178bf4:0x1d4,_0x1df13e:0x2c4,_0x223d00:0x2bb,_0x5081aa:0x219,_0x38f14f:0x2b5,_0x130bb3:0x280,_0x413096:0x2b7,_0x27572f:0x237,_0x30181f:0x256,_0x3aab24:0x58c,_0x432461:0x29c,_0x3de149:0x316,_0x5279f0:0x267,_0x424ac9:0x54e,_0x1f3130:0x47e,_0x235851:0x258,_0x2f26f7:0x5ef,_0x1e9303:0x552,_0x408106:0x562,_0x183e28:0x530,_0x3bfb51:0x4df,_0x55a9c0:0x570},_0x367f78={_0x25f95e:0x1f,_0x5ce9b6:0x137},_0x54c14e={_0x116bbc:0x11,_0x2e50d8:0x29,_0x356df7:0x4,_0x4ffe12:0x11c,_0x58d2f:0x11d,_0x5125fd:0xb7,_0x8655b2:0x1cb,_0x475553:0x1e8,_0x1ecddc:0x67,_0x426f51:0xd6,_0x2421c8:0x8b,_0x45a1f9:0x17e,_0x4c5883:0x19a,_0x52d09d:0x21a,_0xd8a84c:0x203,_0x3938f5:0x23c,_0x360512:0x28b,_0x2db9df:0x269,_0x191098:0x5b,_0x343761:0xa8,_0x517dfd:0x37,_0x67a997:0x1de,_0x106ecb:0x21e,_0x3a06d6:0x171,_0x5c65c1:0x120,_0x3db510:0x242,_0x57e527:0x6e,_0xa574f5:0xda,_0x40cf38:0x1a,_0x123df8:0xf9,_0x39b394:0xf0,_0x150b9c:0x173,_0x5cd04f:0x1df,_0x2ec4e6:0x231,_0x1f6aff:0x177,_0x534db1:0x183,_0x64d713:0x124,_0x269f5d:0x9e,_0x3b7791:0x104,_0x43adb5:0xa6,_0x2e5e91:0xb,_0x1d7a13:0x8,_0xe9ab82:0x8c,_0x3d2b03:0x6f,_0x1fcda4:0x217,_0x49ea36:0x5b,_0xc84e02:0xe,_0x16fdb7:0x26f,_0x4ba197:0x23a,_0x20bc44:0x2a3,_0x4cc637:0x237},_0x11e08b={_0x493aed:0x1a8,_0x3c2d42:0x198,_0x5262da:0x49a},_0x186160={_0x38161c:0x115},_0x155237={_0x1ceab5:0x4,_0x374d56:0x1e,_0x3222bc:0x52c,_0xd0739a:0x4d6,_0x1ab775:0x524,_0x58f233:0x69,_0x124ba9:0x51,_0x44c44a:0x6e,_0x659e94:0x119,_0x48280e:0x45c,_0x2b5c9b:0x3ef,_0x47c882:0x41f,_0x3b9cb3:0x434,_0x5031a4:0x15,_0x28ed16:0x15,_0x34f91b:0x10e,_0x43f037:0x97,_0x88eba2:0x5e,_0x4803d3:0x31,_0x57747c:0x458,_0x1b28cc:0x51e,_0x1d6afe:0x4b9,_0x5763da:0x511,_0xd3f9e6:0x61,_0x3c4f40:0x28,_0x2bb35d:0x12,_0x58fd0c:0x482,_0x5f558d:0x2e,_0x308a9a:0x38,_0x295c51:0x573,_0x5a96b2:0x488,_0x27d9c2:0x86,_0x13ffd8:0xdc,_0x2b9585:0x4c0,_0x36e321:0x4d4,_0x1b4882:0x482,_0x33880b:0x1d,_0x438967:0x52,_0x1df369:0x3a,_0xb089dd:0x59,_0x547f33:0x4e9,_0x574be2:0x483},_0x45ae91={_0x30d93f:0x352},_0x520a68={_0x5e8e44:0x4dc,_0x1d92fb:0x4cd,_0x50c1e8:0x22c,_0x256478:0x1ee,_0x41865c:0x515,_0x5069cf:0x42f,_0x665cd6:0x284,_0x2a3566:0x255,_0x110c03:0x2df,_0x21a824:0x218,_0x17c525:0x4aa,_0xe5c37b:0x4b2,_0x197dfd:0x4fb,_0x512b09:0x45c,_0x5d2a6d:0x475,_0x247c1a:0x4b5,_0xae6c4f:0x47a,_0x1c05a6:0x4cb,_0x16b44b:0x4c9,_0x49ed1b:0x311,_0x34ae09:0x28c,_0x19a488:0x30b,_0x2cc919:0x28f,_0x52819b:0x30e,_0x40ff84:0x2be,_0x41ad47:0x539},_0x4a12cc={_0x21e977:0x1ea,_0x732aa:0x26,_0x501dcc:0x37},_0x7d5098={_0x564491:0x542,_0xa7ffa3:0x1ff,_0x5e8c47:0x5ff,_0x46cede:0x553,_0x48db80:0x516,_0x148441:0x4c4,_0x17dd55:0x575,_0xcccf86:0x16f,_0x5d2618:0x1ef,_0x590b8a:0x17a,_0x3d83ce:0x5b5,_0x485cd6:0x5bd,_0x4f3a6c:0x5d2,_0x46d51b:0x5a8,_0x4a1e43:0x5c4,_0x133872:0x53b,_0x1965dc:0x530,_0x28d4d2:0x4cb,_0x615a6f:0x599,_0x2e316c:0x261,_0x14ab0f:0x2ae,_0x41c993:0x1f5,_0x333a8f:0x4d1,_0x244bb3:0x474,_0x3749a8:0x25c,_0x1686c6:0x238,_0x3ba238:0x49c,_0x2cc2ad:0x4dd,_0x147ca6:0x540,_0x5b922c:0x5e6,_0x259058:0x53c,_0x204284:0x29f,_0x32963b:0x5a6,_0xbea6fe:0x61a,_0x95c7f8:0x581,_0x273770:0x527,_0x4743bf:0x5d1},_0x2f30e3={_0x4f790b:0xb5,_0x225462:0xa1},_0x5d730a={};_0x5d730a[_0xc164d6(0x440,0x444,_0x9ae358._0x146b34,_0x9ae358._0x38f24e)]=function(_0x481206,_0x429141){return _0x481206||_0x429141;},_0x5d730a[_0x1a9ff0(_0x9ae358._0x132bc8,0x1af,0x18a,_0x9ae358._0x498c17)]='quote',_0x5d730a['WkFTP']=_0xc164d6(0x496,0x4b2,0x400,_0x9ae358._0x50bc32),_0x5d730a[_0xc164d6(0x408,_0x9ae358._0x1850d8,0x448,0x3d7)]=function(_0x4faf85,_0x2f3bc2){return _0x4faf85||_0x2f3bc2;},_0x5d730a['ijGnj']=function(_0x31738e,_0x21d654){return _0x31738e===_0x21d654;},_0x5d730a['tCMOu']=_0xc164d6(0x4ea,0x4eb,_0x9ae358._0x358fd3,0x46e),_0x5d730a[_0xc164d6(_0x9ae358._0x20ca5e,_0x9ae358._0x1d0592,0x421,_0x9ae358._0x57d897)]='trade',_0x5d730a[_0xc164d6(_0x9ae358._0x160cf0,_0x9ae358._0x33cdf0,_0x9ae358._0x463d55,_0x9ae358._0x5724ad)]='buy';function _0x1a9ff0(_0xc2337b,_0xebbcc,_0x3be808,_0x214888){return _0x3794d0(_0xc2337b-_0x2f30e3._0x4f790b,_0x214888-0x2b4,_0xc2337b,_0x214888-_0x2f30e3._0x225462);}_0x5d730a[_0x1a9ff0(0xb4,0xea,_0x9ae358._0x16dd13,0xfd)]=_0xc164d6(_0x9ae358._0x2262c3,0x3df,0x3b9,0x3ed),_0x5d730a[_0x1a9ff0(_0x9ae358._0x281c53,0x13c,0x19e,0x186)]='Connected',_0x5d730a[_0xc164d6(_0x9ae358._0x53866d,0x43f,0x475,_0x9ae358._0x5be274)]=function(_0x1b9e60,_0x433129){return _0x1b9e60===_0x433129;},_0x5d730a['GAYfX']=function(_0x380ab7,_0x113395){return _0x380ab7!==_0x113395;},_0x5d730a[_0x1a9ff0(_0x9ae358._0x3ef291,0x1d7,_0x9ae358._0x145ff5,0x165)]=_0x1a9ff0(_0x9ae358._0x36b540,_0x9ae358._0x1fa671,0x12c,_0x9ae358._0x3e192e),_0x5d730a[_0xc164d6(0x38e,0x48a,_0x9ae358._0x91d149,0x40d)]=_0xc164d6(0x44a,0x522,0x513,0x4cf),_0x5d730a[_0x1a9ff0(0xe5,0x1d7,0x18d,0x167)]=function(_0x2c80a5,_0x49153b){return _0x2c80a5===_0x49153b;},_0x5d730a['HXXCN']=_0xc164d6(_0x9ae358._0x91d149,_0x9ae358._0x42e7b8,_0x9ae358._0x3f8e27,0x3ea),_0x5d730a[_0xc164d6(0x407,_0x9ae358._0x4bd689,0x387,_0x9ae358._0x2b034e)]=_0xc164d6(0x482,_0x9ae358._0x59bf27,_0x9ae358._0x2ad849,0x429),_0x5d730a[_0xc164d6(0x457,0x3fb,0x401,0x3e3)]=_0x1a9ff0(_0x9ae358._0x194691,_0x9ae358._0x4352c4,_0x9ae358._0x14333a,_0x9ae358._0x81bd39),_0x5d730a[_0x1a9ff0(0xbf,_0x9ae358._0x543bc6,_0x9ae358._0x2d9f38,_0x9ae358._0x27d16c)]='reconnecti'+'ng',_0x5d730a[_0xc164d6(0x4dc,0x517,0x510,_0x9ae358._0x5fbfc2)]=_0xc164d6(0x460,0x52d,0x477,0x4cb),_0x5d730a[_0xc164d6(_0x9ae358._0x333c71,_0x9ae358._0x2f448c,0x532,0x4ce)]=_0xc164d6(0x4b3,_0x9ae358._0x69afc9,0x4b5,_0x9ae358._0x17e3fe),_0x5d730a[_0x1a9ff0(0x12f,_0x9ae358._0x6dc34,_0x9ae358._0x498c17,_0x9ae358._0x11d577)]='reconnecte'+'d',_0x5d730a[_0xc164d6(0x52a,_0x9ae358._0x3f464a,0x484,0x4dc)]='rtc.',_0x5d730a[_0xc164d6(0x41d,_0x9ae358._0x42b1d7,0x45e,_0x9ae358._0x5d37fe)]=_0xc164d6(_0x9ae358._0x2655ff,0x4ae,_0x9ae358._0x2b4eb7,_0x9ae358._0x34885c),_0x5d730a[_0x1a9ff0(0x11c,_0x9ae358._0x401bde,_0x9ae358._0x26e0fe,_0x9ae358._0x4352c4)]=function(_0x2b9258,_0x32cd64){return _0x2b9258+_0x32cd64;},_0x5d730a[_0x1a9ff0(_0x9ae358._0x4e5e4f,0x1dd,0x17c,0x1bf)]=_0x1a9ff0(0x129,0xa6,_0x9ae358._0x2d8e3c,0x109)+'ed',_0x5d730a[_0x1a9ff0(0x173,0x149,0x120,_0x9ae358._0x1363db)]=_0x1a9ff0(0x195,0x185,_0x9ae358._0x1db69a,_0x9ae358._0x2166ba)+'te',_0x5d730a[_0xc164d6(0x45c,0x3b0,_0x9ae358._0x37fe12,_0x9ae358._0x382891)]=_0xc164d6(0x4b6,0x493,0x4f6,0x4d2)+'de',_0x5d730a['hyQEE']=_0xc164d6(_0x9ae358._0x3a35fd,0x3e7,_0x9ae358._0x10507f,_0x9ae358._0x4e3172)+'th';const _0x4d07e0=_0x5d730a;if(!this[_0xc164d6(_0x9ae358._0x2ad849,_0x9ae358._0x72310b,0x4cb,_0x9ae358._0x1775d2)])return;this[_0xc164d6(_0x9ae358._0x5f37c3,_0x9ae358._0x128302,0x471,_0x9ae358._0x27baaa)]['on'](_0x4d07e0[_0xc164d6(0x42c,_0x9ae358._0x160cf0,_0x9ae358._0x2ca6a0,_0x9ae358._0x2d050d)],(_0x13834b,_0x270c7c)=>{const _0x3fc376={_0x4c10c6:0x150,_0x79f895:0x407},_0x1f95a2={_0x4c586d:0x13a},_0x203944=_0x4d07e0['lRkJw'](_0x270c7c,_0x13834b),_0x86debd=_0x270c7c?_0x13834b:_0x203944['symbol']||_0x203944[_0x19b980(0x55a,_0x7d5098._0x564491,0x4f4,0x5ae)],_0x2f7c60={'type':_0x4d07e0['AcqCN'],'contractId':_0x86debd,'symbol':_0x203944[_0x1e0ff6(0x1ee,0x268,_0x7d5098._0xa7ffa3,0x24e)]||_0x203944[_0x19b980(0x5c3,_0x7d5098._0x5e8c47,_0x7d5098._0x46cede,0x605)]||_0x86debd,'price':_0x203944['lastPrice'],'bid':_0x203944[_0x19b980(0x503,_0x7d5098._0x48db80,0x571,_0x7d5098._0x148441)],'ask':_0x203944[_0x19b980(0x4fe,_0x7d5098._0x17dd55,0x500,0x478)],'change':_0x203944[_0x1e0ff6(_0x7d5098._0xcccf86,0x187,_0x7d5098._0x5d2618,_0x7d5098._0x590b8a)],'changePercent':_0x203944[_0x19b980(0x5c4,_0x7d5098._0x3d83ce,_0x7d5098._0x485cd6,_0x7d5098._0x4f3a6c)+_0x19b980(0x5b6,_0x7d5098._0x46d51b,_0x7d5098._0x4a1e43,_0x7d5098._0x133872)],'open':_0x203944[_0x19b980(_0x7d5098._0x1965dc,_0x7d5098._0x28d4d2,_0x7d5098._0x615a6f,0x506)],'high':_0x203944[_0x1e0ff6(_0x7d5098._0x2e316c,_0x7d5098._0x14ab0f,0x2e2,_0x7d5098._0x41c993)],'low':_0x203944[_0x19b980(_0x7d5098._0x333a8f,0x532,_0x7d5098._0x244bb3,0x555)],'volume':_0x203944[_0x1e0ff6(0x1eb,_0x7d5098._0x3749a8,0x180,_0x7d5098._0x1686c6)],'timestamp':_0x203944[_0x19b980(0x4dd,_0x7d5098._0x3ba238,0x476,0x565)]?new Date(_0x203944[_0x19b980(_0x7d5098._0x2cc2ad,0x454,0x49a,_0x7d5098._0x147ca6)])['getTime']():Date['now']()};function _0x1e0ff6(_0x30324f,_0x7e6fbd,_0x5c5526,_0x206065){return _0x1a9ff0(_0x5c5526,_0x7e6fbd-0x1c,_0x5c5526-_0x1f95a2._0x4c586d,_0x30324f-0xb9);}function _0x19b980(_0x200555,_0x4d7f6b,_0x5c44b2,_0x5e3d02){return _0x1a9ff0(_0x5c44b2,_0x4d7f6b-0xb1,_0x5c44b2-_0x3fc376._0x4c10c6,_0x200555-_0x3fc376._0x79f895);}this[_0x19b980(0x591,_0x7d5098._0x5b922c,0x5f7,_0x7d5098._0x259058)](_0x4d07e0[_0x1e0ff6(0x246,0x22e,_0x7d5098._0x204284,0x2bb)],_0x2f7c60),this[_0x19b980(0x591,_0x7d5098._0x32963b,0x535,_0x7d5098._0xbea6fe)](_0x4d07e0[_0x19b980(_0x7d5098._0x95c7f8,_0x7d5098._0x273770,0x4fb,_0x7d5098._0x4743bf)],_0x2f7c60);}),this[_0xc164d6(0x3cf,_0x9ae358._0x4aaca6,0x495,0x44f)]['on'](_0x4d07e0[_0x1a9ff0(_0x9ae358._0x229182,_0x9ae358._0x2df437,0xc0,_0x9ae358._0x114ee3)],(_0x1797d6,_0x363236)=>{const _0x334501={_0x5aa797:0x32};function _0x120bd9(_0x194940,_0x2366de,_0x45ebdc,_0x22a911){return _0x1a9ff0(_0x194940,_0x2366de-_0x334501._0x5aa797,_0x45ebdc-0xa9,_0x2366de-0x102);}const _0xa20a41=Array['isArray'](_0x363236)?_0x363236:Array[_0x152e90(_0x520a68._0x5e8e44,0x4c8,_0x520a68._0x1d92fb,0x4e0)](_0x1797d6)?_0x1797d6:[_0x4d07e0[_0x120bd9(0x21d,0x1bb,0x18a,_0x520a68._0x50c1e8)](_0x363236,_0x1797d6)],_0x1d97dd=_0x4d07e0[_0x120bd9(0x21d,0x24e,_0x520a68._0x256478,0x249)](typeof _0x1797d6,_0x4d07e0[_0x152e90(0x4aa,0x521,_0x520a68._0x41865c,0x529)])?_0x1797d6:null;function _0x152e90(_0x188dd0,_0x3ccaec,_0x5c3d62,_0x30acc3){return _0xc164d6(_0x188dd0-_0x4a12cc._0x21e977,_0x5c3d62,_0x5c3d62-_0x4a12cc._0x732aa,_0x188dd0-_0x4a12cc._0x501dcc);}for(const _0x5cbda1 of _0xa20a41){if(!_0x5cbda1)continue;const _0x11be84={'type':_0x4d07e0[_0x152e90(_0x520a68._0x5069cf,0x485,0x43a,0x3e8)],'contractId':_0x1d97dd||_0x5cbda1[_0x120bd9(_0x520a68._0x665cd6,_0x520a68._0x2a3566,0x203,0x209)],'price':_0x5cbda1[_0x120bd9(_0x520a68._0x110c03,0x29d,0x21d,_0x520a68._0x21a824)],'volume':_0x5cbda1['volume'],'side':_0x4d07e0[_0x152e90(0x4a1,0x4c3,0x43b,0x447)](_0x5cbda1[_0x152e90(0x45c,_0x520a68._0x17c525,0x4cd,_0x520a68._0xe5c37b)],-0x233*0x3+-0x6d4*0x2+0x1441)?_0x4d07e0['xOFTB']:_0x4d07e0['iLolt'],'lastTradeSide':_0x4d07e0[_0x152e90(0x4a1,_0x520a68._0x197dfd,0x424,0x46f)](_0x5cbda1[_0x152e90(_0x520a68._0x512b09,_0x520a68._0x5d2a6d,_0x520a68._0x247c1a,0x417)],0x3*-0x485+0x592+-0x199*-0x5)?_0x4d07e0[_0x152e90(_0x520a68._0xae6c4f,0x3f2,0x44e,0x4e4)]:_0x4d07e0['iLolt'],'timestamp':_0x5cbda1['timestamp']?new Date(_0x5cbda1[_0x120bd9(0x15f,0x1d8,0x1c3,0x159)])[_0x152e90(0x462,0x4e0,_0x520a68._0x1c05a6,_0x520a68._0x16b44b)]():Date[_0x120bd9(0x228,0x299,_0x520a68._0x49ed1b,_0x520a68._0x34ae09)]()};this[_0x120bd9(0x222,_0x520a68._0x34ae09,_0x520a68._0x19a488,0x28c)](_0x4d07e0[_0x120bd9(0x278,_0x520a68._0x2cc919,_0x520a68._0x52819b,_0x520a68._0x40ff84)],_0x11be84),this[_0x152e90(0x4df,_0x520a68._0x41ad47,0x530,0x524)]('trade',_0x11be84);}}),this[_0x1a9ff0(_0x9ae358._0x442077,_0x9ae358._0x2f853c,_0x9ae358._0x11b351,0x131)]['on'](_0x4d07e0[_0xc164d6(_0x9ae358._0xe5c1ad,_0x9ae358._0x9cbf77,_0x9ae358._0xad0479,_0x9ae358._0x463d55)],(_0x3f0483,_0x2bc591)=>{const _0x3a56a9={_0x1cfc3e:0x38,_0x4ec52e:0x104};function _0x18edeb(_0x24ae4d,_0x46e651,_0x5bdb1a,_0x543d53){return _0x1a9ff0(_0x543d53,_0x46e651-0x1a8,_0x5bdb1a-0x117,_0x46e651-_0x45ae91._0x30d93f);}function _0x355245(_0xf2c687,_0x4fee74,_0x4aa487,_0x21137b){return _0x1a9ff0(_0x4fee74,_0x4fee74-0x81,_0x4aa487-_0x3a56a9._0x1cfc3e,_0x4aa487- -_0x3a56a9._0x4ec52e);}const _0x413b62=Array['isArray'](_0x2bc591)?_0x2bc591:Array[_0x355245(_0x155237._0x1ceab5,0x25,0x83,_0x155237._0x374d56)](_0x3f0483)?_0x3f0483:[_0x4d07e0['fLorm'](_0x2bc591,_0x3f0483)],_0x4a4dc2=_0x4d07e0[_0x18edeb(_0x155237._0x3222bc,0x4d2,_0x155237._0xd0739a,_0x155237._0x1ab775)](typeof _0x3f0483,_0x4d07e0[_0x355245(_0x155237._0x58f233,0xa9,_0x155237._0x124ba9,0x72)])?_0x3f0483:null;for(const _0x221101 of _0x413b62){if(_0x4d07e0[_0x355245(0x9e,_0x155237._0x44c44a,0xaa,_0x155237._0x659e94)](_0x18edeb(0x434,_0x155237._0x48280e,_0x155237._0x2b5c9b,_0x155237._0x47c882),_0x4d07e0[_0x18edeb(_0x155237._0x3222bc,0x4b7,_0x155237._0x3b9cb3,0x503)])){if(!_0x221101)continue;const _0x57ed29={'type':_0x4d07e0[_0x355245(0x2e,-0x21,-_0x155237._0x5031a4,_0x155237._0x28ed16)],'contractId':_0x4a4dc2,'price':_0x221101[_0x355245(0x2c,_0x155237._0x34f91b,_0x155237._0x43f037,0xf4)],'volume':_0x221101[_0x355245(0xad,_0x155237._0x88eba2,0x2e,-_0x155237._0x4803d3)]||_0x221101['totalVolum'+'e'],'currentVolume':_0x221101['currentVol'+_0x18edeb(0x497,0x4c5,_0x155237._0x57747c,_0x155237._0x1b28cc)],'side':_0x4d07e0[_0x18edeb(0x482,_0x155237._0x1d6afe,0x4e9,_0x155237._0x5763da)](_0x221101['type'],0x1e7b+-0xadb+-0x13a0)?_0x355245(0x6e,_0x155237._0xd3f9e6,_0x155237._0x3c4f40,-_0x155237._0x2bb35d):_0x4d07e0[_0x18edeb(0x49a,0x4fb,_0x155237._0x58fd0c,0x558)],'timestamp':_0x221101[_0x355245(0x0,-0x33,-_0x155237._0x5f558d,-_0x155237._0x308a9a)]?new Date(_0x221101['timestamp'])['getTime']():Date[_0x18edeb(_0x155237._0x295c51,0x4e9,0x4af,_0x155237._0x5a96b2)]()};this[_0x355245(0xdd,0xe0,_0x155237._0x27d9c2,_0x155237._0x13ffd8)](_0x4d07e0[_0x18edeb(0x48f,0x441,_0x155237._0x2b9585,0x42f)],_0x57ed29),this[_0x18edeb(0x545,0x4dc,_0x155237._0x36e321,_0x155237._0x1b4882)](_0x4d07e0[_0x355245(-0x6b,-_0x155237._0x33880b,-0x18,-_0x155237._0x43f037)],_0x57ed29);}else return this[_0x355245(-_0x155237._0x438967,-_0x155237._0x1df369,0x19,_0x155237._0xb089dd)]&&this[_0x18edeb(_0x155237._0x547f33,_0x155237._0x574be2,0x472,0x454)]?.['state']===_0x4d07e0[_0x355245(_0x155237._0xd3f9e6,0x52,0x82,0xa1)];}}),this['connection']['onreconnec'+_0x1a9ff0(_0x9ae358._0x4a645b,_0x9ae358._0x4a204d,0x15d,0x134)](_0x308d8e=>{function _0xd56293(_0x342407,_0x39dcf9,_0x963d74,_0x594a58){return _0xc164d6(_0x342407-_0x186160._0x38161c,_0x342407,_0x963d74-0x96,_0x963d74- -0x271);}function _0x4798c4(_0x2ec0fc,_0x3456a3,_0x417793,_0x2760ee){return _0xc164d6(_0x2ec0fc-_0x11e08b._0x493aed,_0x417793,_0x417793-_0x11e08b._0x3c2d42,_0x2760ee- -_0x11e08b._0x5262da);}if(_0x4d07e0[_0x4798c4(-_0x54c14e._0x116bbc,_0x54c14e._0x2e50d8,0x35,_0x54c14e._0x356df7)](_0x4d07e0[_0x4798c4(-_0x54c14e._0x4ffe12,-_0x54c14e._0x58d2f,-0x10a,-_0x54c14e._0x5125fd)],_0x4d07e0[_0x4798c4(-0x13c,-0xce,-0x68,-0xb7)]))this[_0xd56293(0x19b,_0x54c14e._0x8655b2,0x1ca,_0x54c14e._0x475553)]=![],this[_0x4798c4(0x8e,0x8d,-_0x54c14e._0x1ecddc,0xe)](_0x4d07e0[_0x4798c4(-0xa8,-_0x54c14e._0x426f51,-0xd6,-_0x54c14e._0x2421c8)],_0x308d8e);else{const _0x254cd8=_0x47bf2a||_0x24d806,_0x440b3d=_0x28e5bd?_0x2aaaed:_0x254cd8['symbol']||_0x254cd8[_0xd56293(_0x54c14e._0x45a1f9,_0x54c14e._0x4c5883,0x200,_0x54c14e._0x52d09d)],_0x2e3dd2={'type':'quote','contractId':_0x440b3d,'symbol':_0x254cd8[_0xd56293(_0x54c14e._0xd8a84c,_0x54c14e._0x3938f5,0x1e2,0x17e)]||_0x254cd8[_0xd56293(0x2df,_0x54c14e._0x360512,_0x54c14e._0x2db9df,0x21e)]||_0x440b3d,'price':_0x254cd8[_0x4798c4(-_0x54c14e._0x191098,-_0x54c14e._0x343761,-0x45,-_0x54c14e._0x517dfd)],'bid':_0x254cd8[_0xd56293(_0x54c14e._0x67a997,_0x54c14e._0x106ecb,0x1a9,_0x54c14e._0x3a06d6)],'ask':_0x254cd8['bestAsk'],'change':_0x254cd8[_0xd56293(0x1d4,_0x54c14e._0x5c65c1,0x163,0x11c)],'changePercent':_0x254cd8[_0xd56293(_0x54c14e._0x3db510,0x2ef,0x26a,0x1ee)+'ent'],'open':_0x254cd8[_0x4798c4(-_0x54c14e._0x57e527,-_0x54c14e._0xa574f5,_0x54c14e._0x40cf38,-0x53)],'high':_0x254cd8['high'],'low':_0x254cd8[_0xd56293(_0x54c14e._0x123df8,_0x54c14e._0x39b394,0x177,0x1d4)],'volume':_0x254cd8[_0xd56293(0x16f,_0x54c14e._0x150b9c,_0x54c14e._0x5cd04f,_0x54c14e._0x2ec4e6)],'timestamp':_0x254cd8[_0xd56293(0x1a1,_0x54c14e._0x1f6aff,_0x54c14e._0x534db1,_0x54c14e._0x64d713)]?new _0x419955(_0x254cd8[_0x4798c4(-_0x54c14e._0x269f5d,-0xe0,-_0x54c14e._0x3b7791,-_0x54c14e._0x43adb5)])[_0x4798c4(-_0x54c14e._0x2e5e91,_0x54c14e._0x1d7a13,-_0x54c14e._0xe9ab82,-_0x54c14e._0x3d2b03)]():_0x33054f[_0xd56293(0x2c9,0x25f,0x244,_0x54c14e._0x1fcda4)]()};this[_0x4798c4(_0x54c14e._0x49ea36,0x5,-0x69,_0x54c14e._0xc84e02)](_0x4d07e0[_0xd56293(_0x54c14e._0x16fdb7,0x1ec,_0x54c14e._0x4ba197,_0x54c14e._0x4ba197)],_0x2e3dd2),this[_0xd56293(0x1cc,_0x54c14e._0x20bc44,_0x54c14e._0x4cc637,0x1d4)](_0x4d07e0['AcqCN'],_0x2e3dd2);}});function _0xc164d6(_0x4487b3,_0x4c9703,_0x5375b5,_0x1aa8ad){return _0x90d980(_0x1aa8ad-_0x367f78._0x25f95e,_0x4c9703,_0x5375b5-_0x367f78._0x5ce9b6,_0x1aa8ad-0x1e0);}this[_0xc164d6(_0x9ae358._0x5a86e2,_0x9ae358._0x5724ad,_0x9ae358._0xa435aa,0x44f)]['onreconnec'+_0xc164d6(0x467,0x472,_0x9ae358._0x13433a,_0x9ae358._0x53f6a9)](_0x578b01=>{const _0x2c3a7e={_0x44aaab:0x11e,_0x119fb1:0x204},_0x356bdf={_0x9c9288:0x62,_0x5b79fb:0x186,_0x4d78de:0x402};function _0x2273ba(_0x394124,_0x412922,_0x3af379,_0x378dfe){return _0x1a9ff0(_0x378dfe,_0x412922-_0x356bdf._0x9c9288,_0x3af379-_0x356bdf._0x5b79fb,_0x394124-_0x356bdf._0x4d78de);}function _0x1986b1(_0x18ebf6,_0x5a103c,_0x563191,_0x5b73c7){return _0xc164d6(_0x18ebf6-0xb0,_0x563191,_0x563191-_0x2c3a7e._0x44aaab,_0x5a103c- -_0x2c3a7e._0x119fb1);}if(_0x4d07e0[_0x2273ba(0x5b2,_0x244a30._0x5d2518,0x5be,_0x244a30._0x56b325)]!==_0x1986b1(0x1f7,0x23d,_0x244a30._0x178bf4,_0x244a30._0x1df13e))this['connected']=!![],this[_0x1986b1(_0x244a30._0x223d00,0x24d,_0x244a30._0x5081aa,_0x244a30._0x38f14f)+_0x1986b1(_0x244a30._0x130bb3,_0x244a30._0x413096,_0x244a30._0x27572f,_0x244a30._0x30181f)]=-0x1*-0x1f23+0x1*0x16af+-0x53*0xa6,this[_0x2273ba(_0x244a30._0x3aab24,0x5a2,0x506,0x5b9)](_0x4d07e0[_0x1986b1(0x23b,_0x244a30._0x432461,_0x244a30._0x3de149,_0x244a30._0x5279f0)],_0x578b01),this[_0x2273ba(0x505,0x493,_0x244a30._0x424ac9,_0x244a30._0x1f3130)+_0x1986b1(_0x244a30._0x235851,0x21a,0x27f,0x1d4)]();else{this[_0x2273ba(0x58c,_0x244a30._0x2f26f7,0x5a4,0x520)](_0x4d07e0['QkaFI'],new _0x444e77('Subscribe\x20'+_0x2273ba(0x53c,_0x244a30._0x1e9303,0x4e6,_0x244a30._0x408106)+_0x4685ce[_0x2273ba(_0x244a30._0x183e28,_0x244a30._0x3bfb51,0x51b,_0x244a30._0x55a9c0)]));throw _0x532c6f;}}),this[_0xc164d6(_0x9ae358._0x44a2d5,_0x9ae358._0x39791c,0x4d2,_0x9ae358._0x27baaa)][_0xc164d6(_0x9ae358._0x3a35fd,_0x9ae358._0x173bc8,0x3a7,0x41d)](_0x431994=>{const _0x59d83a={_0x5192d9:0xd8,_0xd82468:0x26};this[_0x3a722c(-0x145,-0xcf,-_0x285be6._0x58c74a,-0xde)]=![];function _0x3a722c(_0x3873d3,_0x191ffc,_0x263799,_0x3d654f){return _0x1a9ff0(_0x263799,_0x191ffc-0x1e5,_0x263799-0x18a,_0x191ffc- -0x1ec);}function _0x1a83c4(_0x282bb4,_0x575299,_0x28731f,_0x450504){return _0x1a9ff0(_0x575299,_0x575299-0x1b6,_0x28731f-_0x59d83a._0x5192d9,_0x282bb4-_0x59d83a._0xd82468);}let _0x3b2c3d=_0x1a83c4(0x1df,_0x285be6._0x3e6fed,0x16e,_0x285be6._0x12be0b);if(_0x431994){if(_0x4d07e0[_0x1a83c4(_0x285be6._0x541778,0x173,0x17b,_0x285be6._0x405d41)](_0x1a83c4(0x18e,_0x285be6._0x4a1122,0x210,0x12a),_0x4d07e0[_0x1a83c4(_0x285be6._0x4ad892,_0x285be6._0xfd7668,0x18e,_0x285be6._0x1c2771)])){const _0x727725=_0x262b21['gatewayApi'][_0x1a83c4(_0x285be6._0x207bfe,0xf5,_0x285be6._0x25efaf,0x171)](/^api\./,_0x4d07e0[_0x1a83c4(0x1e4,_0x285be6._0x1518a5,0x167,_0x285be6._0x5c7826)]);return _0x1a83c4(0x1a2,0x122,_0x285be6._0x26aca3,_0x285be6._0x2782a3)+_0x727725+(_0x3a722c(-0xc7,-_0x285be6._0x254cfb,-0x1a8,-_0x285be6._0x506560)+'et');}else{_0x3b2c3d=_0x431994[_0x3a722c(-_0x285be6._0x361990,-_0x285be6._0x596972,-_0x285be6._0xbe205e,-0x121)]||_0x431994[_0x1a83c4(0x1ca,0x1f9,_0x285be6._0x3b088b,0x1c1)]();if(_0x431994['stack'])_0x3b2c3d+=_0x4d07e0[_0x3a722c(-0xb3,-0xa4,-0x96,-0x27)](_0x3a722c(-0xb8,-_0x285be6._0x204ef1,-_0x285be6._0xdf0e30,-_0x285be6._0x190d40),_0x431994[_0x3a722c(-_0x285be6._0x1c6104,-_0x285be6._0x246753,-0x145,-_0x285be6._0x3faa80)][_0x1a83c4(0x11f,_0x285be6._0x3baffa,0xbb,_0x285be6._0x345f69)]('\x0a')[-0x2*0xc0+0x8ca+0x74a*-0x1]);}}this[_0x1a83c4(0x1b0,_0x285be6._0x23c726,_0x285be6._0x4ae4c9,_0x285be6._0x5365e4)](_0x4d07e0[_0x1a83c4(0x1e5,0x1ff,0x239,0x17d)],new Error(_0x3b2c3d));});}async[_0x90d980(0x412,0x410,0x3ce,0x490)](_0x1d6083,_0x2b66ac){const _0x1f8278={_0x42b40a:0x13a,_0x12b275:0x18e,_0x25565f:0xb0,_0x551938:0x8e,_0x1bbbb3:0xdc,_0x566636:0x25,_0x511915:0x21,_0x561590:0xbb,_0x1da70c:0xff,_0x1a70a7:0xe,_0x46fded:0x1e,_0x5404f6:0xa2,_0x45d1a3:0x3f,_0x288b92:0x59,_0x45da3f:0xcb,_0x1d47c8:0x77,_0x265a5d:0x10c,_0x3918a7:0xd9,_0x1bd01f:0x11d,_0x3b704a:0x15,_0x4d25d4:0x75,_0x48afea:0x14,_0x20d246:0x8b,_0xf4b7b9:0xeb,_0x539bd5:0x67,_0x46b01b:0xf9,_0x26efb9:0x8d,_0x307f7f:0x97,_0xaa7dd8:0x92,_0x125d3c:0x166,_0x42bde0:0xb4,_0x1653c1:0xb7,_0x254bec:0x7d,_0x466fec:0x12d,_0x2d322e:0x1a3,_0x23e0a5:0x120,_0x569636:0x9d,_0x12ee09:0xd2,_0x4ff803:0x90,_0xbff9d9:0x29,_0x4e213d:0x7e,_0x59930b:0xd,_0x3e6bb2:0xc3,_0xa01999:0xb3,_0x364230:0x13c,_0x15e5b0:0x112,_0x5a8f94:0x1,_0x167cee:0xd3,_0x320f6c:0x5c,_0x1d4657:0x7a,_0x2bb1c4:0x91,_0x4d2d2c:0xe9,_0x4db2f2:0x77,_0x4f784a:0x35,_0x460bd5:0x5d,_0x963e8:0x2e,_0x38e5fe:0x89,_0xf85473:0xc8,_0x296a41:0x32,_0x578c64:0x2d,_0x20bc27:0xec,_0x30135b:0x17a,_0x1f3c43:0x3a,_0x51f3ff:0xe7,_0x421f8e:0x5f,_0x3134d2:0xbd,_0x26467a:0x63,_0x3178aa:0x35,_0x179b62:0x29,_0x49ff3a:0x28,_0x2bce0e:0x124,_0x378d8d:0xad,_0x431a74:0x148,_0x2ea9f2:0xb9,_0x3d937d:0x1c2,_0x142ddc:0x55,_0x386c7c:0x41,_0x5425b4:0xbe,_0x1e9708:0x79,_0x30fa0f:0xa,_0x353af4:0x149,_0x5dcf2c:0x101,_0x10c622:0xe3,_0x3b79bc:0x10e,_0x320cfd:0xae,_0x1ee3b8:0x2f},_0x1b15e8={_0x7f0163:0x147,_0x2e0aa9:0x77},_0x461471={_0x364327:0x99,_0x50acc1:0x110},_0x2ec25e={};_0x2ec25e[_0x4b85a2(_0x1f8278._0x42b40a,0x12b,0x1a5,_0x1f8278._0x12b275)]=function(_0x5da485,_0x48bb25){return _0x5da485+_0x48bb25;},_0x2ec25e[_0x4b85a2(0xbe,0x8e,0x117,0x117)]=_0x4b85a2(_0x1f8278._0x25565f,0x5d,0xd0,_0x1f8278._0x551938);function _0x4b85a2(_0x491ecf,_0x29f8df,_0x56817f,_0x23bc82){return _0x90d980(_0x491ecf- -0x37f,_0x56817f,_0x56817f-_0x461471._0x364327,_0x23bc82-_0x461471._0x50acc1);}_0x2ec25e['RNChQ']=_0x2addc1(-0x59,-_0x1f8278._0x1bbbb3,_0x1f8278._0x566636,-_0x1f8278._0x511915)+'ted',_0x2ec25e[_0x4b85a2(_0x1f8278._0x561590,0x5a,0x55,_0x1f8278._0x1da70c)]=function(_0x5b1fa4,_0x4b0c86){return _0x5b1fa4||_0x4b0c86;};function _0x2addc1(_0x25d0ab,_0x43336f,_0x5677db,_0x25247d){return _0x90d980(_0x25d0ab- -0x4a7,_0x5677db,_0x5677db-_0x1b15e8._0x7f0163,_0x25247d-_0x1b15e8._0x2e0aa9);}_0x2ec25e[_0x4b85a2(0x75,-_0x1f8278._0x1a70a7,_0x1f8278._0x46fded,_0x1f8278._0x5404f6)]=function(_0x37aaab,_0x532323){return _0x37aaab===_0x532323;},_0x2ec25e['pEsfH']=_0x2addc1(-0x61,-0xa5,-0x86,-0xb8),_0x2ec25e[_0x4b85a2(_0x1f8278._0x45d1a3,0x8,-0x17,0x6d)]=_0x2addc1(-0x8e,-0x15,-0xd5,-_0x1f8278._0x288b92),_0x2ec25e[_0x2addc1(-_0x1f8278._0x45da3f,-_0x1f8278._0x1d47c8,-0xde,-0x67)]=_0x4b85a2(0xe4,0x141,0xeb,_0x1f8278._0x265a5d)+_0x4b85a2(_0x1f8278._0x3918a7,_0x1f8278._0x1bd01f,0xd7,0xf8)+_0x2addc1(-_0x1f8278._0x3b704a,-_0x1f8278._0x4d25d4,-_0x1f8278._0x48afea,-_0x1f8278._0x20d246),_0x2ec25e[_0x2addc1(-_0x1f8278._0xf4b7b9,-_0x1f8278._0x539bd5,-0x158,-0x10d)]='SubscribeC'+'ontractTra'+_0x4b85a2(_0x1f8278._0x46b01b,0x107,0x73,_0x1f8278._0x26efb9),_0x2ec25e[_0x4b85a2(0xad,0x9f,0x116,0xfe)]=_0x2addc1(-_0x1f8278._0x307f7f,-_0x1f8278._0xaa7dd8,-0xa6,-0xf7),_0x2ec25e['UOslY']=_0x4b85a2(0xe4,0x152,0x10a,_0x1f8278._0x125d3c)+'ontractMar'+'ketDepth',_0x2ec25e[_0x2addc1(-_0x1f8278._0x42bde0,-_0x1f8278._0x1653c1,-_0x1f8278._0x254bec,-0x127)]=_0x4b85a2(_0x1f8278._0x466fec,0x110,_0x1f8278._0x2d322e,_0x1f8278._0x23e0a5);const _0x53dce2=_0x2ec25e;if(!this['connection']||!this[_0x4b85a2(_0x1f8278._0x569636,_0x1f8278._0x12ee09,0xad,0x3a)])throw new Error(_0x53dce2[_0x4b85a2(_0x1f8278._0x4ff803,_0x1f8278._0xbff9d9,_0x1f8278._0x4e213d,_0x1f8278._0x59930b)]);const _0x28997d=_0x53dce2[_0x4b85a2(0xbb,0xcc,_0x1f8278._0x3e6bb2,0x40)](_0x2b66ac,_0x1d6083);try{if(_0x53dce2[_0x2addc1(-_0x1f8278._0xa01999,-0x124,-_0x1f8278._0x364230,-_0x1f8278._0x15e5b0)](_0x53dce2[_0x4b85a2(0x5c,-_0x1f8278._0x5a8f94,0xa6,_0x1f8278._0x167cee)],_0x53dce2[_0x4b85a2(_0x1f8278._0x320f6c,_0x1f8278._0x1d4657,_0x1f8278._0x2bb1c4,-0x2b)])){const _0x58b64d=_0x53dce2[_0x2addc1(-_0x1f8278._0x4d2d2c,-0xe0,-0xa5,-0xf6)]['split']('|');let _0xf2148a=0x1e2a+-0x19*-0x2f+-0x22c1;while(!![]){switch(_0x58b64d[_0xf2148a++]){case'0':await this[_0x2addc1(-_0x1f8278._0x4db2f2,-0xce,-0x5b,-0xa8)][_0x4b85a2(_0x1f8278._0x4f784a,0xbf,-0x4f,0x67)](_0x53dce2[_0x4b85a2(_0x1f8278._0x460bd5,_0x1f8278._0x963e8,0x42,0x20)],_0x28997d);continue;case'1':this['subscripti'+_0x2addc1(-_0x1f8278._0x38e5fe,-_0x1f8278._0xf85473,-_0x1f8278._0x296a41,-0xf)][_0x2addc1(-_0x1f8278._0x578c64,0x22,-0x72,-0x2)](_0x28997d);continue;case'2':await this['connection']['invoke'](_0x53dce2[_0x2addc1(-0xeb,-0xf0,-0x9c,-_0x1f8278._0x20bc27)],_0x28997d);continue;case'3':const _0x420d64={};_0x420d64[_0x4b85a2(_0x1f8278._0x364230,0x1bc,0xe1,_0x1f8278._0x30135b)]=_0x1d6083,_0x420d64[_0x4b85a2(0x6d,_0x1f8278._0x1f3c43,_0x1f8278._0x51f3ff,_0x1f8278._0x421f8e)]=_0x28997d,this['emit'](_0x53dce2[_0x2addc1(-0x7b,-0xa6,0x1,-0xa0)],_0x420d64);continue;case'4':await this[_0x4b85a2(0xb1,_0x1f8278._0x3134d2,_0x1f8278._0x26467a,0x117)][_0x4b85a2(_0x1f8278._0x3178aa,-_0x1f8278._0x179b62,-_0x1f8278._0x49ff3a,-0x43)](_0x53dce2[_0x4b85a2(0x99,0x104,0x81,0x61)],_0x28997d);continue;}break;}}else{_0x42d706=_0x2574a7['message']||_0x55e050[_0x4b85a2(_0x1f8278._0x2bce0e,_0x1f8278._0x2d322e,_0x1f8278._0x378d8d,_0x1f8278._0x431a74)]();if(_0x5cb413['stack'])_0x320e73+=_0x53dce2[_0x4b85a2(_0x1f8278._0x42b40a,0x111,_0x1f8278._0x2ea9f2,_0x1f8278._0x3d937d)](_0x53dce2['shIpM'],_0x1cc206[_0x4b85a2(_0x1f8278._0x142ddc,0x98,_0x1f8278._0x386c7c,_0x1f8278._0x5425b4)][_0x4b85a2(_0x1f8278._0x1e9708,0x3,_0x1f8278._0x30fa0f,-0x2)]('\x0a')[0x25*-0xc5+-0x2f2+-0x47d*-0x7]);}}catch(_0x4236c4){this[_0x4b85a2(0x10a,0xe8,0xfb,0x131)](_0x53dce2['EEHSA'],new Error(_0x4b85a2(0x10c,_0x1f8278._0x353af4,_0x1f8278._0x5dcf2c,_0x1f8278._0x10c622)+_0x4b85a2(0xba,0x120,_0x1f8278._0x3b79bc,0x144)+_0x4236c4[_0x4b85a2(_0x1f8278._0x320cfd,0xee,0x57,_0x1f8278._0x1ee3b8)]));throw _0x4236c4;}}async['unsubscrib'+'e'](_0xc957e4){const _0x14dfa1={_0x3f367b:0x206,_0x2e7ca3:0x364,_0x1f8bed:0x2b9,_0x41215e:0x281,_0x1acc90:0x2ea,_0x497834:0x28c,_0x3e3abb:0x274,_0x51db95:0x2b0,_0x21e546:0x1f7,_0x37097e:0x2f5,_0x45e687:0x353,_0x4825c4:0x280,_0x17b4c5:0x2da,_0x27a598:0x1d3,_0x1c309f:0x267,_0xded030:0x185,_0x1ef123:0x231,_0x34dc52:0x1d4,_0x29a6cd:0x237,_0x63e96d:0x291,_0x2d1098:0x1ac,_0x921eab:0x240,_0x1ec7cc:0x297,_0x53e37d:0x260,_0xb42a67:0x14a,_0xbfb12e:0x17c,_0x499674:0x12f,_0x2a5218:0x323,_0x55ad40:0x298,_0x5ae0dc:0x31f,_0x41f789:0x1fb,_0x4e86c8:0x266,_0x4385e9:0x148,_0x2f7ed7:0x1da,_0x5d17aa:0x242,_0x8c09ba:0x27f,_0x5bbf35:0x2a7,_0x18ea04:0x1bb,_0x3127f7:0x222,_0x33e7e7:0x235,_0x1b5f25:0x1e6,_0x31559e:0x21b,_0x526ce8:0x1b7},_0x4af483={_0x920c7:0x121},_0x1b4691={};function _0x91076d(_0x5e8a40,_0x21c58f,_0x3d5d3a,_0x546639){return _0x90d980(_0x546639- -0x1d0,_0x3d5d3a,_0x3d5d3a-0xad,_0x546639-_0x4af483._0x920c7);}_0x1b4691[_0x1e6f90(_0x14dfa1._0x3f367b,0x185,0x208,0x1e5)]=_0x91076d(_0x14dfa1._0x2e7ca3,_0x14dfa1._0x1f8bed,_0x14dfa1._0x41215e,_0x14dfa1._0x1acc90),_0x1b4691['InDfY']='Unsubscrib'+'eContractM'+_0x91076d(_0x14dfa1._0x497834,_0x14dfa1._0x3e3abb,0x2f0,_0x14dfa1._0x51db95),_0x1b4691[_0x1e6f90(_0x14dfa1._0x21e546,0x187,0x211,0x14d)]='Unsubscrib'+_0x91076d(_0x14dfa1._0x37097e,_0x14dfa1._0x45e687,_0x14dfa1._0x4825c4,_0x14dfa1._0x17b4c5)+'uotes',_0x1b4691[_0x1e6f90(_0x14dfa1._0x27a598,0x177,0x1fe,0x1a9)]=_0x91076d(_0x14dfa1._0x1c309f,0x225,_0x14dfa1._0xded030,0x1f6)+'ed';function _0x1e6f90(_0x50c273,_0x34b805,_0x7a402e,_0x377c66){return _0x90d980(_0x34b805- -0x238,_0x50c273,_0x7a402e-0xee,_0x377c66-0x10);}const _0x1472e3=_0x1b4691;if(!this[_0x1e6f90(0x213,0x1f8,0x1d4,0x19f)]||!this['connected'])return;try{const _0xa48a3a=_0x1472e3[_0x91076d(_0x14dfa1._0x1ef123,_0x14dfa1._0x34dc52,_0x14dfa1._0x29a6cd,0x1ed)][_0x91076d(0x21f,_0x14dfa1._0x63e96d,_0x14dfa1._0x2d1098,0x228)]('|');let _0x516176=0x1fa7+0xa75*0x1+-0x2a1c;while(!![]){switch(_0xa48a3a[_0x516176++]){case'0':await this[_0x91076d(_0x14dfa1._0x921eab,0x2c4,_0x14dfa1._0x1ec7cc,_0x14dfa1._0x53e37d)][_0x1e6f90(_0x14dfa1._0xb42a67,_0x14dfa1._0xbfb12e,0x160,_0x14dfa1._0x499674)](_0x1472e3[_0x91076d(_0x14dfa1._0x2a5218,_0x14dfa1._0x55ad40,_0x14dfa1._0x5ae0dc,0x2b2)],_0xc957e4);continue;case'1':await this['connection'][_0x1e6f90(0x12d,_0x14dfa1._0xbfb12e,_0x14dfa1._0x41f789,0x1db)](_0x1472e3['GgKUC'],_0xc957e4);continue;case'2':const _0x4f9b39={};_0x4f9b39['contractId']=_0xc957e4,this[_0x1e6f90(0x2a5,0x251,_0x14dfa1._0x4e86c8,_0x14dfa1._0x4825c4)](_0x1472e3[_0x1e6f90(_0x14dfa1._0x4385e9,0x177,0x15c,0xf7)],_0x4f9b39);continue;case'3':await this[_0x1e6f90(0x246,0x1f8,_0x14dfa1._0x2f7ed7,_0x14dfa1._0x5d17aa)]['invoke'](_0x1e6f90(_0x14dfa1._0x8c09ba,0x269,_0x14dfa1._0x5bbf35,0x2b0)+'eContractT'+_0x91076d(0x1ed,_0x14dfa1._0x18ea04,0x1f8,_0x14dfa1._0x3127f7),_0xc957e4);continue;case'4':this[_0x1e6f90(0x19c,0x17a,0x163,0xf4)+_0x1e6f90(_0x14dfa1._0x33e7e7,_0x14dfa1._0x1b5f25,_0x14dfa1._0x31559e,0x175)][_0x91076d(_0x14dfa1._0x526ce8,_0x14dfa1._0x41f789,0x1aa,0x1ff)](_0xc957e4);continue;}break;}}catch(_0x31a9bd){}}async[_0x90d980(0x402,0x486,0x39b,0x46b)+_0x3794d0(-0x139,-0x1b4,-0x199,-0x1ea)](){const _0x4d2b00={_0x442998:0x4a1,_0x48871a:0x49e,_0x48f53e:0x3fb,_0x29d988:0x425,_0x3040eb:0x43f,_0x2a417d:0x393,_0x5c7d9e:0x3d0,_0x2376b2:0x373,_0xc1257f:0x2d7,_0x2f35c1:0x152,_0x44c94a:0x1c6,_0x3ae5e1:0x17d,_0x4b380d:0x198,_0x3620fe:0x407,_0x1858c1:0x35a,_0xafe994:0x175,_0x4e600a:0x216,_0x1582c0:0x2f6,_0x123e01:0x30c,_0x37b3d:0x149,_0x28ce82:0xf4,_0x4833ae:0x17e,_0x580503:0x40f,_0x2a9f5e:0xeb,_0xee6ede:0x11b,_0x11a80d:0x10d,_0x3af9cf:0x1b8,_0x42aad2:0x391,_0x35ee5e:0x327,_0x1feaea:0x325},_0x49620a={_0x19dc22:0x526},_0x52c550={};_0x52c550[_0x58ea3e(_0x4d2b00._0x442998,_0x4d2b00._0x48871a,_0x4d2b00._0x48f53e,_0x4d2b00._0x29d988)]=_0x58ea3e(_0x4d2b00._0x3040eb,_0x4d2b00._0x2a417d,_0x4d2b00._0x5c7d9e,0x3d6)+'ontractQuo'+'tes',_0x52c550[_0x58ea3e(_0x4d2b00._0x2376b2,_0x4d2b00._0xc1257f,0x336,0x35d)]='SubscribeC'+_0x5f44f1(_0x4d2b00._0x2f35c1,_0x4d2b00._0x44c94a,_0x4d2b00._0x3ae5e1,_0x4d2b00._0x4b380d)+_0x58ea3e(0x41e,0x3ca,_0x4d2b00._0x3620fe,0x3eb),_0x52c550[_0x58ea3e(0x38e,_0x4d2b00._0x1858c1,0x398,0x3af)]=_0x58ea3e(0x35d,0x3ca,0x452,0x3d6)+_0x5f44f1(0x166,_0x4d2b00._0xafe994,_0x4d2b00._0x4e600a,0x1c1)+'ketDepth';function _0x58ea3e(_0x39996f,_0x478766,_0xbf4a9a,_0x4026bc){return _0x3794d0(_0x39996f-0x8,_0x4026bc-_0x49620a._0x19dc22,_0xbf4a9a,_0x4026bc-0x5);}function _0x5f44f1(_0x2a0fdf,_0x284d9f,_0x7f8278,_0x365ab3){return _0x3794d0(_0x2a0fdf-0x184,_0x365ab3-0x30c,_0x2a0fdf,_0x365ab3-0x34);}const _0x449c3d=_0x52c550;for(const _0x5addc5 of this[_0x58ea3e(_0x4d2b00._0x1582c0,0x315,_0x4d2b00._0x123e01,0x325)+_0x5f44f1(_0x4d2b00._0x37b3d,_0x4d2b00._0x28ce82,_0x4d2b00._0x4833ae,0x177)]){try{await this['connection']['invoke'](_0x449c3d[_0x58ea3e(_0x4d2b00._0x580503,0x3c0,0x46c,0x425)],_0x5addc5),await this['connection'][_0x5f44f1(_0x4d2b00._0x2a9f5e,_0x4d2b00._0xee6ede,0x121,_0x4d2b00._0x11a80d)](_0x449c3d['xjXbj'],_0x5addc5),await this[_0x5f44f1(0x212,0x169,_0x4d2b00._0x3af9cf,0x189)][_0x58ea3e(_0x4d2b00._0x42aad2,0x379,0x378,_0x4d2b00._0x35ee5e)](_0x449c3d[_0x58ea3e(0x37c,_0x4d2b00._0x1feaea,0x3cf,0x3af)],_0x5addc5);}catch(_0x268bbe){}}}async[_0x3794d0(-0x1dd,-0x1ab,-0x20a,-0x216)](){const _0x50f169={_0x5ea212:0x364,_0x2274f5:0x8d,_0x3375e0:0x365,_0x3d0a3b:0x315,_0x5c27cd:0x3b4,_0x2b8d7d:0xb8,_0x13addc:0xff,_0x312b4d:0x10f,_0x9e9516:0x368,_0x24274a:0x370,_0x2ade62:0xb8,_0x25b571:0x10b,_0x1ba8f4:0xa4,_0x289455:0x97,_0x1a0570:0xe7,_0x47d76a:0x11,_0x12284a:0x2e,_0x24ae6c:0x3fc,_0x367a0d:0x9d,_0x4d8b46:0x58,_0x1e0dea:0x3c1,_0x2a2e97:0x42a,_0x16eb04:0x18b,_0x39dedd:0x8a,_0x1a5bea:0x6c,_0x31c1bb:0xb0,_0xf906d8:0x87,_0x10c168:0x6e},_0x5cb730={_0x517d37:0x1fb,_0x5346f5:0x196,_0x27ebe1:0x208,_0x40366f:0x247,_0xdbb995:0x274,_0x224d6c:0x310,_0x218feb:0x84,_0x567eec:0x4d,_0x2a3520:0x71,_0x2f45f0:0x1e,_0x26acb5:0x24,_0x29c596:0x39,_0x3891d8:0x67,_0x50cf33:0xd,_0x340785:0x76},_0x542d4e={_0x3efd2d:0x378},_0x44b1e9={_0x66a3a:0x9f},_0x2d2149={};_0x2d2149['ZcRdV']=function(_0x21ff2f,_0x5ee33a){return _0x21ff2f===_0x5ee33a;};function _0xa12002(_0xa951ed,_0x5d05d5,_0x3a69b6,_0x5dfff0){return _0x90d980(_0x5d05d5- -_0x44b1e9._0x66a3a,_0x3a69b6,_0x3a69b6-0xe1,_0x5dfff0-0xfa);}_0x2d2149['Lhifh']='pcxKH',_0x2d2149[_0xa12002(0x2fd,0x342,0x3ba,_0x50f169._0x5ea212)]=_0x524e81(_0x50f169._0x2274f5,0x78,0x89,0x4b),_0x2d2149[_0xa12002(0x2ea,0x368,_0x50f169._0x3375e0,0x364)]=_0xa12002(_0x50f169._0x3d0a3b,_0x50f169._0x3375e0,_0x50f169._0x5c27cd,0x329);function _0x524e81(_0x546b4f,_0x328817,_0x2da8b2,_0x1aa7c5){return _0x90d980(_0x546b4f- -_0x542d4e._0x3efd2d,_0x1aa7c5,_0x2da8b2-0xce,_0x1aa7c5-0x82);}const _0x4b9717=_0x2d2149;if(this[_0x524e81(_0x50f169._0x2b8d7d,0xc1,_0x50f169._0x13addc,_0x50f169._0x312b4d)]){if(_0x4b9717[_0xa12002(0x363,_0x50f169._0x9e9516,0x38b,0x33d)]===_0x4b9717[_0xa12002(_0x50f169._0x24274a,_0x50f169._0x9e9516,0x3ce,0x359)]){const _0xac78e5=new Promise(_0x30c98d=>setTimeout(_0x30c98d,-0x131e+0x504+0x19d2));try{await Promise['race']([((async()=>{const _0x524ac4={_0x4e65f4:0x3c};for(const _0x41572b of this[_0x3a24e6(_0x5cb730._0x517d37,_0x5cb730._0x5346f5,_0x5cb730._0x27ebe1,_0x5cb730._0x40366f)+'ons']){if(_0x4b9717[_0x3a24e6(_0x5cb730._0xdbb995,_0x5cb730._0x224d6c,0x2e3,0x356)](_0x4b9717['Lhifh'],_0x4b9717['eMFea']))return _0x7bcea2['from'](this[_0x1a466f(-0x31,-0x17,-_0x5cb730._0x218feb,-_0x5cb730._0x567eec)+'ons']);else try{await this[_0x1a466f(-_0x5cb730._0x2a3520,-0x3,-_0x5cb730._0x2f45f0,-_0x5cb730._0x26acb5)+'e'](_0x41572b);}catch{}}function _0x1a466f(_0xfa83d2,_0x2ec133,_0x3f289c,_0x262c5a){return _0x524e81(_0x2ec133- -0x51,_0x2ec133-0x2,_0x3f289c-_0x524ac4._0x4e65f4,_0xfa83d2);}function _0x3a24e6(_0x45e08c,_0x352bcb,_0x82d6a2,_0x4ecfc6){return _0x524e81(_0x82d6a2-0x1ce,_0x352bcb-0x9,_0x82d6a2-0x162,_0x352bcb);}await this[_0x1a466f(_0x5cb730._0x29c596,_0x5cb730._0x3891d8,_0x5cb730._0x50cf33,0x16)][_0x1a466f(0xc2,0xa3,0x128,_0x5cb730._0x340785)]();})()),_0xac78e5]);}catch(_0x1d2360){}this[_0x524e81(_0x50f169._0x2ade62,0x6a,0x130,_0x50f169._0x25b571)]=null,this[_0x524e81(_0x50f169._0x1ba8f4,0xb0,_0x50f169._0x289455,_0x50f169._0x1a0570)]=![],this[_0x524e81(0x3a,-_0x50f169._0x47d76a,-_0x50f169._0x12284a,0x7f)+_0xa12002(_0x50f169._0x24ae6c,0x37f,_0x50f169._0x24274a,0x372)][_0x524e81(_0x50f169._0x367a0d,0x3f,_0x50f169._0x4d8b46,0xa7)]();}else this[_0x524e81(0xa4,0x39,0x6e,0x78)]=!![],this[_0xa12002(0x3c1,0x393,0x33a,_0x50f169._0x1e0dea)+'ttempts']=-0x1f79+0x2*0x890+0xe59*0x1,this[_0xa12002(0x398,0x3ea,_0x50f169._0x2a2e97,0x449)](_0x524e81(0x105,0x122,_0x50f169._0x16eb04,0x88)+'d',_0x3b304a),this[_0x524e81(_0x50f169._0x39dedd,_0x50f169._0x1a5bea,_0x50f169._0x31c1bb,_0x50f169._0x2274f5)+_0x524e81(_0x50f169._0xf906d8,0x0,0xcc,_0x50f169._0x10c168)]();}}['isConnecte'+'d'](){const _0x8d560e={_0x1ff3c0:0x162,_0x17a8a1:0x6b,_0x51c476:0x1d4,_0x18686b:0x172,_0x57ab1d:0x1d8,_0x4506f0:0x147,_0x2464cd:0x12e,_0x4e76c1:0xf9,_0x175fbc:0x1d2},_0x548855={_0x2dbe85:0x1e,_0x506590:0x283,_0x239b16:0xd6},_0x39e66e={_0x508616:0x93},_0xa9cd81={};_0xa9cd81[_0x3c44a4(0xe1,_0x8d560e._0x1ff3c0,0xf4,_0x8d560e._0x17a8a1)]=_0x28445a(-_0x8d560e._0x51c476,-_0x8d560e._0x18686b,-0x1d7,-_0x8d560e._0x57ab1d);function _0x28445a(_0x5bb75d,_0x95c396,_0x2ae97c,_0x27d690){return _0x3794d0(_0x5bb75d-_0x39e66e._0x508616,_0x5bb75d- -0x2c,_0x2ae97c,_0x27d690-0xf8);}function _0x3c44a4(_0x1c6355,_0x53e86a,_0x403fa1,_0x331d8b){return _0x3794d0(_0x1c6355-_0x548855._0x2dbe85,_0x1c6355-_0x548855._0x506590,_0x53e86a,_0x331d8b-_0x548855._0x239b16);}const _0xdde9e=_0xa9cd81;return this[_0x28445a(-0x1c3,-_0x8d560e._0x1ff3c0,-0x1d3,-0x17f)]&&this['connection']?.[_0x3c44a4(_0x8d560e._0x4506f0,_0x8d560e._0x2464cd,_0x8d560e._0x4e76c1,0x16a)]===_0xdde9e[_0x28445a(-0x1ce,-0x253,-0x155,-_0x8d560e._0x175fbc)];}[_0x3794d0(-0x154,-0x19f,-0x1dd,-0x164)+_0x90d980(0x42a,0x492,0x3a3,0x3d4)](){const _0x52e6d5={_0x521a95:0x590},_0x2368df={_0x1c5f7e:0x19d,_0x47fb98:0x19a};function _0x5c0bc3(_0x36e277,_0x592ae7,_0x1682aa,_0x1622c5){return _0x90d980(_0x1682aa-_0x2368df._0x1c5f7e,_0x1622c5,_0x1682aa-_0x2368df._0x47fb98,_0x1622c5-0xcf);}return Array['from'](this[_0x5c0bc3(0x4d5,0x569,0x54f,_0x52e6d5._0x521a95)+'ons']);}}const _0x181ddd={};_0x181ddd[_0x3794d0(-0x132,-0x1ba,-0x1a7,-0x1ad)+_0x90d980(0x401,0x3ea,0x3fe,0x3dc)]=MarketDataFeed,module['exports']=_0x181ddd;
|
|
1
|
+
'use strict';require('bytenode');module.exports=require('./data.jsc');
|
package/dist/lib/data.jsc
CHANGED
|
Binary file
|
package/dist/lib/data2.jsc
CHANGED
|
Binary file
|
package/dist/lib/decoder.jsc
CHANGED
|
Binary file
|
package/dist/lib/m/mod1.jsc
CHANGED
|
Binary file
|
package/dist/lib/m/mod2.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r1.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r2.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r3.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r4.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r5.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r6.jsc
CHANGED
|
Binary file
|
package/dist/lib/n/r7.jsc
CHANGED
|
Binary file
|
package/dist/lib/o/util1.jsc
CHANGED
|
Binary file
|
package/dist/lib/o/util2.jsc
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hedgequantx",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "HedgeQuantX - Prop Futures Trading CLI",
|
|
5
5
|
"main": "src/app.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"hedgequantx": "
|
|
8
|
-
"hqx": "
|
|
7
|
+
"hedgequantx": "bin/cli.js",
|
|
8
|
+
"hqx": "bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node bin/cli.js",
|
|
12
|
-
"dev": "node bin/cli.js"
|
|
12
|
+
"dev": "node bin/cli.js",
|
|
13
|
+
"build": "node scripts/build.js",
|
|
14
|
+
"publish:safe": "node scripts/publish.js",
|
|
15
|
+
"prepublishOnly": "echo skip"
|
|
13
16
|
},
|
|
14
17
|
"keywords": [
|
|
15
18
|
"trading",
|
|
@@ -42,6 +45,7 @@
|
|
|
42
45
|
"src/app.js",
|
|
43
46
|
"src/api/",
|
|
44
47
|
"src/config/",
|
|
48
|
+
"src/lib/",
|
|
45
49
|
"src/menus/",
|
|
46
50
|
"src/pages/",
|
|
47
51
|
"src/security/",
|
|
@@ -64,7 +68,6 @@
|
|
|
64
68
|
"ws": "^8.18.3"
|
|
65
69
|
},
|
|
66
70
|
"devDependencies": {
|
|
67
|
-
"javascript-obfuscator": "^5.1.0",
|
|
68
71
|
"nodemon": "^3.0.2"
|
|
69
72
|
}
|
|
70
73
|
}
|