60p82u21t54k 0.1.55 → 0.1.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/60p82u21t54k.es.js +326 -303
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/model/telegramLogin/telegramLoginApi.d.ts +4 -0
- package/dist/model/telegramLogin/telegramLoginApi.d.ts.map +1 -0
- package/dist/model/telegramLogin/type.d.ts +5 -0
- package/dist/model/telegramLogin/type.d.ts.map +1 -0
- package/dist/plugin.d.ts +2 -1
- package/dist/plugin.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -2,7 +2,7 @@ var gn = Object.defineProperty;
|
|
|
2
2
|
var pn = (e, n, t) => n in e ? gn(e, n, { enumerable: !0, configurable: !0, writable: !0, value: t }) : e[n] = t;
|
|
3
3
|
var h = (e, n, t) => pn(e, typeof n != "symbol" ? n + "" : n, t);
|
|
4
4
|
import Ut from "axios";
|
|
5
|
-
const
|
|
5
|
+
const K = Ut.create({
|
|
6
6
|
baseURL: "",
|
|
7
7
|
timeout: 15e3,
|
|
8
8
|
// Request timeout
|
|
@@ -48,11 +48,11 @@ const ne = Ut.create({
|
|
|
48
48
|
// },
|
|
49
49
|
// },
|
|
50
50
|
});
|
|
51
|
-
|
|
51
|
+
K.interceptors.request.use(
|
|
52
52
|
(e) => e,
|
|
53
53
|
(e) => (console.error("Error request:", e.response), Promise.reject(e))
|
|
54
54
|
);
|
|
55
|
-
|
|
55
|
+
K.interceptors.response.use(
|
|
56
56
|
(e) => e,
|
|
57
57
|
(e) => {
|
|
58
58
|
const n = {
|
|
@@ -1411,7 +1411,7 @@ const F = {
|
|
|
1411
1411
|
// 0 to 999, -0 to -999
|
|
1412
1412
|
fourDigitsSigned: /^-?\d{1,4}/
|
|
1413
1413
|
// 0 to 9999, -0 to -9999
|
|
1414
|
-
},
|
|
1414
|
+
}, ee = {
|
|
1415
1415
|
basicOptionalMinutes: /^([+-])(\d{2})(\d{2})?|Z/,
|
|
1416
1416
|
basic: /^([+-])(\d{2})(\d{2})|Z/,
|
|
1417
1417
|
basicOptionalSeconds: /^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,
|
|
@@ -1431,7 +1431,7 @@ function C(e, n) {
|
|
|
1431
1431
|
rest: n.slice(t[0].length)
|
|
1432
1432
|
} : null;
|
|
1433
1433
|
}
|
|
1434
|
-
function
|
|
1434
|
+
function te(e, n) {
|
|
1435
1435
|
const t = n.match(e);
|
|
1436
1436
|
if (!t)
|
|
1437
1437
|
return null;
|
|
@@ -2628,25 +2628,25 @@ class sa extends M {
|
|
|
2628
2628
|
parse(t, r) {
|
|
2629
2629
|
switch (r) {
|
|
2630
2630
|
case "X":
|
|
2631
|
-
return
|
|
2632
|
-
|
|
2631
|
+
return te(
|
|
2632
|
+
ee.basicOptionalMinutes,
|
|
2633
2633
|
t
|
|
2634
2634
|
);
|
|
2635
2635
|
case "XX":
|
|
2636
|
-
return ee
|
|
2636
|
+
return te(ee.basic, t);
|
|
2637
2637
|
case "XXXX":
|
|
2638
|
-
return
|
|
2639
|
-
|
|
2638
|
+
return te(
|
|
2639
|
+
ee.basicOptionalSeconds,
|
|
2640
2640
|
t
|
|
2641
2641
|
);
|
|
2642
2642
|
case "XXXXX":
|
|
2643
|
-
return
|
|
2644
|
-
|
|
2643
|
+
return te(
|
|
2644
|
+
ee.extendedOptionalSeconds,
|
|
2645
2645
|
t
|
|
2646
2646
|
);
|
|
2647
2647
|
case "XXX":
|
|
2648
2648
|
default:
|
|
2649
|
-
return ee
|
|
2649
|
+
return te(ee.extended, t);
|
|
2650
2650
|
}
|
|
2651
2651
|
}
|
|
2652
2652
|
set(t, r, a) {
|
|
@@ -2665,25 +2665,25 @@ class oa extends M {
|
|
|
2665
2665
|
parse(t, r) {
|
|
2666
2666
|
switch (r) {
|
|
2667
2667
|
case "x":
|
|
2668
|
-
return
|
|
2669
|
-
|
|
2668
|
+
return te(
|
|
2669
|
+
ee.basicOptionalMinutes,
|
|
2670
2670
|
t
|
|
2671
2671
|
);
|
|
2672
2672
|
case "xx":
|
|
2673
|
-
return ee
|
|
2673
|
+
return te(ee.basic, t);
|
|
2674
2674
|
case "xxxx":
|
|
2675
|
-
return
|
|
2676
|
-
|
|
2675
|
+
return te(
|
|
2676
|
+
ee.basicOptionalSeconds,
|
|
2677
2677
|
t
|
|
2678
2678
|
);
|
|
2679
2679
|
case "xxxxx":
|
|
2680
|
-
return
|
|
2681
|
-
|
|
2680
|
+
return te(
|
|
2681
|
+
ee.extendedOptionalSeconds,
|
|
2682
2682
|
t
|
|
2683
2683
|
);
|
|
2684
2684
|
case "xxx":
|
|
2685
2685
|
default:
|
|
2686
|
-
return ee
|
|
2686
|
+
return te(ee.extended, t);
|
|
2687
2687
|
}
|
|
2688
2688
|
}
|
|
2689
2689
|
set(t, r, a) {
|
|
@@ -4954,10 +4954,10 @@ const ai = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4954
4954
|
amount: n
|
|
4955
4955
|
};
|
|
4956
4956
|
};
|
|
4957
|
-
var
|
|
4957
|
+
var ne = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(ne || {});
|
|
4958
4958
|
const bi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4959
4959
|
__proto__: null,
|
|
4960
|
-
MissionStatus:
|
|
4960
|
+
MissionStatus: ne
|
|
4961
4961
|
}, Symbol.toStringTag, { value: "Module" })), yi = (e) => {
|
|
4962
4962
|
if (e.status === 0)
|
|
4963
4963
|
return {
|
|
@@ -4971,18 +4971,18 @@ const bi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4971
4971
|
period: `${Gt(e.data.datefrom)} ~ ${Gt(e.data.dateto)}`,
|
|
4972
4972
|
gift: {
|
|
4973
4973
|
deposit: {
|
|
4974
|
-
current: n.filter((r) => r.status ==
|
|
4974
|
+
current: n.filter((r) => r.status == ne.collected).length,
|
|
4975
4975
|
total: n.length,
|
|
4976
4976
|
percentage: zt(n)
|
|
4977
4977
|
},
|
|
4978
4978
|
activeBet: {
|
|
4979
|
-
current: t.filter((r) => r.status ==
|
|
4979
|
+
current: t.filter((r) => r.status == ne.collected).length,
|
|
4980
4980
|
total: t.length,
|
|
4981
4981
|
percentage: zt(t)
|
|
4982
4982
|
},
|
|
4983
4983
|
grandPrize: {
|
|
4984
4984
|
countDownTimestamp: hi(e.data.dateto),
|
|
4985
|
-
status: e.data.final_claimable ? e.data.final_collected === "1" ?
|
|
4985
|
+
status: e.data.final_claimable ? e.data.final_collected === "1" ? ne.collected : ne.collectable : ne.inProgress,
|
|
4986
4986
|
prize: e.data.reward
|
|
4987
4987
|
}
|
|
4988
4988
|
},
|
|
@@ -4995,7 +4995,7 @@ const bi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4995
4995
|
return {
|
|
4996
4996
|
id: t.transid,
|
|
4997
4997
|
reward: t.reward,
|
|
4998
|
-
status: t.claimable !== "1" ?
|
|
4998
|
+
status: t.claimable !== "1" ? ne.inProgress : t.collected === "1" ? ne.collected : ne.collectable,
|
|
4999
4999
|
progress: {
|
|
5000
5000
|
current: r,
|
|
5001
5001
|
total: t.requirement,
|
|
@@ -5248,7 +5248,7 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5248
5248
|
name: m.name,
|
|
5249
5249
|
query: btoa(m.query)
|
|
5250
5250
|
}))
|
|
5251
|
-
}, Re = await
|
|
5251
|
+
}, Re = await K.post(
|
|
5252
5252
|
"/graph/jwt",
|
|
5253
5253
|
$a(JSON.stringify(ke))
|
|
5254
5254
|
), l = {
|
|
@@ -6126,13 +6126,34 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6126
6126
|
}, Fi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6127
6127
|
__proto__: null,
|
|
6128
6128
|
post: Ni
|
|
6129
|
-
}, Symbol.toStringTag, { value: "Module" })), Li = async (e
|
|
6129
|
+
}, Symbol.toStringTag, { value: "Module" })), Li = async (e) => {
|
|
6130
|
+
let n = {
|
|
6131
|
+
status: 200,
|
|
6132
|
+
message: ""
|
|
6133
|
+
};
|
|
6134
|
+
try {
|
|
6135
|
+
const t = await K.post("/loginVia/telegram", e);
|
|
6136
|
+
console.log("=>", t), n = {
|
|
6137
|
+
status: 200,
|
|
6138
|
+
message: ""
|
|
6139
|
+
};
|
|
6140
|
+
} catch (t) {
|
|
6141
|
+
n = {
|
|
6142
|
+
status: t.status || 500,
|
|
6143
|
+
message: t.message
|
|
6144
|
+
};
|
|
6145
|
+
}
|
|
6146
|
+
return n;
|
|
6147
|
+
}, Gi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6148
|
+
__proto__: null,
|
|
6149
|
+
call: Li
|
|
6150
|
+
}, Symbol.toStringTag, { value: "Module" })), zi = async (e, n) => {
|
|
6130
6151
|
let t = {
|
|
6131
6152
|
status: 200,
|
|
6132
6153
|
message: ""
|
|
6133
6154
|
};
|
|
6134
6155
|
try {
|
|
6135
|
-
await
|
|
6156
|
+
await K.post("/graph/auth/sesh", {
|
|
6136
6157
|
usr: e,
|
|
6137
6158
|
pwd: n
|
|
6138
6159
|
}), t = {
|
|
@@ -6146,16 +6167,16 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6146
6167
|
};
|
|
6147
6168
|
}
|
|
6148
6169
|
return t;
|
|
6149
|
-
},
|
|
6170
|
+
}, Yi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6150
6171
|
__proto__: null,
|
|
6151
|
-
call:
|
|
6152
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6172
|
+
call: zi
|
|
6173
|
+
}, Symbol.toStringTag, { value: "Module" })), Wi = async () => {
|
|
6153
6174
|
let e = {
|
|
6154
6175
|
status: 200,
|
|
6155
6176
|
message: ""
|
|
6156
6177
|
};
|
|
6157
6178
|
try {
|
|
6158
|
-
await
|
|
6179
|
+
await K.post("/graph/auth/sesh/logout");
|
|
6159
6180
|
} catch (n) {
|
|
6160
6181
|
e = {
|
|
6161
6182
|
status: n.status || 500,
|
|
@@ -6163,9 +6184,9 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6163
6184
|
};
|
|
6164
6185
|
}
|
|
6165
6186
|
return e;
|
|
6166
|
-
},
|
|
6187
|
+
}, qi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6167
6188
|
__proto__: null,
|
|
6168
|
-
call:
|
|
6189
|
+
call: Wi
|
|
6169
6190
|
}, Symbol.toStringTag, { value: "Module" })), Yt = {
|
|
6170
6191
|
data: {
|
|
6171
6192
|
status: !1,
|
|
@@ -6176,14 +6197,14 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6176
6197
|
accountId: 0
|
|
6177
6198
|
}
|
|
6178
6199
|
}
|
|
6179
|
-
},
|
|
6200
|
+
}, Ei = async () => {
|
|
6180
6201
|
let e = {
|
|
6181
6202
|
status: 200,
|
|
6182
6203
|
message: "",
|
|
6183
6204
|
...Yt
|
|
6184
6205
|
};
|
|
6185
6206
|
try {
|
|
6186
|
-
const t = (await
|
|
6207
|
+
const t = (await K.get("/graph/autoregister")).data;
|
|
6187
6208
|
e.data = {
|
|
6188
6209
|
status: t.status == 1,
|
|
6189
6210
|
message: t.message ?? "",
|
|
@@ -6201,22 +6222,22 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6201
6222
|
};
|
|
6202
6223
|
}
|
|
6203
6224
|
return e;
|
|
6204
|
-
},
|
|
6225
|
+
}, Bi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6205
6226
|
__proto__: null,
|
|
6206
|
-
call:
|
|
6227
|
+
call: Ei
|
|
6207
6228
|
}, Symbol.toStringTag, { value: "Module" })), Wt = {
|
|
6208
6229
|
data: {
|
|
6209
6230
|
status: !1,
|
|
6210
6231
|
message: ""
|
|
6211
6232
|
}
|
|
6212
|
-
},
|
|
6233
|
+
}, Hi = async (e, n) => {
|
|
6213
6234
|
let t = {
|
|
6214
6235
|
status: 200,
|
|
6215
6236
|
message: "",
|
|
6216
6237
|
...Wt
|
|
6217
6238
|
};
|
|
6218
6239
|
try {
|
|
6219
|
-
const r = await
|
|
6240
|
+
const r = await K.post("/graph/setlocale", {
|
|
6220
6241
|
language: e,
|
|
6221
6242
|
udid: n ?? ""
|
|
6222
6243
|
}), a = JSON.parse(
|
|
@@ -6234,10 +6255,10 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6234
6255
|
};
|
|
6235
6256
|
}
|
|
6236
6257
|
return t;
|
|
6237
|
-
},
|
|
6258
|
+
}, Ui = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6238
6259
|
__proto__: null,
|
|
6239
|
-
call:
|
|
6240
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6260
|
+
call: Hi
|
|
6261
|
+
}, Symbol.toStringTag, { value: "Module" })), $i = async (e, n, t, r, a) => {
|
|
6241
6262
|
let s = {
|
|
6242
6263
|
status: 200,
|
|
6243
6264
|
message: "",
|
|
@@ -6247,7 +6268,7 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6247
6268
|
}
|
|
6248
6269
|
};
|
|
6249
6270
|
try {
|
|
6250
|
-
const d = (await
|
|
6271
|
+
const d = (await K.post(`/loadgame/${e}`, {
|
|
6251
6272
|
wanturl: 1,
|
|
6252
6273
|
extra: {
|
|
6253
6274
|
Stage: n,
|
|
@@ -6275,22 +6296,22 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6275
6296
|
};
|
|
6276
6297
|
}
|
|
6277
6298
|
return s;
|
|
6278
|
-
},
|
|
6299
|
+
}, Vi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6279
6300
|
__proto__: null,
|
|
6280
|
-
call:
|
|
6301
|
+
call: $i
|
|
6281
6302
|
}, Symbol.toStringTag, { value: "Module" })), qt = {
|
|
6282
6303
|
data: {
|
|
6283
6304
|
status: !1,
|
|
6284
6305
|
message: ""
|
|
6285
6306
|
}
|
|
6286
|
-
},
|
|
6307
|
+
}, Ai = async () => {
|
|
6287
6308
|
let e = {
|
|
6288
6309
|
status: 200,
|
|
6289
6310
|
message: "",
|
|
6290
6311
|
...qt
|
|
6291
6312
|
};
|
|
6292
6313
|
try {
|
|
6293
|
-
const t = (await
|
|
6314
|
+
const t = (await K.post("/graph/getendpoint", {
|
|
6294
6315
|
requests: {
|
|
6295
6316
|
name: "getEndpoint",
|
|
6296
6317
|
query: btoa(
|
|
@@ -6313,9 +6334,9 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6313
6334
|
};
|
|
6314
6335
|
}
|
|
6315
6336
|
return e;
|
|
6316
|
-
},
|
|
6337
|
+
}, Qi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6317
6338
|
__proto__: null,
|
|
6318
|
-
call:
|
|
6339
|
+
call: Ai
|
|
6319
6340
|
}, Symbol.toStringTag, { value: "Module" })), Et = {
|
|
6320
6341
|
data: {
|
|
6321
6342
|
status: !1,
|
|
@@ -6326,7 +6347,7 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6326
6347
|
endTime: ""
|
|
6327
6348
|
}
|
|
6328
6349
|
}
|
|
6329
|
-
},
|
|
6350
|
+
}, Xi = async () => {
|
|
6330
6351
|
var n, t, r;
|
|
6331
6352
|
let e = {
|
|
6332
6353
|
status: 200,
|
|
@@ -6334,7 +6355,7 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6334
6355
|
...Et
|
|
6335
6356
|
};
|
|
6336
6357
|
try {
|
|
6337
|
-
const s = (await
|
|
6358
|
+
const s = (await K.get("/graph/getMaintenanceMode")).data;
|
|
6338
6359
|
e.data = {
|
|
6339
6360
|
status: s.status == 1,
|
|
6340
6361
|
message: s.msg ?? "",
|
|
@@ -6352,13 +6373,9 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6352
6373
|
};
|
|
6353
6374
|
}
|
|
6354
6375
|
return e;
|
|
6355
|
-
},
|
|
6376
|
+
}, Zi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6356
6377
|
__proto__: null,
|
|
6357
|
-
call:
|
|
6358
|
-
}, Symbol.toStringTag, { value: "Module" })), Xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6359
|
-
__proto__: null
|
|
6360
|
-
}, Symbol.toStringTag, { value: "Module" })), Zi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6361
|
-
__proto__: null
|
|
6378
|
+
call: Xi
|
|
6362
6379
|
}, Symbol.toStringTag, { value: "Module" })), Ji = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6363
6380
|
__proto__: null
|
|
6364
6381
|
}, Symbol.toStringTag, { value: "Module" })), Ki = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -6367,15 +6384,15 @@ const xi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6367
6384
|
__proto__: null
|
|
6368
6385
|
}, Symbol.toStringTag, { value: "Module" })), tu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6369
6386
|
__proto__: null
|
|
6387
|
+
}, Symbol.toStringTag, { value: "Module" })), nu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6388
|
+
__proto__: null
|
|
6389
|
+
}, Symbol.toStringTag, { value: "Module" })), ru = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6390
|
+
__proto__: null
|
|
6370
6391
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
6371
6392
|
var mn = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e.appAd = "appAd", e))(mn || {});
|
|
6372
|
-
const
|
|
6393
|
+
const au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6373
6394
|
__proto__: null,
|
|
6374
6395
|
CmsCategory: mn
|
|
6375
|
-
}, Symbol.toStringTag, { value: "Module" })), ru = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6376
|
-
__proto__: null
|
|
6377
|
-
}, Symbol.toStringTag, { value: "Module" })), au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6378
|
-
__proto__: null
|
|
6379
6396
|
}, Symbol.toStringTag, { value: "Module" })), su = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6380
6397
|
__proto__: null
|
|
6381
6398
|
}, Symbol.toStringTag, { value: "Module" })), ou = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -6434,25 +6451,25 @@ const nu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6434
6451
|
__proto__: null
|
|
6435
6452
|
}, Symbol.toStringTag, { value: "Module" })), ju = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6436
6453
|
__proto__: null
|
|
6454
|
+
}, Symbol.toStringTag, { value: "Module" })), Nu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6455
|
+
__proto__: null
|
|
6456
|
+
}, Symbol.toStringTag, { value: "Module" })), Fu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6457
|
+
__proto__: null
|
|
6437
6458
|
}, Symbol.toStringTag, { value: "Module" })), Bt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6438
6459
|
__proto__: null
|
|
6439
6460
|
}, Symbol.toStringTag, { value: "Module" })), Ht = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6440
6461
|
__proto__: null
|
|
6441
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6462
|
+
}, Symbol.toStringTag, { value: "Module" })), Lu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6442
6463
|
__proto__: null
|
|
6443
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6464
|
+
}, Symbol.toStringTag, { value: "Module" })), Gu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6444
6465
|
__proto__: null
|
|
6445
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6466
|
+
}, Symbol.toStringTag, { value: "Module" })), zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6446
6467
|
__proto__: null
|
|
6447
6468
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
6448
6469
|
var fn = /* @__PURE__ */ ((e) => (e.default = "default", e.online = "online", e.mycard = "mycard", e.qrcode = "qrcode", e.personal = "personal", e))(fn || {});
|
|
6449
|
-
const
|
|
6470
|
+
const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6450
6471
|
__proto__: null,
|
|
6451
6472
|
ImageCategory: fn
|
|
6452
|
-
}, Symbol.toStringTag, { value: "Module" })), zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6453
|
-
__proto__: null
|
|
6454
|
-
}, Symbol.toStringTag, { value: "Module" })), Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6455
|
-
__proto__: null
|
|
6456
6473
|
}, Symbol.toStringTag, { value: "Module" })), Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6457
6474
|
__proto__: null
|
|
6458
6475
|
}, Symbol.toStringTag, { value: "Module" })), qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -6579,262 +6596,268 @@ const Gu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6579
6596
|
__proto__: null
|
|
6580
6597
|
}, Symbol.toStringTag, { value: "Module" })), Al = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6581
6598
|
__proto__: null
|
|
6582
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6599
|
+
}, Symbol.toStringTag, { value: "Module" })), Ql = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6600
|
+
__proto__: null
|
|
6601
|
+
}, Symbol.toStringTag, { value: "Module" })), Xl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6602
|
+
__proto__: null
|
|
6603
|
+
}, Symbol.toStringTag, { value: "Module" })), Kl = {
|
|
6583
6604
|
api: Fi,
|
|
6584
6605
|
config: yn,
|
|
6585
|
-
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6606
|
+
telegramLoginApi: Gi,
|
|
6607
|
+
loginApi: Yi,
|
|
6608
|
+
logoutApi: qi,
|
|
6609
|
+
autoRegisterApi: Bi,
|
|
6610
|
+
setLocaleApi: Ui,
|
|
6611
|
+
loadMatchApi: Vi,
|
|
6612
|
+
getEndpointApi: Qi,
|
|
6613
|
+
getMaintenanceModeApi: Zi,
|
|
6592
6614
|
apiType: ns,
|
|
6593
|
-
loginType:
|
|
6594
|
-
logoutType:
|
|
6595
|
-
announcementType:
|
|
6615
|
+
loginType: Ji,
|
|
6616
|
+
logoutType: Ki,
|
|
6617
|
+
announcementType: eu,
|
|
6596
6618
|
paymentsProviderType: rs,
|
|
6597
|
-
gameListType:
|
|
6598
|
-
vipListType:
|
|
6599
|
-
promotionType:
|
|
6600
|
-
cmsListType:
|
|
6601
|
-
mainWalletType:
|
|
6602
|
-
upcomingMatchType:
|
|
6603
|
-
depositType:
|
|
6604
|
-
applyVipBonusType:
|
|
6605
|
-
withdrawalGetType:
|
|
6606
|
-
addBankCardType:
|
|
6607
|
-
withdrawType:
|
|
6619
|
+
gameListType: tu,
|
|
6620
|
+
vipListType: nu,
|
|
6621
|
+
promotionType: ru,
|
|
6622
|
+
cmsListType: au,
|
|
6623
|
+
mainWalletType: su,
|
|
6624
|
+
upcomingMatchType: ou,
|
|
6625
|
+
depositType: iu,
|
|
6626
|
+
applyVipBonusType: uu,
|
|
6627
|
+
withdrawalGetType: lu,
|
|
6628
|
+
addBankCardType: cu,
|
|
6629
|
+
withdrawType: du,
|
|
6608
6630
|
getSettingType: ai,
|
|
6609
6631
|
transactionReportType: Gs,
|
|
6610
|
-
changePasswordType:
|
|
6611
|
-
walletType:
|
|
6612
|
-
getEventListType:
|
|
6613
|
-
getEventTokenType:
|
|
6614
|
-
getExtraGameType:
|
|
6615
|
-
mailBoxType:
|
|
6616
|
-
fishGameListType:
|
|
6617
|
-
slotGameListType:
|
|
6618
|
-
getTurnOverRewardDataType:
|
|
6619
|
-
getTurnOverRewardReportType:
|
|
6620
|
-
getInviteRewardDataType:
|
|
6621
|
-
getInviteRewardReportType:
|
|
6622
|
-
getTopupRewardDataType:
|
|
6623
|
-
getTopupRewardReportType:
|
|
6624
|
-
getRewardReferralType:
|
|
6625
|
-
getDepositPromotionType:
|
|
6626
|
-
getInviteRewardClaimType:
|
|
6627
|
-
getTopUpRewardClaimType:
|
|
6628
|
-
getTurnOverRewardClaimType:
|
|
6629
|
-
getInviteRewardSettingType:
|
|
6630
|
-
getTopUpRewardSettingType:
|
|
6631
|
-
getTurnOverRewardSettingType:
|
|
6632
|
-
requestForgetPasswordType:
|
|
6633
|
-
submitForgetPasswordType:
|
|
6632
|
+
changePasswordType: mu,
|
|
6633
|
+
walletType: fu,
|
|
6634
|
+
getEventListType: gu,
|
|
6635
|
+
getEventTokenType: pu,
|
|
6636
|
+
getExtraGameType: bu,
|
|
6637
|
+
mailBoxType: yu,
|
|
6638
|
+
fishGameListType: hu,
|
|
6639
|
+
slotGameListType: _u,
|
|
6640
|
+
getTurnOverRewardDataType: Tu,
|
|
6641
|
+
getTurnOverRewardReportType: vu,
|
|
6642
|
+
getInviteRewardDataType: wu,
|
|
6643
|
+
getInviteRewardReportType: Pu,
|
|
6644
|
+
getTopupRewardDataType: xu,
|
|
6645
|
+
getTopupRewardReportType: Du,
|
|
6646
|
+
getRewardReferralType: Mu,
|
|
6647
|
+
getDepositPromotionType: Ou,
|
|
6648
|
+
getInviteRewardClaimType: ku,
|
|
6649
|
+
getTopUpRewardClaimType: Ru,
|
|
6650
|
+
getTurnOverRewardClaimType: Su,
|
|
6651
|
+
getInviteRewardSettingType: Iu,
|
|
6652
|
+
getTopUpRewardSettingType: Cu,
|
|
6653
|
+
getTurnOverRewardSettingType: ju,
|
|
6654
|
+
requestForgetPasswordType: Nu,
|
|
6655
|
+
submitForgetPasswordType: Fu,
|
|
6634
6656
|
submitGiftCode: Bt,
|
|
6635
6657
|
playGame: Ht,
|
|
6636
|
-
requestUpdateMobileTacCode:
|
|
6637
|
-
submitUpdateMobileTacCode:
|
|
6638
|
-
getVerifyPromo:
|
|
6639
|
-
getImageType:
|
|
6640
|
-
getValidateType:
|
|
6641
|
-
updateProfilePictureType:
|
|
6642
|
-
readMailType:
|
|
6643
|
-
checkRedPacketValidateType:
|
|
6644
|
-
getUserProfileType:
|
|
6645
|
-
requestTacCodeType:
|
|
6646
|
-
getUsernameByReferType:
|
|
6647
|
-
applyPromoType:
|
|
6648
|
-
applySignInType:
|
|
6649
|
-
applyRedPacketType:
|
|
6650
|
-
getCountryType:
|
|
6658
|
+
requestUpdateMobileTacCode: Lu,
|
|
6659
|
+
submitUpdateMobileTacCode: Gu,
|
|
6660
|
+
getVerifyPromo: zu,
|
|
6661
|
+
getImageType: Yu,
|
|
6662
|
+
getValidateType: Wu,
|
|
6663
|
+
updateProfilePictureType: qu,
|
|
6664
|
+
readMailType: Eu,
|
|
6665
|
+
checkRedPacketValidateType: Bu,
|
|
6666
|
+
getUserProfileType: Hu,
|
|
6667
|
+
requestTacCodeType: Uu,
|
|
6668
|
+
getUsernameByReferType: $u,
|
|
6669
|
+
applyPromoType: Vu,
|
|
6670
|
+
applySignInType: Au,
|
|
6671
|
+
applyRedPacketType: Qu,
|
|
6672
|
+
getCountryType: Xu,
|
|
6651
6673
|
submitGiftCodeType: Bt,
|
|
6652
6674
|
playGameType: Ht,
|
|
6653
|
-
transferToMainType:
|
|
6654
|
-
transferProcessType:
|
|
6655
|
-
submitValidateType:
|
|
6656
|
-
checkTransferCreditType:
|
|
6657
|
-
friendListType:
|
|
6658
|
-
friendListEditType:
|
|
6659
|
-
getActivePPType:
|
|
6660
|
-
getActiveProductType:
|
|
6661
|
-
requestWithdrawTacType:
|
|
6662
|
-
requestWithdrawalCodeType:
|
|
6663
|
-
commissionWithdrawType:
|
|
6664
|
-
submitWithdrawalCodeType:
|
|
6665
|
-
submitCryptoAccountType:
|
|
6666
|
-
requestTransferMoneyType:
|
|
6667
|
-
submitTransferMoneyType:
|
|
6668
|
-
signInViewInfoType:
|
|
6669
|
-
signInRecordType:
|
|
6670
|
-
referralProfileType:
|
|
6671
|
-
referralMemberProfileType:
|
|
6672
|
-
registerActionType:
|
|
6675
|
+
transferToMainType: Zu,
|
|
6676
|
+
transferProcessType: Ju,
|
|
6677
|
+
submitValidateType: Ku,
|
|
6678
|
+
checkTransferCreditType: el,
|
|
6679
|
+
friendListType: tl,
|
|
6680
|
+
friendListEditType: nl,
|
|
6681
|
+
getActivePPType: rl,
|
|
6682
|
+
getActiveProductType: al,
|
|
6683
|
+
requestWithdrawTacType: sl,
|
|
6684
|
+
requestWithdrawalCodeType: ol,
|
|
6685
|
+
commissionWithdrawType: il,
|
|
6686
|
+
submitWithdrawalCodeType: ul,
|
|
6687
|
+
submitCryptoAccountType: ll,
|
|
6688
|
+
requestTransferMoneyType: cl,
|
|
6689
|
+
submitTransferMoneyType: dl,
|
|
6690
|
+
signInViewInfoType: ml,
|
|
6691
|
+
signInRecordType: fl,
|
|
6692
|
+
referralProfileType: gl,
|
|
6693
|
+
referralMemberProfileType: pl,
|
|
6694
|
+
registerActionType: bl,
|
|
6673
6695
|
transferReportType: $o,
|
|
6674
|
-
agTransferCreditReportType:
|
|
6675
|
-
betReportType:
|
|
6676
|
-
getTwoFactorAuthenticateType:
|
|
6677
|
-
submitTwoFactorAuthenticateType:
|
|
6678
|
-
getUserDeviceListType:
|
|
6679
|
-
unbindUserDeviceType:
|
|
6680
|
-
searchNumberHistoryType:
|
|
6681
|
-
changeWithdrawalCodeType:
|
|
6682
|
-
checkRedPacketTokenType:
|
|
6683
|
-
submitWithdrawalAlipayType:
|
|
6684
|
-
applyReliefFund:
|
|
6685
|
-
getReliefFundData:
|
|
6686
|
-
getReliefFundReport:
|
|
6687
|
-
getWeekCardClaim:
|
|
6688
|
-
getWeekCardData:
|
|
6689
|
-
applyWeekCard:
|
|
6690
|
-
transferSettingType:
|
|
6691
|
-
transferType:
|
|
6692
|
-
claimIncentiveRebate:
|
|
6693
|
-
getIncentiveData:
|
|
6694
|
-
getIncentiveRebate:
|
|
6696
|
+
agTransferCreditReportType: yl,
|
|
6697
|
+
betReportType: hl,
|
|
6698
|
+
getTwoFactorAuthenticateType: _l,
|
|
6699
|
+
submitTwoFactorAuthenticateType: Tl,
|
|
6700
|
+
getUserDeviceListType: vl,
|
|
6701
|
+
unbindUserDeviceType: wl,
|
|
6702
|
+
searchNumberHistoryType: Pl,
|
|
6703
|
+
changeWithdrawalCodeType: xl,
|
|
6704
|
+
checkRedPacketTokenType: Dl,
|
|
6705
|
+
submitWithdrawalAlipayType: Ml,
|
|
6706
|
+
applyReliefFund: Ol,
|
|
6707
|
+
getReliefFundData: kl,
|
|
6708
|
+
getReliefFundReport: Rl,
|
|
6709
|
+
getWeekCardClaim: Sl,
|
|
6710
|
+
getWeekCardData: Il,
|
|
6711
|
+
applyWeekCard: Cl,
|
|
6712
|
+
transferSettingType: jl,
|
|
6713
|
+
transferType: Nl,
|
|
6714
|
+
claimIncentiveRebate: Fl,
|
|
6715
|
+
getIncentiveData: Ll,
|
|
6716
|
+
getIncentiveRebate: Gl,
|
|
6695
6717
|
getMissionData: bi,
|
|
6696
|
-
getMissionClaim:
|
|
6697
|
-
registerFormType:
|
|
6698
|
-
getFavouriteGameType:
|
|
6699
|
-
updateFavouriteGameType:
|
|
6700
|
-
requestForgetUsernameType:
|
|
6701
|
-
submitForgetUsernameType:
|
|
6718
|
+
getMissionClaim: zl,
|
|
6719
|
+
registerFormType: Yl,
|
|
6720
|
+
getFavouriteGameType: Wl,
|
|
6721
|
+
updateFavouriteGameType: ql,
|
|
6722
|
+
requestForgetUsernameType: El,
|
|
6723
|
+
submitForgetUsernameType: Bl,
|
|
6702
6724
|
getAccumulateDepositDataType: xi,
|
|
6703
|
-
getAccumulateDepositClaimType:
|
|
6704
|
-
rebateRefundSettingType:
|
|
6705
|
-
getASCMatchCountType:
|
|
6706
|
-
updateDeviceTokenType:
|
|
6707
|
-
getCryptoListType:
|
|
6708
|
-
getCryptoAddressType:
|
|
6709
|
-
getPopoutItemType:
|
|
6725
|
+
getAccumulateDepositClaimType: Hl,
|
|
6726
|
+
rebateRefundSettingType: Ul,
|
|
6727
|
+
getASCMatchCountType: $l,
|
|
6728
|
+
updateDeviceTokenType: Vl,
|
|
6729
|
+
getCryptoListType: Al,
|
|
6730
|
+
getCryptoAddressType: Ql,
|
|
6731
|
+
getPopoutItemType: Xl
|
|
6710
6732
|
};
|
|
6711
6733
|
export {
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6734
|
+
Kl as Repository,
|
|
6735
|
+
cu as addBankCardType,
|
|
6736
|
+
yl as agTransferCreditReportType,
|
|
6737
|
+
eu as announcementType,
|
|
6716
6738
|
Fi as api,
|
|
6717
6739
|
ns as apiType,
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6740
|
+
Vu as applyPromoType,
|
|
6741
|
+
Qu as applyRedPacketType,
|
|
6742
|
+
Ol as applyReliefFund,
|
|
6743
|
+
Au as applySignInType,
|
|
6744
|
+
uu as applyVipBonusType,
|
|
6745
|
+
Cl as applyWeekCard,
|
|
6746
|
+
Bi as autoRegisterApi,
|
|
6747
|
+
hl as betReportType,
|
|
6748
|
+
mu as changePasswordType,
|
|
6749
|
+
xl as changeWithdrawalCodeType,
|
|
6750
|
+
Dl as checkRedPacketTokenType,
|
|
6751
|
+
Bu as checkRedPacketValidateType,
|
|
6752
|
+
el as checkTransferCreditType,
|
|
6753
|
+
Fl as claimIncentiveRebate,
|
|
6754
|
+
au as cmsListType,
|
|
6755
|
+
il as commissionWithdrawType,
|
|
6734
6756
|
yn as config,
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
|
|
6739
|
-
|
|
6740
|
-
|
|
6741
|
-
|
|
6757
|
+
iu as depositType,
|
|
6758
|
+
hu as fishGameListType,
|
|
6759
|
+
nl as friendListEditType,
|
|
6760
|
+
tl as friendListType,
|
|
6761
|
+
tu as gameListType,
|
|
6762
|
+
$l as getASCMatchCountType,
|
|
6763
|
+
Hl as getAccumulateDepositClaimType,
|
|
6742
6764
|
xi as getAccumulateDepositDataType,
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6751
|
-
|
|
6752
|
-
|
|
6753
|
-
|
|
6754
|
-
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
|
|
6761
|
-
|
|
6762
|
-
|
|
6765
|
+
rl as getActivePPType,
|
|
6766
|
+
al as getActiveProductType,
|
|
6767
|
+
Xu as getCountryType,
|
|
6768
|
+
Ql as getCryptoAddressType,
|
|
6769
|
+
Al as getCryptoListType,
|
|
6770
|
+
Ou as getDepositPromotionType,
|
|
6771
|
+
Qi as getEndpointApi,
|
|
6772
|
+
gu as getEventListType,
|
|
6773
|
+
pu as getEventTokenType,
|
|
6774
|
+
bu as getExtraGameType,
|
|
6775
|
+
Wl as getFavouriteGameType,
|
|
6776
|
+
Yu as getImageType,
|
|
6777
|
+
Ll as getIncentiveData,
|
|
6778
|
+
Gl as getIncentiveRebate,
|
|
6779
|
+
ku as getInviteRewardClaimType,
|
|
6780
|
+
wu as getInviteRewardDataType,
|
|
6781
|
+
Pu as getInviteRewardReportType,
|
|
6782
|
+
Iu as getInviteRewardSettingType,
|
|
6783
|
+
Zi as getMaintenanceModeApi,
|
|
6784
|
+
zl as getMissionClaim,
|
|
6763
6785
|
bi as getMissionData,
|
|
6764
|
-
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
|
|
6786
|
+
Xl as getPopoutItemType,
|
|
6787
|
+
kl as getReliefFundData,
|
|
6788
|
+
Rl as getReliefFundReport,
|
|
6789
|
+
Mu as getRewardReferralType,
|
|
6768
6790
|
ai as getSettingType,
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
6772
|
-
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
6780
|
-
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
6785
|
-
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
|
|
6790
|
-
|
|
6791
|
-
|
|
6791
|
+
Ru as getTopUpRewardClaimType,
|
|
6792
|
+
Cu as getTopUpRewardSettingType,
|
|
6793
|
+
xu as getTopupRewardDataType,
|
|
6794
|
+
Du as getTopupRewardReportType,
|
|
6795
|
+
Su as getTurnOverRewardClaimType,
|
|
6796
|
+
Tu as getTurnOverRewardDataType,
|
|
6797
|
+
vu as getTurnOverRewardReportType,
|
|
6798
|
+
ju as getTurnOverRewardSettingType,
|
|
6799
|
+
_l as getTwoFactorAuthenticateType,
|
|
6800
|
+
vl as getUserDeviceListType,
|
|
6801
|
+
Hu as getUserProfileType,
|
|
6802
|
+
$u as getUsernameByReferType,
|
|
6803
|
+
Wu as getValidateType,
|
|
6804
|
+
zu as getVerifyPromo,
|
|
6805
|
+
Sl as getWeekCardClaim,
|
|
6806
|
+
Il as getWeekCardData,
|
|
6807
|
+
Vi as loadMatchApi,
|
|
6808
|
+
Yi as loginApi,
|
|
6809
|
+
Ji as loginType,
|
|
6810
|
+
qi as logoutApi,
|
|
6811
|
+
Ki as logoutType,
|
|
6812
|
+
yu as mailBoxType,
|
|
6813
|
+
su as mainWalletType,
|
|
6792
6814
|
rs as paymentsProviderType,
|
|
6793
6815
|
Ht as playGame,
|
|
6794
6816
|
Ht as playGameType,
|
|
6795
|
-
|
|
6796
|
-
|
|
6797
|
-
|
|
6798
|
-
|
|
6799
|
-
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
+
ru as promotionType,
|
|
6818
|
+
Eu as readMailType,
|
|
6819
|
+
Ul as rebateRefundSettingType,
|
|
6820
|
+
pl as referralMemberProfileType,
|
|
6821
|
+
gl as referralProfileType,
|
|
6822
|
+
bl as registerActionType,
|
|
6823
|
+
Yl as registerFormType,
|
|
6824
|
+
Nu as requestForgetPasswordType,
|
|
6825
|
+
El as requestForgetUsernameType,
|
|
6826
|
+
Uu as requestTacCodeType,
|
|
6827
|
+
cl as requestTransferMoneyType,
|
|
6828
|
+
Lu as requestUpdateMobileTacCode,
|
|
6829
|
+
sl as requestWithdrawTacType,
|
|
6830
|
+
ol as requestWithdrawalCodeType,
|
|
6831
|
+
Pl as searchNumberHistoryType,
|
|
6832
|
+
Ui as setLocaleApi,
|
|
6833
|
+
fl as signInRecordType,
|
|
6834
|
+
ml as signInViewInfoType,
|
|
6835
|
+
_u as slotGameListType,
|
|
6836
|
+
ll as submitCryptoAccountType,
|
|
6837
|
+
Fu as submitForgetPasswordType,
|
|
6838
|
+
Bl as submitForgetUsernameType,
|
|
6817
6839
|
Bt as submitGiftCode,
|
|
6818
6840
|
Bt as submitGiftCodeType,
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6841
|
+
dl as submitTransferMoneyType,
|
|
6842
|
+
Tl as submitTwoFactorAuthenticateType,
|
|
6843
|
+
Gu as submitUpdateMobileTacCode,
|
|
6844
|
+
Ku as submitValidateType,
|
|
6845
|
+
Ml as submitWithdrawalAlipayType,
|
|
6846
|
+
ul as submitWithdrawalCodeType,
|
|
6847
|
+
Gi as telegramLoginApi,
|
|
6825
6848
|
Gs as transactionReportType,
|
|
6826
|
-
|
|
6849
|
+
Ju as transferProcessType,
|
|
6827
6850
|
$o as transferReportType,
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
|
|
6838
|
-
|
|
6839
|
-
|
|
6851
|
+
jl as transferSettingType,
|
|
6852
|
+
Zu as transferToMainType,
|
|
6853
|
+
Nl as transferType,
|
|
6854
|
+
wl as unbindUserDeviceType,
|
|
6855
|
+
ou as upcomingMatchType,
|
|
6856
|
+
Vl as updateDeviceTokenType,
|
|
6857
|
+
ql as updateFavouriteGameType,
|
|
6858
|
+
qu as updateProfilePictureType,
|
|
6859
|
+
nu as vipListType,
|
|
6860
|
+
fu as walletType,
|
|
6861
|
+
du as withdrawType,
|
|
6862
|
+
lu as withdrawalGetType
|
|
6840
6863
|
};
|