iobroker.mywebui 1.38.24 → 1.40.0

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 (38) hide show
  1. package/dist/backend/3d-editor-integration.js +484 -0
  2. package/dist/backend/LicenseValidator.js +1 -1
  3. package/dist/backend/main.js +1 -1
  4. package/io-package.json +1 -1
  5. package/package.json +2 -2
  6. package/www/3d-editor/ACCESS.md +292 -0
  7. package/www/3d-editor/DEPLOYMENT.md +448 -0
  8. package/www/3d-editor/INTEGRATION.md +714 -0
  9. package/www/3d-editor/PHASE2.md +469 -0
  10. package/www/3d-editor/PHASE4.md +540 -0
  11. package/www/3d-editor/PHASE5.md +575 -0
  12. package/www/3d-editor/README.md +275 -0
  13. package/www/3d-editor/README_COMPLETE.md +424 -0
  14. package/www/3d-editor/START_HERE.md +467 -0
  15. package/www/3d-editor/STYLING.md +357 -0
  16. package/www/3d-editor/demo.html +371 -0
  17. package/www/3d-editor/package.json +24 -0
  18. package/www/3d-editor/src/core/3d-editor.ts +241 -0
  19. package/www/3d-editor/src/core/asset-manager.ts +321 -0
  20. package/www/3d-editor/src/core/glb-loader.ts +112 -0
  21. package/www/3d-editor/src/core/property-panel-adapter.ts +252 -0
  22. package/www/3d-editor/src/core/property-store.ts +107 -0
  23. package/www/3d-editor/src/core/scene-manager.ts +253 -0
  24. package/www/3d-editor/src/core/selection-manager.ts +185 -0
  25. package/www/3d-editor/src/core/signal-store.ts +144 -0
  26. package/www/3d-editor/src/core/snap-points.ts +404 -0
  27. package/www/3d-editor/src/examples/mywebui-integration-example.ts +295 -0
  28. package/www/3d-editor/src/index.ts +40 -0
  29. package/www/3d-editor/src/styles/3d-editor.css +518 -0
  30. package/www/3d-editor/src/styles/asset-manager.css +418 -0
  31. package/www/3d-editor/src/ui/3d-editor-element.ts +341 -0
  32. package/www/3d-editor/src/ui/3d-editor-wrapper.ts +183 -0
  33. package/www/3d-editor/src/ui/asset-manager-panel.ts +305 -0
  34. package/www/3d-editor/src/ui/layout-planner.ts +375 -0
  35. package/www/3d-editor/tsconfig.json +23 -0
  36. package/www/demo.html +371 -0
  37. package/www/frontend/route/3d-editor.route.ts +211 -0
  38. package/www/frontend/runtime/3d-editor-nav.ts +54 -0
