60p82u21t54k 0.0.94 → 0.0.96
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 +887 -811
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/api/api.d.ts.map +1 -1
- package/dist/api/type.d.ts +6 -0
- package/dist/api/type.d.ts.map +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/model/gameList/getGameListResponse.d.ts.map +1 -1
- package/dist/model/gameList/type.d.ts +1 -0
- package/dist/model/gameList/type.d.ts.map +1 -1
- package/dist/model/getMissionClaim/getGetMissionClaimResponse.d.ts +9 -0
- package/dist/model/getMissionClaim/getGetMissionClaimResponse.d.ts.map +1 -0
- package/dist/model/getMissionClaim/type.d.ts +5 -0
- package/dist/model/getMissionClaim/type.d.ts.map +1 -0
- package/dist/model/getMissionData/getGetMissionDataResponse.d.ts +26 -0
- package/dist/model/getMissionData/getGetMissionDataResponse.d.ts.map +1 -0
- package/dist/model/getMissionData/type.d.ts +41 -0
- package/dist/model/getMissionData/type.d.ts.map +1 -0
- package/dist/model/login/loginApi.d.ts +2 -2
- package/dist/model/login/loginApi.d.ts.map +1 -1
- package/dist/plugin.d.ts +3 -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 le from "axios";
|
|
2
|
+
const N = le.create({
|
|
3
3
|
baseURL: "/graph",
|
|
4
4
|
timeout: 5e3,
|
|
5
5
|
// Request timeout
|
|
@@ -45,11 +45,11 @@ const z = oe.create({
|
|
|
45
45
|
// },
|
|
46
46
|
// },
|
|
47
47
|
});
|
|
48
|
-
|
|
48
|
+
N.interceptors.request.use(
|
|
49
49
|
(e) => e,
|
|
50
50
|
(e) => (console.error("Error request:", e.response), Promise.reject(e))
|
|
51
51
|
);
|
|
52
|
-
|
|
52
|
+
N.interceptors.response.use(
|
|
53
53
|
(e) => e,
|
|
54
54
|
(e) => {
|
|
55
55
|
const t = {
|
|
@@ -59,23 +59,23 @@ z.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 ce = (e) => new TextEncoder().encode(e), me = (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
|
-
},
|
|
69
|
-
const e = /* @__PURE__ */ new Date(), t = e.getFullYear(), a = e.getMonth(), u = new Date(t, a, 1, 12, 0, 0),
|
|
70
|
-
(
|
|
68
|
+
}, pe = () => {
|
|
69
|
+
const e = /* @__PURE__ */ new Date(), t = e.getFullYear(), a = e.getMonth(), u = new Date(t, a, 1, 12, 0, 0), i = new Date(t, a + 1, 1, 12, 0, 0), l = Math.floor(
|
|
70
|
+
(i.getTime() - e.getTime()) / 1e3
|
|
71
71
|
), d = Math.floor(
|
|
72
|
-
(
|
|
73
|
-
), m = d -
|
|
72
|
+
(i.getTime() - u.getTime()) / 1e3
|
|
73
|
+
), m = d - l;
|
|
74
74
|
return {
|
|
75
|
-
monthRemainingTime:
|
|
75
|
+
monthRemainingTime: l,
|
|
76
76
|
monthProgressPercentage: Math.round(m / d * 100)
|
|
77
77
|
};
|
|
78
|
-
},
|
|
78
|
+
}, ge = () => {
|
|
79
79
|
const e = /* @__PURE__ */ new Date(), t = e.getDay(), a = t === 1 ? 7 : 8 - t, u = new Date(
|
|
80
80
|
e.getFullYear(),
|
|
81
81
|
e.getMonth(),
|
|
@@ -84,12 +84,12 @@ const ie = (e) => new TextEncoder().encode(e), le = (e) => {
|
|
|
84
84
|
0,
|
|
85
85
|
0,
|
|
86
86
|
0
|
|
87
|
-
),
|
|
88
|
-
return console.log(
|
|
89
|
-
weekRemainingTime:
|
|
90
|
-
weekProgressPercentage: Math.round(
|
|
87
|
+
), i = Math.floor((u.getTime() - e.getTime()) / 1e3), p = 7 * 24 * 60 * 60;
|
|
88
|
+
return console.log(i), console.log(p), {
|
|
89
|
+
weekRemainingTime: i,
|
|
90
|
+
weekProgressPercentage: Math.round(i / p * 100)
|
|
91
91
|
};
|
|
92
|
-
},
|
|
92
|
+
}, be = () => {
|
|
93
93
|
const e = /* @__PURE__ */ new Date(), t = new Date(
|
|
94
94
|
e.getFullYear(),
|
|
95
95
|
e.getMonth(),
|
|
@@ -104,56 +104,56 @@ const ie = (e) => new TextEncoder().encode(e), le = (e) => {
|
|
|
104
104
|
dayProgressPercentage: Math.round(a / d * 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.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))(s || {});
|
|
108
|
+
const fe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
109
109
|
__proto__: null,
|
|
110
110
|
Api: s
|
|
111
111
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
112
|
-
var
|
|
113
|
-
const
|
|
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 ye = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
114
114
|
__proto__: null,
|
|
115
|
-
PaymentType:
|
|
116
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
115
|
+
PaymentType: I
|
|
116
|
+
}, Symbol.toStringTag, { value: "Module" })), H = {
|
|
117
117
|
depositBank: !1,
|
|
118
118
|
depositDateTime: !1,
|
|
119
119
|
depositDetail: !1,
|
|
120
120
|
depositMethod: !1,
|
|
121
121
|
depositor: !1,
|
|
122
122
|
uploadReceipt: !1
|
|
123
|
-
},
|
|
123
|
+
}, X = {
|
|
124
124
|
id: 0,
|
|
125
125
|
name: "",
|
|
126
|
-
type:
|
|
126
|
+
type: I.unknown,
|
|
127
127
|
promo: [],
|
|
128
128
|
bank: [],
|
|
129
|
-
requiredField:
|
|
130
|
-
},
|
|
129
|
+
requiredField: H
|
|
130
|
+
}, _e = (e) => {
|
|
131
131
|
var t;
|
|
132
132
|
return ((t = e.mdPaymentChannels) == null ? void 0 : t.map((a) => {
|
|
133
133
|
const u = [];
|
|
134
134
|
switch (a.name) {
|
|
135
|
-
case
|
|
136
|
-
u.push(
|
|
135
|
+
case I.default:
|
|
136
|
+
u.push(ee(a.paymentmethod.manual, e));
|
|
137
137
|
break;
|
|
138
|
-
case
|
|
139
|
-
u.push(
|
|
138
|
+
case I.pay:
|
|
139
|
+
u.push(ve(a.paymentmethod.onlinebanking, e));
|
|
140
140
|
break;
|
|
141
141
|
default:
|
|
142
142
|
if (a.paymentmethod.auto.bank.length > 0 && u.push(
|
|
143
|
-
|
|
143
|
+
he(a.bankid ?? 0, a.paymentmethod.auto, e)
|
|
144
144
|
), a.paymentmethod.manual.bank.length > 0) {
|
|
145
|
-
let
|
|
146
|
-
for (let
|
|
147
|
-
const d = a.paymentmethod.manual.bank[
|
|
145
|
+
let i = !1;
|
|
146
|
+
for (let l = 0; l < a.paymentmethod.manual.bank.length; l++) {
|
|
147
|
+
const d = a.paymentmethod.manual.bank[l];
|
|
148
148
|
if (d.list && d.list.length > 0) {
|
|
149
|
-
|
|
149
|
+
i = !0;
|
|
150
150
|
break;
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
|
-
|
|
153
|
+
i && u.push(ee(a.paymentmethod.manual, e));
|
|
154
154
|
}
|
|
155
155
|
a.paymentmethod.fixamount.bank.length > 0 && u.push(
|
|
156
|
-
|
|
156
|
+
Te(a.bankid ?? 0, a.paymentmethod.fixamount)
|
|
157
157
|
);
|
|
158
158
|
}
|
|
159
159
|
return {
|
|
@@ -162,7 +162,7 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
162
162
|
paymentList: u
|
|
163
163
|
};
|
|
164
164
|
})) ?? [];
|
|
165
|
-
},
|
|
165
|
+
}, J = (e) => {
|
|
166
166
|
const t = {
|
|
167
167
|
id: -1,
|
|
168
168
|
name: "excludePromo",
|
|
@@ -177,12 +177,12 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
177
177
|
dailyBonus: u.dtype === "5" && u.type === "D"
|
|
178
178
|
}));
|
|
179
179
|
return [t, ...a];
|
|
180
|
-
},
|
|
181
|
-
let
|
|
182
|
-
a > 0 ?
|
|
183
|
-
const d = Math.round(
|
|
180
|
+
}, V = (e, t, a, u) => {
|
|
181
|
+
let i, l;
|
|
182
|
+
a > 0 ? i = e > 0 ? Math.max(a, e) : a : i = Math.max(e, 0), u > 0 ? l = t > 0 ? Math.min(u, t) : u : l = Math.max(t, 0);
|
|
183
|
+
const d = Math.round(i);
|
|
184
184
|
let m = 1e3;
|
|
185
|
-
|
|
185
|
+
l < m && (m = Math.round(l));
|
|
186
186
|
const b = m - d;
|
|
187
187
|
let p = "", _ = "";
|
|
188
188
|
if (b > 0) {
|
|
@@ -203,26 +203,26 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
203
203
|
p,
|
|
204
204
|
_,
|
|
205
205
|
m.toString()
|
|
206
|
-
], minAmount: d, maxAmount:
|
|
207
|
-
},
|
|
206
|
+
], minAmount: d, maxAmount: l };
|
|
207
|
+
}, ee = (e, t) => t ? {
|
|
208
208
|
id: 0,
|
|
209
209
|
name: "manualMethod",
|
|
210
|
-
type:
|
|
211
|
-
promo:
|
|
212
|
-
bank: e.bank.map((
|
|
213
|
-
const
|
|
214
|
-
Number(
|
|
210
|
+
type: I.manual,
|
|
211
|
+
promo: J(e.promo),
|
|
212
|
+
bank: e.bank.map((i) => {
|
|
213
|
+
const l = i.list && i.list.length > 0 ? i.list[0].mintransaction ?? "0.00" : "0.00", d = i.list && i.list.length > 0 ? i.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: b, maxAmount: p } = V(
|
|
214
|
+
Number(l),
|
|
215
215
|
Number(d),
|
|
216
216
|
t.mdBankLevelDetail.deposit_min,
|
|
217
217
|
t.mdBankLevelDetail.deposit_max
|
|
218
218
|
);
|
|
219
219
|
return t.mdManualDepositRequireField.depositor = !0, {
|
|
220
|
-
id:
|
|
221
|
-
bankAccountId:
|
|
222
|
-
name:
|
|
223
|
-
accountName:
|
|
224
|
-
accountNo:
|
|
225
|
-
qrcode:
|
|
220
|
+
id: i.bankindex ?? 0,
|
|
221
|
+
bankAccountId: i.list && i.list.length > 0 ? i.list[0].bankaccountindex ?? 0 : 0,
|
|
222
|
+
name: i.list && i.list.length > 0 ? i.list[0].label ?? "" : "",
|
|
223
|
+
accountName: i.list && i.list.length > 0 ? i.list[0].bankaccountname ?? "" : "",
|
|
224
|
+
accountNo: i.list && i.list.length > 0 ? i.list[0].bankaccountno ?? "" : "",
|
|
225
|
+
qrcode: i.list && i.list.length > 0 ? i.list[0].bankaccountdesc : "",
|
|
226
226
|
amountList: m,
|
|
227
227
|
min: b,
|
|
228
228
|
max: p
|
|
@@ -236,18 +236,18 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
236
236
|
depositor: t.mdManualDepositRequireField.depositor,
|
|
237
237
|
uploadReceipt: t.mdUploadReceipt
|
|
238
238
|
}
|
|
239
|
-
} :
|
|
239
|
+
} : X, ve = (e, t) => t ? {
|
|
240
240
|
id: 0,
|
|
241
241
|
name: "onlineBankingMethod",
|
|
242
|
-
type:
|
|
243
|
-
promo:
|
|
244
|
-
bank: e.banklist.map((
|
|
245
|
-
let
|
|
246
|
-
const m =
|
|
242
|
+
type: I.pay,
|
|
243
|
+
promo: J(e.promo),
|
|
244
|
+
bank: e.banklist.map((i) => {
|
|
245
|
+
let l = "0.00", d = "0.00";
|
|
246
|
+
const m = i.bankindex ?? 0;
|
|
247
247
|
for (let S = 0; S < t.mdGatewayMinMax.length; S++)
|
|
248
|
-
t.mdGatewayMinMax[S].bankindex == m.toString() && (
|
|
249
|
-
const { amountList: b, minAmount: p, maxAmount: _ } =
|
|
250
|
-
Number(
|
|
248
|
+
t.mdGatewayMinMax[S].bankindex == m.toString() && (l = t.mdGatewayMinMax[S].min, d = t.mdGatewayMinMax[S].max);
|
|
249
|
+
const { amountList: b, minAmount: p, maxAmount: _ } = V(
|
|
250
|
+
Number(l),
|
|
251
251
|
Number(d),
|
|
252
252
|
t.mdBankLevelDetail.onlinepayment_min,
|
|
253
253
|
t.mdBankLevelDetail.onlinepayment_max
|
|
@@ -257,39 +257,39 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
257
257
|
amountList: b,
|
|
258
258
|
min: p,
|
|
259
259
|
max: _
|
|
260
|
-
}, h =
|
|
261
|
-
const M = S.mintransaction ?? "0.00",
|
|
260
|
+
}, h = i.pg.map((S) => {
|
|
261
|
+
const M = S.mintransaction ?? "0.00", F = S.maxtransaction ?? "0.00", { amountList: x, minAmount: R, maxAmount: L } = V(
|
|
262
262
|
Number(M),
|
|
263
|
-
Number(
|
|
263
|
+
Number(F),
|
|
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: x,
|
|
271
271
|
min: R,
|
|
272
272
|
max: L
|
|
273
273
|
};
|
|
274
274
|
});
|
|
275
275
|
return {
|
|
276
|
-
id:
|
|
277
|
-
name:
|
|
276
|
+
id: i.bankindex ?? 0,
|
|
277
|
+
name: i.banknameenglish ?? "",
|
|
278
278
|
amountList: [],
|
|
279
279
|
min: 0,
|
|
280
280
|
max: 0,
|
|
281
281
|
gateway: [O, ...h]
|
|
282
282
|
};
|
|
283
283
|
}),
|
|
284
|
-
requiredField:
|
|
285
|
-
} :
|
|
286
|
-
if (!a) return
|
|
287
|
-
const u =
|
|
288
|
-
let
|
|
289
|
-
const
|
|
284
|
+
requiredField: H
|
|
285
|
+
} : X, he = (e, t, a) => {
|
|
286
|
+
if (!a) return X;
|
|
287
|
+
const u = I.auto;
|
|
288
|
+
let i = [];
|
|
289
|
+
const l = a.mdGatewayMinMax ?? [];
|
|
290
290
|
if (t.bank.length > 0 && a.mdPGSelection === "1")
|
|
291
|
-
|
|
292
|
-
const { amountList: b, minAmount: p, maxAmount: _ } =
|
|
291
|
+
i = t.bank.map((m) => {
|
|
292
|
+
const { amountList: b, minAmount: p, maxAmount: _ } = V(
|
|
293
293
|
m.mintransaction ?? 0,
|
|
294
294
|
m.maxtransaction ?? 0,
|
|
295
295
|
a.mdBankLevelDetail.onlinepayment_min,
|
|
@@ -305,9 +305,9 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
305
305
|
});
|
|
306
306
|
else {
|
|
307
307
|
let m = "0.00", b = "0.00";
|
|
308
|
-
for (let g = 0; g <
|
|
309
|
-
|
|
310
|
-
const { amountList: p, minAmount: _, maxAmount: O } =
|
|
308
|
+
for (let g = 0; g < l.length; g++)
|
|
309
|
+
l[g].bankindex === e.toString() && (m = l[g].min, b = l[g].max);
|
|
310
|
+
const { amountList: p, minAmount: _, maxAmount: O } = V(
|
|
311
311
|
Number(m),
|
|
312
312
|
Number(b),
|
|
313
313
|
a.mdBankLevelDetail.onlinepayment_min,
|
|
@@ -319,57 +319,58 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
319
319
|
min: _,
|
|
320
320
|
max: O
|
|
321
321
|
};
|
|
322
|
-
|
|
322
|
+
i.push(h);
|
|
323
323
|
}
|
|
324
324
|
return {
|
|
325
325
|
id: e,
|
|
326
326
|
name: "autoMethod",
|
|
327
327
|
type: u,
|
|
328
|
-
promo:
|
|
329
|
-
bank:
|
|
330
|
-
requiredField:
|
|
328
|
+
promo: J(t.promo),
|
|
329
|
+
bank: i,
|
|
330
|
+
requiredField: H
|
|
331
331
|
};
|
|
332
|
-
},
|
|
333
|
-
const a =
|
|
332
|
+
}, Te = (e, t) => {
|
|
333
|
+
const a = I.fix;
|
|
334
334
|
return {
|
|
335
335
|
id: e,
|
|
336
336
|
name: "fixAmountMethod",
|
|
337
337
|
type: a,
|
|
338
|
-
promo:
|
|
339
|
-
bank: t.bank.map((
|
|
340
|
-
const
|
|
338
|
+
promo: J(t.promo),
|
|
339
|
+
bank: t.bank.map((i) => {
|
|
340
|
+
const l = i.amtlist.map(Number).sort((m, b) => m - b);
|
|
341
341
|
return {
|
|
342
|
-
id:
|
|
343
|
-
name:
|
|
344
|
-
amountList:
|
|
345
|
-
min:
|
|
346
|
-
max:
|
|
342
|
+
id: i.pgindex,
|
|
343
|
+
name: i.name,
|
|
344
|
+
amountList: i.amtlist,
|
|
345
|
+
min: l.length > 0 ? l[0] : 0,
|
|
346
|
+
max: l.length > 0 ? l[l.length - 1] : 0
|
|
347
347
|
};
|
|
348
348
|
}),
|
|
349
|
-
requiredField:
|
|
349
|
+
requiredField: H
|
|
350
350
|
};
|
|
351
|
-
},
|
|
351
|
+
}, Re = (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
|
+
}))) ?? [], Se = (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, u,
|
|
362
|
+
}), ke = (e) => {
|
|
363
|
+
var t, a, u, i;
|
|
364
364
|
return {
|
|
365
|
-
platformGame: ((t = e.mdGameListResult) == null ? void 0 : t.map((
|
|
365
|
+
platformGame: ((t = e.mdGameListResult) == null ? void 0 : t.map((l) => {
|
|
366
366
|
var d, m;
|
|
367
367
|
return {
|
|
368
|
-
code:
|
|
369
|
-
id:
|
|
370
|
-
name:
|
|
371
|
-
|
|
372
|
-
|
|
368
|
+
code: l.code.toLowerCase(),
|
|
369
|
+
id: l.id,
|
|
370
|
+
name: l.name,
|
|
371
|
+
iconUrl: `${e.mdDomains[3]}side_menu/${l.code.toLowerCase()}/${l.code.toLowerCase()}.png?v=1`,
|
|
372
|
+
nextPage: l.nextPage === 1,
|
|
373
|
+
list: (l.mdPlatformProducts !== null && ((d = l.mdPlatformProducts) == null ? void 0 : d.length)) ?? !1 ? ((m = l.mdPlatformProducts) == null ? void 0 : m.map((b) => ({
|
|
373
374
|
gameId: Number(b.id_GameMaster),
|
|
374
375
|
platformId: Number(b.id),
|
|
375
376
|
name: b.shortName,
|
|
@@ -386,42 +387,42 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
386
387
|
}))) ?? [] : []
|
|
387
388
|
};
|
|
388
389
|
})) ?? [],
|
|
389
|
-
hotGameList: e.mdGameLists !== null ? ((u = (a = e.mdGameLists) == null ? void 0 : a.data) == null ? void 0 : u.map((
|
|
390
|
-
gameId: Number(
|
|
391
|
-
platformId: Number(
|
|
392
|
-
name:
|
|
390
|
+
hotGameList: e.mdGameLists !== null ? ((u = (a = e.mdGameLists) == null ? void 0 : a.data) == null ? void 0 : u.map((l) => ({
|
|
391
|
+
gameId: Number(l.id),
|
|
392
|
+
platformId: Number(l.id_PlatformProduct),
|
|
393
|
+
name: l.name,
|
|
393
394
|
flag: {
|
|
394
|
-
value:
|
|
395
|
-
hot: (
|
|
396
|
-
trial: (
|
|
397
|
-
new: (
|
|
395
|
+
value: l.flag,
|
|
396
|
+
hot: (l.flag & 2) > 0,
|
|
397
|
+
trial: (l.flag & 4) > 0,
|
|
398
|
+
new: (l.flag & 8) > 0
|
|
398
399
|
},
|
|
399
|
-
imageUrl: `${e.mdDomains[
|
|
400
|
-
logoUrl: `/image/platform_logo/${
|
|
400
|
+
imageUrl: `${e.mdDomains[l.mdDomains_id]}${l.img}?ts=${l.filemtime}`,
|
|
401
|
+
logoUrl: `/image/platform_logo/${l.img.split("/").pop()}?v=1`,
|
|
401
402
|
rate: "0.00",
|
|
402
403
|
favourite: !1
|
|
403
404
|
}))) ?? [] : [],
|
|
404
|
-
platformGameList: e.mdGameLists !== null && e.mdGameLists.length > 0 ? ((
|
|
405
|
-
gameId: Number(
|
|
406
|
-
platformId: Number(
|
|
407
|
-
name:
|
|
405
|
+
platformGameList: e.mdGameLists !== null && e.mdGameLists.length > 0 ? ((i = e.mdGameLists) == null ? void 0 : i.map((l) => ({
|
|
406
|
+
gameId: Number(l.id),
|
|
407
|
+
platformId: Number(l.id_PlatformProduct),
|
|
408
|
+
name: l.name,
|
|
408
409
|
flag: {
|
|
409
410
|
value: 0,
|
|
410
411
|
hot: !1,
|
|
411
412
|
trial: !1,
|
|
412
413
|
new: !1
|
|
413
414
|
},
|
|
414
|
-
imageUrl: `${e.mdDomains[
|
|
415
|
-
logoUrl: `/image/platform_logo/${
|
|
415
|
+
imageUrl: `${e.mdDomains[l.mdDomains_id]}${l.img}?ts=${l.filemtime}`,
|
|
416
|
+
logoUrl: `/image/platform_logo/${l.img.split("/").pop()}?v=1`,
|
|
416
417
|
rate: "0.00",
|
|
417
418
|
favourite: !1
|
|
418
419
|
}))) ?? [] : [],
|
|
419
420
|
trialGameList: [],
|
|
420
421
|
fishGameList: []
|
|
421
422
|
};
|
|
422
|
-
},
|
|
423
|
+
}, Pe = (e) => ({
|
|
423
424
|
list: e.mdGrade.map((t) => {
|
|
424
|
-
var a, u,
|
|
425
|
+
var a, u, i, l, d, m, b, p, _, O, h, g, S, M, F, x, R, L, U, B, A, q, Y, $, E, n, c, y, r, o, v, k;
|
|
425
426
|
return {
|
|
426
427
|
id: t.gradeindex,
|
|
427
428
|
is_current_level: !1,
|
|
@@ -429,45 +430,45 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
429
430
|
percentage: 0,
|
|
430
431
|
turnover: {
|
|
431
432
|
isShow: !1,
|
|
432
|
-
current: "0",
|
|
433
|
-
total: t.min_activebet
|
|
433
|
+
current: "0.00",
|
|
434
|
+
total: parseFloat(t.min_activebet).toFixed(2)
|
|
434
435
|
},
|
|
435
436
|
deposit: {
|
|
436
437
|
isShow: !1,
|
|
437
|
-
current: "0",
|
|
438
|
-
total: t.min_deposit
|
|
438
|
+
current: "0.00",
|
|
439
|
+
total: parseFloat(t.min_deposit).toFixed(2)
|
|
439
440
|
},
|
|
440
441
|
promo_list: t.promocash.filter((P) => P.isshow == 1 && P.status == "1").map((P) => ({
|
|
441
442
|
name: P.promosimplified,
|
|
442
|
-
min_deposit: P.min_deposit,
|
|
443
|
+
min_deposit: parseFloat(P.min_deposit).toFixed(2),
|
|
443
444
|
promo_bonus: P.percentage,
|
|
444
|
-
promo_limit: P.max_promo_amt,
|
|
445
|
+
promo_limit: parseFloat(P.max_promo_amt).toFixed(2),
|
|
445
446
|
turnover_multiplier: P.multiply,
|
|
446
447
|
type: P.promo_type
|
|
447
448
|
})),
|
|
448
449
|
benefit_list: {
|
|
449
450
|
daily: {
|
|
450
|
-
bonus: ((u = (a = t.benefit) == null ? void 0 : a.daily) == null ? void 0 : u.bonus) ?? "",
|
|
451
|
-
bonus_name: ((
|
|
452
|
-
turnover: ((m = (d = t.benefit) == null ? void 0 : d.daily) == null ? void 0 : m.turnover) ?? "",
|
|
451
|
+
bonus: parseFloat(((u = (a = t.benefit) == null ? void 0 : a.daily) == null ? void 0 : u.bonus) ?? "0.00").toFixed(2),
|
|
452
|
+
bonus_name: ((l = (i = t.benefit) == null ? void 0 : i.daily) == null ? void 0 : l.bonus_name) ?? "",
|
|
453
|
+
turnover: parseFloat(((m = (d = t.benefit) == null ? void 0 : d.daily) == null ? void 0 : m.turnover) ?? "0.00").toFixed(2),
|
|
453
454
|
turnover_name: ((p = (b = t.benefit) == null ? void 0 : b.daily) == null ? void 0 : p.turnover_name) ?? ""
|
|
454
455
|
},
|
|
455
456
|
monthly: {
|
|
456
|
-
bonus: ((O = (_ = t.benefit) == null ? void 0 : _.monthly) == null ? void 0 : O.bonus) ?? "",
|
|
457
|
+
bonus: parseFloat(((O = (_ = t.benefit) == null ? void 0 : _.monthly) == null ? void 0 : O.bonus) ?? "0.00").toFixed(2),
|
|
457
458
|
bonus_name: ((g = (h = t.benefit) == null ? void 0 : h.monthly) == null ? void 0 : g.bonus_name) ?? "",
|
|
458
|
-
turnover: ((M = (S = t.benefit) == null ? void 0 : S.monthly) == null ? void 0 : M.turnover) ?? "",
|
|
459
|
-
turnover_name: ((
|
|
459
|
+
turnover: parseFloat(((M = (S = t.benefit) == null ? void 0 : S.monthly) == null ? void 0 : M.turnover) ?? "0.00").toFixed(2),
|
|
460
|
+
turnover_name: ((x = (F = t.benefit) == null ? void 0 : F.monthly) == null ? void 0 : x.turnover_name) ?? ""
|
|
460
461
|
},
|
|
461
462
|
weekly: {
|
|
462
|
-
bonus: ((L = (R = t.benefit) == null ? void 0 : R.weekly) == null ? void 0 : L.bonus) ?? "",
|
|
463
|
-
bonus_name: ((
|
|
464
|
-
turnover: ((
|
|
465
|
-
turnover_name: ((
|
|
463
|
+
bonus: parseFloat(((L = (R = t.benefit) == null ? void 0 : R.weekly) == null ? void 0 : L.bonus) ?? "0.00").toFixed(2),
|
|
464
|
+
bonus_name: ((B = (U = t.benefit) == null ? void 0 : U.weekly) == null ? void 0 : B.bonus_name) ?? "",
|
|
465
|
+
turnover: parseFloat(((q = (A = t.benefit) == null ? void 0 : A.weekly) == null ? void 0 : q.turnover) ?? "0.00").toFixed(2),
|
|
466
|
+
turnover_name: (($ = (Y = t.benefit) == null ? void 0 : Y.weekly) == null ? void 0 : $.turnover_name) ?? ""
|
|
466
467
|
},
|
|
467
468
|
upgrade: {
|
|
468
|
-
bonus: ((n = (E = t.benefit) == null ? void 0 : E.upgrade) == null ? void 0 : n.bonus) ?? "",
|
|
469
|
+
bonus: parseFloat(((n = (E = t.benefit) == null ? void 0 : E.upgrade) == null ? void 0 : n.bonus) ?? "0.00").toFixed(2),
|
|
469
470
|
bonus_name: ((y = (c = t.benefit) == null ? void 0 : c.upgrade) == null ? void 0 : y.bonus_name) ?? "",
|
|
470
|
-
turnover: ((o = (r = t.benefit) == null ? void 0 : r.upgrade) == null ? void 0 : o.turnover) ?? "",
|
|
471
|
+
turnover: parseFloat(((o = (r = t.benefit) == null ? void 0 : r.upgrade) == null ? void 0 : o.turnover) ?? "0.00").toFixed(2),
|
|
471
472
|
turnover_name: ((k = (v = t.benefit) == null ? void 0 : v.upgrade) == null ? void 0 : k.turnover_name) ?? ""
|
|
472
473
|
}
|
|
473
474
|
}
|
|
@@ -503,7 +504,7 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
503
504
|
}
|
|
504
505
|
}
|
|
505
506
|
}
|
|
506
|
-
}),
|
|
507
|
+
}), Oe = (e) => ({
|
|
507
508
|
category: e.category.sort((t, a) => t.sequence - a.sequence).map((t) => ({
|
|
508
509
|
id: t.catid,
|
|
509
510
|
name: t.name
|
|
@@ -518,7 +519,7 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
518
519
|
name: t.title
|
|
519
520
|
};
|
|
520
521
|
})
|
|
521
|
-
}),
|
|
522
|
+
}), Me = (e) => ({
|
|
522
523
|
month: {
|
|
523
524
|
isClaimable: e.month === 1
|
|
524
525
|
},
|
|
@@ -528,30 +529,30 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
528
529
|
day: {
|
|
529
530
|
isClaimable: e.day === 1
|
|
530
531
|
}
|
|
531
|
-
}),
|
|
532
|
+
}), je = (e) => e.mdVipSetting.filter((a) => a.status == 1).map((a) => ({
|
|
532
533
|
fieldName: a.fieldname,
|
|
533
534
|
showName: a.showname
|
|
534
|
-
})),
|
|
535
|
+
})), xe = (e) => ({
|
|
535
536
|
current_deposit: e.deposit,
|
|
536
537
|
current_turnover: e.turnOver,
|
|
537
538
|
current_grade_id: e.mdCurrentGrade.gradeindex,
|
|
538
539
|
next_grade_id: e.mdNextGrade.gradeindex,
|
|
539
540
|
percentage: Number(e.percentage) * 100
|
|
540
|
-
}),
|
|
541
|
-
var u,
|
|
541
|
+
}), De = (e) => {
|
|
542
|
+
var u, i;
|
|
542
543
|
let t = 4;
|
|
543
544
|
e.vipcalculation && (t = Number(e.vipcalculation));
|
|
544
545
|
let a = [];
|
|
545
546
|
return e.extralivechat && (a = JSON.parse(e.extralivechat)), {
|
|
546
547
|
vipCalculation: t,
|
|
547
548
|
livechat: e.livechat ?? "",
|
|
548
|
-
livechatList: a.filter((
|
|
549
|
-
let d =
|
|
550
|
-
return d.slice(-4) === ".png" && (d =
|
|
551
|
-
name:
|
|
549
|
+
livechatList: a.filter((l) => l.status == 1).map((l) => {
|
|
550
|
+
let d = l.imgname;
|
|
551
|
+
return d.slice(-4) === ".png" && (d = l.imgname.slice(0, -4)), {
|
|
552
|
+
name: l.name,
|
|
552
553
|
imageUrl: `/image/game/native/customer_service/${d}.png`,
|
|
553
|
-
url:
|
|
554
|
-
status:
|
|
554
|
+
url: l.url,
|
|
555
|
+
status: l.status == 1
|
|
555
556
|
};
|
|
556
557
|
}),
|
|
557
558
|
mobileValidate: e.mobilevalidate ? e.mobilevalidate === "1" : !1,
|
|
@@ -566,85 +567,85 @@ const pe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
566
567
|
crypto: e.crypto === "1",
|
|
567
568
|
forgetUser: {
|
|
568
569
|
email: ((u = e.forgetuser) == null ? void 0 : u.email) ?? !1,
|
|
569
|
-
sms: ((
|
|
570
|
+
sms: ((i = e.forgetuser) == null ? void 0 : i.sms) ?? !1
|
|
570
571
|
}
|
|
571
572
|
};
|
|
572
|
-
},
|
|
573
|
-
var t, a, u,
|
|
573
|
+
}, Ce = (e) => {
|
|
574
|
+
var t, a, u, i;
|
|
574
575
|
return {
|
|
575
|
-
banner: ((t = e.mobileBanner) == null ? void 0 : t.map((
|
|
576
|
-
ad: ((a = e.mobileAd) == null ? void 0 : a.map((
|
|
577
|
-
about: ((u = e.about) == null ? void 0 : u.map((
|
|
578
|
-
name:
|
|
579
|
-
content:
|
|
576
|
+
banner: ((t = e.mobileBanner) == null ? void 0 : t.map((l) => `${l.imagepath}?ts=${l.filemtime}`)) ?? [],
|
|
577
|
+
ad: ((a = e.mobileAd) == null ? void 0 : a.map((l) => `${l.imagepath}?ts=${l.filemtime}`)) ?? [],
|
|
578
|
+
about: ((u = e.about) == null ? void 0 : u.map((l) => ({
|
|
579
|
+
name: l.name,
|
|
580
|
+
content: l.content
|
|
580
581
|
}))) ?? [],
|
|
581
|
-
mobileAbout: ((
|
|
582
|
-
name:
|
|
583
|
-
content:
|
|
582
|
+
mobileAbout: ((i = e.mobileAbout) == null ? void 0 : i.map((l) => ({
|
|
583
|
+
name: l.name,
|
|
584
|
+
content: l.content
|
|
584
585
|
}))) ?? []
|
|
585
586
|
};
|
|
586
|
-
},
|
|
587
|
+
}, Ie = (e) => {
|
|
587
588
|
var t;
|
|
588
589
|
return ((t = e.data) == null ? void 0 : t.filter((a) => a.status == "1").map((a) => ({
|
|
589
590
|
code: a.area_code,
|
|
590
591
|
regex: a.regex,
|
|
591
592
|
value: a.value
|
|
592
593
|
}))) ?? [];
|
|
593
|
-
},
|
|
594
|
+
}, Fe = (e) => e, Le = (e) => {
|
|
594
595
|
let t = null;
|
|
595
596
|
return e ? e.status != 1 ? t = 0 : t = e.mainwallet : t = 0, {
|
|
596
597
|
amount: t
|
|
597
598
|
};
|
|
598
|
-
},
|
|
599
|
+
}, Ge = (e) => {
|
|
599
600
|
var t;
|
|
600
601
|
return ((t = e.data) == null ? void 0 : t.filter((a) => a.status == "1").map((a) => ({
|
|
601
602
|
name: a.title,
|
|
602
603
|
code: a.code,
|
|
603
604
|
iconUrl: a.flag_icon
|
|
604
605
|
}))) ?? [];
|
|
605
|
-
},
|
|
606
|
+
}, we = (e) => (console.log(e), {
|
|
606
607
|
name: ""
|
|
607
|
-
}),
|
|
608
|
+
}), ze = (e) => {
|
|
608
609
|
var t;
|
|
609
610
|
return ((t = e.data) == null ? void 0 : t.filter((a) => a.company_status == 1).map((a) => ({
|
|
610
611
|
id: a.company_id,
|
|
611
612
|
name: a.company_name,
|
|
612
613
|
date: []
|
|
613
614
|
}))) ?? [];
|
|
614
|
-
},
|
|
615
|
+
}, Ne = (e) => {
|
|
615
616
|
var t;
|
|
616
617
|
return ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
617
618
|
var u;
|
|
618
619
|
return {
|
|
619
620
|
id: a.key,
|
|
620
|
-
date: ((u = a.draw_date) == null ? void 0 : u.map((
|
|
621
|
+
date: ((u = a.draw_date) == null ? void 0 : u.map((i) => Ue(i.draw_tmactive))) ?? []
|
|
621
622
|
};
|
|
622
623
|
})) ?? [];
|
|
623
624
|
};
|
|
624
|
-
function
|
|
625
|
-
const t = new Date(e * 1e3), a = t.getFullYear(), u = ("0" + (t.getMonth() + 1)).slice(-2),
|
|
626
|
-
return `${a}-${u}-${
|
|
625
|
+
function Ue(e) {
|
|
626
|
+
const t = new Date(e * 1e3), a = t.getFullYear(), u = ("0" + (t.getMonth() + 1)).slice(-2), i = ("0" + t.getDate()).slice(-2);
|
|
627
|
+
return `${a}-${u}-${i}`;
|
|
627
628
|
}
|
|
628
|
-
const
|
|
629
|
+
const Be = (e) => {
|
|
629
630
|
var t;
|
|
630
631
|
return ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
631
632
|
var u;
|
|
632
633
|
return {
|
|
633
634
|
id: a.company_id,
|
|
634
635
|
name: a.company_name,
|
|
635
|
-
list: ((u = a.drawCount) == null ? void 0 : u.map((
|
|
636
|
-
combination:
|
|
637
|
-
total:
|
|
636
|
+
list: ((u = a.drawCount) == null ? void 0 : u.map((i) => ({
|
|
637
|
+
combination: i.combination_combination,
|
|
638
|
+
total: i.total
|
|
638
639
|
}))) ?? []
|
|
639
640
|
};
|
|
640
641
|
})) ?? [];
|
|
641
|
-
},
|
|
642
|
+
}, qe = (e) => e.data.map((t) => ({
|
|
642
643
|
companyId: t.company_id,
|
|
643
644
|
companyName: t.company_name,
|
|
644
645
|
resultByDateList: t.draws.map((a) => {
|
|
645
|
-
const u = a.results.filter((g) => g.combination_dimension == 3).map((g) => g.combination_combination),
|
|
646
|
+
const u = a.results.filter((g) => g.combination_dimension == 3).map((g) => g.combination_combination), i = a.results.filter(
|
|
646
647
|
(g) => g.combination_dimension == 4 && g.combination_position === 1
|
|
647
|
-
).map((g) => g.combination_combination),
|
|
648
|
+
).map((g) => g.combination_combination), l = a.results.filter(
|
|
648
649
|
(g) => g.combination_dimension === 4 && g.combination_position === 2
|
|
649
650
|
).map((g) => g.combination_combination), d = a.results.filter(
|
|
650
651
|
(g) => g.combination_dimension === 4 && g.combination_position === 3
|
|
@@ -661,8 +662,8 @@ const we = (e) => {
|
|
|
661
662
|
date: a.date,
|
|
662
663
|
dimension_3: u,
|
|
663
664
|
dimension_4: {
|
|
664
|
-
prize_1:
|
|
665
|
-
prize_2:
|
|
665
|
+
prize_1: i,
|
|
666
|
+
prize_2: l,
|
|
666
667
|
prize_3: d,
|
|
667
668
|
prize_4: m,
|
|
668
669
|
prize_5: b
|
|
@@ -677,7 +678,7 @@ const we = (e) => {
|
|
|
677
678
|
}
|
|
678
679
|
};
|
|
679
680
|
})
|
|
680
|
-
})),
|
|
681
|
+
})), We = (e) => e.data.map((t) => ({
|
|
681
682
|
id: t.id,
|
|
682
683
|
date: t.matchDate,
|
|
683
684
|
tag: t.tag,
|
|
@@ -691,19 +692,19 @@ const we = (e) => {
|
|
|
691
692
|
name: t.home,
|
|
692
693
|
logo_url: t.homeLogo
|
|
693
694
|
}
|
|
694
|
-
})),
|
|
695
|
+
})), Ve = (e) => ({
|
|
695
696
|
status: e.status == 1,
|
|
696
697
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
697
698
|
paymentUrl: e.urlpayment ?? ""
|
|
698
|
-
}),
|
|
699
|
+
}), $e = (e) => ({
|
|
699
700
|
status: e.status == 1,
|
|
700
701
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
701
702
|
flag: e.flag
|
|
702
703
|
}), T = (e) => ({
|
|
703
704
|
status: e.status == 1,
|
|
704
705
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
|
|
705
|
-
}),
|
|
706
|
-
var t, a, u,
|
|
706
|
+
}), Ee = (e) => T(e), He = (e) => {
|
|
707
|
+
var t, a, u, i, l;
|
|
707
708
|
return {
|
|
708
709
|
bankCard: ((t = e.bankCard) == null ? void 0 : t.map((d) => {
|
|
709
710
|
var m, b;
|
|
@@ -737,7 +738,7 @@ const we = (e) => {
|
|
|
737
738
|
label: d.label,
|
|
738
739
|
countryIndex: d.countryindex
|
|
739
740
|
}))) ?? [],
|
|
740
|
-
cryptoAccount: ((
|
|
741
|
+
cryptoAccount: ((i = e.mdAccountCrypto) == null ? void 0 : i.map((d) => ({
|
|
741
742
|
id: d.crypto_id,
|
|
742
743
|
type: d.type,
|
|
743
744
|
name: d.crypto_name,
|
|
@@ -745,7 +746,7 @@ const we = (e) => {
|
|
|
745
746
|
}))) ?? [],
|
|
746
747
|
cryptoDetail: {
|
|
747
748
|
limit: e.mdCryptoDetail.cryptolimit,
|
|
748
|
-
protocol: ((
|
|
749
|
+
protocol: ((l = e.mdCryptoDetail.cryptoprotocol) == null ? void 0 : l.map((d) => ({
|
|
749
750
|
id: d.id,
|
|
750
751
|
name: d.name,
|
|
751
752
|
status: d.status == "1"
|
|
@@ -760,15 +761,15 @@ const we = (e) => {
|
|
|
760
761
|
},
|
|
761
762
|
bankCardLimit: e.bankcardlimit
|
|
762
763
|
};
|
|
763
|
-
},
|
|
764
|
+
}, Je = (e) => ({
|
|
764
765
|
withdrawMin: Number(e.withdrawMin),
|
|
765
766
|
withdrawMax: Number(e.withdrawMax),
|
|
766
767
|
dailyWithdrawLimit: Number(e.dailyWithdrawLimit),
|
|
767
768
|
withdrawFee: e.withdrawFee,
|
|
768
769
|
withdrawMaxFee: Number(e.withdrawMaxFee),
|
|
769
770
|
withdrawCount: e.withdrawCount
|
|
770
|
-
}),
|
|
771
|
-
var t, a, u,
|
|
771
|
+
}), Ae = (e) => T(e), Ye = (e) => {
|
|
772
|
+
var t, a, u, i, l, d;
|
|
772
773
|
return {
|
|
773
774
|
statusMode: ((t = e.subStatusModes) == null ? void 0 : t.map((m) => ({
|
|
774
775
|
key: m.key,
|
|
@@ -780,14 +781,14 @@ const we = (e) => {
|
|
|
780
781
|
}))) ?? [],
|
|
781
782
|
data: {
|
|
782
783
|
currentPage: ((u = e.mdCashLedgers) == null ? void 0 : u.current_page) ?? 0,
|
|
783
|
-
lastPage: ((
|
|
784
|
-
data: ((d = (
|
|
784
|
+
lastPage: ((i = e.mdCashLedgers) == null ? void 0 : i.last_page) ?? 0,
|
|
785
|
+
data: ((d = (l = e.mdCashLedgers) == null ? void 0 : l.data) == null ? void 0 : d.map((m) => {
|
|
785
786
|
var b, p;
|
|
786
787
|
return {
|
|
787
788
|
transactionIndex: m.ledgerindex,
|
|
788
789
|
transactionInfo: {
|
|
789
790
|
id: m.fundindex,
|
|
790
|
-
desc:
|
|
791
|
+
desc: Ke(m.fundindex, m.transactionindex),
|
|
791
792
|
ext: m.fundindex === 3 ? `(${m.promo_cash})` : ""
|
|
792
793
|
},
|
|
793
794
|
statusInfo: {
|
|
@@ -803,7 +804,7 @@ const we = (e) => {
|
|
|
803
804
|
})) ?? []
|
|
804
805
|
}
|
|
805
806
|
};
|
|
806
|
-
},
|
|
807
|
+
}, Ke = (e, t) => {
|
|
807
808
|
switch (e) {
|
|
808
809
|
case 1:
|
|
809
810
|
if (t === 1)
|
|
@@ -833,9 +834,9 @@ const we = (e) => {
|
|
|
833
834
|
return "shareHolderDividend";
|
|
834
835
|
}
|
|
835
836
|
return "";
|
|
836
|
-
},
|
|
837
|
+
}, Qe = (e) => ({
|
|
837
838
|
status: e.status == 1
|
|
838
|
-
}),
|
|
839
|
+
}), Xe = (e) => (e == null ? void 0 : e.map((t) => {
|
|
839
840
|
var a;
|
|
840
841
|
return {
|
|
841
842
|
activeCom: ((a = t.active_com) == null ? void 0 : a.map((u) => ({
|
|
@@ -848,7 +849,7 @@ const we = (e) => {
|
|
|
848
849
|
com: t.com ?? "",
|
|
849
850
|
maintenance: t.maintenance ?? !1
|
|
850
851
|
};
|
|
851
|
-
})) ?? [],
|
|
852
|
+
})) ?? [], Ze = (e) => ({
|
|
852
853
|
status: e.status == 1,
|
|
853
854
|
message: e.message ?? "",
|
|
854
855
|
data: e.data.map((t) => ({
|
|
@@ -858,7 +859,7 @@ const we = (e) => {
|
|
|
858
859
|
imageUrl: t.image_url,
|
|
859
860
|
getToken: t.getToken === 1
|
|
860
861
|
}))
|
|
861
|
-
}),
|
|
862
|
+
}), et = (e) => {
|
|
862
863
|
var t;
|
|
863
864
|
return {
|
|
864
865
|
status: e.status == 1,
|
|
@@ -868,19 +869,19 @@ const we = (e) => {
|
|
|
868
869
|
tokenAmount: a.token_amount
|
|
869
870
|
}))) ?? []
|
|
870
871
|
};
|
|
871
|
-
},
|
|
872
|
+
}, tt = (e) => ({
|
|
872
873
|
status: e.status == 1,
|
|
873
874
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
874
875
|
loginId: e.loginId ?? "",
|
|
875
876
|
password: e.password ?? "",
|
|
876
877
|
downloadUrl: e.download_link ?? ""
|
|
877
|
-
}),
|
|
878
|
+
}), at = (e) => (e == null ? void 0 : e.map((t) => ({
|
|
878
879
|
messageId: t.msgindex,
|
|
879
880
|
unread: t.status == "0",
|
|
880
881
|
date: t.cdate,
|
|
881
882
|
title: t.account_message_content.subject,
|
|
882
883
|
content: t.account_message_content.content
|
|
883
|
-
}))) ?? [],
|
|
884
|
+
}))) ?? [], nt = (e) => {
|
|
884
885
|
var t;
|
|
885
886
|
return ((t = e.mdGameLists) == null ? void 0 : t.map((a) => ({
|
|
886
887
|
id: a.id,
|
|
@@ -888,18 +889,18 @@ const we = (e) => {
|
|
|
888
889
|
platformProductID: a.id_PlatformProduct,
|
|
889
890
|
imgUrl: `${e.mdDomains[a.mdDomains_id]}${a.img}?ts=${a.filemtime}`
|
|
890
891
|
}))) ?? [];
|
|
891
|
-
},
|
|
892
|
+
}, ot = (e) => e.mdGameLists.map((t) => ({
|
|
892
893
|
id: t.id,
|
|
893
894
|
name: t.name,
|
|
894
895
|
list: t.gameList.map((a) => {
|
|
895
|
-
const u = e.mdDomains,
|
|
896
|
+
const u = e.mdDomains, l = `${u.length >= a.mdDomains_id ? u[a.mdDomains_id] : ""}${a.img}?${a.filemtime}`;
|
|
896
897
|
return {
|
|
897
898
|
id: a.id,
|
|
898
899
|
name: a.name,
|
|
899
|
-
imageUrl:
|
|
900
|
+
imageUrl: l
|
|
900
901
|
};
|
|
901
902
|
})
|
|
902
|
-
})),
|
|
903
|
+
})), rt = (e) => e.status == 0 ? {
|
|
903
904
|
claimedReward: "0",
|
|
904
905
|
currentDirectDownline: "0",
|
|
905
906
|
currentOtherDownline: "0",
|
|
@@ -913,19 +914,19 @@ const we = (e) => {
|
|
|
913
914
|
currentReward: e.data.current_reward.toString(),
|
|
914
915
|
totalReward: e.data.total_reward,
|
|
915
916
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
916
|
-
},
|
|
917
|
-
const t = /* @__PURE__ */ new Set(), a = e.data.map((
|
|
918
|
-
id:
|
|
919
|
-
name:
|
|
920
|
-
cashback:
|
|
921
|
-
commission:
|
|
922
|
-
})), u = e.data.reduce((
|
|
917
|
+
}, st = (e) => {
|
|
918
|
+
const t = /* @__PURE__ */ new Set(), a = e.data.map((l) => (t.add(l.downline), {
|
|
919
|
+
id: l.logindex,
|
|
920
|
+
name: l.firstname,
|
|
921
|
+
cashback: l.turnover,
|
|
922
|
+
commission: l.income
|
|
923
|
+
})), u = e.data.reduce((l, d) => l + parseFloat(d.income), 0), i = t.size;
|
|
923
924
|
return {
|
|
924
925
|
totalReward: u,
|
|
925
|
-
totalCount:
|
|
926
|
+
totalCount: i,
|
|
926
927
|
list: a
|
|
927
928
|
};
|
|
928
|
-
},
|
|
929
|
+
}, it = (e) => e.status == 0 ? {
|
|
929
930
|
claimedReward: "0",
|
|
930
931
|
currentInvite: "0",
|
|
931
932
|
currentReward: "0",
|
|
@@ -939,21 +940,21 @@ const we = (e) => {
|
|
|
939
940
|
totalInvite: e.data.total_invite,
|
|
940
941
|
totalReward: e.data.total_reward,
|
|
941
942
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
942
|
-
},
|
|
943
|
-
const t = /* @__PURE__ */ new Set(), a = e.data.map((
|
|
944
|
-
id:
|
|
945
|
-
name:
|
|
946
|
-
dateCreated:
|
|
947
|
-
deposit:
|
|
948
|
-
activeBet:
|
|
949
|
-
commission:
|
|
950
|
-
})), u = e.data.reduce((
|
|
943
|
+
}, lt = (e) => {
|
|
944
|
+
const t = /* @__PURE__ */ new Set(), a = e.data.map((l) => (t.add(l.accountid), {
|
|
945
|
+
id: l.id,
|
|
946
|
+
name: l.firstname,
|
|
947
|
+
dateCreated: l.created,
|
|
948
|
+
deposit: l.deposit,
|
|
949
|
+
activeBet: l.activebet,
|
|
950
|
+
commission: l.reward
|
|
951
|
+
})), u = e.data.reduce((l, d) => l + parseFloat(d.reward), 0), i = t.size;
|
|
951
952
|
return {
|
|
952
953
|
totalReward: u,
|
|
953
|
-
totalCount:
|
|
954
|
+
totalCount: i,
|
|
954
955
|
list: a
|
|
955
956
|
};
|
|
956
|
-
},
|
|
957
|
+
}, ut = (e) => e.status == 0 ? {
|
|
957
958
|
claimedReward: "0",
|
|
958
959
|
currentDirectDownline: "0",
|
|
959
960
|
currentOtherDownline: "0",
|
|
@@ -967,19 +968,19 @@ const we = (e) => {
|
|
|
967
968
|
currentReward: e.data.current_reward.toString(),
|
|
968
969
|
totalReward: e.data.total_reward,
|
|
969
970
|
unclaimReward: e.data.unclaim_reward.toString()
|
|
970
|
-
},
|
|
971
|
-
const t = /* @__PURE__ */ new Set(), a = e.data.map((
|
|
972
|
-
id:
|
|
973
|
-
name:
|
|
974
|
-
total:
|
|
975
|
-
commission:
|
|
976
|
-
})), u = e.data.reduce((
|
|
971
|
+
}, dt = (e) => {
|
|
972
|
+
const t = /* @__PURE__ */ new Set(), a = e.data.map((l) => (t.add(l.accountid), {
|
|
973
|
+
id: l.logindex,
|
|
974
|
+
name: l.firstname,
|
|
975
|
+
total: l.deposit,
|
|
976
|
+
commission: l.reward
|
|
977
|
+
})), u = e.data.reduce((l, d) => l + parseFloat(d.reward), 0), i = t.size;
|
|
977
978
|
return {
|
|
978
979
|
totalReward: u,
|
|
979
|
-
totalCount:
|
|
980
|
+
totalCount: i,
|
|
980
981
|
list: a
|
|
981
982
|
};
|
|
982
|
-
},
|
|
983
|
+
}, ct = (e) => e.status == 0 ? {
|
|
983
984
|
directDownline: "0",
|
|
984
985
|
otherDownline: "0",
|
|
985
986
|
uplineCode: "",
|
|
@@ -989,7 +990,7 @@ const we = (e) => {
|
|
|
989
990
|
otherDownline: e.data.others_downline_count.toString(),
|
|
990
991
|
uplineCode: e.data.upline.accountcode,
|
|
991
992
|
referralCode: e.data.referral_code
|
|
992
|
-
},
|
|
993
|
+
}, mt = (e) => {
|
|
993
994
|
var b;
|
|
994
995
|
let t = null, a = null;
|
|
995
996
|
if (e.status == 0)
|
|
@@ -1008,7 +1009,7 @@ const we = (e) => {
|
|
|
1008
1009
|
};
|
|
1009
1010
|
});
|
|
1010
1011
|
u.length > 0 && (t = u[0]);
|
|
1011
|
-
const
|
|
1012
|
+
const i = e.data.filter((p) => p.dtype == "5" && p.type == "D").map((p) => {
|
|
1012
1013
|
const _ = Math.min(
|
|
1013
1014
|
Number(p.min_deposit) * Number(p.percentage) / 100,
|
|
1014
1015
|
Number(p.max_promo_amt)
|
|
@@ -1021,27 +1022,27 @@ const we = (e) => {
|
|
|
1021
1022
|
expiryTime: p.etime
|
|
1022
1023
|
};
|
|
1023
1024
|
});
|
|
1024
|
-
let
|
|
1025
|
-
const m =
|
|
1025
|
+
let l = 0, d = ((b = i[0]) == null ? void 0 : b.expiryTime) || "";
|
|
1026
|
+
const m = i.map((p) => (l = Math.max(l, p.percentage), new Date(p.expiryTime) < new Date(d) && (d = p.expiryTime), {
|
|
1026
1027
|
name: p.name,
|
|
1027
1028
|
depositAmount: p.depositAmount,
|
|
1028
1029
|
promoAmount: p.promoAmount
|
|
1029
1030
|
}));
|
|
1030
1031
|
return a = {
|
|
1031
|
-
percentage:
|
|
1032
|
+
percentage: l,
|
|
1032
1033
|
expiryTime: d,
|
|
1033
1034
|
list: m
|
|
1034
1035
|
}, { welcomeBonus: t, dailyBonus: a };
|
|
1035
|
-
},
|
|
1036
|
+
}, pt = (e) => ({
|
|
1036
1037
|
status: e.status == 1,
|
|
1037
1038
|
message: e.msg ?? ""
|
|
1038
|
-
}),
|
|
1039
|
+
}), gt = (e) => ({
|
|
1039
1040
|
status: e.status == 1,
|
|
1040
1041
|
message: e.msg ?? ""
|
|
1041
|
-
}),
|
|
1042
|
+
}), bt = (e) => ({
|
|
1042
1043
|
status: e.status == 1,
|
|
1043
1044
|
message: e.msg ?? ""
|
|
1044
|
-
}),
|
|
1045
|
+
}), ft = (e) => e.status == 0 ? {
|
|
1045
1046
|
deposit: "0",
|
|
1046
1047
|
reward: "0",
|
|
1047
1048
|
turnover: "0"
|
|
@@ -1049,7 +1050,7 @@ const we = (e) => {
|
|
|
1049
1050
|
deposit: e.data.deposit,
|
|
1050
1051
|
reward: e.data.reward,
|
|
1051
1052
|
turnover: e.data.turnover
|
|
1052
|
-
},
|
|
1053
|
+
}, yt = (e) => {
|
|
1053
1054
|
if (e.status == 0 || !e.data)
|
|
1054
1055
|
return {};
|
|
1055
1056
|
const t = {};
|
|
@@ -1057,18 +1058,18 @@ const we = (e) => {
|
|
|
1057
1058
|
if (Object.prototype.hasOwnProperty.call(e.data, a)) {
|
|
1058
1059
|
const u = e.data[a];
|
|
1059
1060
|
t[a] = [];
|
|
1060
|
-
for (let
|
|
1061
|
-
const
|
|
1061
|
+
for (let i = 0; i < u.length; i++) {
|
|
1062
|
+
const l = u[i];
|
|
1062
1063
|
let d = "";
|
|
1063
|
-
u.length >
|
|
1064
|
-
rate:
|
|
1065
|
-
minValue:
|
|
1064
|
+
u.length > i + 1 && (d = (Number(u[i + 1].achievement) - 1).toString()), t[a].push({
|
|
1065
|
+
rate: l.rate,
|
|
1066
|
+
minValue: l.achievement.toString(),
|
|
1066
1067
|
maxValue: d
|
|
1067
1068
|
});
|
|
1068
1069
|
}
|
|
1069
1070
|
}
|
|
1070
1071
|
return t;
|
|
1071
|
-
},
|
|
1072
|
+
}, _t = (e) => {
|
|
1072
1073
|
if (e.status == 0 || !e.data)
|
|
1073
1074
|
return {};
|
|
1074
1075
|
const t = {};
|
|
@@ -1076,32 +1077,32 @@ const we = (e) => {
|
|
|
1076
1077
|
if (Object.prototype.hasOwnProperty.call(e.data, a)) {
|
|
1077
1078
|
const u = e.data[a];
|
|
1078
1079
|
t[a] = [];
|
|
1079
|
-
for (let
|
|
1080
|
-
const
|
|
1080
|
+
for (let i = 0; i < u.length; i++) {
|
|
1081
|
+
const l = u[i];
|
|
1081
1082
|
let d = "";
|
|
1082
|
-
u.length >
|
|
1083
|
-
rate:
|
|
1084
|
-
minValue:
|
|
1083
|
+
u.length > i + 1 && (d = (Number(u[i + 1].achievement) - 1).toString()), t[a].push({
|
|
1084
|
+
rate: l.rate,
|
|
1085
|
+
minValue: l.achievement,
|
|
1085
1086
|
maxValue: d
|
|
1086
1087
|
});
|
|
1087
1088
|
}
|
|
1088
1089
|
}
|
|
1089
1090
|
return t;
|
|
1090
|
-
},
|
|
1091
|
-
var t, a, u,
|
|
1091
|
+
}, vt = (e) => T(e), ht = (e) => T(e), Tt = (e) => {
|
|
1092
|
+
var t, a, u, i, l;
|
|
1092
1093
|
return {
|
|
1093
1094
|
status: e.status == 1,
|
|
1094
1095
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1095
1096
|
default: ((t = e.data) == null ? void 0 : t.default) ?? [],
|
|
1096
1097
|
online: ((a = e.data) == null ? void 0 : a.online) ?? [],
|
|
1097
1098
|
mycard: ((u = e.data) == null ? void 0 : u.mycard) ?? [],
|
|
1098
|
-
qrcode: ((
|
|
1099
|
-
personal: ((
|
|
1099
|
+
qrcode: ((i = e.data) == null ? void 0 : i.qrcode) ?? [],
|
|
1100
|
+
personal: ((l = e.data) == null ? void 0 : l.personal) ?? []
|
|
1100
1101
|
};
|
|
1101
|
-
},
|
|
1102
|
+
}, K = (e) => ({
|
|
1102
1103
|
validated: e.withdrawValidate === 1 || e.depositValidate === 1 || e.TransferCreditValidate === 1,
|
|
1103
|
-
forms:
|
|
1104
|
-
}),
|
|
1104
|
+
forms: Rt(e)
|
|
1105
|
+
}), Rt = (e) => e.subDepositForms && e.subDepositForms.length > 0 ? e.subDepositForms.map((t) => ({
|
|
1105
1106
|
id: t.id,
|
|
1106
1107
|
fieldName: t.fieldname,
|
|
1107
1108
|
regex: t.regex,
|
|
@@ -1119,54 +1120,54 @@ const we = (e) => {
|
|
|
1119
1120
|
regex: t.regex,
|
|
1120
1121
|
showName: t.showname,
|
|
1121
1122
|
inputHelper: t.inputHelper
|
|
1122
|
-
})) : [],
|
|
1123
|
+
})) : [], St = (e) => T(e), kt = (e) => e, Pt = (e) => ({
|
|
1123
1124
|
status: e.status == 1,
|
|
1124
1125
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
|
|
1125
|
-
}),
|
|
1126
|
+
}), Ot = (e) => T(e), Mt = (e) => ({
|
|
1126
1127
|
status: e.status == 1,
|
|
1127
1128
|
message: e.message,
|
|
1128
1129
|
user: e.user ?? ""
|
|
1129
|
-
}),
|
|
1130
|
+
}), jt = (e) => ({
|
|
1130
1131
|
status: e.status == 1,
|
|
1131
1132
|
message: e.msg ?? "",
|
|
1132
1133
|
amount: e.amount ?? ""
|
|
1133
|
-
}),
|
|
1134
|
+
}), xt = (e) => T(e), Dt = (e) => {
|
|
1134
1135
|
var t;
|
|
1135
1136
|
return {
|
|
1136
1137
|
status: e.status == 1,
|
|
1137
1138
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1138
1139
|
dayStreak: ((t = e.data) == null ? void 0 : t.continuousDay) ?? 0
|
|
1139
1140
|
};
|
|
1140
|
-
},
|
|
1141
|
+
}, Ct = (e) => {
|
|
1141
1142
|
var t;
|
|
1142
1143
|
return {
|
|
1143
1144
|
status: e.status == 1,
|
|
1144
1145
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1145
1146
|
countryList: ((t = e.data) == null ? void 0 : t.map((a) => {
|
|
1146
|
-
var u,
|
|
1147
|
+
var u, i;
|
|
1147
1148
|
return {
|
|
1148
1149
|
countryIndex: a.countryindex,
|
|
1149
1150
|
currencyName: a.currency_name ?? "",
|
|
1150
1151
|
label: a.label,
|
|
1151
1152
|
currencyRate: {
|
|
1152
1153
|
depositCurrencyRate: ((u = a.currency_rate) == null ? void 0 : u.currency_rate_deposit) ?? "",
|
|
1153
|
-
withdrawCurrencyRate: ((
|
|
1154
|
+
withdrawCurrencyRate: ((i = a.currency_rate) == null ? void 0 : i.currency_rate_withdraw) ?? ""
|
|
1154
1155
|
}
|
|
1155
1156
|
};
|
|
1156
1157
|
})) ?? []
|
|
1157
1158
|
};
|
|
1158
|
-
},
|
|
1159
|
+
}, It = (e) => ({
|
|
1159
1160
|
status: e.status == 1,
|
|
1160
1161
|
message: e.msg ?? ""
|
|
1161
|
-
}),
|
|
1162
|
+
}), Ft = (e) => ({
|
|
1162
1163
|
status: e.status == 1,
|
|
1163
1164
|
message: e.msg ?? "",
|
|
1164
1165
|
form: e.form ?? "",
|
|
1165
1166
|
gameUrl: e.data ?? ""
|
|
1166
|
-
}),
|
|
1167
|
+
}), Lt = (e) => T(e), Gt = (e) => T(e), Q = (e) => ({
|
|
1167
1168
|
status: e.status == 1,
|
|
1168
1169
|
message: e.errormessage ?? ""
|
|
1169
|
-
}),
|
|
1170
|
+
}), wt = (e) => T(e), zt = (e) => e, Nt = (e) => T(e), Ut = (e) => {
|
|
1170
1171
|
var t;
|
|
1171
1172
|
return {
|
|
1172
1173
|
platformProduct: ((t = e.mdPlatformProduct) == null ? void 0 : t.map((a) => ({
|
|
@@ -1175,48 +1176,48 @@ const we = (e) => {
|
|
|
1175
1176
|
com: a.com
|
|
1176
1177
|
}))) ?? []
|
|
1177
1178
|
};
|
|
1178
|
-
},
|
|
1179
|
+
}, Bt = (e) => {
|
|
1179
1180
|
var t;
|
|
1180
1181
|
return ((t = e.mdProductMaster) == null ? void 0 : t.map((a) => {
|
|
1181
1182
|
var u;
|
|
1182
1183
|
return {
|
|
1183
1184
|
id: a.id,
|
|
1184
1185
|
name: a.name,
|
|
1185
|
-
product: ((u = a.platformproduct) == null ? void 0 : u.map((
|
|
1186
|
-
id:
|
|
1187
|
-
name:
|
|
1188
|
-
platformId:
|
|
1189
|
-
com:
|
|
1186
|
+
product: ((u = a.platformproduct) == null ? void 0 : u.map((i) => ({
|
|
1187
|
+
id: i.id,
|
|
1188
|
+
name: i.name,
|
|
1189
|
+
platformId: i.id_PlatformMaster,
|
|
1190
|
+
com: i.com
|
|
1190
1191
|
}))) ?? []
|
|
1191
1192
|
};
|
|
1192
1193
|
})) ?? [];
|
|
1193
|
-
},
|
|
1194
|
+
}, qt = (e) => T(e), Wt = (e) => T(e), Vt = (e) => T(e), $t = (e) => T(e), Et = (e) => T(e), Ht = (e) => T(e), Jt = (e) => T(e), At = (e) => ({
|
|
1194
1195
|
status: e.status == 1,
|
|
1195
1196
|
message: e.msg ?? "",
|
|
1196
1197
|
data: e.data
|
|
1197
|
-
}),
|
|
1198
|
+
}), Yt = (e) => ({
|
|
1198
1199
|
status: e.status == 1,
|
|
1199
1200
|
message: e.msg ?? ""
|
|
1200
|
-
}),
|
|
1201
|
+
}), Kt = (e) => {
|
|
1201
1202
|
let t = "";
|
|
1202
1203
|
return e.data && (t = e.data.max_promo_amt), {
|
|
1203
1204
|
status: e.status == 1,
|
|
1204
1205
|
amount: t
|
|
1205
1206
|
};
|
|
1206
|
-
},
|
|
1207
|
+
}, Qt = (e) => ({
|
|
1207
1208
|
eventDescription: {
|
|
1208
1209
|
condition: e.bottomDescription.signinCondition,
|
|
1209
1210
|
prize: e.bottomDescription.signinPrize,
|
|
1210
1211
|
others: e.bottomDescription.otherDescription
|
|
1211
1212
|
},
|
|
1212
1213
|
firstDayOfMonth: e.firstDayOfMonth
|
|
1213
|
-
}),
|
|
1214
|
+
}), Xt = (e) => ({
|
|
1214
1215
|
status: e.status == 1,
|
|
1215
1216
|
signedDays: e.days,
|
|
1216
1217
|
signedToday: e.todayIsSign === 1,
|
|
1217
1218
|
dayStreak: e.continuousDay,
|
|
1218
1219
|
canSignToday: e.canSign === 1
|
|
1219
|
-
}),
|
|
1220
|
+
}), Zt = (e) => ({
|
|
1220
1221
|
status: e.status == 1,
|
|
1221
1222
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1222
1223
|
fullName: e.fullname,
|
|
@@ -1252,7 +1253,7 @@ const we = (e) => {
|
|
|
1252
1253
|
commission: a.commission
|
|
1253
1254
|
}))
|
|
1254
1255
|
}))
|
|
1255
|
-
}),
|
|
1256
|
+
}), ea = (e) => ({
|
|
1256
1257
|
status: e.status == 1,
|
|
1257
1258
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1258
1259
|
id: e.id ?? 0,
|
|
@@ -1264,12 +1265,12 @@ const we = (e) => {
|
|
|
1264
1265
|
})),
|
|
1265
1266
|
currentPage: e.page,
|
|
1266
1267
|
lastPage: e.lastpage
|
|
1267
|
-
}),
|
|
1268
|
+
}), ta = (e) => ({
|
|
1268
1269
|
status: e.status == "1",
|
|
1269
1270
|
message: e.msg ?? "",
|
|
1270
1271
|
username: e.accountcode,
|
|
1271
1272
|
password: e.password
|
|
1272
|
-
}),
|
|
1273
|
+
}), aa = (e) => {
|
|
1273
1274
|
var t;
|
|
1274
1275
|
return {
|
|
1275
1276
|
currentPage: e.mdGameCreditLimitTransfers.current_page,
|
|
@@ -1282,7 +1283,7 @@ const we = (e) => {
|
|
|
1282
1283
|
dateTime: a.transferdatetime
|
|
1283
1284
|
}))) ?? []
|
|
1284
1285
|
};
|
|
1285
|
-
},
|
|
1286
|
+
}, na = (e) => {
|
|
1286
1287
|
var t;
|
|
1287
1288
|
return {
|
|
1288
1289
|
currentPage: e.mdAgTransfeReport.current_page,
|
|
@@ -1295,8 +1296,8 @@ const we = (e) => {
|
|
|
1295
1296
|
dateTime: a.transferdatetime
|
|
1296
1297
|
}))) ?? []
|
|
1297
1298
|
};
|
|
1298
|
-
},
|
|
1299
|
-
var t, a, u,
|
|
1299
|
+
}, oa = (e) => {
|
|
1300
|
+
var t, a, u, i, l, d, m, b, p, _, O;
|
|
1300
1301
|
return {
|
|
1301
1302
|
status: e.status == 1,
|
|
1302
1303
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
@@ -1304,8 +1305,8 @@ const we = (e) => {
|
|
|
1304
1305
|
total: (t = e.data) != null && t.total ? {
|
|
1305
1306
|
bet: (((a = e.data) == null ? void 0 : a.total.bet) ?? 0).toFixed(2),
|
|
1306
1307
|
activeBet: (((u = e.data) == null ? void 0 : u.total.activebet) ?? 0).toFixed(2),
|
|
1307
|
-
validBet: (((
|
|
1308
|
-
payout: (((
|
|
1308
|
+
validBet: (((i = e.data) == null ? void 0 : i.total.validbet) ?? 0).toFixed(2),
|
|
1309
|
+
payout: (((l = e.data) == null ? void 0 : l.total.payout) ?? 0).toFixed(2)
|
|
1309
1310
|
} : {
|
|
1310
1311
|
bet: "0.00",
|
|
1311
1312
|
activeBet: "0.00",
|
|
@@ -1333,7 +1334,7 @@ const we = (e) => {
|
|
|
1333
1334
|
totalPage: ((O = e.data) == null ? void 0 : O.page.last_page) ?? 1
|
|
1334
1335
|
}
|
|
1335
1336
|
};
|
|
1336
|
-
},
|
|
1337
|
+
}, ra = (e) => {
|
|
1337
1338
|
var t, a, u;
|
|
1338
1339
|
return {
|
|
1339
1340
|
status: e.status == 1,
|
|
@@ -1344,7 +1345,7 @@ const we = (e) => {
|
|
|
1344
1345
|
binded: ((u = e.data) == null ? void 0 : u.binded) ?? !1
|
|
1345
1346
|
}
|
|
1346
1347
|
};
|
|
1347
|
-
},
|
|
1348
|
+
}, sa = (e) => T(e), ia = (e) => {
|
|
1348
1349
|
var t;
|
|
1349
1350
|
return {
|
|
1350
1351
|
status: e.status == 1,
|
|
@@ -1354,48 +1355,48 @@ const we = (e) => {
|
|
|
1354
1355
|
createdAt: a.created_at
|
|
1355
1356
|
}))) ?? []
|
|
1356
1357
|
};
|
|
1357
|
-
},
|
|
1358
|
+
}, la = (e) => T(e), ua = (e) => {
|
|
1358
1359
|
var t, a, u;
|
|
1359
1360
|
return {
|
|
1360
1361
|
status: e.status == 1,
|
|
1361
1362
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1362
1363
|
data: {
|
|
1363
|
-
companyCount: ((t = e.data.companyRCount) == null ? void 0 : t.map((
|
|
1364
|
-
key:
|
|
1365
|
-
count:
|
|
1364
|
+
companyCount: ((t = e.data.companyRCount) == null ? void 0 : t.map((i) => ({
|
|
1365
|
+
key: i.key,
|
|
1366
|
+
count: i.count
|
|
1366
1367
|
}))) ?? [],
|
|
1367
|
-
prizeCount: ((a = e.data.prizeRCount) == null ? void 0 : a.map((
|
|
1368
|
-
key:
|
|
1369
|
-
count:
|
|
1368
|
+
prizeCount: ((a = e.data.prizeRCount) == null ? void 0 : a.map((i) => ({
|
|
1369
|
+
key: i.key,
|
|
1370
|
+
count: i.count
|
|
1370
1371
|
}))) ?? [],
|
|
1371
|
-
list: ((u = e.data.list) == null ? void 0 : u.map((
|
|
1372
|
-
dimension:
|
|
1373
|
-
combination:
|
|
1374
|
-
prizePosition:
|
|
1375
|
-
drawIdentifier:
|
|
1376
|
-
drawTimestamp:
|
|
1377
|
-
companyId:
|
|
1378
|
-
companyName:
|
|
1372
|
+
list: ((u = e.data.list) == null ? void 0 : u.map((i) => ({
|
|
1373
|
+
dimension: i.combination_dimension,
|
|
1374
|
+
combination: i.combination_combination,
|
|
1375
|
+
prizePosition: i.combination_position,
|
|
1376
|
+
drawIdentifier: i.draw.draw_identifier,
|
|
1377
|
+
drawTimestamp: i.draw.draw_tmactive,
|
|
1378
|
+
companyId: i.company.company_id,
|
|
1379
|
+
companyName: i.company.company_name
|
|
1379
1380
|
}))) ?? []
|
|
1380
1381
|
}
|
|
1381
1382
|
};
|
|
1382
|
-
},
|
|
1383
|
+
}, da = (e) => T(e), ca = (e) => ({
|
|
1383
1384
|
status: e.status == 1,
|
|
1384
1385
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
1385
1386
|
tokenAmount: e.token_amount
|
|
1386
|
-
}),
|
|
1387
|
-
var
|
|
1388
|
-
const
|
|
1387
|
+
}), ma = (e) => T(e);
|
|
1388
|
+
var Z = /* @__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))(Z || {});
|
|
1389
|
+
const pa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1389
1390
|
__proto__: null,
|
|
1390
|
-
SettingType:
|
|
1391
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1391
|
+
SettingType: Z
|
|
1392
|
+
}, Symbol.toStringTag, { value: "Module" })), ga = (e) => {
|
|
1392
1393
|
let t = 0;
|
|
1393
1394
|
return e.data != null && typeof e.data == "object" && (t = e.data.amount), {
|
|
1394
1395
|
status: e.status,
|
|
1395
1396
|
message: e.msg ?? "",
|
|
1396
1397
|
amount: t
|
|
1397
1398
|
};
|
|
1398
|
-
},
|
|
1399
|
+
}, ba = (e) => e.status == 0 ? {
|
|
1399
1400
|
record: {
|
|
1400
1401
|
today: {
|
|
1401
1402
|
deposit: "0",
|
|
@@ -1425,15 +1426,15 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1425
1426
|
loseLimit: t.loselimit,
|
|
1426
1427
|
maxReward: t.max_reward
|
|
1427
1428
|
}))
|
|
1428
|
-
},
|
|
1429
|
+
}, fa = (e) => e.status == 0 ? [] : e.data.map((t) => ({
|
|
1429
1430
|
amount: t.amount,
|
|
1430
1431
|
date: t.date,
|
|
1431
1432
|
deposit: t.deposit,
|
|
1432
1433
|
payout: t.payout
|
|
1433
|
-
})),
|
|
1434
|
+
})), ya = (e) => ({
|
|
1434
1435
|
status: e.status,
|
|
1435
1436
|
message: e.msg ?? ""
|
|
1436
|
-
}),
|
|
1437
|
+
}), _a = (e) => e.status == 0 ? {
|
|
1437
1438
|
status: e.status,
|
|
1438
1439
|
message: e.msg ?? "",
|
|
1439
1440
|
data: null
|
|
@@ -1455,35 +1456,96 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1455
1456
|
collectable: e.data.collectable,
|
|
1456
1457
|
remainingDay: e.data.remaining
|
|
1457
1458
|
}
|
|
1458
|
-
},
|
|
1459
|
+
}, va = (e) => ({
|
|
1459
1460
|
status: e.status,
|
|
1460
1461
|
message: e.msg ?? ""
|
|
1461
|
-
}),
|
|
1462
|
+
}), ha = (e) => ({
|
|
1462
1463
|
status: e.status == 1,
|
|
1463
1464
|
errorMessage: e.errormessage ?? "",
|
|
1464
1465
|
isAutoTransfer: e.optionkey == "auto"
|
|
1465
|
-
}),
|
|
1466
|
+
}), Ta = (e) => T(e), Ra = (e) => ({
|
|
1466
1467
|
status: e.status,
|
|
1467
1468
|
message: e.msg ?? "",
|
|
1468
1469
|
turnover: e.data ? e.data.turnover : 0,
|
|
1469
1470
|
percentage: e.data ? e.data.percentage ?? 0 : 0,
|
|
1470
1471
|
incentive: e.data ? e.data.incentive : 0,
|
|
1471
1472
|
claimable: 0
|
|
1472
|
-
}),
|
|
1473
|
+
}), Sa = (e) => {
|
|
1473
1474
|
let t = "0";
|
|
1474
1475
|
return e.data && (t = e.data.incentive), {
|
|
1475
1476
|
status: e.status,
|
|
1476
1477
|
message: e.msg ?? "",
|
|
1477
1478
|
amount: t
|
|
1478
1479
|
};
|
|
1479
|
-
},
|
|
1480
|
+
}, ka = (e) => {
|
|
1480
1481
|
let t = "0";
|
|
1481
1482
|
return e.data && (t = e.data.incentive), {
|
|
1482
1483
|
status: e.status,
|
|
1483
1484
|
message: e.msg ?? "",
|
|
1484
1485
|
amount: t
|
|
1485
1486
|
};
|
|
1486
|
-
}
|
|
1487
|
+
};
|
|
1488
|
+
var D = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(D || {});
|
|
1489
|
+
const Pa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1490
|
+
__proto__: null,
|
|
1491
|
+
MissionStatus: D
|
|
1492
|
+
}, Symbol.toStringTag, { value: "Module" })), Oa = (e) => {
|
|
1493
|
+
if (e.status === 0)
|
|
1494
|
+
return {
|
|
1495
|
+
status: e.status,
|
|
1496
|
+
data: null
|
|
1497
|
+
};
|
|
1498
|
+
const t = te(e, 0), a = te(e, 1);
|
|
1499
|
+
return {
|
|
1500
|
+
status: e.status,
|
|
1501
|
+
data: {
|
|
1502
|
+
period: `${ae(e.data.datefrom)} ~ ${ae(e.data.dateto)}`,
|
|
1503
|
+
gift: {
|
|
1504
|
+
deposit: {
|
|
1505
|
+
current: t.filter((u) => u.status == D.collected).length,
|
|
1506
|
+
total: t.length,
|
|
1507
|
+
percentage: ne(t)
|
|
1508
|
+
},
|
|
1509
|
+
activeBet: {
|
|
1510
|
+
current: a.filter((u) => u.status == D.collected).length,
|
|
1511
|
+
total: a.length,
|
|
1512
|
+
percentage: ne(a)
|
|
1513
|
+
},
|
|
1514
|
+
grandPrize: {
|
|
1515
|
+
countDownTimestamp: Ma(e.data.dateto),
|
|
1516
|
+
status: e.data.final_claimable ? e.data.final_collected === "1" ? D.collected : D.collectable : D.inProgress,
|
|
1517
|
+
prize: e.data.reward
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
deposit: t,
|
|
1521
|
+
activeBet: a
|
|
1522
|
+
}
|
|
1523
|
+
};
|
|
1524
|
+
}, te = (e, t) => e.data.tier.filter((a) => a.type == t).map((a) => {
|
|
1525
|
+
const u = Math.min(a.achieve ?? 0, a.requirement);
|
|
1526
|
+
return {
|
|
1527
|
+
id: a.transid,
|
|
1528
|
+
reward: a.reward,
|
|
1529
|
+
status: a.claimable !== "1" ? D.inProgress : a.collected === "1" ? D.collected : D.collectable,
|
|
1530
|
+
progress: {
|
|
1531
|
+
current: u,
|
|
1532
|
+
total: a.requirement,
|
|
1533
|
+
currentPercentage: (u / a.requirement * 100).toFixed(0)
|
|
1534
|
+
}
|
|
1535
|
+
};
|
|
1536
|
+
}), ae = (e) => {
|
|
1537
|
+
const t = new Date(e), a = t.getDate().toString().padStart(2, "0"), u = (t.getMonth() + 1).toString().padStart(2, "0"), i = t.getHours().toString().padStart(2, "0"), l = t.getMinutes().toString().padStart(2, "0");
|
|
1538
|
+
return `${a}/${u} ${i}:${l}`;
|
|
1539
|
+
}, ne = (e) => {
|
|
1540
|
+
const t = e.reduce((u, i) => u + parseFloat(i.reward), 0), a = e.reduce((u, i) => u + i.progress.total, 0);
|
|
1541
|
+
return a > 0 ? (t / a * 100).toFixed(2) : "0";
|
|
1542
|
+
}, Ma = (e) => {
|
|
1543
|
+
const t = (/* @__PURE__ */ new Date()).getTime(), a = new Date(e).getTime();
|
|
1544
|
+
return Math.max(0, a - t);
|
|
1545
|
+
}, ja = (e) => ({
|
|
1546
|
+
status: e.status,
|
|
1547
|
+
message: e.msg ?? ""
|
|
1548
|
+
}), xa = (e) => ({
|
|
1487
1549
|
status: e.status == 1,
|
|
1488
1550
|
socialLogin: e.social_login == 1,
|
|
1489
1551
|
errorMessage: e.erorrmessage ?? "",
|
|
@@ -1495,7 +1557,7 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1495
1557
|
maxLength: t.maxlen ?? "0",
|
|
1496
1558
|
inputHelper: t.inputHelper ?? ""
|
|
1497
1559
|
}))
|
|
1498
|
-
}),
|
|
1560
|
+
}), Da = (e) => e.mdGameLists.data.map((t) => ({
|
|
1499
1561
|
gameId: t.id,
|
|
1500
1562
|
platformId: t.id_PlatformProduct,
|
|
1501
1563
|
name: t.name,
|
|
@@ -1509,8 +1571,8 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1509
1571
|
logoUrl: `/image/platform_logo/${t.img.split("/").pop()}?v=1`,
|
|
1510
1572
|
rate: "0.00",
|
|
1511
1573
|
favourite: !0
|
|
1512
|
-
})),
|
|
1513
|
-
var t, a, u,
|
|
1574
|
+
})), Ca = (e) => T(e), Ia = (e) => T(e), Fa = (e) => T(e), La = async (e) => {
|
|
1575
|
+
var t, a, u, i, l, d, m, b, p, _, O, h, g, S, M, F;
|
|
1514
1576
|
try {
|
|
1515
1577
|
e.findIndex((c) => c.name === s.vipList) !== -1 && e.push(
|
|
1516
1578
|
{
|
|
@@ -1521,7 +1583,7 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1521
1583
|
{ name: s.vipStatus, query: "" },
|
|
1522
1584
|
{
|
|
1523
1585
|
name: s.getSetting,
|
|
1524
|
-
query: JSON.stringify({ name: [
|
|
1586
|
+
query: JSON.stringify({ name: [Z.vipcalculation] })
|
|
1525
1587
|
}
|
|
1526
1588
|
);
|
|
1527
1589
|
const R = e.findIndex(
|
|
@@ -1543,22 +1605,22 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1543
1605
|
name: s.getPlatformTurnoverRate,
|
|
1544
1606
|
query: ""
|
|
1545
1607
|
}));
|
|
1546
|
-
const
|
|
1547
|
-
if (
|
|
1608
|
+
const U = e.findIndex((c) => c.name === s.searchHot);
|
|
1609
|
+
if (U !== -1) {
|
|
1548
1610
|
let c = {};
|
|
1549
1611
|
e.forEach((y) => {
|
|
1550
1612
|
c = y.query;
|
|
1551
|
-
}), e.splice(
|
|
1613
|
+
}), e.splice(U), e.push({
|
|
1552
1614
|
name: s.getFourDimensionData,
|
|
1553
1615
|
query: String(c)
|
|
1554
1616
|
});
|
|
1555
1617
|
}
|
|
1556
|
-
const
|
|
1557
|
-
if (
|
|
1618
|
+
const B = e.findIndex((c) => c.name === s.searchNumberHistory);
|
|
1619
|
+
if (B !== -1) {
|
|
1558
1620
|
let c = {};
|
|
1559
1621
|
e.forEach((y) => {
|
|
1560
1622
|
c = y.query;
|
|
1561
|
-
}), e.splice(
|
|
1623
|
+
}), e.splice(B), e.push({
|
|
1562
1624
|
name: s.getFourDimensionData,
|
|
1563
1625
|
query: String(c)
|
|
1564
1626
|
});
|
|
@@ -1567,15 +1629,15 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1567
1629
|
let c = {};
|
|
1568
1630
|
e.forEach((y) => {
|
|
1569
1631
|
c = y.query;
|
|
1570
|
-
}), e.splice(
|
|
1632
|
+
}), e.splice(B), e.push({
|
|
1571
1633
|
name: s.getFourDimensionData,
|
|
1572
1634
|
query: String(c)
|
|
1573
1635
|
});
|
|
1574
1636
|
}
|
|
1575
|
-
const
|
|
1637
|
+
const q = e.findIndex(
|
|
1576
1638
|
(c) => c.name === s.getFourDimensionData
|
|
1577
1639
|
);
|
|
1578
|
-
|
|
1640
|
+
q !== -1 && e[q].query == "" && (e.splice(q), e.push(
|
|
1579
1641
|
{
|
|
1580
1642
|
name: s.getFourDimensionData,
|
|
1581
1643
|
query: JSON.stringify({ action: s.getCompany, native: "1" })
|
|
@@ -1591,14 +1653,14 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1591
1653
|
})
|
|
1592
1654
|
}
|
|
1593
1655
|
));
|
|
1594
|
-
const
|
|
1656
|
+
const $ = {
|
|
1595
1657
|
requests: e.map((c) => ({
|
|
1596
1658
|
name: c.name,
|
|
1597
1659
|
query: btoa(c.query)
|
|
1598
1660
|
}))
|
|
1599
|
-
}, E = await
|
|
1661
|
+
}, E = await N.post(
|
|
1600
1662
|
"/jwt",
|
|
1601
|
-
|
|
1663
|
+
ce(JSON.stringify($))
|
|
1602
1664
|
), n = {
|
|
1603
1665
|
status: 200,
|
|
1604
1666
|
message: "",
|
|
@@ -1606,493 +1668,501 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1606
1668
|
};
|
|
1607
1669
|
for (const c of E.data.responses) {
|
|
1608
1670
|
c.error != null && c.error.code != 200 && (n.status = c.error.code, n.message = c.error.message);
|
|
1609
|
-
const y = c.attributes !== null && c.attributes !== void 0 ?
|
|
1671
|
+
const y = c.attributes !== null && c.attributes !== void 0 ? me(c.attributes) : null, r = c.name, o = y ? JSON.parse(y) : null;
|
|
1610
1672
|
if (!o)
|
|
1611
1673
|
console.log("Not data received"), n.result[r] = null;
|
|
1612
1674
|
else
|
|
1613
1675
|
switch (r) {
|
|
1614
1676
|
case s.announcement:
|
|
1615
|
-
n.result[r] =
|
|
1677
|
+
n.result[r] = Re(o);
|
|
1616
1678
|
break;
|
|
1617
1679
|
case s.gameList:
|
|
1618
|
-
n.result[r] =
|
|
1680
|
+
n.result[r] = ke(o);
|
|
1619
1681
|
break;
|
|
1620
1682
|
case s.cmsList:
|
|
1621
|
-
n.result[r] =
|
|
1683
|
+
n.result[r] = Ce(o);
|
|
1622
1684
|
break;
|
|
1623
1685
|
case s.paymentsProvider:
|
|
1624
|
-
n.result[r] =
|
|
1686
|
+
n.result[r] = _e(
|
|
1625
1687
|
o
|
|
1626
1688
|
);
|
|
1627
1689
|
break;
|
|
1628
1690
|
case s.getUserProfile:
|
|
1629
|
-
n.result[r] =
|
|
1691
|
+
n.result[r] = Se(o);
|
|
1630
1692
|
break;
|
|
1631
1693
|
case s.vipList:
|
|
1632
|
-
n.result[r] =
|
|
1694
|
+
n.result[r] = Pe(o);
|
|
1633
1695
|
break;
|
|
1634
1696
|
case s.vipBonus:
|
|
1635
|
-
n.result[r] =
|
|
1697
|
+
n.result[r] = Me(o);
|
|
1636
1698
|
break;
|
|
1637
1699
|
case s.vipFieldStatus:
|
|
1638
|
-
n.result[r] =
|
|
1700
|
+
n.result[r] = je(o);
|
|
1639
1701
|
break;
|
|
1640
1702
|
case s.vipStatus:
|
|
1641
|
-
n.result[r] =
|
|
1703
|
+
n.result[r] = xe(o);
|
|
1642
1704
|
break;
|
|
1643
1705
|
case s.promotion:
|
|
1644
|
-
n.result[r] =
|
|
1706
|
+
n.result[r] = Oe(o);
|
|
1645
1707
|
break;
|
|
1646
1708
|
case s.getSetting:
|
|
1647
|
-
n.result[r] =
|
|
1709
|
+
n.result[r] = De(o);
|
|
1648
1710
|
break;
|
|
1649
1711
|
case s.getCountryMobile:
|
|
1650
|
-
n.result[r] =
|
|
1712
|
+
n.result[r] = Ie(
|
|
1651
1713
|
o
|
|
1652
1714
|
);
|
|
1653
1715
|
break;
|
|
1654
1716
|
case s.getPlatformTurnoverRate:
|
|
1655
|
-
n.result[r] =
|
|
1717
|
+
n.result[r] = Fe(
|
|
1656
1718
|
o
|
|
1657
1719
|
);
|
|
1658
1720
|
break;
|
|
1659
1721
|
case s.mainWallet:
|
|
1660
|
-
n.result[r] =
|
|
1722
|
+
n.result[r] = Le(o);
|
|
1661
1723
|
break;
|
|
1662
1724
|
case s.getLanguageSetting:
|
|
1663
|
-
n.result[r] =
|
|
1725
|
+
n.result[r] = Ge(
|
|
1664
1726
|
o
|
|
1665
1727
|
);
|
|
1666
1728
|
break;
|
|
1667
1729
|
case s.getFourDimensionData:
|
|
1668
|
-
n.result[r] =
|
|
1730
|
+
n.result[r] = we(
|
|
1669
1731
|
o
|
|
1670
1732
|
);
|
|
1671
1733
|
break;
|
|
1672
1734
|
case s.getCompany:
|
|
1673
|
-
n.result[r] =
|
|
1735
|
+
n.result[r] = ze(o);
|
|
1674
1736
|
break;
|
|
1675
1737
|
case s.searchResultDate:
|
|
1676
|
-
n.result[r] =
|
|
1738
|
+
n.result[r] = Ne(
|
|
1677
1739
|
o
|
|
1678
1740
|
);
|
|
1679
1741
|
break;
|
|
1680
1742
|
case s.searchHot:
|
|
1681
|
-
n.result[r] =
|
|
1743
|
+
n.result[r] = Be(o);
|
|
1682
1744
|
break;
|
|
1683
1745
|
case s.searchByDate:
|
|
1684
|
-
n.result[r] =
|
|
1746
|
+
n.result[r] = qe(o);
|
|
1685
1747
|
break;
|
|
1686
1748
|
case s.upcomingMatches:
|
|
1687
|
-
n.result[r] =
|
|
1749
|
+
n.result[r] = We(
|
|
1688
1750
|
o
|
|
1689
1751
|
);
|
|
1690
1752
|
break;
|
|
1691
1753
|
case s.deposit:
|
|
1692
|
-
n.result[r] =
|
|
1754
|
+
n.result[r] = Ve(o);
|
|
1693
1755
|
break;
|
|
1694
1756
|
case s.applyVipBonus:
|
|
1695
|
-
n.result[r] =
|
|
1757
|
+
n.result[r] = $e(o);
|
|
1696
1758
|
break;
|
|
1697
1759
|
case s.withdraw:
|
|
1698
|
-
n.result[r] =
|
|
1760
|
+
n.result[r] = Ee(o);
|
|
1699
1761
|
break;
|
|
1700
1762
|
case s.getBankCardData:
|
|
1701
|
-
n.result[r] =
|
|
1763
|
+
n.result[r] = He(
|
|
1702
1764
|
o
|
|
1703
1765
|
);
|
|
1704
1766
|
break;
|
|
1705
1767
|
case s.withdrawalGet:
|
|
1706
|
-
n.result[r] =
|
|
1768
|
+
n.result[r] = Je(o);
|
|
1707
1769
|
break;
|
|
1708
1770
|
case s.addBankCard:
|
|
1709
|
-
n.result[r] =
|
|
1771
|
+
n.result[r] = Ae(o);
|
|
1710
1772
|
break;
|
|
1711
1773
|
case s.transactionReport:
|
|
1712
|
-
n.result[r] =
|
|
1774
|
+
n.result[r] = Ye(
|
|
1713
1775
|
o
|
|
1714
1776
|
);
|
|
1715
1777
|
break;
|
|
1716
1778
|
case s.changePassword:
|
|
1717
|
-
n.result[r] =
|
|
1779
|
+
n.result[r] = Qe(o);
|
|
1718
1780
|
break;
|
|
1719
1781
|
case s.wallet:
|
|
1720
|
-
n.result[r] =
|
|
1782
|
+
n.result[r] = Xe(o);
|
|
1721
1783
|
break;
|
|
1722
1784
|
case s.getEventList:
|
|
1723
|
-
n.result[r] =
|
|
1785
|
+
n.result[r] = Ze(o);
|
|
1724
1786
|
break;
|
|
1725
1787
|
case s.getEventToken:
|
|
1726
|
-
n.result[r] =
|
|
1788
|
+
n.result[r] = et(o);
|
|
1727
1789
|
break;
|
|
1728
1790
|
case s.getExtraGame:
|
|
1729
|
-
n.result[r] =
|
|
1791
|
+
n.result[r] = tt(o);
|
|
1730
1792
|
break;
|
|
1731
1793
|
case s.mailBox:
|
|
1732
|
-
n.result[r] =
|
|
1794
|
+
n.result[r] = at(o);
|
|
1733
1795
|
break;
|
|
1734
1796
|
case s.fishGameList:
|
|
1735
|
-
n.result[r] =
|
|
1797
|
+
n.result[r] = nt(o);
|
|
1736
1798
|
break;
|
|
1737
1799
|
case s.slotGameList:
|
|
1738
|
-
n.result[r] =
|
|
1800
|
+
n.result[r] = ot(o);
|
|
1739
1801
|
break;
|
|
1740
1802
|
case s.getTurnOverRewardData:
|
|
1741
|
-
n.result[r] =
|
|
1803
|
+
n.result[r] = rt(
|
|
1742
1804
|
o
|
|
1743
1805
|
);
|
|
1744
1806
|
break;
|
|
1745
1807
|
case s.getTurnOverRewardReport:
|
|
1746
|
-
n.result[r] =
|
|
1808
|
+
n.result[r] = st(
|
|
1747
1809
|
o
|
|
1748
1810
|
);
|
|
1749
1811
|
break;
|
|
1750
1812
|
case s.getInviteRewardData:
|
|
1751
|
-
n.result[r] =
|
|
1813
|
+
n.result[r] = it(
|
|
1752
1814
|
o
|
|
1753
1815
|
);
|
|
1754
1816
|
break;
|
|
1755
1817
|
case s.getInviteRewardReport:
|
|
1756
|
-
n.result[r] =
|
|
1818
|
+
n.result[r] = lt(
|
|
1757
1819
|
o
|
|
1758
1820
|
);
|
|
1759
1821
|
break;
|
|
1760
1822
|
case s.getTopupRewardData:
|
|
1761
|
-
n.result[r] =
|
|
1823
|
+
n.result[r] = ut(
|
|
1762
1824
|
o
|
|
1763
1825
|
);
|
|
1764
1826
|
break;
|
|
1765
1827
|
case s.getTopupRewardReport:
|
|
1766
|
-
n.result[r] =
|
|
1828
|
+
n.result[r] = dt(
|
|
1767
1829
|
o
|
|
1768
1830
|
);
|
|
1769
1831
|
break;
|
|
1770
1832
|
case s.getRewardReferral:
|
|
1771
|
-
n.result[r] =
|
|
1833
|
+
n.result[r] = ct(
|
|
1772
1834
|
o
|
|
1773
1835
|
);
|
|
1774
1836
|
break;
|
|
1775
1837
|
case s.submitWithdrawValidate:
|
|
1776
|
-
n.result[r] =
|
|
1838
|
+
n.result[r] = Q(o);
|
|
1777
1839
|
break;
|
|
1778
1840
|
case s.getDepositPromotion:
|
|
1779
|
-
n.result[r] =
|
|
1841
|
+
n.result[r] = mt(
|
|
1780
1842
|
o
|
|
1781
1843
|
);
|
|
1782
1844
|
break;
|
|
1783
1845
|
case s.getTopUpRewardClaim:
|
|
1784
|
-
n.result[r] =
|
|
1846
|
+
n.result[r] = pt(
|
|
1785
1847
|
o
|
|
1786
1848
|
);
|
|
1787
1849
|
break;
|
|
1788
1850
|
case s.getInviteRewardClaim:
|
|
1789
|
-
n.result[r] =
|
|
1851
|
+
n.result[r] = gt(
|
|
1790
1852
|
o
|
|
1791
1853
|
);
|
|
1792
1854
|
break;
|
|
1793
1855
|
case s.getTurnOverRewardClaim:
|
|
1794
|
-
n.result[r] =
|
|
1856
|
+
n.result[r] = bt(
|
|
1795
1857
|
o
|
|
1796
1858
|
);
|
|
1797
1859
|
break;
|
|
1798
1860
|
case s.getInviteRewardSetting:
|
|
1799
|
-
n.result[r] =
|
|
1861
|
+
n.result[r] = ft(
|
|
1800
1862
|
o
|
|
1801
1863
|
);
|
|
1802
1864
|
break;
|
|
1803
1865
|
case s.getTurnOverRewardSetting:
|
|
1804
|
-
n.result[r] =
|
|
1866
|
+
n.result[r] = yt(
|
|
1805
1867
|
o
|
|
1806
1868
|
);
|
|
1807
1869
|
break;
|
|
1808
1870
|
case s.getTopUpRewardSetting:
|
|
1809
|
-
n.result[r] =
|
|
1871
|
+
n.result[r] = _t(
|
|
1810
1872
|
o
|
|
1811
1873
|
);
|
|
1812
1874
|
break;
|
|
1813
1875
|
case s.requestForgetPassword:
|
|
1814
|
-
n.result[r] =
|
|
1876
|
+
n.result[r] = vt(
|
|
1815
1877
|
o
|
|
1816
1878
|
);
|
|
1817
1879
|
break;
|
|
1818
1880
|
case s.submitForgetPassword:
|
|
1819
|
-
n.result[r] =
|
|
1881
|
+
n.result[r] = ht(
|
|
1820
1882
|
o
|
|
1821
1883
|
);
|
|
1822
1884
|
break;
|
|
1823
1885
|
case s.getImage:
|
|
1824
|
-
n.result[r] =
|
|
1886
|
+
n.result[r] = Tt(o);
|
|
1825
1887
|
break;
|
|
1826
1888
|
case s.getDepositValidate:
|
|
1827
|
-
n.result[r] =
|
|
1889
|
+
n.result[r] = K(o);
|
|
1828
1890
|
break;
|
|
1829
1891
|
case s.getWithdrawValidate:
|
|
1830
|
-
n.result[r] =
|
|
1892
|
+
n.result[r] = K(o);
|
|
1831
1893
|
break;
|
|
1832
1894
|
case s.getTransferCreditValidate:
|
|
1833
|
-
n.result[r] =
|
|
1895
|
+
n.result[r] = K(o);
|
|
1834
1896
|
break;
|
|
1835
1897
|
case s.updateProfilePicture:
|
|
1836
|
-
n.result[r] =
|
|
1898
|
+
n.result[r] = St(
|
|
1837
1899
|
o
|
|
1838
1900
|
);
|
|
1839
1901
|
break;
|
|
1840
1902
|
case s.readMail:
|
|
1841
|
-
n.result[r] =
|
|
1903
|
+
n.result[r] = kt(o);
|
|
1842
1904
|
break;
|
|
1843
1905
|
case s.checkRedPacketValidate:
|
|
1844
|
-
n.result[r] =
|
|
1906
|
+
n.result[r] = Pt(
|
|
1845
1907
|
o
|
|
1846
1908
|
);
|
|
1847
1909
|
break;
|
|
1848
1910
|
case s.requestTacCode:
|
|
1849
|
-
n.result[r] =
|
|
1911
|
+
n.result[r] = Ot(o);
|
|
1850
1912
|
break;
|
|
1851
1913
|
case s.getUsernameByRefer:
|
|
1852
|
-
n.result[r] =
|
|
1914
|
+
n.result[r] = Mt(
|
|
1853
1915
|
o
|
|
1854
1916
|
);
|
|
1855
1917
|
break;
|
|
1856
1918
|
case s.applyPromo:
|
|
1857
|
-
n.result[r] =
|
|
1919
|
+
n.result[r] = jt(o);
|
|
1858
1920
|
break;
|
|
1859
1921
|
case s.applyRedPacket:
|
|
1860
|
-
n.result[r] =
|
|
1922
|
+
n.result[r] = xt(o);
|
|
1861
1923
|
break;
|
|
1862
1924
|
case s.applySignIn:
|
|
1863
|
-
n.result[r] =
|
|
1925
|
+
n.result[r] = Dt(o);
|
|
1864
1926
|
break;
|
|
1865
1927
|
case s.getCountry:
|
|
1866
|
-
n.result[r] =
|
|
1928
|
+
n.result[r] = Ct(o);
|
|
1867
1929
|
break;
|
|
1868
1930
|
case s.submitGiftCode:
|
|
1869
|
-
n.result[r] =
|
|
1931
|
+
n.result[r] = It(o);
|
|
1870
1932
|
break;
|
|
1871
1933
|
case s.playGame:
|
|
1872
|
-
n.result[r] =
|
|
1934
|
+
n.result[r] = Ft(o);
|
|
1873
1935
|
break;
|
|
1874
1936
|
case s.transferToMain:
|
|
1875
|
-
n.result[r] =
|
|
1937
|
+
n.result[r] = Lt(o);
|
|
1876
1938
|
break;
|
|
1877
1939
|
case s.transferProcess:
|
|
1878
|
-
n.result[r] =
|
|
1940
|
+
n.result[r] = Gt(
|
|
1879
1941
|
o
|
|
1880
1942
|
);
|
|
1881
1943
|
break;
|
|
1882
1944
|
case s.submitDepositValidate:
|
|
1883
|
-
n.result[r] =
|
|
1945
|
+
n.result[r] = Q(o);
|
|
1884
1946
|
break;
|
|
1885
1947
|
case s.submitTransferCreditValidate:
|
|
1886
|
-
n.result[r] =
|
|
1948
|
+
n.result[r] = Q(o);
|
|
1887
1949
|
break;
|
|
1888
1950
|
case s.checkTransferCredit:
|
|
1889
|
-
n.result[r] =
|
|
1951
|
+
n.result[r] = wt(
|
|
1890
1952
|
o
|
|
1891
1953
|
);
|
|
1892
1954
|
break;
|
|
1893
1955
|
case s.friendList:
|
|
1894
|
-
n.result[r] =
|
|
1956
|
+
n.result[r] = zt(o);
|
|
1895
1957
|
break;
|
|
1896
1958
|
case s.friendListEdit:
|
|
1897
|
-
n.result[r] =
|
|
1959
|
+
n.result[r] = Nt(o);
|
|
1898
1960
|
break;
|
|
1899
1961
|
case s.getActivePP:
|
|
1900
|
-
n.result[r] =
|
|
1962
|
+
n.result[r] = Ut(o);
|
|
1901
1963
|
break;
|
|
1902
1964
|
case s.getActiveProduct:
|
|
1903
|
-
n.result[r] =
|
|
1965
|
+
n.result[r] = Bt(
|
|
1904
1966
|
o
|
|
1905
1967
|
);
|
|
1906
1968
|
break;
|
|
1907
1969
|
case s.requestWithdrawTac:
|
|
1908
|
-
n.result[r] =
|
|
1970
|
+
n.result[r] = qt(
|
|
1909
1971
|
o
|
|
1910
1972
|
);
|
|
1911
1973
|
break;
|
|
1912
1974
|
case s.requestWithdrawalCode:
|
|
1913
|
-
n.result[r] =
|
|
1975
|
+
n.result[r] = Wt(
|
|
1914
1976
|
o
|
|
1915
1977
|
);
|
|
1916
1978
|
break;
|
|
1917
1979
|
case s.commissionWithdraw:
|
|
1918
|
-
n.result[r] =
|
|
1980
|
+
n.result[r] = Vt(
|
|
1919
1981
|
o
|
|
1920
1982
|
);
|
|
1921
1983
|
break;
|
|
1922
1984
|
case s.submitWithdrawalCode:
|
|
1923
|
-
n.result[r] =
|
|
1985
|
+
n.result[r] = $t(
|
|
1924
1986
|
o
|
|
1925
1987
|
);
|
|
1926
1988
|
break;
|
|
1927
1989
|
case s.submitCryptoAccount:
|
|
1928
|
-
n.result[r] =
|
|
1990
|
+
n.result[r] = Et(
|
|
1929
1991
|
o
|
|
1930
1992
|
);
|
|
1931
1993
|
break;
|
|
1932
1994
|
case s.requestTransferMoney:
|
|
1933
|
-
n.result[r] =
|
|
1995
|
+
n.result[r] = Ht(
|
|
1934
1996
|
o
|
|
1935
1997
|
);
|
|
1936
1998
|
break;
|
|
1937
1999
|
case s.submitTransferMoney:
|
|
1938
|
-
n.result[r] =
|
|
2000
|
+
n.result[r] = Jt(
|
|
1939
2001
|
o
|
|
1940
2002
|
);
|
|
1941
2003
|
break;
|
|
1942
2004
|
case s.requestUpdateMobileTacCode:
|
|
1943
|
-
n.result[r] =
|
|
2005
|
+
n.result[r] = At(
|
|
1944
2006
|
o
|
|
1945
2007
|
);
|
|
1946
2008
|
break;
|
|
1947
2009
|
case s.submitUpdateMobileTacCode:
|
|
1948
|
-
n.result[r] =
|
|
2010
|
+
n.result[r] = Yt(
|
|
1949
2011
|
o
|
|
1950
2012
|
);
|
|
1951
2013
|
break;
|
|
1952
2014
|
case s.getVerifyPromo:
|
|
1953
|
-
n.result[r] =
|
|
2015
|
+
n.result[r] = Kt(o);
|
|
1954
2016
|
break;
|
|
1955
2017
|
case s.signInViewInfo:
|
|
1956
|
-
n.result[r] =
|
|
2018
|
+
n.result[r] = Qt(o);
|
|
1957
2019
|
break;
|
|
1958
2020
|
case s.signInRecord:
|
|
1959
|
-
n.result[r] =
|
|
2021
|
+
n.result[r] = Xt(o);
|
|
1960
2022
|
break;
|
|
1961
2023
|
case s.referralProfile:
|
|
1962
|
-
n.result[r] =
|
|
2024
|
+
n.result[r] = Zt(
|
|
1963
2025
|
o
|
|
1964
2026
|
);
|
|
1965
2027
|
break;
|
|
1966
2028
|
case s.referralMemberProfile:
|
|
1967
|
-
n.result[r] =
|
|
2029
|
+
n.result[r] = ea(
|
|
1968
2030
|
o
|
|
1969
2031
|
);
|
|
1970
2032
|
break;
|
|
1971
2033
|
case s.registerAction:
|
|
1972
|
-
n.result[r] =
|
|
2034
|
+
n.result[r] = ta(o);
|
|
1973
2035
|
break;
|
|
1974
2036
|
case s.transferReport:
|
|
1975
|
-
n.result[r] =
|
|
2037
|
+
n.result[r] = aa(o);
|
|
1976
2038
|
break;
|
|
1977
2039
|
case s.agTransferCreditReport:
|
|
1978
|
-
n.result[r] =
|
|
2040
|
+
n.result[r] = na(
|
|
1979
2041
|
o
|
|
1980
2042
|
);
|
|
1981
2043
|
break;
|
|
1982
2044
|
case s.betReport:
|
|
1983
|
-
n.result[r] =
|
|
2045
|
+
n.result[r] = oa(o);
|
|
1984
2046
|
break;
|
|
1985
2047
|
case s.getTwoFactorAuthenticate:
|
|
1986
|
-
n.result[r] =
|
|
2048
|
+
n.result[r] = ra(
|
|
1987
2049
|
o
|
|
1988
2050
|
);
|
|
1989
2051
|
break;
|
|
1990
2052
|
case s.submitTwoFactorAuthenticate:
|
|
1991
|
-
n.result[r] =
|
|
2053
|
+
n.result[r] = sa(
|
|
1992
2054
|
o
|
|
1993
2055
|
);
|
|
1994
2056
|
break;
|
|
1995
2057
|
case s.getUserDeviceList:
|
|
1996
|
-
n.result[r] =
|
|
2058
|
+
n.result[r] = ia(
|
|
1997
2059
|
o
|
|
1998
2060
|
);
|
|
1999
2061
|
break;
|
|
2000
2062
|
case s.unbindUserDevice:
|
|
2001
|
-
n.result[r] =
|
|
2063
|
+
n.result[r] = la(
|
|
2002
2064
|
o
|
|
2003
2065
|
);
|
|
2004
2066
|
break;
|
|
2005
2067
|
case s.searchNumberHistory:
|
|
2006
|
-
n.result[r] =
|
|
2068
|
+
n.result[r] = ua(
|
|
2007
2069
|
o
|
|
2008
2070
|
);
|
|
2009
2071
|
break;
|
|
2010
2072
|
case s.changeWithdrawalCode:
|
|
2011
|
-
n.result[r] =
|
|
2073
|
+
n.result[r] = da(
|
|
2012
2074
|
o
|
|
2013
2075
|
);
|
|
2014
2076
|
break;
|
|
2015
2077
|
case s.checkRedPacketToken:
|
|
2016
|
-
n.result[r] =
|
|
2078
|
+
n.result[r] = ca(
|
|
2017
2079
|
o
|
|
2018
2080
|
);
|
|
2019
2081
|
break;
|
|
2020
2082
|
case s.submitWithdrawalAlipay:
|
|
2021
|
-
n.result[r] =
|
|
2083
|
+
n.result[r] = ma(
|
|
2022
2084
|
o
|
|
2023
2085
|
);
|
|
2024
2086
|
break;
|
|
2025
2087
|
case s.applyReliefFund:
|
|
2026
|
-
n.result[r] =
|
|
2088
|
+
n.result[r] = ga(
|
|
2027
2089
|
o
|
|
2028
2090
|
);
|
|
2029
2091
|
break;
|
|
2030
2092
|
case s.getReliefFundData:
|
|
2031
|
-
n.result[r] =
|
|
2093
|
+
n.result[r] = ba(
|
|
2032
2094
|
o
|
|
2033
2095
|
);
|
|
2034
2096
|
break;
|
|
2035
2097
|
case s.getReliefFundReport:
|
|
2036
|
-
n.result[r] =
|
|
2098
|
+
n.result[r] = fa(
|
|
2037
2099
|
o
|
|
2038
2100
|
);
|
|
2039
2101
|
break;
|
|
2040
2102
|
case s.getWeekCardClaim:
|
|
2041
|
-
n.result[r] =
|
|
2103
|
+
n.result[r] = ya(
|
|
2042
2104
|
o
|
|
2043
2105
|
);
|
|
2044
2106
|
break;
|
|
2045
2107
|
case s.getWeekCardData:
|
|
2046
|
-
n.result[r] =
|
|
2108
|
+
n.result[r] = _a(
|
|
2047
2109
|
o
|
|
2048
2110
|
);
|
|
2049
2111
|
break;
|
|
2050
2112
|
case s.applyWeekCard:
|
|
2051
|
-
n.result[r] =
|
|
2113
|
+
n.result[r] = va(o);
|
|
2052
2114
|
break;
|
|
2053
2115
|
case s.transferSetting:
|
|
2054
|
-
n.result[r] =
|
|
2116
|
+
n.result[r] = ha(
|
|
2055
2117
|
o
|
|
2056
2118
|
);
|
|
2057
2119
|
break;
|
|
2058
2120
|
case s.transfer:
|
|
2059
|
-
n.result[r] =
|
|
2121
|
+
n.result[r] = Ta(o);
|
|
2060
2122
|
break;
|
|
2061
2123
|
case s.getIncentiveData:
|
|
2062
|
-
n.result[r] =
|
|
2124
|
+
n.result[r] = Ra(
|
|
2063
2125
|
o
|
|
2064
2126
|
);
|
|
2065
2127
|
break;
|
|
2066
2128
|
case s.getIncentiveRebate:
|
|
2067
|
-
n.result[r] =
|
|
2129
|
+
n.result[r] = Sa(
|
|
2068
2130
|
o
|
|
2069
2131
|
);
|
|
2070
2132
|
break;
|
|
2071
2133
|
case s.claimIncentiveRebate:
|
|
2072
|
-
n.result[r] =
|
|
2134
|
+
n.result[r] = ka(
|
|
2135
|
+
o
|
|
2136
|
+
);
|
|
2137
|
+
break;
|
|
2138
|
+
case s.getMissionData:
|
|
2139
|
+
n.result[r] = Oa(o);
|
|
2140
|
+
break;
|
|
2141
|
+
case s.getMissionClaim:
|
|
2142
|
+
n.result[r] = ja(
|
|
2073
2143
|
o
|
|
2074
2144
|
);
|
|
2075
2145
|
break;
|
|
2076
2146
|
case s.registerForm:
|
|
2077
|
-
n.result[r] =
|
|
2147
|
+
n.result[r] = xa(o);
|
|
2078
2148
|
break;
|
|
2079
2149
|
case s.getFavouriteGame:
|
|
2080
|
-
n.result[r] =
|
|
2150
|
+
n.result[r] = Da(
|
|
2081
2151
|
o
|
|
2082
2152
|
);
|
|
2083
2153
|
break;
|
|
2084
2154
|
case s.updateFavouriteGame:
|
|
2085
|
-
n.result[r] =
|
|
2155
|
+
n.result[r] = Ca(
|
|
2086
2156
|
o
|
|
2087
2157
|
);
|
|
2088
2158
|
break;
|
|
2089
2159
|
case s.requestForgetUsername:
|
|
2090
|
-
n.result[r] =
|
|
2160
|
+
n.result[r] = Ia(
|
|
2091
2161
|
o
|
|
2092
2162
|
);
|
|
2093
2163
|
break;
|
|
2094
2164
|
case s.submitForgetUsername:
|
|
2095
|
-
n.result[r] =
|
|
2165
|
+
n.result[r] = Fa(
|
|
2096
2166
|
o
|
|
2097
2167
|
);
|
|
2098
2168
|
break;
|
|
@@ -2112,31 +2182,31 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2112
2182
|
if (s.vipList in n.result && ((u = n.result) != null && u.vipList)) {
|
|
2113
2183
|
const c = n.result.vipList;
|
|
2114
2184
|
let y = 4;
|
|
2115
|
-
if (s.getSetting in n.result && ((
|
|
2116
|
-
if ((
|
|
2185
|
+
if (s.getSetting in n.result && ((i = n.result) != null && i.getSetting && (y = n.result.getSetting.vipCalculation), delete n.result.getSetting), s.vipStatus in n.result) {
|
|
2186
|
+
if ((l = n.result) != null && l.vipStatus) {
|
|
2117
2187
|
const r = n.result.vipStatus, {
|
|
2118
2188
|
current_grade_id: o,
|
|
2119
2189
|
current_deposit: v,
|
|
2120
2190
|
current_turnover: k,
|
|
2121
2191
|
percentage: P
|
|
2122
|
-
} = r,
|
|
2123
|
-
c.list = c.list.map((j,
|
|
2124
|
-
const
|
|
2125
|
-
let
|
|
2126
|
-
return
|
|
2192
|
+
} = r, G = c.list.findIndex((j) => j.id === o);
|
|
2193
|
+
c.list = c.list.map((j, w) => {
|
|
2194
|
+
const z = w === G;
|
|
2195
|
+
let C = "0", f = "0", W = 0;
|
|
2196
|
+
return z ? (C = `${Math.min(Number(v), Number(j.deposit.total))}`, f = `${Math.min(Number(k), Number(j.turnover.total))}`, W = P) : w < G ? (C = j.deposit.total, f = j.turnover.total, W = 1) : w > G && (C = "0.00", f = "0.00", W = 0), {
|
|
2127
2197
|
...j,
|
|
2128
|
-
is_current_level:
|
|
2198
|
+
is_current_level: z,
|
|
2129
2199
|
deposit: {
|
|
2130
2200
|
...j.deposit,
|
|
2131
2201
|
isShow: y === 1 || y === 3 || y === 4,
|
|
2132
|
-
current:
|
|
2202
|
+
current: C
|
|
2133
2203
|
},
|
|
2134
2204
|
turnover: {
|
|
2135
2205
|
...j.turnover,
|
|
2136
2206
|
isShow: y === 2 || y === 3 || y === 4,
|
|
2137
2207
|
current: f
|
|
2138
2208
|
},
|
|
2139
|
-
percentage:
|
|
2209
|
+
percentage: W
|
|
2140
2210
|
};
|
|
2141
2211
|
});
|
|
2142
2212
|
}
|
|
@@ -2144,21 +2214,21 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2144
2214
|
}
|
|
2145
2215
|
if (s.vipBonus in n.result) {
|
|
2146
2216
|
if ((d = n.result) != null && d.vipBonus) {
|
|
2147
|
-
const r = n.result.vipBonus, o = c.list.find((
|
|
2217
|
+
const r = n.result.vipBonus, o = c.list.find((W) => W.is_current_level == !0), v = Number(o == null ? void 0 : o.benefit_list.daily.bonus) ?? 0, k = Number(o == null ? void 0 : o.benefit_list.weekly.bonus) ?? 0, P = Number(o == null ? void 0 : o.benefit_list.monthly.bonus) ?? 0;
|
|
2148
2218
|
c.bonus.day.isClaimable = r.day.isClaimable;
|
|
2149
|
-
const { dayRemainingTime:
|
|
2219
|
+
const { dayRemainingTime: G, dayProgressPercentage: j } = be();
|
|
2150
2220
|
c.bonus.day.timestamp = {
|
|
2151
|
-
current: !r.day.isClaimable && v > 0 ?
|
|
2221
|
+
current: !r.day.isClaimable && v > 0 ? G : 0,
|
|
2152
2222
|
percentage: j
|
|
2153
2223
|
}, c.bonus.week.isClaimable = r.week.isClaimable;
|
|
2154
|
-
const { weekRemainingTime:
|
|
2224
|
+
const { weekRemainingTime: w, weekProgressPercentage: z } = ge();
|
|
2155
2225
|
c.bonus.week.timestamp = {
|
|
2156
|
-
current: !r.week.isClaimable && k > 0 ?
|
|
2157
|
-
percentage:
|
|
2226
|
+
current: !r.week.isClaimable && k > 0 ? w : 0,
|
|
2227
|
+
percentage: z
|
|
2158
2228
|
}, c.bonus.month.isClaimable = r.month.isClaimable;
|
|
2159
|
-
const { monthRemainingTime:
|
|
2229
|
+
const { monthRemainingTime: C, monthProgressPercentage: f } = pe();
|
|
2160
2230
|
c.bonus.month.timestamp = {
|
|
2161
|
-
current: !r.month.isClaimable && P > 0 ?
|
|
2231
|
+
current: !r.month.isClaimable && P > 0 ? C : 0,
|
|
2162
2232
|
percentage: f
|
|
2163
2233
|
};
|
|
2164
2234
|
}
|
|
@@ -2196,11 +2266,11 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2196
2266
|
code: "",
|
|
2197
2267
|
value: c.list.map((f) => f.benefit_list.monthly.bonus)
|
|
2198
2268
|
});
|
|
2199
|
-
const
|
|
2269
|
+
const G = r.findIndex(
|
|
2200
2270
|
(f) => f.fieldName == "monthly_bonus_multiply"
|
|
2201
2271
|
);
|
|
2202
|
-
|
|
2203
|
-
name: r[
|
|
2272
|
+
G > -1 && o.push({
|
|
2273
|
+
name: r[G].showName,
|
|
2204
2274
|
code: "",
|
|
2205
2275
|
value: c.list.map((f) => f.benefit_list.monthly.turnover)
|
|
2206
2276
|
});
|
|
@@ -2212,27 +2282,27 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2212
2282
|
code: "",
|
|
2213
2283
|
value: c.list.map((f) => f.benefit_list.weekly.bonus)
|
|
2214
2284
|
});
|
|
2215
|
-
const
|
|
2285
|
+
const w = r.findIndex(
|
|
2216
2286
|
(f) => f.fieldName == "weekly_bonus_multiply"
|
|
2217
2287
|
);
|
|
2218
|
-
|
|
2219
|
-
name: r[
|
|
2288
|
+
w > -1 && o.push({
|
|
2289
|
+
name: r[w].showName,
|
|
2220
2290
|
code: "",
|
|
2221
2291
|
value: c.list.map((f) => f.benefit_list.weekly.turnover)
|
|
2222
2292
|
});
|
|
2223
|
-
const
|
|
2293
|
+
const z = r.findIndex(
|
|
2224
2294
|
(f) => f.fieldName == "daily_bonus"
|
|
2225
2295
|
);
|
|
2226
|
-
c.bonus.day.isShow =
|
|
2227
|
-
name: r[
|
|
2296
|
+
c.bonus.day.isShow = z > -1, z > -1 && o.push({
|
|
2297
|
+
name: r[z].showName,
|
|
2228
2298
|
code: "",
|
|
2229
2299
|
value: c.list.map((f) => f.benefit_list.daily.bonus)
|
|
2230
2300
|
});
|
|
2231
|
-
const
|
|
2301
|
+
const C = r.findIndex(
|
|
2232
2302
|
(f) => f.fieldName == "daily_bonus_multiply"
|
|
2233
2303
|
);
|
|
2234
|
-
|
|
2235
|
-
name: r[
|
|
2304
|
+
C > -1 && o.push({
|
|
2305
|
+
name: r[C].showName,
|
|
2236
2306
|
code: "",
|
|
2237
2307
|
value: c.list.map((f) => f.benefit_list.daily.turnover)
|
|
2238
2308
|
}), (y === 1 || y === 3 || y === 4) && o.push({
|
|
@@ -2352,21 +2422,21 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2352
2422
|
n.result.getCompany = c;
|
|
2353
2423
|
}
|
|
2354
2424
|
return n;
|
|
2355
|
-
} catch (
|
|
2356
|
-
return
|
|
2357
|
-
status: ((M =
|
|
2358
|
-
message: JSON.stringify((
|
|
2425
|
+
} catch (x) {
|
|
2426
|
+
return le.isAxiosError(x) ? {
|
|
2427
|
+
status: ((M = x.response) == null ? void 0 : M.status) || 600,
|
|
2428
|
+
message: JSON.stringify((F = x.response) == null ? void 0 : F.data),
|
|
2359
2429
|
result: {}
|
|
2360
|
-
} : (console.error(
|
|
2361
|
-
status:
|
|
2362
|
-
message:
|
|
2430
|
+
} : (console.error(x), {
|
|
2431
|
+
status: x.status || 500,
|
|
2432
|
+
message: x.message,
|
|
2363
2433
|
result: {}
|
|
2364
2434
|
});
|
|
2365
2435
|
}
|
|
2366
|
-
},
|
|
2436
|
+
}, Ga = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2367
2437
|
__proto__: null,
|
|
2368
|
-
post:
|
|
2369
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2438
|
+
post: La
|
|
2439
|
+
}, Symbol.toStringTag, { value: "Module" })), wa = async (e, t) => {
|
|
2370
2440
|
let a = {
|
|
2371
2441
|
status: 200,
|
|
2372
2442
|
message: "",
|
|
@@ -2376,7 +2446,7 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2376
2446
|
a = {
|
|
2377
2447
|
status: 200,
|
|
2378
2448
|
message: "",
|
|
2379
|
-
accessToken: (await
|
|
2449
|
+
accessToken: (await N.post("/auth/sesh", {
|
|
2380
2450
|
usr: e,
|
|
2381
2451
|
pwd: t
|
|
2382
2452
|
})).data.access_token
|
|
@@ -2389,44 +2459,44 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2389
2459
|
};
|
|
2390
2460
|
}
|
|
2391
2461
|
return a;
|
|
2392
|
-
},
|
|
2393
|
-
let
|
|
2462
|
+
}, za = async (e, t, a, u, i) => {
|
|
2463
|
+
let l = {
|
|
2394
2464
|
status: 200,
|
|
2395
2465
|
message: "",
|
|
2396
2466
|
accessToken: ""
|
|
2397
2467
|
};
|
|
2398
2468
|
try {
|
|
2399
|
-
const m = (await
|
|
2469
|
+
const m = (await N.post("/auth/jwt", {
|
|
2400
2470
|
os: e,
|
|
2401
2471
|
usr: t,
|
|
2402
2472
|
pwd: a,
|
|
2403
2473
|
mobileno: u,
|
|
2404
|
-
type:
|
|
2474
|
+
type: i
|
|
2405
2475
|
})).data;
|
|
2406
|
-
|
|
2476
|
+
l.status === 200 && (l = {
|
|
2407
2477
|
status: 200,
|
|
2408
2478
|
message: "",
|
|
2409
2479
|
accessToken: m.access_token
|
|
2410
2480
|
});
|
|
2411
2481
|
} catch (d) {
|
|
2412
|
-
|
|
2482
|
+
l = {
|
|
2413
2483
|
status: d.status || 500,
|
|
2414
2484
|
message: d.message,
|
|
2415
2485
|
accessToken: ""
|
|
2416
2486
|
};
|
|
2417
2487
|
}
|
|
2418
|
-
return
|
|
2419
|
-
},
|
|
2488
|
+
return l;
|
|
2489
|
+
}, Na = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2420
2490
|
__proto__: null,
|
|
2421
|
-
call:
|
|
2422
|
-
|
|
2423
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2491
|
+
call: wa,
|
|
2492
|
+
newCall: za
|
|
2493
|
+
}, Symbol.toStringTag, { value: "Module" })), Ua = async () => {
|
|
2424
2494
|
let e = {
|
|
2425
2495
|
status: 200,
|
|
2426
2496
|
message: ""
|
|
2427
2497
|
};
|
|
2428
2498
|
try {
|
|
2429
|
-
await
|
|
2499
|
+
await N.post("/auth/sesh/logout");
|
|
2430
2500
|
} catch (t) {
|
|
2431
2501
|
e = {
|
|
2432
2502
|
status: t.status || 500,
|
|
@@ -2434,10 +2504,10 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2434
2504
|
};
|
|
2435
2505
|
}
|
|
2436
2506
|
return e;
|
|
2437
|
-
},
|
|
2507
|
+
}, Ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2438
2508
|
__proto__: null,
|
|
2439
|
-
call:
|
|
2440
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2509
|
+
call: Ua
|
|
2510
|
+
}, Symbol.toStringTag, { value: "Module" })), oe = {
|
|
2441
2511
|
data: {
|
|
2442
2512
|
status: !1,
|
|
2443
2513
|
message: "",
|
|
@@ -2447,14 +2517,14 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2447
2517
|
accountId: 0
|
|
2448
2518
|
}
|
|
2449
2519
|
}
|
|
2450
|
-
},
|
|
2520
|
+
}, qa = async () => {
|
|
2451
2521
|
let e = {
|
|
2452
2522
|
status: 200,
|
|
2453
2523
|
message: "",
|
|
2454
|
-
...
|
|
2524
|
+
...oe
|
|
2455
2525
|
};
|
|
2456
2526
|
try {
|
|
2457
|
-
const a = (await
|
|
2527
|
+
const a = (await N.get("/autoregister")).data;
|
|
2458
2528
|
e.data = {
|
|
2459
2529
|
status: a.status == 1,
|
|
2460
2530
|
message: a.message ?? "",
|
|
@@ -2468,79 +2538,63 @@ const ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2468
2538
|
e = {
|
|
2469
2539
|
status: t.status || 500,
|
|
2470
2540
|
message: t.message,
|
|
2471
|
-
...
|
|
2541
|
+
...oe
|
|
2472
2542
|
};
|
|
2473
2543
|
}
|
|
2474
2544
|
return e;
|
|
2475
|
-
},
|
|
2545
|
+
}, Wa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2476
2546
|
__proto__: null,
|
|
2477
|
-
call:
|
|
2478
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2547
|
+
call: qa
|
|
2548
|
+
}, Symbol.toStringTag, { value: "Module" })), re = {
|
|
2479
2549
|
data: {
|
|
2480
2550
|
status: !1,
|
|
2481
2551
|
message: ""
|
|
2482
2552
|
}
|
|
2483
|
-
},
|
|
2553
|
+
}, Va = async (e, t) => {
|
|
2484
2554
|
let a = {
|
|
2485
2555
|
status: 200,
|
|
2486
2556
|
message: "",
|
|
2487
|
-
...
|
|
2557
|
+
...re
|
|
2488
2558
|
};
|
|
2489
2559
|
try {
|
|
2490
|
-
const u = await
|
|
2560
|
+
const u = await N.post("/setlocale", {
|
|
2491
2561
|
language: e,
|
|
2492
2562
|
udid: t ?? ""
|
|
2493
|
-
}),
|
|
2563
|
+
}), i = JSON.parse(
|
|
2494
2564
|
atob(u.data.responses[0].attributes)
|
|
2495
2565
|
);
|
|
2496
2566
|
a.data = {
|
|
2497
|
-
status:
|
|
2498
|
-
message:
|
|
2567
|
+
status: i.status == 1,
|
|
2568
|
+
message: i.message ?? ""
|
|
2499
2569
|
};
|
|
2500
2570
|
} catch (u) {
|
|
2501
2571
|
a = {
|
|
2502
2572
|
status: u.status || 500,
|
|
2503
2573
|
message: u.message,
|
|
2504
|
-
...
|
|
2574
|
+
...re
|
|
2505
2575
|
};
|
|
2506
2576
|
}
|
|
2507
2577
|
return a;
|
|
2508
|
-
},
|
|
2578
|
+
}, $a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2509
2579
|
__proto__: null,
|
|
2510
|
-
call:
|
|
2511
|
-
}, Symbol.toStringTag, { value: "Module" })), za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2512
|
-
__proto__: null
|
|
2513
|
-
}, Symbol.toStringTag, { value: "Module" })), Na = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2514
|
-
__proto__: null
|
|
2515
|
-
}, Symbol.toStringTag, { value: "Module" })), Ua = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2516
|
-
__proto__: null
|
|
2517
|
-
}, Symbol.toStringTag, { value: "Module" })), Ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2518
|
-
__proto__: null
|
|
2519
|
-
}, Symbol.toStringTag, { value: "Module" })), qa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2520
|
-
__proto__: null
|
|
2521
|
-
}, Symbol.toStringTag, { value: "Module" })), Wa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2522
|
-
__proto__: null
|
|
2523
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
2524
|
-
var re = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e))(re || {});
|
|
2525
|
-
const Va = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2526
|
-
__proto__: null,
|
|
2527
|
-
CmsType: re
|
|
2580
|
+
call: Va
|
|
2528
2581
|
}, Symbol.toStringTag, { value: "Module" })), Ea = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2529
2582
|
__proto__: null
|
|
2530
|
-
}, Symbol.toStringTag, { value: "Module" })), $a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2531
|
-
__proto__: null
|
|
2532
2583
|
}, Symbol.toStringTag, { value: "Module" })), Ha = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2533
2584
|
__proto__: null
|
|
2534
|
-
}, Symbol.toStringTag, { value: "Module" })), Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2535
|
-
__proto__: null
|
|
2536
2585
|
}, Symbol.toStringTag, { value: "Module" })), Ja = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2537
2586
|
__proto__: null
|
|
2587
|
+
}, Symbol.toStringTag, { value: "Module" })), Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2588
|
+
__proto__: null
|
|
2538
2589
|
}, Symbol.toStringTag, { value: "Module" })), Ya = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2539
2590
|
__proto__: null
|
|
2540
2591
|
}, Symbol.toStringTag, { value: "Module" })), Ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2541
2592
|
__proto__: null
|
|
2542
|
-
}, Symbol.toStringTag, { value: "Module" }))
|
|
2543
|
-
|
|
2593
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
2594
|
+
var ue = /* @__PURE__ */ ((e) => (e.mobileBanner = "mobileBanner", e.mobileAbout = "mobileAbout", e.mobileAd = "mobileAd", e.about = "about", e))(ue || {});
|
|
2595
|
+
const Qa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2596
|
+
__proto__: null,
|
|
2597
|
+
CmsType: ue
|
|
2544
2598
|
}, Symbol.toStringTag, { value: "Module" })), Xa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2545
2599
|
__proto__: null
|
|
2546
2600
|
}, Symbol.toStringTag, { value: "Module" })), Za = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2589,37 +2643,37 @@ const Va = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2589
2643
|
__proto__: null
|
|
2590
2644
|
}, Symbol.toStringTag, { value: "Module" })), Rn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2591
2645
|
__proto__: null
|
|
2592
|
-
}, Symbol.toStringTag, { value: "Module" })), ae = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2593
|
-
__proto__: null
|
|
2594
|
-
}, Symbol.toStringTag, { value: "Module" })), ne = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2595
|
-
__proto__: null
|
|
2596
2646
|
}, Symbol.toStringTag, { value: "Module" })), Sn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2597
2647
|
__proto__: null
|
|
2598
2648
|
}, Symbol.toStringTag, { value: "Module" })), kn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2599
2649
|
__proto__: null
|
|
2600
2650
|
}, Symbol.toStringTag, { value: "Module" })), Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2601
2651
|
__proto__: null
|
|
2602
|
-
}, Symbol.toStringTag, { value: "Module" }))
|
|
2603
|
-
|
|
2604
|
-
const On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2605
|
-
__proto__: null,
|
|
2606
|
-
ImageType: se
|
|
2652
|
+
}, Symbol.toStringTag, { value: "Module" })), On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2653
|
+
__proto__: null
|
|
2607
2654
|
}, Symbol.toStringTag, { value: "Module" })), Mn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2608
2655
|
__proto__: null
|
|
2609
2656
|
}, Symbol.toStringTag, { value: "Module" })), jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2610
2657
|
__proto__: null
|
|
2658
|
+
}, Symbol.toStringTag, { value: "Module" })), xn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2659
|
+
__proto__: null
|
|
2611
2660
|
}, Symbol.toStringTag, { value: "Module" })), Dn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2612
2661
|
__proto__: null
|
|
2613
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2662
|
+
}, Symbol.toStringTag, { value: "Module" })), se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2663
|
+
__proto__: null
|
|
2664
|
+
}, Symbol.toStringTag, { value: "Module" })), ie = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2614
2665
|
__proto__: null
|
|
2615
2666
|
}, Symbol.toStringTag, { value: "Module" })), Cn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2616
2667
|
__proto__: null
|
|
2617
2668
|
}, Symbol.toStringTag, { value: "Module" })), In = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2618
2669
|
__proto__: null
|
|
2619
|
-
}, Symbol.toStringTag, { value: "Module" })), Ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2620
|
-
__proto__: null
|
|
2621
2670
|
}, Symbol.toStringTag, { value: "Module" })), Fn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2622
2671
|
__proto__: null
|
|
2672
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
2673
|
+
var de = /* @__PURE__ */ ((e) => (e.default = "default", e.online = "online", e.mycard = "mycard", e.qrcode = "qrcode", e.personal = "personal", e))(de || {});
|
|
2674
|
+
const Ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2675
|
+
__proto__: null,
|
|
2676
|
+
ImageType: de
|
|
2623
2677
|
}, Symbol.toStringTag, { value: "Module" })), Gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2624
2678
|
__proto__: null
|
|
2625
2679
|
}, Symbol.toStringTag, { value: "Module" })), wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2638,16 +2692,16 @@ const On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2638
2692
|
__proto__: null
|
|
2639
2693
|
}, Symbol.toStringTag, { value: "Module" })), Vn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2640
2694
|
__proto__: null
|
|
2641
|
-
}, Symbol.toStringTag, { value: "Module" })), En = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2642
|
-
__proto__: null
|
|
2643
2695
|
}, Symbol.toStringTag, { value: "Module" })), $n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2644
2696
|
__proto__: null
|
|
2645
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2697
|
+
}, Symbol.toStringTag, { value: "Module" })), En = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2646
2698
|
__proto__: null
|
|
2647
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
2699
|
+
}, Symbol.toStringTag, { value: "Module" })), Hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2648
2700
|
__proto__: null
|
|
2649
2701
|
}, Symbol.toStringTag, { value: "Module" })), Jn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2650
2702
|
__proto__: null
|
|
2703
|
+
}, Symbol.toStringTag, { value: "Module" })), An = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2704
|
+
__proto__: null
|
|
2651
2705
|
}, Symbol.toStringTag, { value: "Module" })), Yn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2652
2706
|
__proto__: null
|
|
2653
2707
|
}, Symbol.toStringTag, { value: "Module" })), Kn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -2714,244 +2768,266 @@ const On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2714
2768
|
__proto__: null
|
|
2715
2769
|
}, Symbol.toStringTag, { value: "Module" })), jo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2716
2770
|
__proto__: null
|
|
2717
|
-
}, Symbol.toStringTag, { value: "Module" })), Do = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2718
|
-
__proto__: null
|
|
2719
2771
|
}, Symbol.toStringTag, { value: "Module" })), xo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2720
2772
|
__proto__: null
|
|
2773
|
+
}, Symbol.toStringTag, { value: "Module" })), Do = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2774
|
+
__proto__: null
|
|
2721
2775
|
}, Symbol.toStringTag, { value: "Module" })), Co = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2722
2776
|
__proto__: null
|
|
2723
|
-
}, Symbol.toStringTag, { value: "Module" })), Io = {
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2777
|
+
}, Symbol.toStringTag, { value: "Module" })), Io = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2778
|
+
__proto__: null
|
|
2779
|
+
}, Symbol.toStringTag, { value: "Module" })), Fo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2780
|
+
__proto__: null
|
|
2781
|
+
}, Symbol.toStringTag, { value: "Module" })), Lo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2782
|
+
__proto__: null
|
|
2783
|
+
}, Symbol.toStringTag, { value: "Module" })), Go = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2784
|
+
__proto__: null
|
|
2785
|
+
}, Symbol.toStringTag, { value: "Module" })), wo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2786
|
+
__proto__: null
|
|
2787
|
+
}, Symbol.toStringTag, { value: "Module" })), zo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2788
|
+
__proto__: null
|
|
2789
|
+
}, Symbol.toStringTag, { value: "Module" })), No = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2790
|
+
__proto__: null
|
|
2791
|
+
}, Symbol.toStringTag, { value: "Module" })), Uo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2792
|
+
__proto__: null
|
|
2793
|
+
}, Symbol.toStringTag, { value: "Module" })), Bo = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2794
|
+
__proto__: null
|
|
2795
|
+
}, Symbol.toStringTag, { value: "Module" })), qo = {
|
|
2796
|
+
api: Ga,
|
|
2797
|
+
loginApi: Na,
|
|
2798
|
+
logoutApi: Ba,
|
|
2799
|
+
autoRegisterApi: Wa,
|
|
2800
|
+
setLocaleApi: $a,
|
|
2801
|
+
apiType: fe,
|
|
2802
|
+
loginType: Ea,
|
|
2803
|
+
logoutType: Ha,
|
|
2804
|
+
announcementType: Ja,
|
|
2805
|
+
paymentsProviderType: ye,
|
|
2806
|
+
gameListType: Aa,
|
|
2807
|
+
vipListType: Ya,
|
|
2808
|
+
promotionType: Ka,
|
|
2809
|
+
cmsListType: Qa,
|
|
2810
|
+
mainWalletType: Xa,
|
|
2811
|
+
upcomingMatchType: Za,
|
|
2812
|
+
depositType: en,
|
|
2813
|
+
applyVipBonusType: tn,
|
|
2814
|
+
withdrawalGetType: an,
|
|
2815
|
+
addBankCardType: nn,
|
|
2816
|
+
withdrawType: on,
|
|
2817
|
+
getSettingType: pa,
|
|
2818
|
+
transactionReportType: rn,
|
|
2819
|
+
changePasswordType: sn,
|
|
2820
|
+
walletType: ln,
|
|
2821
|
+
getEventListType: un,
|
|
2822
|
+
getEventTokenType: dn,
|
|
2823
|
+
getExtraGameType: cn,
|
|
2824
|
+
mailBoxType: mn,
|
|
2825
|
+
fishGameListType: pn,
|
|
2826
|
+
slotGameListType: gn,
|
|
2827
|
+
getTurnOverRewardDataType: bn,
|
|
2828
|
+
getTurnOverRewardReportType: fn,
|
|
2829
|
+
getInviteRewardDataType: yn,
|
|
2830
|
+
getInviteRewardReportType: _n,
|
|
2831
|
+
getTopupRewardDataType: vn,
|
|
2832
|
+
getTopupRewardReportType: hn,
|
|
2833
|
+
getRewardReferralType: Tn,
|
|
2834
|
+
getDepositPromotionType: Rn,
|
|
2835
|
+
getInviteRewardClaimType: Sn,
|
|
2836
|
+
getTopUpRewardClaimType: kn,
|
|
2837
|
+
getTurnOverRewardClaimType: Pn,
|
|
2838
|
+
getInviteRewardSettingType: On,
|
|
2839
|
+
getTopUpRewardSettingType: Mn,
|
|
2840
|
+
getTurnOverRewardSettingType: jn,
|
|
2841
|
+
requestForgetPasswordType: xn,
|
|
2842
|
+
submitForgetPasswordType: Dn,
|
|
2843
|
+
submitGiftCode: se,
|
|
2844
|
+
playGame: ie,
|
|
2845
|
+
requestUpdateMobileTacCode: Cn,
|
|
2846
|
+
submitUpdateMobileTacCode: In,
|
|
2847
|
+
getVerifyPromo: Fn,
|
|
2848
|
+
getImageType: Ln,
|
|
2849
|
+
getValidateType: Gn,
|
|
2850
|
+
updateProfilePictureType: wn,
|
|
2851
|
+
readMailType: zn,
|
|
2852
|
+
checkRedPacketValidateType: Nn,
|
|
2853
|
+
getUserProfileType: Un,
|
|
2854
|
+
requestTacCodeType: Bn,
|
|
2855
|
+
getUsernameByReferType: qn,
|
|
2856
|
+
applyPromoType: Wn,
|
|
2857
|
+
applySignInType: Vn,
|
|
2858
|
+
applyRedPacketType: $n,
|
|
2859
|
+
getCountryType: En,
|
|
2860
|
+
submitGiftCodeType: se,
|
|
2861
|
+
playGameType: ie,
|
|
2862
|
+
transferToMainType: Hn,
|
|
2863
|
+
transferProcessType: Jn,
|
|
2864
|
+
submitValidateType: An,
|
|
2865
|
+
checkTransferCreditType: Yn,
|
|
2866
|
+
friendListType: Kn,
|
|
2867
|
+
friendListEditType: Qn,
|
|
2868
|
+
getActivePPType: Xn,
|
|
2869
|
+
getActiveProductType: Zn,
|
|
2870
|
+
requestWithdrawTacType: eo,
|
|
2871
|
+
requestWithdrawalCodeType: to,
|
|
2872
|
+
commissionWithdrawType: ao,
|
|
2873
|
+
submitWithdrawalCodeType: no,
|
|
2874
|
+
submitCryptoAccountType: oo,
|
|
2875
|
+
requestTransferMoneyType: ro,
|
|
2876
|
+
submitTransferMoneyType: so,
|
|
2877
|
+
signInViewInfoType: io,
|
|
2878
|
+
signInRecordType: lo,
|
|
2879
|
+
referralProfileType: uo,
|
|
2880
|
+
referralMemberProfileType: co,
|
|
2881
|
+
registerActionType: mo,
|
|
2882
|
+
transferReportType: po,
|
|
2883
|
+
agTransferCreditReportType: go,
|
|
2884
|
+
betReportType: bo,
|
|
2885
|
+
getTwoFactorAuthenticateType: fo,
|
|
2886
|
+
submitTwoFactorAuthenticateType: yo,
|
|
2887
|
+
getUserDeviceListType: _o,
|
|
2888
|
+
unbindUserDeviceType: vo,
|
|
2889
|
+
searchNumberHistoryType: ho,
|
|
2890
|
+
changeWithdrawalCodeType: To,
|
|
2891
|
+
checkRedPacketTokenType: Ro,
|
|
2892
|
+
submitWithdrawalAlipayType: So,
|
|
2893
|
+
applyReliefFund: ko,
|
|
2894
|
+
getReliefFundData: Po,
|
|
2895
|
+
getReliefFundReport: Oo,
|
|
2896
|
+
getWeekCardClaim: Mo,
|
|
2897
|
+
getWeekCardData: jo,
|
|
2898
|
+
applyWeekCard: xo,
|
|
2899
|
+
transferSettingType: Do,
|
|
2900
|
+
transferType: Co,
|
|
2901
|
+
claimIncentiveRebate: Io,
|
|
2902
|
+
getIncentiveData: Fo,
|
|
2903
|
+
getIncentiveRebate: Lo,
|
|
2904
|
+
getMissionData: Pa,
|
|
2905
|
+
getMissionClaim: Go,
|
|
2906
|
+
registerFormType: wo,
|
|
2907
|
+
getFavouriteGameType: zo,
|
|
2908
|
+
updateFavouriteGameType: No,
|
|
2909
|
+
requestForgetUsernameType: Uo,
|
|
2910
|
+
submitForgetUsernameType: Bo
|
|
2911
|
+
}, Vo = {
|
|
2838
2912
|
install(e) {
|
|
2839
|
-
e.config.globalProperties.$library =
|
|
2913
|
+
e.config.globalProperties.$library = qo;
|
|
2840
2914
|
}
|
|
2841
2915
|
};
|
|
2842
2916
|
export {
|
|
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
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2917
|
+
Vo as Repository,
|
|
2918
|
+
nn as addBankCardType,
|
|
2919
|
+
go as agTransferCreditReportType,
|
|
2920
|
+
Ja as announcementType,
|
|
2921
|
+
Ga as api,
|
|
2922
|
+
fe as apiType,
|
|
2923
|
+
Wn as applyPromoType,
|
|
2924
|
+
$n as applyRedPacketType,
|
|
2925
|
+
ko as applyReliefFund,
|
|
2926
|
+
Vn as applySignInType,
|
|
2927
|
+
tn as applyVipBonusType,
|
|
2928
|
+
xo as applyWeekCard,
|
|
2929
|
+
Wa as autoRegisterApi,
|
|
2930
|
+
bo as betReportType,
|
|
2931
|
+
sn as changePasswordType,
|
|
2932
|
+
To as changeWithdrawalCodeType,
|
|
2933
|
+
Ro as checkRedPacketTokenType,
|
|
2934
|
+
Nn as checkRedPacketValidateType,
|
|
2935
|
+
Yn as checkTransferCreditType,
|
|
2936
|
+
Io as claimIncentiveRebate,
|
|
2937
|
+
Qa as cmsListType,
|
|
2938
|
+
ao as commissionWithdrawType,
|
|
2939
|
+
en as depositType,
|
|
2940
|
+
pn as fishGameListType,
|
|
2941
|
+
Qn as friendListEditType,
|
|
2942
|
+
Kn as friendListType,
|
|
2943
|
+
Aa as gameListType,
|
|
2944
|
+
Xn as getActivePPType,
|
|
2945
|
+
Zn as getActiveProductType,
|
|
2946
|
+
En as getCountryType,
|
|
2947
|
+
Rn as getDepositPromotionType,
|
|
2948
|
+
un as getEventListType,
|
|
2949
|
+
dn as getEventTokenType,
|
|
2950
|
+
cn as getExtraGameType,
|
|
2951
|
+
zo as getFavouriteGameType,
|
|
2952
|
+
Ln as getImageType,
|
|
2953
|
+
Fo as getIncentiveData,
|
|
2954
|
+
Lo as getIncentiveRebate,
|
|
2955
|
+
Sn as getInviteRewardClaimType,
|
|
2956
|
+
yn as getInviteRewardDataType,
|
|
2957
|
+
_n as getInviteRewardReportType,
|
|
2958
|
+
On as getInviteRewardSettingType,
|
|
2959
|
+
Go as getMissionClaim,
|
|
2960
|
+
Pa as getMissionData,
|
|
2961
|
+
Po as getReliefFundData,
|
|
2962
|
+
Oo as getReliefFundReport,
|
|
2963
|
+
Tn as getRewardReferralType,
|
|
2964
|
+
pa as getSettingType,
|
|
2965
|
+
kn as getTopUpRewardClaimType,
|
|
2966
|
+
Mn as getTopUpRewardSettingType,
|
|
2967
|
+
vn as getTopupRewardDataType,
|
|
2968
|
+
hn as getTopupRewardReportType,
|
|
2969
|
+
Pn as getTurnOverRewardClaimType,
|
|
2970
|
+
bn as getTurnOverRewardDataType,
|
|
2971
|
+
fn as getTurnOverRewardReportType,
|
|
2972
|
+
jn as getTurnOverRewardSettingType,
|
|
2973
|
+
fo as getTwoFactorAuthenticateType,
|
|
2974
|
+
_o as getUserDeviceListType,
|
|
2975
|
+
Un as getUserProfileType,
|
|
2976
|
+
qn as getUsernameByReferType,
|
|
2977
|
+
Gn as getValidateType,
|
|
2978
|
+
Fn as getVerifyPromo,
|
|
2979
|
+
Mo as getWeekCardClaim,
|
|
2980
|
+
jo as getWeekCardData,
|
|
2981
|
+
Na as loginApi,
|
|
2982
|
+
Ea as loginType,
|
|
2983
|
+
Ba as logoutApi,
|
|
2984
|
+
Ha as logoutType,
|
|
2985
|
+
mn as mailBoxType,
|
|
2986
|
+
Xa as mainWalletType,
|
|
2987
|
+
ye as paymentsProviderType,
|
|
2988
|
+
ie as playGame,
|
|
2989
|
+
ie as playGameType,
|
|
2990
|
+
Ka as promotionType,
|
|
2991
|
+
zn as readMailType,
|
|
2992
|
+
co as referralMemberProfileType,
|
|
2993
|
+
uo as referralProfileType,
|
|
2994
|
+
mo as registerActionType,
|
|
2995
|
+
wo as registerFormType,
|
|
2996
|
+
xn as requestForgetPasswordType,
|
|
2997
|
+
Uo as requestForgetUsernameType,
|
|
2998
|
+
Bn as requestTacCodeType,
|
|
2999
|
+
ro as requestTransferMoneyType,
|
|
3000
|
+
Cn as requestUpdateMobileTacCode,
|
|
3001
|
+
eo as requestWithdrawTacType,
|
|
3002
|
+
to as requestWithdrawalCodeType,
|
|
3003
|
+
ho as searchNumberHistoryType,
|
|
3004
|
+
$a as setLocaleApi,
|
|
3005
|
+
lo as signInRecordType,
|
|
3006
|
+
io as signInViewInfoType,
|
|
3007
|
+
gn as slotGameListType,
|
|
3008
|
+
oo as submitCryptoAccountType,
|
|
3009
|
+
Dn as submitForgetPasswordType,
|
|
3010
|
+
Bo as submitForgetUsernameType,
|
|
3011
|
+
se as submitGiftCode,
|
|
3012
|
+
se as submitGiftCodeType,
|
|
3013
|
+
so as submitTransferMoneyType,
|
|
3014
|
+
yo as submitTwoFactorAuthenticateType,
|
|
3015
|
+
In as submitUpdateMobileTacCode,
|
|
3016
|
+
An as submitValidateType,
|
|
3017
|
+
So as submitWithdrawalAlipayType,
|
|
3018
|
+
no as submitWithdrawalCodeType,
|
|
3019
|
+
rn as transactionReportType,
|
|
3020
|
+
Jn as transferProcessType,
|
|
3021
|
+
po as transferReportType,
|
|
3022
|
+
Do as transferSettingType,
|
|
3023
|
+
Hn as transferToMainType,
|
|
3024
|
+
Co as transferType,
|
|
3025
|
+
vo as unbindUserDeviceType,
|
|
3026
|
+
Za as upcomingMatchType,
|
|
3027
|
+
No as updateFavouriteGameType,
|
|
3028
|
+
wn as updateProfilePictureType,
|
|
3029
|
+
Ya as vipListType,
|
|
3030
|
+
ln as walletType,
|
|
3031
|
+
on as withdrawType,
|
|
3032
|
+
an as withdrawalGetType
|
|
2957
3033
|
};
|