60p82u21t54k 0.3.17 → 0.3.18

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.
@@ -77,7 +77,7 @@ const Ta = (e) => {
77
77
  __proto__: null,
78
78
  getConfig: he,
79
79
  setConfig: Ta
80
- }, Symbol.toStringTag, { value: "Module" })), ea = 6048e5, va = 864e5, wa = 6e4, Ra = 36e5, Pa = 1e3, xt = Symbol.for("constructDateFrom");
80
+ }, Symbol.toStringTag, { value: "Module" })), ea = 6048e5, va = 864e5, wa = 6e4, Pa = 36e5, Ra = 1e3, xt = Symbol.for("constructDateFrom");
81
81
  function j(e, a) {
82
82
  return typeof e == "function" ? e(a) : e && typeof e == "object" && xt in e ? e[xt](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
83
83
  }
@@ -97,15 +97,15 @@ function U(e, a) {
97
97
  const t = te(), n = (a == null ? void 0 : a.weekStartsOn) ?? ((m = (l = a == null ? void 0 : a.locale) == null ? void 0 : l.options) == null ? void 0 : m.weekStartsOn) ?? t.weekStartsOn ?? ((c = (i = t.locale) == null ? void 0 : i.options) == null ? void 0 : c.weekStartsOn) ?? 0, r = I(e, a == null ? void 0 : a.in), s = r.getDay(), o = (s < n ? 7 : 0) + s - n;
98
98
  return r.setDate(r.getDate() - o), r.setHours(0, 0, 0, 0), r;
99
99
  }
100
- function ee(e, a) {
100
+ function K(e, a) {
101
101
  return U(e, { ...a, weekStartsOn: 1 });
102
102
  }
103
103
  function aa(e, a) {
104
104
  const t = I(e, a == null ? void 0 : a.in), n = t.getFullYear(), r = j(t, 0);
105
105
  r.setFullYear(n + 1, 0, 4), r.setHours(0, 0, 0, 0);
106
- const s = ee(r), o = j(t, 0);
106
+ const s = K(r), o = j(t, 0);
107
107
  o.setFullYear(n, 0, 4), o.setHours(0, 0, 0, 0);
108
- const l = ee(o);
108
+ const l = K(o);
109
109
  return t.getTime() >= s.getTime() ? n + 1 : t.getTime() >= l.getTime() ? n : n - 1;
110
110
  }
111
111
  function de(e) {
@@ -143,7 +143,7 @@ function xa(e, a, t) {
143
143
  }
144
144
  function Oa(e, a) {
145
145
  const t = aa(e, a), n = j(e, 0);
146
- return n.setFullYear(t, 0, 4), n.setHours(0, 0, 0, 0), ee(n);
146
+ return n.setFullYear(t, 0, 4), n.setHours(0, 0, 0, 0), K(n);
147
147
  }
148
148
  function Ma(e) {
149
149
  return e instanceof Date || typeof e == "object" && Object.prototype.toString.call(e) === "[object Date]";
@@ -591,7 +591,7 @@ function dn(e, a) {
591
591
  return xa(t, Ia(t)) + 1;
592
592
  }
593
593
  function ra(e, a) {
594
- const t = I(e, a == null ? void 0 : a.in), n = +ee(t) - +Oa(t);
594
+ const t = I(e, a == null ? void 0 : a.in), n = +K(t) - +Oa(t);
595
595
  return Math.round(n / ea) + 1;
596
596
  }
597
597
  function Ge(e, a) {
@@ -612,7 +612,7 @@ function sa(e, a) {
612
612
  const t = I(e, a == null ? void 0 : a.in), n = +U(t, a) - +mn(t, a);
613
613
  return Math.round(n / ea) + 1;
614
614
  }
615
- function R(e, a) {
615
+ function P(e, a) {
616
616
  const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
617
617
  return t + n;
618
618
  }
@@ -620,16 +620,16 @@ const H = {
620
620
  // Year
621
621
  y(e, a) {
622
622
  const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
623
- return R(a === "yy" ? n % 100 : n, a.length);
623
+ return P(a === "yy" ? n % 100 : n, a.length);
624
624
  },
625
625
  // Month
626
626
  M(e, a) {
627
627
  const t = e.getMonth();
628
- return a === "M" ? String(t + 1) : R(t + 1, 2);
628
+ return a === "M" ? String(t + 1) : P(t + 1, 2);
629
629
  },
630
630
  // Day of the month
631
631
  d(e, a) {
632
- return R(e.getDate(), a.length);
632
+ return P(e.getDate(), a.length);
633
633
  },
634
634
  // AM or PM
635
635
  a(e, a) {
@@ -649,28 +649,28 @@ const H = {
649
649
  },
650
650
  // Hour [1-12]
651
651
  h(e, a) {
652
- return R(e.getHours() % 12 || 12, a.length);
652
+ return P(e.getHours() % 12 || 12, a.length);
653
653
  },
654
654
  // Hour [0-23]
655
655
  H(e, a) {
656
- return R(e.getHours(), a.length);
656
+ return P(e.getHours(), a.length);
657
657
  },
658
658
  // Minute
659
659
  m(e, a) {
660
- return R(e.getMinutes(), a.length);
660
+ return P(e.getMinutes(), a.length);
661
661
  },
662
662
  // Second
663
663
  s(e, a) {
664
- return R(e.getSeconds(), a.length);
664
+ return P(e.getSeconds(), a.length);
665
665
  },
666
666
  // Fraction of second
667
667
  S(e, a) {
668
668
  const t = a.length, n = e.getMilliseconds(), r = Math.trunc(
669
669
  n * Math.pow(10, t - 3)
670
670
  );
671
- return R(r, a.length);
671
+ return P(r, a.length);
672
672
  }
673
- }, Z = {
673
+ }, X = {
674
674
  midnight: "midnight",
675
675
  noon: "noon",
676
676
  morning: "morning",
@@ -709,14 +709,14 @@ const H = {
709
709
  const r = Ge(e, n), s = r > 0 ? r : 1 - r;
710
710
  if (a === "YY") {
711
711
  const o = s % 100;
712
- return R(o, 2);
712
+ return P(o, 2);
713
713
  }
714
- return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : R(s, a.length);
714
+ return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : P(s, a.length);
715
715
  },
716
716
  // ISO week-numbering year
717
717
  R: function(e, a) {
718
718
  const t = aa(e);
719
- return R(t, a.length);
719
+ return P(t, a.length);
720
720
  },
721
721
  // Extended year. This is a single number designating the year of this calendar system.
722
722
  // The main difference between `y` and `u` localizers are B.C. years:
@@ -729,7 +729,7 @@ const H = {
729
729
  // while `uu` pads single digit years to 2 characters and returns other years unchanged.
730
730
  u: function(e, a) {
731
731
  const t = e.getFullYear();
732
- return R(t, a.length);
732
+ return P(t, a.length);
733
733
  },
734
734
  // Quarter
735
735
  Q: function(e, a, t) {
@@ -740,7 +740,7 @@ const H = {
740
740
  return String(n);
741
741
  // 01, 02, 03, 04
742
742
  case "QQ":
743
- return R(n, 2);
743
+ return P(n, 2);
744
744
  // 1st, 2nd, 3rd, 4th
745
745
  case "Qo":
746
746
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -774,7 +774,7 @@ const H = {
774
774
  return String(n);
775
775
  // 01, 02, 03, 04
776
776
  case "qq":
777
- return R(n, 2);
777
+ return P(n, 2);
778
778
  // 1st, 2nd, 3rd, 4th
779
779
  case "qo":
780
780
  return t.ordinalNumber(n, { unit: "quarter" });
@@ -836,7 +836,7 @@ const H = {
836
836
  return String(n + 1);
837
837
  // 01, 02, ..., 12
838
838
  case "LL":
839
- return R(n + 1, 2);
839
+ return P(n + 1, 2);
840
840
  // 1st, 2nd, ..., 12th
841
841
  case "Lo":
842
842
  return t.ordinalNumber(n + 1, { unit: "month" });
@@ -861,12 +861,12 @@ const H = {
861
861
  // Local week of year
862
862
  w: function(e, a, t, n) {
863
863
  const r = sa(e, n);
864
- return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : R(r, a.length);
864
+ return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : P(r, a.length);
865
865
  },
866
866
  // ISO week of year
867
867
  I: function(e, a, t) {
868
868
  const n = ra(e);
869
- return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : R(n, a.length);
869
+ return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : P(n, a.length);
870
870
  },
871
871
  // Day of the month
872
872
  d: function(e, a, t) {
@@ -875,7 +875,7 @@ const H = {
875
875
  // Day of year
876
876
  D: function(e, a, t) {
877
877
  const n = dn(e);
878
- return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : R(n, a.length);
878
+ return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : P(n, a.length);
879
879
  },
880
880
  // Day of week
881
881
  E: function(e, a, t) {
@@ -919,7 +919,7 @@ const H = {
919
919
  return String(s);
920
920
  // Padded numerical value
921
921
  case "ee":
922
- return R(s, 2);
922
+ return P(s, 2);
923
923
  // 1st, 2nd, ..., 7th
924
924
  case "eo":
925
925
  return t.ordinalNumber(s, { unit: "day" });
@@ -958,7 +958,7 @@ const H = {
958
958
  return String(s);
959
959
  // Padded numerical value
960
960
  case "cc":
961
- return R(s, a.length);
961
+ return P(s, a.length);
962
962
  // 1st, 2nd, ..., 7th
963
963
  case "co":
964
964
  return t.ordinalNumber(s, { unit: "day" });
@@ -997,7 +997,7 @@ const H = {
997
997
  return String(r);
998
998
  // 02
999
999
  case "ii":
1000
- return R(r, a.length);
1000
+ return P(r, a.length);
1001
1001
  // 2nd
1002
1002
  case "io":
1003
1003
  return t.ordinalNumber(r, { unit: "day" });
@@ -1060,7 +1060,7 @@ const H = {
1060
1060
  b: function(e, a, t) {
1061
1061
  const n = e.getHours();
1062
1062
  let r;
1063
- switch (n === 12 ? r = Z.noon : n === 0 ? r = Z.midnight : r = n / 12 >= 1 ? "pm" : "am", a) {
1063
+ switch (n === 12 ? r = X.noon : n === 0 ? r = X.midnight : r = n / 12 >= 1 ? "pm" : "am", a) {
1064
1064
  case "b":
1065
1065
  case "bb":
1066
1066
  return t.dayPeriod(r, {
@@ -1089,7 +1089,7 @@ const H = {
1089
1089
  B: function(e, a, t) {
1090
1090
  const n = e.getHours();
1091
1091
  let r;
1092
- switch (n >= 17 ? r = Z.evening : n >= 12 ? r = Z.afternoon : n >= 4 ? r = Z.morning : r = Z.night, a) {
1092
+ switch (n >= 17 ? r = X.evening : n >= 12 ? r = X.afternoon : n >= 4 ? r = X.morning : r = X.night, a) {
1093
1093
  case "B":
1094
1094
  case "BB":
1095
1095
  case "BBB":
@@ -1125,12 +1125,12 @@ const H = {
1125
1125
  // Hour [0-11]
1126
1126
  K: function(e, a, t) {
1127
1127
  const n = e.getHours() % 12;
1128
- return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1128
+ return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1129
1129
  },
1130
1130
  // Hour [1-24]
1131
1131
  k: function(e, a, t) {
1132
1132
  let n = e.getHours();
1133
- return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : R(n, a.length);
1133
+ return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : P(n, a.length);
1134
1134
  },
1135
1135
  // Minute
1136
1136
  m: function(e, a, t) {
@@ -1158,7 +1158,7 @@ const H = {
1158
1158
  // so this token always has the same output as `XX`
1159
1159
  case "XXXX":
1160
1160
  case "XX":
1161
- return A(n);
1161
+ return V(n);
1162
1162
  // Hours, minutes and optional seconds with `:` delimiter
1163
1163
  // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets
1164
1164
  // so this token always has the same output as `XXX`
@@ -1166,7 +1166,7 @@ const H = {
1166
1166
  case "XXX":
1167
1167
  // Hours and minutes with `:` delimiter
1168
1168
  default:
1169
- return A(n, ":");
1169
+ return V(n, ":");
1170
1170
  }
1171
1171
  },
1172
1172
  // Timezone (ISO-8601. If offset is 0, output is `'+00:00'` or equivalent)
@@ -1181,7 +1181,7 @@ const H = {
1181
1181
  // so this token always has the same output as `xx`
1182
1182
  case "xxxx":
1183
1183
  case "xx":
1184
- return A(n);
1184
+ return V(n);
1185
1185
  // Hours, minutes and optional seconds with `:` delimiter
1186
1186
  // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets
1187
1187
  // so this token always has the same output as `xxx`
@@ -1189,7 +1189,7 @@ const H = {
1189
1189
  case "xxx":
1190
1190
  // Hours and minutes with `:` delimiter
1191
1191
  default:
1192
- return A(n, ":");
1192
+ return V(n, ":");
1193
1193
  }
1194
1194
  },
1195
1195
  // Timezone (GMT)
@@ -1204,7 +1204,7 @@ const H = {
1204
1204
  // Long
1205
1205
  case "OOOO":
1206
1206
  default:
1207
- return "GMT" + A(n, ":");
1207
+ return "GMT" + V(n, ":");
1208
1208
  }
1209
1209
  },
1210
1210
  // Timezone (specific non-location)
@@ -1219,28 +1219,28 @@ const H = {
1219
1219
  // Long
1220
1220
  case "zzzz":
1221
1221
  default:
1222
- return "GMT" + A(n, ":");
1222
+ return "GMT" + V(n, ":");
1223
1223
  }
1224
1224
  },
1225
1225
  // Seconds timestamp
1226
1226
  t: function(e, a, t) {
1227
1227
  const n = Math.trunc(+e / 1e3);
1228
- return R(n, a.length);
1228
+ return P(n, a.length);
1229
1229
  },
1230
1230
  // Milliseconds timestamp
1231
1231
  T: function(e, a, t) {
1232
- return R(+e, a.length);
1232
+ return P(+e, a.length);
1233
1233
  }
1234
1234
  };
1235
1235
  function St(e, a = "") {
1236
1236
  const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.trunc(n / 60), s = n % 60;
1237
- return s === 0 ? t + String(r) : t + String(r) + a + R(s, 2);
1237
+ return s === 0 ? t + String(r) : t + String(r) + a + P(s, 2);
1238
1238
  }
1239
1239
  function It(e, a) {
1240
- return e % 60 === 0 ? (e > 0 ? "-" : "+") + R(Math.abs(e) / 60, 2) : A(e, a);
1240
+ return e % 60 === 0 ? (e > 0 ? "-" : "+") + P(Math.abs(e) / 60, 2) : V(e, a);
1241
1241
  }
1242
- function A(e, a = "") {
1243
- const t = e > 0 ? "-" : "+", n = Math.abs(e), r = R(Math.trunc(n / 60), 2), s = R(n % 60, 2);
1242
+ function V(e, a = "") {
1243
+ const t = e > 0 ? "-" : "+", n = Math.abs(e), r = P(Math.trunc(n / 60), 2), s = P(n % 60, 2);
1244
1244
  return t + r + a + s;
1245
1245
  }
1246
1246
  const jt = (e, a) => {
@@ -1307,7 +1307,7 @@ function bn(e, a, t) {
1307
1307
  return `Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${a}\`) for formatting ${n} to the input \`${t}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;
1308
1308
  }
1309
1309
  const hn = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, _n = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, Tn = /^'([^]*?)'?$/, vn = /''/g, wn = /[a-zA-Z]/;
1310
- function Rn(e, a, t) {
1310
+ function Pn(e, a, t) {
1311
1311
  var c, y, p, g, T, _, k, C;
1312
1312
  const n = te(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? na, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((y = (c = t == null ? void 0 : t.locale) == null ? void 0 : c.options) == null ? void 0 : y.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((g = (p = n.locale) == null ? void 0 : p.options) == null ? void 0 : g.firstWeekContainsDate) ?? 1, o = (t == null ? void 0 : t.weekStartsOn) ?? ((_ = (T = t == null ? void 0 : t.locale) == null ? void 0 : T.options) == null ? void 0 : _.weekStartsOn) ?? n.weekStartsOn ?? ((C = (k = n.locale) == null ? void 0 : k.options) == null ? void 0 : C.weekStartsOn) ?? 0, l = I(e, t == null ? void 0 : t.in);
1313
1313
  if (!Sa(l))
@@ -1324,7 +1324,7 @@ function Rn(e, a, t) {
1324
1324
  return { isToken: !1, value: "'" };
1325
1325
  const h = D[0];
1326
1326
  if (h === "'")
1327
- return { isToken: !1, value: Pn(D) };
1327
+ return { isToken: !1, value: Rn(D) };
1328
1328
  if (Mt[h])
1329
1329
  return { isToken: !0, value: D };
1330
1330
  if (h.match(wn))
@@ -1347,7 +1347,7 @@ function Rn(e, a, t) {
1347
1347
  return b(l, h, r.localize, i);
1348
1348
  }).join("");
1349
1349
  }
1350
- function Pn(e) {
1350
+ function Rn(e) {
1351
1351
  const a = e.match(Tn);
1352
1352
  return a ? a[1].replace(vn, "'") : e;
1353
1353
  }
@@ -1515,7 +1515,7 @@ function z(e, a) {
1515
1515
  };
1516
1516
  const n = t[1] === "+" ? 1 : -1, r = t[2] ? parseInt(t[2], 10) : 0, s = t[3] ? parseInt(t[3], 10) : 0, o = t[5] ? parseInt(t[5], 10) : 0;
1517
1517
  return {
1518
- value: n * (r * Ra + s * wa + o * Pa),
1518
+ value: n * (r * Pa + s * wa + o * Ra),
1519
1519
  rest: a.slice(t[0].length)
1520
1520
  };
1521
1521
  }
@@ -1708,7 +1708,7 @@ class Nn extends w {
1708
1708
  }
1709
1709
  set(t, n, r) {
1710
1710
  const s = j(t, 0);
1711
- return s.setFullYear(r, 0, 4), s.setHours(0, 0, 0, 0), ee(s);
1711
+ return s.setFullYear(r, 0, 4), s.setHours(0, 0, 0, 0), K(s);
1712
1712
  }
1713
1713
  }
1714
1714
  class Ln extends w {
@@ -2074,7 +2074,7 @@ class Bn extends w {
2074
2074
  return n >= 1 && n <= 53;
2075
2075
  }
2076
2076
  set(t, n, r) {
2077
- return ee(Yn(t, r));
2077
+ return K(Yn(t, r));
2078
2078
  }
2079
2079
  }
2080
2080
  const Hn = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], Un = [
@@ -2901,15 +2901,15 @@ function Tr(e, a, t, n) {
2901
2901
  `The format string mustn't contain \`${b}\` and any other token at the same time`
2902
2902
  );
2903
2903
  p.push({ token: d, fullToken: b });
2904
- const X = $.run(
2904
+ const Q = $.run(
2905
2905
  e,
2906
2906
  b,
2907
2907
  o.match,
2908
2908
  i
2909
2909
  );
2910
- if (!X)
2910
+ if (!Q)
2911
2911
  return r();
2912
- c.push(X.setter), e = X.rest;
2912
+ c.push(Q.setter), e = Q.rest;
2913
2913
  } else {
2914
2914
  if (d.match(_r))
2915
2915
  throw new RangeError(
@@ -2941,8 +2941,8 @@ function vr(e) {
2941
2941
  return e.match(yr)[1].replace(br, "'");
2942
2942
  }
2943
2943
  function Ct(e, a, t) {
2944
- const n = ca(), r = Pr(e, t.timeZone, t.locale ?? n.locale);
2945
- return "formatToParts" in r ? wr(r, a) : Rr(r, a);
2944
+ const n = ca(), r = Rr(e, t.timeZone, t.locale ?? n.locale);
2945
+ return "formatToParts" in r ? wr(r, a) : Pr(r, a);
2946
2946
  }
2947
2947
  function wr(e, a) {
2948
2948
  const t = e.formatToParts(a);
@@ -2950,11 +2950,11 @@ function wr(e, a) {
2950
2950
  if (t[n].type === "timeZoneName")
2951
2951
  return t[n].value;
2952
2952
  }
2953
- function Rr(e, a) {
2953
+ function Pr(e, a) {
2954
2954
  const t = e.format(a).replace(/\u200E/g, ""), n = / [\w-+ ]+$/.exec(t);
2955
2955
  return n ? n[0].substr(1) : "";
2956
2956
  }
2957
- function Pr(e, a, t) {
2957
+ function Rr(e, a, t) {
2958
2958
  return new Intl.DateTimeFormat(t ? [t.code, "en-US"] : void 0, {
2959
2959
  timeZone: a,
2960
2960
  timeZoneName: e
@@ -3104,7 +3104,7 @@ const Lr = 60 * 1e3, $r = {
3104
3104
  // so this token always has the same output as `XX`
3105
3105
  case "XXXX":
3106
3106
  case "XX":
3107
- return J(n);
3107
+ return Z(n);
3108
3108
  // Hours, minutes and optional seconds with `:` delimeter
3109
3109
  // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets
3110
3110
  // so this token always has the same output as `XXX`
@@ -3112,7 +3112,7 @@ const Lr = 60 * 1e3, $r = {
3112
3112
  case "XXX":
3113
3113
  // Hours and minutes with `:` delimeter
3114
3114
  default:
3115
- return J(n, ":");
3115
+ return Z(n, ":");
3116
3116
  }
3117
3117
  },
3118
3118
  // Timezone (ISO-8601. If offset is 0, output is `'+00:00'` or equivalent)
@@ -3127,7 +3127,7 @@ const Lr = 60 * 1e3, $r = {
3127
3127
  // so this token always has the same output as `xx`
3128
3128
  case "xxxx":
3129
3129
  case "xx":
3130
- return J(n);
3130
+ return Z(n);
3131
3131
  // Hours, minutes and optional seconds with `:` delimeter
3132
3132
  // Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets
3133
3133
  // so this token always has the same output as `xxx`
@@ -3135,7 +3135,7 @@ const Lr = 60 * 1e3, $r = {
3135
3135
  case "xxx":
3136
3136
  // Hours and minutes with `:` delimeter
3137
3137
  default:
3138
- return J(n, ":");
3138
+ return Z(n, ":");
3139
3139
  }
3140
3140
  },
3141
3141
  // Timezone (GMT)
@@ -3150,7 +3150,7 @@ const Lr = 60 * 1e3, $r = {
3150
3150
  // Long
3151
3151
  case "OOOO":
3152
3152
  default:
3153
- return "GMT" + J(n, ":");
3153
+ return "GMT" + Z(n, ":");
3154
3154
  }
3155
3155
  },
3156
3156
  // Timezone (specific non-location)
@@ -3181,12 +3181,12 @@ function ge(e, a) {
3181
3181
  n = "0" + n;
3182
3182
  return t + n;
3183
3183
  }
3184
- function J(e, a = "") {
3184
+ function Z(e, a = "") {
3185
3185
  const t = e > 0 ? "-" : "+", n = Math.abs(e), r = ge(Math.floor(n / 60), 2), s = ge(Math.floor(n % 60), 2);
3186
3186
  return t + r + a + s;
3187
3187
  }
3188
3188
  function Ft(e, a) {
3189
- return e % 60 === 0 ? (e > 0 ? "-" : "+") + ge(Math.abs(e) / 60, 2) : J(e, a);
3189
+ return e % 60 === 0 ? (e > 0 ? "-" : "+") + ge(Math.abs(e) / 60, 2) : Z(e, a);
3190
3190
  }
3191
3191
  function Gr(e, a = "") {
3192
3192
  const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.floor(n / 60), s = n % 60;
@@ -3382,7 +3382,7 @@ function Vr(e, a, t = {}) {
3382
3382
  return m ? i.substring(0, l - 1) + i.substring(l + 1) : i;
3383
3383
  }, a);
3384
3384
  }
3385
- return Rn(e, a, t);
3385
+ return Pn(e, a, t);
3386
3386
  }
3387
3387
  function Ar(e, a, t) {
3388
3388
  e = fe(e, t);
@@ -3536,7 +3536,7 @@ const Xr = (e) => new TextEncoder().encode(e), Zr = (e) => {
3536
3536
  return `${e || ""}`;
3537
3537
  const t = `0${a ? "." + "0".repeat(a) : ""}`, n = parseFloat(e);
3538
3538
  return isNaN(n) || typeof e == "string" && /[^\d.,]/.test(e) ? `${t}` : `${n.toFixed(a).replace(/\B(?=(\d{3})+(?!\d))/g, ",")}`;
3539
- }, q = (e, a, t) => {
3539
+ }, ee = (e, a, t) => {
3540
3540
  const n = [
3541
3541
  42563,
3542
3542
  42564,
@@ -3565,7 +3565,7 @@ var Y = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto =
3565
3565
  const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3566
3566
  __proto__: null,
3567
3567
  PaymentType: Y
3568
- }, Symbol.toStringTag, { value: "Module" })), Re = {
3568
+ }, Symbol.toStringTag, { value: "Module" })), Pe = {
3569
3569
  depositBank: !1,
3570
3570
  depositDateTime: !1,
3571
3571
  depositDetail: !1,
@@ -3579,7 +3579,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3579
3579
  type: Y.unknown,
3580
3580
  promo: [],
3581
3581
  bank: [],
3582
- requiredField: Re,
3582
+ requiredField: Pe,
3583
3583
  hintMsg: ""
3584
3584
  }, gs = (e) => {
3585
3585
  var a;
@@ -3629,7 +3629,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3629
3629
  paymentList: n
3630
3630
  };
3631
3631
  })) ?? [];
3632
- }, Pe = (e) => {
3632
+ }, Re = (e) => {
3633
3633
  const a = {
3634
3634
  id: -1,
3635
3635
  name: "excludePromo",
@@ -3678,7 +3678,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3678
3678
  name: "manualMethod",
3679
3679
  pathName: e,
3680
3680
  type: n,
3681
- promo: Pe(a.promo),
3681
+ promo: Re(a.promo),
3682
3682
  bank: a.bank.map((s) => {
3683
3683
  const o = s.list && s.list.length > 0 ? s.list[0].mintransaction ?? "0.00" : "0.00", l = s.list && s.list.length > 0 ? s.list[0].maxtransaction ?? "0.00" : "0.00", { amountList: m, minAmount: i, maxAmount: c } = le(
3684
3684
  Number(o),
@@ -3716,7 +3716,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3716
3716
  name: "onlineBankingMethod",
3717
3717
  pathName: e,
3718
3718
  type: n,
3719
- promo: Pe(a.promo),
3719
+ promo: Re(a.promo),
3720
3720
  bank: a.banklist.map((s) => {
3721
3721
  let o = "0.00", l = "0.00";
3722
3722
  const m = s.bankindex ?? 0;
@@ -3757,7 +3757,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3757
3757
  gateway: [p, ...g]
3758
3758
  };
3759
3759
  }),
3760
- requiredField: Re,
3760
+ requiredField: Pe,
3761
3761
  hintMsg: ""
3762
3762
  };
3763
3763
  }, ps = (e, a, t, n) => {
@@ -3804,9 +3804,9 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3804
3804
  name: "autoMethod",
3805
3805
  pathName: e,
3806
3806
  type: r,
3807
- promo: Pe(t.promo),
3807
+ promo: Re(t.promo),
3808
3808
  bank: s,
3809
- requiredField: Re,
3809
+ requiredField: Pe,
3810
3810
  hintMsg: ""
3811
3811
  };
3812
3812
  }, ys = (e, a, t) => {
@@ -3816,7 +3816,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3816
3816
  name: "fixAmountMethod",
3817
3817
  pathName: e,
3818
3818
  type: n,
3819
- promo: Pe(t.promo),
3819
+ promo: Re(t.promo),
3820
3820
  bank: t.bank.map((s) => {
3821
3821
  const o = s.amtlist.map(Number).sort((m, i) => m - i);
3822
3822
  return {
@@ -3827,7 +3827,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3827
3827
  max: o.length > 0 ? o[o.length - 1] : 0
3828
3828
  };
3829
3829
  }),
3830
- requiredField: Re,
3830
+ requiredField: Pe,
3831
3831
  hintMsg: ""
3832
3832
  };
3833
3833
  }, bs = (e) => (e == null ? void 0 : e.map((a) => ({
@@ -3864,8 +3864,8 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3864
3864
  trial: (c.flag & 4) > 0,
3865
3865
  new: (c.flag & 8) > 0
3866
3866
  },
3867
- imageUrl: `${e.mdDomains[c.mdDomains_id]}${q(c.img, c.id_GameMaster, `?ts=${c.filemtime}`)}`,
3868
- logoUrl: `/image/platform_logo/${c.img.split("/").pop()}?v=1`,
3867
+ imageUrl: `${e.mdDomains[c.mdDomains_id]}${ee(c.img, c.id_GameMaster, `?ts=${c.filemtime}`)}`,
3868
+ logoUrl: c.com ? `/image/platform_logo/platform_logo_${c.com}.png?v=1` : "",
3869
3869
  rate: "0.00",
3870
3870
  jackpotAmount: ""
3871
3871
  }))) ?? [] : []
@@ -3885,8 +3885,8 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3885
3885
  trial: (l.flag ?? 0) > 0,
3886
3886
  new: (l.flag ?? 0) > 0
3887
3887
  },
3888
- imageUrl: e.mdDomains && e.mdDomains.length > 0 ? `${e.mdDomains[l.mdDomains_id ?? 0]}${q(l.img ?? "", l.id ?? 0, `?ts=${l.filemtime}`)}` : "",
3889
- logoUrl: l.img ? `/image/platform_logo/${l.img.split("/").pop()}?v=1` : "",
3888
+ imageUrl: e.mdDomains && e.mdDomains.length > 0 ? `${e.mdDomains[l.mdDomains_id ?? 0]}${ee(l.img ?? "", l.id ?? 0, `?ts=${l.filemtime}`)}` : "",
3889
+ logoUrl: l.code_PlatformProduct ? `/image/platform_logo/platform_logo_${l.code_PlatformProduct}.png?v=1` : "",
3890
3890
  rate: "0.00",
3891
3891
  jackpotAmount: l.jackpotAmount ?? ""
3892
3892
  }))) == null ? void 0 : o.sort((l, m) => (m.jackpotAmount ? 1 : 0) - (l.jackpotAmount ? 1 : 0))) ?? []
@@ -3895,7 +3895,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3895
3895
  };
3896
3896
  }, Ts = (e) => ({
3897
3897
  list: e.mdGrade.map((a) => {
3898
- var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, X, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, yt, bt, ht, _t, Tt, vt, wt, Rt, Pt, Dt, kt;
3898
+ var t, n, r, s, o, l, m, i, c, y, p, g, T, _, k, C, D, h, b, d, $, ne, Q, re, se, Ye, Be, He, Ue, qe, Ve, Ae, Qe, Xe, Ze, Je, Ke, et, tt, at, nt, rt, st, ot, it, ut, ct, lt, dt, mt, gt, ft, pt, yt, bt, ht, _t, Tt, vt, wt, Pt, Rt, Dt, kt;
3899
3899
  return {
3900
3900
  id: a.gradeindex,
3901
3901
  is_current_level: !1,
@@ -3939,7 +3939,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3939
3939
  bonus: v(((h = (D = a.benefit) == null ? void 0 : D.weekly) == null ? void 0 : h.bonus) ?? "0"),
3940
3940
  bonus_name: ((d = (b = a.benefit) == null ? void 0 : b.weekly) == null ? void 0 : d.bonus_name) ?? "",
3941
3941
  turnover: v(((ne = ($ = a.benefit) == null ? void 0 : $.weekly) == null ? void 0 : ne.turnover) ?? "0"),
3942
- turnover_name: ((re = (X = a.benefit) == null ? void 0 : X.weekly) == null ? void 0 : re.turnover_name) ?? ""
3942
+ turnover_name: ((re = (Q = a.benefit) == null ? void 0 : Q.weekly) == null ? void 0 : re.turnover_name) ?? ""
3943
3943
  },
3944
3944
  upgrade: {
3945
3945
  isShow: !0,
@@ -3973,7 +3973,7 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3973
3973
  isShow: !0,
3974
3974
  bonus: v(((Tt = (_t = a.benefit) == null ? void 0 : _t.salary_20th) == null ? void 0 : Tt.bonus) ?? "0"),
3975
3975
  bonus_name: ((wt = (vt = a.benefit) == null ? void 0 : vt.salary_20th) == null ? void 0 : wt.bonus_name) ?? "",
3976
- turnover: v(((Pt = (Rt = a.benefit) == null ? void 0 : Rt.salary_20th) == null ? void 0 : Pt.turnover) ?? "0"),
3976
+ turnover: v(((Rt = (Pt = a.benefit) == null ? void 0 : Pt.salary_20th) == null ? void 0 : Rt.turnover) ?? "0"),
3977
3977
  turnover_name: ((kt = (Dt = a.benefit) == null ? void 0 : Dt.salary_20th) == null ? void 0 : kt.turnover_name) ?? ""
3978
3978
  }
3979
3979
  }
@@ -4098,34 +4098,34 @@ const Wu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4098
4098
  }).sort((a, t) => a.claimable && !t.claimable ? -1 : !a.claimable && t.claimable ? 1 : 0)
4099
4099
  }), ws = (e) => ({
4100
4100
  month: {
4101
- status: V(e.month)
4101
+ status: q(e.month)
4102
4102
  },
4103
4103
  week: {
4104
- status: V(e.week)
4104
+ status: q(e.week)
4105
4105
  },
4106
4106
  day: {
4107
- status: V(e.day)
4107
+ status: q(e.day)
4108
4108
  },
4109
4109
  birthday: {
4110
- status: V(e.birthday)
4110
+ status: q(e.birthday)
4111
4111
  },
4112
4112
  salary_1st: {
4113
- status: V(e.salary1st)
4113
+ status: q(e.salary1st)
4114
4114
  },
4115
4115
  salary_10th: {
4116
- status: V(e.salary10th)
4116
+ status: q(e.salary10th)
4117
4117
  },
4118
4118
  salary_20th: {
4119
- status: V(e.salary20th)
4119
+ status: q(e.salary20th)
4120
4120
  }
4121
- }), V = (e) => ({
4121
+ }), q = (e) => ({
4122
4122
  claimable: e === 1,
4123
4123
  expired: e === 0,
4124
4124
  claimed: e === -1
4125
- }), Rs = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4125
+ }), Ps = (e) => e.mdVipSetting.filter((t) => t.status == 1).map((t) => ({
4126
4126
  fieldName: t.fieldname,
4127
4127
  showName: t.showname
4128
- })), Ps = (e) => ({
4128
+ })), Rs = (e) => ({
4129
4129
  current_deposit: e.deposit,
4130
4130
  current_turnover: e.turnOver,
4131
4131
  current_grade_id: e.mdCurrentGrade ? e.mdCurrentGrade.gradeindex : 0,
@@ -4342,10 +4342,10 @@ const Ls = (e) => {
4342
4342
  status: e.status == 1,
4343
4343
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
4344
4344
  flag: e.flag
4345
- }), P = (e) => ({
4345
+ }), R = (e) => ({
4346
4346
  status: e.status == 1,
4347
4347
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? ""
4348
- }), Ws = (e) => P(e), Es = (e) => {
4348
+ }), Ws = (e) => R(e), Es = (e) => {
4349
4349
  var a, t, n, r, s;
4350
4350
  return {
4351
4351
  bankCard: ((a = e.bankCard) == null ? void 0 : a.map((o) => {
@@ -4412,7 +4412,7 @@ const Ls = (e) => {
4412
4412
  withdrawCount: e.withdrawCount,
4413
4413
  withdrawMin135: Number(e.withdrawMin_135) && Number(e.withdrawMin_135) > 0 ? Number(e.withdrawMin_135) : Number(e.withdrawMin),
4414
4414
  withdrawMax135: Number(e.withdrawMax_135) && Number(e.withdrawMax_135) > 0 ? Number(e.withdrawMax_135) : Number(e.withdrawMax)
4415
- }), Bs = (e) => P(e);
4415
+ }), Bs = (e) => R(e);
4416
4416
  var L = /* @__PURE__ */ ((e) => (e.deposit = "deposit", e.withdraw = "withdraw", e.promo = "promotion", e.manual = "adjustment", e.cashIn = "cashIn", e.cashOut = "cashOut", e.transfer = "transfer", e.incentive = "incentive", e.upgradeBonus = "upgradeBonus", e.extension = "extension", e.creditTransfer = "creditTransfer", e.shareHolder = "shareHolderDividend", e))(L || {});
4417
4417
  const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4418
4418
  __proto__: null,
@@ -4562,8 +4562,8 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4562
4562
  trial: !1,
4563
4563
  new: !1
4564
4564
  },
4565
- imageUrl: `${e.mdDomains[s.mdDomains_id]}${q(s.img, s.id, `?ts=${s.filemtime}`)}`,
4566
- logoUrl: `${e.mdDomains[s.mdDomains_id]}${q(s.img, s.id, `?ts=${s.filemtime}`)}`,
4565
+ imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
4566
+ logoUrl: s.code_PlatformMaster ? `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1` : "",
4567
4567
  rate: "0.00",
4568
4568
  jackpotAmount: ""
4569
4569
  }))) ?? []
@@ -4787,7 +4787,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4787
4787
  }
4788
4788
  }
4789
4789
  return a;
4790
- }, po = (e) => P(e), yo = (e) => P(e), bo = (e) => {
4790
+ }, po = (e) => R(e), yo = (e) => R(e), bo = (e) => {
4791
4791
  var a, t, n, r, s;
4792
4792
  return {
4793
4793
  status: e.status == 1,
@@ -4819,7 +4819,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4819
4819
  regex: a.regex,
4820
4820
  showName: a.showname,
4821
4821
  inputHelper: a.inputHelper
4822
- })) : [], _o = (e) => P(e), To = (e) => e, vo = (e) => {
4822
+ })) : [], _o = (e) => R(e), To = (e) => e, vo = (e) => {
4823
4823
  var a;
4824
4824
  return {
4825
4825
  status: e.status == 1,
@@ -4829,15 +4829,15 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4829
4829
  ledgerIndex: e.checkgame.ledgerindex ?? 0,
4830
4830
  amount: e.checkgame.amount ?? ""
4831
4831
  };
4832
- }, wo = (e) => P(e), Ro = (e) => ({
4832
+ }, wo = (e) => R(e), Po = (e) => ({
4833
4833
  status: e.status == 1,
4834
4834
  message: e.message,
4835
4835
  user: e.user ?? ""
4836
- }), Po = (e) => ({
4836
+ }), Ro = (e) => ({
4837
4837
  status: e.status == 1,
4838
4838
  message: e.msg ?? "",
4839
4839
  amount: e.amount ?? ""
4840
- }), Do = (e) => P(e), ko = (e) => {
4840
+ }), Do = (e) => R(e), ko = (e) => {
4841
4841
  var a;
4842
4842
  return {
4843
4843
  status: e.status == 1,
@@ -4871,10 +4871,10 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4871
4871
  message: e.msg ?? "",
4872
4872
  form: e.form ?? "",
4873
4873
  gameUrl: e.data ?? ""
4874
- }), So = (e) => P(e), Io = (e) => P(e), je = (e) => ({
4874
+ }), So = (e) => R(e), Io = (e) => R(e), je = (e) => ({
4875
4875
  status: e.status == 1,
4876
4876
  message: e.errormessage ?? ""
4877
- }), jo = (e) => P(e), Co = (e) => e, No = (e) => P(e), Lo = (e) => {
4877
+ }), jo = (e) => R(e), Co = (e) => e, No = (e) => R(e), Lo = (e) => {
4878
4878
  var a;
4879
4879
  return {
4880
4880
  platformProduct: ((a = e.mdPlatformProduct) == null ? void 0 : a.map((t) => ({
@@ -4898,7 +4898,7 @@ const Eu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4898
4898
  }))) ?? []
4899
4899
  };
4900
4900
  })) ?? [];
4901
- }, Go = (e) => P(e), Fo = (e) => P(e), zo = (e) => P(e), Wo = (e) => P(e), Eo = (e) => P(e), Yo = (e) => P(e), Bo = (e) => P(e), Ho = (e) => ({
4901
+ }, Go = (e) => R(e), Fo = (e) => R(e), zo = (e) => R(e), Wo = (e) => R(e), Eo = (e) => R(e), Yo = (e) => R(e), Bo = (e) => R(e), Ho = (e) => ({
4902
4902
  status: e.status == 1,
4903
4903
  message: e.msg ?? "",
4904
4904
  data: e.data
@@ -5060,7 +5060,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5060
5060
  binded: ((n = e.data) == null ? void 0 : n.binded) ?? !1
5061
5061
  }
5062
5062
  };
5063
- }, ai = (e) => P(e), ni = (e) => {
5063
+ }, ai = (e) => R(e), ni = (e) => {
5064
5064
  var a;
5065
5065
  return {
5066
5066
  status: e.status == 1,
@@ -5070,7 +5070,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5070
5070
  createdAt: t.created_at
5071
5071
  }))) ?? []
5072
5072
  };
5073
- }, ri = (e) => P(e), si = (e) => {
5073
+ }, ri = (e) => R(e), si = (e) => {
5074
5074
  var a, t, n;
5075
5075
  return {
5076
5076
  status: e.status == 1,
@@ -5095,11 +5095,11 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5095
5095
  }))) ?? []
