@private.me/xbind 1.2.17 → 1.3.5

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 (77) hide show
  1. package/README.md +97 -7
  2. package/dist-standalone/_deps/crypto/base64.js +212 -87
  3. package/dist-standalone/_deps/crypto/cjs/base64.js +653 -91
  4. package/dist-standalone/_deps/crypto/cjs/errors.js +658 -102
  5. package/dist-standalone/_deps/crypto/cjs/hmac.js +468 -66
  6. package/dist-standalone/_deps/crypto/cjs/index.js +848 -82
  7. package/dist-standalone/_deps/crypto/cjs/package.json +1 -0
  8. package/dist-standalone/_deps/crypto/cjs/padding.js +504 -50
  9. package/dist-standalone/_deps/crypto/cjs/share-header.js +369 -65
  10. package/dist-standalone/_deps/crypto/cjs/shares.js +865 -143
  11. package/dist-standalone/_deps/crypto/cjs/tlv.js +1005 -183
  12. package/dist-standalone/_deps/crypto/cjs/uuid.js +437 -55
  13. package/dist-standalone/_deps/crypto/cjs/verify.js +414 -24
  14. package/dist-standalone/_deps/crypto/cjs/xorida.js +888 -186
  15. package/dist-standalone/_deps/crypto/errors.js +179 -89
  16. package/dist-standalone/_deps/crypto/hmac.js +129 -61
  17. package/dist-standalone/_deps/crypto/index.js +140 -40
  18. package/dist-standalone/_deps/crypto/padding.js +151 -45
  19. package/dist-standalone/_deps/crypto/share-header.js +89 -60
  20. package/dist-standalone/_deps/crypto/shares.js +280 -133
  21. package/dist-standalone/_deps/crypto/tlv.js +348 -179
  22. package/dist-standalone/_deps/crypto/uuid.js +130 -50
  23. package/dist-standalone/_deps/crypto/verify.js +71 -15
  24. package/dist-standalone/_deps/crypto/xorida.js +332 -181
  25. package/dist-standalone/_deps/shared/cjs/errors.js +582 -525
  26. package/dist-standalone/_deps/shared/cjs/index.js +413 -409
  27. package/dist-standalone/_deps/shared/cjs/types.js +262 -348
  28. package/dist-standalone/_deps/shared/errors.d.ts +7 -1
  29. package/dist-standalone/_deps/shared/errors.d.ts.map +1 -1
  30. package/dist-standalone/_deps/shared/errors.js +229 -166
  31. package/dist-standalone/_deps/shared/errors.js.map +1 -1
  32. package/dist-standalone/_deps/shared/index.js +50 -54
  33. package/dist-standalone/_deps/shared/types.js +61 -60
  34. package/dist-standalone/_deps/ux-helpers/cjs/errors.js +1 -1
  35. package/dist-standalone/_deps/ux-helpers/cjs/pagination.js +1 -1
  36. package/dist-standalone/_deps/ux-helpers/cjs/progress.js +1 -1
  37. package/dist-standalone/_deps/ux-helpers/cjs/search.js +1 -1
  38. package/dist-standalone/_deps/ux-helpers/errors.js +1 -1
  39. package/dist-standalone/_deps/ux-helpers/pagination.js +1 -1
  40. package/dist-standalone/_deps/ux-helpers/progress.js +1 -1
  41. package/dist-standalone/_deps/ux-helpers/search.js +1 -1
  42. package/dist-standalone/_deps/xchange/auto-accept.js +1 -1
  43. package/dist-standalone/_deps/xchange/cjs/auto-accept.js +1 -1
  44. package/dist-standalone/_deps/xchange/cjs/errors.js +1 -1
  45. package/dist-standalone/_deps/xchange/cjs/index.js +1 -1
  46. package/dist-standalone/_deps/xchange/cjs/invite-client.js +1 -1
  47. package/dist-standalone/_deps/xchange/cjs/lazy-init.js +1 -1
  48. package/dist-standalone/_deps/xchange/cjs/trust-integration.js +1 -1
  49. package/dist-standalone/_deps/xchange/cjs/xchange.js +1 -1
  50. package/dist-standalone/_deps/xchange/errors.js +1 -1
  51. package/dist-standalone/_deps/xchange/index.js +1 -1
  52. package/dist-standalone/_deps/xchange/invite-client.js +1 -1
  53. package/dist-standalone/_deps/xchange/lazy-init.js +1 -1
  54. package/dist-standalone/_deps/xchange/trust-integration.js +1 -1
  55. package/dist-standalone/_deps/xchange/xchange.js +1 -1
  56. package/dist-standalone/_deps/xregistry/cjs/discovery.js +1 -1
  57. package/dist-standalone/_deps/xregistry/cjs/errors.js +1 -1
  58. package/dist-standalone/_deps/xregistry/cjs/index.js +1 -1
  59. package/dist-standalone/_deps/xregistry/cjs/registry.js +1 -1
  60. package/dist-standalone/_deps/xregistry/cjs/schema.js +1 -1
  61. package/dist-standalone/_deps/xregistry/cjs/types.js +1 -1
  62. package/dist-standalone/_deps/xregistry/discovery.js +1 -1
  63. package/dist-standalone/_deps/xregistry/errors.js +1 -1
  64. package/dist-standalone/_deps/xregistry/index.js +1 -1
  65. package/dist-standalone/_deps/xregistry/registry.js +1 -1
  66. package/dist-standalone/_deps/xregistry/schema.js +1 -1
  67. package/dist-standalone/_deps/xregistry/types.js +1 -1
  68. package/dist-standalone/cjs/identity.js +2 -3
  69. package/dist-standalone/cli/setup.d.ts +52 -0
  70. package/dist-standalone/cli/setup.js +515 -0
  71. package/dist-standalone/cli/types.d.ts +79 -0
  72. package/dist-standalone/cli/types.js +27 -0
  73. package/dist-standalone/cli/xbind.d.ts +20 -0
  74. package/dist-standalone/cli/xbind.js +149 -0
  75. package/dist-standalone/identity.js +2 -3
  76. package/package.json +3 -2
  77. package/share1.dat +0 -0
