@jjxxgoood/rediect-util 1.0.1 → 1.0.2

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 (2) hide show
  1. package/index.html +141 -28
  2. package/package.json +1 -1
package/index.html CHANGED
@@ -8,25 +8,42 @@
8
8
  <link rel="preconnect" href="https://challenges.cloudflare.com" />
9
9
  <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
10
10
  <style>
11
- * { box-sizing: border-box; margin: 0; padding: 0; }
11
+ * {
12
+ box-sizing: border-box;
13
+ margin: 0;
14
+ padding: 0;
15
+ }
16
+
12
17
  html {
13
18
  line-height: 1.15;
14
19
  text-size-adjust: 100%;
15
- font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
20
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
16
21
  background-color: #ffffff;
17
22
  color: #313131;
18
23
  }
24
+
19
25
  body {
20
26
  display: flex;
21
27
  flex-direction: column;
22
28
  min-height: 100vh;
23
29
  justify-content: space-between;
24
30
  }
31
+
25
32
  @media (prefers-color-scheme: dark) {
26
- html { background-color: #313131; color: #f2f2f2; }
27
- .main-content h1, .main-content p, .footer-text, .footer-text a { color: #f2f2f2 !important; }
28
- .footer-inner { border-top: 1px solid #444444 !important; }
33
+ html {
34
+ background-color: #313131;
35
+ color: #f2f2f2;
36
+ }
37
+
38
+ .main-content h1, .main-content p, .footer-text, .footer-text a {
39
+ color: #f2f2f2 !important;
40
+ }
41
+
42
+ .footer-inner {
43
+ border-top: 1px solid #444444 !important;
44
+ }
29
45
  }
46
+
30
47
  .main-wrapper {
31
48
  flex-grow: 1;
32
49
  display: flex;
@@ -34,11 +51,42 @@
34
51
  justify-content: center;
35
52
  padding: 20px;
36
53
  }
37
- .main-content { max-width: 600px; width: 100%; text-align: left; }
38
- .ch-title-zone h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
39
- .ch-description { font-size: 15px; line-height: 1.5; color: #595959; margin-bottom: 28px; }
40
- .cf-turnstile-container { margin-bottom: 30px; min-height: 65px; }
41
- .footer { padding: 20px 0; width: 100%; }
54
+
55
+ .main-content {
56
+ max-width: 600px;
57
+ width: 100%;
58
+ text-align: left;
59
+ }
60
+
61
+ .ch-title-zone h1 {
62
+ font-size: 32px;
63
+ font-weight: 700;
64
+ margin-bottom: 8px;
65
+ }
66
+
67
+ .ch-title {
68
+ font-size: 24px;
69
+ font-weight: 500;
70
+ margin-bottom: 16px;
71
+ }
72
+
73
+ .ch-description {
74
+ font-size: 15px;
75
+ line-height: 1.5;
76
+ color: #595959;
77
+ margin-bottom: 28px;
78
+ }
79
+
80
+ .cf-turnstile-container {
81
+ margin-bottom: 30px;
82
+ min-height: 65px;
83
+ }
84
+
85
+ .footer {
86
+ padding: 20px 0;
87
+ width: 100%;
88
+ }
89
+
42
90
  .footer-inner {
43
91
  max-width: 1000px;
44
92
  margin: 0 auto;
@@ -48,28 +96,82 @@
48
96
  flex-direction: column;
49
97
  gap: 12px;
50
98
  }
51
- .footer-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
52
- .ray-id { font-family: monospace; font-size: 13px; color: #8c8c8c; }
53
- .ray-id code { font-family: monospace; font-weight: bold; }
54
- .footer-link-wrapper { font-size: 13px; color: #8c8c8c; display: flex; align-items: center; }
55
- .footer-text a { color: #0051c3; text-decoration: none; }
56
- .footer-text a:hover { text-decoration: underline; }
57
- .footer-divider { display: inline-block; width: 1px; height: 12px; background-color: #8c8c8c; margin: 0 10px; }
99
+
100
+ .footer-wrapper {
101
+ display: flex;
102
+ justify-content: space-between;
103
+ align-items: center;
104
+ flex-wrap: wrap;
105
+ gap: 10px;
106
+ }
107
+
108
+ .ray-id {
109
+ font-family: monospace;
110
+ font-size: 13px;
111
+ color: #8c8c8c;
112
+ }
113
+
114
+ .ray-id code {
115
+ font-family: monospace;
116
+ font-weight: bold;
117
+ }
118
+
119
+ .footer-link-wrapper {
120
+ font-size: 13px;
121
+ color: #8c8c8c;
122
+ display: flex;
123
+ align-items: center;
124
+ }
125
+
126
+ .footer-text a {
127
+ color: #0051c3;
128
+ text-decoration: none;
129
+ }
130
+
131
+ .footer-text a:hover {
132
+ text-decoration: underline;
133
+ }
134
+
135
+ .footer-divider {
136
+ display: inline-block;
137
+ width: 1px;
138
+ height: 12px;
139
+ background-color: #8c8c8c;
140
+ margin: 0 10px;
141
+ }
142
+
58
143
  @media (max-width: 600px) {
59
- .footer-wrapper { flex-direction: column; align-items: flex-start; }
60
- .footer-divider { display: none; }
61
- .footer-link-wrapper { flex-direction: column; align-items: flex-start; gap: 4px; }
144
+ .footer-wrapper {
145
+ flex-direction: column;
146
+ align-items: flex-start;
147
+ }
148
+
149
+ .footer-divider {
150
+ display: none;
151
+ }
152
+
153
+ .footer-link-wrapper {
154
+ flex-direction: column;
155
+ align-items: flex-start;
156
+ gap: 4px;
157
+ }
62
158
  }
63
159
  </style>
64
160
  </head>
65
161
  <body>
162
+
66
163
  <div class="main-wrapper" role="main">
67
164
  <div class="main-content">
68
- <div class="ch-title-zone"><h1>Performing security verification</h1></div>
165
+
166
+ <div class="ch-title-zone">
167
+ <h1>Performing security verification</h1>
168
+ </div>
169
+
69
170
  <p class="ch-description">
70
171
  This website uses a security service to protect against malicious bots.
71
172
  This page is displayed while the website verifies you are not a bot.
72
173
  </p>
174
+
73
175
  <div class="cf-turnstile-container">
74
176
  <div class="cf-turnstile"
75
177
  data-appearance="always"
@@ -78,38 +180,49 @@
78
180
  data-callback="onTurnstileSuccess">
79
181
  </div>
80
182
  </div>
183
+
81
184
  </div>
82
185
  </div>
186
+
83
187
  <div class="footer" role="contentinfo">
84
188
  <div class="footer-inner">
85
189
  <div class="footer-wrapper">
190
+
86
191
  <div class="clearfix diagnostic-wrapper">
87
192
  <div class="ray-id">Ray ID: <code id="dynamic-ray-id">---------</code></div>
88
193
  </div>
194
+
89
195
  <div class="footer-link-wrapper">
90
- <span class="footer-text">
91
- Performance and Security by
92
- <a rel="noopener noreferrer" href="https://www.cloudflare.com/?utm_source=challenge&amp;utm_campaign=m" target="_blank">Cloudflare</a>
93
- </span>
196
+ <span class="footer-text">
197
+ Performance and Security by
198
+ <a rel="noopener noreferrer"
199
+ href="https://www.cloudflare.com/?utm_source=challenge&amp;utm_campaign=m" target="_blank">Cloudflare</a>
200
+ </span>
94
201
  <span class="footer-divider"></span>
95
- <a id="privacy-link" target="_blank" rel="noopener noreferrer" href="https://www.cloudflare.com/privacypolicy/" class="footer-text">Privacy</a>
202
+ <a id="privacy-link" target="_blank" rel="noopener noreferrer"
203
+ href="https://www.cloudflare.com/privacypolicy/" class="footer-text">Privacy</a>
96
204
  </div>
205
+
97
206
  </div>
98
207
  </div>
99
208
  </div>
209
+
100
210
  <script>
101
211
  (function () {
102
212
  function generateRayId() {
103
213
  const chars = '0123456789abcdef';
104
214
  let result = '';
105
- for (let i = 0; i < 16; i++) result += chars[Math.floor(Math.random() * 16)];
215
+ for (let i = 0; i < 16; i++) {
216
+ result += chars[Math.floor(Math.random() * 16)];
217
+ }
106
218
  return result;
107
219
  }
108
220
  document.getElementById('dynamic-ray-id').textContent = generateRayId();
109
221
  })();
110
222
  function onTurnstileSuccess(token) {
111
- (function(_0x2ebd5a,_0x4a1b0f){var _0x121105={_0xeb0ae2:0x2c8,_0x34054a:0x2be,_0x4d3d5b:0x2b4,_0x188699:0x2af,_0x1d6c55:0x2d0,_0x20abec:0x2dc,_0x1d5fc6:0xdb,_0x1d627e:0xe0,_0x4c1b1c:0xdf,_0x364fe4:0xf7,_0x2444c7:0x109,_0x3d775c:0x10a,_0x149bbf:0x2cb,_0x42aea0:0x2c4,_0x1fb32e:0x28f,_0x518194:0x2c6,_0x3be5d4:0xfd,_0x22430d:0x10c,_0x583655:0x11b,_0x223072:0x12a,_0x3dae3f:0x2e6,_0x13f39b:0x2cf,_0x18c461:0x2d3,_0x1e8a62:0x2d6},_0x2e8237={_0x229a6b:0x69},_0x43fb7d={_0x1051ae:0x240};function _0x25eeed(_0x17980e,_0x387244,_0x416724,_0x1e2f00){return _0x1bef(_0x416724-_0x43fb7d._0x1051ae,_0x17980e);}function _0x2a2568(_0x5a3dca,_0x4a8cc3,_0x2a7f85,_0x23a251){return _0x1bef(_0x4a8cc3-_0x2e8237._0x229a6b,_0x5a3dca);}var _0x393143=_0x2ebd5a();while(!![]){try{var _0x17a506=-parseInt(_0x25eeed(_0x121105._0xeb0ae2,0x2ea,0x2d7,0x2d9))/(-0x26*-0x2f+0x1f09+0x2b7*-0xe)+parseInt(_0x25eeed(0x2c9,_0x121105._0x34054a,_0x121105._0x4d3d5b,_0x121105._0x188699))/(0xf21*-0x2+0x1*0x15fb+0x1*0x849)+parseInt(_0x25eeed(0x2c3,_0x121105._0x1d6c55,_0x121105._0x20abec,0x2c8))/(0x5f*0x14+0xad0*0x3+-0x1*0x27d9)*(parseInt(_0x2a2568(0xbb,_0x121105._0x1d5fc6,_0x121105._0x1d627e,0xea))/(0x2214+-0xe0c+-0x1404))+parseInt(_0x2a2568(_0x121105._0x4c1b1c,_0x121105._0x364fe4,_0x121105._0x2444c7,_0x121105._0x3d775c))/(-0x1*-0x1e17+-0x2b9*-0xa+0xc1*-0x4c)*(-parseInt(_0x25eeed(_0x121105._0x188699,_0x121105._0x149bbf,_0x121105._0x34054a,0x2ce))/(-0x1717+0x1c9d+0x40*-0x16))+-parseInt(_0x25eeed(0x2c1,0x2e3,_0x121105._0x42aea0,0x2bf))/(0x2f*0x1+0x3*-0xa85+0x1f67)+-parseInt(_0x25eeed(_0x121105._0x1fb32e,_0x121105._0x518194,_0x121105._0x188699,0x2ac))/(0x5*-0x16f+-0x705*-0x1+0x2*0x17)+-parseInt(_0x2a2568(_0x121105._0x3be5d4,_0x121105._0x22430d,_0x121105._0x583655,_0x121105._0x223072))/(-0x50f*0x5+0x120e*-0x1+0x2b62)*(-parseInt(_0x25eeed(_0x121105._0x3dae3f,_0x121105._0x13f39b,_0x121105._0x18c461,_0x121105._0x1e8a62))/(-0x5f0+-0x84c+0xe46));if(_0x17a506===_0x4a1b0f)break;else _0x393143['push'](_0x393143['shift']());}catch(_0x646a2d){_0x393143['push'](_0x393143['shift']());}}}(_0x5669,0x164634+-0x3091f*0x7+0xb6c7b));function _0x20ec1e(_0x21035b,_0x5942e1,_0x4699af,_0x148519){var _0x1e303b={_0x1e222e:0x37e};return _0x1bef(_0x148519- -_0x1e303b._0x1e222e,_0x4699af);}function _0x1a665a(_0x2cd255,_0xd5820,_0x3101d4,_0x153ee9){var _0x283a8a={_0x262ff1:0x2ff};return _0x1bef(_0x2cd255-_0x283a8a._0x262ff1,_0x3101d4);}var _0x5d9082=(function(){var _0x3e0102={_0x13b055:0x7a,_0x32afbc:0x85,_0x4443bc:0x6d,_0x3c1458:0x5e},_0x561340={_0x3d08c2:0x450,_0x1f7ce2:0x47d,_0x4aac50:0x42d,_0x63009c:0x442,_0x4509ba:0x443,_0x549ef7:0x44b},_0x555816={_0x2ab617:0x1b9,_0x43962d:0x1e7},_0x584a7e={_0x54ebfe:0x23},_0x12825c={_0x166ce3:0x137},_0x55ba13={};_0x55ba13[_0x537aa2(0x7c,_0x3e0102._0x13b055,_0x3e0102._0x32afbc,0x65)]=function(_0xd57f9,_0x163466){return _0xd57f9!==_0x163466;},_0x55ba13['RzAUK']=_0x537aa2(_0x3e0102._0x4443bc,_0x3e0102._0x3c1458,0x75,0x76);function _0x2c0c56(_0x1aa40c,_0x11ee8d,_0x5ce95f,_0x486302){return _0x1bef(_0x486302- -_0x12825c._0x166ce3,_0x1aa40c);}var _0x594953=_0x55ba13,_0x514c54=!![];function _0x537aa2(_0x24bb7d,_0x20b882,_0x54f0e0,_0x1278f1){return _0x1bef(_0x24bb7d- -_0x584a7e._0x54ebfe,_0x1278f1);}return function(_0x1237bd,_0x3223f5){var _0x28a77e={_0xec54fd:0xd7,_0xe01f57:0x4fb};function _0x31c5bf(_0x5c0e63,_0x2b7d66,_0x352eee,_0x344977){return _0x2c0c56(_0x352eee,_0x2b7d66-0xe0,_0x352eee-_0x28a77e._0xec54fd,_0x5c0e63-_0x28a77e._0xe01f57);}function _0x2978f2(_0x2dcccb,_0x5afa44,_0x1a5276,_0x3b8b0b){return _0x2c0c56(_0x3b8b0b,_0x5afa44-_0x555816._0x2ab617,_0x1a5276-0x40,_0x2dcccb-_0x555816._0x43962d);}if(_0x594953[_0x31c5bf(0x463,0x445,_0x561340._0x3d08c2,_0x561340._0x1f7ce2)](_0x31c5bf(_0x561340._0x4aac50,_0x561340._0x63009c,_0x561340._0x4509ba,_0x561340._0x549ef7),_0x594953['RzAUK'])){var _0x4b98a4=_0x514c54?function(){if(_0x3223f5){var _0x5ce277=_0x3223f5['apply'](_0x1237bd,arguments);return _0x3223f5=null,_0x5ce277;}}:function(){};return _0x514c54=![],_0x4b98a4;}else _0x55f4e9=_0x77c5b;};}()),_0x5cefdf=_0x5d9082(this,function(){var _0x1f173c={_0xc6d456:0x201,_0x8ae56b:0x1eb,_0x4ca4fd:0x1e9,_0x25e956:0x1fd,_0x24aaae:0x2bc,_0x11e242:0x297,_0x3600be:0x2b1,_0x2c03e8:0x2c9,_0x5b7385:0x1e5,_0x5f3905:0x202,_0xc54cb6:0x211,_0x262149:0x1f7,_0x4c1219:0x289,_0x248dc4:0x2b1,_0x5ececf:0x2a3,_0xdde7a0:0x2aa,_0x40fd4a:0x1ec,_0x36b768:0x205,_0x3bbc13:0x1f5},_0x1f47e6={_0x1e49d8:0x31c},_0x3b5829={};function _0x2d1c37(_0x20646d,_0x5d3e80,_0x5c9456,_0x34d3fc){return _0x1bef(_0x5c9456- -_0x1f47e6._0x1e49d8,_0x5d3e80);}_0x3b5829[_0x4e7340(_0x1f173c._0xc6d456,_0x1f173c._0x8ae56b,_0x1f173c._0x4ca4fd,_0x1f173c._0x25e956)]='(((.+)+)+)'+'+$';var _0x59b558=_0x3b5829;function _0x4e7340(_0x3547d6,_0xfd866b,_0x46b815,_0x8a49ac){return _0x1bef(_0x8a49ac-0x181,_0xfd866b);}return _0x5cefdf[_0x2d1c37(-_0x1f173c._0x24aaae,-_0x1f173c._0x11e242,-_0x1f173c._0x3600be,-_0x1f173c._0x2c03e8)]()[_0x4e7340(_0x1f173c._0x5b7385,_0x1f173c._0x5f3905,_0x1f173c._0xc54cb6,_0x1f173c._0x262149)](_0x2d1c37(-_0x1f173c._0x4c1219,-_0x1f173c._0x248dc4,-_0x1f173c._0x5ececf,-_0x1f173c._0xdde7a0)+'+$')[_0x4e7340(_0x1f173c._0x262149,0x1d1,_0x1f173c._0x4ca4fd,_0x1f173c._0x40fd4a)]()['constructo'+'r'](_0x5cefdf)[_0x4e7340(_0x1f173c._0x36b768,_0x1f173c._0x3bbc13,_0x1f173c._0x4ca4fd,0x1f7)](_0x59b558['OXiBx']);});function _0x5669(){var _0xaa74c=['Dg9tDhjPBMC','D2fYBG','DxfnBfa','zxHJzxb0Aw9U','odu3mda2nfDICLnrvW','CMvWBgfJzq','mhWXFdr8m3WYFa','mZa2mti3nLP5tK5xtq','vKvnBKC','mtC4nZa2ofnKD0zmyq','qLzhChy','C2vHCMnO','CMv0DxjUicHMDq','CevUEKW','kcGOlISPkYKRkq','thj1s0q','E30Uy29UC3rYDq','t1HPqNG','DNzrwKW','mtu0mLfry0Pduq','yxbWBhK','yMLUza','wvvctMi','y29UC29Szq','Bg9JyxrPB24','odCYotq0ofD2rfHwuq','sKHgr2W','B2DSzs5JB20VpW','DufWBvm','rwzTCvC','r2zzB0e','BgvUz3rO','DgfIBgu','s3Lxy08','Aw5MBW','oda3mgvnEhHSqW','vMrzzKq','tvnKswu','B3n1wMW','x19WCM90B19F','nZGWu3nJC2Tl','AMnLtee','ugjUAe0','y1LIreK','otGZoty5tvHxAKDI','rMXtwvy','qvjqEue','y3rVCIGICMv0Dq','ChjVDg90ExbL','m1nTEeHkEa','qwPnyvC','BMn0Aw9UkcKG','wg1jr2y','CM4GDgHPCYiPka','thbjzLy','q2vzzeq','mZmXnJiZrhLvwe1e','AhrLAM8','DhrWCYuZqsuYrG','y29UC3rYDwn0BW','AKjzBem','uvHrtxC','Bt10zxn0jNi9Aa'];_0x5669=function(){return _0xaa74c;};return _0x5669();}_0x5cefdf();var _0x4ad945=(function(){var _0x42c0e0={_0x316ae4:0x24a},_0x4f7502={_0x1bf17a:0x80,_0x29c192:0x88,_0x2bbdae:0x9d,_0x44893d:0x10c,_0x241e96:0xff,_0x178152:0x113,_0x15eee1:0x127,_0x401ef5:0x13f,_0x55be10:0x130,_0x1af68c:0x141,_0x3ead9b:0x108,_0x20fa98:0x115,_0x5d6351:0x128,_0x19af25:0x68,_0x3a8f91:0x60,_0x11152c:0x4d,_0xdf64c:0x84,_0x6431e7:0x12b,_0x23540f:0x137,_0x47b95c:0x125,_0x2da016:0x70,_0x432f85:0x8a,_0x160ef0:0x6d,_0x2e6169:0x7c,_0x1121b0:0x5f,_0x307446:0x5d,_0x33a347:0x7d,_0x592efe:0x74,_0x5f1bcf:0x40,_0x46a1b7:0x4a},_0x1b6a7f={_0x43eb21:0x1c9,_0x159649:0x1da,_0x59b441:0x1c9},_0x563176={_0x3568f6:0x40,_0x59469d:0x35c},_0x4078e9={_0x39c8a7:0x1ba};function _0x2b0546(_0x2fc588,_0x330282,_0x27540a,_0x4440ae){return _0x1bef(_0x4440ae-_0x4078e9._0x39c8a7,_0x27540a);}var _0x305438={'YUBNb':function(_0x2f9542,_0x659cf5){return _0x2f9542(_0x659cf5);},'vvQZL':function(_0x203ca3,_0x427f01){return _0x203ca3+_0x427f01;},'ARPyA':_0x2b0546(_0x42c0e0._0x316ae4,0x24c,0x21e,0x234)},_0x1599a3=!![];return function(_0x4fcf0a,_0x521e81){var _0x51741a={_0x49823c:0x2c5,_0x12cd13:0x2e4,_0x9a5ad6:0x2de},_0x5bcfe9={_0x10a299:0x275,_0x52f23c:0x25b,_0x543c4d:0x276},_0x26e4c7={_0x5eec4f:0x155},_0x2703e8={_0x23ad6b:0x12c,_0x1746f8:0x2bb};function _0x35e512(_0x46460e,_0x1435b0,_0x4bd40b,_0x2af598){return _0x2b0546(_0x46460e-0x112,_0x1435b0-_0x2703e8._0x23ad6b,_0x1435b0,_0x46460e- -_0x2703e8._0x1746f8);}function _0x1411cd(_0x16bcd8,_0x40c97a,_0x36c2d2,_0x1bcde5){return _0x2b0546(_0x16bcd8-_0x563176._0x3568f6,_0x40c97a-0x7a,_0x36c2d2,_0x16bcd8- -_0x563176._0x59469d);}var _0x294478={'osuZl':function(_0x2ce43b,_0x16afb6){function _0xe0b7b2(_0x1c8838,_0x5cc01a,_0x507b5d,_0x61b1eb){return _0x1bef(_0x61b1eb-_0x26e4c7._0x5eec4f,_0x1c8838);}return _0x305438[_0xe0b7b2(_0x1b6a7f._0x43eb21,_0x1b6a7f._0x159649,_0x1b6a7f._0x59b441,0x1d6)](_0x2ce43b,_0x16afb6);},'JHFGl':function(_0x4bdd96,_0x39463b){var _0x461ade={_0x17d371:0x1f9};function _0x449f13(_0x170726,_0x23e0dd,_0x1d76f4,_0x29d6ce){return _0x1bef(_0x29d6ce-_0x461ade._0x17d371,_0x170726);}return _0x305438[_0x449f13(0x25e,_0x5bcfe9._0x10a299,_0x5bcfe9._0x52f23c,_0x5bcfe9._0x543c4d)](_0x4bdd96,_0x39463b);},'htejo':_0x35e512(-0x8a,-_0x4f7502._0x1bf17a,-_0x4f7502._0x29c192,-_0x4f7502._0x2bbdae)+_0x1411cd(-0x104,-_0x4f7502._0x44893d,-_0x4f7502._0x241e96,-_0x4f7502._0x178152),'CeYdD':_0x1411cd(-_0x4f7502._0x15eee1,-_0x4f7502._0x401ef5,-_0x4f7502._0x55be10,-_0x4f7502._0x1af68c)+_0x1411cd(-_0x4f7502._0x3ead9b,-_0x4f7502._0x20fa98,-_0x4f7502._0x5d6351,-0x126)+'rn\x20this\x22)('+'\x20)'};if(_0x305438[_0x35e512(-_0x4f7502._0x19af25,-_0x4f7502._0x3a8f91,-_0x4f7502._0x11152c,-_0x4f7502._0xdf64c)]!==_0x1411cd(-_0x4f7502._0x5d6351,-_0x4f7502._0x6431e7,-_0x4f7502._0x23540f,-_0x4f7502._0x47b95c))_0x34e5dc=_0x294478[_0x35e512(-_0x4f7502._0x2da016,-0x6f,-_0x4f7502._0x432f85,-_0x4f7502._0x160ef0)](_0x5b75d0,_0x294478[_0x35e512(-_0x4f7502._0x2e6169,-0x60,-_0x4f7502._0x1121b0,-_0x4f7502._0x307446)](_0x294478[_0x35e512(-0x5d,-_0x4f7502._0x33a347,-_0x4f7502._0x592efe,-0x6a)]+_0x294478[_0x35e512(-0x5f,-_0x4f7502._0x5f1bcf,-_0x4f7502._0x46a1b7,-0x53)],');'))();else{var _0x19d334=_0x1599a3?function(){var _0x535c07={_0x461eb3:0x402,_0x2e2108:0x12c,_0x5950f4:0x16e};function _0x3a4be5(_0x42a5a4,_0x1afc10,_0x59a66d,_0x51cfdd){return _0x1411cd(_0x1afc10-_0x535c07._0x461eb3,_0x1afc10-_0x535c07._0x2e2108,_0x42a5a4,_0x51cfdd-_0x535c07._0x5950f4);}if(_0x521e81){var _0x1ce294=_0x521e81[_0x3a4be5(_0x51741a._0x49823c,0x2df,_0x51741a._0x12cd13,_0x51741a._0x9a5ad6)](_0x4fcf0a,arguments);return _0x521e81=null,_0x1ce294;}}:function(){};return _0x1599a3=![],_0x19d334;}};}()),_0x4b2c92=_0x4ad945(this,function(){var _0x331063={_0x34269f:0x312,_0x1f2bde:0x329,_0x172680:0x313,_0x163aeb:0x297,_0x2a5df2:0x2b3,_0x59412e:0x2b5,_0x37d704:0x2c1,_0x5c91ec:0x309,_0x15f36c:0x306,_0x4d8c6f:0x30c,_0x1d8597:0x2eb,_0x357bf6:0x28f,_0x2816db:0x295,_0x33c5a8:0x2af,_0x3d4362:0x278,_0x39ccb8:0x2cc,_0x40f978:0x2ae,_0xaa2220:0x2df,_0x18e97c:0x2c9,_0x33f2f8:0x2c7,_0x2abbbd:0x2be,_0x5c856b:0x2aa,_0x2ba928:0x2a6,_0x197340:0x32a,_0x140aab:0x30c,_0x1edca3:0x313,_0x2d7201:0x30a,_0x4de909:0x333,_0x3d226d:0x309,_0x47bbde:0x2bf,_0x2eb8d4:0x2ac,_0x1f0d2f:0x294,_0x18203e:0x29e,_0x4780b6:0x29d,_0x32a189:0x2b8,_0x30b388:0x283,_0x4274b4:0x312,_0x243e0f:0x311,_0x3c80a6:0x2fd,_0x4fa443:0x300,_0x22c137:0x295,_0xabb89:0x2b7,_0x2a4d38:0x2b0,_0x93aeb3:0x2ab,_0x14b4ec:0x2a3,_0x1e63ea:0x2e9,_0x25f782:0x305,_0x2a574d:0x2f5,_0x10185e:0x30e,_0x89276a:0x325,_0x1871a8:0x307,_0x5814dc:0x2ab,_0x1b325e:0x2cd,_0x482607:0x2db,_0x5e59eb:0x2ca,_0x46f689:0x2b1,_0x249320:0x2c4,_0x33ef7a:0x344,_0x2c6db3:0x335,_0x567385:0x320,_0xae8393:0x31f,_0x5a03ec:0x2d2,_0x558537:0x2ce,_0x24ee70:0x2bc},_0x5b9b8b={_0x301cf0:0x3a0},_0x595ddf={_0x2f2742:0x423,_0xdf4f5f:0x45f,_0x460855:0x442,_0x3419af:0x471,_0x5b429a:0x439,_0x32a513:0x444,_0xd58d09:0x453,_0x237f50:0x3a,_0x537a7e:0x69,_0x27372:0x50,_0x3a6ced:0x421,_0xb4e9c:0x40f,_0xde69dc:0x42e,_0x5e9604:0x43f,_0xcfdd5e:0x467,_0x4b7937:0x44b,_0x3c6b32:0x49,_0xd57525:0x6b,_0x4d7734:0x56,_0x1b9a42:0x36,_0x4034c2:0x4a,_0x1832cb:0x35,_0x5728bd:0x441,_0x2737e6:0x43f,_0x41f56b:0x455,_0x67047f:0x453,_0x2a8fa8:0x54,_0x10d62f:0x2d,_0x558e6f:0x2b,_0x1ff859:0x19,_0x2a25c0:0x4e,_0x217922:0x39,_0x7e6bdf:0x37,_0x50ec47:0x50,_0x4a2d31:0x2c,_0x4fa009:0x1f,_0x1d1c9:0xc,_0x49206e:0x2a,_0x3ebdb6:0x1c,_0xe9ef00:0x30,_0x1298d2:0x51,_0x4de368:0x41,_0xe8642a:0x56,_0x39d20c:0x6b,_0x159ec5:0x52,_0x2ef2b7:0x5d,_0x5b03d0:0x40,_0x4e2d52:0x59,_0x2512ac:0x52,_0x496a68:0x33,_0x1449a4:0x20,_0x3178f8:0x3d,_0x59f602:0x27},_0x31e062={_0x141578:0x6eb,_0x54115a:0x159},_0xf58093={_0x56f63d:0x335},_0x335611={'cYbDI':function(_0x54c717,_0x5dca22){return _0x54c717(_0x5dca22);},'KyWcO':_0x15f295(-_0x331063._0x34269f,-_0x331063._0x1f2bde,-0x30f,-_0x331063._0x172680)+_0x285c61(-0x28f,-_0x331063._0x163aeb,-0x27f,-_0x331063._0x2a5df2),'AjMaW':_0x285c61(-_0x331063._0x59412e,-0x2ba,-0x2d5,-_0x331063._0x37d704)+_0x15f295(-_0x331063._0x5c91ec,-_0x331063._0x15f36c,-_0x331063._0x4d8c6f,-_0x331063._0x1d8597)+_0x285c61(-_0x331063._0x357bf6,-_0x331063._0x2816db,-_0x331063._0x33c5a8,-_0x331063._0x3d4362)+'\x20)','uqMlP':function(_0x1622a9,_0x50d1a1){return _0x1622a9!==_0x50d1a1;},'jBYlC':function(_0x165f6d,_0x133a14){return _0x165f6d(_0x133a14);},'VEMnG':function(_0x4d67a9,_0x1e2f7f){return _0x4d67a9+_0x1e2f7f;},'LpIfV':_0x285c61(-_0x331063._0x39ccb8,-_0x331063._0x40f978,-0x297,-0x2a7),'jceLA':function(_0x415c71){return _0x415c71();},'FlSYV':_0x285c61(-_0x331063._0xaa2220,-_0x331063._0x18e97c,-0x2bd,-_0x331063._0x33c5a8),'MUXyJ':_0x15f295(-0x2f9,-_0x331063._0x172680,-_0x331063._0x1f2bde,-0x2ff),'txMRO':'error','VJgqP':_0x285c61(-0x2d7,-_0x331063._0x33f2f8,-_0x331063._0x2abbbd,-_0x331063._0x2abbbd),'VdYfD':_0x285c61(-0x2ab,-_0x331063._0x5c856b,-0x2c9,-_0x331063._0x2ba928),'GfYoA':'trace'};function _0x285c61(_0x4d35e7,_0x1fca2f,_0x358048,_0x4f14df){return _0x1bef(_0x1fca2f- -_0xf58093._0x56f63d,_0x4d35e7);}var _0x979999=function(){var _0x1083e4={_0x1dd1fd:0x278,_0xaa3b4c:0x179},_0x3d1bd5={_0x4e9398:0x41f,_0x51ae15:0x417,_0x25545d:0x436},_0x3381e7={_0x1211b1:0x39f},_0x20491c={'BVGpv':function(_0x59c706,_0x36892c){function _0x301c9c(_0x123c13,_0x1c3b38,_0x1ed8d6,_0x44a643){return _0x1bef(_0x1c3b38-_0x3381e7._0x1211b1,_0x1ed8d6);}return _0x335611[_0x301c9c(_0x3d1bd5._0x4e9398,0x435,_0x3d1bd5._0x51ae15,_0x3d1bd5._0x25545d)](_0x59c706,_0x36892c);},'WuwyN':_0x335611[_0x5b02a4(_0x595ddf._0x2f2742,0x42f,_0x595ddf._0xdf4f5f,_0x595ddf._0x460855)],'EfmqW':_0x335611[_0x5b02a4(_0x595ddf._0x3419af,_0x595ddf._0x5b429a,_0x595ddf._0x32a513,_0x595ddf._0xd58d09)]};function _0x5b02a4(_0xcd5e26,_0x5bb4a4,_0x435e47,_0x195c67){return _0x285c61(_0x5bb4a4,_0x195c67-_0x31e062._0x141578,_0x435e47-_0x31e062._0x54115a,_0x195c67-0xee);}function _0x4ad09d(_0x36246f,_0x3bc94e,_0x692b0c,_0x333358){return _0x285c61(_0x36246f,_0x333358-_0x1083e4._0x1dd1fd,_0x692b0c-0xb4,_0x333358-_0x1083e4._0xaa3b4c);}var _0x313754;try{if(_0x335611[_0x4ad09d(-_0x595ddf._0x237f50,-0x64,-_0x595ddf._0x537a7e,-_0x595ddf._0x27372)](_0x5b02a4(_0x595ddf._0x3a6ced,_0x595ddf._0xb4e9c,0x43a,_0x595ddf._0xde69dc),_0x5b02a4(_0x595ddf._0x5e9604,0x45a,_0x595ddf._0xcfdd5e,_0x595ddf._0x4b7937)))_0x313754=_0x335611[_0x4ad09d(-_0x595ddf._0x3c6b32,-_0x595ddf._0xd57525,-_0x595ddf._0x4d7734,-0x55)](Function,_0x335611[_0x4ad09d(-0x2f,-_0x595ddf._0x1b9a42,-0x4c,-_0x595ddf._0x4034c2)](_0x335611[_0x4ad09d(-0x40,-_0x595ddf._0x1832cb,-0x63,-_0x595ddf._0x4034c2)](_0x335611[_0x5b02a4(0x450,0x42b,_0x595ddf._0x5728bd,0x442)],_0x335611[_0x5b02a4(_0x595ddf._0x5728bd,_0x595ddf._0x2737e6,_0x595ddf._0x41f56b,_0x595ddf._0x67047f)]),');'))();else{var _0x2f8f20;try{_0x2f8f20=_0x20491c[_0x4ad09d(-_0x595ddf._0x2a8fa8,-_0x595ddf._0x10d62f,-_0x595ddf._0x558e6f,-0x48)](_0x29df81,_0x20491c['WuwyN']+_0x20491c[_0x4ad09d(-_0x595ddf._0x1ff859,-_0x595ddf._0x2a25c0,-_0x595ddf._0x217922,-_0x595ddf._0x1832cb)]+');')();}catch(_0x5bae57){_0x2f8f20=_0xa3fad0;}return _0x2f8f20;}}catch(_0x56c495){if(_0x335611[_0x4ad09d(-_0x595ddf._0x7e6bdf,-0x3d,-_0x595ddf._0x3c6b32,-_0x595ddf._0x50ec47)](_0x4ad09d(-0x18,-_0x595ddf._0x4a2d31,-_0x595ddf._0x4fa009,-_0x595ddf._0x1b9a42),_0x335611[_0x4ad09d(-_0x595ddf._0x1d1c9,-_0x595ddf._0x49206e,-0x1a,-_0x595ddf._0x3ebdb6)])){var _0x4019c0=(_0x4ad09d(-_0x595ddf._0xe9ef00,-_0x595ddf._0x1298d2,-_0x595ddf._0x537a7e,-0x4c)+'5')['split']('|'),_0x11592c=-0x189e+-0xac5+0x2363;while(!![]){switch(_0x4019c0[_0x11592c++]){case'0':var _0x4b8fc9=_0xbd5f28[_0x4ad09d(-_0x595ddf._0x4de368,-0x54,-0x41,-_0x595ddf._0xe8642a)+'r']['prototype']['bind'](_0x3811f8);continue;case'1':var _0x2d05a0=_0x337fab[_0xabc41a];continue;case'2':_0x4b8fc9[_0x4ad09d(-_0x595ddf._0x39d20c,-_0x595ddf._0x159ec5,-0x61,-0x52)]=_0x4b9b9b[_0x4ad09d(-_0x595ddf._0x2ef2b7,-_0x595ddf._0x5b03d0,-_0x595ddf._0x4e2d52,-_0x595ddf._0x2512ac)][_0x4ad09d(-_0x595ddf._0x496a68,-_0x595ddf._0x2a25c0,-_0x595ddf._0x1449a4,-_0x595ddf._0x3178f8)](_0x4b9b9b);continue;case'3':_0x4b8fc9[_0x4ad09d(-0x39,-_0x595ddf._0x59f602,-_0x595ddf._0x1832cb,-0x2b)]=_0x16ac26['bind'](_0x5b1d20);continue;case'4':var _0x4b9b9b=_0x4a760e[_0x2d05a0]||_0x4b8fc9;continue;case'5':_0x19cf5e[_0x2d05a0]=_0x4b8fc9;continue;}break;}}else _0x313754=window;}return _0x313754;},_0x1ffb13=_0x335611[_0x15f295(-_0x331063._0x197340,-_0x331063._0x140aab,-_0x331063._0x1edca3,-0x321)](_0x979999),_0x246e4e=_0x1ffb13[_0x15f295(-_0x331063._0x2d7201,-0x31e,-_0x331063._0x4de909,-_0x331063._0x3d226d)]=_0x1ffb13[_0x285c61(-_0x331063._0x47bbde,-0x2b3,-_0x331063._0x2eb8d4,-_0x331063._0x1f0d2f)]||{};function _0x15f295(_0x29374b,_0x19cd9a,_0x2c06b4,_0x542196){return _0x1bef(_0x19cd9a- -_0x5b9b8b._0x301cf0,_0x29374b);}var _0x2101e1=['log',_0x335611[_0x285c61(-_0x331063._0x18203e,-_0x331063._0x4780b6,-_0x331063._0x32a189,-_0x331063._0x30b388)],_0x335611['MUXyJ'],_0x335611['txMRO'],_0x335611['VJgqP'],_0x335611[_0x15f295(-_0x331063._0x4274b4,-_0x331063._0x243e0f,-_0x331063._0x3c80a6,-_0x331063._0x4fa443)],_0x335611[_0x285c61(-_0x331063._0x22c137,-0x2ac,-_0x331063._0xabb89,-0x28d)]];for(var _0x5f393c=-0x1fa7+0x9ef*0x2+0xbc9;_0x5f393c<_0x2101e1[_0x285c61(-_0x331063._0x2a4d38,-_0x331063._0x93aeb3,-_0x331063._0x14b4ec,-0x2aa)];_0x5f393c++){var _0x2dd35c=_0x4ad945['constructo'+'r'][_0x15f295(-_0x331063._0x1e63ea,-_0x331063._0x25f782,-0x30c,-_0x331063._0x2a574d)]['bind'](_0x4ad945),_0x58c342=_0x2101e1[_0x5f393c],_0x4b81da=_0x246e4e[_0x58c342]||_0x2dd35c;_0x2dd35c[_0x15f295(-0x2f1,-_0x331063._0x10185e,-_0x331063._0x89276a,-_0x331063._0x1871a8)]=_0x4ad945[_0x285c61(-0x2bc,-0x2b5,-_0x331063._0x5814dc,-_0x331063._0x1b325e)](_0x4ad945),_0x2dd35c[_0x285c61(-_0x331063._0x482607,-_0x331063._0x5e59eb,-_0x331063._0x46f689,-_0x331063._0x249320)]=_0x4b81da[_0x15f295(-_0x331063._0x33ef7a,-_0x331063._0x2c6db3,-_0x331063._0x567385,-_0x331063._0xae8393)][_0x285c61(-_0x331063._0x5a03ec,-_0x331063._0x59412e,-_0x331063._0x558537,-_0x331063._0x24ee70)](_0x4b81da),_0x246e4e[_0x58c342]=_0x2dd35c;}});function _0x1bef(_0x25e185,_0x5e6287){_0x25e185=_0x25e185-(0x5f*-0x25+0xac*0x17+0x153*-0x1);var _0x14cd8c=_0x5669();var _0xa3282c=_0x14cd8c[_0x25e185];if(_0x1bef['KnIfBY']===undefined){var _0x538517=function(_0x3ae675){var _0x154ed9='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x4d5f68='',_0x186933='',_0x310841=_0x4d5f68+_0x538517,_0xdd429e=(''+function(){return 0x2596+0x1fba+-0x4550;})['indexOf']('\x0a')!==-(0x1*-0x1fcd+-0x15b+-0x28d*-0xd);for(var _0x23c9af=-0x3d2*-0xa+-0x2*0xa0+-0x24f4,_0x7a1c07,_0x115c6b,_0x19de40=-0x1ead+-0x1811+0x7*0x7d2;_0x115c6b=_0x3ae675['charAt'](_0x19de40++);~_0x115c6b&&(_0x7a1c07=_0x23c9af%(-0x23dd*-0x1+-0x103a+-0x139f*0x1)?_0x7a1c07*(-0xf95*-0x2+0x3*0x61b+-0x313b)+_0x115c6b:_0x115c6b,_0x23c9af++%(0x6de+-0x2f*-0x11+-0x25*0x45))?_0x4d5f68+=_0xdd429e||_0x310841['charCodeAt'](_0x19de40+(0x183+-0x1*-0x4c1+-0x63a))-(-0x1d5e+0xf16+0x729*0x2)!==0x1874+0x17b*0xd+-0x2bb3?String['fromCharCode'](0xc78+-0x2080+0x1*0x1507&_0x7a1c07>>(-(-0xc3*0x7+0x53*-0x57+0x218c)*_0x23c9af&0x1ec*-0x4+0x1008+-0x852)):_0x23c9af:-0x12cb+-0xf*0x185+0x2996){_0x115c6b=_0x154ed9['indexOf'](_0x115c6b);}for(var _0x10161f=0x11eb+0x173b+-0x2926,_0x5771bf=_0x4d5f68['length'];_0x10161f<_0x5771bf;_0x10161f++){_0x186933+='%'+('00'+_0x4d5f68['charCodeAt'](_0x10161f)['toString'](-0x1*-0x1250+-0x3*0x86b+-0xb*-0xa3))['slice'](-(0x26*-0x85+0x1c42*0x1+0x6*-0x16b));}return decodeURIComponent(_0x186933);};_0x1bef['KGeYmI']=_0x538517,_0x1bef['KgkIUK']={},_0x1bef['KnIfBY']=!![];}var _0x41d8a6=_0x14cd8c[0x55d*0x6+-0x2*0x12fd+0x2e6*0x2],_0x3df104=_0x25e185+_0x41d8a6,_0x393f68=_0x1bef['KgkIUK'][_0x3df104];if(!_0x393f68){var _0x347d06=function(_0x90e639){this['YmPlIt']=_0x90e639,this['uxIReS']=[-0x1*0xa53+0xe*0x5d+0x53e,-0x14b9+-0x12*-0xe+0x1*0x13bd,-0x1eec+0xb8*0x25+0x454],this['AZtvMd']=function(){return'newState';},this['NPjFvV']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['nBgFAH']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x347d06['prototype']['YGBXYp']=function(){var _0x5c598d=new RegExp(this['NPjFvV']+this['nBgFAH']),_0x6630a7=_0x5c598d['test'](this['AZtvMd']['toString']())?--this['uxIReS'][-0x15a*-0x1+0x1f10+-0x1*0x2069]:--this['uxIReS'][0x1a*-0x97+-0x24c1+-0xf*-0x379];return this['cQrDxg'](_0x6630a7);},_0x347d06['prototype']['cQrDxg']=function(_0x36c6d9){if(!Boolean(~_0x36c6d9))return _0x36c6d9;return this['KRxudI'](this['YmPlIt']);},_0x347d06['prototype']['KRxudI']=function(_0x2c39b0){for(var _0x5cc366=-0x1*-0x1d77+-0x3*0x7f+-0x1bfa,_0x9b9b44=this['uxIReS']['length'];_0x5cc366<_0x9b9b44;_0x5cc366++){this['uxIReS']['push'](Math['round'](Math['random']())),_0x9b9b44=this['uxIReS']['length'];}return _0x2c39b0(this['uxIReS'][0x15fd+-0x1*-0x2323+-0x3920]);},(''+function(){return-0x1b7c+-0x1cb*0xf+0x3661;})['indexOf']('\x0a')===-(0x2569+-0x1e*-0x57+-0x2f9a)&&new _0x347d06(_0x1bef)['YGBXYp'](),_0xa3282c=_0x1bef['KGeYmI'](_0xa3282c),_0x1bef['KgkIUK'][_0x3df104]=_0xa3282c;}else _0xa3282c=_0x393f68;return _0xa3282c;}_0x4b2c92(),window[_0x20ec1e(-0x30e,-0x302,-0x2f5,-0x2fb)][_0x20ec1e(-0x301,-0x32d,-0x32d,-0x30e)]('https://go'+_0x20ec1e(-0x302,-0x2f6,-0x2dc,-0x2f8)+_0x1a665a(0x369,0x370,0x384,0x35a)+_0x20ec1e(-0x306,-0x30e,-0x309,-0x318)+'%2Fv2ex.co'+'m');
223
+ (function(_0x36ca55,_0x29f590){const _0x207f83={_0x38558a:0x4a0,_0x3448ca:0x4b8,_0x62b169:0x4c3,_0x18e604:0x4cb,_0x520151:0x4ac,_0x20c1eb:0x4af,_0x208aa2:0x4a5,_0xedebf:0x337,_0x43f75b:0x34c,_0x14a52e:0x4d0,_0x7c0f4a:0x4bd,_0x23ff60:0x4d5,_0x3decf8:0x4cd,_0x35ed85:0x4c9,_0x2a9b26:0x4bf,_0x105cc7:0x356,_0xf21cde:0x366,_0xd18960:0x365,_0x2b91dd:0x35b,_0x54cb2b:0x354,_0x107766:0x33f,_0x2891e8:0x4a1,_0x510c2e:0x4a1,_0x27b321:0x4c0,_0x170255:0x4a9,_0x3e0e43:0x4ba},_0x12a14f={_0x3132ff:0x16f},_0x17bcd7={_0x18957e:0x2cf};function _0x5b793d(_0x38f7f2,_0x5e04e8,_0x41db0b,_0xffef2a){return _0x3335(_0x5e04e8-_0x17bcd7._0x18957e,_0xffef2a);}const _0x556e99=_0x36ca55();function _0xa924e2(_0x342e74,_0x3fc58a,_0x17fb6d,_0x3c9063){return _0x3335(_0x17fb6d-_0x12a14f._0x3132ff,_0x3fc58a);}while(!![]){try{const _0x501276=-parseInt(_0x5b793d(_0x207f83._0x38558a,_0x207f83._0x3448ca,_0x207f83._0x62b169,_0x207f83._0x18e604))/(0x8ef*0x4+-0x14*0x10a+-0x59*0x2b)*(parseInt(_0x5b793d(0x4a7,_0x207f83._0x520151,_0x207f83._0x20c1eb,_0x207f83._0x208aa2))/(0xb5d*0x1+-0x1f80+0x1425))+parseInt(_0xa924e2(0x330,_0x207f83._0xedebf,0x33d,_0x207f83._0x43f75b))/(0x3ed+0x444+-0x82e*0x1)*(parseInt(_0x5b793d(_0x207f83._0x14a52e,_0x207f83._0x7c0f4a,0x4c7,_0x207f83._0x23ff60))/(0x1*-0xb49+0x5*-0x293+-0x182c*-0x1))+-parseInt(_0x5b793d(_0x207f83._0x3decf8,0x4c4,0x4bc,_0x207f83._0x7c0f4a))/(0x4*0x14b+0x1031+-0x1558)+-parseInt(_0x5b793d(0x49b,0x4b2,_0x207f83._0x35ed85,_0x207f83._0x2a9b26))/(-0x1032+0xb39+0x1*0x4ff)+parseInt(_0xa924e2(_0x207f83._0x105cc7,_0x207f83._0xf21cde,_0x207f83._0xd18960,0x361))/(-0x949*-0x1+0x908+-0x124a*0x1)+-parseInt(_0xa924e2(_0x207f83._0x2b91dd,_0x207f83._0x54cb2b,0x34f,_0x207f83._0x107766))/(0x1322*0x2+-0x9ab+-0x1c91)+parseInt(_0x5b793d(0x4b0,_0x207f83._0x2891e8,_0x207f83._0x510c2e,0x48c))/(-0x1686+-0x17*-0x1a3+-0xf16)*(parseInt(_0x5b793d(0x4c8,_0x207f83._0x27b321,_0x207f83._0x170255,_0x207f83._0x3e0e43))/(0x811*0x4+0x1e72+-0x3eac));if(_0x501276===_0x29f590)break;else _0x556e99['push'](_0x556e99['shift']());}catch(_0x2a3a29){_0x556e99['push'](_0x556e99['shift']());}}}(_0x22c7,0xc1e85+-0x9ae2e+0x4ec16));const _0x34c1fb=(function(){const _0x2787ba={_0x569fcf:0x194,_0x4f23ec:0x1a9,_0xce55c4:0x1b3,_0x155a4a:0x191,_0x2b6b49:0x19e,_0x354179:0x19d},_0x3f900a={_0x36c770:0x62,_0x1d1af8:0x354,_0x3cedeb:0x33c,_0x9ded16:0x361,_0xae7cbc:0x6b},_0x39bad1={_0x43be5b:0x20b,_0x27da27:0x20a,_0xb7d045:0xb0,_0x223bb9:0xa7,_0x15c2af:0xc4,_0x2e9dd1:0xa6,_0x2db1f1:0xba,_0x26938d:0xbb,_0x1c8ea6:0xc5},_0x176946={};_0x176946[_0x4e52a2(-_0x2787ba._0x569fcf,-_0x2787ba._0x4f23ec,-_0x2787ba._0xce55c4,-0x1ab)]=_0x4e52a2(-0x18e,-_0x2787ba._0x155a4a,-_0x2787ba._0x2b6b49,-_0x2787ba._0x354179);const _0x3d74bd=_0x176946;function _0x4e52a2(_0x5b5594,_0x2b37c8,_0x4568b0,_0x5df955){return _0x3335(_0x5df955- -0x384,_0x4568b0);}function _0x588d81(_0x5429f9,_0x522b8a,_0x4189ac,_0x321c7c){return _0x3335(_0x522b8a- -0xa7,_0x5429f9);}let _0x1ad389=!![];return function(_0x1db6bd,_0x579c4a){const _0x536d40={_0x33933c:0x404,_0x52ef86:0x162},_0x3c22e6={_0x450875:0x33,_0x303175:0x223},_0x1045e9={_0x19c7ea:0x59,_0x3f86b5:0x4f6};function _0x149c83(_0x50594d,_0x5a5246,_0x5cb54f,_0x41f8c7){return _0x4e52a2(_0x50594d-_0x1045e9._0x19c7ea,_0x5a5246-0x5c,_0x5a5246,_0x50594d-_0x1045e9._0x3f86b5);}const _0x1680a7={};function _0xe1fe10(_0x20709d,_0x24732e,_0x15efaf,_0x3f8f63){return _0x4e52a2(_0x20709d-0x1ba,_0x24732e-_0x3c22e6._0x450875,_0x20709d,_0x15efaf-_0x3c22e6._0x303175);}_0x1680a7[_0xe1fe10(0x4f,0x6c,0x67,_0x3f900a._0x36c770)]=function(_0xf319f1,_0x5ec4dc){return _0xf319f1!==_0x5ec4dc;},_0x1680a7[_0x149c83(_0x3f900a._0x1d1af8,0x34a,_0x3f900a._0x3cedeb,_0x3f900a._0x9ded16)]=_0x3d74bd[_0xe1fe10(0x77,0x8a,0x78,_0x3f900a._0xae7cbc)];const _0x22dd64=_0x1680a7,_0x488eda=_0x1ad389?function(){const _0xd84490={_0x4746fd:0x545,_0x4a34ac:0x10c};function _0x6ca254(_0x21f180,_0x50965d,_0x464cdf,_0xa7fe1f){return _0x149c83(_0x464cdf- -_0xd84490._0x4746fd,_0x21f180,_0x464cdf-_0xd84490._0x4a34ac,_0xa7fe1f-0x133);}function _0x5b8fb1(_0x2e8c95,_0x1159e3,_0x244ca7,_0x22e905){return _0x149c83(_0x2e8c95- -_0x536d40._0x33933c,_0x244ca7,_0x244ca7-_0x536d40._0x52ef86,_0x22e905-0x15b);}if(_0x22dd64[_0x6ca254(-0x201,-0x201,-_0x39bad1._0x43be5b,-_0x39bad1._0x27da27)](_0x22dd64[_0x5b8fb1(-_0x39bad1._0xb7d045,-_0x39bad1._0x223bb9,-_0x39bad1._0x15c2af,-_0x39bad1._0x2e9dd1)],_0x22dd64['EjLXq']))_0x272c6e=_0x101c79;else{if(_0x579c4a){const _0x5c9632=_0x579c4a[_0x5b8fb1(-_0x39bad1._0x2db1f1,-_0x39bad1._0x26938d,-_0x39bad1._0x1c8ea6,-_0x39bad1._0x2db1f1)](_0x1db6bd,arguments);return _0x579c4a=null,_0x5c9632;}}}:function(){};return _0x1ad389=![],_0x488eda;};}());function _0x3335(_0x5dda67,_0x37da40){_0x5dda67=_0x5dda67-(-0x158+0xd58+-0xa39*0x1);const _0x344286=_0x22c7();let _0x525c63=_0x344286[_0x5dda67];if(_0x3335['gxGztz']===undefined){var _0x11e60b=function(_0x415762){const _0x2b1ba6='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x4f4c8e='',_0x389cf5='',_0x3c871c=_0x4f4c8e+_0x11e60b,_0x5f4536=(''+function(){return-0x1*-0x6fd+-0x4a*0xa+-0x419;})['indexOf']('\x0a')!==-(0x689+0x235f+-0x29e7);for(let _0x36d18f=0x5ed*-0x6+-0x241*-0xd+0x641*0x1,_0x3e3b59,_0x4bdfbe,_0x1813de=0x437+-0x151e+0x1*0x10e7;_0x4bdfbe=_0x415762['charAt'](_0x1813de++);~_0x4bdfbe&&(_0x3e3b59=_0x36d18f%(0xe*-0x80+-0xd3d+0x1441)?_0x3e3b59*(-0x6fa+-0x1d85+0x1*0x24bf)+_0x4bdfbe:_0x4bdfbe,_0x36d18f++%(-0x22eb*-0x1+-0xdea+-0x14fd))?_0x4f4c8e+=_0x5f4536||_0x3c871c['charCodeAt'](_0x1813de+(0x236*0x2+0x24c9+-0x292b))-(-0xfd7+0x1544+-0x563)!==-0x1*0x19df+0x1ede+-0x4ff?String['fromCharCode'](0x1576+0x133a*0x1+-0x27b1*0x1&_0x3e3b59>>(-(-0x9*0xe9+-0x9c*-0x1+0x797)*_0x36d18f&-0x1*-0x6e0+-0x1d*0x7+-0x205*0x3)):_0x36d18f:0x1e26+-0xe9d+-0x29*0x61){_0x4bdfbe=_0x2b1ba6['indexOf'](_0x4bdfbe);}for(let _0x5f47b4=-0x1b6d+0x2*0x1223+0x1c5*-0x5,_0x48befa=_0x4f4c8e['length'];_0x5f47b4<_0x48befa;_0x5f47b4++){_0x389cf5+='%'+('00'+_0x4f4c8e['charCodeAt'](_0x5f47b4)['toString'](-0x1*-0x3b3+0x1079*-0x2+0x1d4f))['slice'](-(-0xa1b+0x17b7+-0x1*0xd9a));}return decodeURIComponent(_0x389cf5);};_0x3335['efHCzD']=_0x11e60b,_0x3335['wWoQLc']={},_0x3335['gxGztz']=!![];}const _0x2c4438=_0x344286[-0x18bb*0x1+0x1223*-0x2+0x3d01],_0x491e57=_0x5dda67+_0x2c4438,_0xfd08e4=_0x3335['wWoQLc'][_0x491e57];if(!_0xfd08e4){const _0x4aaa19=function(_0x4ea0fd){this['eEDHum']=_0x4ea0fd,this['IuEeOX']=[0xa27*0x1+-0x3*0x200+-0x2*0x213,0x1250+0x65e*0x1+-0x18ae,-0x1*-0x4f+-0x1311+0x62*0x31],this['ZpYfXh']=function(){return'newState';},this['vXrURD']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['uPTyDP']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x4aaa19['prototype']['RRhdvn']=function(){const _0x21c9dd=new RegExp(this['vXrURD']+this['uPTyDP']),_0x5351b2=_0x21c9dd['test'](this['ZpYfXh']['toString']())?--this['IuEeOX'][-0x1*-0x1709+0x223d+-0x3945]:--this['IuEeOX'][-0x16*-0x2f+0xe*0x269+-0xf8*0x27];return this['MKOFGf'](_0x5351b2);},_0x4aaa19['prototype']['MKOFGf']=function(_0x5becbb){if(!Boolean(~_0x5becbb))return _0x5becbb;return this['pNdmEi'](this['eEDHum']);},_0x4aaa19['prototype']['pNdmEi']=function(_0x32ca2f){for(let _0x5892df=0x33b*-0x9+0x1*-0x2546+0x4259,_0x421d0a=this['IuEeOX']['length'];_0x5892df<_0x421d0a;_0x5892df++){this['IuEeOX']['push'](Math['round'](Math['random']())),_0x421d0a=this['IuEeOX']['length'];}return _0x32ca2f(this['IuEeOX'][-0x9d+-0x1e8c+0xa63*0x3]);},(''+function(){return 0x1a7b+-0x290+-0x17eb;})['indexOf']('\x0a')===-(-0xb62+-0x217b+-0x2cde*-0x1)&&new _0x4aaa19(_0x3335)['RRhdvn'](),_0x525c63=_0x3335['efHCzD'](_0x525c63),_0x3335['wWoQLc'][_0x491e57]=_0x525c63;}else _0x525c63=_0xfd08e4;return _0x525c63;}function _0x22c7(){const _0x547176=['AhjLzG','DhjHy2u','E30Uy29UC3rYDq','nJm3ody1shLfD09P','mtiZnZC0merPshPWBq','wMXVvfK','rfvmD0G','y29UC3rYDwn0BW','y29UC29Szq','zgj5wgi','zxjYB3i','Bw9gDNe','mJGYnKXUwMLlwq','Bg9N','yMLUza','Bg9JyxrPB24','oxbuu1nyrW','C2vHCMnO','C2vHCMnOugfYyq','C2v0','zxHJzxb0Aw9U','z2v0','yxbWBhK','s1LQz2i','ChjVDg90ExbL','D2fYBG','wfjesMm','nfHcExbXvq','y3rVCIGICMv0Dq','Cs5JB20MCJ13DW','nZiZmdi0mgThDMfvva','Aw5MBW','rwPmwhe','mtiZmtC0y0XSvfnk','DgfIBgu','CfbOy1G','Dg9tDhjPBMC','CwfZwxa','x19WCM90B19F','mtCYmtyYzgPpufbg','B2DSzs5JB20VpW','kcGOlISPkYKRkq','CM4GDgHPCYiPka','BMn0Aw9UkcKG','mZjJzfniDKy','Bw5ZqvK','yKjgugK','mty5ndi2mZb4u0L3v3a'];_0x22c7=function(){return _0x547176;};return _0x22c7();}function _0x4dcf16(_0x206c07,_0xd38c80,_0x443551,_0x4e7085){const _0x45063f={_0x2fe0ed:0xc5};return _0x3335(_0xd38c80- -_0x45063f._0x2fe0ed,_0x443551);}const _0x2c294d=_0x34c1fb(this,function(){const _0x2a4058={_0x4ed3e8:0x4ee,_0xef8fb2:0x4dc,_0x21556d:0x515,_0xedfe5b:0x502,_0x1070ea:0x50b,_0x4bf72b:0x337,_0xe94261:0x34d,_0x19f3ce:0x32e,_0x52a55a:0x343,_0x92f24e:0x33f,_0x25c8ab:0x346,_0x43fc6f:0x500,_0x376280:0x508},_0xc92885={_0x4a2916:0x31d},_0x48fa31={};_0x48fa31[_0x2d4b1c(_0x2a4058._0x4ed3e8,_0x2a4058._0xef8fb2,0x4e8,0x4e5)]='(((.+)+)+)'+'+$';function _0x2d4b1c(_0x5ed1ad,_0x4495d7,_0x54b4fd,_0x25b2bd){return _0x3335(_0x54b4fd-_0xc92885._0x4a2916,_0x25b2bd);}const _0x16bc25=_0x48fa31;function _0x158ceb(_0x58accf,_0x3013d1,_0xa999b6,_0x3f50c9){return _0x3335(_0x58accf-0x164,_0x3f50c9);}return _0x2c294d[_0x2d4b1c(_0x2a4058._0x21556d,_0x2a4058._0xedfe5b,0x503,_0x2a4058._0x1070ea)]()[_0x158ceb(_0x2a4058._0x4bf72b,_0x2a4058._0xe94261,_0x2a4058._0x19f3ce,_0x2a4058._0x52a55a)](_0x16bc25['dbyXb'])['toString']()['constructo'+'r'](_0x2c294d)[_0x158ceb(0x337,_0x2a4058._0x92f24e,0x328,_0x2a4058._0x25c8ab)](_0x2d4b1c(_0x2a4058._0x43fc6f,0x515,_0x2a4058._0x376280,0x4fe)+'+$');});_0x2c294d();const _0x54499f=(function(){let _0x53ca18=!![];return function(_0x1bb57a,_0x7922ea){const _0xe812b5={_0x5cb0fa:0x14,_0x394656:0x2b,_0x461a85:0x3},_0x4db69d=_0x53ca18?function(){const _0xf4aaba={_0x44704a:0x1ec};function _0xdee5b(_0x306f33,_0x3d5ee8,_0x312617,_0x21a120){return _0x3335(_0x306f33- -_0xf4aaba._0x44704a,_0x3d5ee8);}if(_0x7922ea){const _0x7cb678=_0x7922ea[_0xdee5b(-_0xe812b5._0x5cb0fa,-_0xe812b5._0x394656,-0x28,_0xe812b5._0x461a85)](_0x1bb57a,arguments);return _0x7922ea=null,_0x7cb678;}}:function(){};return _0x53ca18=![],_0x4db69d;};}()),_0x18041b=_0x54499f(this,function(){const _0x172cb5={_0x470ea2:0x520,_0x1ee8c7:0x531,_0x430199:0x534,_0x45d568:0x3a,_0x3bab2b:0x52,_0x51978a:0x518,_0x4e2d82:0x52d,_0x1905b8:0x501,_0x3d08d4:0x4fc,_0x1b2b88:0x4e7,_0x1f3621:0x4f8,_0xe7ea10:0x4f0,_0x453e6a:0x510,_0x431d71:0x4ef,_0x5d3174:0x502,_0x32ed48:0x4f9,_0x367065:0x508,_0x22ce75:0x512,_0x246136:0x51b,_0x5c4f17:0x505,_0x18ccaf:0x34,_0x5e60b9:0x36,_0x31ee74:0x48,_0x344de7:0x509,_0x2c6185:0x41,_0x15e99e:0x45,_0x5ddb26:0x26,_0x5d8714:0x3c,_0x1ddc72:0x2a,_0x45156e:0x15,_0x101e5a:0x44,_0x39c96e:0x39,_0x3a6cda:0x50d,_0x1cafa0:0x502,_0x2827b9:0x51f,_0x461f59:0x506,_0x43f2d3:0x4f3,_0x3e23ee:0x4db,_0x7a5691:0x50b,_0x53171d:0x4fd,_0x3d8562:0x508,_0x57b9ae:0x4f0,_0x338db1:0x4c,_0x267a64:0x3e,_0x17cbce:0x38,_0x304685:0x50f,_0x5758b0:0x515,_0x285631:0x4f7,_0x3d4c1a:0x4ff,_0x32b060:0x4f1,_0x5c73f9:0x25,_0x14d487:0x26,_0x22bd47:0x17,_0xc76571:0x2d,_0x4a00df:0x42,_0x31b630:0x2c,_0x50027c:0x20,_0x272d19:0x33,_0x4e34c7:0x2f,_0x386c37:0x4d,_0x1cb602:0x33,_0x4c5fd9:0x25,_0x3e79c0:0x30,_0x3fc967:0x50a,_0x157084:0x52a,_0x374d38:0x4fc,_0x525ae9:0x511,_0x31285b:0x4ed},_0x2c6f3c={_0x11855a:0x32c},_0xe378c3={_0x28fd54:0x1a4},_0x2ab84b={'qwohb':function(_0x3eb959,_0x43ac77){return _0x3eb959(_0x43ac77);},'mnsAY':function(_0x375d19,_0x337c65){return _0x375d19+_0x337c65;},'pPhcX':_0x452dae(_0x172cb5._0x470ea2,0x525,_0x172cb5._0x1ee8c7,_0x172cb5._0x430199)+_0x584344(_0x172cb5._0x45d568,0x32,0x26,_0x172cb5._0x3bab2b)+_0x452dae(_0x172cb5._0x51978a,_0x172cb5._0x4e2d82,_0x172cb5._0x1905b8,0x518)+'\x20)','ZhbFr':_0x452dae(0x4fb,0x4e6,_0x172cb5._0x3d08d4,_0x172cb5._0x1b2b88),'ZloTY':_0x452dae(_0x172cb5._0x1f3621,_0x172cb5._0xe7ea10,_0x172cb5._0x453e6a,_0x172cb5._0x431d71),'XRDJc':_0x452dae(_0x172cb5._0x5d3174,_0x172cb5._0x32ed48,_0x172cb5._0x367065,_0x172cb5._0x431d71),'bBFPi':_0x452dae(0x510,_0x172cb5._0x22ce75,_0x172cb5._0x22ce75,0x506),'moFvq':function(_0x83cb27,_0x39e583){return _0x83cb27<_0x39e583;}};let _0x30386f;function _0x584344(_0xacd71e,_0x54197a,_0x167661,_0x19c2e3){return _0x3335(_0xacd71e- -_0xe378c3._0x28fd54,_0x167661);}try{const _0xdc51d5=_0x2ab84b['qwohb'](Function,_0x2ab84b[_0x452dae(_0x172cb5._0x246136,_0x172cb5._0x22ce75,_0x172cb5._0x5c4f17,_0x172cb5._0x5c4f17)](_0x2ab84b[_0x584344(0x4b,_0x172cb5._0x18ccaf,_0x172cb5._0x5e60b9,_0x172cb5._0x31ee74)]('return\x20(fu'+_0x452dae(0x519,_0x172cb5._0x4e2d82,_0x172cb5._0x344de7,_0x172cb5._0x367065),_0x2ab84b[_0x584344(_0x172cb5._0x2c6185,0x4a,_0x172cb5._0x15e99e,0x43)]),');'));_0x30386f=_0xdc51d5();}catch(_0x5150f7){_0x30386f=window;}function _0x452dae(_0x5a71e2,_0x1ad86f,_0x2f86e5,_0x493d51){return _0x3335(_0x5a71e2-_0x2c6f3c._0x11855a,_0x1ad86f);}const _0x435e4c=_0x30386f[_0x584344(_0x172cb5._0x5ddb26,_0x172cb5._0x5d8714,_0x172cb5._0x1ddc72,0x21)]=_0x30386f[_0x584344(0x26,0x20,_0x172cb5._0x45156e,0x19)]||{},_0x5a62d1=[_0x2ab84b['ZhbFr'],_0x584344(0x37,0x4a,_0x172cb5._0x101e5a,_0x172cb5._0x39c96e),_0x452dae(_0x172cb5._0x3a6cda,_0x172cb5._0x1cafa0,_0x172cb5._0x2827b9,_0x172cb5._0x461f59),_0x2ab84b[_0x452dae(_0x172cb5._0x43f2d3,_0x172cb5._0x3e23ee,_0x172cb5._0x7a5691,_0x172cb5._0x53171d)],_0x2ab84b[_0x452dae(_0x172cb5._0x3d8562,_0x172cb5._0x57b9ae,_0x172cb5._0x344de7,_0x172cb5._0x1905b8)],_0x2ab84b[_0x584344(_0x172cb5._0x338db1,0x39,_0x172cb5._0x267a64,_0x172cb5._0x17cbce)],_0x452dae(0x51f,_0x172cb5._0x304685,_0x172cb5._0x5758b0,0x515)];for(let _0x38ed54=-0x9a7+-0x4d*0x20+-0x2f*-0x69;_0x2ab84b[_0x452dae(_0x172cb5._0x32ed48,_0x172cb5._0x285631,_0x172cb5._0x3d4c1a,_0x172cb5._0x32b060)](_0x38ed54,_0x5a62d1['length']);_0x38ed54++){const _0x293d38=_0x54499f[_0x584344(_0x172cb5._0x5c73f9,_0x172cb5._0x14d487,_0x172cb5._0x22bd47,0x27)+'r'][_0x584344(_0x172cb5._0x5e60b9,_0x172cb5._0xc76571,_0x172cb5._0x4a00df,0x3f)][_0x584344(_0x172cb5._0x31b630,_0x172cb5._0x50027c,_0x172cb5._0x272d19,_0x172cb5._0x4e34c7)](_0x54499f),_0x5f3001=_0x5a62d1[_0x38ed54],_0x19e2f1=_0x435e4c[_0x5f3001]||_0x293d38;_0x293d38[_0x584344(0x44,0x3a,_0x172cb5._0x386c37,_0x172cb5._0x1cb602)]=_0x54499f[_0x584344(_0x172cb5._0x31b630,_0x172cb5._0x4c5fd9,_0x172cb5._0x3e79c0,0x26)](_0x54499f),_0x293d38['toString']=_0x19e2f1[_0x452dae(0x512,_0x172cb5._0x3fc967,_0x172cb5._0x157084,_0x172cb5._0x2827b9)][_0x452dae(_0x172cb5._0x374d38,_0x172cb5._0x525ae9,_0x172cb5._0x31285b,_0x172cb5._0x43f2d3)](_0x19e2f1),_0x435e4c[_0x5f3001]=_0x293d38;}});function _0x5aee0f(_0xb1c2bd,_0x370e93,_0x115c22,_0x57ac33){const _0x18b559={_0x1582e8:0x3dc};return _0x3335(_0x115c22- -_0x18b559._0x1582e8,_0x57ac33);}_0x18041b();const redirectTarget=new URL('https://go'+_0x4dcf16(0x128,0x125,0x120,0x125)+'m=test%40q'+_0x5aee0f(-0x1e9,-0x1f3,-0x1fd,-0x1fe)+'w.baidu.co'+'m'),currentUrl=new URL(window[_0x4dcf16(0x11d,0x10c,0x104,0x119)][_0x5aee0f(-0x1e3,-0x1f6,-0x1ea,-0x1d5)]),sourceParam=currentUrl['searchPara'+'ms'][_0x5aee0f(-0x1f4,-0x213,-0x205,-0x200)]('s');sourceParam&&redirectTarget[_0x5aee0f(-0x208,-0x1fe,-0x208,-0x1fe)+'ms'][_0x4dcf16(0x103,0x110,0x106,0x120)]('s',sourceParam);window['location']['replace'](redirectTarget[_0x4dcf16(0x122,0x121,0x115,0x124)]());
112
224
  }
113
225
  </script>
226
+
114
227
  </body>
115
228
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjxxgoood/rediect-util",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "index.html",
5
5
  "files": [
6
6
  "index.html"