5096
5096
  }
5097
5097
  };
5098
- }, oi = (e) => P(e), ii = (e) => ({
5098
+ }, oi = (e) => R(e), ii = (e) => ({
5099
5099
  status: e.status == 1,
5100
5100
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5101
5101
  tokenAmount: e.token_amount
5102
- }), ui = (e) => P(e), ci = (e) => {
5102
+ }), ui = (e) => R(e), ci = (e) => {
5103
5103
  let a = 0;
5104
5104
  return e.data != null && typeof e.data == "object" && (a = e.data.amount), {
5105
5105
  status: e.status,
@@ -5182,7 +5182,7 @@ const Yu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5182
5182
  errorMessage: e.errormessage ?? "",
5183
5183
  isAutoTransfer: e.optionkey == "auto" || ((a = e.message) == null ? void 0 : a.optionkey) == "auto" || ((t = e.mdAccountSetting) == null ? void 0 : t.optionkey) == "auto"
5184
5184
  };
5185
- }, yi = (e) => P(e), bi = (e) => ({
5185
+ }, yi = (e) => R(e), bi = (e) => ({
5186
5186
  status: e.status,
5187
5187
  message: e.msg ?? "",
5188
5188
  turnover: e.data ? e.data.turnover : 0,
@@ -5264,7 +5264,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5264
5264
  }, wi = (e) => ({
5265
5265
  status: e.status,
5266
5266
  message: e.msg ?? ""
5267
- }), Ri = (e) => ({
5267
+ }), Pi = (e) => ({
5268
5268
  status: e.status == 1,
5269
5269
  socialLogin: e.social_login == 1,
5270
5270
  errorMessage: e.erorrmessage ?? "",
@@ -5276,7 +5276,7 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5276
5276
  maxLength: a.maxlen ?? "0",
5277
5277
  inputHelper: a.inputHelper ?? ""
5278
5278
  }))
5279
- }), Pi = (e) => ({
5279
+ }), Ri = (e) => ({
5280
5280
  currentPage: e.mdGameLists.current_page ?? 0,
5281
5281
  lastPage: e.mdGameLists.last_page ?? 0,
5282
5282
  data: e.mdGameLists.data && e.mdGameLists.data.length > 0 ? e.mdGameLists.data.map((a) => ({
@@ -5290,16 +5290,16 @@ const Bu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5290
5290
  trial: !1,
5291
5291
  new: !1
5292
5292
  },
5293
- imageUrl: `${e.mdDomains[a.mdDomains_id]}${q(a.img, a.id, `?ts=${a.filemtime}`)}`,
5294
- logoUrl: `/image/platform_logo/${a.img.split("/").pop()}?v=1`,
5293
+ imageUrl: `${e.mdDomains[a.mdDomains_id]}${ee(a.img, a.id, `?ts=${a.filemtime}`)}`,
5294
+ logoUrl: a.code ? `/image/platform_logo/platform_logo_${a.code}.png?v=1` : "",
5295
5295
  rate: "0.00",
5296
5296
  jackpotAmount: ""
5297
5297
  })) ?? [] : []
5298
- }), Di = (e) => P(e), ki = (e) => P(e);
5299
- var Q = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(Q || {});
5298
+ }), Di = (e) => R(e), ki = (e) => R(e);
5299
+ var A = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(A || {});
5300
5300
  const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5301
