60p82u21t54k 0.0.108 → 0.0.109
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 +879 -761
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/api/api.d.ts.map +1 -1
- package/dist/api/type.d.ts +7 -1
- package/dist/api/type.d.ts.map +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/model/getAccumulateDepositClaim/getGetAccumulateDepositClaimResponse.d.ts +10 -0
- package/dist/model/getAccumulateDepositClaim/getGetAccumulateDepositClaimResponse.d.ts.map +1 -0
- package/dist/model/getAccumulateDepositClaim/type.d.ts +5 -0
- package/dist/model/getAccumulateDepositClaim/type.d.ts.map +1 -0
- package/dist/model/getAccumulateDepositData/getGetAccumulateDepositDataResponse.d.ts +24 -0
- package/dist/model/getAccumulateDepositData/getGetAccumulateDepositDataResponse.d.ts.map +1 -0
- package/dist/model/getAccumulateDepositData/type.d.ts +25 -0
- package/dist/model/getAccumulateDepositData/type.d.ts.map +1 -0
- package/dist/model/loadMatch/loadMatchApi.d.ts +4 -0
- package/dist/model/loadMatch/loadMatchApi.d.ts.map +1 -0
- package/dist/model/loadMatch/type.d.ts +10 -0
- package/dist/model/loadMatch/type.d.ts.map +1 -0
- package/dist/model/login/loginApi.d.ts.map +1 -1
- package/dist/model/login/type.d.ts +5 -1
- package/dist/model/login/type.d.ts.map +1 -1
- package/dist/plugin.d.ts +4 -1
- package/dist/plugin.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
const
|
|
1
|
+
import ue from "axios";
|
|
2
|
+
const F = ue.create({
|
|
3
3
|
baseURL: "",
|
|
4
4
|
timeout: 15e3,
|
|
5
5
|
// Request timeout
|
|
@@ -45,11 +45,11 @@ const w = le.create({
|
|
|
45
45
|
// },
|
|
46
46
|
// },
|
|
47
47
|
});
|
|
48
|
-
|
|
48
|
+
F.interceptors.request.use(
|
|
49
49
|
(e) => e,
|
|
50
50
|
(e) => (console.error("Error request:", e.response), Promise.reject(e))
|
|
51
51
|
);
|
|
52
|
-
|
|
52
|
+
F.interceptors.response.use(
|
|
53
53
|
(e) => e,
|
|
54
54
|
(e) => {
|
|
55
55
|
const t = {
|
|
@@ -59,23 +59,23 @@ w.interceptors.response.use(
|
|
|
59
59
|
return e.response ? (t.status = e.response.status, t.message = e.response.data.message || e.response.statusText, console.error("Error response:", JSON.stringify(t)), e.response.status === 401 ? console.error("Unauthorized access - redirecting to login.") : e.response.status === 404 ? console.error("Resource not found.") : e.response.status >= 500 && console.error("Server error. Please try again later.")) : e.request ? console.error("No response received:", e.request) : console.error("Error setting up request:", e.message), Promise.reject(t);
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
|
-
const
|
|
62
|
+
const me = (e) => new TextEncoder().encode(e), pe = (e) => {
|
|
63
63
|
try {
|
|
64
64
|
return atob(e);
|
|
65
65
|
} catch (t) {
|
|
66
66
|
return console.error("Failed to decode Base64:", t), "";
|
|
67
67
|
}
|
|
68
|
-
},
|
|
68
|
+
}, ge = () => {
|
|
69
69
|
const e = /* @__PURE__ */ new Date(), t = e.getFullYear(), a = e.getMonth(), l = new Date(t, a, 1, 12, 0, 0), i = new Date(t, a + 1, 1, 12, 0, 0), u = Math.floor(
|
|
70
70
|
(i.getTime() - e.getTime()) / 1e3
|
|
71
|
-
),
|
|
71
|
+
), c = Math.floor(
|
|
72
72
|
(i.getTime() - l.getTime()) / 1e3
|
|
73
|
-
), p =
|
|
73
|
+
), p = c - u;
|
|
74
74
|
return {
|
|
75
75
|
monthRemainingTime: u,
|
|
76
|
-
monthProgressPercentage: Math.round(p /
|
|
76
|
+
monthProgressPercentage: Math.round(p / c * 100)
|
|
77
77
|
};
|
|
78
|
-
},
|
|
78
|
+
}, be = () => {
|
|
79
79
|
const e = /* @__PURE__ */ new Date(), t = e.getDay(), a = t === 1 ? 7 : 8 - t, l = new Date(
|
|
80
80
|
e.getFullYear(),
|
|
81
81
|
e.getMonth(),
|
|
@@ -89,7 +89,7 @@ const ce = (e) => new TextEncoder().encode(e), me = (e) => {
|
|
|
89
89
|
weekRemainingTime: i,
|
|
90
90
|
weekProgressPercentage: Math.round(i / g * 100)
|
|
91
91
|
};
|
|
92
|
-
},
|
|
92
|
+
}, fe = () => {
|
|
93
93
|
const e = /* @__PURE__ */ new Date(), t = new Date(
|
|
94
94
|
e.getFullYear(),
|
|
95
95
|
e.getMonth(),
|
|
@@ -98,19 +98,19 @@ const ce = (e) => new TextEncoder().encode(e), me = (e) => {
|
|
|
98
98
|
0,
|
|
99
99
|
0,
|
|
100
100
|
0
|
|
101
|
-
), a = Math.floor((t.getTime() - e.getTime()) / 1e3),
|
|
101
|
+
), a = Math.floor((t.getTime() - e.getTime()) / 1e3), c = 24 * 60 * 60;
|
|
102
102
|
return {
|
|
103
103
|
dayRemainingTime: a,
|
|
104
|
-
dayProgressPercentage: Math.round(a /
|
|
104
|
+
dayProgressPercentage: Math.round(a / c * 100)
|
|
105
105
|
};
|
|
106
106
|
};
|
|
107
|
-
var s = /* @__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))(s || {});
|
|
108
|
-
const
|
|
107
|
+
var s = /* @__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))(s || {});
|
|
108
|
+
const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
109
109
|
__proto__: null,
|
|
110
110
|
Api: s
|
|
111
111
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
112
112
|
var I = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto = "auto", e.fix = "fix", e.manual = "manual", e.unknown = "unknown", e))(I || {});
|
|
113
|
-
const
|
|
113
|
+
const _e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
114
114
|
__proto__: null,
|
|
115
115
|
PaymentType: I
|
|
116
116
|
}, Symbol.toStringTag, { value: "Module" })), H = {
|
|
@@ -120,40 +120,40 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
120
120
|
depositMethod: !1,
|
|
121
121
|
depositor: !1,
|
|
122
122
|
uploadReceipt: !1
|
|
123
|
-
},
|
|
123
|
+
}, Z = {
|
|
124
124
|
id: 0,
|
|
125
125
|
name: "",
|
|
126
126
|
type: I.unknown,
|
|
127
127
|
promo: [],
|
|
128
128
|
bank: [],
|
|
129
129
|
requiredField: H
|
|
130
|
-
},
|
|
130
|
+
}, ve = (e) => {
|
|
131
131
|
var t;
|
|
132
132
|
return ((t = e.mdPaymentChannels) == null ? void 0 : t.map((a) => {
|
|
133
133
|
const l = [];
|
|
134
134
|
switch (a.name) {
|
|
135
135
|
case I.default:
|
|
136
|
-
l.push(
|
|
136
|
+
l.push(te(a.paymentmethod.manual, e));
|
|
137
137
|
break;
|
|
138
138
|
case I.pay:
|
|
139
|
-
l.push(
|
|
139
|
+
l.push(he(a.paymentmethod.onlinebanking, e));
|
|
140
140
|
break;
|
|
141
141
|
default:
|
|
142
142
|
if (a.paymentmethod.auto.bank.length > 0 && l.push(
|
|
143
|
-
|
|
143
|
+
Te(a.bankid ?? 0, a.paymentmethod.auto, e)
|
|
144
144
|
), a.paymentmethod.manual.bank.length > 0) {
|
|
145
145
|
let i = !1;
|
|
146
146
|
for (let u = 0; u < a.paymentmethod.manual.bank.length; u++) {
|
|
147
|
-
const
|
|
148
|
-
if (
|
|
147
|
+
const c = a.paymentmethod.manual.bank[u];
|
|
148
|
+
if (c.list && c.list.length > 0) {
|
|
149
149
|
i = !0;
|
|
150
150
|
break;
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
|
-
i && l.push(
|
|
153
|
+
i && l.push(te(a.paymentmethod.manual, e));
|
|
154
154
|
}
|
|
155
155
|
a.paymentmethod.fixamount.bank.length > 0 && l.push(
|
|
156
|
-
|
|
156
|
+
Re(a.bankid ?? 0, a.paymentmethod.fixamount)
|
|
157
157
|
);
|
|
158
158
|
}
|
|
159
159
|
return {
|
|
@@ -162,7 +162,7 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
162
162
|
paymentList: l
|
|
163
163
|
};
|
|
164
164
|
})) ?? [];
|
|
165
|
-
},
|
|
165
|
+
}, J = (e) => {
|
|
166
166
|
const t = {
|
|
167
167
|
id: -1,
|
|
168
168
|
name: "excludePromo",
|
|
@@ -177,21 +177,21 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
177
177
|
dailyBonus: l.dtype === "5" && l.type === "D"
|
|
178
178
|
}));
|
|
179
179
|
return [t, ...a];
|
|
180
|
-
},
|
|
180
|
+
}, $ = (e, t, a, l) => {
|
|
181
181
|
let i, u;
|
|
182
182
|
a > 0 ? i = e > 0 ? Math.max(a, e) : a : i = Math.max(e, 0), l > 0 ? u = t > 0 ? Math.min(l, t) : l : u = Math.max(t, 0);
|
|
183
|
-
const
|
|
183
|
+
const c = Math.round(i);
|
|
184
184
|
let p = 1e3;
|
|
185
185
|
u < p && (p = Math.round(u));
|
|
186
|
-
const y = p -
|
|
186
|
+
const y = p - c;
|
|
187
187
|
let g = "", b = "";
|
|
188
188
|
if (y > 0) {
|
|
189
|
-
let S = Math.round((p -
|
|
189
|
+
let S = Math.round((p - c) * 0.25).toString().split(""), M = [];
|
|
190
190
|
for (const R of S)
|
|
191
191
|
R !== "" && M.push(R);
|
|
192
192
|
for (let R = 0; R < M.length; R++)
|
|
193
193
|
R === 0 ? g += (parseInt(M[R]) + 1).toString() : g += "0";
|
|
194
|
-
S = Math.round((p -
|
|
194
|
+
S = Math.round((p - c) * 0.5).toString().split(""), M = [];
|
|
195
195
|
for (const R of S)
|
|
196
196
|
R !== "" && M.push(R);
|
|
197
197
|
for (let R = 0; R < M.length; R++)
|
|
@@ -199,20 +199,20 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
199
199
|
} else
|
|
200
200
|
g = p.toString(), b = p.toString();
|
|
201
201
|
return { amountList: [
|
|
202
|
-
|
|
202
|
+
c.toString(),
|
|
203
203
|
g,
|
|
204
204
|
b,
|
|
205
205
|
p.toString()
|
|
206
|
-
], minAmount:
|
|
207
|
-
},
|
|
206
|
+
], minAmount: c, maxAmount: u };
|
|
207
|
+
}, te = (e, t) => t ? {
|
|
208
208
|
id: 0,
|
|
209
209
|
name: "manualMethod",
|
|
210
210
|
type: I.manual,
|
|
211
|
-
promo:
|
|
211
|
+
promo: J(e.promo),
|
|
212
212
|
bank: e.bank.map((i) => {
|
|
213
|
-
const u = i.list && i.list.length > 0 ? i.list[0].mintransaction ?? "0.00" : "0.00",
|
|
213
|
+
const u = i.list && i.list.length > 0 ? i.list[0].mintransaction ?? "0.00" : "0.00", c = i.list && i.list.length > 0 ? i.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: p, minAmount: y, maxAmount: g } = $(
|
|
214
214
|
Number(u),
|
|
215
|
-
Number(
|
|
215
|
+
Number(c),
|
|
216
216
|
t.mdBankLevelDetail.deposit_min,
|
|
217
217
|
t.mdBankLevelDetail.deposit_max
|
|
218
218
|
);
|
|
@@ -236,19 +236,19 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
236
236
|
depositor: t.mdManualDepositRequireField.depositor,
|
|
237
237
|
uploadReceipt: t.mdUploadReceipt
|
|
238
238
|
}
|
|
239
|
-
} :
|
|
239
|
+
} : Z, he = (e, t) => t ? {
|
|
240
240
|
id: 0,
|
|
241
241
|
name: "onlineBankingMethod",
|
|
242
242
|
type: I.pay,
|
|
243
|
-
promo:
|
|
243
|
+
promo: J(e.promo),
|
|
244
244
|
bank: e.banklist.map((i) => {
|
|
245
|
-
let u = "0.00",
|
|
245
|
+
let u = "0.00", c = "0.00";
|
|
246
246
|
const p = i.bankindex ?? 0;
|
|
247
247
|
for (let S = 0; S < t.mdGatewayMinMax.length; S++)
|
|
248
|
-
t.mdGatewayMinMax[S].bankindex == p.toString() && (u = t.mdGatewayMinMax[S].min,
|
|
249
|
-
const { amountList: y, minAmount: g, maxAmount: b } =
|
|
248
|
+
t.mdGatewayMinMax[S].bankindex == p.toString() && (u = t.mdGatewayMinMax[S].min, c = t.mdGatewayMinMax[S].max);
|
|
249
|
+
const { amountList: y, minAmount: g, maxAmount: b } = $(
|
|
250
250
|
Number(u),
|
|
251
|
-
Number(
|
|
251
|
+
Number(c),
|
|
252
252
|
t.mdBankLevelDetail.onlinepayment_min,
|
|
253
253
|
t.mdBankLevelDetail.onlinepayment_max
|
|
254
254
|
), P = {
|
|
@@ -258,18 +258,18 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
258
258
|
min: g,
|
|
259
259
|
max: b
|
|
260
260
|
}, v = i.pg.map((S) => {
|
|
261
|
-
const M = S.mintransaction ?? "0.00",
|
|
261
|
+
const M = S.mintransaction ?? "0.00", L = S.maxtransaction ?? "0.00", { amountList: D, minAmount: R, maxAmount: G } = $(
|
|
262
262
|
Number(M),
|
|
263
|
-
Number(
|
|
263
|
+
Number(L),
|
|
264
264
|
t.mdBankLevelDetail.onlinepayment_min,
|
|
265
265
|
t.mdBankLevelDetail.onlinepayment_max
|
|
266
266
|
);
|
|
267
267
|
return {
|
|
268
268
|
id: S.pgindex,
|
|
269
269
|
name: S.bankaccountname,
|
|
270
|
-
amountList:
|
|
270
|
+
amountList: D,
|
|
271
271
|
min: R,
|
|
272
|
-
max:
|
|
272
|
+
max: G
|
|
273
273
|
};
|
|
274
274
|
});
|
|
275
275
|
return {
|
|
@@ -282,14 +282,14 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
282
282
|
};
|
|
283
283
|
}),
|
|
284
284
|
requiredField: H
|
|
285
|
-
} :
|
|
286
|
-
if (!a) return
|
|
285
|
+
} : Z, Te = (e, t, a) => {
|
|
286
|
+
if (!a) return Z;
|
|
287
287
|
const l = I.auto;
|
|
288
288
|
let i = [];
|
|
289
289
|
const u = a.mdGatewayMinMax ?? [];
|
|
290
290
|
if (t.bank.length > 0 && a.mdPGSelection === "1")
|
|
291
291
|
i = t.bank.map((p) => {
|
|
292
|
-
const { amountList: y, minAmount: g, maxAmount: b } =
|
|
292
|
+
const { amountList: y, minAmount: g, maxAmount: b } = $(
|
|
293
293
|
p.mintransaction ?? 0,
|
|
294
294
|
p.maxtransaction ?? 0,
|
|
295
295
|
a.mdBankLevelDetail.onlinepayment_min,
|
|
@@ -307,7 +307,7 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
307
307
|
let p = "0.00", y = "0.00";
|
|
308
308
|
for (let m = 0; m < u.length; m++)
|
|
309
309
|
u[m].bankindex === e.toString() && (p = u[m].min, y = u[m].max);
|
|
310
|
-
const { amountList: g, minAmount: b, maxAmount: P } =
|
|
310
|
+
const { amountList: g, minAmount: b, maxAmount: P } = $(
|
|
311
311
|
Number(p),
|
|
312
312
|
Number(y),
|
|
313
313
|
a.mdBankLevelDetail.onlinepayment_min,
|
|
@@ -325,17 +325,17 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
325
325
|
id: e,
|
|
326
326
|
name: "autoMethod",
|
|
327
327
|
type: l,
|
|
328
|
-
promo:
|
|
328
|
+
promo: J(t.promo),
|
|
329
329
|
bank: i,
|
|
330
330
|
requiredField: H
|
|
331
331
|
};
|
|
332
|
-
},
|
|
332
|
+
}, Re = (e, t) => {
|
|
333
333
|
const a = I.fix;
|
|
334
334
|
return {
|
|
335
335
|
id: e,
|
|
336
336
|
name: "fixAmountMethod",
|
|
337
337
|
type: a,
|
|
338
|
-
promo:
|
|
338
|
+
promo: J(t.promo),
|
|
339
339
|
bank: t.bank.map((i) => {
|
|
340
340
|
const u = i.amtlist.map(Number).sort((p, y) => p - y);
|
|
341
341
|
return {
|
|
@@ -348,19 +348,19 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
348
348
|
}),
|
|
349
349
|
requiredField: H
|
|
350
350
|
};
|
|
351
|
-
},
|
|
351
|
+
}, Se = (e) => (e == null ? void 0 : e.map((t) => ({
|
|
352
352
|
alert: t.announcement_alert === "1",
|
|
353
353
|
content: t.announcement_simplified ?? "",
|
|
354
354
|
lastUpdatedTime: t.announcement_lastupdated
|
|
355
|
-
}))) ?? [],
|
|
355
|
+
}))) ?? [], Pe = (e) => ({
|
|
356
356
|
username: e.username,
|
|
357
357
|
birthday: e.mdUserDetail.dob ?? "",
|
|
358
358
|
email: e.mdUserDetail.email ?? "",
|
|
359
359
|
fullName: e.mdUserDetail.firstname ?? "",
|
|
360
360
|
phoneNumber: e.mdUserDetail.mobileno ?? "",
|
|
361
361
|
profilePicUrl: e.mdUserDetail.profile_pic
|
|
362
|
-
}),
|
|
363
|
-
var t, a, l, i, u,
|
|
362
|
+
}), ke = (e) => {
|
|
363
|
+
var t, a, l, i, u, c, p, y, g;
|
|
364
364
|
return {
|
|
365
365
|
platformGame: ((t = e.mdGameListResult) == null ? void 0 : t.map((b) => {
|
|
366
366
|
var P, v;
|
|
@@ -386,7 +386,7 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
386
386
|
}))) ?? [] : []
|
|
387
387
|
};
|
|
388
388
|
})) ?? [],
|
|
389
|
-
hotGameList:
|
|
389
|
+
hotGameList: Oe(e.mdGameLists.data) && e.mdGameLists.data.length > 0 ? {
|
|
390
390
|
currentPage: ((a = e.mdGameLists) == null ? void 0 : a.current_page) ?? 1,
|
|
391
391
|
lastPage: ((l = e.mdGameLists) == null ? void 0 : l.last_page) ?? 1,
|
|
392
392
|
data: (u = (i = e.mdGameLists) == null ? void 0 : i.data) == null ? void 0 : u.map((b) => ({
|
|
@@ -404,8 +404,8 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
404
404
|
rate: "0.00"
|
|
405
405
|
}))
|
|
406
406
|
} : {},
|
|
407
|
-
platformGameList:
|
|
408
|
-
currentPage: ((
|
|
407
|
+
platformGameList: Me(e.mdGameLists.data) && e.mdGameLists.data.length > 0 ? {
|
|
408
|
+
currentPage: ((c = e.mdGameLists) == null ? void 0 : c.current_page) ?? 1,
|
|
409
409
|
lastPage: ((p = e.mdGameLists) == null ? void 0 : p.last_page) ?? 1,
|
|
410
410
|
data: (g = (y = e.mdGameLists) == null ? void 0 : y.data) == null ? void 0 : g.map((b) => ({
|
|
411
411
|
gameId: Number(b.id),
|
|
@@ -426,19 +426,19 @@ const ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
426
426
|
fishGameList: []
|
|
427
427
|
};
|
|
428
428
|
};
|
|
429
|
-
function
|
|
429
|
+
function Oe(e) {
|
|
430
430
|
return Array.isArray(e) && e.every(
|
|
431
431
|
(t) => typeof t.appFlag == "number" && typeof t.code_PlatformProduct == "string" && typeof t.filemtime == "number" && typeof t.flag == "number" && typeof t.id == "number" && typeof t.id_PlatformProduct == "number" && typeof t.img == "string" && typeof t.mdDomains_id == "number" && typeof t.name == "string" && typeof t.shortName_PlatformProduct == "string"
|
|
432
432
|
);
|
|
433
433
|
}
|
|
434
|
-
function
|
|
434
|
+
function Me(e) {
|
|
435
435
|
return Array.isArray(e) && e.every(
|
|
436
436
|
(t) => typeof t.id == "number" && typeof t.name == "string" && typeof t.img == "string" && typeof t.id_PlatformProduct == "number" && typeof t.appFlag == "number" && typeof t.filemtime == "number" && typeof t.mdDomains_id == "number"
|
|
437
437
|
);
|
|
438
438
|
}
|
|
439
|
-
const
|
|
439
|
+
const je = (e) => ({
|
|
440
440
|
list: e.mdGrade.map((t) => {
|
|
441
|
-
var a, l, i, u,
|
|
441
|
+
var a, l, i, u, c, p, y, g, b, P, v, m, S, M, L, D, R, G, B, q, Y, W, K, E, A, n, d, _, r, o, h, k;
|
|
442
442
|
return {
|
|
443
443
|
id: t.gradeindex,
|
|
444
444
|
is_current_level: !1,
|
|
@@ -466,24 +466,24 @@ const Me = (e) => ({
|
|
|
466
466
|
daily: {
|
|
467
467
|
bonus: parseFloat(((l = (a = t.benefit) == null ? void 0 : a.daily) == null ? void 0 : l.bonus) ?? "0.00").toFixed(2),
|
|
468
468
|
bonus_name: ((u = (i = t.benefit) == null ? void 0 : i.daily) == null ? void 0 : u.bonus_name) ?? "",
|
|
469
|
-
turnover: parseFloat(((p = (
|
|
469
|
+
turnover: parseFloat(((p = (c = t.benefit) == null ? void 0 : c.daily) == null ? void 0 : p.turnover) ?? "0.00").toFixed(2),
|
|
470
470
|
turnover_name: ((g = (y = t.benefit) == null ? void 0 : y.daily) == null ? void 0 : g.turnover_name) ?? ""
|
|
471
471
|
},
|
|
472
472
|
monthly: {
|
|
473
473
|
bonus: parseFloat(((P = (b = t.benefit) == null ? void 0 : b.monthly) == null ? void 0 : P.bonus) ?? "0.00").toFixed(2),
|
|
474
474
|
bonus_name: ((m = (v = t.benefit) == null ? void 0 : v.monthly) == null ? void 0 : m.bonus_name) ?? "",
|
|
475
475
|
turnover: parseFloat(((M = (S = t.benefit) == null ? void 0 : S.monthly) == null ? void 0 : M.turnover) ?? "0.00").toFixed(2),
|
|
476
|
-
turnover_name: ((
|
|
476
|
+
turnover_name: ((D = (L = t.benefit) == null ? void 0 : L.monthly) == null ? void 0 : D.turnover_name) ?? ""
|
|
477
477
|
},
|
|
478
478
|
weekly: {
|
|
479
|
-
bonus: parseFloat(((
|
|
480
|
-
bonus_name: ((
|
|
481
|
-
turnover: parseFloat(((
|
|
482
|
-
turnover_name: ((
|
|
479
|
+
bonus: parseFloat(((G = (R = t.benefit) == null ? void 0 : R.weekly) == null ? void 0 : G.bonus) ?? "0.00").toFixed(2),
|
|
480
|
+
bonus_name: ((q = (B = t.benefit) == null ? void 0 : B.weekly) == null ? void 0 : q.bonus_name) ?? "",
|
|
481
|
+
turnover: parseFloat(((W = (Y = t.benefit) == null ? void 0 : Y.weekly) == null ? void 0 : W.turnover) ?? "0.00").toFixed(2),
|
|
482
|
+
turnover_name: ((E = (K = t.benefit) == null ? void 0 : K.weekly) == null ? void 0 : E.turnover_name) ?? ""
|
|
483
483
|
},
|
|
484
484
|
upgrade: {
|
|
485
|
-
bonus: parseFloat(((n = (
|
|
486
|
-
bonus_name: ((_ = (
|
|
485
|
+
bonus: parseFloat(((n = (A = t.benefit) == null ? void 0 : A.upgrade) == null ? void 0 : n.bonus) ?? "0.00").toFixed(2),
|
|
486
|
+
bonus_name: ((_ = (d = t.benefit) == null ? void 0 : d.upgrade) == null ? void 0 : _.bonus_name) ?? "",
|
|
487
487
|
turnover: parseFloat(((o = (r = t.benefit) == null ? void 0 : r.upgrade) == null ? void 0 : o.turnover) ?? "0.00").toFixed(2),
|
|
488
488
|
turnover_name: ((k = (h = t.benefit) == null ? void 0 : h.upgrade) == null ? void 0 : k.turnover_name) ?? ""
|
|
489
489
|
}
|
|
@@ -520,7 +520,7 @@ const Me = (e) => ({
|
|
|
520
520
|
}
|
|
521
521
|
}
|
|
522
522
|
}
|
|
523
|
-
}),
|
|
523
|
+
}), De = (e) => ({
|
|
524
524
|
category: e.category.sort((t, a) => t.sequence - a.sequence).map((t) => ({
|
|
525
525
|
id: t.catid,
|
|
526
526
|
name: t.name
|
|
@@ -545,16 +545,16 @@ const Me = (e) => ({
|
|
|
545
545
|
day: {
|
|
546
546
|
isClaimable: e.day === 1
|
|
547
547
|
}
|
|
548
|
-
}),
|
|
548
|
+
}), Ce = (e) => e.mdVipSetting.filter((a) => a.status == 1).map((a) => ({
|
|
549
549
|
fieldName: a.fieldname,
|
|
550
550
|
showName: a.showname
|
|
551
|
-
})),
|
|
551
|
+
})), Ie = (e) => ({
|
|
552
552
|
current_deposit: e.deposit,
|
|
553
553
|
current_turnover: e.turnOver,
|
|
554
554
|
current_grade_id: e.mdCurrentGrade ? e.mdCurrentGrade.gradeindex : 0,
|
|
555
555
|
next_grade_id: e.mdNextGrade.gradeindex,
|
|
556
556
|
percentage: Number(e.percentage) * 100
|
|
557
|
-
}),
|
|
557
|
+
}), Fe = (e) => {
|
|
558
558
|
var l, i;
|
|
559
559
|
let t = 4;
|
|
560
560
|
e.vipcalculation && (t = Number(e.vipcalculation));
|
|
@@ -563,10 +563,10 @@ const Me = (e) => ({
|
|
|
563
563
|
vipCalculation: t,
|
|
564
564
|
livechat: e.livechat ?? "",
|
|
565
565
|
livechatList: a.filter((u) => u.status == 1).map((u) => {
|
|
566
|
-
let
|
|
567
|
-
return
|
|
566
|
+
let c = u.imgname;
|
|
567
|
+
return c.slice(-4) === ".png" && (c = u.imgname.slice(0, -4)), {
|
|
568
568
|
name: u.name,
|
|
569
|
-
imageUrl: `/image/game/native/customer_service/${
|
|
569
|
+
imageUrl: `/image/game/native/customer_service/${c}.png`,
|
|
570
570
|
url: u.url,
|
|
571
571
|
status: u.status == 1
|
|
572
572
|
};
|
|
@@ -588,7 +588,7 @@ const Me = (e) => ({
|
|
|
588
588
|
loginCaptcha: e.logincaptcha ? e.logincaptcha === "1" : !1,
|
|
589
589
|
registerCaptcha: e.registercaptcha ? e.registercaptcha === "1" : !1
|
|
590
590
|
};
|
|
591
|
-
},
|
|
591
|
+
}, Le = (e) => {
|
|
592
592
|
var t, a, l, i;
|
|
593
593
|
return {
|
|
594
594
|
banner: ((t = e.mobileBanner) == null ? void 0 : t.map((u) => `${u.imagepath}?ts=${u.filemtime}`)) ?? [],
|
|
@@ -604,49 +604,49 @@ const Me = (e) => ({
|
|
|
604
604
|
link: u.link
|
|
605
605
|
}))) ?? []
|
|
606
606
|
};
|
|
607
|
-
},
|
|
607
|
+
}, Ge = (e) => {
|
|
608
608
|
var t;
|
|
609
609
|
return ((t = e.data) == null ? void 0 : t.filter((a) => a.status == "1").map((a) => ({
|
|
610
610
|
code: a.area_code,
|
|
611
611
|
regex: a.regex,
|
|
612
612
|
value: a.value
|
|
613
613
|
}))) ?? [];
|
|
614
|
-
},
|
|
614
|
+
}, ze = (e) => e, Ne = (e) => {
|
|
615
615
|
let t = null;
|
|
616
616
|
return e ? e.status != 1 ? t = 0 : t = e.mainwallet : t = 0, {
|
|
617
617
|
amount: t
|
|
618
618
|
};
|
|
619
|
-
},
|
|
619
|
+
}, we = (e) => {
|
|
620
620
|
var t;
|
|
621
621
|
return ((t = e.data) == null ? void 0 : t.filter((a) => a.status == "1").map((a) => ({
|
|
622
622
|
name: a.title,
|
|
623
623
|
code: a.code,
|
|
624
624
|
iconUrl: a.flag_icon
|
|
625
625
|
}))) ?? [];
|
|
626
|
-
},
|
|
626
|
+
}, Ue = (e) => (console.log(e), {
|
|
627
627
|
name: ""
|
|
628
|
-
}),
|
|
628
|
+
}), Be = (e) => {
|
|
629
629
|
var t;
|
|
630
630
|
return ((t = e.data) == null ? void 0 : t.filter((a) => a.company_status == 1).map((a) => ({
|
|
631
631
|
id: a.company_id,
|
|
632
632
|
name: a.company_name,
|
|
633
633
|
date: []
|
|
634
634
|
}))) ?? [];
|
|
635
|
-
},
|
|
635
|
+
}, qe = (e) => {
|
|
636
636
|
var t;
|
|
637
637
|
return ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
638
638
|
var l;
|
|
639
639
|
return {
|
|
640
640
|
id: a.key,
|
|
641
|
-
date: ((l = a.draw_date) == null ? void 0 : l.map((i) =>
|
|
641
|
+
date: ((l = a.draw_date) == null ? void 0 : l.map((i) => We(i.draw_tmactive))) ?? []
|
|
642
642
|
};
|
|
643
643
|
})) ?? [];
|
|
644
644
|
};
|
|
645
|
-
function
|
|
645
|
+
function We(e) {
|
|
646
646
|
const t = new Date(e * 1e3), a = t.getFullYear(), l = ("0" + (t.getMonth() + 1)).slice(-2), i = ("0" + t.getDate()).slice(-2);
|
|
647
647
|
return `${a}-${l}-${i}`;
|
|
648
648
|
}
|
|
649
|
-
const
|
|
649
|
+
const Ve = (e) => {
|
|
650
650
|
var t;
|
|
651
651
|
return ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
652
652
|
var l;
|
|
@@ -659,7 +659,7 @@ const We = (e) => {
|
|
|
659
659
|
}))) ?? []
|
|
660
660
|
};
|
|
661
661
|
})) ?? [];
|
|
662
|
-
},
|
|
662
|
+
}, $e = (e) => e.data.map((t) => ({
|
|
663
663
|
companyId: t.company_id,
|
|
664
664
|
companyName: t.company_name,
|
|
665
665
|
resultByDateList: t.draws.map((a) => {
|
|
@@ -667,7 +667,7 @@ const We = (e) => {
|
|
|
667
667
|
(m) => m.combination_dimension == 4 && m.combination_position === 1
|
|
668
668
|
).map((m) => m.combination_combination), u = a.results.filter(
|
|
669
669
|
(m) => m.combination_dimension === 4 && m.combination_position === 2
|
|
670
|
-
).map((m) => m.combination_combination),
|
|
670
|
+
).map((m) => m.combination_combination), c = a.results.filter(
|
|
671
671
|
(m) => m.combination_dimension === 4 && m.combination_position === 3
|
|
672
672
|
).map((m) => m.combination_combination), p = a.results.filter(
|
|
673
673
|
(m) => m.combination_dimension === 4 && m.combination_position === 4
|
|
@@ -684,7 +684,7 @@ const We = (e) => {
|
|
|
684
684
|
dimension_4: {
|
|
685
685
|
prize_1: i,
|
|
686
686
|
prize_2: u,
|
|
687
|
-
prize_3:
|
|
687
|
+
prize_3: c,
|
|
688
688
|
prize_4: p,
|
|
689
689
|
prize_5: y
|
|
690
690
|
},
|
|
@@ -698,7 +698,7 @@ const We = (e) => {
|
|
|
698
698
|
}
|
|
699
699
|
};
|
|
700
700
|
})
|
|
701
|
-
})),
|
|
701
|
+
})), Ee = (e) => e.data ? e.data.map((t) => ({
|
|
702
702
|
id: t.id,
|
|
703
703
|
date: t.matchDate,
|
|
704
704
|
stage: t.Stage,
|
|
@@ -718,7 +718,7 @@ const We = (e) => {
|
|
|
718
718
|
name: t.home,
|
|
719
719
|
logo_url: t.homeLogo
|
|
720
720
|
}
|
|
721
|
-
})) ?? [] : [],
|
|
721
|
+
})) ?? [] : [], Ae = (e) => ({
|
|
722
722
|
status: e.status == 1,
|
|
723
723
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
724
724
|
paymentUrl: e.urlpayment ?? ""
|
|
@@ -729,53 +729,53 @@ const We = (e) => {
|
|
|
729
729
|
}), T = (e) => ({
|
|
730
730
|
status: e.status == 1,
|
|
731
731
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
|
|
732
|
-
}),
|
|
732
|
+
}), Je = (e) => T(e), Ye = (e) => {
|
|
733
733
|
var t, a, l, i, u;
|
|
734
734
|
return {
|
|
735
|
-
bankCard: ((t = e.bankCard) == null ? void 0 : t.map((
|
|
735
|
+
bankCard: ((t = e.bankCard) == null ? void 0 : t.map((c) => {
|
|
736
736
|
var p, y;
|
|
737
737
|
return {
|
|
738
|
-
bankIndex:
|
|
738
|
+
bankIndex: c.bankindex,
|
|
739
739
|
bankProvince: {
|
|
740
|
-
id:
|
|
740
|
+
id: c.bankprovince,
|
|
741
741
|
desc: ((y = (p = e.province) == null ? void 0 : p.find(
|
|
742
|
-
(g) => g.provinceindex ==
|
|
742
|
+
(g) => g.provinceindex == c.bankprovince
|
|
743
743
|
)) == null ? void 0 : y.label) ?? ""
|
|
744
744
|
},
|
|
745
|
-
bankName:
|
|
746
|
-
bankAccountNo:
|
|
747
|
-
bankUrl:
|
|
748
|
-
imgUrl:
|
|
749
|
-
countryIndex:
|
|
745
|
+
bankName: c.banknamesimplified,
|
|
746
|
+
bankAccountNo: c.bankaccountno,
|
|
747
|
+
bankUrl: c.bankaddress ?? "",
|
|
748
|
+
imgUrl: c.img,
|
|
749
|
+
countryIndex: c.countryindex
|
|
750
750
|
};
|
|
751
751
|
})) ?? [],
|
|
752
|
-
bankList: ((a = e.bankList) == null ? void 0 : a.map((
|
|
753
|
-
bankIndex:
|
|
754
|
-
bankType:
|
|
755
|
-
bankName:
|
|
756
|
-
bankUrl:
|
|
757
|
-
swiftCode:
|
|
758
|
-
showBind:
|
|
759
|
-
showDeposit:
|
|
760
|
-
countryIndex:
|
|
752
|
+
bankList: ((a = e.bankList) == null ? void 0 : a.map((c) => ({
|
|
753
|
+
bankIndex: c.bankindex,
|
|
754
|
+
bankType: c.bank_type,
|
|
755
|
+
bankName: c.banknamesimplified,
|
|
756
|
+
bankUrl: c.address ?? "",
|
|
757
|
+
swiftCode: c.swiftcode,
|
|
758
|
+
showBind: c.show_bind === "1",
|
|
759
|
+
showDeposit: c.show_deposit === "1",
|
|
760
|
+
countryIndex: c.countryindex
|
|
761
761
|
}))) ?? [],
|
|
762
|
-
province: ((l = e.province) == null ? void 0 : l.map((
|
|
763
|
-
index:
|
|
764
|
-
label:
|
|
765
|
-
countryIndex:
|
|
762
|
+
province: ((l = e.province) == null ? void 0 : l.map((c) => ({
|
|
763
|
+
index: c.provinceindex,
|
|
764
|
+
label: c.label,
|
|
765
|
+
countryIndex: c.countryindex
|
|
766
766
|
}))) ?? [],
|
|
767
|
-
cryptoAccount: ((i = e.mdAccountCrypto) == null ? void 0 : i.map((
|
|
768
|
-
id:
|
|
769
|
-
type:
|
|
770
|
-
name:
|
|
771
|
-
address:
|
|
767
|
+
cryptoAccount: ((i = e.mdAccountCrypto) == null ? void 0 : i.map((c) => ({
|
|
768
|
+
id: c.crypto_id,
|
|
769
|
+
type: c.type,
|
|
770
|
+
name: c.crypto_name,
|
|
771
|
+
address: c.address
|
|
772
772
|
}))) ?? [],
|
|
773
773
|
cryptoDetail: {
|
|
774
774
|
limit: e.mdCryptoDetail.cryptolimit,
|
|
775
|
-
protocol: ((u = e.mdCryptoDetail.cryptoprotocol) == null ? void 0 : u.map((
|
|
776
|
-
id:
|
|
777
|
-
name:
|
|
778
|
-
status:
|
|
775
|
+
protocol: ((u = e.mdCryptoDetail.cryptoprotocol) == null ? void 0 : u.map((c) => ({
|
|
776
|
+
id: c.id,
|
|
777
|
+
name: c.name,
|
|
778
|
+
status: c.status == "1"
|
|
779
779
|
}))) ?? []
|
|
780
780
|
},
|
|
781
781
|
alipayData: e.subWithdrawalAlipayData,
|
|
@@ -787,15 +787,15 @@ const We = (e) => {
|
|
|
787
787
|
},
|
|
788
788
|
bankCardLimit: e.bankcardlimit
|
|
789
789
|
};
|
|
790
|
-
},
|
|
790
|
+
}, Ke = (e) => ({
|
|
791
791
|
withdrawMin: Number(e.withdrawMin),
|
|
792
792
|
withdrawMax: Number(e.withdrawMax),
|
|
793
793
|
dailyWithdrawLimit: Number(e.dailyWithdrawLimit),
|
|
794
794
|
withdrawFee: e.withdrawFee,
|
|
795
795
|
withdrawMaxFee: Number(e.withdrawMaxFee),
|
|
796
796
|
withdrawCount: e.withdrawCount
|
|
797
|
-
}),
|
|
798
|
-
var t, a, l, i, u,
|
|
797
|
+
}), Qe = (e) => T(e), Xe = (e) => {
|
|
798
|
+
var t, a, l, i, u, c;
|
|
799
799
|
return {
|
|
800
800
|
statusMode: ((t = e.subStatusModes) == null ? void 0 : t.map((p) => ({
|
|
801
801
|
key: p.key,
|
|
@@ -808,13 +808,13 @@ const We = (e) => {
|
|
|
808
808
|
data: {
|
|
809
809
|
currentPage: ((l = e.mdCashLedgers) == null ? void 0 : l.current_page) ?? 0,
|
|
810
810
|
lastPage: ((i = e.mdCashLedgers) == null ? void 0 : i.last_page) ?? 0,
|
|
811
|
-
data: ((
|
|
811
|
+
data: ((c = (u = e.mdCashLedgers) == null ? void 0 : u.data) == null ? void 0 : c.map((p) => {
|
|
812
812
|
var y, g;
|
|
813
813
|
return {
|
|
814
814
|
transactionIndex: p.ledgerindex,
|
|
815
815
|
transactionInfo: {
|
|
816
816
|
id: p.fundindex,
|
|
817
|
-
desc:
|
|
817
|
+
desc: Ze(p.fundindex, p.transactionindex),
|
|
818
818
|
ext: p.fundindex === 3 ? `(${p.promo_cash})` : ""
|
|
819
819
|
},
|
|
820
820
|
statusInfo: {
|
|
@@ -830,7 +830,7 @@ const We = (e) => {
|
|
|
830
830
|
})) ?? []
|
|
831
831
|
}
|
|
832
832
|
};
|
|
833
|
-
},
|
|
833
|
+
}, Ze = (e, t) => {
|
|
834
834
|
switch (e) {
|
|
835
835
|
case 1:
|
|
836
836
|
if (t === 1)
|
|
@@ -860,9 +860,9 @@ const We = (e) => {
|
|
|
860
860
|
return "shareHolderDividend";
|
|
861
861
|
}
|
|
862
862
|
return "";
|
|
863
|
-
},
|
|
863
|
+
}, et = (e) => ({
|
|
864
864
|
status: e.status == 1
|
|
865
|
-
}),
|
|
865
|
+
}), tt = (e) => (e == null ? void 0 : e.map((t) => {
|
|
866
866
|
var a;
|
|
867
867
|
return {
|
|
868
868
|
activeCom: ((a = t.active_com) == null ? void 0 : a.map((l) => ({
|
|
@@ -875,7 +875,7 @@ const We = (e) => {
|
|
|
875
875
|
com: t.com ?? "",
|
|
876
876
|
maintenance: t.maintenance ?? !1
|
|
877
877
|
};
|
|
878
|
-
})) ?? [],
|
|
878
|
+
})) ?? [], at = (e) => ({
|
|
879
879
|
status: e.status == 1,
|
|
880
880
|
message: e.message ?? "",
|
|
881
881
|
data: e.data.map((t) => ({
|
|
@@ -885,7 +885,7 @@ const We = (e) => {
|
|
|
885
885
|
imageUrl: t.image_url,
|
|
886
886
|
getToken: t.getToken === 1
|
|
887
887
|
}))
|
|
888
|
-
}),
|
|
888
|
+
}), nt = (e) => {
|
|
889
889
|
var t;
|
|
890
890
|
return {
|
|
891
891
|
status: e.status == 1,
|
|
@@ -895,19 +895,19 @@ const We = (e) => {
|
|
|
895
895
|
tokenAmount: a.token_amount
|
|
896
896
|
}))) ?? []
|
|
897
897
|
};
|
|
898
|
-
},
|
|
898
|
+
}, ot = (e) => ({
|
|
899
899
|
status: e.status == 1,
|
|
900
900
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
901
901
|
loginId: e.loginId ?? "",
|
|
902
902
|
password: e.password ?? "",
|
|
903
903
|
downloadUrl: e.download_link ?? ""
|
|
904
|
-
}),
|
|
904
|
+
}), rt = (e) => (e == null ? void 0 : e.map((t) => ({
|
|
905
905
|
messageId: t.msgindex,
|
|
906
906
|
unread: t.status == "0",
|
|
907
907
|
date: t.cdate,
|
|
908
908
|
title: t.account_message_content.subject,
|
|
909
909
|
content: t.account_message_content.content
|
|
910
|
-
}))) ?? [],
|
|
910
|
+
}))) ?? [], st = (e) => {
|
|
911
911
|
var t;
|
|
912
912
|
return ((t = e.mdGameLists) == null ? void 0 : t.map((a) => ({
|
|
913
913
|
id: a.id,
|
|
@@ -915,7 +915,7 @@ const We = (e) => {
|
|
|
915
915
|
platformProductID: a.id_PlatformProduct,
|
|
916
916
|
imgUrl: `${e.mdDomains[a.mdDomains_id]}${a.img}?ts=${a.filemtime}`
|
|
917
917
|
}))) ?? [];
|
|
918
|
-
},
|
|
918
|
+
}, it = (e) => e.mdGameLists.map((t) => ({
|
|
919
919
|
id: t.id,
|
|
920
920
|
name: t.name,
|
|
921
921
|
list: t.gameList.map((a) => {
|
|
@@ -926,7 +926,7 @@ const We = (e) => {
|
|
|
926
926
|
imageUrl: u
|
|
927
927
|
};
|
|
928
928
|
})
|
|
929
|
-
})),
|
|
929
|
+
})), lt = (e) => e.status == 0 ? {
|
|
930
930
|
claimedReward: "0",
|
|
931
931
|
currentDirectDownline: "0",
|
|
932
932
|
currentOtherDownline: "0",
|
|
@@ -940,19 +940,19 @@ const We = (e) => {
|
|
|
940
940
|
currentReward: e.data.current_reward.toString(),
|
|
941
941
|
totalReward: e.data.total_reward,
|
|
942
942
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
943
|
-
},
|
|
943
|
+
}, ut = (e) => {
|
|
944
944
|
const t = /* @__PURE__ */ new Set(), a = e.data.map((u) => (t.add(u.downline), {
|
|
945
945
|
id: u.logindex,
|
|
946
946
|
name: u.firstname,
|
|
947
947
|
cashback: u.turnover,
|
|
948
948
|
commission: u.income
|
|
949
|
-
})), l = e.data.reduce((u,
|
|
949
|
+
})), l = e.data.reduce((u, c) => u + parseFloat(c.income), 0), i = t.size;
|
|
950
950
|
return {
|
|
951
951
|
totalReward: l,
|
|
952
952
|
totalCount: i,
|
|
953
953
|
list: a
|
|
954
954
|
};
|
|
955
|
-
},
|
|
955
|
+
}, ct = (e) => e.status == 0 ? {
|
|
956
956
|
claimedReward: "0",
|
|
957
957
|
currentInvite: "0",
|
|
958
958
|
currentReward: "0",
|
|
@@ -974,13 +974,13 @@ const We = (e) => {
|
|
|
974
974
|
deposit: u.deposit,
|
|
975
975
|
activeBet: u.activebet,
|
|
976
976
|
commission: u.reward
|
|
977
|
-
})), l = e.data.reduce((u,
|
|
977
|
+
})), l = e.data.reduce((u, c) => u + parseFloat(c.reward), 0), i = t.size;
|
|
978
978
|
return {
|
|
979
979
|
totalReward: l,
|
|
980
980
|
totalCount: i,
|
|
981
981
|
list: a
|
|
982
982
|
};
|
|
983
|
-
},
|
|
983
|
+
}, mt = (e) => e.status == 0 ? {
|
|
984
984
|
claimedReward: "0",
|
|
985
985
|
currentDirectDownline: "0",
|
|
986
986
|
currentOtherDownline: "0",
|
|
@@ -994,19 +994,19 @@ const We = (e) => {
|
|
|
994
994
|
currentReward: e.data.current_reward.toString(),
|
|
995
995
|
totalReward: e.data.total_reward,
|
|
996
996
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
997
|
-
},
|
|
997
|
+
}, pt = (e) => {
|
|
998
998
|
const t = /* @__PURE__ */ new Set(), a = e.data.map((u) => (t.add(u.accountid), {
|
|
999
999
|
id: u.logindex,
|
|
1000
1000
|
name: u.firstname,
|
|
1001
1001
|
total: u.deposit,
|
|
1002
1002
|
commission: u.reward
|
|
1003
|
-
})), l = e.data.reduce((u,
|
|
1003
|
+
})), l = e.data.reduce((u, c) => u + parseFloat(c.reward), 0), i = t.size;
|
|
1004
1004
|
return {
|
|
1005
1005
|
totalReward: l,
|
|
1006
1006
|
totalCount: i,
|
|
1007
1007
|
list: a
|
|
1008
1008
|
};
|
|
1009
|
-
},
|
|
1009
|
+
}, gt = (e) => e.status == 0 ? {
|
|
1010
1010
|
directDownline: "0",
|
|
1011
1011
|
otherDownline: "0",
|
|
1012
1012
|
uplineCode: "",
|
|
@@ -1016,7 +1016,7 @@ const We = (e) => {
|
|
|
1016
1016
|
otherDownline: e.data.others_downline_count.toString(),
|
|
1017
1017
|
uplineCode: e.data.upline.accountcode,
|
|
1018
1018
|
referralCode: e.data.referral_code
|
|
1019
|
-
},
|
|
1019
|
+
}, bt = (e) => {
|
|
1020
1020
|
var y;
|
|
1021
1021
|
let t = null, a = null;
|
|
1022
1022
|
if (e.status == 0)
|
|
@@ -1048,27 +1048,27 @@ const We = (e) => {
|
|
|
1048
1048
|
expiryTime: g.etime
|
|
1049
1049
|
};
|
|
1050
1050
|
});
|
|
1051
|
-
let u = 0,
|
|
1052
|
-
const p = i.map((g) => (u = Math.max(u, g.percentage), new Date(g.expiryTime) < new Date(
|
|
1051
|
+
let u = 0, c = ((y = i[0]) == null ? void 0 : y.expiryTime) || "";
|
|
1052
|
+
const p = i.map((g) => (u = Math.max(u, g.percentage), new Date(g.expiryTime) < new Date(c) && (c = g.expiryTime), {
|
|
1053
1053
|
name: g.name,
|
|
1054
1054
|
depositAmount: g.depositAmount,
|
|
1055
1055
|
promoAmount: g.promoAmount
|
|
1056
1056
|
}));
|
|
1057
1057
|
return a = {
|
|
1058
1058
|
percentage: u,
|
|
1059
|
-
expiryTime:
|
|
1059
|
+
expiryTime: c,
|
|
1060
1060
|
list: p
|
|
1061
1061
|
}, { welcomeBonus: t, dailyBonus: a };
|
|
1062
|
-
},
|
|
1062
|
+
}, ft = (e) => ({
|
|
1063
1063
|
status: e.status == 1,
|
|
1064
1064
|
message: e.msg ?? ""
|
|
1065
|
-
}),
|
|
1065
|
+
}), yt = (e) => ({
|
|
1066
1066
|
status: e.status == 1,
|
|
1067
1067
|
message: e.msg ?? ""
|
|
1068
|
-
}),
|
|
1068
|
+
}), _t = (e) => ({
|
|
1069
1069
|
status: e.status == 1,
|
|
1070
1070
|
message: e.msg ?? ""
|
|
1071
|
-
}),
|
|
1071
|
+
}), vt = (e) => e.status == 0 ? {
|
|
1072
1072
|
deposit: "0",
|
|
1073
1073
|
reward: "0",
|
|
1074
1074
|
turnover: "0"
|
|
@@ -1076,7 +1076,7 @@ const We = (e) => {
|
|
|
1076
1076
|
deposit: e.data.deposit,
|
|
1077
1077
|
reward: e.data.reward,
|
|
1078
1078
|
turnover: e.data.turnover
|
|
1079
|
-
},
|
|
1079
|
+
}, ht = (e) => {
|
|
1080
1080
|
if (e.status == 0 || !e.data)
|
|
1081
1081
|
return {};
|
|
1082
1082
|
const t = {};
|
|
@@ -1086,16 +1086,16 @@ const We = (e) => {
|
|
|
1086
1086
|
t[a] = [];
|
|
1087
1087
|
for (let i = 0; i < l.length; i++) {
|
|
1088
1088
|
const u = l[i];
|
|
1089
|
-
let
|
|
1090
|
-
l.length > i + 1 && (
|
|
1089
|
+
let c = "";
|
|
1090
|
+
l.length > i + 1 && (c = (Number(l[i + 1].achievement) - 1).toString()), t[a].push({
|
|
1091
1091
|
rate: u.rate,
|
|
1092
1092
|
minValue: u.achievement.toString(),
|
|
1093
|
-
maxValue:
|
|
1093
|
+
maxValue: c
|
|
1094
1094
|
});
|
|
1095
1095
|
}
|
|
1096
1096
|
}
|
|
1097
1097
|
return t;
|
|
1098
|
-
},
|
|
1098
|
+
}, Tt = (e) => {
|
|
1099
1099
|
if (e.status == 0 || !e.data)
|
|
1100
1100
|
return {};
|
|
1101
1101
|
const t = {};
|
|
@@ -1105,16 +1105,16 @@ const We = (e) => {
|
|
|
1105
1105
|
t[a] = [];
|
|
1106
1106
|
for (let i = 0; i < l.length; i++) {
|
|
1107
1107
|
const u = l[i];
|
|
1108
|
-
let
|
|
1109
|
-
l.length > i + 1 && (
|
|
1108
|
+
let c = "";
|
|
1109
|
+
l.length > i + 1 && (c = (Number(l[i + 1].achievement) - 1).toString()), t[a].push({
|
|
1110
1110
|
rate: u.rate,
|
|
1111
1111
|
minValue: u.achievement,
|
|
1112
|
-
maxValue:
|
|
1112
|
+
maxValue: c
|
|
1113
1113
|
});
|
|
1114
1114
|
}
|
|
1115
1115
|
}
|
|
1116
1116
|
return t;
|
|
1117
|
-
},
|
|
1117
|
+
}, Rt = (e) => T(e), St = (e) => T(e), Pt = (e) => {
|
|
1118
1118
|
var t, a, l, i, u;
|
|
1119
1119
|
return {
|
|
1120
1120
|
status: e.status == 1,
|
|
@@ -1125,10 +1125,10 @@ const We = (e) => {
|
|
|
1125
1125
|
qrcode: ((i = e.data) == null ? void 0 : i.qrcode) ?? [],
|
|
1126
1126
|
personal: ((u = e.data) == null ? void 0 : u.personal) ?? []
|
|
1127
1127
|
};
|
|
1128
|
-
},
|
|
1128
|
+
}, Q = (e) => ({
|
|
1129
1129
|
validated: e.withdrawValidate === 1 || e.depositValidate === 1 || e.TransferCreditValidate === 1,
|
|
1130
|
-
forms:
|
|
1131
|
-
}),
|
|
1130
|
+
forms: kt(e)
|
|
1131
|
+
}), kt = (e) => e.subDepositForms && e.subDepositForms.length > 0 ? e.subDepositForms.map((t) => ({
|
|
1132
1132
|
id: t.id,
|
|
1133
1133
|
fieldName: t.fieldname,
|
|
1134
1134
|
regex: t.regex,
|
|
@@ -1146,25 +1146,25 @@ const We = (e) => {
|
|
|
1146
1146
|
regex: t.regex,
|
|
1147
1147
|
showName: t.showname,
|
|
1148
1148
|
inputHelper: t.inputHelper
|
|
1149
|
-
})) : [],
|
|
1149
|
+
})) : [], Ot = (e) => T(e), Mt = (e) => e, jt = (e) => ({
|
|
1150
1150
|
status: e.status == 1,
|
|
1151
1151
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
|
|
1152
|
-
}),
|
|
1152
|
+
}), Dt = (e) => T(e), xt = (e) => ({
|
|
1153
1153
|
status: e.status == 1,
|
|
1154
1154
|
message: e.message,
|
|
1155
1155
|
user: e.user ?? ""
|
|
1156
|
-
}),
|
|
1156
|
+
}), Ct = (e) => ({
|
|
1157
1157
|
status: e.status == 1,
|
|
1158
1158
|
message: e.msg ?? "",
|
|
1159
1159
|
amount: e.amount ?? ""
|
|
1160
|
-
}),
|
|
1160
|
+
}), It = (e) => T(e), Ft = (e) => {
|
|
1161
1161
|
var t;
|
|
1162
1162
|
return {
|
|
1163
1163
|
status: e.status == 1,
|
|
1164
1164
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1165
1165
|
dayStreak: ((t = e.data) == null ? void 0 : t.continuousDay) ?? 0
|
|
1166
1166
|
};
|
|
1167
|
-
},
|
|
1167
|
+
}, Lt = (e) => {
|
|
1168
1168
|
var t;
|
|
1169
1169
|
return {
|
|
1170
1170
|
status: e.status == 1,
|
|
@@ -1182,18 +1182,18 @@ const We = (e) => {
|
|
|
1182
1182
|
};
|
|
1183
1183
|
})) ?? []
|
|
1184
1184
|
};
|
|
1185
|
-
},
|
|
1185
|
+
}, Gt = (e) => ({
|
|
1186
1186
|
status: e.status == 1,
|
|
1187
1187
|
message: e.msg ?? ""
|
|
1188
|
-
}),
|
|
1188
|
+
}), zt = (e) => ({
|
|
1189
1189
|
status: e.status == 1,
|
|
1190
1190
|
message: e.msg ?? "",
|
|
1191
1191
|
form: e.form ?? "",
|
|
1192
1192
|
gameUrl: e.data ?? ""
|
|
1193
|
-
}),
|
|
1193
|
+
}), Nt = (e) => T(e), wt = (e) => T(e), X = (e) => ({
|
|
1194
1194
|
status: e.status == 1,
|
|
1195
1195
|
message: e.errormessage ?? ""
|
|
1196
|
-
}),
|
|
1196
|
+
}), Ut = (e) => T(e), Bt = (e) => e, qt = (e) => T(e), Wt = (e) => {
|
|
1197
1197
|
var t;
|
|
1198
1198
|
return {
|
|
1199
1199
|
platformProduct: ((t = e.mdPlatformProduct) == null ? void 0 : t.map((a) => ({
|
|
@@ -1202,7 +1202,7 @@ const We = (e) => {
|
|
|
1202
1202
|
com: a.com
|
|
1203
1203
|
}))) ?? []
|
|
1204
1204
|
};
|
|
1205
|
-
},
|
|
1205
|
+
}, Vt = (e) => {
|
|
1206
1206
|
var t;
|
|
1207
1207
|
return ((t = e.mdProductMaster) == null ? void 0 : t.map((a) => {
|
|
1208
1208
|
var l;
|
|
@@ -1217,33 +1217,33 @@ const We = (e) => {
|
|
|
1217
1217
|
}))) ?? []
|
|
1218
1218
|
};
|
|
1219
1219
|
})) ?? [];
|
|
1220
|
-
},
|
|
1220
|
+
}, $t = (e) => T(e), Et = (e) => T(e), At = (e) => T(e), Ht = (e) => T(e), Jt = (e) => T(e), Yt = (e) => T(e), Kt = (e) => T(e), Qt = (e) => ({
|
|
1221
1221
|
status: e.status == 1,
|
|
1222
1222
|
message: e.msg ?? "",
|
|
1223
1223
|
data: e.data
|
|
1224
|
-
}),
|
|
1224
|
+
}), Xt = (e) => ({
|
|
1225
1225
|
status: e.status == 1,
|
|
1226
1226
|
message: e.msg ?? ""
|
|
1227
|
-
}),
|
|
1227
|
+
}), Zt = (e) => {
|
|
1228
1228
|
let t = "";
|
|
1229
1229
|
return e.data && (t = e.data.max_promo_amt), {
|
|
1230
1230
|
status: e.status == 1,
|
|
1231
1231
|
amount: t
|
|
1232
1232
|
};
|
|
1233
|
-
},
|
|
1233
|
+
}, ea = (e) => ({
|
|
1234
1234
|
eventDescription: {
|
|
1235
1235
|
condition: e.bottomDescription.signinCondition,
|
|
1236
1236
|
prize: e.bottomDescription.signinPrize,
|
|
1237
1237
|
others: e.bottomDescription.otherDescription
|
|
1238
1238
|
},
|
|
1239
1239
|
firstDayOfMonth: e.firstDayOfMonth
|
|
1240
|
-
}),
|
|
1240
|
+
}), ta = (e) => ({
|
|
1241
1241
|
status: e.status == 1,
|
|
1242
1242
|
signedDays: e.days,
|
|
1243
1243
|
signedToday: e.todayIsSign === 1,
|
|
1244
1244
|
dayStreak: e.continuousDay,
|
|
1245
1245
|
canSignToday: e.canSign === 1
|
|
1246
|
-
}),
|
|
1246
|
+
}), aa = (e) => ({
|
|
1247
1247
|
status: e.status == 1,
|
|
1248
1248
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1249
1249
|
fullName: e.fullname,
|
|
@@ -1279,7 +1279,7 @@ const We = (e) => {
|
|
|
1279
1279
|
commission: a.commission
|
|
1280
1280
|
}))
|
|
1281
1281
|
}))
|
|
1282
|
-
}),
|
|
1282
|
+
}), na = (e) => ({
|
|
1283
1283
|
status: e.status == 1,
|
|
1284
1284
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1285
1285
|
id: e.id ?? 0,
|
|
@@ -1291,12 +1291,12 @@ const We = (e) => {
|
|
|
1291
1291
|
})),
|
|
1292
1292
|
currentPage: e.page,
|
|
1293
1293
|
lastPage: e.lastpage
|
|
1294
|
-
}),
|
|
1294
|
+
}), oa = (e) => ({
|
|
1295
1295
|
status: e.status == "1",
|
|
1296
1296
|
message: e.msg ?? "",
|
|
1297
1297
|
username: e.accountcode,
|
|
1298
1298
|
password: e.password
|
|
1299
|
-
}),
|
|
1299
|
+
}), ra = (e) => {
|
|
1300
1300
|
var t;
|
|
1301
1301
|
return {
|
|
1302
1302
|
currentPage: e.mdGameCreditLimitTransfers.current_page,
|
|
@@ -1309,7 +1309,7 @@ const We = (e) => {
|
|
|
1309
1309
|
dateTime: a.transferdatetime
|
|
1310
1310
|
}))) ?? []
|
|
1311
1311
|
};
|
|
1312
|
-
},
|
|
1312
|
+
}, sa = (e) => {
|
|
1313
1313
|
var t;
|
|
1314
1314
|
return {
|
|
1315
1315
|
currentPage: e.mdAgTransfeReport.current_page,
|
|
@@ -1322,8 +1322,8 @@ const We = (e) => {
|
|
|
1322
1322
|
dateTime: a.transferdatetime
|
|
1323
1323
|
}))) ?? []
|
|
1324
1324
|
};
|
|
1325
|
-
},
|
|
1326
|
-
var t, a, l, i, u,
|
|
1325
|
+
}, ia = (e) => {
|
|
1326
|
+
var t, a, l, i, u, c, p, y, g, b, P;
|
|
1327
1327
|
return {
|
|
1328
1328
|
status: e.status == 1,
|
|
1329
1329
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
@@ -1339,7 +1339,7 @@ const We = (e) => {
|
|
|
1339
1339
|
validBet: "0.00",
|
|
1340
1340
|
payout: "0.00"
|
|
1341
1341
|
},
|
|
1342
|
-
data: ((p = (
|
|
1342
|
+
data: ((p = (c = e.data) == null ? void 0 : c.sum) == null ? void 0 : p.map((v) => ({
|
|
1343
1343
|
bet: Number(v.bet).toFixed(2),
|
|
1344
1344
|
activeBet: Number(v.activebet).toFixed(2),
|
|
1345
1345
|
payout: Number(v.payout).toFixed(2),
|
|
@@ -1361,7 +1361,7 @@ const We = (e) => {
|
|
|
1361
1361
|
totalPage: ((P = e.data) == null ? void 0 : P.page.last_page) ?? 1
|
|
1362
1362
|
}
|
|
1363
1363
|
};
|
|
1364
|
-
},
|
|
1364
|
+
}, la = (e) => {
|
|
1365
1365
|
var t, a, l;
|
|
1366
1366
|
return {
|
|
1367
1367
|
status: e.status == 1,
|
|
@@ -1372,7 +1372,7 @@ const We = (e) => {
|
|
|
1372
1372
|
binded: ((l = e.data) == null ? void 0 : l.binded) ?? !1
|
|
1373
1373
|
}
|
|
1374
1374
|
};
|
|
1375
|
-
},
|
|
1375
|
+
}, ua = (e) => T(e), ca = (e) => {
|
|
1376
1376
|
var t;
|
|
1377
1377
|
return {
|
|
1378
1378
|
status: e.status == 1,
|
|
@@ -1382,7 +1382,7 @@ const We = (e) => {
|
|
|
1382
1382
|
createdAt: a.created_at
|
|
1383
1383
|
}))) ?? []
|
|
1384
1384
|
};
|
|
1385
|
-
}, da = (e) => T(e),
|
|
1385
|
+
}, da = (e) => T(e), ma = (e) => {
|
|
1386
1386
|
var t, a, l;
|
|
1387
1387
|
return {
|
|
1388
1388
|
status: e.status == 1,
|
|
@@ -1407,23 +1407,23 @@ const We = (e) => {
|
|
|
1407
1407
|
}))) ?? []
|
|
1408
1408
|
}
|
|
1409
1409
|
};
|
|
1410
|
-
},
|
|
1410
|
+
}, pa = (e) => T(e), ga = (e) => ({
|
|
1411
1411
|
status: e.status == 1,
|
|
1412
1412
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1413
1413
|
tokenAmount: e.token_amount
|
|
1414
|
-
}),
|
|
1415
|
-
var
|
|
1416
|
-
const
|
|
1414
|
+
}), ba = (e) => T(e);
|
|
1415
|
+
var ee = /* @__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))(ee || {});
|
|
1416
|
+
const fa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1417
1417
|
__proto__: null,
|
|
1418
|
-
SettingType:
|
|
1419
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1418
|
+
SettingType: ee
|
|
1419
|
+
}, Symbol.toStringTag, { value: "Module" })), ya = (e) => {
|
|
1420
1420
|
let t = 0;
|
|
1421
1421
|
return e.data != null && typeof e.data == "object" && (t = e.data.amount), {
|
|
1422
1422
|
status: e.status,
|
|
1423
1423
|
message: e.msg ?? "",
|
|
1424
1424
|
amount: t
|
|
1425
1425
|
};
|
|
1426
|
-
},
|
|
1426
|
+
}, _a = (e) => e.status == 0 ? {
|
|
1427
1427
|
record: {
|
|
1428
1428
|
today: {
|
|
1429
1429
|
deposit: "0",
|
|
@@ -1453,15 +1453,15 @@ const ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1453
1453
|
loseLimit: t.loselimit,
|
|
1454
1454
|
maxReward: t.max_reward
|
|
1455
1455
|
}))
|
|
1456
|
-
},
|
|
1456
|
+
}, va = (e) => e.status == 0 ? [] : e.data.map((t) => ({
|
|
1457
1457
|
amount: t.amount,
|
|
1458
1458
|
date: t.date,
|
|
1459
1459
|
deposit: t.deposit,
|
|
1460
1460
|
payout: t.payout
|
|
1461
|
-
})),
|
|
1461
|
+
})), ha = (e) => ({
|
|
1462
1462
|
status: e.status,
|
|
1463
1463
|
message: e.msg ?? ""
|
|
1464
|
-
}),
|
|
1464
|
+
}), Ta = (e) => e.status == 0 ? {
|
|
1465
1465
|
status: e.status,
|
|
1466
1466
|
message: e.msg ?? "",
|
|
1467
1467
|
data: null
|
|
@@ -1483,28 +1483,28 @@ const ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1483
1483
|
collectable: e.data.collectable,
|
|
1484
1484
|
remainingDay: e.data.remaining
|
|
1485
1485
|
}
|
|
1486
|
-
},
|
|
1486
|
+
}, Ra = (e) => ({
|
|
1487
1487
|
status: e.status,
|
|
1488
1488
|
message: e.msg ?? ""
|
|
1489
|
-
}),
|
|
1489
|
+
}), Sa = (e) => ({
|
|
1490
1490
|
status: e.status == 1,
|
|
1491
1491
|
errorMessage: e.errormessage ?? "",
|
|
1492
1492
|
isAutoTransfer: e.optionkey == "auto"
|
|
1493
|
-
}),
|
|
1493
|
+
}), Pa = (e) => T(e), ka = (e) => ({
|
|
1494
1494
|
status: e.status,
|
|
1495
1495
|
message: e.msg ?? "",
|
|
1496
1496
|
turnover: e.data ? e.data.turnover : 0,
|
|
1497
1497
|
percentage: e.data ? e.data.percentage ?? 0 : 0,
|
|
1498
1498
|
incentive: e.data ? e.data.incentive : 0,
|
|
1499
1499
|
claimable: 0
|
|
1500
|
-
}),
|
|
1500
|
+
}), Oa = (e) => {
|
|
1501
1501
|
let t = "0";
|
|
1502
1502
|
return e.data && (t = e.data.incentive), {
|
|
1503
1503
|
status: e.status,
|
|
1504
1504
|
message: e.msg ?? "",
|
|
1505
1505
|
amount: t
|
|
1506
1506
|
};
|
|
1507
|
-
},
|
|
1507
|
+
}, Ma = (e) => {
|
|
1508
1508
|
let t = "0";
|
|
1509
1509
|
return e.data && (t = e.data.incentive), {
|
|
1510
1510
|
status: e.status,
|
|
@@ -1512,35 +1512,35 @@ const ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1512
1512
|
amount: t
|
|
1513
1513
|
};
|
|
1514
1514
|
};
|
|
1515
|
-
var
|
|
1516
|
-
const
|
|
1515
|
+
var x = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(x || {});
|
|
1516
|
+
const ja = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1517
1517
|
__proto__: null,
|
|
1518
|
-
MissionStatus:
|
|
1519
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1518
|
+
MissionStatus: x
|
|
1519
|
+
}, Symbol.toStringTag, { value: "Module" })), Da = (e) => {
|
|
1520
1520
|
if (e.status === 0)
|
|
1521
1521
|
return {
|
|
1522
1522
|
status: e.status,
|
|
1523
1523
|
data: null
|
|
1524
1524
|
};
|
|
1525
|
-
const t =
|
|
1525
|
+
const t = ae(e, 0), a = ae(e, 1);
|
|
1526
1526
|
return {
|
|
1527
1527
|
status: e.status,
|
|
1528
1528
|
data: {
|
|
1529
|
-
period: `${
|
|
1529
|
+
period: `${ne(e.data.datefrom)} ~ ${ne(e.data.dateto)}`,
|
|
1530
1530
|
gift: {
|
|
1531
1531
|
deposit: {
|
|
1532
|
-
current: t.filter((l) => l.status ==
|
|
1532
|
+
current: t.filter((l) => l.status == x.collected).length,
|
|
1533
1533
|
total: t.length,
|
|
1534
|
-
percentage:
|
|
1534
|
+
percentage: oe(t)
|
|
1535
1535
|
},
|
|
1536
1536
|
activeBet: {
|
|
1537
|
-
current: a.filter((l) => l.status ==
|
|
1537
|
+
current: a.filter((l) => l.status == x.collected).length,
|
|
1538
1538
|
total: a.length,
|
|
1539
|
-
percentage:
|
|
1539
|
+
percentage: oe(a)
|
|
1540
1540
|
},
|
|
1541
1541
|
grandPrize: {
|
|
1542
1542
|
countDownTimestamp: xa(e.data.dateto),
|
|
1543
|
-
status: e.data.final_claimable ? e.data.final_collected === "1" ?
|
|
1543
|
+
status: e.data.final_claimable ? e.data.final_collected === "1" ? x.collected : x.collectable : x.inProgress,
|
|
1544
1544
|
prize: e.data.reward
|
|
1545
1545
|
}
|
|
1546
1546
|
},
|
|
@@ -1548,31 +1548,31 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1548
1548
|
activeBet: a
|
|
1549
1549
|
}
|
|
1550
1550
|
};
|
|
1551
|
-
},
|
|
1551
|
+
}, ae = (e, t) => e.data.tier.filter((a) => a.type == t).map((a) => {
|
|
1552
1552
|
const l = Math.min(a.achieve ?? 0, a.requirement);
|
|
1553
1553
|
return {
|
|
1554
1554
|
id: a.transid,
|
|
1555
1555
|
reward: a.reward,
|
|
1556
|
-
status: a.claimable !== "1" ?
|
|
1556
|
+
status: a.claimable !== "1" ? x.inProgress : a.collected === "1" ? x.collected : x.collectable,
|
|
1557
1557
|
progress: {
|
|
1558
1558
|
current: l,
|
|
1559
1559
|
total: a.requirement,
|
|
1560
1560
|
currentPercentage: (l / a.requirement * 100).toFixed(0)
|
|
1561
1561
|
}
|
|
1562
1562
|
};
|
|
1563
|
-
}),
|
|
1563
|
+
}), ne = (e) => {
|
|
1564
1564
|
const t = new Date(e), a = t.getDate().toString().padStart(2, "0"), l = (t.getMonth() + 1).toString().padStart(2, "0"), i = t.getHours().toString().padStart(2, "0"), u = t.getMinutes().toString().padStart(2, "0");
|
|
1565
1565
|
return `${a}/${l} ${i}:${u}`;
|
|
1566
|
-
},
|
|
1566
|
+
}, oe = (e) => {
|
|
1567
1567
|
const t = e.reduce((l, i) => l + parseFloat(i.reward), 0), a = e.reduce((l, i) => l + i.progress.total, 0);
|
|
1568
1568
|
return a > 0 ? (t / a * 100).toFixed(2) : "0";
|
|
1569
1569
|
}, xa = (e) => {
|
|
1570
1570
|
const t = (/* @__PURE__ */ new Date()).getTime(), a = new Date(e).getTime();
|
|
1571
1571
|
return Math.max(0, a - t);
|
|
1572
|
-
},
|
|
1572
|
+
}, Ca = (e) => ({
|
|
1573
1573
|
status: e.status,
|
|
1574
1574
|
message: e.msg ?? ""
|
|
1575
|
-
}),
|
|
1575
|
+
}), Ia = (e) => ({
|
|
1576
1576
|
status: e.status == 1,
|
|
1577
1577
|
socialLogin: e.social_login == 1,
|
|
1578
1578
|
errorMessage: e.erorrmessage ?? "",
|
|
@@ -1584,7 +1584,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1584
1584
|
maxLength: t.maxlen ?? "0",
|
|
1585
1585
|
inputHelper: t.inputHelper ?? ""
|
|
1586
1586
|
}))
|
|
1587
|
-
}),
|
|
1587
|
+
}), Fa = (e) => ({
|
|
1588
1588
|
currentPage: e.mdGameLists.current_page,
|
|
1589
1589
|
lastPage: e.mdGameLists.last_page,
|
|
1590
1590
|
data: e.mdGameLists.data && e.mdGameLists.data.length > 0 ? e.mdGameLists.data.map((t) => ({
|
|
@@ -1601,10 +1601,51 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1601
1601
|
logoUrl: `/image/platform_logo/${t.img.split("/").pop()}?v=1`,
|
|
1602
1602
|
rate: "0.00"
|
|
1603
1603
|
})) ?? [] : []
|
|
1604
|
-
}),
|
|
1605
|
-
|
|
1604
|
+
}), La = (e) => T(e), Ga = (e) => T(e), za = (e) => T(e);
|
|
1605
|
+
var U = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(U || {});
|
|
1606
|
+
const Na = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1607
|
+
__proto__: null,
|
|
1608
|
+
AccumulateDepositStatus: U
|
|
1609
|
+
}, Symbol.toStringTag, { value: "Module" })), wa = (e) => {
|
|
1610
|
+
if (e.status == 0)
|
|
1611
|
+
return {
|
|
1612
|
+
status: !1,
|
|
1613
|
+
message: e.msg ?? "",
|
|
1614
|
+
data: null
|
|
1615
|
+
};
|
|
1616
|
+
let t = null;
|
|
1617
|
+
if (e.data != null) {
|
|
1618
|
+
const a = e.data.achieve ?? 0, l = e.data.achieve ?? 0, i = a / l * 100;
|
|
1619
|
+
t = {
|
|
1620
|
+
buttonStatus: e.data.tier.filter(
|
|
1621
|
+
(c) => c.claimable == "1" && c.collected != "1"
|
|
1622
|
+
).length > 0 ? U.collectable : U.collected,
|
|
1623
|
+
dateFrom: e.data.datefrom,
|
|
1624
|
+
dateTo: e.data.dateto,
|
|
1625
|
+
progress: {
|
|
1626
|
+
current: a,
|
|
1627
|
+
total: l,
|
|
1628
|
+
currentPercentage: i
|
|
1629
|
+
},
|
|
1630
|
+
list: e.data.tier.map((c) => ({
|
|
1631
|
+
total: c.requirement,
|
|
1632
|
+
reward: Number(c.reward),
|
|
1633
|
+
status: c.claimable != "1" ? U.inProgress : c.collected == "1" ? U.collected : U.collectable
|
|
1634
|
+
}))
|
|
1635
|
+
};
|
|
1636
|
+
}
|
|
1637
|
+
return {
|
|
1638
|
+
status: !0,
|
|
1639
|
+
message: e.msg ?? "",
|
|
1640
|
+
data: t
|
|
1641
|
+
};
|
|
1642
|
+
}, Ua = (e) => ({
|
|
1643
|
+
status: e.status == 1,
|
|
1644
|
+
message: e.msg ?? ""
|
|
1645
|
+
}), Ba = async (e) => {
|
|
1646
|
+
var t, a, l, i, u, c, p, y, g, b, P, v, m, S, M, L;
|
|
1606
1647
|
try {
|
|
1607
|
-
e.findIndex((
|
|
1648
|
+
e.findIndex((d) => d.name === s.vipList) !== -1 && e.push(
|
|
1608
1649
|
{
|
|
1609
1650
|
name: s.vipBonus,
|
|
1610
1651
|
query: ""
|
|
@@ -1613,18 +1654,18 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1613
1654
|
{ name: s.vipStatus, query: "" },
|
|
1614
1655
|
{
|
|
1615
1656
|
name: s.getSetting,
|
|
1616
|
-
query: JSON.stringify({ name: [
|
|
1657
|
+
query: JSON.stringify({ name: [ee.vipcalculation] })
|
|
1617
1658
|
}
|
|
1618
1659
|
);
|
|
1619
1660
|
const R = e.findIndex(
|
|
1620
|
-
(
|
|
1661
|
+
(d) => d.name === s.getFavouriteGame
|
|
1621
1662
|
);
|
|
1622
1663
|
R !== -1 && (JSON.parse(e[R].query).pid || e.push({
|
|
1623
1664
|
name: s.getPlatformTurnoverRate,
|
|
1624
1665
|
query: ""
|
|
1625
1666
|
}));
|
|
1626
|
-
const
|
|
1627
|
-
|
|
1667
|
+
const G = e.findIndex((d) => d.name === s.gameList);
|
|
1668
|
+
G !== -1 && (JSON.parse(e[G].query).pid || e.push({
|
|
1628
1669
|
name: s.fishGameList,
|
|
1629
1670
|
query: JSON.stringify({
|
|
1630
1671
|
d: "mobile",
|
|
@@ -1635,39 +1676,39 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1635
1676
|
name: s.getPlatformTurnoverRate,
|
|
1636
1677
|
query: ""
|
|
1637
1678
|
}));
|
|
1638
|
-
const
|
|
1639
|
-
if (
|
|
1640
|
-
let
|
|
1679
|
+
const B = e.findIndex((d) => d.name === s.searchHot);
|
|
1680
|
+
if (B !== -1) {
|
|
1681
|
+
let d = {};
|
|
1641
1682
|
e.forEach((_) => {
|
|
1642
|
-
|
|
1643
|
-
}), e.splice(
|
|
1683
|
+
d = _.query;
|
|
1684
|
+
}), e.splice(B), e.push({
|
|
1644
1685
|
name: s.getFourDimensionData,
|
|
1645
|
-
query: String(
|
|
1686
|
+
query: String(d)
|
|
1646
1687
|
});
|
|
1647
1688
|
}
|
|
1648
|
-
const
|
|
1649
|
-
if (
|
|
1650
|
-
let
|
|
1689
|
+
const q = e.findIndex((d) => d.name === s.searchNumberHistory);
|
|
1690
|
+
if (q !== -1) {
|
|
1691
|
+
let d = {};
|
|
1651
1692
|
e.forEach((_) => {
|
|
1652
|
-
|
|
1653
|
-
}), e.splice(
|
|
1693
|
+
d = _.query;
|
|
1694
|
+
}), e.splice(q), e.push({
|
|
1654
1695
|
name: s.getFourDimensionData,
|
|
1655
|
-
query: String(
|
|
1696
|
+
query: String(d)
|
|
1656
1697
|
});
|
|
1657
1698
|
}
|
|
1658
|
-
if (e.findIndex((
|
|
1659
|
-
let
|
|
1699
|
+
if (e.findIndex((d) => d.name === s.searchByDate) !== -1) {
|
|
1700
|
+
let d = {};
|
|
1660
1701
|
e.forEach((_) => {
|
|
1661
|
-
|
|
1662
|
-
}), e.splice(
|
|
1702
|
+
d = _.query;
|
|
1703
|
+
}), e.splice(q), e.push({
|
|
1663
1704
|
name: s.getFourDimensionData,
|
|
1664
|
-
query: String(
|
|
1705
|
+
query: String(d)
|
|
1665
1706
|
});
|
|
1666
1707
|
}
|
|
1667
|
-
const
|
|
1668
|
-
(
|
|
1708
|
+
const W = e.findIndex(
|
|
1709
|
+
(d) => d.name === s.getFourDimensionData
|
|
1669
1710
|
);
|
|
1670
|
-
|
|
1711
|
+
W !== -1 && e[W].query == "" && (e.splice(W), e.push(
|
|
1671
1712
|
{
|
|
1672
1713
|
name: s.getFourDimensionData,
|
|
1673
1714
|
query: JSON.stringify({ action: s.getCompany, native: "1" })
|
|
@@ -1683,164 +1724,164 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1683
1724
|
})
|
|
1684
1725
|
}
|
|
1685
1726
|
));
|
|
1686
|
-
const
|
|
1687
|
-
requests: e.map((
|
|
1688
|
-
name:
|
|
1689
|
-
query: btoa(
|
|
1727
|
+
const E = {
|
|
1728
|
+
requests: e.map((d) => ({
|
|
1729
|
+
name: d.name,
|
|
1730
|
+
query: btoa(d.query)
|
|
1690
1731
|
}))
|
|
1691
|
-
},
|
|
1732
|
+
}, A = await F.post(
|
|
1692
1733
|
"/graph/jwt",
|
|
1693
|
-
|
|
1734
|
+
me(JSON.stringify(E))
|
|
1694
1735
|
), n = {
|
|
1695
1736
|
status: 200,
|
|
1696
1737
|
message: "",
|
|
1697
1738
|
result: {}
|
|
1698
1739
|
};
|
|
1699
|
-
for (const
|
|
1700
|
-
|
|
1701
|
-
const _ =
|
|
1740
|
+
for (const d of A.data.responses) {
|
|
1741
|
+
d.error != null && d.error.code != 200 && (n.status = d.error.code, n.message = d.error.message);
|
|
1742
|
+
const _ = d.attributes !== null && d.attributes !== void 0 ? pe(d.attributes) : null, r = d.name, o = _ ? JSON.parse(_) : null;
|
|
1702
1743
|
if (console.log(r), console.log(o), !o)
|
|
1703
1744
|
console.log("Not data received"), n.result[r] = null;
|
|
1704
1745
|
else
|
|
1705
1746
|
switch (r) {
|
|
1706
1747
|
case s.announcement:
|
|
1707
|
-
n.result[r] =
|
|
1748
|
+
n.result[r] = Se(o);
|
|
1708
1749
|
break;
|
|
1709
1750
|
case s.gameList:
|
|
1710
|
-
n.result[r] =
|
|
1751
|
+
n.result[r] = ke(o);
|
|
1711
1752
|
break;
|
|
1712
1753
|
case s.cmsList:
|
|
1713
|
-
n.result[r] =
|
|
1754
|
+
n.result[r] = Le(o);
|
|
1714
1755
|
break;
|
|
1715
1756
|
case s.paymentsProvider:
|
|
1716
|
-
n.result[r] =
|
|
1757
|
+
n.result[r] = ve(
|
|
1717
1758
|
o
|
|
1718
1759
|
);
|
|
1719
1760
|
break;
|
|
1720
1761
|
case s.getUserProfile:
|
|
1721
|
-
n.result[r] =
|
|
1762
|
+
n.result[r] = Pe(o);
|
|
1722
1763
|
break;
|
|
1723
1764
|
case s.vipList:
|
|
1724
|
-
n.result[r] =
|
|
1765
|
+
n.result[r] = je(o);
|
|
1725
1766
|
break;
|
|
1726
1767
|
case s.vipBonus:
|
|
1727
1768
|
n.result[r] = xe(o);
|
|
1728
1769
|
break;
|
|
1729
1770
|
case s.vipFieldStatus:
|
|
1730
|
-
n.result[r] =
|
|
1771
|
+
n.result[r] = Ce(o);
|
|
1731
1772
|
break;
|
|
1732
1773
|
case s.vipStatus:
|
|
1733
|
-
n.result[r] =
|
|
1774
|
+
n.result[r] = Ie(o);
|
|
1734
1775
|
break;
|
|
1735
1776
|
case s.promotion:
|
|
1736
|
-
n.result[r] =
|
|
1777
|
+
n.result[r] = De(o);
|
|
1737
1778
|
break;
|
|
1738
1779
|
case s.getSetting:
|
|
1739
|
-
n.result[r] =
|
|
1780
|
+
n.result[r] = Fe(o);
|
|
1740
1781
|
break;
|
|
1741
1782
|
case s.getCountryMobile:
|
|
1742
|
-
n.result[r] =
|
|
1783
|
+
n.result[r] = Ge(
|
|
1743
1784
|
o
|
|
1744
1785
|
);
|
|
1745
1786
|
break;
|
|
1746
1787
|
case s.getPlatformTurnoverRate:
|
|
1747
|
-
n.result[r] =
|
|
1788
|
+
n.result[r] = ze(
|
|
1748
1789
|
o
|
|
1749
1790
|
);
|
|
1750
1791
|
break;
|
|
1751
1792
|
case s.mainWallet:
|
|
1752
|
-
n.result[r] =
|
|
1793
|
+
n.result[r] = Ne(o);
|
|
1753
1794
|
break;
|
|
1754
1795
|
case s.getLanguageSetting:
|
|
1755
|
-
n.result[r] =
|
|
1796
|
+
n.result[r] = we(
|
|
1756
1797
|
o
|
|
1757
1798
|
);
|
|
1758
1799
|
break;
|
|
1759
1800
|
case s.getFourDimensionData:
|
|
1760
|
-
n.result[r] =
|
|
1801
|
+
n.result[r] = Ue(
|
|
1761
1802
|
o
|
|
1762
1803
|
);
|
|
1763
1804
|
break;
|
|
1764
1805
|
case s.getCompany:
|
|
1765
|
-
n.result[r] =
|
|
1806
|
+
n.result[r] = Be(o);
|
|
1766
1807
|
break;
|
|
1767
1808
|
case s.searchResultDate:
|
|
1768
|
-
n.result[r] =
|
|
1809
|
+
n.result[r] = qe(
|
|
1769
1810
|
o
|
|
1770
1811
|
);
|
|
1771
1812
|
break;
|
|
1772
1813
|
case s.searchHot:
|
|
1773
|
-
n.result[r] =
|
|
1814
|
+
n.result[r] = Ve(o);
|
|
1774
1815
|
break;
|
|
1775
1816
|
case s.searchByDate:
|
|
1776
|
-
n.result[r] =
|
|
1817
|
+
n.result[r] = $e(o);
|
|
1777
1818
|
break;
|
|
1778
1819
|
case s.upcomingMatches:
|
|
1779
|
-
n.result[r] =
|
|
1820
|
+
n.result[r] = Ee(
|
|
1780
1821
|
o
|
|
1781
1822
|
);
|
|
1782
1823
|
break;
|
|
1783
1824
|
case s.deposit:
|
|
1784
|
-
n.result[r] =
|
|
1825
|
+
n.result[r] = Ae(o);
|
|
1785
1826
|
break;
|
|
1786
1827
|
case s.applyVipBonus:
|
|
1787
1828
|
n.result[r] = He(o);
|
|
1788
1829
|
break;
|
|
1789
1830
|
case s.withdraw:
|
|
1790
|
-
n.result[r] =
|
|
1831
|
+
n.result[r] = Je(o);
|
|
1791
1832
|
break;
|
|
1792
1833
|
case s.getBankCardData:
|
|
1793
|
-
n.result[r] =
|
|
1834
|
+
n.result[r] = Ye(
|
|
1794
1835
|
o
|
|
1795
1836
|
);
|
|
1796
1837
|
break;
|
|
1797
1838
|
case s.withdrawalGet:
|
|
1798
|
-
n.result[r] =
|
|
1839
|
+
n.result[r] = Ke(o);
|
|
1799
1840
|
break;
|
|
1800
1841
|
case s.addBankCard:
|
|
1801
|
-
n.result[r] =
|
|
1842
|
+
n.result[r] = Qe(o);
|
|
1802
1843
|
break;
|
|
1803
1844
|
case s.transactionReport:
|
|
1804
|
-
n.result[r] =
|
|
1845
|
+
n.result[r] = Xe(
|
|
1805
1846
|
o
|
|
1806
1847
|
);
|
|
1807
1848
|
break;
|
|
1808
1849
|
case s.changePassword:
|
|
1809
|
-
n.result[r] =
|
|
1850
|
+
n.result[r] = et(o);
|
|
1810
1851
|
break;
|
|
1811
1852
|
case s.wallet:
|
|
1812
|
-
n.result[r] =
|
|
1853
|
+
n.result[r] = tt(o);
|
|
1813
1854
|
break;
|
|
1814
1855
|
case s.getEventList:
|
|
1815
|
-
n.result[r] =
|
|
1856
|
+
n.result[r] = at(o);
|
|
1816
1857
|
break;
|
|
1817
1858
|
case s.getEventToken:
|
|
1818
|
-
n.result[r] =
|
|
1859
|
+
n.result[r] = nt(o);
|
|
1819
1860
|
break;
|
|
1820
1861
|
case s.getExtraGame:
|
|
1821
|
-
n.result[r] =
|
|
1862
|
+
n.result[r] = ot(o);
|
|
1822
1863
|
break;
|
|
1823
1864
|
case s.mailBox:
|
|
1824
|
-
n.result[r] =
|
|
1865
|
+
n.result[r] = rt(o);
|
|
1825
1866
|
break;
|
|
1826
1867
|
case s.fishGameList:
|
|
1827
|
-
n.result[r] =
|
|
1868
|
+
n.result[r] = st(o);
|
|
1828
1869
|
break;
|
|
1829
1870
|
case s.slotGameList:
|
|
1830
|
-
n.result[r] =
|
|
1871
|
+
n.result[r] = it(o);
|
|
1831
1872
|
break;
|
|
1832
1873
|
case s.getTurnOverRewardData:
|
|
1833
|
-
n.result[r] =
|
|
1874
|
+
n.result[r] = lt(
|
|
1834
1875
|
o
|
|
1835
1876
|
);
|
|
1836
1877
|
break;
|
|
1837
1878
|
case s.getTurnOverRewardReport:
|
|
1838
|
-
n.result[r] =
|
|
1879
|
+
n.result[r] = ut(
|
|
1839
1880
|
o
|
|
1840
1881
|
);
|
|
1841
1882
|
break;
|
|
1842
1883
|
case s.getInviteRewardData:
|
|
1843
|
-
n.result[r] =
|
|
1884
|
+
n.result[r] = ct(
|
|
1844
1885
|
o
|
|
1845
1886
|
);
|
|
1846
1887
|
break;
|
|
@@ -1850,95 +1891,95 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1850
1891
|
);
|
|
1851
1892
|
break;
|
|
1852
1893
|
case s.getTopupRewardData:
|
|
1853
|
-
n.result[r] =
|
|
1894
|
+
n.result[r] = mt(
|
|
1854
1895
|
o
|
|
1855
1896
|
);
|
|
1856
1897
|
break;
|
|
1857
1898
|
case s.getTopupRewardReport:
|
|
1858
|
-
n.result[r] =
|
|
1899
|
+
n.result[r] = pt(
|
|
1859
1900
|
o
|
|
1860
1901
|
);
|
|
1861
1902
|
break;
|
|
1862
1903
|
case s.getRewardReferral:
|
|
1863
|
-
n.result[r] =
|
|
1904
|
+
n.result[r] = gt(
|
|
1864
1905
|
o
|
|
1865
1906
|
);
|
|
1866
1907
|
break;
|
|
1867
1908
|
case s.submitWithdrawValidate:
|
|
1868
|
-
n.result[r] =
|
|
1909
|
+
n.result[r] = X(o);
|
|
1869
1910
|
break;
|
|
1870
1911
|
case s.getDepositPromotion:
|
|
1871
|
-
n.result[r] =
|
|
1912
|
+
n.result[r] = bt(
|
|
1872
1913
|
o
|
|
1873
1914
|
);
|
|
1874
1915
|
break;
|
|
1875
1916
|
case s.getTopUpRewardClaim:
|
|
1876
|
-
n.result[r] =
|
|
1917
|
+
n.result[r] = ft(
|
|
1877
1918
|
o
|
|
1878
1919
|
);
|
|
1879
1920
|
break;
|
|
1880
1921
|
case s.getInviteRewardClaim:
|
|
1881
|
-
n.result[r] =
|
|
1922
|
+
n.result[r] = yt(
|
|
1882
1923
|
o
|
|
1883
1924
|
);
|
|
1884
1925
|
break;
|
|
1885
1926
|
case s.getTurnOverRewardClaim:
|
|
1886
|
-
n.result[r] =
|
|
1927
|
+
n.result[r] = _t(
|
|
1887
1928
|
o
|
|
1888
1929
|
);
|
|
1889
1930
|
break;
|
|
1890
1931
|
case s.getInviteRewardSetting:
|
|
1891
|
-
n.result[r] =
|
|
1932
|
+
n.result[r] = vt(
|
|
1892
1933
|
o
|
|
1893
1934
|
);
|
|
1894
1935
|
break;
|
|
1895
1936
|
case s.getTurnOverRewardSetting:
|
|
1896
|
-
n.result[r] =
|
|
1937
|
+
n.result[r] = ht(
|
|
1897
1938
|
o
|
|
1898
1939
|
);
|
|
1899
1940
|
break;
|
|
1900
1941
|
case s.getTopUpRewardSetting:
|
|
1901
|
-
n.result[r] =
|
|
1942
|
+
n.result[r] = Tt(
|
|
1902
1943
|
o
|
|
1903
1944
|
);
|
|
1904
1945
|
break;
|
|
1905
1946
|
case s.requestForgetPassword:
|
|
1906
|
-
n.result[r] =
|
|
1947
|
+
n.result[r] = Rt(
|
|
1907
1948
|
o
|
|
1908
1949
|
);
|
|
1909
1950
|
break;
|
|
1910
1951
|
case s.submitForgetPassword:
|
|
1911
|
-
n.result[r] =
|
|
1952
|
+
n.result[r] = St(
|
|
1912
1953
|
o
|
|
1913
1954
|
);
|
|
1914
1955
|
break;
|
|
1915
1956
|
case s.getImage:
|
|
1916
|
-
n.result[r] =
|
|
1957
|
+
n.result[r] = Pt(o);
|
|
1917
1958
|
break;
|
|
1918
1959
|
case s.getDepositValidate:
|
|
1919
|
-
n.result[r] =
|
|
1960
|
+
n.result[r] = Q(o);
|
|
1920
1961
|
break;
|
|
1921
1962
|
case s.getWithdrawValidate:
|
|
1922
|
-
n.result[r] =
|
|
1963
|
+
n.result[r] = Q(o);
|
|
1923
1964
|
break;
|
|
1924
1965
|
case s.getTransferCreditValidate:
|
|
1925
|
-
n.result[r] =
|
|
1966
|
+
n.result[r] = Q(o);
|
|
1926
1967
|
break;
|
|
1927
1968
|
case s.updateProfilePicture:
|
|
1928
|
-
n.result[r] =
|
|
1969
|
+
n.result[r] = Ot(
|
|
1929
1970
|
o
|
|
1930
1971
|
);
|
|
1931
1972
|
break;
|
|
1932
1973
|
case s.readMail:
|
|
1933
|
-
n.result[r] =
|
|
1974
|
+
n.result[r] = Mt(o);
|
|
1934
1975
|
break;
|
|
1935
1976
|
case s.checkRedPacketValidate:
|
|
1936
|
-
n.result[r] =
|
|
1977
|
+
n.result[r] = jt(
|
|
1937
1978
|
o
|
|
1938
1979
|
);
|
|
1939
1980
|
break;
|
|
1940
1981
|
case s.requestTacCode:
|
|
1941
|
-
n.result[r] =
|
|
1982
|
+
n.result[r] = Dt(o);
|
|
1942
1983
|
break;
|
|
1943
1984
|
case s.getUsernameByRefer:
|
|
1944
1985
|
n.result[r] = xt(
|
|
@@ -1946,68 +1987,68 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1946
1987
|
);
|
|
1947
1988
|
break;
|
|
1948
1989
|
case s.applyPromo:
|
|
1949
|
-
n.result[r] =
|
|
1990
|
+
n.result[r] = Ct(o);
|
|
1950
1991
|
break;
|
|
1951
1992
|
case s.applyRedPacket:
|
|
1952
|
-
n.result[r] =
|
|
1993
|
+
n.result[r] = It(o);
|
|
1953
1994
|
break;
|
|
1954
1995
|
case s.applySignIn:
|
|
1955
|
-
n.result[r] =
|
|
1996
|
+
n.result[r] = Ft(o);
|
|
1956
1997
|
break;
|
|
1957
1998
|
case s.getCountry:
|
|
1958
|
-
n.result[r] =
|
|
1999
|
+
n.result[r] = Lt(o);
|
|
1959
2000
|
break;
|
|
1960
2001
|
case s.submitGiftCode:
|
|
1961
|
-
n.result[r] =
|
|
2002
|
+
n.result[r] = Gt(o);
|
|
1962
2003
|
break;
|
|
1963
2004
|
case s.playGame:
|
|
1964
|
-
n.result[r] =
|
|
2005
|
+
n.result[r] = zt(o);
|
|
1965
2006
|
break;
|
|
1966
2007
|
case s.transferToMain:
|
|
1967
|
-
n.result[r] =
|
|
2008
|
+
n.result[r] = Nt(o);
|
|
1968
2009
|
break;
|
|
1969
2010
|
case s.transferProcess:
|
|
1970
|
-
n.result[r] =
|
|
2011
|
+
n.result[r] = wt(
|
|
1971
2012
|
o
|
|
1972
2013
|
);
|
|
1973
2014
|
break;
|
|
1974
2015
|
case s.submitDepositValidate:
|
|
1975
|
-
n.result[r] =
|
|
2016
|
+
n.result[r] = X(o);
|
|
1976
2017
|
break;
|
|
1977
2018
|
case s.submitTransferCreditValidate:
|
|
1978
|
-
n.result[r] =
|
|
2019
|
+
n.result[r] = X(o);
|
|
1979
2020
|
break;
|
|
1980
2021
|
case s.checkTransferCredit:
|
|
1981
|
-
n.result[r] =
|
|
2022
|
+
n.result[r] = Ut(
|
|
1982
2023
|
o
|
|
1983
2024
|
);
|
|
1984
2025
|
break;
|
|
1985
2026
|
case s.friendList:
|
|
1986
|
-
n.result[r] =
|
|
2027
|
+
n.result[r] = Bt(o);
|
|
1987
2028
|
break;
|
|
1988
2029
|
case s.friendListEdit:
|
|
1989
|
-
n.result[r] =
|
|
2030
|
+
n.result[r] = qt(o);
|
|
1990
2031
|
break;
|
|
1991
2032
|
case s.getActivePP:
|
|
1992
|
-
n.result[r] =
|
|
2033
|
+
n.result[r] = Wt(o);
|
|
1993
2034
|
break;
|
|
1994
2035
|
case s.getActiveProduct:
|
|
1995
|
-
n.result[r] =
|
|
2036
|
+
n.result[r] = Vt(
|
|
1996
2037
|
o
|
|
1997
2038
|
);
|
|
1998
2039
|
break;
|
|
1999
2040
|
case s.requestWithdrawTac:
|
|
2000
|
-
n.result[r] =
|
|
2041
|
+
n.result[r] = $t(
|
|
2001
2042
|
o
|
|
2002
2043
|
);
|
|
2003
2044
|
break;
|
|
2004
2045
|
case s.requestWithdrawalCode:
|
|
2005
|
-
n.result[r] =
|
|
2046
|
+
n.result[r] = Et(
|
|
2006
2047
|
o
|
|
2007
2048
|
);
|
|
2008
2049
|
break;
|
|
2009
2050
|
case s.commissionWithdraw:
|
|
2010
|
-
n.result[r] =
|
|
2051
|
+
n.result[r] = At(
|
|
2011
2052
|
o
|
|
2012
2053
|
);
|
|
2013
2054
|
break;
|
|
@@ -2017,75 +2058,75 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2017
2058
|
);
|
|
2018
2059
|
break;
|
|
2019
2060
|
case s.submitCryptoAccount:
|
|
2020
|
-
n.result[r] =
|
|
2061
|
+
n.result[r] = Jt(
|
|
2021
2062
|
o
|
|
2022
2063
|
);
|
|
2023
2064
|
break;
|
|
2024
2065
|
case s.requestTransferMoney:
|
|
2025
|
-
n.result[r] =
|
|
2066
|
+
n.result[r] = Yt(
|
|
2026
2067
|
o
|
|
2027
2068
|
);
|
|
2028
2069
|
break;
|
|
2029
2070
|
case s.submitTransferMoney:
|
|
2030
|
-
n.result[r] =
|
|
2071
|
+
n.result[r] = Kt(
|
|
2031
2072
|
o
|
|
2032
2073
|
);
|
|
2033
2074
|
break;
|
|
2034
2075
|
case s.requestUpdateMobileTacCode:
|
|
2035
|
-
n.result[r] =
|
|
2076
|
+
n.result[r] = Qt(
|
|
2036
2077
|
o
|
|
2037
2078
|
);
|
|
2038
2079
|
break;
|
|
2039
2080
|
case s.submitUpdateMobileTacCode:
|
|
2040
|
-
n.result[r] =
|
|
2081
|
+
n.result[r] = Xt(
|
|
2041
2082
|
o
|
|
2042
2083
|
);
|
|
2043
2084
|
break;
|
|
2044
2085
|
case s.getVerifyPromo:
|
|
2045
|
-
n.result[r] =
|
|
2086
|
+
n.result[r] = Zt(o);
|
|
2046
2087
|
break;
|
|
2047
2088
|
case s.signInViewInfo:
|
|
2048
|
-
n.result[r] =
|
|
2089
|
+
n.result[r] = ea(o);
|
|
2049
2090
|
break;
|
|
2050
2091
|
case s.signInRecord:
|
|
2051
|
-
n.result[r] =
|
|
2092
|
+
n.result[r] = ta(o);
|
|
2052
2093
|
break;
|
|
2053
2094
|
case s.referralProfile:
|
|
2054
|
-
n.result[r] =
|
|
2095
|
+
n.result[r] = aa(
|
|
2055
2096
|
o
|
|
2056
2097
|
);
|
|
2057
2098
|
break;
|
|
2058
2099
|
case s.referralMemberProfile:
|
|
2059
|
-
n.result[r] =
|
|
2100
|
+
n.result[r] = na(
|
|
2060
2101
|
o
|
|
2061
2102
|
);
|
|
2062
2103
|
break;
|
|
2063
2104
|
case s.registerAction:
|
|
2064
|
-
n.result[r] =
|
|
2105
|
+
n.result[r] = oa(o);
|
|
2065
2106
|
break;
|
|
2066
2107
|
case s.transferReport:
|
|
2067
|
-
n.result[r] =
|
|
2108
|
+
n.result[r] = ra(o);
|
|
2068
2109
|
break;
|
|
2069
2110
|
case s.agTransferCreditReport:
|
|
2070
|
-
n.result[r] =
|
|
2111
|
+
n.result[r] = sa(
|
|
2071
2112
|
o
|
|
2072
2113
|
);
|
|
2073
2114
|
break;
|
|
2074
2115
|
case s.betReport:
|
|
2075
|
-
n.result[r] =
|
|
2116
|
+
n.result[r] = ia(o);
|
|
2076
2117
|
break;
|
|
2077
2118
|
case s.getTwoFactorAuthenticate:
|
|
2078
|
-
n.result[r] =
|
|
2119
|
+
n.result[r] = la(
|
|
2079
2120
|
o
|
|
2080
2121
|
);
|
|
2081
2122
|
break;
|
|
2082
2123
|
case s.submitTwoFactorAuthenticate:
|
|
2083
|
-
n.result[r] =
|
|
2124
|
+
n.result[r] = ua(
|
|
2084
2125
|
o
|
|
2085
2126
|
);
|
|
2086
2127
|
break;
|
|
2087
2128
|
case s.getUserDeviceList:
|
|
2088
|
-
n.result[r] =
|
|
2129
|
+
n.result[r] = ca(
|
|
2089
2130
|
o
|
|
2090
2131
|
);
|
|
2091
2132
|
break;
|
|
@@ -2095,122 +2136,132 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2095
2136
|
);
|
|
2096
2137
|
break;
|
|
2097
2138
|
case s.searchNumberHistory:
|
|
2098
|
-
n.result[r] =
|
|
2139
|
+
n.result[r] = ma(
|
|
2099
2140
|
o
|
|
2100
2141
|
);
|
|
2101
2142
|
break;
|
|
2102
2143
|
case s.changeWithdrawalCode:
|
|
2103
|
-
n.result[r] =
|
|
2144
|
+
n.result[r] = pa(
|
|
2104
2145
|
o
|
|
2105
2146
|
);
|
|
2106
2147
|
break;
|
|
2107
2148
|
case s.checkRedPacketToken:
|
|
2108
|
-
n.result[r] =
|
|
2149
|
+
n.result[r] = ga(
|
|
2109
2150
|
o
|
|
2110
2151
|
);
|
|
2111
2152
|
break;
|
|
2112
2153
|
case s.submitWithdrawalAlipay:
|
|
2113
|
-
n.result[r] =
|
|
2154
|
+
n.result[r] = ba(
|
|
2114
2155
|
o
|
|
2115
2156
|
);
|
|
2116
2157
|
break;
|
|
2117
2158
|
case s.applyReliefFund:
|
|
2118
|
-
n.result[r] =
|
|
2159
|
+
n.result[r] = ya(
|
|
2119
2160
|
o
|
|
2120
2161
|
);
|
|
2121
2162
|
break;
|
|
2122
2163
|
case s.getReliefFundData:
|
|
2123
|
-
n.result[r] =
|
|
2164
|
+
n.result[r] = _a(
|
|
2124
2165
|
o
|
|
2125
2166
|
);
|
|
2126
2167
|
break;
|
|
2127
2168
|
case s.getReliefFundReport:
|
|
2128
|
-
n.result[r] =
|
|
2169
|
+
n.result[r] = va(
|
|
2129
2170
|
o
|
|
2130
2171
|
);
|
|
2131
2172
|
break;
|
|
2132
2173
|
case s.getWeekCardClaim:
|
|
2133
|
-
n.result[r] =
|
|
2174
|
+
n.result[r] = ha(
|
|
2134
2175
|
o
|
|
2135
2176
|
);
|
|
2136
2177
|
break;
|
|
2137
2178
|
case s.getWeekCardData:
|
|
2138
|
-
n.result[r] =
|
|
2179
|
+
n.result[r] = Ta(
|
|
2139
2180
|
o
|
|
2140
2181
|
);
|
|
2141
2182
|
break;
|
|
2142
2183
|
case s.applyWeekCard:
|
|
2143
|
-
n.result[r] =
|
|
2184
|
+
n.result[r] = Ra(o);
|
|
2144
2185
|
break;
|
|
2145
2186
|
case s.transferSetting:
|
|
2146
|
-
n.result[r] =
|
|
2187
|
+
n.result[r] = Sa(
|
|
2147
2188
|
o
|
|
2148
2189
|
);
|
|
2149
2190
|
break;
|
|
2150
2191
|
case s.transfer:
|
|
2151
|
-
n.result[r] =
|
|
2192
|
+
n.result[r] = Pa(o);
|
|
2152
2193
|
break;
|
|
2153
2194
|
case s.getIncentiveData:
|
|
2154
|
-
n.result[r] =
|
|
2195
|
+
n.result[r] = ka(
|
|
2155
2196
|
o
|
|
2156
2197
|
);
|
|
2157
2198
|
break;
|
|
2158
2199
|
case s.getIncentiveRebate:
|
|
2159
|
-
n.result[r] =
|
|
2200
|
+
n.result[r] = Oa(
|
|
2160
2201
|
o
|
|
2161
2202
|
);
|
|
2162
2203
|
break;
|
|
2163
2204
|
case s.claimIncentiveRebate:
|
|
2164
|
-
n.result[r] =
|
|
2205
|
+
n.result[r] = Ma(
|
|
2165
2206
|
o
|
|
2166
2207
|
);
|
|
2167
2208
|
break;
|
|
2168
2209
|
case s.getMissionData:
|
|
2169
|
-
n.result[r] =
|
|
2210
|
+
n.result[r] = Da(o);
|
|
2170
2211
|
break;
|
|
2171
2212
|
case s.getMissionClaim:
|
|
2172
|
-
n.result[r] =
|
|
2213
|
+
n.result[r] = Ca(
|
|
2173
2214
|
o
|
|
2174
2215
|
);
|
|
2175
2216
|
break;
|
|
2176
2217
|
case s.registerForm:
|
|
2177
|
-
n.result[r] =
|
|
2218
|
+
n.result[r] = Ia(o);
|
|
2178
2219
|
break;
|
|
2179
2220
|
case s.getFavouriteGame:
|
|
2180
|
-
n.result[r] =
|
|
2221
|
+
n.result[r] = Fa(
|
|
2181
2222
|
o
|
|
2182
2223
|
);
|
|
2183
2224
|
break;
|
|
2184
2225
|
case s.updateFavouriteGame:
|
|
2185
|
-
n.result[r] =
|
|
2226
|
+
n.result[r] = La(
|
|
2186
2227
|
o
|
|
2187
2228
|
);
|
|
2188
2229
|
break;
|
|
2189
2230
|
case s.requestForgetUsername:
|
|
2190
|
-
n.result[r] =
|
|
2231
|
+
n.result[r] = Ga(
|
|
2191
2232
|
o
|
|
2192
2233
|
);
|
|
2193
2234
|
break;
|
|
2194
2235
|
case s.submitForgetUsername:
|
|
2195
|
-
n.result[r] =
|
|
2236
|
+
n.result[r] = za(
|
|
2237
|
+
o
|
|
2238
|
+
);
|
|
2239
|
+
break;
|
|
2240
|
+
case s.getAccumulateDepositData:
|
|
2241
|
+
n.result[r] = wa(
|
|
2242
|
+
o
|
|
2243
|
+
);
|
|
2244
|
+
break;
|
|
2245
|
+
case s.getAccumulateDepositClaim:
|
|
2246
|
+
n.result[r] = Ua(
|
|
2196
2247
|
o
|
|
2197
2248
|
);
|
|
2198
2249
|
break;
|
|
2199
2250
|
}
|
|
2200
2251
|
}
|
|
2201
2252
|
if (s.getIncentiveData in n.result && ((t = n.result) != null && t.getIncentiveData)) {
|
|
2202
|
-
const
|
|
2253
|
+
const d = n.result.getIncentiveData;
|
|
2203
2254
|
if (s.getIncentiveRebate in n.result) {
|
|
2204
2255
|
if ((a = n.result) != null && a.getIncentiveRebate) {
|
|
2205
2256
|
const _ = n.result.getIncentiveRebate;
|
|
2206
|
-
|
|
2257
|
+
d.claimable = Number(_.amount);
|
|
2207
2258
|
}
|
|
2208
2259
|
delete n.result.getIncentiveRebate;
|
|
2209
2260
|
}
|
|
2210
|
-
n.result.getIncentiveData =
|
|
2261
|
+
n.result.getIncentiveData = d;
|
|
2211
2262
|
}
|
|
2212
2263
|
if (s.vipList in n.result && ((l = n.result) != null && l.vipList)) {
|
|
2213
|
-
const
|
|
2264
|
+
const d = n.result.vipList;
|
|
2214
2265
|
let _ = 4;
|
|
2215
2266
|
if (s.getSetting in n.result && ((i = n.result) != null && i.getSetting && (_ = n.result.getSetting.vipCalculation), delete n.result.getSetting), s.vipStatus in n.result) {
|
|
2216
2267
|
if ((u = n.result) != null && u.vipStatus) {
|
|
@@ -2219,13 +2270,13 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2219
2270
|
current_deposit: h,
|
|
2220
2271
|
current_turnover: k,
|
|
2221
2272
|
percentage: O
|
|
2222
|
-
} = r,
|
|
2223
|
-
|
|
2224
|
-
const
|
|
2225
|
-
let C = "0", f = "0",
|
|
2226
|
-
return
|
|
2273
|
+
} = r, z = d.list.findIndex((j) => j.id === o);
|
|
2274
|
+
d.list = d.list.map((j, N) => {
|
|
2275
|
+
const w = N === z;
|
|
2276
|
+
let C = "0", f = "0", V = 0;
|
|
2277
|
+
return w ? (C = `${Math.min(Number(h), Number(j.deposit.total))}`, f = `${Math.min(Number(k), Number(j.turnover.total))}`, V = O) : N < z ? (C = j.deposit.total, f = j.turnover.total, V = 1) : N > z && (C = "0.00", f = "0.00", V = 0), {
|
|
2227
2278
|
...j,
|
|
2228
|
-
is_current_level:
|
|
2279
|
+
is_current_level: w,
|
|
2229
2280
|
deposit: {
|
|
2230
2281
|
...j.deposit,
|
|
2231
2282
|
isShow: _ === 1 || _ === 3 || _ === 4,
|
|
@@ -2236,28 +2287,28 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2236
2287
|
isShow: _ === 2 || _ === 3 || _ === 4,
|
|
2237
2288
|
current: f
|
|
2238
2289
|
},
|
|
2239
|
-
percentage:
|
|
2290
|
+
percentage: V
|
|
2240
2291
|
};
|
|
2241
2292
|
});
|
|
2242
2293
|
}
|
|
2243
2294
|
delete n.result.vipStatus;
|
|
2244
2295
|
}
|
|
2245
2296
|
if (s.vipBonus in n.result) {
|
|
2246
|
-
if ((
|
|
2247
|
-
const r = n.result.vipBonus, o =
|
|
2248
|
-
|
|
2249
|
-
const { dayRemainingTime:
|
|
2250
|
-
|
|
2251
|
-
current: !r.day.isClaimable && h > 0 ?
|
|
2297
|
+
if ((c = n.result) != null && c.vipBonus) {
|
|
2298
|
+
const r = n.result.vipBonus, o = d.list.find((V) => V.is_current_level == !0), h = Number(o == null ? void 0 : o.benefit_list.daily.bonus) ?? 0, k = Number(o == null ? void 0 : o.benefit_list.weekly.bonus) ?? 0, O = Number(o == null ? void 0 : o.benefit_list.monthly.bonus) ?? 0;
|
|
2299
|
+
d.bonus.day.isClaimable = r.day.isClaimable;
|
|
2300
|
+
const { dayRemainingTime: z, dayProgressPercentage: j } = fe();
|
|
2301
|
+
d.bonus.day.timestamp = {
|
|
2302
|
+
current: !r.day.isClaimable && h > 0 ? z : 0,
|
|
2252
2303
|
percentage: j
|
|
2253
|
-
},
|
|
2254
|
-
const { weekRemainingTime:
|
|
2255
|
-
|
|
2256
|
-
current: !r.week.isClaimable && k > 0 ?
|
|
2257
|
-
percentage:
|
|
2258
|
-
},
|
|
2259
|
-
const { monthRemainingTime: C, monthProgressPercentage: f } =
|
|
2260
|
-
|
|
2304
|
+
}, d.bonus.week.isClaimable = r.week.isClaimable;
|
|
2305
|
+
const { weekRemainingTime: N, weekProgressPercentage: w } = be();
|
|
2306
|
+
d.bonus.week.timestamp = {
|
|
2307
|
+
current: !r.week.isClaimable && k > 0 ? N : 0,
|
|
2308
|
+
percentage: w
|
|
2309
|
+
}, d.bonus.month.isClaimable = r.month.isClaimable;
|
|
2310
|
+
const { monthRemainingTime: C, monthProgressPercentage: f } = ge();
|
|
2311
|
+
d.bonus.month.timestamp = {
|
|
2261
2312
|
current: !r.month.isClaimable && O > 0 ? C : 0,
|
|
2262
2313
|
percentage: f
|
|
2263
2314
|
};
|
|
@@ -2270,7 +2321,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2270
2321
|
o.push({
|
|
2271
2322
|
name: "",
|
|
2272
2323
|
code: "vipLevel",
|
|
2273
|
-
value:
|
|
2324
|
+
value: d.list.map((f) => f.name)
|
|
2274
2325
|
});
|
|
2275
2326
|
const h = r.findIndex(
|
|
2276
2327
|
(f) => f.fieldName == "upgrade_bonus"
|
|
@@ -2278,7 +2329,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2278
2329
|
h > -1 && o.push({
|
|
2279
2330
|
name: r[h].showName,
|
|
2280
2331
|
code: "",
|
|
2281
|
-
value:
|
|
2332
|
+
value: d.list.map((f) => f.benefit_list.upgrade.bonus)
|
|
2282
2333
|
});
|
|
2283
2334
|
const k = r.findIndex(
|
|
2284
2335
|
(f) => f.fieldName == "upgrade_bonus_multiply"
|
|
@@ -2286,47 +2337,47 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2286
2337
|
k > -1 && o.push({
|
|
2287
2338
|
name: r[k].showName,
|
|
2288
2339
|
code: "",
|
|
2289
|
-
value:
|
|
2340
|
+
value: d.list.map((f) => f.benefit_list.upgrade.turnover)
|
|
2290
2341
|
});
|
|
2291
2342
|
const O = r.findIndex(
|
|
2292
2343
|
(f) => f.fieldName == "monthly_bonus"
|
|
2293
2344
|
);
|
|
2294
|
-
|
|
2345
|
+
d.bonus.month.isShow = O > -1, O > -1 && o.push({
|
|
2295
2346
|
name: r[O].showName,
|
|
2296
2347
|
code: "",
|
|
2297
|
-
value:
|
|
2348
|
+
value: d.list.map((f) => f.benefit_list.monthly.bonus)
|
|
2298
2349
|
});
|
|
2299
|
-
const
|
|
2350
|
+
const z = r.findIndex(
|
|
2300
2351
|
(f) => f.fieldName == "monthly_bonus_multiply"
|
|
2301
2352
|
);
|
|
2302
|
-
|
|
2303
|
-
name: r[
|
|
2353
|
+
z > -1 && o.push({
|
|
2354
|
+
name: r[z].showName,
|
|
2304
2355
|
code: "",
|
|
2305
|
-
value:
|
|
2356
|
+
value: d.list.map((f) => f.benefit_list.monthly.turnover)
|
|
2306
2357
|
});
|
|
2307
2358
|
const j = r.findIndex(
|
|
2308
2359
|
(f) => f.fieldName == "weekly_bonus"
|
|
2309
2360
|
);
|
|
2310
|
-
|
|
2361
|
+
d.bonus.week.isShow = j > -1, j > -1 && o.push({
|
|
2311
2362
|
name: r[j].showName,
|
|
2312
2363
|
code: "",
|
|
2313
|
-
value:
|
|
2364
|
+
value: d.list.map((f) => f.benefit_list.weekly.bonus)
|
|
2314
2365
|
});
|
|
2315
|
-
const
|
|
2366
|
+
const N = r.findIndex(
|
|
2316
2367
|
(f) => f.fieldName == "weekly_bonus_multiply"
|
|
2317
2368
|
);
|
|
2318
|
-
|
|
2319
|
-
name: r[
|
|
2369
|
+
N > -1 && o.push({
|
|
2370
|
+
name: r[N].showName,
|
|
2320
2371
|
code: "",
|
|
2321
|
-
value:
|
|
2372
|
+
value: d.list.map((f) => f.benefit_list.weekly.turnover)
|
|
2322
2373
|
});
|
|
2323
|
-
const
|
|
2374
|
+
const w = r.findIndex(
|
|
2324
2375
|
(f) => f.fieldName == "daily_bonus"
|
|
2325
2376
|
);
|
|
2326
|
-
|
|
2327
|
-
name: r[
|
|
2377
|
+
d.bonus.day.isShow = w > -1, w > -1 && o.push({
|
|
2378
|
+
name: r[w].showName,
|
|
2328
2379
|
code: "",
|
|
2329
|
-
value:
|
|
2380
|
+
value: d.list.map((f) => f.benefit_list.daily.bonus)
|
|
2330
2381
|
});
|
|
2331
2382
|
const C = r.findIndex(
|
|
2332
2383
|
(f) => f.fieldName == "daily_bonus_multiply"
|
|
@@ -2334,26 +2385,26 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2334
2385
|
C > -1 && o.push({
|
|
2335
2386
|
name: r[C].showName,
|
|
2336
2387
|
code: "",
|
|
2337
|
-
value:
|
|
2388
|
+
value: d.list.map((f) => f.benefit_list.daily.turnover)
|
|
2338
2389
|
}), (_ === 1 || _ === 3 || _ === 4) && o.push({
|
|
2339
2390
|
name: "",
|
|
2340
2391
|
code: "detail_deposit",
|
|
2341
|
-
value:
|
|
2392
|
+
value: d.list.map((f) => f.deposit.total)
|
|
2342
2393
|
}), (_ === 2 || _ === 3 || _ === 4) && o.push({
|
|
2343
2394
|
name: "",
|
|
2344
2395
|
code: "detail_turnover",
|
|
2345
|
-
value:
|
|
2346
|
-
}),
|
|
2396
|
+
value: d.list.map((f) => f.turnover.total)
|
|
2397
|
+
}), d.detail = o;
|
|
2347
2398
|
}
|
|
2348
2399
|
delete n.result.vipFieldStatus;
|
|
2349
2400
|
}
|
|
2350
|
-
n.result.vipList =
|
|
2401
|
+
n.result.vipList = d;
|
|
2351
2402
|
}
|
|
2352
2403
|
if (s.getFavouriteGame in n.result && ((y = n.result) != null && y.getFavouriteGame)) {
|
|
2353
|
-
const
|
|
2404
|
+
const d = n.result.getFavouriteGame;
|
|
2354
2405
|
if (JSON.parse(e[R].query).pid && s.getPlatformTurnoverRate in n.result && (g = n.result) != null && g.getPlatformTurnoverRate) {
|
|
2355
2406
|
const _ = n.result.getPlatformTurnoverRate;
|
|
2356
|
-
n.result.getFavouriteGame =
|
|
2407
|
+
n.result.getFavouriteGame = d.data.map((r) => {
|
|
2357
2408
|
const o = _.find(
|
|
2358
2409
|
(h) => h.id === r.platformId
|
|
2359
2410
|
);
|
|
@@ -2365,11 +2416,11 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2365
2416
|
}
|
|
2366
2417
|
}
|
|
2367
2418
|
if (s.gameList in n.result && ((b = n.result) != null && b.gameList)) {
|
|
2368
|
-
const
|
|
2369
|
-
if (JSON.parse(e[
|
|
2419
|
+
const d = n.result.gameList;
|
|
2420
|
+
if (JSON.parse(e[G].query).pid) {
|
|
2370
2421
|
if (s.getPlatformTurnoverRate in n.result && ((P = n.result) != null && P.getPlatformTurnoverRate)) {
|
|
2371
2422
|
const _ = n.result.getPlatformTurnoverRate;
|
|
2372
|
-
|
|
2423
|
+
d.platformGameList.data = d.platformGameList.data.map(
|
|
2373
2424
|
(r) => {
|
|
2374
2425
|
const o = _.find(
|
|
2375
2426
|
(h) => h.id === r.platformId
|
|
@@ -2382,10 +2433,10 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2382
2433
|
);
|
|
2383
2434
|
}
|
|
2384
2435
|
} else {
|
|
2385
|
-
const _ =
|
|
2386
|
-
if (
|
|
2436
|
+
const _ = d.platformGame.map((r) => r.list.filter((o) => o.flag.trial && !r.nextPage).map((o) => o));
|
|
2437
|
+
if (d.trialGameList = _.flat(), s.fishGameList in n.result && n.result.fishGameList) {
|
|
2387
2438
|
const r = n.result.fishGameList;
|
|
2388
|
-
|
|
2439
|
+
d.fishGameList = r.map((o) => ({
|
|
2389
2440
|
gameId: Number(o.id),
|
|
2390
2441
|
platformId: Number(o.platformProductID),
|
|
2391
2442
|
name: o.gameName,
|
|
@@ -2402,7 +2453,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2402
2453
|
}
|
|
2403
2454
|
if (s.getPlatformTurnoverRate in n.result && ((v = n.result) != null && v.getPlatformTurnoverRate)) {
|
|
2404
2455
|
const r = n.result.getPlatformTurnoverRate;
|
|
2405
|
-
|
|
2456
|
+
d.platformGame.forEach((o) => {
|
|
2406
2457
|
o.list = o.list.map((h) => {
|
|
2407
2458
|
const k = r.find(
|
|
2408
2459
|
(O) => O.id === h.platformId
|
|
@@ -2412,7 +2463,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2412
2463
|
rate: (k == null ? void 0 : k.percentage) ?? "0.00"
|
|
2413
2464
|
};
|
|
2414
2465
|
});
|
|
2415
|
-
}),
|
|
2466
|
+
}), d.hotGameList.data = d.hotGameList.data.map((o) => {
|
|
2416
2467
|
const h = r.find(
|
|
2417
2468
|
(k) => k.id === o.platformId
|
|
2418
2469
|
);
|
|
@@ -2420,7 +2471,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2420
2471
|
...o,
|
|
2421
2472
|
rate: (h == null ? void 0 : h.percentage) ?? "0.00"
|
|
2422
2473
|
};
|
|
2423
|
-
}),
|
|
2474
|
+
}), d.trialGameList = d.trialGameList.map((o) => {
|
|
2424
2475
|
const h = r.find(
|
|
2425
2476
|
(k) => k.id === o.platformId
|
|
2426
2477
|
);
|
|
@@ -2428,7 +2479,7 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2428
2479
|
...o,
|
|
2429
2480
|
rate: (h == null ? void 0 : h.percentage) ?? "0.00"
|
|
2430
2481
|
};
|
|
2431
|
-
}),
|
|
2482
|
+
}), d.fishGameList = d.fishGameList.map((o) => {
|
|
2432
2483
|
const h = r.find(
|
|
2433
2484
|
(k) => k.id === o.platformId
|
|
2434
2485
|
);
|
|
@@ -2439,92 +2490,111 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2439
2490
|
}), delete n.result.getPlatformTurnoverRate;
|
|
2440
2491
|
}
|
|
2441
2492
|
}
|
|
2442
|
-
n.result.gameList =
|
|
2493
|
+
n.result.gameList = d;
|
|
2443
2494
|
}
|
|
2444
2495
|
if (s.getCompany in n.result && ((m = n.result) != null && m.getCompany)) {
|
|
2445
|
-
const
|
|
2496
|
+
const d = n.result.getCompany;
|
|
2446
2497
|
if (s.searchResultDate in n.result && (S = n.result) != null && S.searchResultDate) {
|
|
2447
2498
|
const _ = n.result.searchResultDate;
|
|
2448
|
-
|
|
2499
|
+
d.forEach((r) => {
|
|
2449
2500
|
const o = _.find((h) => h.id == r.id);
|
|
2450
2501
|
o && (r.date = o == null ? void 0 : o.date);
|
|
2451
2502
|
}), delete n.result.searchResultDate;
|
|
2452
2503
|
}
|
|
2453
|
-
n.result.getCompany =
|
|
2504
|
+
n.result.getCompany = d;
|
|
2454
2505
|
}
|
|
2455
2506
|
return n;
|
|
2456
|
-
} catch (
|
|
2457
|
-
return
|
|
2458
|
-
status: ((M =
|
|
2459
|
-
message: JSON.stringify((
|
|
2507
|
+
} catch (D) {
|
|
2508
|
+
return ue.isAxiosError(D) ? {
|
|
2509
|
+
status: ((M = D.response) == null ? void 0 : M.status) || 600,
|
|
2510
|
+
message: JSON.stringify((L = D.response) == null ? void 0 : L.data),
|
|
2460
2511
|
result: {}
|
|
2461
|
-
} : (console.error(
|
|
2462
|
-
status:
|
|
2463
|
-
message:
|
|
2512
|
+
} : (console.error(D), {
|
|
2513
|
+
status: D.status || 500,
|
|
2514
|
+
message: D.message,
|
|
2464
2515
|
result: {}
|
|
2465
2516
|
});
|
|
2466
2517
|
}
|
|
2467
|
-
},
|
|
2518
|
+
}, qa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2468
2519
|
__proto__: null,
|
|
2469
|
-
post:
|
|
2470
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2520
|
+
post: Ba
|
|
2521
|
+
}, Symbol.toStringTag, { value: "Module" })), Wa = async (e, t) => {
|
|
2471
2522
|
let a = {
|
|
2472
2523
|
status: 200,
|
|
2473
2524
|
message: "",
|
|
2474
|
-
|
|
2525
|
+
data: {
|
|
2526
|
+
message: "",
|
|
2527
|
+
accessToken: ""
|
|
2528
|
+
}
|
|
2475
2529
|
};
|
|
2476
2530
|
try {
|
|
2477
2531
|
a = {
|
|
2478
2532
|
status: 200,
|
|
2479
2533
|
message: "",
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2534
|
+
data: {
|
|
2535
|
+
message: "",
|
|
2536
|
+
accessToken: (await F.post("/graph/auth/sesh", {
|
|
2537
|
+
usr: e,
|
|
2538
|
+
pwd: t
|
|
2539
|
+
})).data.access_token ?? ""
|
|
2540
|
+
}
|
|
2484
2541
|
};
|
|
2485
2542
|
} catch (l) {
|
|
2486
2543
|
a = {
|
|
2487
2544
|
status: l.status || 500,
|
|
2488
2545
|
message: l.message,
|
|
2489
|
-
|
|
2546
|
+
data: {
|
|
2547
|
+
message: "",
|
|
2548
|
+
accessToken: ""
|
|
2549
|
+
}
|
|
2490
2550
|
};
|
|
2491
2551
|
}
|
|
2492
2552
|
return a;
|
|
2493
|
-
},
|
|
2553
|
+
}, Va = async (e, t, a) => {
|
|
2494
2554
|
let l = {
|
|
2495
2555
|
status: 200,
|
|
2496
2556
|
message: "",
|
|
2497
|
-
|
|
2557
|
+
data: {
|
|
2558
|
+
message: "",
|
|
2559
|
+
accessToken: ""
|
|
2560
|
+
}
|
|
2498
2561
|
};
|
|
2499
2562
|
try {
|
|
2563
|
+
const u = (await F.post("/auth", {
|
|
2564
|
+
usr: e,
|
|
2565
|
+
pwd: t,
|
|
2566
|
+
captcha: a
|
|
2567
|
+
})).data;
|
|
2500
2568
|
l = {
|
|
2501
2569
|
status: 200,
|
|
2502
2570
|
message: "",
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
})).data.access_token
|
|
2571
|
+
data: {
|
|
2572
|
+
message: u.msg ?? "",
|
|
2573
|
+
accessToken: u.access_token ?? ""
|
|
2574
|
+
}
|
|
2508
2575
|
};
|
|
2509
2576
|
} catch (i) {
|
|
2510
2577
|
l = {
|
|
2511
2578
|
status: i.status || 500,
|
|
2512
2579
|
message: i.message,
|
|
2513
|
-
|
|
2580
|
+
data: {
|
|
2581
|
+
message: "",
|
|
2582
|
+
accessToken: ""
|
|
2583
|
+
}
|
|
2514
2584
|
};
|
|
2515
2585
|
}
|
|
2516
2586
|
return l;
|
|
2517
|
-
},
|
|
2587
|
+
}, $a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2518
2588
|
__proto__: null,
|
|
2519
|
-
call:
|
|
2520
|
-
callWithCaptcha:
|
|
2521
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2589
|
+
call: Wa,
|
|
2590
|
+
callWithCaptcha: Va
|
|
2591
|
+
}, Symbol.toStringTag, { value: "Module" })), Ea = async () => {
|
|
2522
2592
|
let e = {
|
|
2523
2593
|
status: 200,
|
|
2524
2594
|
message: ""
|
|
2525
2595
|
};
|
|
2526
2596
|
try {
|
|
2527
|
-
await
|
|
2597
|
+
await F.post("/auth/sesh/logout");
|
|
2528
2598
|
} catch (t) {
|
|
2529
2599
|
e = {
|
|
2530
2600
|
status: t.status || 500,
|
|
@@ -2532,10 +2602,10 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2532
2602
|
};
|
|
2533
2603
|
}
|
|
2534
2604
|
return e;
|
|
2535
|
-
},
|
|
2605
|
+
}, Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2536
2606
|
__proto__: null,
|
|
2537
|
-
call:
|
|
2538
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2607
|
+
call: Ea
|
|
2608
|
+
}, Symbol.toStringTag, { value: "Module" })), re = {
|
|
2539
2609
|
data: {
|
|
2540
2610
|
status: !1,
|
|
2541
2611
|
message: "",
|
|
@@ -2545,14 +2615,14 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2545
2615
|
accountId: 0
|
|
2546
2616
|
}
|
|
2547
2617
|
}
|
|
2548
|
-
},
|
|
2618
|
+
}, Ha = async () => {
|
|
2549
2619
|
let e = {
|
|
2550
2620
|
status: 200,
|
|
2551
2621
|
message: "",
|
|
2552
|
-
...
|
|
2622
|
+
...re
|
|
2553
2623
|
};
|
|
2554
2624
|
try {
|
|
2555
|
-
const a = (await
|
|
2625
|
+
const a = (await F.get("/graph/autoregister")).data;
|
|
2556
2626
|
e.data = {
|
|
2557
2627
|
status: a.status == 1,
|
|
2558
2628
|
message: a.message ?? "",
|
|
@@ -2566,26 +2636,26 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2566
2636
|
e = {
|
|
2567
2637
|
status: t.status || 500,
|
|
2568
2638
|
message: t.message,
|
|
2569
|
-
...
|
|
2639
|
+
...re
|
|
2570
2640
|
};
|
|
2571
2641
|
}
|
|
2572
2642
|
return e;
|
|
2573
|
-
},
|
|
2643
|
+
}, Ja = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2574
2644
|
__proto__: null,
|
|
2575
|
-
call:
|
|
2576
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2645
|
+
call: Ha
|
|
2646
|
+
}, Symbol.toStringTag, { value: "Module" })), se = {
|
|
2577
2647
|
data: {
|
|
2578
2648
|
status: !1,
|
|
2579
2649
|
message: ""
|
|
2580
2650
|
}
|
|
2581
|
-
},
|
|
2651
|
+
}, Ya = async (e, t) => {
|
|
2582
2652
|
let a = {
|
|
2583
2653
|
status: 200,
|
|
2584
2654
|
message: "",
|
|
2585
|
-
...
|
|
2655
|
+
...se
|
|
2586
2656
|
};
|
|
2587
2657
|
try {
|
|
2588
|
-
const l = await
|
|
2658
|
+
const l = await F.post("/graph/setlocale", {
|
|
2589
2659
|
language: e,
|
|
2590
2660
|
udid: t ?? ""
|
|
2591
2661
|
}), i = JSON.parse(
|
|
@@ -2599,30 +2669,55 @@ const Ma = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2599
2669
|
a = {
|
|
2600
2670
|
status: l.status || 500,
|
|
2601
2671
|
message: l.message,
|
|
2602
|
-
...
|
|
2672
|
+
...se
|
|
2603
2673
|
};
|
|
2604
2674
|
}
|
|
2605
2675
|
return a;
|
|
2606
|
-
},
|
|
2676
|
+
}, Ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2607
2677
|
__proto__: null,
|
|
2608
|
-
call:
|
|
2609
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
}
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2678
|
+
call: Ya
|
|
2679
|
+
}, Symbol.toStringTag, { value: "Module" })), Qa = async (e, t, a, l) => {
|
|
2680
|
+
let i = {
|
|
2681
|
+
status: 200,
|
|
2682
|
+
message: "",
|
|
2683
|
+
data: {
|
|
2684
|
+
message: "",
|
|
2685
|
+
urlLink: ""
|
|
2686
|
+
}
|
|
2687
|
+
};
|
|
2688
|
+
try {
|
|
2689
|
+
i = {
|
|
2690
|
+
status: 200,
|
|
2691
|
+
message: "",
|
|
2692
|
+
data: {
|
|
2693
|
+
message: "",
|
|
2694
|
+
urlLink: (await F.post("/loadgame/40770", {
|
|
2695
|
+
wanturl: 1,
|
|
2696
|
+
extra: {
|
|
2697
|
+
Stage: e,
|
|
2698
|
+
SportId: t,
|
|
2699
|
+
tagid: a,
|
|
2700
|
+
MatchId: l
|
|
2701
|
+
}
|
|
2702
|
+
})).data.data ?? ""
|
|
2703
|
+
}
|
|
2704
|
+
};
|
|
2705
|
+
} catch (u) {
|
|
2706
|
+
i = {
|
|
2707
|
+
status: u.status || 500,
|
|
2708
|
+
message: u.message,
|
|
2709
|
+
data: {
|
|
2710
|
+
message: "",
|
|
2711
|
+
urlLink: ""
|
|
2712
|
+
}
|
|
2713
|
+
};
|
|
2714
|
+
}
|
|
2715
|
+
return i;
|
|
2716
|
+
}, Xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2624
2717
|
__proto__: null,
|
|
2625
|
-
|
|
2718
|
+
call: Qa
|
|
2719
|
+
}, Symbol.toStringTag, { value: "Module" })), Za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2720
|
+
__proto__: null
|
|
2626
2721
|
}, Symbol.toStringTag, { value: "Module" })), en = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2627
2722
|
__proto__: null
|
|
2628
2723
|
}, Symbol.toStringTag, { value: "Module" })), tn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2633,18 +2728,21 @@ const Za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2633
2728
|
__proto__: null
|
|
2634
2729
|
}, Symbol.toStringTag, { value: "Module" })), on = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2635
2730
|
__proto__: null
|
|
2636
|
-
}, Symbol.toStringTag, { value: "Module" }))
|
|
2637
|
-
|
|
2731
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
2732
|
+
var ce = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e))(ce || {});
|
|
2733
|
+
const rn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2734
|
+
__proto__: null,
|
|
2735
|
+
CmsType: ce
|
|
2638
2736
|
}, Symbol.toStringTag, { value: "Module" })), sn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2639
2737
|
__proto__: null
|
|
2640
2738
|
}, Symbol.toStringTag, { value: "Module" })), ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2641
2739
|
__proto__: null
|
|
2642
2740
|
}, Symbol.toStringTag, { value: "Module" })), un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2643
2741
|
__proto__: null
|
|
2644
|
-
}, Symbol.toStringTag, { value: "Module" })), dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2645
|
-
__proto__: null
|
|
2646
2742
|
}, Symbol.toStringTag, { value: "Module" })), cn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2647
2743
|
__proto__: null
|
|
2744
|
+
}, Symbol.toStringTag, { value: "Module" })), dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2745
|
+
__proto__: null
|
|
2648
2746
|
}, Symbol.toStringTag, { value: "Module" })), mn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2649
2747
|
__proto__: null
|
|
2650
2748
|
}, Symbol.toStringTag, { value: "Module" })), pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2679,51 +2777,51 @@ const Za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2679
2777
|
__proto__: null
|
|
2680
2778
|
}, Symbol.toStringTag, { value: "Module" })), jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2681
2779
|
__proto__: null
|
|
2682
|
-
}, Symbol.toStringTag, { value: "Module" })), xn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2683
|
-
__proto__: null
|
|
2684
2780
|
}, Symbol.toStringTag, { value: "Module" })), Dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2685
2781
|
__proto__: null
|
|
2782
|
+
}, Symbol.toStringTag, { value: "Module" })), xn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2783
|
+
__proto__: null
|
|
2686
2784
|
}, Symbol.toStringTag, { value: "Module" })), Cn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2687
2785
|
__proto__: null
|
|
2688
2786
|
}, Symbol.toStringTag, { value: "Module" })), In = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2689
2787
|
__proto__: null
|
|
2690
|
-
}, Symbol.toStringTag, { value: "Module" })), se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2691
|
-
__proto__: null
|
|
2692
|
-
}, Symbol.toStringTag, { value: "Module" })), ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2693
|
-
__proto__: null
|
|
2694
2788
|
}, Symbol.toStringTag, { value: "Module" })), Fn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2695
2789
|
__proto__: null
|
|
2696
2790
|
}, Symbol.toStringTag, { value: "Module" })), Ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2697
2791
|
__proto__: null
|
|
2698
2792
|
}, Symbol.toStringTag, { value: "Module" })), Gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2699
2793
|
__proto__: null
|
|
2700
|
-
}, Symbol.toStringTag, { value: "Module" }))
|
|
2701
|
-
|
|
2702
|
-
const zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2703
|
-
__proto__: null,
|
|
2704
|
-
ImageType: de
|
|
2794
|
+
}, Symbol.toStringTag, { value: "Module" })), zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2795
|
+
__proto__: null
|
|
2705
2796
|
}, Symbol.toStringTag, { value: "Module" })), Nn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2706
2797
|
__proto__: null
|
|
2707
2798
|
}, Symbol.toStringTag, { value: "Module" })), wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2708
2799
|
__proto__: null
|
|
2800
|
+
}, Symbol.toStringTag, { value: "Module" })), ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2801
|
+
__proto__: null
|
|
2802
|
+
}, Symbol.toStringTag, { value: "Module" })), le = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2803
|
+
__proto__: null
|
|
2709
2804
|
}, Symbol.toStringTag, { value: "Module" })), Un = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2710
2805
|
__proto__: null
|
|
2711
2806
|
}, Symbol.toStringTag, { value: "Module" })), Bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2712
2807
|
__proto__: null
|
|
2713
2808
|
}, Symbol.toStringTag, { value: "Module" })), qn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2714
2809
|
__proto__: null
|
|
2715
|
-
}, Symbol.toStringTag, { value: "Module" }))
|
|
2716
|
-
|
|
2810
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
2811
|
+
var de = /* @__PURE__ */ ((e) => (e.default = "default", e.online = "online", e.mycard = "mycard", e.qrcode = "qrcode", e.personal = "personal", e))(de || {});
|
|
2812
|
+
const Wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2813
|
+
__proto__: null,
|
|
2814
|
+
ImageType: de
|
|
2717
2815
|
}, Symbol.toStringTag, { value: "Module" })), Vn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2718
2816
|
__proto__: null
|
|
2719
2817
|
}, Symbol.toStringTag, { value: "Module" })), $n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2720
2818
|
__proto__: null
|
|
2721
2819
|
}, Symbol.toStringTag, { value: "Module" })), En = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2722
2820
|
__proto__: null
|
|
2723
|
-
}, Symbol.toStringTag, { value: "Module" })), Hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2724
|
-
__proto__: null
|
|
2725
2821
|
}, Symbol.toStringTag, { value: "Module" })), An = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2726
2822
|
__proto__: null
|
|
2823
|
+
}, Symbol.toStringTag, { value: "Module" })), Hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2824
|
+
__proto__: null
|
|
2727
2825
|
}, Symbol.toStringTag, { value: "Module" })), Jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2728
2826
|
__proto__: null
|
|
2729
2827
|
}, Symbol.toStringTag, { value: "Module" })), Yn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2792,10 +2890,10 @@ const zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2792
2890
|
__proto__: null
|
|
2793
2891
|
}, Symbol.toStringTag, { value: "Module" })), jo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2794
2892
|
__proto__: null
|
|
2795
|
-
}, Symbol.toStringTag, { value: "Module" })), xo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2796
|
-
__proto__: null
|
|
2797
2893
|
}, Symbol.toStringTag, { value: "Module" })), Do = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2798
2894
|
__proto__: null
|
|
2895
|
+
}, Symbol.toStringTag, { value: "Module" })), xo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2896
|
+
__proto__: null
|
|
2799
2897
|
}, Symbol.toStringTag, { value: "Module" })), Co = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2800
2898
|
__proto__: null
|
|
2801
2899
|
}, Symbol.toStringTag, { value: "Module" })), Io = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2820,242 +2918,262 @@ const zn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2820
2918
|
__proto__: null
|
|
2821
2919
|
}, Symbol.toStringTag, { value: "Module" })), Wo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2822
2920
|
__proto__: null
|
|
2823
|
-
}, Symbol.toStringTag, { value: "Module" })), Vo = {
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2921
|
+
}, Symbol.toStringTag, { value: "Module" })), Vo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2922
|
+
__proto__: null
|
|
2923
|
+
}, Symbol.toStringTag, { value: "Module" })), $o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2924
|
+
__proto__: null
|
|
2925
|
+
}, Symbol.toStringTag, { value: "Module" })), Eo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2926
|
+
__proto__: null
|
|
2927
|
+
}, Symbol.toStringTag, { value: "Module" })), Ao = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2928
|
+
__proto__: null
|
|
2929
|
+
}, Symbol.toStringTag, { value: "Module" })), Ho = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2930
|
+
__proto__: null
|
|
2931
|
+
}, Symbol.toStringTag, { value: "Module" })), Jo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2932
|
+
__proto__: null
|
|
2933
|
+
}, Symbol.toStringTag, { value: "Module" })), Yo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2934
|
+
__proto__: null
|
|
2935
|
+
}, Symbol.toStringTag, { value: "Module" })), Ko = {
|
|
2936
|
+
api: qa,
|
|
2937
|
+
loginApi: $a,
|
|
2938
|
+
logoutApi: Aa,
|
|
2939
|
+
autoRegisterApi: Ja,
|
|
2940
|
+
setLocaleApi: Ka,
|
|
2941
|
+
loadMatchApi: Xa,
|
|
2942
|
+
apiType: ye,
|
|
2943
|
+
loginType: Za,
|
|
2944
|
+
logoutType: en,
|
|
2945
|
+
announcementType: tn,
|
|
2946
|
+
paymentsProviderType: _e,
|
|
2947
|
+
gameListType: an,
|
|
2948
|
+
vipListType: nn,
|
|
2949
|
+
promotionType: on,
|
|
2950
|
+
cmsListType: rn,
|
|
2951
|
+
mainWalletType: sn,
|
|
2952
|
+
upcomingMatchType: ln,
|
|
2953
|
+
depositType: un,
|
|
2954
|
+
applyVipBonusType: cn,
|
|
2955
|
+
withdrawalGetType: dn,
|
|
2956
|
+
addBankCardType: mn,
|
|
2957
|
+
withdrawType: pn,
|
|
2958
|
+
getSettingType: fa,
|
|
2959
|
+
transactionReportType: gn,
|
|
2960
|
+
changePasswordType: bn,
|
|
2961
|
+
walletType: fn,
|
|
2962
|
+
getEventListType: yn,
|
|
2963
|
+
getEventTokenType: _n,
|
|
2964
|
+
getExtraGameType: vn,
|
|
2965
|
+
mailBoxType: hn,
|
|
2966
|
+
fishGameListType: Tn,
|
|
2967
|
+
slotGameListType: Rn,
|
|
2968
|
+
getTurnOverRewardDataType: Sn,
|
|
2969
|
+
getTurnOverRewardReportType: Pn,
|
|
2970
|
+
getInviteRewardDataType: kn,
|
|
2971
|
+
getInviteRewardReportType: On,
|
|
2972
|
+
getTopupRewardDataType: Mn,
|
|
2973
|
+
getTopupRewardReportType: jn,
|
|
2974
|
+
getRewardReferralType: Dn,
|
|
2975
|
+
getDepositPromotionType: xn,
|
|
2976
|
+
getInviteRewardClaimType: Cn,
|
|
2977
|
+
getTopUpRewardClaimType: In,
|
|
2978
|
+
getTurnOverRewardClaimType: Fn,
|
|
2979
|
+
getInviteRewardSettingType: Ln,
|
|
2980
|
+
getTopUpRewardSettingType: Gn,
|
|
2981
|
+
getTurnOverRewardSettingType: zn,
|
|
2982
|
+
requestForgetPasswordType: Nn,
|
|
2983
|
+
submitForgetPasswordType: wn,
|
|
2984
|
+
submitGiftCode: ie,
|
|
2985
|
+
playGame: le,
|
|
2986
|
+
requestUpdateMobileTacCode: Un,
|
|
2987
|
+
submitUpdateMobileTacCode: Bn,
|
|
2988
|
+
getVerifyPromo: qn,
|
|
2989
|
+
getImageType: Wn,
|
|
2990
|
+
getValidateType: Vn,
|
|
2991
|
+
updateProfilePictureType: $n,
|
|
2992
|
+
readMailType: En,
|
|
2993
|
+
checkRedPacketValidateType: An,
|
|
2994
|
+
getUserProfileType: Hn,
|
|
2995
|
+
requestTacCodeType: Jn,
|
|
2996
|
+
getUsernameByReferType: Yn,
|
|
2997
|
+
applyPromoType: Kn,
|
|
2998
|
+
applySignInType: Qn,
|
|
2999
|
+
applyRedPacketType: Xn,
|
|
3000
|
+
getCountryType: Zn,
|
|
3001
|
+
submitGiftCodeType: ie,
|
|
3002
|
+
playGameType: le,
|
|
3003
|
+
transferToMainType: eo,
|
|
3004
|
+
transferProcessType: to,
|
|
3005
|
+
submitValidateType: ao,
|
|
3006
|
+
checkTransferCreditType: no,
|
|
3007
|
+
friendListType: oo,
|
|
3008
|
+
friendListEditType: ro,
|
|
3009
|
+
getActivePPType: so,
|
|
3010
|
+
getActiveProductType: io,
|
|
3011
|
+
requestWithdrawTacType: lo,
|
|
3012
|
+
requestWithdrawalCodeType: uo,
|
|
3013
|
+
commissionWithdrawType: co,
|
|
3014
|
+
submitWithdrawalCodeType: mo,
|
|
3015
|
+
submitCryptoAccountType: po,
|
|
3016
|
+
requestTransferMoneyType: go,
|
|
3017
|
+
submitTransferMoneyType: bo,
|
|
3018
|
+
signInViewInfoType: fo,
|
|
3019
|
+
signInRecordType: yo,
|
|
3020
|
+
referralProfileType: _o,
|
|
3021
|
+
referralMemberProfileType: vo,
|
|
3022
|
+
registerActionType: ho,
|
|
3023
|
+
transferReportType: To,
|
|
3024
|
+
agTransferCreditReportType: Ro,
|
|
3025
|
+
betReportType: So,
|
|
3026
|
+
getTwoFactorAuthenticateType: Po,
|
|
3027
|
+
submitTwoFactorAuthenticateType: ko,
|
|
3028
|
+
getUserDeviceListType: Oo,
|
|
3029
|
+
unbindUserDeviceType: Mo,
|
|
3030
|
+
searchNumberHistoryType: jo,
|
|
3031
|
+
changeWithdrawalCodeType: Do,
|
|
3032
|
+
checkRedPacketTokenType: xo,
|
|
3033
|
+
submitWithdrawalAlipayType: Co,
|
|
3034
|
+
applyReliefFund: Io,
|
|
3035
|
+
getReliefFundData: Fo,
|
|
3036
|
+
getReliefFundReport: Lo,
|
|
3037
|
+
getWeekCardClaim: Go,
|
|
3038
|
+
getWeekCardData: zo,
|
|
3039
|
+
applyWeekCard: No,
|
|
3040
|
+
transferSettingType: wo,
|
|
3041
|
+
transferType: Uo,
|
|
3042
|
+
claimIncentiveRebate: Bo,
|
|
3043
|
+
getIncentiveData: qo,
|
|
3044
|
+
getIncentiveRebate: Wo,
|
|
3045
|
+
getMissionData: ja,
|
|
3046
|
+
getMissionClaim: Vo,
|
|
3047
|
+
registerFormType: $o,
|
|
3048
|
+
getFavouriteGameType: Eo,
|
|
3049
|
+
updateFavouriteGameType: Ao,
|
|
3050
|
+
requestForgetUsernameType: Ho,
|
|
3051
|
+
submitForgetUsernameType: Jo,
|
|
3052
|
+
getAccumulateDepositDataType: Na,
|
|
3053
|
+
getAccumulateDepositClaimType: Yo
|
|
3054
|
+
}, Xo = {
|
|
2940
3055
|
install(e) {
|
|
2941
|
-
e.config.globalProperties.$library =
|
|
3056
|
+
e.config.globalProperties.$library = Ko;
|
|
2942
3057
|
}
|
|
2943
3058
|
};
|
|
2944
3059
|
export {
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
Mn as
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
ko as
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3060
|
+
Xo as Repository,
|
|
3061
|
+
mn as addBankCardType,
|
|
3062
|
+
Ro as agTransferCreditReportType,
|
|
3063
|
+
tn as announcementType,
|
|
3064
|
+
qa as api,
|
|
3065
|
+
ye as apiType,
|
|
3066
|
+
Kn as applyPromoType,
|
|
3067
|
+
Xn as applyRedPacketType,
|
|
3068
|
+
Io as applyReliefFund,
|
|
3069
|
+
Qn as applySignInType,
|
|
3070
|
+
cn as applyVipBonusType,
|
|
3071
|
+
No as applyWeekCard,
|
|
3072
|
+
Ja as autoRegisterApi,
|
|
3073
|
+
So as betReportType,
|
|
3074
|
+
bn as changePasswordType,
|
|
3075
|
+
Do as changeWithdrawalCodeType,
|
|
3076
|
+
xo as checkRedPacketTokenType,
|
|
3077
|
+
An as checkRedPacketValidateType,
|
|
3078
|
+
no as checkTransferCreditType,
|
|
3079
|
+
Bo as claimIncentiveRebate,
|
|
3080
|
+
rn as cmsListType,
|
|
3081
|
+
co as commissionWithdrawType,
|
|
3082
|
+
un as depositType,
|
|
3083
|
+
Tn as fishGameListType,
|
|
3084
|
+
ro as friendListEditType,
|
|
3085
|
+
oo as friendListType,
|
|
3086
|
+
an as gameListType,
|
|
3087
|
+
Yo as getAccumulateDepositClaimType,
|
|
3088
|
+
Na as getAccumulateDepositDataType,
|
|
3089
|
+
so as getActivePPType,
|
|
3090
|
+
io as getActiveProductType,
|
|
3091
|
+
Zn as getCountryType,
|
|
3092
|
+
xn as getDepositPromotionType,
|
|
3093
|
+
yn as getEventListType,
|
|
3094
|
+
_n as getEventTokenType,
|
|
3095
|
+
vn as getExtraGameType,
|
|
3096
|
+
Eo as getFavouriteGameType,
|
|
3097
|
+
Wn as getImageType,
|
|
3098
|
+
qo as getIncentiveData,
|
|
3099
|
+
Wo as getIncentiveRebate,
|
|
3100
|
+
Cn as getInviteRewardClaimType,
|
|
3101
|
+
kn as getInviteRewardDataType,
|
|
3102
|
+
On as getInviteRewardReportType,
|
|
3103
|
+
Ln as getInviteRewardSettingType,
|
|
3104
|
+
Vo as getMissionClaim,
|
|
3105
|
+
ja as getMissionData,
|
|
3106
|
+
Fo as getReliefFundData,
|
|
3107
|
+
Lo as getReliefFundReport,
|
|
3108
|
+
Dn as getRewardReferralType,
|
|
3109
|
+
fa as getSettingType,
|
|
3110
|
+
In as getTopUpRewardClaimType,
|
|
3111
|
+
Gn as getTopUpRewardSettingType,
|
|
3112
|
+
Mn as getTopupRewardDataType,
|
|
3113
|
+
jn as getTopupRewardReportType,
|
|
3114
|
+
Fn as getTurnOverRewardClaimType,
|
|
3115
|
+
Sn as getTurnOverRewardDataType,
|
|
3116
|
+
Pn as getTurnOverRewardReportType,
|
|
3117
|
+
zn as getTurnOverRewardSettingType,
|
|
3118
|
+
Po as getTwoFactorAuthenticateType,
|
|
3119
|
+
Oo as getUserDeviceListType,
|
|
3120
|
+
Hn as getUserProfileType,
|
|
3121
|
+
Yn as getUsernameByReferType,
|
|
3122
|
+
Vn as getValidateType,
|
|
3123
|
+
qn as getVerifyPromo,
|
|
3124
|
+
Go as getWeekCardClaim,
|
|
3125
|
+
zo as getWeekCardData,
|
|
3126
|
+
Xa as loadMatchApi,
|
|
3127
|
+
$a as loginApi,
|
|
3128
|
+
Za as loginType,
|
|
3129
|
+
Aa as logoutApi,
|
|
3130
|
+
en as logoutType,
|
|
3131
|
+
hn as mailBoxType,
|
|
3132
|
+
sn as mainWalletType,
|
|
3133
|
+
_e as paymentsProviderType,
|
|
3134
|
+
le as playGame,
|
|
3135
|
+
le as playGameType,
|
|
3136
|
+
on as promotionType,
|
|
3137
|
+
En as readMailType,
|
|
3138
|
+
vo as referralMemberProfileType,
|
|
3139
|
+
_o as referralProfileType,
|
|
3140
|
+
ho as registerActionType,
|
|
3141
|
+
$o as registerFormType,
|
|
3142
|
+
Nn as requestForgetPasswordType,
|
|
3143
|
+
Ho as requestForgetUsernameType,
|
|
3144
|
+
Jn as requestTacCodeType,
|
|
3145
|
+
go as requestTransferMoneyType,
|
|
3146
|
+
Un as requestUpdateMobileTacCode,
|
|
3147
|
+
lo as requestWithdrawTacType,
|
|
3148
|
+
uo as requestWithdrawalCodeType,
|
|
3149
|
+
jo as searchNumberHistoryType,
|
|
3150
|
+
Ka as setLocaleApi,
|
|
3151
|
+
yo as signInRecordType,
|
|
3152
|
+
fo as signInViewInfoType,
|
|
3153
|
+
Rn as slotGameListType,
|
|
3154
|
+
po as submitCryptoAccountType,
|
|
3155
|
+
wn as submitForgetPasswordType,
|
|
3156
|
+
Jo as submitForgetUsernameType,
|
|
3157
|
+
ie as submitGiftCode,
|
|
3158
|
+
ie as submitGiftCodeType,
|
|
3159
|
+
bo as submitTransferMoneyType,
|
|
3160
|
+
ko as submitTwoFactorAuthenticateType,
|
|
3161
|
+
Bn as submitUpdateMobileTacCode,
|
|
3162
|
+
ao as submitValidateType,
|
|
3163
|
+
Co as submitWithdrawalAlipayType,
|
|
3164
|
+
mo as submitWithdrawalCodeType,
|
|
3165
|
+
gn as transactionReportType,
|
|
3166
|
+
to as transferProcessType,
|
|
3167
|
+
To as transferReportType,
|
|
3168
|
+
wo as transferSettingType,
|
|
3169
|
+
eo as transferToMainType,
|
|
3170
|
+
Uo as transferType,
|
|
3171
|
+
Mo as unbindUserDeviceType,
|
|
3172
|
+
ln as upcomingMatchType,
|
|
3173
|
+
Ao as updateFavouriteGameType,
|
|
3174
|
+
$n as updateProfilePictureType,
|
|
3175
|
+
nn as vipListType,
|
|
3176
|
+
fn as walletType,
|
|
3177
|
+
pn as withdrawType,
|
|
3178
|
+
dn as withdrawalGetType
|
|
3061
3179
|
};
|