60p82u21t54k 0.3.28 → 0.3.30
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 +302 -287
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/api/api.d.ts.map +1 -1
- package/dist/api/type.d.ts +4 -1
- package/dist/api/type.d.ts.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/model/getActivePlatform/getGetActivePlatformResponse.d.ts +11 -0
- package/dist/model/getActivePlatform/getGetActivePlatformResponse.d.ts.map +1 -0
- package/dist/model/getActivePlatform/type.d.ts +5 -0
- package/dist/model/getActivePlatform/type.d.ts.map +1 -0
- package/dist/model/getSetting/getGetSettingResponse.d.ts +1 -0
- package/dist/model/getSetting/getGetSettingResponse.d.ts.map +1 -1
- package/dist/model/getSetting/type.d.ts +3 -1
- package/dist/model/getSetting/type.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -73,11 +73,11 @@ let Ce = {
|
|
|
73
73
|
};
|
|
74
74
|
const wa = (e) => {
|
|
75
75
|
Ce = { ...Ce, ...e };
|
|
76
|
-
}, he = () => Ce,
|
|
76
|
+
}, he = () => Ce, Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
77
77
|
__proto__: null,
|
|
78
78
|
getConfig: he,
|
|
79
79
|
setConfig: wa
|
|
80
|
-
}, Symbol.toStringTag, { value: "Module" })), aa = 6048e5,
|
|
80
|
+
}, Symbol.toStringTag, { value: "Module" })), aa = 6048e5, Pa = 864e5, Ra = 6e4, Da = 36e5, ka = 1e3, Mt = Symbol.for("constructDateFrom");
|
|
81
81
|
function j(e, a) {
|
|
82
82
|
return typeof e == "function" ? e(a) : e && typeof e == "object" && Mt in e ? e[Mt](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
|
|
83
83
|
}
|
|
@@ -139,7 +139,7 @@ function Ma(e, a, t) {
|
|
|
139
139
|
e,
|
|
140
140
|
a
|
|
141
141
|
), s = St(n), o = St(r), l = +s - de(s), m = +o - de(o);
|
|
142
|
-
return Math.round((l - m) /
|
|
142
|
+
return Math.round((l - m) / Pa);
|
|
143
143
|
}
|
|
144
144
|
function Sa(e, a) {
|
|
145
145
|
const t = ra(e, a), n = j(e, 0);
|
|
@@ -612,7 +612,7 @@ function ia(e, a) {
|
|
|
612
612
|
const t = I(e, a == null ? void 0 : a.in), n = +U(t, a) - +fn(t, a);
|
|
613
613
|
return Math.round(n / aa) + 1;
|
|
614
614
|
}
|
|
615
|
-
function
|
|
615
|
+
function P(e, a) {
|
|
616
616
|
const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
|
|
617
617
|
return t + n;
|
|
618
618
|
}
|
|
@@ -620,16 +620,16 @@ const H = {
|
|
|
620
620
|
// Year
|
|
621
621
|
y(e, a) {
|
|
622
622
|
const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
|
|
623
|
-
return
|
|
623
|
+
return P(a === "yy" ? n % 100 : n, a.length);
|
|
624
624
|
},
|
|
625
625
|
// Month
|
|
626
626
|
M(e, a) {
|
|
627
627
|
const t = e.getMonth();
|
|
628
|
-
return a === "M" ? String(t + 1) :
|
|
628
|
+
return a === "M" ? String(t + 1) : P(t + 1, 2);
|
|
629
629
|
},
|
|
630
630
|
// Day of the month
|
|
631
631
|
d(e, a) {
|
|
632
|
-
return
|
|
632
|
+
return P(e.getDate(), a.length);
|
|
633
633
|
},
|
|
634
634
|
// AM or PM
|
|
635
635
|
a(e, a) {
|
|
@@ -649,26 +649,26 @@ const H = {
|
|
|
649
649
|
},
|
|
650
650
|
// Hour [1-12]
|
|
651
651
|
h(e, a) {
|
|
652
|
-
return
|
|
652
|
+
return P(e.getHours() % 12 || 12, a.length);
|
|
653
653
|
},
|
|
654
654
|
// Hour [0-23]
|
|
655
655
|
H(e, a) {
|
|
656
|
-
return
|
|
656
|
+
return P(e.getHours(), a.length);
|
|
657
657
|
},
|
|
658
658
|
// Minute
|
|
659
659
|
m(e, a) {
|
|
660
|
-
return
|
|
660
|
+
return P(e.getMinutes(), a.length);
|
|
661
661
|
},
|
|
662
662
|
// Second
|
|
663
663
|
s(e, a) {
|
|
664
|
-
return
|
|
664
|
+
return P(e.getSeconds(), a.length);
|
|
665
665
|
},
|
|
666
666
|
// Fraction of second
|
|
667
667
|
S(e, a) {
|
|
668
668
|
const t = a.length, n = e.getMilliseconds(), r = Math.trunc(
|
|
669
669
|
n * Math.pow(10, t - 3)
|
|
670
670
|
);
|
|
671
|
-
return
|
|
671
|
+
return P(r, a.length);
|
|
672
672
|
}
|
|
673
673
|
}, X = {
|
|
674
674
|
midnight: "midnight",
|
|
@@ -709,14 +709,14 @@ const H = {
|
|
|
709
709
|
const r = Ge(e, n), s = r > 0 ? r : 1 - r;
|
|
710
710
|
if (a === "YY") {
|
|
711
711
|
const o = s % 100;
|
|
712
|
-
return
|
|
712
|
+
return P(o, 2);
|
|
713
713
|
}
|
|
714
|
-
return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) :
|
|
714
|
+
return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : P(s, a.length);
|
|
715
715
|
},
|
|
716
716
|
// ISO week-numbering year
|
|
717
717
|
R: function(e, a) {
|
|
718
718
|
const t = ra(e);
|
|
719
|
-
return
|
|
719
|
+
return P(t, a.length);
|
|
720
720
|
},
|
|
721
721
|
// Extended year. This is a single number designating the year of this calendar system.
|
|
722
722
|
// The main difference between `y` and `u` localizers are B.C. years:
|
|
@@ -729,7 +729,7 @@ const H = {
|
|
|
729
729
|
// while `uu` pads single digit years to 2 characters and returns other years unchanged.
|
|
730
730
|
u: function(e, a) {
|
|
731
731
|
const t = e.getFullYear();
|
|
732
|
-
return
|
|
732
|
+
return P(t, a.length);
|
|
733
733
|
},
|
|
734
734
|
// Quarter
|
|
735
735
|
Q: function(e, a, t) {
|
|
@@ -740,7 +740,7 @@ const H = {
|
|
|
740
740
|
return String(n);
|
|
741
741
|
// 01, 02, 03, 04
|
|
742
742
|
case "QQ":
|
|
743
|
-
return
|
|
743
|
+
return P(n, 2);
|
|
744
744
|
// 1st, 2nd, 3rd, 4th
|
|
745
745
|
case "Qo":
|
|
746
746
|
return t.ordinalNumber(n, { unit: "quarter" });
|
|
@@ -774,7 +774,7 @@ const H = {
|
|
|
774
774
|
return String(n);
|
|
775
775
|
// 01, 02, 03, 04
|
|
776
776
|
case "qq":
|
|
777
|
-
return
|
|
777
|
+
return P(n, 2);
|
|
778
778
|
// 1st, 2nd, 3rd, 4th
|
|
779
779
|
case "qo":
|
|
780
780
|
return t.ordinalNumber(n, { unit: "quarter" });
|
|
@@ -836,7 +836,7 @@ const H = {
|
|
|
836
836
|
return String(n + 1);
|
|
837
837
|
// 01, 02, ..., 12
|
|
838
838
|
case "LL":
|
|
839
|
-
return
|
|
839
|
+
return P(n + 1, 2);
|
|
840
840
|
// 1st, 2nd, ..., 12th
|
|
841
841
|
case "Lo":
|
|
842
842
|
return t.ordinalNumber(n + 1, { unit: "month" });
|
|
@@ -861,12 +861,12 @@ const H = {
|
|
|
861
861
|
// Local week of year
|
|
862
862
|
w: function(e, a, t, n) {
|
|
863
863
|
const r = ia(e, n);
|
|
864
|
-
return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) :
|
|
864
|
+
return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : P(r, a.length);
|
|
865
865
|
},
|
|
866
866
|
// ISO week of year
|
|
867
867
|
I: function(e, a, t) {
|
|
868
868
|
const n = oa(e);
|
|
869
|
-
return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) :
|
|
869
|
+
return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : P(n, a.length);
|
|
870
870
|
},
|
|
871
871
|
// Day of the month
|
|
872
872
|
d: function(e, a, t) {
|
|
@@ -875,7 +875,7 @@ const H = {
|
|
|
875
875
|
// Day of year
|
|
876
876
|
D: function(e, a, t) {
|
|
877
877
|
const n = gn(e);
|
|
878
|
-
return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) :
|
|
878
|
+
return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : P(n, a.length);
|
|
879
879
|
},
|
|
880
880
|
// Day of week
|
|
881
881
|
E: function(e, a, t) {
|
|
@@ -919,7 +919,7 @@ const H = {
|
|
|
919
919
|
return String(s);
|
|
920
920
|
// Padded numerical value
|
|
921
921
|
case "ee":
|
|
922
|
-
return
|
|
922
|
+
return P(s, 2);
|
|
923
923
|
// 1st, 2nd, ..., 7th
|
|
924
924
|
case "eo":
|
|
925
925
|
return t.ordinalNumber(s, { unit: "day" });
|
|
@@ -958,7 +958,7 @@ const H = {
|
|
|
958
958
|
return String(s);
|
|
959
959
|
// Padded numerical value
|
|
960
960
|
case "cc":
|
|
961
|
-
return
|
|
961
|
+
return P(s, a.length);
|
|
962
962
|
// 1st, 2nd, ..., 7th
|
|
963
963
|
case "co":
|
|
964
964
|
return t.ordinalNumber(s, { unit: "day" });
|
|
@@ -997,7 +997,7 @@ const H = {
|
|
|
997
997
|
return String(r);
|
|
998
998
|
// 02
|
|
999
999
|
case "ii":
|
|
1000
|
-
return
|
|
1000
|
+
return P(r, a.length);
|
|
1001
1001
|
// 2nd
|
|
1002
1002
|
case "io":
|
|
1003
1003
|
return t.ordinalNumber(r, { unit: "day" });
|
|
@@ -1125,12 +1125,12 @@ const H = {
|
|
|
1125
1125
|
// Hour [0-11]
|
|
1126
1126
|
K: function(e, a, t) {
|
|
1127
1127
|
const n = e.getHours() % 12;
|
|
1128
|
-
return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) :
|
|
1128
|
+
return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
|
|
1129
1129
|
},
|
|
1130
1130
|
// Hour [1-24]
|
|
1131
1131
|
k: function(e, a, t) {
|
|
1132
1132
|
let n = e.getHours();
|
|
1133
|
-
return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) :
|
|
1133
|
+
return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
|
|
1134
1134
|
},
|
|
1135
1135
|
// Minute
|
|
1136
1136
|
m: function(e, a, t) {
|
|
@@ -1225,22 +1225,22 @@ const H = {
|
|
|
1225
1225
|
// Seconds timestamp
|
|
1226
1226
|
t: function(e, a, t) {
|
|
1227
1227
|
const n = Math.trunc(+e / 1e3);
|
|
1228
|
-
return
|
|
1228
|
+
return P(n, a.length);
|
|
1229
1229
|
},
|
|
1230
1230
|
// Milliseconds timestamp
|
|
1231
1231
|
T: function(e, a, t) {
|
|
1232
|
-
return
|
|
1232
|
+
return P(+e, a.length);
|
|
1233
1233
|
}
|
|
1234
1234
|
};
|
|
1235
1235
|
function jt(e, a = "") {
|
|
1236
1236
|
const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.trunc(n / 60), s = n % 60;
|
|
1237
|
-
return s === 0 ? t + String(r) : t + String(r) + a +
|
|
1237
|
+
return s === 0 ? t + String(r) : t + String(r) + a + P(s, 2);
|
|
1238
1238
|
}
|
|
1239
1239
|
function Ct(e, a) {
|
|
1240
|
-
return e % 60 === 0 ? (e > 0 ? "-" : "+") +
|
|
1240
|
+
return e % 60 === 0 ? (e > 0 ? "-" : "+") + P(Math.abs(e) / 60, 2) : V(e, a);
|
|
1241
1241
|
}
|
|
1242
1242
|
function V(e, a = "") {
|
|
1243
|
-
const t = e > 0 ? "-" : "+", n = Math.abs(e), r =
|
|
1243
|
+
const t = e > 0 ? "-" : "+", n = Math.abs(e), r = P(Math.trunc(n / 60), 2), s = P(n % 60, 2);
|
|
1244
1244
|
return t + r + a + s;
|
|
1245
1245
|
}
|
|
1246
1246
|
const Nt = (e, a) => {
|
|
@@ -1306,7 +1306,7 @@ function _n(e, a, t) {
|
|
|
1306
1306
|
const n = e[0] === "Y" ? "years" : "days of the month";
|
|
1307
1307
|
return `Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${a}\`) for formatting ${n} to the input \`${t}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;
|
|
1308
1308
|
}
|
|
1309
|
-
const Tn = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, vn = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, wn = /^'([^]*?)'?$/,
|
|
1309
|
+
const Tn = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, vn = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, wn = /^'([^]*?)'?$/, Pn = /''/g, Rn = /[a-zA-Z]/;
|
|
1310
1310
|
function Dn(e, a, t) {
|
|
1311
1311
|
var c, b, p, g, T, _, k, C;
|
|
1312
1312
|
const n = te(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? sa, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((b = (c = t == null ? void 0 : t.locale) == null ? void 0 : c.options) == null ? void 0 : b.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((g = (p = n.locale) == null ? void 0 : p.options) == null ? void 0 : g.firstWeekContainsDate) ?? 1, o = (t == null ? void 0 : t.weekStartsOn) ?? ((_ = (T = t == null ? void 0 : t.locale) == null ? void 0 : T.options) == null ? void 0 : _.weekStartsOn) ?? n.weekStartsOn ?? ((C = (k = n.locale) == null ? void 0 : k.options) == null ? void 0 : C.weekStartsOn) ?? 0, l = I(e, t == null ? void 0 : t.in);
|
|
@@ -1327,7 +1327,7 @@ function Dn(e, a, t) {
|
|
|
1327
1327
|
return { isToken: !1, value: kn(D) };
|
|
1328
1328
|
if (It[h])
|
|
1329
1329
|
return { isToken: !0, value: D };
|
|
1330
|
-
if (h.match(
|
|
1330
|
+
if (h.match(Rn))
|
|
1331
1331
|
throw new RangeError(
|
|
1332
1332
|
"Format string contains an unescaped latin alphabet character `" + h + "`"
|
|
1333
1333
|
);
|
|
@@ -1349,7 +1349,7 @@ function Dn(e, a, t) {
|
|
|
1349
1349
|
}
|
|
1350
1350
|
function kn(e) {
|
|
1351
1351
|
const a = e.match(wn);
|
|
1352
|
-
return a ? a[1].replace(
|
|
1352
|
+
return a ? a[1].replace(Pn, "'") : e;
|
|
1353
1353
|
}
|
|
1354
1354
|
function da() {
|
|
1355
1355
|
return Object.assign({}, te());
|
|
@@ -1515,7 +1515,7 @@ function z(e, a) {
|
|
|
1515
1515
|
};
|
|
1516
1516
|
const n = t[1] === "+" ? 1 : -1, r = t[2] ? parseInt(t[2], 10) : 0, s = t[3] ? parseInt(t[3], 10) : 0, o = t[5] ? parseInt(t[5], 10) : 0;
|
|
1517
1517
|
return {
|
|
1518
|
-
value: n * (r * Da + s *
|
|
1518
|
+
value: n * (r * Da + s * Ra + o * ka),
|
|
1519
1519
|
rest: a.slice(t[0].length)
|
|
1520
1520
|
};
|
|
1521
1521
|
}
|
|
@@ -2915,7 +2915,7 @@ function wr(e, a, t, n) {
|
|
|
2915
2915
|
throw new RangeError(
|
|
2916
2916
|
"Format string contains an unescaped latin alphabet character `" + d + "`"
|
|
2917
2917
|
);
|
|
2918
|
-
if (y === "''" ? y = "'" : d === "'" && (y =
|
|
2918
|
+
if (y === "''" ? y = "'" : d === "'" && (y = Pr(y)), e.indexOf(y) === 0)
|
|
2919
2919
|
e = e.slice(y.length);
|
|
2920
2920
|
else
|
|
2921
2921
|
return r();
|
|
@@ -2937,14 +2937,14 @@ function wr(e, a, t, n) {
|
|
|
2937
2937
|
}
|
|
2938
2938
|
return T;
|
|
2939
2939
|
}
|
|
2940
|
-
function
|
|
2940
|
+
function Pr(e) {
|
|
2941
2941
|
return e.match(hr)[1].replace(_r, "'");
|
|
2942
2942
|
}
|
|
2943
2943
|
function Lt(e, a, t) {
|
|
2944
2944
|
const n = da(), r = kr(e, t.timeZone, t.locale ?? n.locale);
|
|
2945
|
-
return "formatToParts" in r ?
|
|
2945
|
+
return "formatToParts" in r ? Rr(r, a) : Dr(r, a);
|
|
2946
2946
|
}
|
|
2947
|
-
function
|
|
2947
|
+
function Rr(e, a) {
|
|
2948
2948
|
const t = e.formatToParts(a);
|
|
2949
2949
|
for (let n = t.length - 1; n >= 0; --n)
|
|
2950
2950
|
if (t[n].type === "timeZoneName")
|
|
@@ -3556,16 +3556,16 @@ const Jr = (e) => new TextEncoder().encode(e), Kr = (e) => {
|
|
|
3556
3556
|
let s = e;
|
|
3557
3557
|
return s ? (n.includes(a) || r.includes(a) ? (s = s.replace(".png", `_${a}.png`).toLowerCase(), s = `${s}?v=1`) : s = `${s}${t}`, s) : "";
|
|
3558
3558
|
};
|
|
3559
|
-
var u = /* @__PURE__ */ ((e) => (e.announcement = "announcement", e.gameList = "gameList", e.fishGameList = "fishGameList", e.cmsList = "cmsList", e.paymentsProvider = "paymentsProvider", e.getUserProfile = "getUserProfile", e.vipList = "vipList", e.vipStatus = "vipStatus", e.vipBonus = "vipBonus", e.vipFieldStatus = "vipFieldStatus", e.promotion = "promotion", e.getSetting = "getSetting", e.getCountryMobile = "getCountryMobile", e.getPlatformTurnoverRate = "getPlatformTurnoverRate", e.mainWallet = "mainWallet", e.getLanguageSetting = "getLanguageSetting", e.getFourDimensionData = "getfourDimensionData", e.getCompany = "getCompany", e.searchResultDate = "searchResultDate", e.searchHot = "searchHot", e.searchByDate = "searchByDate", e.upcomingMatches = "upcomingMatches", e.deposit = "deposit", e.applyVipBonus = "applyVipBonus", e.getBankCardData = "getBankCardData", e.withdrawalGet = "withdrawalGet", e.withdraw = "withdraw", e.addBankCard = "addBankCard", e.transactionReport = "transactionReport", e.changePassword = "changePassword", e.wallet = "wallet", e.getEventList = "getEventlist", e.getEventToken = "getEventToken", e.getExtraGame = "getExtraGame", e.mailBox = "mailBox", e.slotGameList = "slotGameList", e.getTurnOverRewardData = "getTurnOverRewardData", e.getTurnOverRewardReport = "getTurnOverRewardReport", e.getInviteRewardData = "getInviteRewardData", e.getInviteRewardReport = "getInviteRewardReport", e.getTopupRewardData = "getTopupRewardData", e.getTopupRewardReport = "getTopupRewardReport", e.getRewardReferral = "getRewardReferral", e.submitWithdrawValidate = "submitWithdrawValidate", e.getDepositPromotion = "getDepositPromotion", e.getInviteRewardClaim = "getInviteRewardClaim", e.getTopUpRewardClaim = "getTopupRewardClaim", e.getTurnOverRewardClaim = "getTurnOverRewardClaim", e.getInviteRewardSetting = "getInviteRewardSetting", e.getTopUpRewardSetting = "getTopupRewardSetting", e.getTurnOverRewardSetting = "getTurnOverRewardSetting", e.requestForgetPassword = "requestForgetPassword", e.submitForgetPassword = "submitForgetPassword", e.getImage = "getImage", e.getDepositValidate = "getDepositValidate", e.getTransferCreditValidate = "getTransferCreditValidate", e.getWithdrawValidate = "getWithdrawValidate", e.updateProfilePicture = "updateProfilePicture", e.readMail = "readMail", e.checkRedPacketValidate = "checkRedpacketValidate", e.requestTacCode = "requestTacCode", e.getUsernameByRefer = "getUsernameByRefer", e.applyPromo = "applyPromo", e.applyRedPacket = "applyRedpacket", e.applySignIn = "applySignIn", e.getCountry = "getCountry", e.submitGiftCode = "submitGiftCode", e.playGame = "playGame", e.transferToMain = "transferToMain", e.transferProcess = "transferProcess", e.submitDepositValidate = "submitDepositValidate", e.submitTransferCreditValidate = "submitTransferCreditValidate", e.checkTransferCredit = "checkTransferCredit", e.friendList = "friendList", e.friendListEdit = "friendListEdit", e.getActivePP = "getActivePP", e.getActiveProduct = "getActiveProduct", e.requestWithdrawTac = "requestWithdrawTac", e.requestWithdrawalCode = "requestWithdrawalCode", e.commissionWithdraw = "commissionWithdraw", e.submitWithdrawalCode = "submitWithdrawalCode", e.submitCryptoAccount = "submitCryptoAccount", e.requestTransferMoney = "requestTransferMoney", e.submitTransferMoney = "submitTransferMoney", e.getVerifyPromo = "getVerifyPromo", e.requestUpdateMobileTacCode = "requestUpdateMobileTacCode", e.submitUpdateMobileTacCode = "submitUpdateMobileTacCode", e.signInViewInfo = "signInViewInfo", e.signInRecord = "signInRecord", e.referralProfile = "referralProfile", e.referralMemberProfile = "referralMemberProfile", e.registerAction = "registerAction", e.transferReport = "transferReport", e.agTransferCreditReport = "agTransferCreditReport", e.betReport = "betReport", e.getTwoFactorAuthenticate = "getTwoFactorAuthenticate", e.getUserDeviceList = "getUserDeviceList", e.submitTwoFactorAuthenticate = "submitTwoFactorAuthenticate", e.unbindUserDevice = "unbindUserDevice", e.searchNumberHistory = "searchNumberHistory", e.changeWithdrawalCode = "changeWithdrawalCode", e.checkRedPacketToken = "checkRedPacketToken", e.submitWithdrawalAlipay = "submitWithdrawalAlipay", e.applyReliefFund = "applyReliefFund", e.getReliefFundData = "getReliefFundData", e.getReliefFundReport = "getReliefFundReport", e.getWeekCardData = "getWeekCardData", e.applyWeekCard = "applyWeekCard", e.getWeekCardClaim = "getWeekCardClaim", e.transferSetting = "transfersetting", e.transfer = "transfer", e.getIncentiveData = "getIncentiveData", e.getIncentiveRebate = "getIncentiveRebate", e.claimIncentiveRebate = "claimIncentiveRebate", e.getMissionData = "getMissionData", e.getMissionClaim = "getMissionClaim", e.registerForm = "registerForm", e.getFavouriteGame = "getFavouriteGame", e.updateFavouriteGame = "updateFavouriteGame", e.requestForgetUsername = "requestForgetUsername", e.submitForgetUsername = "submitForgetUsername", e.getAccumulateDepositData = "getAccumulateDepositData", e.getAccumulateDepositClaim = "getAccumulateDepositClaim", e.rebateRefundSetting = "rebateRefundSetting", e.getASCMatchCount = "getASCMatchCount", e.updateDeviceToken = "updateDeviceToken", e.getCryptoList = "getCryptoList", e.getCryptoAddress = "getCryptoAddress", e.getPopoutItem = "getPopoutItem", e.getTurnOverRewardSettingMult = "getTurnOverRewardSettingMult", e.interestIndex = "interestIndex", e.interestWalletInfo = "interestWalletInfo", e.interestTransactionList = "interestTransactionList", e.interestTransferIn = "interestTransferIn", e.interestTransferOut = "interestTransferOut", e.getWheelData = "getWheelData", e.getWheelTicket = "getWheelTicket", e.spinWheel = "spinWheel", e.getWheelReport = "getWheelReport", e.getWeekCardAllData = "getWeekCardAllData", e.searchGameByName = "searchGameByName", e.checkGoldEggValidate = "checkGoldEggValidate", e.applyGoldEgg = "applyGoldEgg", e.checkGoldEggToken = "checkGoldEggToken", e.getGoldEggData = "getGoldEggData", e.getNewbieMissionData = "getNewbieMissionData", e.getNewbieMissionClaim = "getNewbieMissionClaim", e.getFeedback = "getFeedback", e.submitFeedback = "submitFeedback", e.casinoGameList = "casinoGameList", e.isMobileRegistered = "isMobileRegistered", e))(u || {});
|
|
3560
|
-
const
|
|
3559
|
+
var u = /* @__PURE__ */ ((e) => (e.announcement = "announcement", e.gameList = "gameList", e.fishGameList = "fishGameList", e.cmsList = "cmsList", e.paymentsProvider = "paymentsProvider", e.getUserProfile = "getUserProfile", e.vipList = "vipList", e.vipStatus = "vipStatus", e.vipBonus = "vipBonus", e.vipFieldStatus = "vipFieldStatus", e.promotion = "promotion", e.getSetting = "getSetting", e.getCountryMobile = "getCountryMobile", e.getPlatformTurnoverRate = "getPlatformTurnoverRate", e.mainWallet = "mainWallet", e.getLanguageSetting = "getLanguageSetting", e.getFourDimensionData = "getfourDimensionData", e.getCompany = "getCompany", e.searchResultDate = "searchResultDate", e.searchHot = "searchHot", e.searchByDate = "searchByDate", e.upcomingMatches = "upcomingMatches", e.deposit = "deposit", e.applyVipBonus = "applyVipBonus", e.getBankCardData = "getBankCardData", e.withdrawalGet = "withdrawalGet", e.withdraw = "withdraw", e.addBankCard = "addBankCard", e.transactionReport = "transactionReport", e.changePassword = "changePassword", e.wallet = "wallet", e.getEventList = "getEventlist", e.getEventToken = "getEventToken", e.getExtraGame = "getExtraGame", e.mailBox = "mailBox", e.slotGameList = "slotGameList", e.getTurnOverRewardData = "getTurnOverRewardData", e.getTurnOverRewardReport = "getTurnOverRewardReport", e.getInviteRewardData = "getInviteRewardData", e.getInviteRewardReport = "getInviteRewardReport", e.getTopupRewardData = "getTopupRewardData", e.getTopupRewardReport = "getTopupRewardReport", e.getRewardReferral = "getRewardReferral", e.submitWithdrawValidate = "submitWithdrawValidate", e.getDepositPromotion = "getDepositPromotion", e.getInviteRewardClaim = "getInviteRewardClaim", e.getTopUpRewardClaim = "getTopupRewardClaim", e.getTurnOverRewardClaim = "getTurnOverRewardClaim", e.getInviteRewardSetting = "getInviteRewardSetting", e.getTopUpRewardSetting = "getTopupRewardSetting", e.getTurnOverRewardSetting = "getTurnOverRewardSetting", e.requestForgetPassword = "requestForgetPassword", e.submitForgetPassword = "submitForgetPassword", e.getImage = "getImage", e.getDepositValidate = "getDepositValidate", e.getTransferCreditValidate = "getTransferCreditValidate", e.getWithdrawValidate = "getWithdrawValidate", e.updateProfilePicture = "updateProfilePicture", e.readMail = "readMail", e.checkRedPacketValidate = "checkRedpacketValidate", e.requestTacCode = "requestTacCode", e.getUsernameByRefer = "getUsernameByRefer", e.applyPromo = "applyPromo", e.applyRedPacket = "applyRedpacket", e.applySignIn = "applySignIn", e.getCountry = "getCountry", e.submitGiftCode = "submitGiftCode", e.playGame = "playGame", e.transferToMain = "transferToMain", e.transferProcess = "transferProcess", e.submitDepositValidate = "submitDepositValidate", e.submitTransferCreditValidate = "submitTransferCreditValidate", e.checkTransferCredit = "checkTransferCredit", e.friendList = "friendList", e.friendListEdit = "friendListEdit", e.getActivePP = "getActivePP", e.getActiveProduct = "getActiveProduct", e.requestWithdrawTac = "requestWithdrawTac", e.requestWithdrawalCode = "requestWithdrawalCode", e.commissionWithdraw = "commissionWithdraw", e.submitWithdrawalCode = "submitWithdrawalCode", e.submitCryptoAccount = "submitCryptoAccount", e.requestTransferMoney = "requestTransferMoney", e.submitTransferMoney = "submitTransferMoney", e.getVerifyPromo = "getVerifyPromo", e.requestUpdateMobileTacCode = "requestUpdateMobileTacCode", e.submitUpdateMobileTacCode = "submitUpdateMobileTacCode", e.signInViewInfo = "signInViewInfo", e.signInRecord = "signInRecord", e.referralProfile = "referralProfile", e.referralMemberProfile = "referralMemberProfile", e.registerAction = "registerAction", e.transferReport = "transferReport", e.agTransferCreditReport = "agTransferCreditReport", e.betReport = "betReport", e.getTwoFactorAuthenticate = "getTwoFactorAuthenticate", e.getUserDeviceList = "getUserDeviceList", e.submitTwoFactorAuthenticate = "submitTwoFactorAuthenticate", e.unbindUserDevice = "unbindUserDevice", e.searchNumberHistory = "searchNumberHistory", e.changeWithdrawalCode = "changeWithdrawalCode", e.checkRedPacketToken = "checkRedPacketToken", e.submitWithdrawalAlipay = "submitWithdrawalAlipay", e.applyReliefFund = "applyReliefFund", e.getReliefFundData = "getReliefFundData", e.getReliefFundReport = "getReliefFundReport", e.getWeekCardData = "getWeekCardData", e.applyWeekCard = "applyWeekCard", e.getWeekCardClaim = "getWeekCardClaim", e.transferSetting = "transfersetting", e.transfer = "transfer", e.getIncentiveData = "getIncentiveData", e.getIncentiveRebate = "getIncentiveRebate", e.claimIncentiveRebate = "claimIncentiveRebate", e.getMissionData = "getMissionData", e.getMissionClaim = "getMissionClaim", e.registerForm = "registerForm", e.getFavouriteGame = "getFavouriteGame", e.updateFavouriteGame = "updateFavouriteGame", e.requestForgetUsername = "requestForgetUsername", e.submitForgetUsername = "submitForgetUsername", e.getAccumulateDepositData = "getAccumulateDepositData", e.getAccumulateDepositClaim = "getAccumulateDepositClaim", e.rebateRefundSetting = "rebateRefundSetting", e.getASCMatchCount = "getASCMatchCount", e.updateDeviceToken = "updateDeviceToken", e.getCryptoList = "getCryptoList", e.getCryptoAddress = "getCryptoAddress", e.getPopoutItem = "getPopoutItem", e.getTurnOverRewardSettingMult = "getTurnOverRewardSettingMult", e.interestIndex = "interestIndex", e.interestWalletInfo = "interestWalletInfo", e.interestTransactionList = "interestTransactionList", e.interestTransferIn = "interestTransferIn", e.interestTransferOut = "interestTransferOut", e.getWheelData = "getWheelData", e.getWheelTicket = "getWheelTicket", e.spinWheel = "spinWheel", e.getWheelReport = "getWheelReport", e.getWeekCardAllData = "getWeekCardAllData", e.searchGameByName = "searchGameByName", e.checkGoldEggValidate = "checkGoldEggValidate", e.applyGoldEgg = "applyGoldEgg", e.checkGoldEggToken = "checkGoldEggToken", e.getGoldEggData = "getGoldEggData", e.getNewbieMissionData = "getNewbieMissionData", e.getNewbieMissionClaim = "getNewbieMissionClaim", e.getFeedback = "getFeedback", e.submitFeedback = "submitFeedback", e.casinoGameList = "casinoGameList", e.isMobileRegistered = "isMobileRegistered", e.getActivePlatform = "getActivePlatform", e))(u || {});
|
|
3560
|
+
const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3561
3561
|
__proto__: null,
|
|
3562
3562
|
Api: u
|
|
3563
3563
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
3564
3564
|
var Y = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto = "auto", e.fix = "fix", e.manual = "manual", e.unknown = "unknown", e))(Y || {});
|
|
3565
|
-
const
|
|
3565
|
+
const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3566
3566
|
__proto__: null,
|
|
3567
3567
|
PaymentType: Y
|
|
3568
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
3568
|
+
}, Symbol.toStringTag, { value: "Module" })), Pe = {
|
|
3569
3569
|
depositBank: !1,
|
|
3570
3570
|
depositDateTime: !1,
|
|
3571
3571
|
depositDetail: !1,
|
|
@@ -3579,7 +3579,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3579
3579
|
type: Y.unknown,
|
|
3580
3580
|
promo: [],
|
|
3581
3581
|
bank: [],
|
|
3582
|
-
requiredField:
|
|
3582
|
+
requiredField: Pe,
|
|
3583
3583
|
hintMsg: ""
|
|
3584
3584
|
}, ps = (e) => {
|
|
3585
3585
|
var a;
|
|
@@ -3629,7 +3629,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3629
3629
|
paymentList: n
|
|
3630
3630
|
};
|
|
3631
3631
|
})) ?? [];
|
|
3632
|
-
},
|
|
3632
|
+
}, Re = (e) => {
|
|
3633
3633
|
const a = {
|
|
3634
3634
|
id: -1,
|
|
3635
3635
|
name: "excludePromo",
|
|
@@ -3678,7 +3678,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3678
3678
|
name: "manualMethod",
|
|
3679
3679
|
pathName: e,
|
|
3680
3680
|
type: n,
|
|
3681
|
-
promo:
|
|
3681
|
+
promo: Re(a.promo),
|
|
3682
3682
|
bank: a.bank.map((s) => {
|
|
3683
3683
|
const o = s.list && s.list.length > 0 ? s.list[0].mintransaction ?? "0.00" : "0.00", l = s.list && s.list.length > 0 ? s.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: i, maxAmount: c } = le(
|
|
3684
3684
|
Number(o),
|
|
@@ -3716,7 +3716,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3716
3716
|
name: "onlineBankingMethod",
|
|
3717
3717
|
pathName: e,
|
|
3718
3718
|
type: n,
|
|
3719
|
-
promo:
|
|
3719
|
+
promo: Re(a.promo),
|
|
3720
3720
|
bank: a.banklist.map((s) => {
|
|
3721
3721
|
let o = "0.00", l = "0.00";
|
|
3722
3722
|
const m = s.bankindex ?? 0;
|
|
@@ -3757,7 +3757,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3757
3757
|
gateway: [p, ...g]
|
|
3758
3758
|
};
|
|
3759
3759
|
}),
|
|
3760
|
-
requiredField:
|
|
3760
|
+
requiredField: Pe,
|
|
3761
3761
|
hintMsg: ""
|
|
3762
3762
|
};
|
|
3763
3763
|
}, ys = (e, a, t, n) => {
|
|
@@ -3804,9 +3804,9 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3804
3804
|
name: "autoMethod",
|
|
3805
3805
|
pathName: e,
|
|
3806
3806
|
type: r,
|
|
3807
|
-
promo:
|
|
3807
|
+
promo: Re(t.promo),
|
|
3808
3808
|
bank: s,
|
|
3809
|
-
requiredField:
|
|
3809
|
+
requiredField: Pe,
|
|
3810
3810
|
hintMsg: ""
|
|
3811
3811
|
};
|
|
3812
3812
|
}, hs = (e, a, t) => {
|
|
@@ -3816,7 +3816,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3816
3816
|
name: "fixAmountMethod",
|
|
3817
3817
|
pathName: e,
|
|
3818
3818
|
type: n,
|
|
3819
|
-
promo:
|
|
3819
|
+
promo: Re(t.promo),
|
|
3820
3820
|
bank: t.bank.map((s) => {
|
|
3821
3821
|
const o = s.amtlist.map(Number).sort((m, i) => m - i);
|
|
3822
3822
|
return {
|
|
@@ -3827,7 +3827,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3827
3827
|
max: o.length > 0 ? o[o.length - 1] : 0
|
|
3828
3828
|
};
|
|
3829
3829
|
}),
|
|
3830
|
-
requiredField:
|
|
3830
|
+
requiredField: Pe,
|
|
3831
3831
|
hintMsg: ""
|
|
3832
3832
|
};
|
|
3833
3833
|
}, _s = (e) => (e == null ? void 0 : e.map((a) => ({
|
|
@@ -3866,7 +3866,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3866
3866
|
new: (c.flag & 8) > 0
|
|
3867
3867
|
},
|
|
3868
3868
|
imageUrl: `${e.mdDomains[c.mdDomains_id]}${ee(c.img, c.id_GameMaster, `?ts=${c.filemtime}`)}`,
|
|
3869
|
-
logoUrl: `/image/platform_logo/${c.img.split("/").pop()}?v=1`,
|
|
3869
|
+
logoUrl: `/custom/image/platform_logo/${c.img.split("/").pop()}?v=1`,
|
|
3870
3870
|
rate: "0.00",
|
|
3871
3871
|
jackpotAmount: ""
|
|
3872
3872
|
}))) ?? [] : []
|
|
@@ -3888,7 +3888,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3888
3888
|
new: (l.flag ?? 0) > 0
|
|
3889
3889
|
},
|
|
3890
3890
|
imageUrl: e.mdDomains && e.mdDomains.length > 0 ? `${e.mdDomains[l.mdDomains_id ?? 0]}${ee(l.img ?? "", l.id ?? 0, `?ts=${l.filemtime}`)}` : "",
|
|
3891
|
-
logoUrl: `/image/platform_logo/platform_logo_${l.code_PlatformProduct}.png?v=1`,
|
|
3891
|
+
logoUrl: `/custom/image/platform_logo/platform_logo_${l.code_PlatformProduct}.png?v=1`,
|
|
3892
3892
|
rate: "0.00",
|
|
3893
3893
|
jackpotAmount: l.jackpotAmount ?? ""
|
|
3894
3894
|
}))) == null ? void 0 : o.sort((l, m) => (m.jackpotAmount ? 1 : 0) - (l.jackpotAmount ? 1 : 0))) ?? []
|
|
@@ -3899,7 +3899,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3899
3899
|
var a, t;
|
|
3900
3900
|
return {
|
|
3901
3901
|
list: ((a = e.mdGrade) == null ? void 0 : a.map((n) => {
|
|
3902
|
-
var r, s, o, l, m, i, c, b, p, g, T, _, k, C, D, h, y, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, bt, yt, ht, _t, Tt, vt, wt,
|
|
3902
|
+
var r, s, o, l, m, i, c, b, p, g, T, _, k, C, D, h, y, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, bt, yt, ht, _t, Tt, vt, wt, Pt, Rt, Dt, kt, xt, Ot;
|
|
3903
3903
|
return {
|
|
3904
3904
|
id: n.gradeindex,
|
|
3905
3905
|
is_current_level: !1,
|
|
@@ -3976,7 +3976,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3976
3976
|
salary_20th: {
|
|
3977
3977
|
isShow: !0,
|
|
3978
3978
|
bonus: v(((wt = (vt = n.benefit) == null ? void 0 : vt.salary_20th) == null ? void 0 : wt.bonus) ?? "0"),
|
|
3979
|
-
bonus_name: ((
|
|
3979
|
+
bonus_name: ((Rt = (Pt = n.benefit) == null ? void 0 : Pt.salary_20th) == null ? void 0 : Rt.bonus_name) ?? "",
|
|
3980
3980
|
turnover: v(((kt = (Dt = n.benefit) == null ? void 0 : Dt.salary_20th) == null ? void 0 : kt.turnover) ?? "0"),
|
|
3981
3981
|
turnover_name: ((Ot = (xt = n.benefit) == null ? void 0 : xt.salary_20th) == null ? void 0 : Ot.turnover_name) ?? ""
|
|
3982
3982
|
}
|
|
@@ -4082,7 +4082,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4082
4082
|
content: n.content
|
|
4083
4083
|
}))) ?? []
|
|
4084
4084
|
};
|
|
4085
|
-
},
|
|
4085
|
+
}, Ps = (e) => ({
|
|
4086
4086
|
category: e.category.map((a) => ({
|
|
4087
4087
|
id: a.catid,
|
|
4088
4088
|
name: a.name
|
|
@@ -4101,7 +4101,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4101
4101
|
amountDisplay: ((r = a.promo_cash) == null ? void 0 : r.display) ?? ""
|
|
4102
4102
|
};
|
|
4103
4103
|
}).sort((a, t) => a.claimable && !t.claimable ? -1 : !a.claimable && t.claimable ? 1 : 0)
|
|
4104
|
-
}),
|
|
4104
|
+
}), Rs = (e) => ({
|
|
4105
4105
|
month: {
|
|
4106
4106
|
status: q(e.month)
|
|
4107
4107
|
},
|
|
@@ -4182,7 +4182,8 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4182
4182
|
},
|
|
4183
4183
|
facebookPixelId: e.facebookpixelid ?? "",
|
|
4184
4184
|
facebookPixelIdArr: e.facebook_pixel_id_arr ?? [],
|
|
4185
|
-
googleAnalyticArr: e.google_analytic_arr ?? []
|
|
4185
|
+
googleAnalyticArr: e.google_analytic_arr ?? [],
|
|
4186
|
+
agentLinkRedirectPath: e.agentlink_first_redirect ?? ""
|
|
4186
4187
|
};
|
|
4187
4188
|
}, Os = (e) => {
|
|
4188
4189
|
var a, t, n, r, s, o, l, m;
|
|
@@ -4347,10 +4348,10 @@ const Gs = (e) => {
|
|
|
4347
4348
|
status: e.status == 1,
|
|
4348
4349
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
4349
4350
|
flag: e.flag
|
|
4350
|
-
}),
|
|
4351
|
+
}), R = (e) => ({
|
|
4351
4352
|
status: e.status == 1,
|
|
4352
4353
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
|
|
4353
|
-
}), Ys = (e) =>
|
|
4354
|
+
}), Ys = (e) => R(e), Bs = (e) => {
|
|
4354
4355
|
var a, t, n, r, s;
|
|
4355
4356
|
return {
|
|
4356
4357
|
bankCard: ((a = e.bankCard) == null ? void 0 : a.map((o) => {
|
|
@@ -4417,9 +4418,9 @@ const Gs = (e) => {
|
|
|
4417
4418
|
withdrawCount: e.withdrawCount,
|
|
4418
4419
|
withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
|
|
4419
4420
|
withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
|
|
4420
|
-
}), Us = (e) =>
|
|
4421
|
+
}), Us = (e) => R(e);
|
|
4421
4422
|
var L = /* @__PURE__ */ ((e) => (e.deposit = "deposit", e.withdraw = "withdraw", e.promo = "promotion", e.manual = "adjustment", e.cashIn = "cashIn", e.cashOut = "cashOut", e.transfer = "transfer", e.incentive = "incentive", e.upgradeBonus = "upgradeBonus", e.extension = "extension", e.creditTransfer = "creditTransfer", e.shareHolder = "shareHolderDividend", e))(L || {});
|
|
4422
|
-
const
|
|
4423
|
+
const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4423
4424
|
__proto__: null,
|
|
4424
4425
|
TransactionMethod: L
|
|
4425
4426
|
}, Symbol.toStringTag, { value: "Module" })), qs = (e) => {
|
|
@@ -4569,7 +4570,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4569
4570
|
new: !1
|
|
4570
4571
|
},
|
|
4571
4572
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
4572
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1`,
|
|
4573
|
+
logoUrl: `/custom/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1`,
|
|
4573
4574
|
rate: "0.00",
|
|
4574
4575
|
jackpotAmount: ""
|
|
4575
4576
|
}))) ?? []
|
|
@@ -4793,7 +4794,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4793
4794
|
}
|
|
4794
4795
|
}
|
|
4795
4796
|
return a;
|
|
4796
|
-
}, yo = (e) =>
|
|
4797
|
+
}, yo = (e) => R(e), ho = (e) => R(e), _o = (e) => {
|
|
4797
4798
|
var a, t, n, r, s;
|
|
4798
4799
|
return {
|
|
4799
4800
|
status: e.status == 1,
|
|
@@ -4825,7 +4826,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4825
4826
|
regex: a.regex,
|
|
4826
4827
|
showName: a.showname,
|
|
4827
4828
|
inputHelper: a.inputHelper
|
|
4828
|
-
})) : [], vo = (e) =>
|
|
4829
|
+
})) : [], vo = (e) => R(e), wo = (e) => e, Po = (e) => {
|
|
4829
4830
|
var a;
|
|
4830
4831
|
return {
|
|
4831
4832
|
status: e.status == 1,
|
|
@@ -4835,7 +4836,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4835
4836
|
ledgerIndex: e.checkgame.ledgerindex ?? 0,
|
|
4836
4837
|
amount: e.checkgame.amount ?? ""
|
|
4837
4838
|
};
|
|
4838
|
-
},
|
|
4839
|
+
}, Ro = (e) => R(e), Do = (e) => ({
|
|
4839
4840
|
status: e.status == 1,
|
|
4840
4841
|
message: e.message,
|
|
4841
4842
|
user: e.user ?? ""
|
|
@@ -4843,7 +4844,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4843
4844
|
status: e.status == 1,
|
|
4844
4845
|
message: e.msg ?? "",
|
|
4845
4846
|
amount: e.amount ?? ""
|
|
4846
|
-
}), xo = (e) =>
|
|
4847
|
+
}), xo = (e) => R(e), Oo = (e) => {
|
|
4847
4848
|
var a;
|
|
4848
4849
|
return {
|
|
4849
4850
|
status: e.status == 1,
|
|
@@ -4877,10 +4878,10 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4877
4878
|
message: e.msg ?? "",
|
|
4878
4879
|
form: e.form ?? "",
|
|
4879
4880
|
gameUrl: e.data ?? ""
|
|
4880
|
-
}), jo = (e) =>
|
|
4881
|
+
}), jo = (e) => R(e), Co = (e) => R(e), je = (e) => ({
|
|
4881
4882
|
status: e.status == 1,
|
|
4882
4883
|
message: e.errormessage ?? ""
|
|
4883
|
-
}), No = (e) =>
|
|
4884
|
+
}), No = (e) => R(e), Lo = (e) => e, $o = (e) => R(e), Go = (e) => {
|
|
4884
4885
|
var a;
|
|
4885
4886
|
return {
|
|
4886
4887
|
platformProduct: ((a = e.mdPlatformProduct) == null ? void 0 : a.map((t) => ({
|
|
@@ -4904,7 +4905,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4904
4905
|
}))) ?? []
|
|
4905
4906
|
};
|
|
4906
4907
|
})) ?? [];
|
|
4907
|
-
}, zo = (e) =>
|
|
4908
|
+
}, zo = (e) => R(e), Wo = (e) => R(e), Eo = (e) => R(e), Yo = (e) => R(e), Bo = (e) => R(e), Ho = (e) => R(e), Uo = (e) => R(e), qo = (e) => ({
|
|
4908
4909
|
status: e.status == 1,
|
|
4909
4910
|
message: e.msg ?? "",
|
|
4910
4911
|
data: e.data
|
|
@@ -4987,7 +4988,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4987
4988
|
password: e.password
|
|
4988
4989
|
});
|
|
4989
4990
|
var be = /* @__PURE__ */ ((e) => (e.toPlatform = "transferIn", e.toWallet = "transferOut", e))(be || {});
|
|
4990
|
-
const
|
|
4991
|
+
const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4991
4992
|
__proto__: null,
|
|
4992
4993
|
TransferMethod: be
|
|
4993
4994
|
}, Symbol.toStringTag, { value: "Module" })), ei = (e) => {
|
|
@@ -5066,7 +5067,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5066
5067
|
binded: ((n = e.data) == null ? void 0 : n.binded) ?? !1
|
|
5067
5068
|
}
|
|
5068
5069
|
};
|
|
5069
|
-
}, ri = (e) =>
|
|
5070
|
+
}, ri = (e) => R(e), si = (e) => {
|
|
5070
5071
|
var a;
|
|
5071
5072
|
return {
|
|
5072
5073
|
status: e.status == 1,
|
|
@@ -5076,7 +5077,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5076
5077
|
createdAt: t.created_at
|
|
5077
5078
|
}))) ?? []
|
|
5078
5079
|
};
|
|
5079
|
-
}, oi = (e) =>
|
|
5080
|
+
}, oi = (e) => R(e), ii = (e) => {
|
|
5080
5081
|
var a, t, n;
|
|
5081
5082
|
return {
|
|
5082
5083
|
status: e.status == 1,
|
|
@@ -5101,11 +5102,11 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5101
5102
|
}))) ?? []
|
|
5102
5103
|
}
|
|
5103
5104
|
};
|
|
5104
|
-
}, ui = (e) =>
|
|
5105
|
+
}, ui = (e) => R(e), ci = (e) => ({
|
|
5105
5106
|
status: e.status == 1,
|
|
5106
5107
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
5107
5108
|
tokenAmount: e.token_amount
|
|
5108
|
-
}), li = (e) =>
|
|
5109
|
+
}), li = (e) => R(e), di = (e) => {
|
|
5109
5110
|
let a = 0;
|
|
5110
5111
|
return e.data != null && typeof e.data == "object" && (a = e.data.amount), {
|
|
5111
5112
|
status: e.status,
|
|
@@ -5188,7 +5189,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5188
5189
|
errorMessage: e.errormessage ?? "",
|
|
5189
5190
|
isAutoTransfer: e.optionkey == "auto" || ((a = e.message) == null ? void 0 : a.optionkey) == "auto" || ((t = e.mdAccountSetting) == null ? void 0 : t.optionkey) == "auto"
|
|
5190
5191
|
};
|
|
5191
|
-
}, hi = (e) =>
|
|
5192
|
+
}, hi = (e) => R(e), _i = (e) => ({
|
|
5192
5193
|
status: e.status,
|
|
5193
5194
|
message: e.msg ?? "",
|
|
5194
5195
|
turnover: e.data ? e.data.turnover : 0,
|
|
@@ -5211,7 +5212,7 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5211
5212
|
};
|
|
5212
5213
|
};
|
|
5213
5214
|
var W = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(W || {});
|
|
5214
|
-
const
|
|
5215
|
+
const Vu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5215
5216
|
__proto__: null,
|
|
5216
5217
|
MissionStatus: W
|
|
5217
5218
|
}, Symbol.toStringTag, { value: "Module" })), wi = (e) => {
|
|
@@ -5237,7 +5238,7 @@ const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5237
5238
|
percentage: Xt(t)
|
|
5238
5239
|
},
|
|
5239
5240
|
grandPrize: {
|
|
5240
|
-
countDownTimestamp:
|
|
5241
|
+
countDownTimestamp: Pi(e.data.dateto),
|
|
5241
5242
|
status: e.data.final_claimable ? e.data.final_collected === "1" ? W.collected : W.collectable : W.inProgress,
|
|
5242
5243
|
prize: e.data.reward
|
|
5243
5244
|
}
|
|
@@ -5264,10 +5265,10 @@ const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5264
5265
|
}, Xt = (e) => {
|
|
5265
5266
|
const a = e.reduce((n, r) => n + parseFloat(r.reward), 0), t = e.reduce((n, r) => n + r.progress.total, 0);
|
|
5266
5267
|
return t > 0 ? (a / t * 100).toFixed(2) : "0";
|
|
5267
|
-
},
|
|
5268
|
+
}, Pi = (e) => {
|
|
5268
5269
|
const a = (/* @__PURE__ */ new Date()).getTime(), t = new Date(e).getTime();
|
|
5269
5270
|
return Math.max(0, t - a);
|
|
5270
|
-
},
|
|
5271
|
+
}, Ri = (e) => ({
|
|
5271
5272
|
status: e.status,
|
|
5272
5273
|
message: e.msg ?? ""
|
|
5273
5274
|
}), Di = (e) => ({
|
|
@@ -5298,13 +5299,13 @@ const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5298
5299
|
new: !1
|
|
5299
5300
|
},
|
|
5300
5301
|
imageUrl: `${e.mdDomains[a.mdDomains_id]}${ee(a.img, a.id, `?ts=${a.filemtime}`)}`,
|
|
5301
|
-
logoUrl: `/image/platform_logo/platform_logo_${a.code}.png?v=1`,
|
|
5302
|
+
logoUrl: `/custom/image/platform_logo/platform_logo_${a.code}.png?v=1`,
|
|
5302
5303
|
rate: "0.00",
|
|
5303
5304
|
jackpotAmount: ""
|
|
5304
5305
|
})) ?? [] : []
|
|
5305
|
-
}), xi = (e) =>
|
|
5306
|
+
}), xi = (e) => R(e), Oi = (e) => R(e);
|
|
5306
5307
|
var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
|
|
5307
|
-
const
|
|
5308
|
+
const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5308
5309
|
__proto__: null,
|
|
5309
5310
|
AccumulateDepositStatus: A
|
|
5310
5311
|
}, Symbol.toStringTag, { value: "Module" })), Mi = (e) => {
|
|
@@ -5527,7 +5528,7 @@ const Vu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5527
5528
|
data: e.data ?? 0
|
|
5528
5529
|
});
|
|
5529
5530
|
var ye = /* @__PURE__ */ ((e) => (e.complete = "complete", e.pending = "pending", e))(ye || {});
|
|
5530
|
-
const
|
|
5531
|
+
const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5531
5532
|
__proto__: null,
|
|
5532
5533
|
WheelStatus: ye
|
|
5533
5534
|
}, Symbol.toStringTag, { value: "Module" })), Ai = (e) => {
|
|
@@ -5601,7 +5602,7 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5601
5602
|
new: !1
|
|
5602
5603
|
},
|
|
5603
5604
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
5604
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code}.png?v=1`,
|
|
5605
|
+
logoUrl: `/custom/image/platform_logo/platform_logo_${s.code}.png?v=1`,
|
|
5605
5606
|
rate: "0.00",
|
|
5606
5607
|
jackpotAmount: ""
|
|
5607
5608
|
}))) ?? []
|
|
@@ -5625,9 +5626,9 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5625
5626
|
status: e.status == 1,
|
|
5626
5627
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
5627
5628
|
tokenAmount: e.token_amount
|
|
5628
|
-
}), eu = (e) =>
|
|
5629
|
+
}), eu = (e) => R(e);
|
|
5629
5630
|
var J = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(J || {});
|
|
5630
|
-
const
|
|
5631
|
+
const Xu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5631
5632
|
__proto__: null,
|
|
5632
5633
|
NewbieMissionStatus: J
|
|
5633
5634
|
}, Symbol.toStringTag, { value: "Module" })), tu = (e) => {
|
|
@@ -5673,8 +5674,8 @@ const Qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5673
5674
|
promoAmount: e.data.promo_amount ?? "0"
|
|
5674
5675
|
}
|
|
5675
5676
|
};
|
|
5676
|
-
var ue = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e.loginCaptcha = "logincaptcha", e.registerCaptcha = "registercaptcha", e.telegramAuthDomain = "telegramauthdomain", e.telegramBotId = "telegrambotid", e.registerwa = "registerwa", e.forgetUser = "forgetuser", e.contactUsSetting = "contact_us_setting", e.facebookPixelId = "facebookpixelid", e.facebookPixelIdArr = "facebook_pixel_id_arr", e.googleAnalyticArr = "google_analytic_arr", e))(ue || {});
|
|
5677
|
-
const
|
|
5677
|
+
var ue = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e.loginCaptcha = "logincaptcha", e.registerCaptcha = "registercaptcha", e.telegramAuthDomain = "telegramauthdomain", e.telegramBotId = "telegrambotid", e.registerwa = "registerwa", e.forgetUser = "forgetuser", e.contactUsSetting = "contact_us_setting", e.facebookPixelId = "facebookpixelid", e.facebookPixelIdArr = "facebook_pixel_id_arr", e.googleAnalyticArr = "google_analytic_arr", e.agentLinkFirstRedirect = "agentlink_first_redirect", e))(ue || {});
|
|
5678
|
+
const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5678
5679
|
__proto__: null,
|
|
5679
5680
|
SettingCategory: ue
|
|
5680
5681
|
}, Symbol.toStringTag, { value: "Module" })), nu = (e) => {
|
|
@@ -5966,7 +5967,7 @@ const Xu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5966
5967
|
return e;
|
|
5967
5968
|
};
|
|
5968
5969
|
var ce = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e.appAd = "appAd", e.deposit = "deposit", e.eventPopupBotLeft = "eventPopupBotLeft", e.eventPopupBotRight = "eventPopupBotRight", e))(ce || {});
|
|
5969
|
-
const
|
|
5970
|
+
const Ju = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5970
5971
|
__proto__: null,
|
|
5971
5972
|
CmsCategory: ce
|
|
5972
5973
|
}, Symbol.toStringTag, { value: "Module" })), iu = (e) => {
|
|
@@ -6175,7 +6176,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6175
6176
|
});
|
|
6176
6177
|
}
|
|
6177
6178
|
return e;
|
|
6178
|
-
},
|
|
6179
|
+
}, Pu = (e) => {
|
|
6179
6180
|
const a = e.findIndex(
|
|
6180
6181
|
(t) => t.name === u.getFourDimensionData
|
|
6181
6182
|
);
|
|
@@ -6195,7 +6196,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6195
6196
|
})
|
|
6196
6197
|
}
|
|
6197
6198
|
)), e;
|
|
6198
|
-
},
|
|
6199
|
+
}, Ru = (e) => e.status == 0 ? {
|
|
6199
6200
|
status: !1,
|
|
6200
6201
|
message: e.errormessage ?? "",
|
|
6201
6202
|
data: null
|
|
@@ -6257,7 +6258,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6257
6258
|
new: !1
|
|
6258
6259
|
},
|
|
6259
6260
|
imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
|
|
6260
|
-
logoUrl: `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1`,
|
|
6261
|
+
logoUrl: `/custom/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1`,
|
|
6261
6262
|
rate: "0.00",
|
|
6262
6263
|
jackpotAmount: ""
|
|
6263
6264
|
}))) ?? []
|
|
@@ -6265,10 +6266,16 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6265
6266
|
}, Mu = (e) => (console.log(e), {
|
|
6266
6267
|
status: e.status,
|
|
6267
6268
|
message: e.msg ?? ""
|
|
6268
|
-
}), Su =
|
|
6269
|
+
}), Su = (e) => {
|
|
6270
|
+
var a;
|
|
6271
|
+
return ((a = e.mdPlatformMaster) == null ? void 0 : a.map((t) => ({
|
|
6272
|
+
platformId: t.id,
|
|
6273
|
+
logoUrl: `/custom/image/platform_logo/platform_logo_${t.code}.png?v=1`
|
|
6274
|
+
}))) ?? [];
|
|
6275
|
+
}, Iu = async (e) => {
|
|
6269
6276
|
var a, t;
|
|
6270
6277
|
try {
|
|
6271
|
-
e = lu(e), e = nu(e), e = su(e), e = iu(e), e = du(e), e = gu(e), e = bu(e), e = yu(e), e = Tu(e), e = vu(e), e = wu(e), e =
|
|
6278
|
+
e = lu(e), e = nu(e), e = su(e), e = iu(e), e = du(e), e = gu(e), e = bu(e), e = yu(e), e = Tu(e), e = vu(e), e = wu(e), e = Pu(e), e = xu(e);
|
|
6272
6279
|
const r = {
|
|
6273
6280
|
requests: e.map((l) => ({
|
|
6274
6281
|
name: l.name,
|
|
@@ -6310,7 +6317,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6310
6317
|
o.result[i] = ws(c);
|
|
6311
6318
|
break;
|
|
6312
6319
|
case u.vipBonus:
|
|
6313
|
-
o.result[i] =
|
|
6320
|
+
o.result[i] = Rs(c);
|
|
6314
6321
|
break;
|
|
6315
6322
|
case u.vipFieldStatus:
|
|
6316
6323
|
o.result[i] = Ds(c);
|
|
@@ -6319,7 +6326,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6319
6326
|
o.result[i] = ks(c);
|
|
6320
6327
|
break;
|
|
6321
6328
|
case u.promotion:
|
|
6322
|
-
o.result[i] =
|
|
6329
|
+
o.result[i] = Ps(c);
|
|
6323
6330
|
break;
|
|
6324
6331
|
case u.getSetting:
|
|
6325
6332
|
o.result[i] = xs(c);
|
|
@@ -6519,12 +6526,12 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6519
6526
|
o.result[i] = wo(c);
|
|
6520
6527
|
break;
|
|
6521
6528
|
case u.checkRedPacketValidate:
|
|
6522
|
-
o.result[i] =
|
|
6529
|
+
o.result[i] = Po(
|
|
6523
6530
|
c
|
|
6524
6531
|
);
|
|
6525
6532
|
break;
|
|
6526
6533
|
case u.requestTacCode:
|
|
6527
|
-
o.result[i] =
|
|
6534
|
+
o.result[i] = Ro(c);
|
|
6528
6535
|
break;
|
|
6529
6536
|
case u.getUsernameByRefer:
|
|
6530
6537
|
o.result[i] = Do(
|
|
@@ -6755,7 +6762,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6755
6762
|
o.result[i] = wi(c);
|
|
6756
6763
|
break;
|
|
6757
6764
|
case u.getMissionClaim:
|
|
6758
|
-
o.result[i] =
|
|
6765
|
+
o.result[i] = Ri(
|
|
6759
6766
|
c
|
|
6760
6767
|
);
|
|
6761
6768
|
break;
|
|
@@ -6895,7 +6902,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6895
6902
|
);
|
|
6896
6903
|
break;
|
|
6897
6904
|
case u.getFeedback:
|
|
6898
|
-
o.result[i] =
|
|
6905
|
+
o.result[i] = Ru(c);
|
|
6899
6906
|
break;
|
|
6900
6907
|
case u.submitFeedback:
|
|
6901
6908
|
o.result[i] = Du(c);
|
|
@@ -6908,6 +6915,11 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6908
6915
|
c
|
|
6909
6916
|
);
|
|
6910
6917
|
break;
|
|
6918
|
+
case u.getActivePlatform:
|
|
6919
|
+
o.result[i] = Su(
|
|
6920
|
+
c
|
|
6921
|
+
);
|
|
6922
|
+
break;
|
|
6911
6923
|
}
|
|
6912
6924
|
}
|
|
6913
6925
|
return o.result = cu(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = uu(o.result), o.result = mu(o.result), o.result = fu(o.result), o.result = pu(o.result), o.result = hu(o.result), o.result = _u(o.result), o.result = ku(o.result), o;
|
|
@@ -6922,10 +6934,10 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6922
6934
|
result: {}
|
|
6923
6935
|
});
|
|
6924
6936
|
}
|
|
6925
|
-
},
|
|
6937
|
+
}, Ku = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6926
6938
|
__proto__: null,
|
|
6927
|
-
post:
|
|
6928
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6939
|
+
post: Iu
|
|
6940
|
+
}, Symbol.toStringTag, { value: "Module" })), ju = async (e) => {
|
|
6929
6941
|
let a = {
|
|
6930
6942
|
status: 200,
|
|
6931
6943
|
message: ""
|
|
@@ -6942,10 +6954,10 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6942
6954
|
};
|
|
6943
6955
|
}
|
|
6944
6956
|
return a;
|
|
6945
|
-
},
|
|
6957
|
+
}, ec = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6946
6958
|
__proto__: null,
|
|
6947
|
-
call:
|
|
6948
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
6959
|
+
call: ju
|
|
6960
|
+
}, Symbol.toStringTag, { value: "Module" })), Cu = async (e, a) => {
|
|
6949
6961
|
let t = {
|
|
6950
6962
|
status: 200,
|
|
6951
6963
|
message: ""
|
|
@@ -6965,9 +6977,9 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6965
6977
|
};
|
|
6966
6978
|
}
|
|
6967
6979
|
return t;
|
|
6968
|
-
},
|
|
6980
|
+
}, tc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6969
6981
|
__proto__: null,
|
|
6970
|
-
call:
|
|
6982
|
+
call: Cu
|
|
6971
6983
|
}, Symbol.toStringTag, { value: "Module" })), Zt = {
|
|
6972
6984
|
data: {
|
|
6973
6985
|
startTimestamp: 0,
|
|
@@ -6975,7 +6987,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6975
6987
|
dailyIncrease: 0,
|
|
6976
6988
|
updateInterval: 0
|
|
6977
6989
|
}
|
|
6978
|
-
},
|
|
6990
|
+
}, Nu = async () => {
|
|
6979
6991
|
let e = {
|
|
6980
6992
|
status: 200,
|
|
6981
6993
|
message: "",
|
|
@@ -6997,10 +7009,10 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6997
7009
|
};
|
|
6998
7010
|
}
|
|
6999
7011
|
return e;
|
|
7000
|
-
},
|
|
7012
|
+
}, ac = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7001
7013
|
__proto__: null,
|
|
7002
|
-
call:
|
|
7003
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
7014
|
+
call: Nu
|
|
7015
|
+
}, Symbol.toStringTag, { value: "Module" })), Lu = async () => {
|
|
7004
7016
|
let e = {
|
|
7005
7017
|
status: 200,
|
|
7006
7018
|
message: ""
|
|
@@ -7014,9 +7026,9 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7014
7026
|
};
|
|
7015
7027
|
}
|
|
7016
7028
|
return e;
|
|
7017
|
-
},
|
|
7029
|
+
}, nc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7018
7030
|
__proto__: null,
|
|
7019
|
-
call:
|
|
7031
|
+
call: Lu
|
|
7020
7032
|
}, Symbol.toStringTag, { value: "Module" })), Jt = {
|
|
7021
7033
|
data: {
|
|
7022
7034
|
status: !1,
|
|
@@ -7027,7 +7039,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7027
7039
|
accountId: 0
|
|
7028
7040
|
}
|
|
7029
7041
|
}
|
|
7030
|
-
},
|
|
7042
|
+
}, $u = async () => {
|
|
7031
7043
|
let e = {
|
|
7032
7044
|
status: 200,
|
|
7033
7045
|
message: "",
|
|
@@ -7052,15 +7064,15 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7052
7064
|
};
|
|
7053
7065
|
}
|
|
7054
7066
|
return e;
|
|
7055
|
-
},
|
|
7067
|
+
}, rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7056
7068
|
__proto__: null,
|
|
7057
|
-
call:
|
|
7069
|
+
call: $u
|
|
7058
7070
|
}, Symbol.toStringTag, { value: "Module" })), Kt = {
|
|
7059
7071
|
data: {
|
|
7060
7072
|
status: !1,
|
|
7061
7073
|
message: ""
|
|
7062
7074
|
}
|
|
7063
|
-
},
|
|
7075
|
+
}, Gu = async (e, a) => {
|
|
7064
7076
|
let t = {
|
|
7065
7077
|
status: 200,
|
|
7066
7078
|
message: "",
|
|
@@ -7085,10 +7097,10 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7085
7097
|
};
|
|
7086
7098
|
}
|
|
7087
7099
|
return t;
|
|
7088
|
-
},
|
|
7100
|
+
}, sc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7089
7101
|
__proto__: null,
|
|
7090
|
-
call:
|
|
7091
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
7102
|
+
call: Gu
|
|
7103
|
+
}, Symbol.toStringTag, { value: "Module" })), Fu = async (e, a, t, n, r) => {
|
|
7092
7104
|
let s = {
|
|
7093
7105
|
status: 200,
|
|
7094
7106
|
message: "",
|
|
@@ -7126,9 +7138,9 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7126
7138
|
};
|
|
7127
7139
|
}
|
|
7128
7140
|
return s;
|
|
7129
|
-
},
|
|
7141
|
+
}, oc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7130
7142
|
__proto__: null,
|
|
7131
|
-
call:
|
|
7143
|
+
call: Fu
|
|
7132
7144
|
}, Symbol.toStringTag, { value: "Module" })), ea = {
|
|
7133
7145
|
data: {
|
|
7134
7146
|
status: !1,
|
|
@@ -7139,7 +7151,7 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7139
7151
|
endTime: ""
|
|
7140
7152
|
}
|
|
7141
7153
|
}
|
|
7142
|
-
},
|
|
7154
|
+
}, zu = async () => {
|
|
7143
7155
|
var a, t, n;
|
|
7144
7156
|
let e = {
|
|
7145
7157
|
status: 200,
|
|
@@ -7165,11 +7177,9 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7165
7177
|
};
|
|
7166
7178
|
}
|
|
7167
7179
|
return e;
|
|
7168
|
-
},
|
|
7180
|
+
}, ic = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7169
7181
|
__proto__: null,
|
|
7170
|
-
call:
|
|
7171
|
-
}, Symbol.toStringTag, { value: "Module" })), ic = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7172
|
-
__proto__: null
|
|
7182
|
+
call: zu
|
|
7173
7183
|
}, Symbol.toStringTag, { value: "Module" })), uc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7174
7184
|
__proto__: null
|
|
7175
7185
|
}, Symbol.toStringTag, { value: "Module" })), cc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7200,10 +7210,10 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7200
7210
|
__proto__: null
|
|
7201
7211
|
}, Symbol.toStringTag, { value: "Module" })), wc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7202
7212
|
__proto__: null
|
|
7203
|
-
}, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7204
|
-
__proto__: null
|
|
7205
7213
|
}, Symbol.toStringTag, { value: "Module" })), Pc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7206
7214
|
__proto__: null
|
|
7215
|
+
}, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7216
|
+
__proto__: null
|
|
7207
7217
|
}, Symbol.toStringTag, { value: "Module" })), Dc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7208
7218
|
__proto__: null
|
|
7209
7219
|
}, Symbol.toStringTag, { value: "Module" })), kc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7252,13 +7262,13 @@ const Zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7252
7262
|
__proto__: null
|
|
7253
7263
|
}, Symbol.toStringTag, { value: "Module" })), Ac = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7254
7264
|
__proto__: null
|
|
7265
|
+
}, Symbol.toStringTag, { value: "Module" })), Qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7266
|
+
__proto__: null
|
|
7255
7267
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
7256
7268
|
var _a = /* @__PURE__ */ ((e) => (e.default = "default", e.online = "online", e.mycard = "mycard", e.qrcode = "qrcode", e.personal = "personal", e))(_a || {});
|
|
7257
|
-
const
|
|
7269
|
+
const Xc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7258
7270
|
__proto__: null,
|
|
7259
7271
|
ImageCategory: _a
|
|
7260
|
-
}, Symbol.toStringTag, { value: "Module" })), Xc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7261
|
-
__proto__: null
|
|
7262
7272
|
}, Symbol.toStringTag, { value: "Module" })), Zc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7263
7273
|
__proto__: null
|
|
7264
7274
|
}, Symbol.toStringTag, { value: "Module" })), Jc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7311,10 +7321,10 @@ const Qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7311
7321
|
__proto__: null
|
|
7312
7322
|
}, Symbol.toStringTag, { value: "Module" })), wl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7313
7323
|
__proto__: null
|
|
7314
|
-
}, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7315
|
-
__proto__: null
|
|
7316
7324
|
}, Symbol.toStringTag, { value: "Module" })), Pl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7317
7325
|
__proto__: null
|
|
7326
|
+
}, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7327
|
+
__proto__: null
|
|
7318
7328
|
}, Symbol.toStringTag, { value: "Module" })), Dl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7319
7329
|
__proto__: null
|
|
7320
7330
|
}, Symbol.toStringTag, { value: "Module" })), kl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7419,162 +7429,167 @@ const Qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7419
7429
|
__proto__: null
|
|
7420
7430
|
}, Symbol.toStringTag, { value: "Module" })), wd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7421
7431
|
__proto__: null
|
|
7422
|
-
}, Symbol.toStringTag, { value: "Module" })), Rd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7423
|
-
__proto__: null
|
|
7424
7432
|
}, Symbol.toStringTag, { value: "Module" })), Pd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7425
7433
|
__proto__: null
|
|
7434
|
+
}, Symbol.toStringTag, { value: "Module" })), Rd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7435
|
+
__proto__: null
|
|
7426
7436
|
}, Symbol.toStringTag, { value: "Module" })), Dd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7427
7437
|
__proto__: null
|
|
7438
|
+
}, Symbol.toStringTag, { value: "Module" })), kd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7439
|
+
__proto__: null
|
|
7440
|
+
}, Symbol.toStringTag, { value: "Module" })), xd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7441
|
+
__proto__: null
|
|
7428
7442
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
7429
7443
|
export {
|
|
7430
|
-
|
|
7431
|
-
|
|
7432
|
-
|
|
7433
|
-
|
|
7434
|
-
|
|
7435
|
-
|
|
7436
|
-
|
|
7437
|
-
|
|
7438
|
-
|
|
7439
|
-
|
|
7440
|
-
|
|
7441
|
-
|
|
7442
|
-
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
|
|
7457
|
-
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
|
-
|
|
7444
|
+
_c as addBankCardType,
|
|
7445
|
+
Ol as agTransferCreditReportType,
|
|
7446
|
+
lc as announcementType,
|
|
7447
|
+
Ku as api,
|
|
7448
|
+
Bu as apiType,
|
|
7449
|
+
hd as applyGoldEggType,
|
|
7450
|
+
rl as applyPromoType,
|
|
7451
|
+
ol as applyRedPacketType,
|
|
7452
|
+
Fl as applyReliefFund,
|
|
7453
|
+
sl as applySignInType,
|
|
7454
|
+
yc as applyVipBonusType,
|
|
7455
|
+
Bl as applyWeekCard,
|
|
7456
|
+
rc as autoRegisterApi,
|
|
7457
|
+
Ml as betReportType,
|
|
7458
|
+
Dd as casinoGameListType,
|
|
7459
|
+
vc as changePasswordType,
|
|
7460
|
+
Ll as changeWithdrawalCodeType,
|
|
7461
|
+
_d as checkGoldEggTokenType,
|
|
7462
|
+
Td as checkGoldEggValidateType,
|
|
7463
|
+
$l as checkRedPacketTokenType,
|
|
7464
|
+
el as checkRedPacketValidateType,
|
|
7465
|
+
dl as checkTransferCreditType,
|
|
7466
|
+
ql as claimIncentiveRebate,
|
|
7467
|
+
Ju as cmsListType,
|
|
7468
|
+
hl as commissionWithdrawType,
|
|
7469
|
+
Yu as config,
|
|
7470
|
+
bc as depositType,
|
|
7471
|
+
xc as fishGameListType,
|
|
7472
|
+
gl as friendListEditType,
|
|
7473
|
+
ml as friendListType,
|
|
7474
|
+
dc as gameListType,
|
|
7475
|
+
nd as getASCMatchCountType,
|
|
7476
|
+
td as getAccumulateDepositClaimType,
|
|
7477
|
+
Au as getAccumulateDepositDataType,
|
|
7478
|
+
fl as getActivePPType,
|
|
7479
|
+
xd as getActivePlatformType,
|
|
7480
|
+
pl as getActiveProductType,
|
|
7481
|
+
il as getCountryType,
|
|
7482
|
+
od as getCryptoAddressType,
|
|
7483
|
+
sd as getCryptoListType,
|
|
7484
|
+
$c as getDepositPromotionType,
|
|
7485
|
+
Pc as getEventListType,
|
|
7471
7486
|
Rc as getEventTokenType,
|
|
7472
|
-
|
|
7473
|
-
|
|
7474
|
-
|
|
7475
|
-
|
|
7476
|
-
|
|
7477
|
-
|
|
7478
|
-
|
|
7479
|
-
|
|
7480
|
-
|
|
7481
|
-
|
|
7482
|
-
|
|
7483
|
-
|
|
7484
|
-
|
|
7485
|
-
|
|
7486
|
-
|
|
7487
|
-
|
|
7488
|
-
|
|
7489
|
-
|
|
7490
|
-
|
|
7491
|
-
|
|
7492
|
-
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7496
|
-
|
|
7497
|
-
|
|
7498
|
-
|
|
7499
|
-
|
|
7500
|
-
|
|
7501
|
-
|
|
7502
|
-
|
|
7503
|
-
|
|
7504
|
-
|
|
7505
|
-
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7523
|
-
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7528
|
-
|
|
7529
|
-
|
|
7530
|
-
|
|
7531
|
-
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7543
|
-
|
|
7544
|
-
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
|
|
7487
|
+
Dc as getExtraGameType,
|
|
7488
|
+
Zl as getFavouriteGameType,
|
|
7489
|
+
Pd as getFeedbackType,
|
|
7490
|
+
vd as getGoldEggDataType,
|
|
7491
|
+
Xc as getImageType,
|
|
7492
|
+
Vl as getIncentiveData,
|
|
7493
|
+
Al as getIncentiveRebate,
|
|
7494
|
+
Gc as getInviteRewardClaimType,
|
|
7495
|
+
Ic as getInviteRewardDataType,
|
|
7496
|
+
jc as getInviteRewardReportType,
|
|
7497
|
+
Wc as getInviteRewardSettingType,
|
|
7498
|
+
ic as getMaintenanceModeApi,
|
|
7499
|
+
Ql as getMissionClaim,
|
|
7500
|
+
Vu as getMissionData,
|
|
7501
|
+
wd as getNewbieMissionClaimType,
|
|
7502
|
+
Xu as getNewbieMissionDataType,
|
|
7503
|
+
id as getPopoutItemType,
|
|
7504
|
+
zl as getReliefFundData,
|
|
7505
|
+
Wl as getReliefFundReport,
|
|
7506
|
+
Lc as getRewardReferralType,
|
|
7507
|
+
Zu as getSettingType,
|
|
7508
|
+
Fc as getTopUpRewardClaimType,
|
|
7509
|
+
Ec as getTopUpRewardSettingType,
|
|
7510
|
+
Cc as getTopupRewardDataType,
|
|
7511
|
+
Nc as getTopupRewardReportType,
|
|
7512
|
+
zc as getTurnOverRewardClaimType,
|
|
7513
|
+
Mc as getTurnOverRewardDataType,
|
|
7514
|
+
Sc as getTurnOverRewardReportType,
|
|
7515
|
+
ud as getTurnOverRewardSettingMultType,
|
|
7516
|
+
Yc as getTurnOverRewardSettingType,
|
|
7517
|
+
Sl as getTwoFactorAuthenticateType,
|
|
7518
|
+
jl as getUserDeviceListType,
|
|
7519
|
+
tl as getUserProfileType,
|
|
7520
|
+
nl as getUsernameByReferType,
|
|
7521
|
+
Zc as getValidateType,
|
|
7522
|
+
Qc as getVerifyPromo,
|
|
7523
|
+
yd as getWeekCardAllDataType,
|
|
7524
|
+
El as getWeekCardClaim,
|
|
7525
|
+
Yl as getWeekCardData,
|
|
7526
|
+
pd as getWheelDataType,
|
|
7527
|
+
Qu as getWheelReportType,
|
|
7528
|
+
bd as getWheelTicketType,
|
|
7529
|
+
cd as interestIndexType,
|
|
7530
|
+
ld as interestTransactionListType,
|
|
7531
|
+
dd as interestTransferInType,
|
|
7532
|
+
md as interestTransferOutType,
|
|
7533
|
+
gd as interestWalletInfoType,
|
|
7534
|
+
kd as isMobileRegisteredType,
|
|
7535
|
+
ac as jackpotDataApi,
|
|
7536
|
+
oc as loadMatchApi,
|
|
7537
|
+
tc as loginApi,
|
|
7538
|
+
uc as loginType,
|
|
7539
|
+
nc as logoutApi,
|
|
7540
|
+
cc as logoutType,
|
|
7541
|
+
kc as mailBoxType,
|
|
7542
|
+
fc as mainWalletType,
|
|
7543
|
+
Hu as paymentsProviderType,
|
|
7544
|
+
qc as playGame,
|
|
7545
|
+
qc as playGameType,
|
|
7546
|
+
Iu as post,
|
|
7547
|
+
gc as promotionType,
|
|
7548
|
+
Kc as readMailType,
|
|
7549
|
+
ad as rebateRefundSettingType,
|
|
7550
|
+
kl as referralMemberProfileType,
|
|
7551
|
+
Dl as referralProfileType,
|
|
7552
|
+
xl as registerActionType,
|
|
7553
|
+
Xl as registerFormType,
|
|
7554
|
+
Bc as requestForgetPasswordType,
|
|
7555
|
+
Kl as requestForgetUsernameType,
|
|
7556
|
+
al as requestTacCodeType,
|
|
7557
|
+
vl as requestTransferMoneyType,
|
|
7558
|
+
Vc as requestUpdateMobileTacCode,
|
|
7559
|
+
bl as requestWithdrawTacType,
|
|
7560
|
+
yl as requestWithdrawalCodeType,
|
|
7561
|
+
Nl as searchNumberHistoryType,
|
|
7562
|
+
sc as setLocaleApi,
|
|
7548
7563
|
Rl as signInRecordType,
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7564
|
+
Pl as signInViewInfoType,
|
|
7565
|
+
Oc as slotGameListType,
|
|
7566
|
+
fd as spinWheelType,
|
|
7567
|
+
Tl as submitCryptoAccountType,
|
|
7553
7568
|
Rd as submitFeedbackType,
|
|
7554
|
-
|
|
7555
|
-
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
|
|
7570
|
-
|
|
7571
|
-
|
|
7572
|
-
|
|
7573
|
-
|
|
7574
|
-
|
|
7575
|
-
|
|
7576
|
-
|
|
7577
|
-
|
|
7578
|
-
|
|
7579
|
-
|
|
7569
|
+
Hc as submitForgetPasswordType,
|
|
7570
|
+
ed as submitForgetUsernameType,
|
|
7571
|
+
Uc as submitGiftCode,
|
|
7572
|
+
Uc as submitGiftCodeType,
|
|
7573
|
+
wl as submitTransferMoneyType,
|
|
7574
|
+
Il as submitTwoFactorAuthenticateType,
|
|
7575
|
+
Ac as submitUpdateMobileTacCode,
|
|
7576
|
+
ll as submitValidateType,
|
|
7577
|
+
Gl as submitWithdrawalAlipayType,
|
|
7578
|
+
_l as submitWithdrawalCodeType,
|
|
7579
|
+
ec as telegramLoginApi,
|
|
7580
|
+
Uu as transactionReportType,
|
|
7581
|
+
cl as transferProcessType,
|
|
7582
|
+
qu as transferReportType,
|
|
7583
|
+
Hl as transferSettingType,
|
|
7584
|
+
ul as transferToMainType,
|
|
7585
|
+
Ul as transferType,
|
|
7586
|
+
Cl as unbindUserDeviceType,
|
|
7587
|
+
pc as upcomingMatchType,
|
|
7588
|
+
rd as updateDeviceTokenType,
|
|
7589
|
+
Jl as updateFavouriteGameType,
|
|
7590
|
+
Jc as updateProfilePictureType,
|
|
7591
|
+
mc as vipListType,
|
|
7592
|
+
wc as walletType,
|
|
7593
|
+
Tc as withdrawType,
|
|
7594
|
+
hc as withdrawalGetType
|
|
7580
7595
|
};
|