5301
  __proto__: null,
5302
- AccumulateDepositStatus: Q
5302
+ AccumulateDepositStatus: A
5303
5303
  }, Symbol.toStringTag, { value: "Module" })), xi = (e) => {
5304
5304
  if (e.status == 0)
5305
5305
  return {
@@ -5313,7 +5313,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5313
5313
  a = {
5314
5314
  buttonStatus: e.data.tier.filter(
5315
5315
  (o) => o.claimable == "1" && o.collected != "1"
5316
- ).length > 0 ? Q.collectable : Q.collected,
5316
+ ).length > 0 ? A.collectable : A.collected,
5317
5317
  dateFrom: e.data.datefrom,
5318
5318
  dateTo: e.data.dateto,
5319
5319
  progress: {
@@ -5324,7 +5324,7 @@ const Hu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5324
5324
  list: e.data.tier.map((o) => ({
5325
5325
  total: o.requirement,
5326
5326
  reward: Number(o.reward),
5327
- status: o.claimable != "1" ? Q.inProgress : o.collected == "1" ? Q.collected : Q.collectable
5327
+ status: o.claimable != "1" ? A.inProgress : o.collected == "1" ? A.collected : A.collectable
5328
5328
  }))
5329
5329
  };
5330
5330
  }
@@ -5592,8 +5592,8 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5592
5592
  trial: !1,
5593
5593
  new: !1
5594
5594
  },