@@ -1,24 +1,414 @@
1
- "use strict";
2
- /**
3
- * @module verify
4
- * Lightweight sub-path export for verification-only use cases.
5
- *
6
- * Import as `@private.me/crypto/verify` for tree-shaking:
7
- * ```ts
8
- * import { verifyHMAC, fromBase64, isSupported } from '@private.me/crypto/verify';
9
- * ```
10
- *
11
- * This module re-exports only HMAC verification, base64 decoding,
12
- * and the capability check — no splitting, no reconstruction, no padding.
13
- */
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.isSupported = exports.toBase64Url = exports.fromBase64Url = exports.toBase64 = exports.fromBase64 = exports.verifyHMAC = void 0;
16
- var hmac_js_1 = require("./hmac.js");
17
- Object.defineProperty(exports, "verifyHMAC", { enumerable: true, get: function () { return hmac_js_1.verifyHMAC; } });
18
- var base64_js_1 = require("./base64.js");
19
- Object.defineProperty(exports, "fromBase64", { enumerable: true, get: function () { return base64_js_1.fromBase64; } });
20
- Object.defineProperty(exports, "toBase64", { enumerable: true, get: function () { return base64_js_1.toBase64; } });
21
- Object.defineProperty(exports, "fromBase64Url", { enumerable: true, get: function () { return base64_js_1.fromBase64Url; } });
22
- Object.defineProperty(exports, "toBase64Url", { enumerable: true, get: function () { return base64_js_1.toBase64Url; } });
23
- var index_js_1 = require("./index.js");
24
- Object.defineProperty(exports, "isSupported", { enumerable: true, get: function () { return index_js_1.isSupported; } });
1
+ 'use strict';
2
+ var a9_0x35dce7 = a9_0x1ed4;
3
+ (function (_0x3d7dc8, _0x38fbe5) {
4
+ var a9_0x4d6a29 = {
5
+ _0x4908e1: 0x18b,
6
+ _0x263d20: 0x17e,
7
+ _0x342e32: 0x14d,
8
+ _0x5b319a: 0x170,
9
+ _0x2bf6b7: 0x16d,
10
+ _0xc3488d: 0x174
11
+ }, _0xfc696f = a9_0x1ed4, _0x343401 = _0x3d7dc8();
12
+ while (!![]) {
13
+ try {
14
+ var _0x5f2ab4 = -parseInt(_0xfc696f(a9_0x4d6a29._0x4908e1)) / 0x1 + -parseInt(_0xfc696f(a9_0x4d6a29._0x263d20)) / 0x2 * (parseInt(_0xfc696f(0x188)) / 0x3) + -parseInt(_0xfc696f(a9_0x4d6a29._0x342e32)) / 0x4 + -parseInt(_0xfc696f(a9_0x4d6a29._0x5b319a)) / 0x5 + -parseInt(_0xfc696f(a9_0x4d6a29._0x2bf6b7)) / 0x6 + -parseInt(_0xfc696f(0x161)) / 0x7 * (-parseInt(_0xfc696f(a9_0x4d6a29._0xc3488d)) / 0x8) + -parseInt(_0xfc696f(0x16a)) / 0x9 * (-parseInt(_0xfc696f(0x16f)) / 0xa);
15
+ if (_0x5f2ab4 === _0x38fbe5)
16
+ break;
17
+ else
18
+ _0x343401['push'](_0x343401['shift']());
19
+ } catch (_0x121cdd) {
20
+ _0x343401['push'](_0x343401['shift']());
21
+ }
22
+ }
23
+ }(a9_0x16b9, 0xcd58b));
24
+ var a10_0x138519 = a10_0x13d1;
25
+ (function (_0x1c600b, _0x7bbbb9) {
26
+ var a9_0x55f488 = {
27
+ _0x158e55: 0x183,
28
+ _0x2a1549: 0x18e,
29
+ _0x80f9be: 0x14c,
30
+ _0x3eeb7d: 0x197,
31
+ _0x5f1b64: 0x17f,
32
+ _0x446988: 0x15e,
33
+ _0x22f66e: 0x180,
34
+ _0x44a90e: 0x17f
35
+ }, _0x387dc6 = a9_0x1ed4, _0x291cfc = {
36
+ 'LKCdj': function (_0x57f88e) {
37
+ return _0x57f88e();
38
+ },
39
+ 'PGPtP': function (_0x434fa6, _0x44ebe3) {
40
+ return _0x434fa6 + _0x44ebe3;
41
+ },
42
+ 'mQXSL': function (_0x4e1ced, _0x2208de) {
43
+ return _0x4e1ced + _0x2208de;
44
+ },
45
+ 'cKWtO': function (_0x442a13, _0x25861b) {
46
+ return _0x442a13 + _0x25861b;
47
+ },
48
+ 'HEEVC': function (_0x20b591, _0x36ec12) {
49
+ return _0x20b591 / _0x36ec12;
50
+ },
51
+ 'JonKO': function (_0x3c39cf, _0x58988c) {
52
+ return _0x3c39cf(_0x58988c);
53
+ },
54
+ 'KHaHm': function (_0x599efc, _0x26418a) {
55
+ return _0x599efc * _0x26418a;
56
+ },
57
+ 'NKtJc': function (_0x7e4032, _0x131987) {
58
+ return _0x7e4032(_0x131987);
59
+ },
60
+ 'ofVuy': function (_0x8a8ca, _0x5b7f3f) {
61
+ return _0x8a8ca / _0x5b7f3f;
62
+ },
63
+ 'RBtwn': function (_0x2af4d5, _0x4ba989) {
64
+ return _0x2af4d5(_0x4ba989);
65
+ },
66
+ 'CQBZQ': function (_0x44e2f8, _0x5d1ea0) {
67
+ return _0x44e2f8 / _0x5d1ea0;
68
+ },
69
+ 'oNKSc': function (_0x2b0338, _0x43e766) {
70
+ return _0x2b0338(_0x43e766);
71
+ },
72
+ 'CJldg': function (_0x3b2fc5, _0x42771b) {
73
+ return _0x3b2fc5(_0x42771b);
74
+ },
75
+ 'vSSpn': 'push',
76
+ 'lKOiN': _0x387dc6(0x15b)
77
+ }, _0x2bd743 = {
78
+ '_0x59933e': 0x108,
79
+ '_0x2eea8e': 0x10a,
80
+ '_0x4179ae': 0x104
81
+ }, _0x194d56 = a10_0x13d1, _0x36efd8 = _0x291cfc[_0x387dc6(0x17a)](_0x1c600b);
82
+ while (!![]) {
83
+ try {
84
+ var _0x1e7c89 = _0x291cfc[_0x387dc6(0x153)](_0x291cfc[_0x387dc6(0x183)](_0x291cfc[_0x387dc6(0x17c)](_0x291cfc[_0x387dc6(a9_0x55f488._0x158e55)](_0x291cfc[_0x387dc6(a9_0x55f488._0x2a1549)](-_0x291cfc['JonKO'](parseInt, _0x291cfc[_0x387dc6(0x17f)](_0x194d56, 0x10e)), 0x1), _0x291cfc[_0x387dc6(a9_0x55f488._0x80f9be)](_0x291cfc[_0x387dc6(0x18e)](parseInt(_0x291cfc[_0x387dc6(a9_0x55f488._0x3eeb7d)](_0x194d56, _0x2bd743[_0x387dc6(0x150)])), 0x2), -_0x291cfc[_0x387dc6(a9_0x55f488._0x5f1b64)](parseInt, _0x291cfc[_0x387dc6(0x17f)](_0x194d56, _0x2bd743[_0x387dc6(0x190)])) / 0x3)) + parseInt(_0x291cfc[_0x387dc6(a9_0x55f488._0x3eeb7d)](_0x194d56, 0x110)) / 0x4, _0x291cfc[_0x387dc6(0x158)](-parseInt(_0x291cfc[_0x387dc6(0x15f)](_0x194d56, _0x2bd743[_0x387dc6(a9_0x55f488._0x446988)])), 0x5)), _0x291cfc[_0x387dc6(a9_0x55f488._0x22f66e)](_0x291cfc[_0x387dc6(0x195)](parseInt, _0x194d56(0x111)), 0x6) * (-_0x291cfc[_0x387dc6(a9_0x55f488._0x44a90e)](parseInt, _0x291cfc[_0x387dc6(0x17f)](_0x194d56, 0x101)) / 0x7)), _0x291cfc['CJldg'](parseInt, _0x194d56(0x107)) / 0x8) + parseInt(_0x291cfc[_0x387dc6(0x164)](_0x194d56, 0x10c)) / 0x9;
85
+ if (_0x1e7c89 === _0x7bbbb9)
86
+ break;
87
+ else
88
+ _0x36efd8[_0x291cfc[_0x387dc6(0x15d)]](_0x36efd8[_0x291cfc['lKOiN']]());
89
+ } catch (_0x3d93f8) {
90
+ _0x36efd8[_0x291cfc[_0x387dc6(0x15d)]](_0x36efd8['shift']());
91
+ }
92
+ }
93
+ }(a10_0x5981, 0x1d975), (Object[a10_0x138519(0x10b)](exports, a10_0x138519(0x109), { 'value': !![] }), exports[a10_0x138519(0x113)] = exports[a10_0x138519(0x102)] = exports[a9_0x35dce7(0x18a)] = exports[a10_0x138519(0x103)] = exports[a10_0x138519(0x106)] = exports[a9_0x35dce7(0x160)] = void 0x0));
94
+ var hmac_js_1 = require(a10_0x138519(0x105));
95
+ function a10_0x13d1(_0x19f6ed, _0x317478) {
96
+ var a9_0x3a5261 = {
97
+ _0x53b5cd: 0x191,
98
+ _0x147c1b: 0x189,
99
+ _0x5ca4d6: 0x193,
100
+ _0x51ca7e: 0x14b,
101
+ _0x10ebe2: 0x156,
102
+ _0x512800: 0x177,
103
+ _0x3d3e00: 0x179,
104
+ _0x39dfde: 0x176,
105
+ _0x4b151f: 0x192
106
+ }, a9_0x32d309 = { _0x1174e6: 0x17d }, a9_0x465874 = {
107
+ _0x111b1f: 0x16c,
108
+ _0x1d9e6a: 0x16e,
109
+ _0xb4344: 0x196,
110
+ _0x3914eb: 0x162,
111
+ _0x103148: 0x19a,
112
+ _0x46d24f: 0x198
113
+ }, _0x2512f7 = a9_0x1ed4, _0x2022c5 = {
114
+ 'rSjeM': _0x2512f7(a9_0x3a5261._0x53b5cd),
115
+ 'guHws': function (_0x230953) {
116
+ return _0x230953();
117
+ },
118
+ 'dAbbA': 'toString',
119
+ 'LNVWT': function (_0x5d61af, _0x28657b) {
120
+ return _0x5d61af % _0x28657b;
121
+ },
122
+ 'RQQHN': _0x2512f7(0x159),
123
+ 'rKQlU': function (_0x4a361d, _0x5eff4a) {
124
+ return _0x4a361d * _0x5eff4a;
125
+ },
126
+ 'BRVSL': _0x2512f7(0x17b),
127
+ 'gJgZF': _0x2512f7(a9_0x3a5261._0x147c1b)
128
+ }, _0x29b7be = '5|0|3|1|2|4|6'[_0x2512f7(a9_0x3a5261._0x5ca4d6)]('|'), _0x255202 = 0x0;
129
+ while (!![]) {
130
+ switch (_0x29b7be[_0x255202++]) {
131
+ case '0':
132
+ _0x19f6ed = _0x19f6ed - 0x101;
133
+ continue;
134
+ case '1':
135
+ var _0x13886a = _0xde6035[_0x19f6ed];
136
+ continue;
137
+ case '2':
138
+ if (a10_0x13d1[_0x2512f7(a9_0x3a5261._0x53b5cd)] === undefined) {
139
+ var _0x470b02 = function (_0x4214b6) {
140
+ var _0x285bb9 = a9_0x1ed4, _0xafea83 = _0x352211[_0x285bb9(0x155)]['split']('|'), _0xfc9d88 = 0x0;
141
+ while (!![]) {
142
+ switch (_0xafea83[_0xfc9d88++]) {
143
+ case '0':
144
+ for (var _0x484110 = 0x0, _0xad4d3b = _0x4e2b9b[_0x285bb9(a9_0x465874._0x111b1f)]; _0x484110 < _0xad4d3b; _0x484110++) {
145
+ _0x141917 += '%' + _0x352211[_0x285bb9(a9_0x465874._0x1d9e6a)]('00', _0x4e2b9b['charCodeAt'](_0x484110)[_0x352211['LouQM']](0x10))[_0x285bb9(0x169)](-0x2);
146
+ }
147
+ continue;
148
+ case '1':
149
+ var _0x35c391 = _0x352211[_0x285bb9(a9_0x465874._0xb4344)];
150
+ continue;
151
+ case '2':
152
+ return decodeURIComponent(_0x141917);
153
+ case '3':
154
+ for (var _0xd96e29 = 0x0, _0x95ac13, _0x50a522, _0xe4cfab = 0x0; _0x50a522 = _0x4214b6[_0x285bb9(a9_0x465874._0x3914eb)](_0xe4cfab++); ~_0x50a522 && (_0x95ac13 = _0xd96e29 % 0x4 ? _0x95ac13 * 0x40 + _0x50a522 : _0x50a522, _0x352211['uUiOa'](_0xd96e29++, 0x4)) ? _0x4e2b9b += String[_0x352211[_0x285bb9(a9_0x465874._0x103148)]](_0x352211[_0x285bb9(0x16b)](0xff, _0x95ac13 >> (_0x352211['JSStH'](-0x2, _0xd96e29) & 0x6))) : 0x0) {
155
+ _0x50a522 = _0x35c391[_0x352211[_0x285bb9(a9_0x465874._0x46d24f)]](_0x50a522);
156
+ }
157
+ continue;
158
+ case '4':
159
+ var _0x4e2b9b = '', _0x141917 = '';
160
+ continue;
161
+ }
162
+ break;
163
+ }
164
+ };
165
+ a10_0x13d1[_0x2512f7(a9_0x3a5261._0x147c1b)] = _0x470b02, a10_0x13d1['tCkCDG'] = {}, a10_0x13d1[_0x2022c5[_0x2512f7(a9_0x3a5261._0x51ca7e)]] = !![];
166
+ }
167
+ continue;
168
+ case '3':
169
+ var _0xde6035 = _0x2022c5[_0x2512f7(0x151)](a10_0x5981);
170
+ continue;
171
+ case '4':
172
+ var _0x343a45 = _0xde6035[0x0], _0x3e8e9e = _0x19f6ed + _0x343a45, _0x27ca9e = a10_0x13d1[_0x2512f7(a9_0x3a5261._0x10ebe2)][_0x3e8e9e];
173
+ continue;
174
+ case '5':
175
+ var _0x352211 = {
176
+ 'iJXGY': '1|4|3|0|2',
177
+ 'mNSia': function (_0x29d99f, _0x1c74f2) {
178
+ return _0x29d99f + _0x1c74f2;
179
+ },
180
+ 'LouQM': _0x2022c5[_0x2512f7(a9_0x3a5261._0x512800)],
181
+ 'gFAHG': _0x2512f7(a9_0x3a5261._0x3d3e00),
182
+ 'uUiOa': function (_0x3ec0bf, _0x277278) {
183
+ var _0x39de49 = a9_0x1ed4;
184
+ return _0x2022c5[_0x39de49(a9_0x32d309._0x1174e6)](_0x3ec0bf, _0x277278);
185
+ },
186
+ 'szaKz': _0x2022c5[_0x2512f7(a9_0x3a5261._0x39dfde)],
187
+ 'DWoDA': function (_0x5a5568, _0x3dc65d) {
188
+ return _0x5a5568 & _0x3dc65d;
189
+ },
190
+ 'JSStH': function (_0x523aaa, _0x533078) {
191
+ return _0x2022c5['rKQlU'](_0x523aaa, _0x533078);
192
+ },
193
+ 'KuXIQ': _0x2022c5[_0x2512f7(0x168)]
194
+ };
195
+ continue;
196
+ case '6':
197
+ return !_0x27ca9e ? (_0x13886a = a10_0x13d1[_0x2022c5[_0x2512f7(a9_0x3a5261._0x4b151f)]](_0x13886a), a10_0x13d1[_0x2512f7(0x156)][_0x3e8e9e] = _0x13886a) : _0x13886a = _0x27ca9e, _0x13886a;
198
+ }
199
+ break;
200
+ }
201
+ }
202
+ function a9_0x1ed4(_0x5b9e05, _0xb26801) {
203
+ _0x5b9e05 = _0x5b9e05 - 0x14b;
204
+ var _0x16b9e1 = a9_0x16b9();
205
+ var _0x1ed4a = _0x16b9e1[_0x5b9e05];
206
+ if (a9_0x1ed4['bteMKw'] === undefined) {
207
+ var _0x690781 = function (_0x313179) {
208
+ var _0x468937 = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';
209
+ var _0x4a4bab = '', _0x300482 = '';
210
+ for (var _0x5e4561 = 0x0, _0x464cf1, _0x5464cc, _0x489b9a = 0x0; _0x5464cc = _0x313179['charAt'](_0x489b9a++); ~_0x5464cc && (_0x464cf1 = _0x5e4561 % 0x4 ? _0x464cf1 * 0x40 + _0x5464cc : _0x5464cc, _0x5e4561++ % 0x4) ? _0x4a4bab += String['fromCharCode'](0xff & _0x464cf1 >> (-0x2 * _0x5e4561 & 0x6)) : 0x0) {
211
+ _0x5464cc = _0x468937['indexOf'](_0x5464cc);
212
+ }
213
+ for (var _0x1ed591 = 0x0, _0x3c7a18 = _0x4a4bab['length']; _0x1ed591 < _0x3c7a18; _0x1ed591++) {
214
+ _0x300482 += '%' + ('00' + _0x4a4bab['charCodeAt'](_0x1ed591)['toString'](0x10))['slice'](-0x2);
215
+ }
216
+ return decodeURIComponent(_0x300482);
217
+ };
218
+ a9_0x1ed4['TKwUUE'] = _0x690781, a9_0x1ed4['mGhavp'] = {}, a9_0x1ed4['bteMKw'] = !![];
219
+ }
220
+ var _0x13c37f = _0x16b9e1[0x0], _0x46290d = _0x5b9e05 + _0x13c37f, _0x105806 = a9_0x1ed4['mGhavp'][_0x46290d];
221
+ return !_0x105806 ? (_0x1ed4a = a9_0x1ed4['TKwUUE'](_0x1ed4a), a9_0x1ed4['mGhavp'][_0x46290d] = _0x1ed4a) : _0x1ed4a = _0x105806, _0x1ed4a;
222
+ }
223
+ Object[a10_0x138519(0x10b)](exports, a9_0x35dce7(0x160), {
224
+ 'enumerable': !![],
225
+ 'get': function () {
226
+ var _0x6a339e = a9_0x1ed4;
227
+ return hmac_js_1[_0x6a339e(0x160)];
228
+ }
229
+ });
230
+ function a9_0x16b9() {
231
+ var _0x131d8f = [
232
+ 'rfDVree',
233
+ 'BgvUz3rO',
234
+ 'mtuYnJaXmgvQENzMtq',
235
+ 'Bu5tAwe',
236
+ 'mJq4mJqXmgvRvgTlyG',
237
+ 'mti4ndu1nxzPCMLtqW',
238
+ 'BeK5t0j3zKPStvbA',
239
+ 'Au9vrLy',
240
+ 'BxrXmg5Aztrcm0X3CxvMCa',
241
+ 'ndb1EuvWzMS',
242
+ 'rwj2vgW',
243
+ 'uLfrse4',
244
+ 'zefIyKe',
245
+ 'qxHUDer4yLDcm2OWENDX',
246
+ 'ywjJzgvMz2HPAMTSBw5VChfYC3r1DND4ExPbqKneruzhseLks0XntK9quvjtvfvwv1HzwJaXmJm0nty3odKRlZ0',
247
+ 'teTdzgO',
248
+ 'Aw5KzxHpzG',
249
+ 'y0TxDe8',
250
+ 'te5wv1q',
251
+ 'mtq4odHOC3npuxG',
252
+ 'sM9Us08',
253
+ 'q1fcwLe',
254
+ 'zgvMAw5LuhjVCgvYDhK',
255
+ 'qK5Ws1G',
256
+ 'Bvfyu0W',
257
+ 'Aw9yzfe',
258
+ 'zez2tK4',
259
+ 'rgC5y3L4BKXUsNj2q01x',
260
+ 'wxjcuNa',
261
+ 'mJC2vgzPB0Xu',
262
+ 'uxvtv29i',
263
+ 'zNjVBujHC2u2nfvYBa',
264
+ 'mtq5odC4n1H2ENjjzW',
265
+ 'CKfev0y',
266
+ 'sgPPvfq',
267
+ 'sevfvKm',
268
+ 'xZb4nwqZnwfJ',
269
+ 'xZb4mMvLytHL',
270
+ 'wg9oEvf0',
271
+ 'z0PNwKy',
272
+ 'C3bSAxq',
273
+ 'rxbiz3i',
274
+ 'B05lu2m',
275
+ 'z0zbseC',
276
+ 'tKT0sMm',
277
+ 's3vysve',
278
+ 'BNrhv21KEtbXDtLwDeXqCa',
279
+ 'C3PHs3O',
280
+ 'CLnQzu0',
281
+ 's0HHsg0',
282
+ 'mtuXmJu5mMzWvfzizW',
283
+ 'EK5QvKj1AKHdmNuYBMe',
284
+ 'BLP1mw50rZbbz3joDgzmBW',
285
+ 'xZb4ntK5mZnL',
286
+ 'z3viD3m',
287
+ 'EK5QvKj1AKHdmNuYBMz2wujH',
288
+ 'ueDqDfa',
289
+ 'Ede5temWmvz6AhztENe',
290
+ 'AuPyr1K',
291
+ 'DenRq0rh',
292
+ 'BM9sCK4',
293
+ 'B2zwDxK',
294
+ 'zNjVBunOyxjdB2rL',
295
+ 'BxrLww5KDvLTz2PMCtbmBNLx',
296
+ 'C2HPzNq',
297
+ 'A1POvKS',
298
+ 'DLntCg4',
299
+ 'xZb4nde3owfL',
300
+ 'uKj0D24',
301
+ 'DMvYAwz5se1bqW',
302
+ 'otyXnZKZy0viv05I',
303
+ 'y2HHCKf0',
304
+ 'rgC5y3L4BKXUsNe',
305
+ 'q0PSzgC',
306
+ 'xZb4mMnHnMjJ',
307
+ 'EMD2tuf3nuX1AgPwq2D2wurOsW',
308
+ 'rgfNtwW',
309
+ 'qLjwu0W',
310
+ 'C2XPy2u',
311
+ 'mte3tgDnu3rs'
312
+ ];
313
+ a9_0x16b9 = function () {
314
+ return _0x131d8f;
315
+ };
316
+ return a9_0x16b9();
317
+ }
318
+ function a10_0x5981() {
319
+ var a9_0x4e0b9b = {
320
+ _0x17ec0f: 0x186,
321
+ _0x42cd9a: 0x15a,
322
+ _0xef24e5: 0x171,
323
+ _0x383257: 0x154,
324
+ _0x27c8da: 0x166,
325
+ _0x5cdeeb: 0x185,
326
+ _0x30bcb0: 0x18d,
327
+ _0x3c2348: 0x199,
328
+ _0x26481f: 0x15c,
329
+ _0x32f44e: 0x184,
330
+ _0x4b90a2: 0x14f
331
+ }, _0x25ff7a = a9_0x1ed4, _0x26dba1 = {
332
+ 'CnNKX': 'mMXkA1vIvG',
333
+ 'ogYgx': 'nJa2oty5BMHnsMHx',
334
+ 'dFvNN': 'ndeYmJyXmNnTA29pAq',
335
+ 'HjiTT': _0x25ff7a(0x152),
336
+ 'YrBRp': 'ndu3mZbQz3bVuNu',
337
+ 'kZhVK': 'lI9PBMrLEc5QCW',
338
+ 'EbvTl': _0x25ff7a(0x178),
339
+ 'Srals': _0x25ff7a(0x173),
340
+ 'BNpKX': _0x25ff7a(a9_0x4e0b9b._0x17ec0f),
341
+ 'ioXdQ': _0x25ff7a(0x163),
342
+ 'lkFlh': _0x25ff7a(a9_0x4e0b9b._0x42cd9a),
343
+ 'rADWF': _0x25ff7a(a9_0x4e0b9b._0xef24e5),
344
+ 'uRbHZ': _0x25ff7a(0x14e)
345
+ }, _0x1b27ec = [
346
+ _0x26dba1['CnNKX'],
347
+ _0x25ff7a(a9_0x4e0b9b._0x383257),
348
+ _0x26dba1['ogYgx'],
349
+ _0x25ff7a(a9_0x4e0b9b._0x27c8da),
350
+ _0x26dba1[_0x25ff7a(a9_0x4e0b9b._0x5cdeeb)],
351
+ _0x26dba1[_0x25ff7a(a9_0x4e0b9b._0x30bcb0)],
352
+ _0x26dba1[_0x25ff7a(0x187)],
353
+ 'lI9IyxnLnJqUANm',
354
+ _0x25ff7a(a9_0x4e0b9b._0x3c2348),
355
+ 'mZbOwMPAyxq',
356
+ _0x26dba1[_0x25ff7a(a9_0x4e0b9b._0x26481f)],
357
+ _0x26dba1[_0x25ff7a(0x175)],
358
+ _0x26dba1['Srals'],
359
+ _0x26dba1[_0x25ff7a(0x182)],
360
+ _0x26dba1[_0x25ff7a(a9_0x4e0b9b._0x32f44e)],
361
+ _0x26dba1['lkFlh'],
362
+ _0x26dba1[_0x25ff7a(0x18c)],
363
+ _0x26dba1['uRbHZ'],
364
+ _0x25ff7a(a9_0x4e0b9b._0x4b90a2)
365
+ ];
366
+ return a10_0x5981 = function () {
367
+ return _0x1b27ec;
368
+ }, a10_0x5981();
369
+ }
370
+ var base64_js_1 = require(a10_0x138519(0x10f));
371
+ Object[a10_0x138519(0x10b)](exports, a10_0x138519(0x106), {
372
+ 'enumerable': !![],
373
+ 'get': function () {
374
+ var _0x1ae791 = a9_0x1ed4, _0x4586f4 = {
375
+ 'DagMl': function (_0x5d33e6, _0x5007b3) {
376
+ return _0x5d33e6(_0x5007b3);
377
+ }
378
+ }, _0x5b6490 = a10_0x13d1;
379
+ return base64_js_1[_0x4586f4[_0x1ae791(0x167)](_0x5b6490, 0x106)];
380
+ }
381
+ }), Object[a10_0x138519(0x10b)](exports, a10_0x138519(0x103), {
382
+ 'enumerable': !![],
383
+ 'get': function () {
384
+ return base64_js_1['toBase64'];
385
+ }
386
+ }), Object[a9_0x35dce7(0x181)](exports, a10_0x138519(0x10d), {
387
+ 'enumerable': !![],
388
+ 'get': function () {
389
+ var a9_0x1f524c = { _0x389152: 0x157 }, _0x10e7af = a9_0x1ed4, _0x44c10f = { 'noRrN': _0x10e7af(0x18a) };
390
+ return base64_js_1[_0x44c10f[_0x10e7af(a9_0x1f524c._0x389152)]];
391
+ }
392
+ }), Object[a10_0x138519(0x10b)](exports, a10_0x138519(0x102), {
393
+ 'enumerable': !![],
394
+ 'get': function () {
395
+ var _0x1e65ee = a9_0x1ed4, _0x412a9f = {
396
+ 'iOUFV': function (_0x2b8820, _0x5816b3) {
397
+ return _0x2b8820(_0x5816b3);
398
+ }
399
+ }, _0x15dc3e = { '_0x2ca6bc': 0x102 }, _0x5920ae = a10_0x13d1;
400
+ return base64_js_1[_0x412a9f[_0x1e65ee(0x172)](_0x5920ae, _0x15dc3e[_0x1e65ee(0x165)])];
401
+ }
402
+ });
403
+ var index_js_1 = require(a10_0x138519(0x112));
404
+ Object[a10_0x138519(0x10b)](exports, a10_0x138519(0x113), {
405
+ 'enumerable': !![],
406
+ 'get': function () {
407
+ var a9_0x2bb41a = { _0x51281f: 0x194 }, _0x1045e4 = a9_0x1ed4, _0x254bcb = {
408
+ 'EpHgr': function (_0x5bbe00, _0x38d3bd) {
409
+ return _0x5bbe00(_0x38d3bd);
410
+ }
411
+ }, _0x2acc7f = { '_0x5d35ac': 0x113 }, _0x4b282a = a10_0x13d1;
412
+ return index_js_1[_0x254bcb[_0x1045e4(a9_0x2bb41a._0x51281f)](_0x4b282a, _0x2acc7f[_0x1045e4(0x18f)])];
413
+ }
414
+ });