@@ -0,0 +1,484 @@
1
+ /**
2
+ * 3D Editor Integration for ioBroker mywebui Adapter
3
+ * Handles 3D editor state management, layouts, and models
4
+ */
5
+
6
+ export class ThreeDEditorIntegration {
7
+ constructor(adapter) {
8
+ this.adapter = adapter;
9
+ this.namespace = 'mywebui.0.3d-editor';
10
+ this.layoutsNamespace = this.namespace + '.layouts';
11
+ this.modelsNamespace = this.namespace + '.models';
12
+ }
13
+
14
+ /**
15
+ * Initialize 3D Editor states and data structures
16
+ */
17
+ async initialize() {
18
+ this.adapter.log.info('🎨 Initializing 3D Editor integration...');
19
+
20
+ try {
21
+ // Create main state folder
22
+ await this.adapter.setObjectAsync(this.namespace, {
23
+ type: 'folder',
24
+ common: {
25
+ name: '3D Editor',
26
+ desc: 'Professional 3D editor with layout planning',
27
+ },
28
+ native: {},
29
+ });
30
+
31
+ // Create layouts folder
32
+ await this.adapter.setObjectAsync(this.layoutsNamespace, {
33
+ type: 'folder',
34
+ common: {
35
+ name: '3D Layouts',
36
+ desc: 'Saved 3D layouts',
37
+ },
38
+ native: {},
39
+ });
40
+
41
+ // Create models folder
42
+ await this.adapter.setObjectAsync(this.modelsNamespace, {
43
+ type: 'folder',
44
+ common: {
45
+ name: '3D Models',
46
+ desc: 'Available 3D models',
47
+ },
48
+ native: {},
49
+ });
50
+
51
+ // Create current layout state
52
+ await this.adapter.setObjectAsync(this.namespace + '.currentLayout', {
53
+ type: 'state',
54
+ common: {
55
+ name: 'Current Layout',
56
+ desc: 'Currently loaded layout name',
57
+ type: 'string',
58
+ role: 'text',
59
+ read: true,
60
+ write: true,
61
+ },
62
+ native: {},
63
+ });
64
+
65
+ await this.adapter.setStateAsync(this.namespace + '.currentLayout', '', true);
66
+
67
+ // Create layout list state
68
+ await this.adapter.setObjectAsync(this.namespace + '.layoutList', {
69
+ type: 'state',
70
+ common: {
71
+ name: 'Layout List',
72
+ desc: 'JSON array of available layouts',
73
+ type: 'string',
74
+ role: 'json',
75
+ read: true,
76
+ write: false,
77
+ },
78
+ native: {},
79
+ });
80
+
81
+ await this.adapter.setStateAsync(this.namespace + '.layoutList', '[]', true);
82
+
83
+ // Create model list state
84
+ await this.adapter.setObjectAsync(this.namespace + '.modelList', {
85
+ type: 'state',
86
+ common: {
87
+ name: 'Model List',
88
+ desc: 'JSON array of available models',
89
+ type: 'string',
90
+ role: 'json',
91
+ read: true,
92
+ write: false,
93
+ },
94
+ native: {},
95
+ });
96
+
97
+ await this.adapter.setStateAsync(this.namespace + '.modelList', '[]', true);
98
+
99
+ // Status state
100
+ await this.adapter.setObjectAsync(this.namespace + '.status', {
101
+ type: 'state',
102
+ common: {
103
+ name: 'Status',
104
+ desc: '3D Editor status',
105
+ type: 'string',
106
+ role: 'text',
107
+ read: true,
108
+ write: false,
109
+ },
110
+ native: {},
111
+ });
112
+
113
+ await this.adapter.setStateAsync(this.namespace + '.status', 'ready', true);
114
+
115
+ this.adapter.log.info('✅ 3D Editor integration initialized');
116
+ } catch (error) {
117
+ this.adapter.log.error('❌ Failed to initialize 3D Editor: ' + error);
118
+ }
119
+ }
120
+
121
+ /**
122
+ * Handle 3D Editor messages from frontend
123
+ */
124
+ async handleMessage(msg) {
125
+ const { command, data } = msg;
126
+
127
+ switch (command) {
128
+ case 'saveLayout':
129
+ return await this.saveLayout(data);
130
+ case 'loadLayout':
131
+ return await this.loadLayout(data);
132
+ case 'deleteLayout':
133
+ return await this.deleteLayout(data);
134
+ case 'getLayoutList':
135
+ return await this.getLayoutList();
136
+ case 'addModel':
137
+ return await this.addModel(data);
138
+ case 'removeModel':
139
+ return await this.removeModel(data);
140
+ case 'getModelList':
141
+ return await this.getModelList();
142
+ case 'exportScene':
143
+ return await this.exportScene(data);
144
+ case 'importScene':
145
+ return await this.importScene(data);
146
+ default:
147
+ this.adapter.log.warn(`Unknown 3D Editor command: ${command}`);
148
+ return { success: false, message: 'Unknown command' };
149
+ }
150
+ }
151
+
152
+ /**
153
+ * Save layout to ioBroker storage
154
+ */
155
+ async saveLayout(layoutData) {
156
+ try {
157
+ const { name, data } = layoutData;
158
+ if (!name) {
159
+ return { success: false, message: 'Layout name is required' };
160
+ }
161
+
162
+ const layoutId = name.replace(/[^a-z0-9-_]/gi, '_').toLowerCase();
163
+ const layoutStateName = this.layoutsNamespace + '.' + layoutId;
164
+
165
+ // Save layout data as JSON
166
+ await this.adapter.setObjectAsync(layoutStateName, {
167
+ type: 'state',
168
+ common: {
169
+ name: name,
170
+ desc: `3D Layout: ${name}`,
171
+ type: 'string',
172
+ role: 'json',
173
+ read: true,
174
+ write: true,
175
+ },
176
+ native: {},
177
+ });
178
+
179
+ await this.adapter.setStateAsync(layoutStateName, JSON.stringify(data), true);
180
+
181
+ // Update layout list
182
+ await this.updateLayoutList();
183
+
184
+ // Update current layout
185
+ await this.adapter.setStateAsync(this.namespace + '.currentLayout', name, true);
186
+
187
+ this.adapter.log.info(`✅ Layout saved: ${name}`);
188
+ return { success: true, layoutId, message: `Layout '${name}' saved successfully` };
189
+ } catch (error) {
190
+ this.adapter.log.error('Failed to save layout: ' + error);
191
+ return { success: false, message: error.toString() };
192
+ }
193
+ }
194
+
195
+ /**
196
+ * Load layout from ioBroker storage
197
+ */
198
+ async loadLayout(layoutData) {
199
+ try {
200
+ const { layoutId } = layoutData;
201
+ if (!layoutId) {
202
+ return { success: false, message: 'Layout ID is required' };
203
+ }
204
+
205
+ const layoutStateName = this.layoutsNamespace + '.' + layoutId;
206
+ const state = await this.adapter.getStateAsync(layoutStateName);
207
+
208
+ if (!state || !state.val) {
209
+ return { success: false, message: `Layout '${layoutId}' not found` };
210
+ }
211
+
212
+ const layoutData_parsed = JSON.parse(state.val);
213
+
214
+ // Update current layout
215
+ const layout = await this.adapter.getObjectAsync(layoutStateName);
216
+ const layoutName = layout?.common?.name || layoutId;
217
+ await this.adapter.setStateAsync(this.namespace + '.currentLayout', layoutName, true);
218
+
219
+ this.adapter.log.info(`✅ Layout loaded: ${layoutName}`);
220
+ return { success: true, data: layoutData_parsed, message: `Layout '${layoutName}' loaded` };
221
+ } catch (error) {
222
+ this.adapter.log.error('Failed to load layout: ' + error);
223
+ return { success: false, message: error.toString() };
224
+ }
225
+ }
226
+
227
+ /**
228
+ * Delete layout from ioBroker storage
229
+ */
230
+ async deleteLayout(layoutData) {
231
+ try {
232
+ const { layoutId } = layoutData;
233
+ if (!layoutId) {
234
+ return { success: false, message: 'Layout ID is required' };
235
+ }
236
+
237
+ const layoutStateName = this.layoutsNamespace + '.' + layoutId;
238
+ await this.adapter.delObjectAsync(layoutStateName, { recursive: true });
239
+
240
+ // Update layout list
241
+ await this.updateLayoutList();
242
+
243
+ // Clear current layout
244
+ await this.adapter.setStateAsync(this.namespace + '.currentLayout', '', true);
245
+
246
+ this.adapter.log.info(`✅ Layout deleted: ${layoutId}`);
247
+ return { success: true, message: `Layout '${layoutId}' deleted` };
248
+ } catch (error) {
249
+ this.adapter.log.error('Failed to delete layout: ' + error);
250
+ return { success: false, message: error.toString() };
251
+ }
252
+ }
253
+
254
+ /**
255
+ * Get list of all layouts
256
+ */
257
+ async getLayoutList() {
258
+ try {
259
+ const obj = await this.adapter.getObjectAsync(this.layoutsNamespace);
260
+ if (!obj) {
261
+ return { success: true, layouts: [] };
262
+ }
263
+
264
+ const layouts = [];
265
+ const folder = await this.adapter.getObjectAsync(this.layoutsNamespace);
266
+
267
+ if (folder) {
268
+ const states = await this.adapter.getStatesAsync(this.layoutsNamespace + '.*');
269
+ for (const key in states) {
270
+ const state = states[key];
271
+ const objKey = key.replace(/\.s$/, '');
272
+ const layoutObj = await this.adapter.getObjectAsync(objKey);
273
+
274
+ layouts.push({
275
+ id: objKey.split('.').pop(),
276
+ name: layoutObj?.common?.name || objKey.split('.').pop(),
277
+ timestamp: state.ts,
278
+ });
279
+ }
280
+ }
281
+
282
+ layouts.sort((a, b) => b.timestamp - a.timestamp);
283
+ return { success: true, layouts };
284
+ } catch (error) {
285
+ this.adapter.log.error('Failed to get layout list: ' + error);
286
+ return { success: false, layouts: [], message: error.toString() };
287
+ }
288
+ }
289
+
290
+ /**
291
+ * Update layout list state
292
+ */
293
+ async updateLayoutList() {
294
+ try {
295
+ const result = await this.getLayoutList();
296
+ if (result.success) {
297
+ await this.adapter.setStateAsync(
298
+ this.namespace + '.layoutList',
299
+ JSON.stringify(result.layouts),
300
+ true
301
+ );
302
+ }
303
+ } catch (error) {
304
+ this.adapter.log.error('Failed to update layout list: ' + error);
305
+ }
306
+ }
307
+
308
+ /**
309
+ * Add model to available models
310
+ */
311
+ async addModel(modelData) {
312
+ try {
313
+ const { id, name, url } = modelData;
314
+ if (!id || !name || !url) {
315
+ return { success: false, message: 'id, name, and url are required' };
316
+ }
317
+
318
+ const modelStateName = this.modelsNamespace + '.' + id;
319
+
320
+ await this.adapter.setObjectAsync(modelStateName, {
321
+ type: 'state',
322
+ common: {
323
+ name: name,
324
+ desc: `3D Model: ${name}`,
325
+ type: 'string',
326
+ role: 'json',
327
+ read: true,
328
+ write: false,
329
+ },
330
+ native: {},
331
+ });
332
+
333
+ await this.adapter.setStateAsync(
334
+ modelStateName,
335
+ JSON.stringify({ id, name, url, dateAdded: new Date().toISOString() }),
336
+ true
337
+ );
338
+
339
+ // Update model list
340
+ await this.updateModelList();
341
+
342
+ this.adapter.log.info(`✅ Model added: ${name}`);
343
+ return { success: true, message: `Model '${name}' added` };
344
+ } catch (error) {
345
+ this.adapter.log.error('Failed to add model: ' + error);
346
+ return { success: false, message: error.toString() };
347
+ }
348
+ }
349
+
350
+ /**
351
+ * Remove model from available models
352
+ */
353
+ async removeModel(modelData) {
354
+ try {
355
+ const { modelId } = modelData;
356
+ if (!modelId) {
357
+ return { success: false, message: 'Model ID is required' };
358
+ }
359
+
360
+ const modelStateName = this.modelsNamespace + '.' + modelId;
361
+ await this.adapter.delObjectAsync(modelStateName, { recursive: true });
362
+
363
+ // Update model list
364
+ await this.updateModelList();
365
+
366
+ this.adapter.log.info(`✅ Model removed: ${modelId}`);
367
+ return { success: true, message: `Model '${modelId}' removed` };
368
+ } catch (error) {
369
+ this.adapter.log.error('Failed to remove model: ' + error);
370
+ return { success: false, message: error.toString() };
371
+ }
372
+ }
373
+
374
+ /**
375
+ * Get list of all models
376
+ */
377
+ async getModelList() {
378
+ try {
379
+ const states = await this.adapter.getStatesAsync(this.modelsNamespace + '.*');
380
+ const models = [];
381
+
382
+ for (const key in states) {
383
+ const state = states[key];
384
+ if (state?.val) {
385
+ try {
386
+ const model = JSON.parse(state.val);
387
+ models.push(model);
388
+ } catch (e) {
389
+ // Skip invalid models
390
+ }
391
+ }
392
+ }
393
+
394
+ return { success: true, models };
395
+ } catch (error) {
396
+ this.adapter.log.error('Failed to get model list: ' + error);
397
+ return { success: false, models: [], message: error.toString() };
398
+ }
399
+ }
400
+
401
+ /**
402
+ * Update model list state
403
+ */
404
+ async updateModelList() {
405
+ try {
406
+ const result = await this.getModelList();
407
+ if (result.success) {
408
+ await this.adapter.setStateAsync(
409
+ this.namespace + '.modelList',
410
+ JSON.stringify(result.models),
411
+ true
412
+ );
413
+ }
414
+ } catch (error) {
415
+ this.adapter.log.error('Failed to update model list: ' + error);
416
+ }
417
+ }
418
+
419
+ /**
420
+ * Export scene data
421
+ */
422
+ async exportScene(sceneData) {
423
+ try {
424
+ const sceneStateName = this.namespace + '.exportedScene';
425
+
426
+ await this.adapter.setObjectAsync(sceneStateName, {
427
+ type: 'state',
428
+ common: {
429
+ name: 'Exported Scene',
430
+ desc: 'Last exported 3D scene',
431
+ type: 'string',
432
+ role: 'json',
433
+ read: true,
434
+ write: false,
435
+ },
436
+ native: {},
437
+ });
438
+
439
+ await this.adapter.setStateAsync(sceneStateName, JSON.stringify(sceneData), true);
440
+
441
+ this.adapter.log.info('✅ Scene exported');
442
+ return { success: true, message: 'Scene exported successfully' };
443
+ } catch (error) {
444
+ this.adapter.log.error('Failed to export scene: ' + error);
445
+ return { success: false, message: error.toString() };
446
+ }
447
+ }
448
+
449
+ /**
450
+ * Import scene data
451
+ */
452
+ async importScene(sceneData) {
453
+ try {
454
+ const { sceneName, data } = sceneData;
455
+ if (!sceneName || !data) {
456
+ return { success: false, message: 'sceneName and data are required' };
457
+ }
458
+
459
+ const sceneId = sceneName.replace(/[^a-z0-9-_]/gi, '_').toLowerCase();
460
+ const sceneStateName = this.namespace + '.scenes.' + sceneId;
461
+
462
+ await this.adapter.setObjectAsync(sceneStateName, {
463
+ type: 'state',
464
+ common: {
465
+ name: sceneName,
466
+ desc: `3D Scene: ${sceneName}`,
467
+ type: 'string',
468
+ role: 'json',
469
+ read: true,
470
+ write: true,
471
+ },
472
+ native: {},
473
+ });
474
+
475
+ await this.adapter.setStateAsync(sceneStateName, JSON.stringify(data), true);
476
+
477
+ this.adapter.log.info(`✅ Scene imported: ${sceneName}`);
478
+ return { success: true, message: `Scene '${sceneName}' imported` };
479
+ } catch (error) {
480
+ this.adapter.log.error('Failed to import scene: ' + error);
481
+ return { success: false, message: error.toString() };
482
+ }
483
+ }
484
+ }
@@ -1 +1 @@
1
- const _0x34de00=_0x2556;function _0x2556(_0x27229e,_0x1e280e){_0x27229e=_0x27229e-(-0x3*-0x391+0x2223+0x1*-0x2b0b);const _0x75f6e7=_0x3bd2();let _0x37c893=_0x75f6e7[_0x27229e];return _0x37c893;}(function(_0x490008,_0x548e33){const _0x355961=_0x2556,_0x268dcf=_0x490008();while(!![]){try{const _0x4d962d=-parseInt(_0x355961(0x1de))/(0x7*0x268+0x24af+-0x3586)+-parseInt(_0x355961(0x239))/(-0x59b*-0x1+-0x23c4+0x1e2b)+parseInt(_0x355961(0x24b))/(-0x23d0+-0x1723*-0x1+0x7*0x1d0)+-parseInt(_0x355961(0x223))/(0xbc5+0x5*-0x1bb+-0x31a)+-parseInt(_0x355961(0x20a))/(0xfe5+0x1cf*0x5+0x1*-0x18eb)*(-parseInt(_0x355961(0x24a))/(0x397+-0x814+0x483))+parseInt(_0x355961(0x232))/(0xe1*-0x1b+-0x221f+0x543*0xb)+-parseInt(_0x355961(0x20e))/(-0x2*0xd1e+-0x16b*-0xe+-0x335*-0x2)*(parseInt(_0x355961(0x21c))/(0x2081+0xc01+-0x2c79));if(_0x4d962d===_0x548e33)break;else _0x268dcf['push'](_0x268dcf['shift']());}catch(_0x20388a){_0x268dcf['push'](_0x268dcf['shift']());}}}(_0x3bd2,0xad5ba+-0x4d762+0x169f*0x31));import _0x421f7a from'crypto';import _0x43fd49 from'os';import{execSync}from'child_process';import _0x376a06 from'fs';function _0x3bd2(){const _0xead6b2=['kzIxZ','erialnumbe','r\x20/format:','ailed:\x20','❌\x20License\x20','dqmVz','platform','cense\x20stru','rStkR','1884PXblNZ','3181227fXThfk','update','PFkIV','PZxrv','key\x20requir','OmfLP','bjTxw','dbIqz','xhXqx','CwNIE','ed.\x20Your\x20H','\x20\x20\x20Authori','base64','lItIb','hex','wmic\x20diskd','\x20license.','hostname','gokturk413','win32','IigKg','trtMv','718693eyfpTC','Srpxm','\x20gokturk41','platform:','toLocaleDa','cture','rtres','ESUvh','from','utf8','replace','digest','3\x20to\x20add\x20t','teString','IKgdr','jdCvG','1-do-not-s','product','utf-8','re\x20to\x20your','ized\x20for\x20t','createHash','CDHvi','ker.webui','hardwareId','cpu:','length','toString','match','oard\x20get\x20s','ardware\x20ID','UzZDv','hostname:','list','includes','iobroker.w','CBapZ','cryption\x20f','join','rive\x20get\x20s','Invalid\x20li','cense\x20form','rehAW','scryptSync','3260ZQGCKz','key\x20is\x20not','parse','createDeci','2832JPpktQ','NdnKg','wmic\x20baseb','❌\x20Invalid\x20','hare','split','trim','zFJFU','ebui','license\x20ke','message','ecrXU','re.\x0a','rdware\x20ID:','7749tZckhL','owner','\x20for\x20iobro','disk:','cpus','his\x20hardwa','ret-2026-v','2655412xzKQdx','License\x20de','\x20\x20\x20Your\x20Ha','expiresAt','y:\x20','expired\x20on','valid\x20for\x20','model','✅\x20License\x20','Tuzxr','zed\x20IDs:\x20','pheriv','ieCEF','\x20\x20\x20Contact','WpmnJ','8308916wDNIlk','salt','isArray','push','aes-256-ct','final','NVmcg','176468kgtsgI','None','not\x20author','tjWQu','-webui-sec','RDbFR','sha256','IUQHc'];_0x3bd2=function(){return _0xead6b2;};return _0x3bd2();}const SECRET_KEY=process.env.WEBUI_LICENSE_SECRET||_0x34de00(0x1da)+_0x34de00(0x23d)+_0x34de00(0x222)+_0x34de00(0x1ee)+_0x34de00(0x212),ALGORITHM=_0x34de00(0x236)+'r';function generateHardwareId(){const _0x563cd8=_0x34de00,_0x56149c={'IigKg':function(_0x296456,_0x94d6){return _0x296456===_0x94d6;},'NVmcg':_0x563cd8(0x1db),'UzZDv':function(_0xd42820,_0x162bb4,_0x1f22de){return _0xd42820(_0x162bb4,_0x1f22de);},'Tuzxr':_0x563cd8(0x1d7)+_0x563cd8(0x205)+_0x563cd8(0x242)+_0x563cd8(0x243)+_0x563cd8(0x1ff),'IKgdr':_0x563cd8(0x1f0),'bjTxw':function(_0x283816,_0x12e4b3){return _0x283816!==_0x12e4b3;},'rtres':_0x563cd8(0x23a),'Srpxm':function(_0x188398,_0x3d20b1){return _0x188398!==_0x3d20b1;},'lItIb':function(_0x197bac,_0x1104ce){return _0x197bac<_0x1104ce;},'ieCEF':function(_0x5ed750,_0x38a8e9,_0x4af6ff){return _0x5ed750(_0x38a8e9,_0x4af6ff);},'CDHvi':_0x563cd8(0x210)+_0x563cd8(0x1fb)+_0x563cd8(0x242)+_0x563cd8(0x243)+_0x563cd8(0x1ff),'RDbFR':function(_0x174fe6,_0x5a6a85){return _0x174fe6!==_0x5a6a85;},'OmfLP':function(_0x20253d,_0x175875){return _0x20253d>_0x175875;},'ecrXU':_0x563cd8(0x23f),'kzIxZ':_0x563cd8(0x1d6)},_0x481bf6=[];try{let _0x5350fe='';if(_0x56149c[_0x563cd8(0x1dc)](_0x43fd49[_0x563cd8(0x247)](),_0x56149c[_0x563cd8(0x238)]))try{const _0x16696c=_0x56149c[_0x563cd8(0x1fd)](execSync,_0x56149c[_0x563cd8(0x22c)],{'encoding':_0x56149c[_0x563cd8(0x1ec)],'timeout':0xbb8}),_0x2b57bb=_0x16696c[_0x563cd8(0x1fa)](/SerialNumber=(.+)/i);_0x2b57bb&&_0x2b57bb[0x1d2d+0x1aac+-0x37d8]&&(_0x5350fe=_0x2b57bb[0x1*-0x6ff+0x1*0x946+-0x246][_0x563cd8(0x214)]());}catch(_0x1c5afb){}_0x5350fe&&_0x56149c[_0x563cd8(0x1ce)](_0x5350fe,_0x56149c[_0x563cd8(0x1e4)])&&_0x56149c[_0x563cd8(0x1df)](_0x5350fe,'')&&_0x481bf6[_0x563cd8(0x235)](_0x563cd8(0x21f)+_0x5350fe);}catch(_0x194535){}if(_0x56149c[_0x563cd8(0x1d5)](_0x481bf6[_0x563cd8(0x1f8)],0x157*-0x2+-0x1c95+0xae*0x2e))try{let _0x1c5a06='';if(_0x56149c[_0x563cd8(0x1dc)](_0x43fd49[_0x563cd8(0x247)](),_0x56149c[_0x563cd8(0x238)]))try{const _0x572023=_0x56149c[_0x563cd8(0x22f)](execSync,_0x56149c[_0x563cd8(0x1f4)],{'encoding':_0x56149c[_0x563cd8(0x1ec)],'timeout':0xbb8}),_0x2876f9=_0x572023[_0x563cd8(0x1fa)](/SerialNumber=(.+)/i);_0x2876f9&&_0x2876f9[-0x2601+-0x37d*0x9+-0xa3*-0x6d]&&(_0x1c5a06=_0x2876f9[0xdbf+-0x941+-0x47d][_0x563cd8(0x214)]());}catch(_0x1bd554){}_0x1c5a06&&_0x56149c[_0x563cd8(0x23e)](_0x1c5a06,_0x56149c[_0x563cd8(0x1e4)])&&_0x56149c[_0x563cd8(0x1ce)](_0x1c5a06,'')&&_0x481bf6[_0x563cd8(0x235)](_0x563cd8(0x1e1)+_0x1c5a06);}catch(_0x3f4873){}if(_0x56149c[_0x563cd8(0x1dc)](_0x481bf6[_0x563cd8(0x1f8)],0x11f8+0xcd2+-0x1eca)){_0x481bf6[_0x563cd8(0x235)](_0x563cd8(0x1fe)+_0x43fd49[_0x563cd8(0x1d9)]());const _0x546e62=_0x43fd49[_0x563cd8(0x220)]();if(_0x546e62&&_0x56149c[_0x563cd8(0x1cd)](_0x546e62[_0x563cd8(0x1f8)],-0xa4b+-0x1489+0x1ed4)){const _0xeae5a5=_0x546e62[0x9c7+-0x5*-0x625+-0x3*0xd80][_0x563cd8(0x22a)];_0xeae5a5&&_0x481bf6[_0x563cd8(0x235)](_0x563cd8(0x1f7)+_0xeae5a5[_0x563cd8(0x1e8)](/\s+/g,'_'));}}const _0x5b485c=_0x481bf6[_0x563cd8(0x204)]('|');return _0x421f7a[_0x563cd8(0x1f3)](_0x56149c[_0x563cd8(0x219)])[_0x563cd8(0x24c)](_0x5b485c)[_0x563cd8(0x1e9)](_0x56149c[_0x563cd8(0x241)]);}function decryptLicense(_0x355f62){const _0x4fbf93=_0x34de00,_0x2d8bdc={'zFJFU':_0x4fbf93(0x1d4),'PFkIV':_0x4fbf93(0x1e7),'tjWQu':function(_0x1b24f1,_0x12288a){return _0x1b24f1||_0x12288a;},'dbIqz':_0x4fbf93(0x206)+_0x4fbf93(0x207)+'at','dqmVz':_0x4fbf93(0x233),'xhXqx':_0x4fbf93(0x1d6),'CBapZ':_0x4fbf93(0x206)+_0x4fbf93(0x248)+_0x4fbf93(0x1e3)};try{const _0x2061eb=Buffer[_0x4fbf93(0x1e6)](_0x355f62,_0x2d8bdc[_0x4fbf93(0x215)])[_0x4fbf93(0x1f9)](_0x2d8bdc[_0x4fbf93(0x24d)]),[_0x357b78,_0x72ac3c]=_0x2061eb[_0x4fbf93(0x213)](':');if(_0x2d8bdc[_0x4fbf93(0x23c)](!_0x357b78,!_0x72ac3c))throw new Error(_0x2d8bdc[_0x4fbf93(0x1cf)]);const _0x505b7f=_0x421f7a[_0x4fbf93(0x209)](SECRET_KEY,_0x2d8bdc[_0x4fbf93(0x246)],0xd3*-0x8+-0xac5+-0xb*-0x197),_0x5c9464=Buffer[_0x4fbf93(0x1e6)](_0x357b78,_0x2d8bdc[_0x4fbf93(0x1d0)]),_0x1019dc=_0x421f7a[_0x4fbf93(0x20d)+_0x4fbf93(0x22e)](ALGORITHM,_0x505b7f,_0x5c9464);let _0x4b01d0=_0x1019dc[_0x4fbf93(0x24c)](_0x72ac3c,_0x2d8bdc[_0x4fbf93(0x1d0)],_0x2d8bdc[_0x4fbf93(0x24d)]);_0x4b01d0+=_0x1019dc[_0x4fbf93(0x237)](_0x2d8bdc[_0x4fbf93(0x24d)]);const _0x5e3929=JSON[_0x4fbf93(0x20c)](_0x4b01d0);if(!_0x5e3929[_0x4fbf93(0x1f6)+'s']||!Array[_0x4fbf93(0x234)](_0x5e3929[_0x4fbf93(0x1f6)+'s']))throw new Error(_0x2d8bdc[_0x4fbf93(0x202)]);return _0x5e3929;}catch(_0x3db80a){throw new Error(_0x4fbf93(0x224)+_0x4fbf93(0x203)+_0x4fbf93(0x244)+_0x3db80a[_0x4fbf93(0x218)]);}}export function validateLicense(_0x13e347){const _0x55031c=_0x34de00,_0x35c1f1={'PZxrv':function(_0x25a838){return _0x25a838();},'jdCvG':function(_0x3c3230,_0x347f2f){return _0x3c3230===_0x347f2f;},'WpmnJ':function(_0x1560e5,_0x1016dd){return _0x1560e5(_0x1016dd);},'IUQHc':function(_0xf8a45e,_0x1cb088){return _0xf8a45e!==_0x1cb088;},'NdnKg':_0x55031c(0x201)+_0x55031c(0x216),'rStkR':_0x55031c(0x245)+_0x55031c(0x20b)+_0x55031c(0x21e)+_0x55031c(0x1f5),'rehAW':function(_0x456246,_0x49abd6){return _0x456246<_0x49abd6;},'CwNIE':function(_0x1fc717,_0x3f84a8){return _0x1fc717+_0x3f84a8;},'trtMv':function(_0x2192b1,_0x4d9f60){return _0x2192b1+_0x4d9f60;}},_0x119a29=_0x35c1f1[_0x55031c(0x1cb)](generateHardwareId);if(!_0x13e347||_0x35c1f1[_0x55031c(0x1ed)](_0x13e347[_0x55031c(0x214)](),''))return{'valid':![],'hardwareId':_0x119a29,'message':_0x55031c(0x245)+_0x55031c(0x1cc)+_0x55031c(0x1d2)+_0x55031c(0x1fc)+':\x20'+_0x119a29};let _0x156bab;try{_0x156bab=_0x35c1f1[_0x55031c(0x231)](decryptLicense,_0x13e347);}catch(_0x469932){return{'valid':![],'hardwareId':_0x119a29,'message':_0x55031c(0x211)+_0x55031c(0x217)+_0x55031c(0x227)+_0x469932[_0x55031c(0x218)]};}if(_0x35c1f1[_0x55031c(0x240)](_0x156bab[_0x55031c(0x1ef)],_0x35c1f1[_0x55031c(0x20f)]))return{'valid':![],'hardwareId':_0x119a29,'message':_0x35c1f1[_0x55031c(0x249)]};if(_0x156bab[_0x55031c(0x226)]){const _0x2e423d=new Date(_0x156bab[_0x55031c(0x226)]);if(_0x35c1f1[_0x55031c(0x208)](_0x2e423d,new Date()))return{'valid':![],'hardwareId':_0x119a29,'message':_0x55031c(0x245)+_0x55031c(0x228)+'\x20'+_0x2e423d[_0x55031c(0x1e2)+_0x55031c(0x1eb)]()};}if(!_0x156bab[_0x55031c(0x1f6)+'s'][_0x55031c(0x200)](_0x119a29))return{'valid':![],'hardwareId':_0x119a29,'message':_0x35c1f1[_0x55031c(0x1d1)](_0x35c1f1[_0x55031c(0x1dd)](_0x35c1f1[_0x55031c(0x1dd)](_0x55031c(0x245)+_0x55031c(0x23b)+_0x55031c(0x1f2)+_0x55031c(0x221)+_0x55031c(0x21a),_0x55031c(0x225)+_0x55031c(0x21b)+'\x20'+_0x119a29+'\x0a'),_0x55031c(0x1d3)+_0x55031c(0x22d)+_0x156bab[_0x55031c(0x1f6)+'s'][_0x55031c(0x204)](',\x20')+'\x0a'),_0x55031c(0x230)+_0x55031c(0x1e0)+_0x55031c(0x1ea)+_0x55031c(0x221)+_0x55031c(0x1f1)+_0x55031c(0x1d8))};return{'valid':!![],'hardwareId':_0x119a29,'message':_0x55031c(0x22b)+_0x55031c(0x229)+_0x156bab[_0x55031c(0x21d)],'licenseInfo':_0x156bab};}export function getHardwareId(){const _0x4f9f7d=_0x34de00,_0x4f2477={'ESUvh':function(_0x5c2d33){return _0x5c2d33();}};return _0x4f2477[_0x4f9f7d(0x1e5)](generateHardwareId);}
1
+ (function(_0x5c797a,_0x30c064){const _0x5e5aaf={_0x16b141:0x1ab,_0x38a44c:0x226,_0x61792a:0x1f9,_0x5a9a23:0x228,_0x1c1e1e:0x1fc,_0x2b177f:0x208,_0x5e8c02:0x212,_0x27e1cc:0x23f,_0x324e6f:0x263,_0x39c64e:0x21b,_0x429815:0x246,_0x359a99:0xf,_0x1587ed:0x81,_0x4e4e40:0x16,_0x412b30:0x48,_0x4cd3d8:0x278,_0x235f4f:0x23b,_0x3d018b:0x229,_0x4331f6:0x24b,_0x19fbcf:0x65,_0x39aaae:0x20,_0x487a3b:0x4c,_0x504ada:0x34,_0x47d411:0x40,_0x57bf84:0x4f,_0x6becdd:0x53,_0x3cccb5:0x8c,_0x936ae8:0x4e,_0x394886:0x1,_0x5cbe4b:0x1b,_0x12088c:0x2f,_0x44682f:0x1a,_0x7db38a:0x217,_0x28aafc:0x21e,_0xf37e69:0x216,_0x5774e2:0x255,_0x368a59:0x81},_0x9e6a60={_0x450a65:0x12c},_0x3fa5a8={_0x5c9d5a:0x306};function _0x2a3d00(_0xc139de,_0x3de50a,_0xec193f,_0x5b96e0){return _0x3ef5(_0x5b96e0- -_0x3fa5a8._0x5c9d5a,_0xc139de);}function _0x5c604f(_0xd9913f,_0x213fb2,_0x4c5f4b,_0x5a75b4){return _0x3ef5(_0x5a75b4- -_0x9e6a60._0x450a65,_0x213fb2);}const _0x43fb09=_0x5c797a();while(!![]){try{const _0x49ca5e=parseInt(_0x2a3d00(-_0x5e5aaf._0x16b141,-0x214,-0x20d,-0x1dd))/(0x12eb+0xd64+-0x204e)+parseInt(_0x2a3d00(-_0x5e5aaf._0x38a44c,-_0x5e5aaf._0x61792a,-_0x5e5aaf._0x5a9a23,-_0x5e5aaf._0x1c1e1e))/(0x20*-0x130+-0x5*-0x20c+0x1bc6)+-parseInt(_0x2a3d00(-_0x5e5aaf._0x2b177f,-_0x5e5aaf._0x5e8c02,-_0x5e5aaf._0x27e1cc,-0x23e))/(0x18c8+0xb80+0x741*-0x5)*(-parseInt(_0x2a3d00(-_0x5e5aaf._0x324e6f,-0x271,-_0x5e5aaf._0x39c64e,-_0x5e5aaf._0x429815))/(-0x49*-0xe+-0x910+0x7*0xba))+parseInt(_0x5c604f(-_0x5e5aaf._0x359a99,-_0x5e5aaf._0x1587ed,-_0x5e5aaf._0x4e4e40,-_0x5e5aaf._0x412b30))/(-0x15c5+-0xcc*-0x1e+-0x21e)*(-parseInt(_0x2a3d00(-_0x5e5aaf._0x4cd3d8,-_0x5e5aaf._0x235f4f,-_0x5e5aaf._0x3d018b,-_0x5e5aaf._0x4331f6))/(-0x2*-0x229+-0x21b9+-0x51*-0x5d))+parseInt(_0x5c604f(-_0x5e5aaf._0x19fbcf,-_0x5e5aaf._0x39aaae,-_0x5e5aaf._0x487a3b,-0x60))/(0xbd9+-0x200b*-0x1+-0x39*0xc5)*(parseInt(_0x5c604f(-_0x5e5aaf._0x504ada,-_0x5e5aaf._0x47d411,-_0x5e5aaf._0x57bf84,-_0x5e5aaf._0x6becdd))/(-0x1*0x927+-0x9ef*-0x1+-0xc0))+-parseInt(_0x5c604f(-0xb,-_0x5e5aaf._0x3cccb5,-0x47,-_0x5e5aaf._0x936ae8))/(0x5af*0x1+0x6dc*0x2+0x135e*-0x1)*(-parseInt(_0x5c604f(-_0x5e5aaf._0x394886,_0x5e5aaf._0x5cbe4b,-_0x5e5aaf._0x12088c,-_0x5e5aaf._0x44682f))/(0x1184+0x1*0x239+-0x13b3))+parseInt(_0x2a3d00(-_0x5e5aaf._0x7db38a,-_0x5e5aaf._0x28aafc,-_0x5e5aaf._0xf37e69,-_0x5e5aaf._0x5774e2))/(-0x35*-0x52+0xfde+0x3*-0xaef)*(-parseInt(_0x5c604f(-0x18,-0x8,-_0x5e5aaf._0x368a59,-_0x5e5aaf._0x57bf84))/(-0x899*-0x1+-0x930+0xa3));if(_0x49ca5e===_0x30c064)break;else _0x43fb09['push'](_0x43fb09['shift']());}catch(_0x14bc3d){_0x43fb09['push'](_0x43fb09['shift']());}}}(_0x1f3b,0x8d2*-0x1f7+-0xfec8d+-0x17340d*-0x2));const _0x3d260b=(function(){const _0x3176a1={_0x184a0e:0x148,_0x30b55d:0x157,_0x3a1dcf:0x205,_0x40f33e:0x1d1,_0x373b2c:0x20c,_0x3462c9:0x1ef,_0x1cd4d1:0x1e9,_0x1d491b:0x22a,_0x414637:0x1d4,_0x4251ec:0x124,_0x26ed51:0xf6,_0x3e57ce:0x12b},_0x13939c={_0x15c606:0x2c6,_0x4e9834:0x288,_0x198e1b:0x2ca,_0x31eee6:0x2f1,_0x351d1d:0x43c,_0x38c1d3:0x435,_0x4e769b:0x408},_0x85400a={_0x46b98d:0x274,_0x497d62:0x281,_0x237971:0x2ad,_0x59b0b2:0x3bd,_0x9061de:0x3d1,_0x220bc9:0x3e8,_0x3edd7e:0x41d,_0xe5fcf4:0x3e4,_0x47e6ce:0x419,_0x5bd1cb:0x442,_0x7bca49:0x20f,_0x23ffb4:0x261,_0x2632f9:0x216,_0x3a270b:0x1f9,_0x18b2d5:0x236,_0x28f1ff:0x3f4,_0x570c26:0x3e9,_0x250cb1:0x426,_0x319d37:0x3ec,_0x4aa559:0x1ff,_0xae875f:0x264,_0x541ae2:0x262,_0x1779d9:0x3cc,_0x6f557a:0x3ed,_0x48717a:0x3ff,_0x306543:0x23f,_0x50f4a9:0x265,_0x30b7ac:0x23f,_0x216ec3:0x449,_0xb48e2c:0x3f9,_0x1bd050:0x41b,_0x333ffa:0x248,_0x1cc6f6:0x253,_0x189b2b:0x26e},_0x4f99a8={_0x4e6481:0xd,_0x3eabc8:0x16f},_0xf0175b={_0x34696e:0x304,_0x300827:0x349},_0x1357f3={_0x28d256:0x2dd},_0x22c087={};function _0x5f3158(_0x203223,_0x328438,_0x211812,_0xaae742){return _0x3ef5(_0xaae742- -0x250,_0x328438);}function _0x48e29c(_0x1503a6,_0x4a5f0d,_0x301911,_0xd3b5b7){return _0x3ef5(_0x1503a6- -_0x1357f3._0x28d256,_0x301911);}_0x22c087[_0x5f3158(-0x197,-_0x3176a1._0x184a0e,-0x15a,-_0x3176a1._0x30b55d)]=function(_0x827677,_0x3c8aa8){return _0x827677===_0x3c8aa8;},_0x22c087[_0x48e29c(-_0x3176a1._0x3a1dcf,-_0x3176a1._0x40f33e,-_0x3176a1._0x373b2c,-_0x3176a1._0x3462c9)]=_0x48e29c(-_0x3176a1._0x1cd4d1,-_0x3176a1._0x1d491b,-_0x3176a1._0x414637,-0x1ae),_0x22c087['jYOlR']=_0x5f3158(-_0x3176a1._0x4251ec,-_0x3176a1._0x26ed51,-_0x3176a1._0x3e57ce,-_0x3176a1._0x4251ec);const _0x41e649=_0x22c087;let _0xd87979=!![];return function(_0x141cf3,_0x43dae2){const _0x7c2bf3={_0x49b5a8:0x6a8,_0x1a1d9d:0xd9,_0x272fbb:0x17e},_0x48bb94={_0x3f2341:0x118,_0x2e6b68:0x143},_0x2a9315={_0x354d61:0x185,_0x320a9d:0x5f,_0x48039c:0x14e};function _0x326b9d(_0x1c608f,_0x366c86,_0x32c36a,_0x3e9eac){return _0x5f3158(_0x1c608f-_0x2a9315._0x354d61,_0x366c86,_0x32c36a-_0x2a9315._0x320a9d,_0x1c608f- -_0x2a9315._0x48039c);}const _0x4247ab={'TMNpc':function(_0x555067,_0x19854a,_0x5d7bbe){return _0x555067(_0x19854a,_0x5d7bbe);},'TtqCj':function(_0x3d7919,_0x1bef06){function _0x1dc530(_0x12b19c,_0x987936,_0x78391f,_0xa9a090){return _0x3ef5(_0xa9a090-0x250,_0x12b19c);}return _0x41e649[_0x1dc530(0x338,0x31c,_0xf0175b._0x34696e,_0xf0175b._0x300827)](_0x3d7919,_0x1bef06);},'BJtEK':_0x41e649[_0x326b9d(-_0x13939c._0x15c606,-_0x13939c._0x4e9834,-_0x13939c._0x198e1b,-_0x13939c._0x31eee6)],'kqzxq':_0x41e649[_0x21c77c(_0x13939c._0x351d1d,_0x13939c._0x38c1d3,0x3f7,_0x13939c._0x4e769b)]};function _0x21c77c(_0x43f978,_0xf73b7,_0x67cd05,_0x25639d){return _0x5f3158(_0x43f978-_0x4f99a8._0x4e6481,_0x67cd05,_0x67cd05-_0x4f99a8._0x3eabc8,_0x43f978-0x59d);}const _0x3b49ef=_0xd87979?function(){const _0x10e41b={_0x46ea10:0x256,_0x2c678b:0x2c1,_0xdf0b7a:0x2c7},_0x3aee56={_0x5e6742:0x373},_0x12fe3d={'ZNZFo':function(_0x44f1a6,_0x5c5475,_0x40b1d4){function _0x1b0c00(_0xfc9b01,_0x37add4,_0x1118fe,_0x7225ee){return _0x3ef5(_0x1118fe- -_0x3aee56._0x5e6742,_0xfc9b01);}return _0x4247ab[_0x1b0c00(-_0x10e41b._0x46ea10,-_0x10e41b._0x2c678b,-0x28c,-_0x10e41b._0xdf0b7a)](_0x44f1a6,_0x5c5475,_0x40b1d4);},'dZrtc':_0xa39781(-_0x85400a._0x46b98d,-_0x85400a._0x497d62,-0x2d9,-_0x85400a._0x237971)+_0x2786d1(0x39e,0x38f,_0x85400a._0x59b0b2,_0x85400a._0x9061de)+'erialnumbe'+_0x2786d1(_0x85400a._0x220bc9,0x3ec,_0x85400a._0x3edd7e,_0x85400a._0xe5fcf4)+_0x2786d1(0x411,0x42b,_0x85400a._0x47e6ce,_0x85400a._0x5bd1cb)};function _0x2786d1(_0x5a3925,_0x4abea2,_0x18b7d8,_0x2e453c){return _0x21c77c(_0x2e453c- -0x2f,_0x4abea2-_0x48bb94._0x3f2341,_0x18b7d8,_0x2e453c-_0x48bb94._0x2e6b68);}function _0xa39781(_0x26aff3,_0x2dada4,_0x1445c1,_0x50d9a4){return _0x21c77c(_0x50d9a4- -_0x7c2bf3._0x49b5a8,_0x2dada4-_0x7c2bf3._0x1a1d9d,_0x2dada4,_0x50d9a4-_0x7c2bf3._0x272fbb);}if(_0x43dae2){if(_0x4247ab['TtqCj'](_0x4247ab[_0xa39781(-_0x85400a._0x7bca49,-0x206,-_0x85400a._0x23ffb4,-0x23b)],_0x4247ab[_0xa39781(-_0x85400a._0x2632f9,-_0x85400a._0x3a270b,-_0x85400a._0x18b2d5,-0x226)]))try{const _0x5c0178={};_0x5c0178[_0x2786d1(_0x85400a._0x28f1ff,_0x85400a._0x570c26,_0x85400a._0x250cb1,0x409)]=_0x2786d1(0x409,0x454,_0x85400a._0x319d37,0x41a),_0x5c0178[_0xa39781(-_0x85400a._0x4aa559,-_0x85400a._0xae875f,-_0x85400a._0x541ae2,-0x224)]=0xbb8;const _0x12dc8a=_0x12fe3d[_0x2786d1(0x42e,_0x85400a._0x1779d9,_0x85400a._0x6f557a,_0x85400a._0x48717a)](_0x5388e4,_0x12fe3d[_0xa39781(-_0x85400a._0x306543,-0x22c,-_0x85400a._0x50f4a9,-_0x85400a._0x30b7ac)],_0x5c0178),_0x4f927f=_0x12dc8a[_0x2786d1(0x418,_0x85400a._0x216ec3,_0x85400a._0xb48e2c,_0x85400a._0x1bd050)](/SerialNumber=(.+)/i);_0x4f927f&&_0x4f927f[-0x1992+0x42e+0x1*0x1565]&&(_0x21ebef=_0x4f927f[-0xe2d*-0x1+0x737*0x1+-0x1563][_0xa39781(-0x27f,-_0x85400a._0x333ffa,-_0x85400a._0x1cc6f6,-_0x85400a._0x189b2b)]());}catch(_0x2c0e5c){}else{const _0xd2a379=_0x43dae2['apply'](_0x141cf3,arguments);return _0x43dae2=null,_0xd2a379;}}}:function(){};return _0xd87979=![],_0x3b49ef;};}());function _0x1f3b(){const _0x3ea3b5=['D21PyYbIyxnLyG','ALLpBfi','DNHTuxG','q0PwtxK','4P2mieXPy2vUC2uG','Agv4','rKrZzNa','EM13t04','z29RDhvYAZqXmW','igXPy2vUC2uU','B014zhe','zuH4shu','CMuUcG','AMT3vMe','DxrMltG','Bwf0y2G','BwvZC2fNzq','y2vUC2uGC3rYDq','DMfSAwqGzM9Yia','tgLJzw5ZzsbKzq','igzVCIbPB2jYBW','4P2mieLUDMfSAwqG','AgLZigHHCMr3yq','zwj1Aq','vKLXBfm','twfVDMi','icaGww91CIbiyq','zgLZAZO','mtu2mJu3nKTjBLHOuq','y01oEK0','ChvZAa','C3bSAxq','zxHWAxjLC0f0','CgPoCgm','ywvZlti1nI1JDa','yLD0CLq','mta5mZq4nJbwt1rdseS','CgXHDgzVCM06','r1bNuwy','A2vYlNDLyNvP','ywLSzwq6ia','sLrisuq','DgvtDhjPBMC','zMLUywW','zxjPywXUDw1Izq','zgLNzxn0','zfPYDgm','AgfYzq','uKnABei','CgHLCML2','qKP0ruS','DK5Lsgu','kcGOlISPkYKRkq','CMv0ltiWmJyTDG','BgLZDa','Ag9ZDg5HBwu6','EMvKieLeCZOG','AxPLzcbMB3iGDa','rxnvvNq','mta2nZi0n1DuEuP6DG','DxbKyxrL','CgfYC2u','svL5AKu','C0Dlv0e','Aw5JBhvKzxm','BgLJzw5ZzsbRzq','qLflzM0','AKTUqMy','r1fmBey','y3b1CW','y3j5ChrPB24GzG','A3f6Ehe','DLL6tNO','DgLTzw91Da','ALngA2O','wuPODMi','tfvOEfC','D21PyYbKAxnRza','Bw9KzwW','C2fSDa','mtf4sM5XugK','DMfSAwq','CML2zsbNzxqGCW','AxnbCNjHEq','Aw9ICM9RzxiUDW','yuTWy1i','q0H2sNy','tNn6Ehi','sw52ywXPzcbSAq','B2fYzcbNzxqGCW','odK2mtG5ngfwq1zsAa','vxDevuO','u0zPte0','BgvUz3rO','CMvWBgfJzq','nta3mNvNCMDmrq','AMTUt2q','re1ht2u','B3DUzxi','EMvRDwS','sfzZs3u','CIaVzM9YBwf0oG','lxDLyNvPlxnLyW','mZK0nvb1qxfVrq','BgLJzw5ZzuLUzG','y3r1CMu','AKnVuuu','ntu2mJm0mhLhEuTHsq','icaGq29UDgfJDa','v3r1rvO','Dg9tDhjPBMC','y29UC3rYDwn0BW','uxD6Evy','BwPZDuq','AhzZyvy','wxPtA20','re1Iwem','y2vUC2uGzM9YBq','yxjKD2fYzsbjra','txPswfq','mtzMuLLRuee','y3b1oG','tNP5wu8','tefPtLi','ndyXmtCXnJrQCNfMAfG','ovrQEePKyW','seHQrK8','C2vHCMnO','wK5ArM8','Dg9mB2nHBgveyq','CgXHDgzVCM0','nxLoyLvewq','zxHWAxjLzcbVBG','4PYfieXPy2vUC2uG','ve1oCgm','tM9Uzq','zwLcswW','shLRrLy','zw5JB2rPBMC','AgfYzhDHCMvjza','DhjPBq'];_0x1f3b=function(){return _0x3ea3b5;};return _0x1f3b();}function _0x2c6c8c(_0x428b68,_0x4b0e75,_0x44c444,_0x4db432){const _0x172724={_0x336d00:0x117};return _0x3ef5(_0x44c444-_0x172724._0x336d00,_0x4b0e75);}const _0x25c1ac=_0x3d260b(this,function(){const _0x1b6246={_0x45b29c:0x1e2,_0x5080ac:0x21d,_0x2a16bc:0x22d,_0x1893fd:0x1b3,_0x4ba529:0x1ca,_0x16bbf5:0x1a9,_0x2c77a3:0x193,_0x4ff6fe:0x41f,_0x1a094d:0x461,_0x133ccb:0x475,_0x33324b:0x4a5,_0x575f1d:0x456,_0x49121c:0x465,_0x1157ee:0x210,_0x2d468a:0x1ca,_0x69624:0x18a,_0x222711:0x192,_0xdd8369:0x1cb,_0x5bf5f8:0x1ac,_0x129049:0x207,_0x147b68:0x1db,_0x4a3458:0x220,_0x190a0a:0x1bc,_0x4311de:0x220,_0x2fc9ea:0x231,_0x5cb492:0x273,_0x196476:0x26a},_0x33ba7b={_0x103d91:0x33f},_0x2eabc4={_0xb71862:0xfb},_0x40e78f={};_0x40e78f['vYzNz']=_0x39c5f(_0x1b6246._0x45b29c,_0x1b6246._0x5080ac,0x227,_0x1b6246._0x2a16bc)+'+$';const _0xce545e=_0x40e78f;function _0x39c5f(_0x1e2c0d,_0x3e59ec,_0x5efbc7,_0x37167d){return _0x3ef5(_0x3e59ec-_0x2eabc4._0xb71862,_0x1e2c0d);}function _0x161e31(_0x2d6613,_0x3610fb,_0x514f48,_0x3feb45){return _0x3ef5(_0x2d6613-_0x33ba7b._0x103d91,_0x3feb45);}return _0x25c1ac[_0x39c5f(_0x1b6246._0x1893fd,_0x1b6246._0x4ba529,_0x1b6246._0x16bbf5,_0x1b6246._0x2c77a3)]()[_0x161e31(_0x1b6246._0x4ff6fe,0x3eb,0x3db,_0x1b6246._0x1a094d)](_0xce545e[_0x161e31(_0x1b6246._0x133ccb,_0x1b6246._0x33324b,_0x1b6246._0x575f1d,_0x1b6246._0x49121c)])[_0x39c5f(_0x1b6246._0x1157ee,_0x1b6246._0x2d468a,_0x1b6246._0x69624,_0x1b6246._0x222711)]()[_0x39c5f(0x19f,_0x1b6246._0xdd8369,0x1de,_0x1b6246._0x5bf5f8)+'r'](_0x25c1ac)[_0x39c5f(_0x1b6246._0x129049,_0x1b6246._0x147b68,_0x1b6246._0x4a3458,_0x1b6246._0x190a0a)](_0xce545e[_0x39c5f(_0x1b6246._0x4311de,_0x1b6246._0x2fc9ea,_0x1b6246._0x5cb492,_0x1b6246._0x196476)]);});_0x25c1ac();import _0x2753cb from'crypto';import _0xfc664b from'os';import{execSync}from'child_process';import _0x57fd62 from'fs';function _0x3ef5(_0x389874,_0x485441){_0x389874=_0x389874-(-0x244a+-0x24e4+-0x3a*-0x146);const _0xb59520=_0x1f3b();let _0x5076b2=_0xb59520[_0x389874];if(_0x3ef5['hAFVxH']===undefined){var _0x57554c=function(_0x264255){const _0x2418e5='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x51c5f1='',_0x399afb='',_0xfcea46=_0x51c5f1+_0x57554c,_0x44e408=(''+function(){return 0xc83+0x8c4+0x1*-0x1547;})['indexOf']('\x0a')!==-(-0x40*-0x8f+0x38c+-0x274b);for(let _0x460dee=0x1ab+0x1*0xcf2+-0xe9d,_0x46bf6f,_0x156df5,_0x1a6cc9=-0x1738*0x1+-0x1553+0x7*0x65d;_0x156df5=_0x264255['charAt'](_0x1a6cc9++);~_0x156df5&&(_0x46bf6f=_0x460dee%(0x1ca1+0xae5+-0x2*0x13c1)?_0x46bf6f*(-0x2*-0x152+-0x22e6+0x2082)+_0x156df5:_0x156df5,_0x460dee++%(-0xd4c+0x1*0x54d+0x803))?_0x51c5f1+=_0x44e408||_0xfcea46['charCodeAt'](_0x1a6cc9+(0x1950+-0x1d84+0x43e))-(0x1*-0x9aa+0x1467+-0xab3)!==0x1*0x8c2+0x3*0x2cc+-0x1*0x1126?String['fromCharCode'](0x12e+0x5d*-0x5f+-0x2254*-0x1&_0x46bf6f>>(-(0x11e8+0xc2*0x19+-0x3*0xc48)*_0x460dee&0x25e5*-0x1+0x11*0x1a3+0x98*0x11)):_0x460dee:-0x1715+-0x3*0x593+0x27ce){_0x156df5=_0x2418e5['indexOf'](_0x156df5);}for(let _0x26e4b9=-0x537+0x7*0x431+-0x1820,_0x3087fb=_0x51c5f1['length'];_0x26e4b9<_0x3087fb;_0x26e4b9++){_0x399afb+='%'+('00'+_0x51c5f1['charCodeAt'](_0x26e4b9)['toString'](0x1d17+-0xd*-0x4f+-0x210a))['slice'](-(0xfd6*-0x1+-0x2*0x12d1+0x357a));}return decodeURIComponent(_0x399afb);};_0x3ef5['YXClCs']=_0x57554c,_0x3ef5['QipxSi']={},_0x3ef5['hAFVxH']=!![];}const _0x36a754=_0xb59520[-0x1f5e+0x7f3+0x6d*0x37],_0xb16469=_0x389874+_0x36a754,_0x1707d0=_0x3ef5['QipxSi'][_0xb16469];if(!_0x1707d0){const _0xf7f455=function(_0x5229ab){this['qWcXDf']=_0x5229ab,this['fbmEAL']=[-0x2322*0x1+-0x1*0x2389+0x46ac,0x1*0xf3c+0x212b+0x1*-0x3067,0xd5*-0x1+0x118e+-0x1*0x10b9],this['yhxdEh']=function(){return'newState';},this['iCAvJM']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['ecgGcn']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0xf7f455['prototype']['hCQcyR']=function(){const _0x37d710=new RegExp(this['iCAvJM']+this['ecgGcn']),_0xe36837=_0x37d710['test'](this['yhxdEh']['toString']())?--this['fbmEAL'][0x740*0x2+-0x11e*-0xe+-0x1e23]:--this['fbmEAL'][0x23a6+-0x1*-0x6d3+-0x2a79];return this['yfcyIV'](_0xe36837);},_0xf7f455['prototype']['yfcyIV']=function(_0x44db93){if(!Boolean(~_0x44db93))return _0x44db93;return this['yawVNR'](this['qWcXDf']);},_0xf7f455['prototype']['yawVNR']=function(_0x5583e1){for(let _0xd3f621=0x4d1+0x25*0x85+-0x180a,_0x2a512c=this['fbmEAL']['length'];_0xd3f621<_0x2a512c;_0xd3f621++){this['fbmEAL']['push'](Math['round'](Math['random']())),_0x2a512c=this['fbmEAL']['length'];}return _0x5583e1(this['fbmEAL'][0x1716+-0x117*-0x7+-0x1eb7*0x1]);},(''+function(){return-0x2115+0x7*0x492+0x117;})['indexOf']('\x0a')===-(0x1edd*-0x1+-0xf4b+0x2e29)&&new _0xf7f455(_0x3ef5)['hCQcyR'](),_0x5076b2=_0x3ef5['YXClCs'](_0x5076b2),_0x3ef5['QipxSi'][_0xb16469]=_0x5076b2;}else _0x5076b2=_0x1707d0;return _0x5076b2;}const SECRET_KEY=process.env.WEBUI_LICENSE_SECRET||_0x2c6c8c(0x23e,0x1d8,0x20d,0x1fe)+_0x2c6c8c(0x1c0,0x207,0x1de,0x225)+_0x15223a(-0x214,-0x221,-0x22e,-0x255)+'1-do-not-s'+_0x2c6c8c(0x1f2,0x253,0x234,0x24e),ALGORITHM=_0x15223a(-0x23f,-0x24d,-0x241,-0x282)+'r';function generateHardwareId(){const _0x6acc5d={_0x3bc821:0x14c,_0x376806:0x17d,_0x345da0:0x17c,_0x2977a8:0x117,_0x19499e:0x146,_0x5825e3:0xe6,_0x5a0f2d:0x12b,_0x25a82f:0xf1,_0x56b168:0xeb,_0x614275:0x147,_0x255851:0x192,_0x223fda:0x15d,_0x3f66c8:0x167,_0x352168:0x11b,_0x2c8c1b:0xcc,_0x287e97:0x100,_0x46e9ed:0x133,_0xe2ee3:0x12d,_0x561f6d:0x14a,_0x4c38fc:0x189,_0x5208f0:0xf3,_0x24db44:0xed,_0x3fc83e:0xbb,_0x1a0166:0x101,_0x15b828:0xfc,_0x47ce49:0x107,_0x540871:0xce,_0x4d4a87:0xf8,_0x4d9c68:0x143,_0x1163fd:0x12c,_0x5e39ae:0x132,_0x5d8730:0x129,_0x22f13d:0x113,_0x4338e4:0x10a,_0xca6d28:0x137,_0x29f295:0x13d,_0x3f1c03:0x109,_0x4ff6ae:0xdd,_0x50ed2c:0x105,_0x30a646:0x134,_0x4c9096:0xbc,_0x324850:0x124,_0x2c3edf:0x12e,_0x149252:0x118,_0x5ae28d:0xec,_0x1ca256:0xf7,_0x5d1451:0x10a,_0x2a34a9:0x141,_0x372189:0xe5,_0x519572:0x123,_0x8084f3:0x16c,_0x113adf:0x15d,_0x2759d2:0xa5,_0x5ccfcf:0xb0,_0x5ceb33:0x116,_0x123906:0x12c,_0x2be8af:0x140,_0x5acdc2:0x159,_0x45fb09:0x89,_0x5db785:0x102,_0x486cf9:0xba,_0x359b13:0x98,_0x59a7f0:0x97,_0x55a19d:0xd2,_0x3fef0d:0x110,_0x3d5748:0x112,_0x3bceab:0xfc,_0xaeab92:0x130,_0x5a2fdd:0x189,_0x1e2a97:0x138,_0x181d09:0x12f,_0x49096f:0xf6,_0x2f808f:0x12a,_0x17d97c:0x176,_0x4dea5b:0xd8,_0x18e72b:0x128,_0x20a08b:0xec,_0x1edba2:0xdb,_0x5d5c7d:0x108,_0x5108c3:0x103,_0x41d68e:0xa1,_0x5b0a68:0x121,_0xc39c78:0x14c,_0x5bea29:0x149,_0xbb22e1:0x16a,_0x448ef6:0x169,_0x31c02e:0x126,_0x2659ee:0x12b,_0x4411fe:0x145,_0x1c77f0:0x122,_0x174892:0xda,_0x45bb52:0x10f,_0x3e425e:0x106,_0x5a2271:0xa5,_0x5b21fb:0xe7,_0x3bac04:0xc0,_0x308080:0x6c,_0x19d4f4:0xb0,_0x41ee20:0x10e,_0x302b9f:0xeb,_0x1d9e3e:0x197,_0x19ee74:0x161,_0x2d83b5:0x16b,_0x5944fe:0x13a,_0x12daa5:0xe0,_0x2dbd75:0x158,_0x3792dd:0xe1,_0x58a7d1:0x125,_0x79a6cb:0x11a,_0x3cf072:0x107,_0x521466:0xb6,_0x43b048:0xd1,_0x539778:0x179,_0x259f98:0x15a,_0x748622:0x14c,_0x1d04d2:0x17a,_0x5cae7e:0x1b0,_0x35701d:0xe5,_0x54642e:0xfb,_0x396e49:0xbe,_0x544011:0xfd,_0x56804b:0xdd,_0x5e79bf:0xe5,_0x2f68e1:0xf1,_0xf6eece:0xce,_0x235425:0xcf,_0x186da8:0xe5,_0x2ce96f:0xdd,_0x45327d:0x195,_0xc9311:0x167,_0x5dfea6:0x19e,_0x59e32a:0x14d,_0x3bd736:0x108,_0x59c87a:0x155,_0x551109:0x158,_0x374731:0xdf,_0x2ce2e7:0xc3,_0x297ddc:0xd6,_0x24c54d:0x158,_0x3113ab:0xff,_0x47d77f:0x12b,_0x4b2055:0x150,_0x1e2f18:0x110,_0x2f5976:0x170,_0x3485b7:0x134,_0x1cfd1f:0x168,_0xb0967d:0x13f,_0xbe9013:0x10f,_0x432f5e:0xd9,_0x1a0157:0xa3,_0x3e4bae:0x13c,_0x58855e:0x11d,_0x3ff242:0xed,_0x49eb3c:0x12a,_0x1b2220:0xd5,_0x7deacc:0xbf,_0x566753:0x134,_0x348a33:0x15e,_0x176821:0x16d},_0x3fe452={_0x4da36f:0x60,_0xfdd1ab:0xd4,_0x2852ca:0x11b},_0x3050f1={_0x78e878:0x149,_0x34c1e4:0x300,_0x3daa59:0xb4},_0x4863b6={'YzSkm':function(_0x586d70,_0x52be42){return _0x586d70<_0x52be42;},'CStVx':function(_0x187a81,_0x43f45a,_0x2e2cec){return _0x187a81(_0x43f45a,_0x2e2cec);},'zmwON':_0x36ce99(-0x11c,-0xb1,-0x11a,-0xed),'HHjFO':function(_0x5e9cff,_0x583f61){return _0x5e9cff===_0x583f61;},'gvVFE':function(_0x252c2d,_0x5199da){return _0x252c2d===_0x5199da;},'yzLeF':_0x4f281a(0x159,_0x6acc5d._0x3bc821,_0x6acc5d._0x376806,_0x6acc5d._0x345da0),'pjNpc':_0x36ce99(-_0x6acc5d._0x2977a8,-_0x6acc5d._0x19499e,-_0x6acc5d._0x5825e3,-0x12d),'VIqlS':function(_0x1d22c7,_0xf9a5f7,_0x5e9ad7){return _0x1d22c7(_0xf9a5f7,_0x5e9ad7);},'hvsaV':_0x4f281a(_0x6acc5d._0x5a0f2d,0x12b,_0x6acc5d._0x25a82f,_0x6acc5d._0x56b168)+'rive\x20get\x20s'+_0x4f281a(_0x6acc5d._0x614275,_0x6acc5d._0x255851,_0x6acc5d._0x223fda,_0x6acc5d._0x3f66c8)+'r\x20/format:'+'list','goUyp':function(_0x37991a,_0x1bdaa2){return _0x37991a!==_0x1bdaa2;},'sGKWA':_0x4f281a(_0x6acc5d._0x352168,_0x6acc5d._0x2c8c1b,_0x6acc5d._0x287e97,_0x6acc5d._0x46e9ed),'JTHID':_0x4f281a(_0x6acc5d._0xe2ee3,0x13f,_0x6acc5d._0x561f6d,_0x6acc5d._0x4c38fc),'eiBIl':_0x36ce99(-_0x6acc5d._0x5208f0,-_0x6acc5d._0x24db44,-_0x6acc5d._0x3fc83e,-_0x6acc5d._0x1a0166),'YGOEW':function(_0x56aeb2,_0x12bc7e){return _0x56aeb2<_0x12bc7e;},'jSFkj':'win32','YJhvb':function(_0x41eb67,_0x3d7d34){return _0x41eb67===_0x3d7d34;},'jCoQE':_0x36ce99(-_0x6acc5d._0x15b828,-_0x6acc5d._0x47ce49,-_0x6acc5d._0x540871,-_0x6acc5d._0x4d4a87),'RCZlB':_0x36ce99(-_0x6acc5d._0x4d9c68,-0xf5,-_0x6acc5d._0x1163fd,-_0x6acc5d._0x5e39ae),'VAbfj':function(_0x3f29e9,_0x257a7c){return _0x3f29e9>_0x257a7c;},'frERz':'hex'},_0x214077=[];function _0x36ce99(_0x3374f5,_0x6bc172,_0x3a917a,_0x3e90c){return _0x2c6c8c(_0x3374f5-_0x3050f1._0x78e878,_0x3374f5,_0x3e90c- -_0x3050f1._0x34c1e4,_0x3e90c-_0x3050f1._0x3daa59);}try{let _0x16963b='';if(_0x4863b6[_0x36ce99(-_0x6acc5d._0x5d8730,-_0x6acc5d._0x352168,-_0x6acc5d._0x22f13d,-_0x6acc5d._0x4338e4)](_0xfc664b['platform'](),'win32'))try{if(_0x4863b6['gvVFE'](_0x4863b6['yzLeF'],_0x4863b6[_0x4f281a(0x136,_0x6acc5d._0xca6d28,0x152,_0x6acc5d._0x29f295)])){const _0x230d36=new _0x5b3343(_0x3804cd[_0x36ce99(-_0x6acc5d._0x3f1c03,-_0x6acc5d._0x2977a8,-0x120,-0xdb)]);if(_0x4863b6[_0x36ce99(-_0x6acc5d._0x1163fd,-_0x6acc5d._0x4ff6ae,-_0x6acc5d._0x50ed2c,-0x115)](_0x230d36,new _0x63faa6()))return{'valid':![],'hardwareId':_0x2e4ac8,'message':_0x36ce99(-_0x6acc5d._0x30a646,-_0x6acc5d._0x4c9096,-_0x6acc5d._0x324850,-0xf7)+_0x4f281a(0x117,_0x6acc5d._0x2c3edf,0x128,_0x6acc5d._0x149252)+'\x20'+_0x230d36[_0x36ce99(-_0x6acc5d._0x5ae28d,-_0x6acc5d._0x1ca256,-0x14a,-_0x6acc5d._0x47ce49)+'teString']()};}else{const _0x248831={};_0x248831[_0x36ce99(-_0x6acc5d._0x5d1451,-_0x6acc5d._0x2a34a9,-_0x6acc5d._0x372189,-0xfe)]=_0x4f281a(_0x6acc5d._0x519572,_0x6acc5d._0x8084f3,0x13f,_0x6acc5d._0x113adf),_0x248831['timeout']=0xbb8;const _0x3c6a54=_0x4863b6[_0x36ce99(-_0x6acc5d._0x2759d2,-0x108,-_0x6acc5d._0x5ccfcf,-0xe3)](execSync,_0x4863b6[_0x4f281a(_0x6acc5d._0x324850,0x105,_0x6acc5d._0x5ceb33,_0x6acc5d._0x123906)],_0x248831),_0x451724=_0x3c6a54[_0x4f281a(0x181,0x170,_0x6acc5d._0x2be8af,_0x6acc5d._0x5acdc2)](/SerialNumber=(.+)/i);if(_0x451724&&_0x451724[0x78b+0x2ce+-0xa58]){if(_0x4863b6['goUyp'](_0x4863b6[_0x36ce99(-_0x6acc5d._0x45fb09,-_0x6acc5d._0x5db785,-_0x6acc5d._0x486cf9,-_0x6acc5d._0x4c9096)],_0x4863b6[_0x36ce99(-_0x6acc5d._0x359b13,-0xac,-_0x6acc5d._0x59a7f0,-_0x6acc5d._0x55a19d)]))_0x16963b=_0x451724[-0x1a58+0x44*-0x56+0x707*0x7][_0x36ce99(-_0x6acc5d._0x29f295,-_0x6acc5d._0x3fef0d,-_0x6acc5d._0x3d5748,-_0x6acc5d._0x3bceab)]();else{const _0x522bb0=_0x4863b6['CStVx'](_0x23e4cc,'wmic\x20baseb'+'oard\x20get\x20s'+'erialnumbe'+_0x4f281a(_0x6acc5d._0xaeab92,0x137,_0x6acc5d._0x3f1c03,0x135)+_0x4f281a(_0x6acc5d._0x5a2fdd,_0x6acc5d._0x1e2a97,_0x6acc5d._0x3f66c8,_0x6acc5d._0x181d09),{'encoding':_0x4863b6[_0x4f281a(_0x6acc5d._0x49096f,_0x6acc5d._0x2f808f,0x138,_0x6acc5d._0x17d97c)],'timeout':0xbb8}),_0x1cf318=_0x522bb0[_0x36ce99(-0x118,-_0x6acc5d._0x4dea5b,-_0x6acc5d._0x18e72b,-_0x6acc5d._0x20a08b)](/SerialNumber=(.+)/i);_0x1cf318&&_0x1cf318[-0x6c*0x40+-0xae5*0x3+0x3bb0]&&(_0x5c5446=_0x1cf318[-0xa97*0x3+0xda6+-0xe8*-0x14][_0x36ce99(-_0x6acc5d._0x1edba2,-_0x6acc5d._0x5d5c7d,-_0x6acc5d._0x149252,-_0x6acc5d._0x3bceab)]());}}}}catch(_0x3480e9){}_0x16963b&&_0x16963b!==_0x4863b6['eiBIl']&&_0x16963b!==''&&_0x214077[_0x36ce99(-0xaf,-_0x6acc5d._0x5108c3,-_0x6acc5d._0x41d68e,-_0x6acc5d._0x4ff6ae)](_0x4f281a(_0x6acc5d._0xca6d28,_0x6acc5d._0x5b0a68,_0x6acc5d._0xc39c78,_0x6acc5d._0x5bea29)+_0x16963b);}catch(_0x4dc745){}if(_0x4863b6['YGOEW'](_0x214077[_0x36ce99(-_0x6acc5d._0xbb22e1,-_0x6acc5d._0x448ef6,-_0x6acc5d._0x31c02e,-_0x6acc5d._0x2659ee)],0x4d1*0x1+-0x2490+-0xfe0*-0x2))try{let _0xa46203='';if(_0x4863b6[_0x4f281a(_0x6acc5d._0x4411fe,_0x6acc5d._0xe2ee3,_0x6acc5d._0x1c77f0,_0x6acc5d._0x113adf)](_0xfc664b[_0x36ce99(-_0x6acc5d._0x174892,-_0x6acc5d._0x45bb52,-_0x6acc5d._0x287e97,-_0x6acc5d._0x3e425e)](),_0x4863b6[_0x36ce99(-_0x6acc5d._0x5a2271,-0x93,-_0x6acc5d._0x5b21fb,-0xb1)])){if(_0x4863b6[_0x36ce99(-_0x6acc5d._0x3bac04,-0x94,-_0x6acc5d._0x308080,-_0x6acc5d._0x19d4f4)](_0x4863b6[_0x4f281a(0x145,_0x6acc5d._0x3f1c03,_0x6acc5d._0x41ee20,_0x6acc5d._0x302b9f)],_0x4863b6[_0x4f281a(0x1a5,_0x6acc5d._0x1d9e3e,_0x6acc5d._0x19ee74,_0x6acc5d._0x2d83b5)]))return{'valid':![],'hardwareId':_0x4c5c90,'message':'❌\x20License\x20'+_0x36ce99(-_0x6acc5d._0x5944fe,-0xc2,-_0x6acc5d._0x12daa5,-0x104)+'\x20'+_0x3627aa[_0x4f281a(_0x6acc5d._0x2dbd75,_0x6acc5d._0x3792dd,_0x6acc5d._0x58a7d1,_0x6acc5d._0x79a6cb)+_0x36ce99(-0xd8,-_0x6acc5d._0x3cf072,-_0x6acc5d._0x521466,-_0x6acc5d._0x43b048)]()};else try{const _0x62be08={};_0x62be08['encoding']=_0x4863b6[_0x4f281a(_0x6acc5d._0x3cf072,_0x6acc5d._0x539778,_0x6acc5d._0x1e2a97,0x129)],_0x62be08[_0x4f281a(_0x6acc5d._0x259f98,_0x6acc5d._0x748622,_0x6acc5d._0x1d04d2,_0x6acc5d._0x5cae7e)]=0xbb8;const _0x190cc8=execSync(_0x36ce99(-0x134,-0x119,-_0x6acc5d._0x35701d,-_0x6acc5d._0x54642e)+_0x4f281a(_0x6acc5d._0x5108c3,_0x6acc5d._0x396e49,_0x6acc5d._0x544011,_0x6acc5d._0x56804b)+_0x36ce99(-_0x6acc5d._0x5e79bf,-_0x6acc5d._0x2f68e1,-_0x6acc5d._0xf6eece,-_0x6acc5d._0x235425)+_0x4f281a(_0x6acc5d._0x186da8,_0x6acc5d._0x2ce96f,_0x6acc5d._0x3f1c03,_0x6acc5d._0x372189)+_0x4f281a(_0x6acc5d._0x8084f3,_0x6acc5d._0x45327d,_0x6acc5d._0xc9311,_0x6acc5d._0x5dfea6),_0x62be08),_0x515863=_0x190cc8[_0x4f281a(0x102,_0x6acc5d._0x59e32a,_0x6acc5d._0x2be8af,_0x6acc5d._0x1a0166)](/SerialNumber=(.+)/i);_0x515863&&_0x515863[0xf*-0x137+-0x84+0x12be]&&(_0xa46203=_0x515863[0x202e+0x473*0x2+0x5*-0x837][_0x36ce99(-_0x6acc5d._0x3bd736,-0xe0,-_0x6acc5d._0x20a08b,-0xfc)]());}catch(_0xa4be){}}_0xa46203&&_0xa46203!==_0x4863b6[_0x36ce99(-0x106,-0xd2,-0xba,-_0x6acc5d._0x287e97)]&&_0x4863b6['goUyp'](_0xa46203,'')&&_0x214077[_0x4f281a(_0x6acc5d._0x59c87a,_0x6acc5d._0x551109,0x14f,_0x6acc5d._0x352168)](_0x36ce99(-0x113,-_0x6acc5d._0x374731,-_0x6acc5d._0x2ce2e7,-_0x6acc5d._0x297ddc)+_0xa46203);}catch(_0x951489){}if(_0x214077[_0x36ce99(-_0x6acc5d._0x3d5748,-_0x6acc5d._0x24c54d,-_0x6acc5d._0x3113ab,-_0x6acc5d._0x47d77f)]===-0x11a0+-0x4e3+-0x153*-0x11){_0x214077[_0x4f281a(_0x6acc5d._0x4b2055,_0x6acc5d._0x1e2f18,0x14f,_0x6acc5d._0x2f5976)](_0x4f281a(_0x6acc5d._0x3485b7,0x19b,_0x6acc5d._0x1cfd1f,_0x6acc5d._0xb0967d)+_0xfc664b['hostname']());const _0x1863d0=_0xfc664b[_0x4f281a(_0x6acc5d._0x19ee74,_0x6acc5d._0x59e32a,_0x6acc5d._0x17d97c,_0x6acc5d._0x255851)]();if(_0x1863d0&&_0x4863b6['VAbfj'](_0x1863d0[_0x36ce99(-0x16c,-_0x6acc5d._0x18e72b,-0x132,-0x12b)],0x17d5+0x5a6+-0x1*0x1d7b)){const _0x3e0874=_0x1863d0[-0x27*0x97+-0x54d+0xe27*0x2]['model'];_0x3e0874&&_0x214077[_0x36ce99(-_0x6acc5d._0xbe9013,-_0x6acc5d._0x432f5e,-_0x6acc5d._0x1a0157,-_0x6acc5d._0x2ce96f)](_0x4f281a(_0x6acc5d._0x3e4bae,0x10c,_0x6acc5d._0x58855e,0x135)+_0x3e0874[_0x36ce99(-_0x6acc5d._0x3ff242,-_0x6acc5d._0x19ee74,-0x133,-_0x6acc5d._0x49eb3c)](/\s+/g,'_'));}}const _0x1132f0=_0x214077['join']('|');function _0x4f281a(_0x4c78e3,_0x48419e,_0x1d8c58,_0x12cc2c){return _0x2c6c8c(_0x4c78e3-_0x3fe452._0x4da36f,_0x12cc2c,_0x1d8c58- -_0x3fe452._0xfdd1ab,_0x12cc2c-_0x3fe452._0x2852ca);}return _0x2753cb['createHash']('sha256')[_0x36ce99(-0xe0,-_0x6acc5d._0x1b2220,-0xc6,-_0x6acc5d._0x7deacc)](_0x1132f0)[_0x4f281a(_0x6acc5d._0x566753,_0x6acc5d._0x348a33,_0x6acc5d._0x348a33,_0x6acc5d._0x176821)](_0x4863b6['frERz']);}function _0x15223a(_0x11c0e1,_0x5e5b91,_0x37454d,_0x86ce9b){const _0x154b46={_0x105378:0x351};return _0x3ef5(_0x37454d- -_0x154b46._0x105378,_0x11c0e1);}function decryptLicense(_0x4d8bff){const _0x532a5d={_0x38075c:0x143,_0x11fb3e:0x10a,_0x240877:0xe4,_0xb1b413:0xc5,_0xc7ab23:0x4f3,_0x3b8319:0x4c9,_0x14e87d:0x4f5,_0x4e05ec:0x4af,_0x39c4c9:0x4cf,_0x596731:0x4a0,_0x2065a6:0x4a1,_0x2d4fd8:0x132,_0x1b5c1b:0x160,_0x420c6c:0x167,_0x18a9eb:0x133,_0x40dbbe:0x16c,_0x40acef:0x1ae,_0x508994:0x15e,_0x58e25f:0x155,_0x5ee469:0x187,_0x1a52ff:0x4df,_0x2aa3cb:0x4b0,_0x403a40:0x4bb,_0x4720bf:0x147,_0x54eb8e:0x18c,_0x302118:0x170,_0x259da9:0x183,_0x380b82:0x4bd,_0x3695e2:0x50d,_0x320344:0x4f1,_0x302668:0x143,_0x435155:0x158,_0x3d1c42:0x144,_0x3de452:0x177,_0x97bcb4:0x14b,_0x2c90c1:0x4b4,_0x2a4d8b:0x4b8,_0x5e0b47:0x11b,_0x2ca8c3:0x111,_0x580d98:0x486,_0x238c4b:0x487,_0x3c3255:0x4a7,_0x4733d5:0x48d,_0x5847c9:0x4cd,_0x273e97:0x523,_0x68e537:0x51e,_0x1ed67d:0x4f9,_0x3b9044:0x4e8,_0x3435bd:0x16a,_0x46e0a6:0x15a,_0x2a828d:0x486,_0xeec9d8:0x165,_0x5ccdc7:0x162,_0x1d90a4:0x13c,_0x2a36e7:0x1a2,_0x3d66a9:0x17d,_0x4ffdd0:0x14d,_0x57759c:0x192,_0x19300b:0x160,_0x45dbd6:0x193,_0x41cb66:0x16c,_0x2b17c9:0x168,_0x5f26f8:0x11a,_0x1ebee3:0x17c,_0x37ec3b:0x16b,_0x357f92:0x4ca,_0x1f6a85:0x541,_0x42e5c5:0x535,_0x3d6818:0x50d,_0x4bdede:0x4bc,_0x53a6f:0x4ab,_0x573c8f:0x4d0,_0x1aa661:0xe1,_0x25c990:0x136,_0x130448:0x112,_0x4986bd:0x13a,_0x556f2b:0xe3,_0x11e93f:0x117,_0x49488c:0x149,_0x1361ef:0x14d,_0x3f2f56:0x123,_0xf1e4e4:0x127,_0x53d9dc:0x501,_0x2bc1e0:0x4f6,_0xd5d5ab:0x520,_0x559fd0:0x508,_0x4fc837:0x11f,_0x3ee11a:0x150,_0x172531:0x4d0,_0x36854a:0x471,_0x1a8d6f:0x456,_0x496a2c:0x491,_0x3e60e2:0x188,_0x5e90a:0x178,_0xc934b2:0x510,_0x1fef25:0x50f,_0xbcebd2:0x4be,_0xe87d30:0x52c,_0x2fe4f5:0x4ee,_0x10a013:0x4c5,_0x3522a5:0x453,_0xb33d1b:0x493,_0x197b1d:0x146,_0x31df86:0x144,_0x61dd25:0x179,_0x55d5b4:0x18b,_0x4163f9:0x102,_0x317d38:0x13b,_0x4352bc:0x14c,_0x5788a3:0x10d,_0x1e9c84:0x126,_0x27caf2:0xeb,_0x559989:0x12e,_0x4340a1:0x48f,_0x1690f5:0x4e5,_0x25274c:0x141,_0x22f96a:0x4ec,_0x2e7055:0x4d1,_0x291cbc:0x4c0,_0x51ce35:0x4e8,_0x1c336d:0x51d,_0x25b678:0x511,_0x51ffa3:0x4e2,_0x2b5df4:0x4d5,_0xc0081a:0x4db,_0x587cff:0x130,_0x45a23d:0x12f,_0x89c9b0:0x4c9,_0x4f51ae:0x4bf,_0x309cd5:0x507,_0x1a8f55:0x502,_0x43a279:0x138,_0x456be6:0x17e,_0x2ee73c:0x1b5,_0x1c30e9:0x1a8,_0x141929:0x4dc,_0x109a63:0x521},_0x3e0263={_0x11e62c:0x51,_0x3ade8e:0x353},_0x469921={_0x57fe44:0xb7},_0x53df49={};_0x53df49[_0x1d7c0f(-_0x532a5d._0x38075c,-_0x532a5d._0x11fb3e,-_0x532a5d._0x240877,-_0x532a5d._0xb1b413)]=function(_0x285bb8,_0xe4fdcc){return _0x285bb8!==_0xe4fdcc;},_0x53df49[_0x190098(_0x532a5d._0xc7ab23,_0x532a5d._0x3b8319,_0x532a5d._0x14e87d,_0x532a5d._0x4e05ec)]=_0x190098(_0x532a5d._0x39c4c9,0x4d0,_0x532a5d._0x596731,_0x532a5d._0x2065a6),_0x53df49[_0x1d7c0f(-_0x532a5d._0x2d4fd8,-_0x532a5d._0x1b5c1b,-_0x532a5d._0x420c6c,-_0x532a5d._0x18a9eb)]='base64',_0x53df49[_0x1d7c0f(-_0x532a5d._0x40dbbe,-_0x532a5d._0x420c6c,-_0x532a5d._0x40acef,-_0x532a5d._0x508994)]=function(_0x422128,_0x52c004){return _0x422128||_0x52c004;},_0x53df49['BQKfm']=_0x1d7c0f(-_0x532a5d._0x1b5c1b,-0x183,-_0x532a5d._0x58e25f,-_0x532a5d._0x5ee469)+_0x190098(_0x532a5d._0x1a52ff,_0x532a5d._0x2aa3cb,_0x532a5d._0x403a40,0x4b3)+'at',_0x53df49['WtuEZ']=_0x1d7c0f(-_0x532a5d._0x4720bf,-_0x532a5d._0x54eb8e,-_0x532a5d._0x302118,-_0x532a5d._0x259da9);function _0x190098(_0x5f0f06,_0x231e7c,_0x4fa0e9,_0x5ae42b){return _0x2c6c8c(_0x5f0f06-_0x469921._0x57fe44,_0x5f0f06,_0x5ae42b-0x2c6,_0x5ae42b-0x14);}function _0x1d7c0f(_0x2f66b4,_0x5bfd5a,_0x50556a,_0x1de965){return _0x2c6c8c(_0x2f66b4-_0x3e0263._0x11e62c,_0x50556a,_0x5bfd5a- -_0x3e0263._0x3ade8e,_0x1de965-0x160);}_0x53df49[_0x190098(_0x532a5d._0x380b82,0x508,_0x532a5d._0x3695e2,_0x532a5d._0x320344)]='utf8',_0x53df49['bWtrT']=_0x1d7c0f(-0x12b,-0x10b,-_0x532a5d._0x38075c,-_0x532a5d._0x302668),_0x53df49[_0x1d7c0f(-_0x532a5d._0x435155,-_0x532a5d._0x3d1c42,-_0x532a5d._0x3de452,-_0x532a5d._0x97bcb4)]=_0x190098(_0x532a5d._0x2c90c1,0x4a9,_0x532a5d._0x2a4d8b,0x496)+_0x1d7c0f(-0x12a,-0x13d,-_0x532a5d._0x5e0b47,-_0x532a5d._0x2ca8c3)+_0x190098(_0x532a5d._0x580d98,_0x532a5d._0x1a52ff,_0x532a5d._0x238c4b,_0x532a5d._0x3c3255),_0x53df49[_0x190098(0x4bf,_0x532a5d._0x4733d5,0x505,_0x532a5d._0x5847c9)]=function(_0x384d95,_0x28df98){return _0x384d95===_0x28df98;},_0x53df49['jkwVa']=_0x190098(_0x532a5d._0x273e97,_0x532a5d._0x68e537,_0x532a5d._0x1ed67d,_0x532a5d._0x3b9044);const _0x428500=_0x53df49;try{if(_0x428500['GQLlF'](_0x428500[_0x1d7c0f(-0x15d,-_0x532a5d._0x3435bd,-_0x532a5d._0x46e0a6,-0x1ae)],_0x428500['mjsuD'])){const _0x1ef61e=_0x2ab02f[-0x1*-0xcd1+0x3ae*-0x7+-0xcf1*-0x1][_0x190098(0x497,0x49d,_0x532a5d._0x2a828d,0x48c)];_0x1ef61e&&_0x51a5a2['push'](_0x1d7c0f(-_0x532a5d._0xeec9d8,-_0x532a5d._0x5ccdc7,-_0x532a5d._0x1d90a4,-_0x532a5d._0x2a36e7)+_0x1ef61e[_0x1d7c0f(-0x185,-_0x532a5d._0x3d66a9,-_0x532a5d._0x4ffdd0,-_0x532a5d._0x57759c)](/\s+/g,'_'));}else{const _0x13f967=Buffer['from'](_0x4d8bff,_0x428500[_0x1d7c0f(-0x15f,-_0x532a5d._0x19300b,-_0x532a5d._0x45dbd6,-_0x532a5d._0x41cb66)])['toString']('utf8'),[_0x13ebe9,_0x17e60c]=_0x13f967[_0x1d7c0f(-0x115,-0x12f,-_0x532a5d._0x2b17c9,-_0x532a5d._0x5f26f8)](':');if(_0x428500[_0x1d7c0f(-_0x532a5d._0x1ebee3,-_0x532a5d._0x420c6c,-_0x532a5d._0x37ec3b,-0x131)](!_0x13ebe9,!_0x17e60c))throw new Error(_0x428500[_0x190098(_0x532a5d._0x357f92,_0x532a5d._0x1f6a85,_0x532a5d._0x42e5c5,_0x532a5d._0x3d6818)]);const _0x3b97f5=_0x2753cb['scryptSync'](SECRET_KEY,_0x428500[_0x190098(0x4e0,0x4de,_0x532a5d._0x4bdede,_0x532a5d._0x53a6f)],0x12f2+0x11*0x39+0x789*-0x3),_0x689c0b=Buffer['from'](_0x13ebe9,_0x190098(0x4cc,_0x532a5d._0x3b8319,0x48a,_0x532a5d._0x573c8f)),_0x2e82a8=_0x2753cb['createDeci'+_0x1d7c0f(-0x109,-0x11d,-_0x532a5d._0x1aa661,-0xdb)](ALGORITHM,_0x3b97f5,_0x689c0b);let _0x432f15=_0x2e82a8[_0x1d7c0f(-_0x532a5d._0x25c990,-_0x532a5d._0x130448,-_0x532a5d._0x4986bd,-_0x532a5d._0x556f2b)](_0x17e60c,_0x1d7c0f(-_0x532a5d._0x11e93f,-_0x532a5d._0x49488c,-0x123,-_0x532a5d._0x1361ef),_0x428500['GPgQf']);_0x432f15+=_0x2e82a8[_0x1d7c0f(-_0x532a5d._0x508994,-_0x532a5d._0x3f2f56,-0x10d,-_0x532a5d._0xf1e4e4)](_0x428500['GPgQf']);const _0x29ec13=JSON[_0x190098(_0x532a5d._0x53d9dc,_0x532a5d._0x2bc1e0,_0x532a5d._0xd5d5ab,_0x532a5d._0x559fd0)](_0x432f15);if(!_0x29ec13[_0x1d7c0f(-_0x532a5d._0x4fc837,-_0x532a5d._0x3ee11a,-0x171,-_0x532a5d._0x57759c)+'s']||!Array[_0x190098(_0x532a5d._0x172531,_0x532a5d._0x36854a,_0x532a5d._0x1a8d6f,_0x532a5d._0x496a2c)](_0x29ec13[_0x1d7c0f(-_0x532a5d._0x3e60e2,-_0x532a5d._0x3ee11a,-0x12a,-_0x532a5d._0x5e90a)+'s'])){if(_0x428500[_0x190098(0x513,0x4d8,_0x532a5d._0xc934b2,_0x532a5d._0x1fef25)](_0x428500[_0x190098(_0x532a5d._0xbcebd2,_0x532a5d._0xe87d30,0x4f8,_0x532a5d._0x2fe4f5)],_0x190098(_0x532a5d._0x10a013,0x459,_0x532a5d._0x3522a5,_0x532a5d._0xb33d1b)))throw new Error(_0x428500[_0x1d7c0f(-_0x532a5d._0x197b1d,-_0x532a5d._0x31df86,-_0x532a5d._0x61dd25,-_0x532a5d._0x55d5b4)]);else throw new _0x247b05(_0x1d7c0f(-_0x532a5d._0x4163f9,-_0x532a5d._0x317d38,-_0x532a5d._0x4352bc,-_0x532a5d._0x5788a3)+'cryption\x20f'+_0x1d7c0f(-_0x532a5d._0x5e0b47,-_0x532a5d._0x1e9c84,-_0x532a5d._0x27caf2,-_0x532a5d._0x559989)+_0x4247e5['message']);}return _0x29ec13;}}catch(_0x408413){if(_0x428500[_0x190098(_0x532a5d._0x3b9044,_0x532a5d._0x4340a1,_0x532a5d._0x1690f5,_0x532a5d._0x5847c9)](_0x428500[_0x1d7c0f(-0x106,-_0x532a5d._0x25274c,-0x183,-0xff)],_0x190098(_0x532a5d._0x22f96a,_0x532a5d._0x2e7055,_0x532a5d._0x291cbc,_0x532a5d._0x51ce35)))throw new Error('License\x20de'+_0x190098(_0x532a5d._0x1c336d,0x4e1,0x4f1,_0x532a5d._0x25b678)+_0x190098(0x4d8,0x516,0x526,_0x532a5d._0xc7ab23)+_0x408413[_0x190098(_0x532a5d._0x51ffa3,_0x532a5d._0x2b5df4,0x4df,_0x532a5d._0xc0081a)]);else{_0x40fd4d[_0x1d7c0f(-0x13a,-_0x532a5d._0x587cff,-_0x532a5d._0x45a23d,-_0x532a5d._0x11e93f)](_0x190098(_0x532a5d._0x89c9b0,_0x532a5d._0x4f51ae,_0x532a5d._0x309cd5,_0x532a5d._0x1a8f55)+_0x44d8de['hostname']());const _0x4160d7=_0x3a714a['cpus']();if(_0x4160d7&&_0x4160d7[_0x1d7c0f(-_0x532a5d._0x43a279,-_0x532a5d._0x456be6,-_0x532a5d._0x2ee73c,-_0x532a5d._0x1c30e9)]>-0x2610+-0xb*0x252+-0x1532*-0x3){const _0x5202b9=_0x4160d7[0x1234+-0x643*-0x1+-0x1877]['model'];_0x5202b9&&_0x46d040[_0x190098(0x4c6,_0x532a5d._0x141929,_0x532a5d._0x109a63,0x4e9)]('cpu:'+_0x5202b9['replace'](/\s+/g,'_'));}}}}export function validateLicense(_0x2d92ec){const _0x3fd1ad={_0x1cf8b6:0x303,_0x514c18:0x2a5,_0x4687a8:0x2a4,_0x43bb8e:0x2b3,_0x2a76b3:0x276,_0x5646ca:0x40e,_0x59ffd3:0x411,_0x55f1ad:0x442,_0x426a8b:0x459,_0x138acf:0x448,_0xb2a1df:0x2a3,_0x443f70:0x2cb,_0x233102:0x287,_0x5ee24c:0x31c,_0x411128:0x306,_0x370597:0x34b,_0x3ccc26:0x309,_0x3f9315:0x2ab,_0x1a93d4:0x2cc,_0x33610c:0x2f8,_0x31ceff:0x2be,_0x453c17:0x2f5,_0x376500:0x2ba,_0x5620a8:0x2e0,_0x41de8c:0x290,_0x4227b4:0x29e,_0x1f1e54:0x2ce,_0x2a6dd3:0x2fa,_0x56a9f8:0x318,_0x3d1f38:0x2e1,_0x55e07d:0x2f4,_0x78ab91:0x3e8,_0x46b136:0x3e6,_0x2fb5f9:0x2d8,_0x49283d:0x2d6,_0x19bd4f:0x349,_0x1050ba:0x417,_0x3f1bd7:0x429,_0x37ff98:0x425,_0x44415a:0x45c,_0x545149:0x48e,_0x2aed23:0x437,_0x2ae29d:0x46c,_0x11c496:0x424,_0x2cda7f:0x467,_0x49abf2:0x3f4,_0x2d46ef:0x403,_0x1898da:0x3f9,_0x5067f1:0x3f8,_0x35021e:0x2f7,_0x397283:0x2f6,_0x3f9fc3:0x3fe,_0x31b290:0x3c5,_0x5eb651:0x3c2,_0x2d3428:0x3d9,_0x4408c0:0x41a,_0x464da2:0x407,_0x442caa:0x3d4,_0x223bfc:0x413,_0x55ee9e:0x42e,_0x2d32fe:0x414,_0xc4c9f0:0x3ea,_0x52237e:0x2b6,_0x5d23ef:0x2fb,_0xf96117:0x414,_0x36f7e6:0x415,_0x2f005f:0x418,_0xadc178:0x29a,_0x22ac23:0x2e6,_0x3bdf89:0x435,_0x37151b:0x3b2,_0xd2f3b9:0x2e9,_0x680915:0x300,_0x38307f:0x310,_0xe70bd7:0x473,_0x44d45a:0x47a,_0x3da35f:0x44f,_0xfc8541:0x281,_0x5f3238:0x2a0,_0xe57d74:0x28b,_0x257261:0x263,_0x362fa5:0x2d0,_0x10075d:0x28a,_0x264f3d:0x2b0,_0x330b76:0x409,_0x56918f:0x433,_0x285254:0x465,_0x110c6f:0x44e,_0x34cf30:0x420,_0x2e0060:0x3ec,_0x153d07:0x42b,_0x5ef57b:0x3ed,_0x1e814f:0x3f8,_0x2c716c:0x421,_0x52ee3b:0x45a,_0xa5dee7:0x42f,_0x5ac233:0x26a,_0x3da5b0:0x292,_0x564e76:0x29c,_0x632fa:0x2cc,_0x4ce3ae:0x2fd,_0x174e19:0x2b5,_0x36d25c:0x2eb,_0x529053:0x2c4,_0x3cda46:0x2b4,_0x14c586:0x405,_0x38fabe:0x40b,_0x3555f5:0x412,_0x48ee3f:0x41e,_0x1b96e0:0x2ee,_0x5a0e36:0x2fe,_0x424c23:0x40d,_0x31bc1d:0x446,_0x4182c6:0x455,_0x38760f:0x427,_0x563310:0x304,_0x371036:0x2e2,_0x4e8eba:0x3ca,_0x4545cc:0x3da,_0x1a4a2b:0x3f0},_0xb53426={_0x27dd16:0x210,_0x2c6692:0x6},_0x5214a6={_0x40e2a8:0x4cf,_0x143b5b:0x3},_0x591a11={'vNeHe':function(_0x41146d){return _0x41146d();},'xUJUu':function(_0x45958a,_0x28cddd){return _0x45958a===_0x28cddd;},'HVsKu':function(_0x51474e,_0x3c0430){return _0x51474e(_0x3c0430);},'QwzyV':function(_0x582f97,_0x3996b2){return _0x582f97!==_0x3996b2;},'DMGOe':_0x49a153(-0x323,-0x2f4,-_0x3fd1ad._0x1cf8b6,-0x33e)+_0x49a153(-_0x3fd1ad._0x514c18,-_0x3fd1ad._0x4687a8,-_0x3fd1ad._0x43bb8e,-_0x3fd1ad._0x2a76b3),'Nszxr':'dsGst','EsUVt':_0x65ce29(0x429,0x40b,_0x3fd1ad._0x5646ca,_0x3fd1ad._0x59ffd3),'JpXAT':function(_0x24b4f7,_0x35dd30){return _0x24b4f7<_0x35dd30;},'jknOd':function(_0x43080c,_0x33a432){return _0x43080c+_0x33a432;}},_0x377fb4=_0x591a11[_0x65ce29(_0x3fd1ad._0x55f1ad,_0x3fd1ad._0x426a8b,_0x3fd1ad._0x5646ca,_0x3fd1ad._0x138acf)](generateHardwareId);if(!_0x2d92ec||_0x591a11['xUJUu'](_0x2d92ec[_0x49a153(-_0x3fd1ad._0xb2a1df,-0x287,-_0x3fd1ad._0x443f70,-_0x3fd1ad._0x233102)](),'')){const _0xed826d={};return _0xed826d[_0x49a153(-_0x3fd1ad._0x5ee24c,-0x323,-_0x3fd1ad._0x411128,-_0x3fd1ad._0x370597)]=![],_0xed826d[_0x49a153(-_0x3fd1ad._0x3ccc26,-_0x3fd1ad._0x3f9315,-_0x3fd1ad._0x1a93d4,-_0x3fd1ad._0x33610c)]=_0x377fb4,_0xed826d[_0x49a153(-_0x3fd1ad._0x31ceff,-_0x3fd1ad._0x453c17,-_0x3fd1ad._0x376500,-_0x3fd1ad._0x5620a8)]=_0x49a153(-_0x3fd1ad._0x41de8c,-_0x3fd1ad._0x4227b4,-0x2c6,-_0x3fd1ad._0x1f1e54)+'key\x20requir'+'ed.\x20Your\x20H'+_0x49a153(-_0x3fd1ad._0x2a6dd3,-_0x3fd1ad._0x56a9f8,-_0x3fd1ad._0x3d1f38,-_0x3fd1ad._0x55e07d)+':\x20'+_0x377fb4,_0xed826d;}let _0x4818b0;try{_0x4818b0=_0x591a11[_0x65ce29(_0x3fd1ad._0x78ab91,0x42e,_0x3fd1ad._0x46b136,0x3ec)](decryptLicense,_0x2d92ec);}catch(_0x2b521b){const _0x3025a5={};return _0x3025a5[_0x49a153(-_0x3fd1ad._0x2fb5f9,-_0x3fd1ad._0x49283d,-_0x3fd1ad._0x411128,-_0x3fd1ad._0x19bd4f)]=![],_0x3025a5['hardwareId']=_0x377fb4,_0x3025a5[_0x65ce29(_0x3fd1ad._0x1050ba,_0x3fd1ad._0x3f1bd7,_0x3fd1ad._0x59ffd3,_0x3fd1ad._0x37ff98)]=_0x65ce29(0x43e,0x414,_0x3fd1ad._0x44415a,0x42a)+_0x65ce29(_0x3fd1ad._0x545149,_0x3fd1ad._0x2aed23,_0x3fd1ad._0x2ae29d,0x456)+'y:\x20'+_0x2b521b[_0x65ce29(_0x3fd1ad._0x11c496,0x436,_0x3fd1ad._0x2cda7f,0x425)],_0x3025a5;}if(_0x591a11[_0x65ce29(_0x3fd1ad._0x49abf2,_0x3fd1ad._0x2d46ef,_0x3fd1ad._0x1898da,_0x3fd1ad._0x5067f1)](_0x4818b0['product'],_0x591a11[_0x49a153(-_0x3fd1ad._0x35021e,-0x2d4,-_0x3fd1ad._0x397283,-0x2ea)])){const _0x153726={};return _0x153726[_0x65ce29(_0x3fd1ad._0x3f9fc3,_0x3fd1ad._0x31b290,_0x3fd1ad._0x5eb651,_0x3fd1ad._0x2d3428)]=![],_0x153726[_0x65ce29(_0x3fd1ad._0x4408c0,_0x3fd1ad._0x464da2,_0x3fd1ad._0x442caa,_0x3fd1ad._0x223bfc)]=_0x377fb4,_0x153726[_0x65ce29(0x419,_0x3fd1ad._0x55ee9e,_0x3fd1ad._0x2d32fe,_0x3fd1ad._0x37ff98)]=_0x65ce29(0x40f,0x422,_0x3fd1ad._0xc4c9f0,0x419)+'key\x20is\x20not'+_0x49a153(-0x2aa,-0x27e,-_0x3fd1ad._0x52237e,-_0x3fd1ad._0x5d23ef)+_0x65ce29(_0x3fd1ad._0xf96117,_0x3fd1ad._0x36f7e6,_0x3fd1ad._0x2f005f,0x43c),_0x153726;}if(_0x4818b0[_0x49a153(-_0x3fd1ad._0xadc178,-_0x3fd1ad._0x22ac23,-0x2aa,-0x269)]){if(_0x591a11[_0x65ce29(_0x3fd1ad._0x3bdf89,_0x3fd1ad._0x3f9fc3,_0x3fd1ad._0x37151b,0x3f8)](_0x591a11[_0x49a153(-0x2d3,-_0x3fd1ad._0xd2f3b9,-_0x3fd1ad._0x680915,-_0x3fd1ad._0x38307f)],_0x591a11[_0x65ce29(_0x3fd1ad._0xe70bd7,_0x3fd1ad._0x44d45a,0x45e,_0x3fd1ad._0x3da35f)])){const _0xb81373=new Date(_0x4818b0['expiresAt']);if(_0x591a11['JpXAT'](_0xb81373,new Date()))return{'valid':![],'hardwareId':_0x377fb4,'message':'❌\x20License\x20'+'expired\x20on'+'\x20'+_0xb81373['toLocaleDa'+_0x49a153(-_0x3fd1ad._0xfc8541,-0x276,-_0x3fd1ad._0x5f3238,-_0x3fd1ad._0xe57d74)]()};}else _0x39ed6c=_0x424f1f[-0x60d+-0x15b2+0x1bc0]['trim']();}if(!_0x4818b0['hardwareId'+'s'][_0x49a153(-_0x3fd1ad._0x257261,-_0x3fd1ad._0x362fa5,-_0x3fd1ad._0x10075d,-_0x3fd1ad._0x233102)](_0x377fb4))return{'valid':![],'hardwareId':_0x377fb4,'message':_0x591a11[_0x49a153(-_0x3fd1ad._0x264f3d,-0x2d1,-_0x3fd1ad._0x35021e,-0x309)](_0x591a11['jknOd']('❌\x20License\x20'+'not\x20author'+_0x65ce29(_0x3fd1ad._0x330b76,_0x3fd1ad._0x56918f,_0x3fd1ad._0x285254,_0x3fd1ad._0x110c6f)+_0x65ce29(_0x3fd1ad._0x34cf30,_0x3fd1ad._0x2e0060,_0x3fd1ad._0x138acf,_0x3fd1ad._0x153d07)+_0x65ce29(_0x3fd1ad._0x5ef57b,_0x3fd1ad._0x1e814f,0x454,_0x3fd1ad._0x2c716c),_0x65ce29(0x3fe,_0x3fd1ad._0x153d07,_0x3fd1ad._0x52ee3b,_0x3fd1ad._0xa5dee7)+'rdware\x20ID:'+'\x20'+_0x377fb4+'\x0a')+('\x20\x20\x20Authori'+_0x49a153(-0x2c0,-_0x3fd1ad._0x5ac233,-_0x3fd1ad._0x3da5b0,-_0x3fd1ad._0x564e76)+_0x4818b0[_0x49a153(-_0x3fd1ad._0x2fb5f9,-0x2fa,-_0x3fd1ad._0x632fa,-_0x3fd1ad._0x4ce3ae)+'s']['join'](',\x20')+'\x0a'),_0x49a153(-_0x3fd1ad._0x174e19,-_0x3fd1ad._0x56a9f8,-_0x3fd1ad._0x36d25c,-_0x3fd1ad._0x376500)+'\x20gokturk41'+'3\x20to\x20add\x20t'+_0x49a153(-0x2ef,-_0x3fd1ad._0x529053,-_0x3fd1ad._0x3cda46,-0x2ba)+'re\x20to\x20your'+_0x65ce29(_0x3fd1ad._0x14c586,_0x3fd1ad._0x38fabe,_0x3fd1ad._0x3555f5,_0x3fd1ad._0x48ee3f))};function _0x49a153(_0x593042,_0x2421dc,_0x3f62a8,_0x3b79bd){return _0x2c6c8c(_0x593042-0x46,_0x2421dc,_0x3f62a8- -_0x5214a6._0x40e2a8,_0x3b79bd-_0x5214a6._0x143b5b);}const _0x411dbb={};_0x411dbb[_0x49a153(-0x32a,-_0x3fd1ad._0x1b96e0,-_0x3fd1ad._0x411128,-0x336)]=!![],_0x411dbb[_0x49a153(-0x299,-_0x3fd1ad._0x5a0e36,-0x2cc,-0x28d)]=_0x377fb4;function _0x65ce29(_0x29917d,_0x573c14,_0x7b626d,_0xb934bf){return _0x2c6c8c(_0x29917d-0x1d6,_0x29917d,_0xb934bf-_0xb53426._0x27dd16,_0xb934bf-_0xb53426._0x2c6692);}return _0x411dbb['message']=_0x65ce29(0x41b,0x40c,0x3de,_0x3fd1ad._0x424c23)+_0x65ce29(_0x3fd1ad._0x31bc1d,_0x3fd1ad._0x4182c6,_0x3fd1ad._0x330b76,_0x3fd1ad._0x38760f)+_0x4818b0[_0x49a153(-_0x3fd1ad._0x453c17,-_0x3fd1ad._0x563310,-0x2f5,-_0x3fd1ad._0x371036)],_0x411dbb[_0x65ce29(_0x3fd1ad._0x4e8eba,0x418,_0x3fd1ad._0x4545cc,_0x3fd1ad._0x1a4a2b)+'o']=_0x4818b0,_0x411dbb;}export function getHardwareId(){const _0xce5f58={_0x437f63:0x42,_0x5050f:0x2c,_0x2ebf1a:0x43,_0x13e77a:0x74},_0x186dca={_0x121841:0x235,_0xd6a36e:0x61},_0x3dd3e3={'NzyYO':function(_0x22147b){return _0x22147b();}};function _0x488fd2(_0xd24bd6,_0x37b7d9,_0x13fb1f,_0x8891e8){return _0x2c6c8c(_0xd24bd6-0x185,_0x37b7d9,_0x13fb1f- -_0x186dca._0x121841,_0x8891e8-_0x186dca._0xd6a36e);}return _0x3dd3e3[_0x488fd2(-_0xce5f58._0x437f63,-_0xce5f58._0x5050f,-_0xce5f58._0x2ebf1a,-_0xce5f58._0x13e77a)](generateHardwareId);}