5595
- imageUrl: `${e.mdDomains[s.mdDomains_id]}${q(s.img, s.id, `?ts=${s.filemtime}`)}`,
5596
- logoUrl: `/image/platform_logo/${s.img.split("/").pop()}?v=1`,
5595
+ imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
5596
+ logoUrl: s.code ? `/image/platform_logo/platform_logo_${s.code}.png?v=1` : "",
5597
5597
  rate: "0.00",
5598
5598
  jackpotAmount: ""
5599
5599
  }))) ?? []
@@ -5617,11 +5617,11 @@ const Uu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5617
5617
  status: e.status == 1,
5618
5618
  message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
5619
5619
  tokenAmount: e.token_amount
5620
- }), Ji = (e) => P(e);
5621
- var K = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(K || {});
5620
+ }), Ji = (e) => R(e);
5621
+ var J = /* @__PURE__ */ ((e) => (e.inProgress = "inProgress", e.collectable = "collectable", e.collected = "collected", e))(J || {});
5622
5622
  const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5623
5623
  __proto__: null,
5624
- NewbieMissionStatus: K
5624
+ NewbieMissionStatus: J
5625
5625
  }, Symbol.toStringTag, { value: "Module" })), Ki = (e) => {
5626
5626
  if (e.status == 0 || e.data == null)
5627
5627
  return {
@@ -5629,8 +5629,8 @@ const qu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5629
5629
  message: e.msg ?? "",
5630
5630
  data: null
5631
5631
  };
5632
- let a = K.inProgress;
5633
- return e.data.has_claimed ? a = K.collected : a = e.data.claimable ? K.collectable : K.inProgress, {
5632
+ let a = J.inProgress;
5633
+ return e.data.has_claimed ? a = J.collected : a = e.data.claimable ? J.collectable : J.inProgress, {
5634
5634
  status: e.status == 1,
5635
5635
  message: e.msg ?? "",
5636
5636
  data: {
@@ -6205,10 +6205,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6205
6205
  replyBy: a.replyby ?? "",
6206
6206
  replyOn: a.replyon ?? ""
6207
6207
  })) ?? []
6208
- }, Ru = (e) => ({
6208
+ }, Pu = (e) => ({
6209
6209
  status: e.status == 1,
6210
6210
  message: e.message ?? ""
6211
- }), Pu = (e) => {
6211
+ }), Ru = (e) => {
6212
6212
  if (u.casinoGameList in e && (e != null && e.casinoGameList)) {
6213
6213
  const a = e.casinoGameList;
6214
6214
  if (u.getPlatformTurnoverRate in e && (e != null && e.getPlatformTurnoverRate)) {
@@ -6247,8 +6247,8 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6247
6247
  trial: !1,
6248
6248
  new: !1
6249
6249
  },
6250
- imageUrl: `${e.mdDomains[s.mdDomains_id]}${q(s.img, s.id, `?ts=${s.filemtime}`)}`,
6251
- logoUrl: `${e.mdDomains[s.mdDomains_id]}${q(s.img, s.id, `?ts=${s.filemtime}`)}`,
6250
+ imageUrl: `${e.mdDomains[s.mdDomains_id]}${ee(s.img, s.id, `?ts=${s.filemtime}`)}`,
6251
+ logoUrl: s.code_PlatformMaster ? `/image/platform_logo/platform_logo_${s.code_PlatformMaster}.png?v=1` : "",
6252
6252
  rate: "0.00",
6253
6253
  jackpotAmount: ""
6254
6254
  }))) ?? []
@@ -6301,10 +6301,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6301
6301
  o.result[i] = ws(c);
6302
6302
  break;
6303
6303
  case u.vipFieldStatus:
6304
- o.result[i] = Rs(c);
6304
+ o.result[i] = Ps(c);
6305
6305
  break;
6306
6306
  case u.vipStatus:
6307
- o.result[i] = Ps(c);
6307
+ o.result[i] = Rs(c);
6308
6308
  break;
6309
6309
  case u.promotion:
6310
6310
  o.result[i] = vs(c);
@@ -6515,12 +6515,12 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6515
6515
  o.result[i] = wo(c);
6516
6516
  break;
6517
6517
  case u.getUsernameByRefer:
6518
- o.result[i] = Ro(
6518
+ o.result[i] = Po(
6519
6519
  c
6520
6520
  );
6521
6521
  break;
6522
6522
  case u.applyPromo:
6523
- o.result[i] = Po(c);
6523
+ o.result[i] = Ro(c);
6524
6524
  break;
6525
6525
  case u.applyRedPacket:
6526
6526
  o.result[i] = Do(c);
@@ -6748,10 +6748,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6748
6748
  );
6749
6749
  break;
6750
6750
  case u.registerForm:
6751
- o.result[i] = Ri(c);
6751
+ o.result[i] = Pi(c);
6752
6752
  break;
6753
6753
  case u.getFavouriteGame:
6754
- o.result[i] = Pi(
6754
+ o.result[i] = Ri(
6755
6755
  c
6756
6756
  );
6757
6757
  break;
@@ -6886,14 +6886,14 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6886
6886
  o.result[i] = wu(c);
6887
6887
  break;
6888
6888
  case u.submitFeedback:
6889
- o.result[i] = Ru(c);
6889
+ o.result[i] = Pu(c);
6890
6890
  break;
6891
6891
  case u.casinoGameList:
6892
6892
  o.result[i] = ku(c);
6893
6893
  break;
6894
6894
  }
6895
6895
  }
6896
- return o.result = iu(o.result), o.result = au(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = lu(o.result), o.result = mu(o.result), o.result = gu(o.result), o.result = yu(o.result), o.result = bu(o.result), o.result = Pu(o.result), o;
6896
+ return o.result = iu(o.result), o.result = au(o.result), o.result = ru(o.result), o.result = ou(o.result), o.result = lu(o.result), o.result = mu(o.result), o.result = gu(o.result), o.result = yu(o.result), o.result = bu(o.result), o.result = Ru(o.result), o;
6897
6897
  } catch (n) {
6898
6898
  return Kt.isAxiosError(n) ? {
6899
6899
  status: ((a = n.response) == null ? void 0 : a.status) || 600,
@@ -7189,10 +7189,10 @@ const Au = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7189
7189
  __proto__: null
7190
7190
  }, Symbol.toStringTag, { value: "Module" })), wc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7191
7191
  __proto__: null
7192
- }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7193
- __proto__: null
7194
7192
  }, Symbol.toStringTag, { value: "Module" })), Pc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7195
7193
  __proto__: null
7194
+ }, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7195
+ __proto__: null
7196
7196
  }, Symbol.toStringTag, { value: "Module" })), Dc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7197
7197
  __proto__: null
7198
7198
  }, Symbol.toStringTag, { value: "Module" })), kc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7300,10 +7300,10 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7300
7300
  __proto__: null
7301
7301
  }, Symbol.toStringTag, { value: "Module" })), wl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7302
7302
  __proto__: null
7303
- }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7304
- __proto__: null
7305
7303
  }, Symbol.toStringTag, { value: "Module" })), Pl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7306
7304
  __proto__: null
7305
+ }, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7306
+ __proto__: null
7307
7307
  }, Symbol.toStringTag, { value: "Module" })), Dl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7308
7308
  __proto__: null
7309
7309
  }, Symbol.toStringTag, { value: "Module" })), kl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -7409,7 +7409,7 @@ const qc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7409
7409
  }, Symbol.toStringTag, { value: "Module" }));
7410
7410
  export {
7411
7411
  pc as addBankCardType,
7412
- Pl as agTransferCreditReportType,
7412
+ Rl as agTransferCreditReportType,
7413
7413
  oc as announcementType,
7414
7414
  Qu as api,
7415
7415
  zu as apiType,
@@ -7435,7 +7435,7 @@ export {
7435
7435
  fl as commissionWithdrawType,
7436
7436
  Fu as config,
7437
7437
  mc as depositType,
7438
- Rc as fishGameListType,
7438
+ Pc as fishGameListType,
7439
7439
  cl as friendListEditType,
7440
7440
  ul as friendListType,
7441
7441
  ic as gameListType,
@@ -7514,7 +7514,7 @@ export {
7514
7514
  Jl as rebateRefundSettingType,
7515
7515
  wl as referralMemberProfileType,
7516
7516
  vl as referralProfileType,
7517
- Rl as registerActionType,
7517
+ Pl as registerActionType,
7518
7518
  ql as registerFormType,
7519
7519
  zc as requestForgetPasswordType,
7520
7520
  Ql as requestForgetUsernameType,
@@ -7527,7 +7527,7 @@ export {
7527
7527
  tc as setLocaleApi,
7528
7528
  Tl as signInRecordType,
7529
7529
  _l as signInViewInfoType,
7530
- Pc as slotGameListType,
7530
+ Rc as slotGameListType,
7531
7531
  ld as spinWheelType,
7532
7532
  yl as submitCryptoAccountType,
7533
7533
  Td as submitFeedbackType,