@everymatrix/casino-tournaments-thumbnail-rule 1.44.0 → 1.45.0

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.
@@ -0,0 +1,4872 @@
1
+ var cr = Object.defineProperty, fr = Object.defineProperties;
2
+ var mr = Object.getOwnPropertyDescriptors;
3
+ var lt = Object.getOwnPropertySymbols;
4
+ var dr = Object.prototype.hasOwnProperty, pr = Object.prototype.propertyIsEnumerable;
5
+ var Oe = (e, t, r) => t in e ? cr(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r, ht = (e, t) => {
6
+ for (var r in t || (t = {}))
7
+ dr.call(t, r) && Oe(e, r, t[r]);
8
+ if (lt)
9
+ for (var r of lt(t))
10
+ pr.call(t, r) && Oe(e, r, t[r]);
11
+ return e;
12
+ }, ct = (e, t) => fr(e, mr(t));
13
+ var M = (e, t, r) => Oe(e, typeof t != "symbol" ? t + "" : t, r);
14
+ var ft = (e, t, r) => new Promise((n, i) => {
15
+ var o = (l) => {
16
+ try {
17
+ a(r.next(l));
18
+ } catch (u) {
19
+ i(u);
20
+ }
21
+ }, s = (l) => {
22
+ try {
23
+ a(r.throw(l));
24
+ } catch (u) {
25
+ i(u);
26
+ }
27
+ }, a = (l) => l.done ? n(l.value) : Promise.resolve(l.value).then(o, s);
28
+ a((r = r.apply(e, t)).next());
29
+ });
30
+ function Z() {
31
+ }
32
+ function Ot(e) {
33
+ return e();
34
+ }
35
+ function mt() {
36
+ return /* @__PURE__ */ Object.create(null);
37
+ }
38
+ function _e(e) {
39
+ e.forEach(Ot);
40
+ }
41
+ function rt(e) {
42
+ return typeof e == "function";
43
+ }
44
+ function It(e, t) {
45
+ return e != e ? t == t : e !== t || e && typeof e == "object" || typeof e == "function";
46
+ }
47
+ function br(e) {
48
+ return Object.keys(e).length === 0;
49
+ }
50
+ function $t(e, ...t) {
51
+ if (e == null) {
52
+ for (const n of t)
53
+ n(void 0);
54
+ return Z;
55
+ }
56
+ const r = e.subscribe(...t);
57
+ return r.unsubscribe ? () => r.unsubscribe() : r;
58
+ }
59
+ function gr(e, t, r) {
60
+ e.$$.on_destroy.push($t(t, r));
61
+ }
62
+ function p(e, t) {
63
+ e.appendChild(t);
64
+ }
65
+ function vr(e, t, r) {
66
+ const n = yr(e);
67
+ if (!n.getElementById(t)) {
68
+ const i = x("style");
69
+ i.id = t, i.textContent = r, _r(n, i);
70
+ }
71
+ }
72
+ function yr(e) {
73
+ if (!e) return document;
74
+ const t = e.getRootNode ? e.getRootNode() : e.ownerDocument;
75
+ return t && /** @type {ShadowRoot} */
76
+ t.host ? (
77
+ /** @type {ShadowRoot} */
78
+ t
79
+ ) : e.ownerDocument;
80
+ }
81
+ function _r(e, t) {
82
+ return p(
83
+ /** @type {Document} */
84
+ e.head || e,
85
+ t
86
+ ), t.sheet;
87
+ }
88
+ function R(e, t, r) {
89
+ e.insertBefore(t, r || null);
90
+ }
91
+ function H(e) {
92
+ e.parentNode && e.parentNode.removeChild(e);
93
+ }
94
+ function x(e) {
95
+ return document.createElement(e);
96
+ }
97
+ function Er(e) {
98
+ return document.createElementNS("http://www.w3.org/2000/svg", e);
99
+ }
100
+ function X(e) {
101
+ return document.createTextNode(e);
102
+ }
103
+ function O() {
104
+ return X(" ");
105
+ }
106
+ function Me() {
107
+ return X("");
108
+ }
109
+ function m(e, t, r) {
110
+ r == null ? e.removeAttribute(t) : e.getAttribute(t) !== r && e.setAttribute(t, r);
111
+ }
112
+ function xr(e) {
113
+ return Array.from(e.childNodes);
114
+ }
115
+ function Y(e, t) {
116
+ t = "" + t, e.data !== t && (e.data = /** @type {string} */
117
+ t);
118
+ }
119
+ class Re {
120
+ constructor(t = !1) {
121
+ /**
122
+ * @private
123
+ * @default false
124
+ */
125
+ M(this, "is_svg", !1);
126
+ /** parent for creating node */
127
+ M(this, "e");
128
+ /** html tag nodes */
129
+ M(this, "n");
130
+ /** target */
131
+ M(this, "t");
132
+ /** anchor */
133
+ M(this, "a");
134
+ this.is_svg = t, this.e = this.n = null;
135
+ }
136
+ /**
137
+ * @param {string} html
138
+ * @returns {void}
139
+ */
140
+ c(t) {
141
+ this.h(t);
142
+ }
143
+ /**
144
+ * @param {string} html
145
+ * @param {HTMLElement | SVGElement} target
146
+ * @param {HTMLElement | SVGElement} anchor
147
+ * @returns {void}
148
+ */
149
+ m(t, r, n = null) {
150
+ this.e || (this.is_svg ? this.e = Er(
151
+ /** @type {keyof SVGElementTagNameMap} */
152
+ r.nodeName
153
+ ) : this.e = x(
154
+ /** @type {keyof HTMLElementTagNameMap} */
155
+ r.nodeType === 11 ? "TEMPLATE" : r.nodeName
156
+ ), this.t = r.tagName !== "TEMPLATE" ? r : (
157
+ /** @type {HTMLTemplateElement} */
158
+ r.content
159
+ ), this.c(t)), this.i(n);
160
+ }
161
+ /**
162
+ * @param {string} html
163
+ * @returns {void}
164
+ */
165
+ h(t) {
166
+ this.e.innerHTML = t, this.n = Array.from(
167
+ this.e.nodeName === "TEMPLATE" ? this.e.content.childNodes : this.e.childNodes
168
+ );
169
+ }
170
+ /**
171
+ * @returns {void} */
172
+ i(t) {
173
+ for (let r = 0; r < this.n.length; r += 1)
174
+ R(this.t, this.n[r], t);
175
+ }
176
+ /**
177
+ * @param {string} html
178
+ * @returns {void}
179
+ */
180
+ p(t) {
181
+ this.d(), this.h(t), this.i(this.a);
182
+ }
183
+ /**
184
+ * @returns {void} */
185
+ d() {
186
+ this.n.forEach(H);
187
+ }
188
+ }
189
+ function Tr(e) {
190
+ const t = {};
191
+ return e.childNodes.forEach(
192
+ /** @param {Element} node */
193
+ (r) => {
194
+ t[r.slot || "default"] = !0;
195
+ }
196
+ ), t;
197
+ }
198
+ let nt;
199
+ function ge(e) {
200
+ nt = e;
201
+ }
202
+ const ae = [], Ve = [];
203
+ let ue = [];
204
+ const dt = [], Br = /* @__PURE__ */ Promise.resolve();
205
+ let ze = !1;
206
+ function wr() {
207
+ ze || (ze = !0, Br.then(z));
208
+ }
209
+ function Xe(e) {
210
+ ue.push(e);
211
+ }
212
+ const Ie = /* @__PURE__ */ new Set();
213
+ let oe = 0;
214
+ function z() {
215
+ if (oe !== 0)
216
+ return;
217
+ const e = nt;
218
+ do {
219
+ try {
220
+ for (; oe < ae.length; ) {
221
+ const t = ae[oe];
222
+ oe++, ge(t), Hr(t.$$);
223
+ }
224
+ } catch (t) {
225
+ throw ae.length = 0, oe = 0, t;
226
+ }
227
+ for (ge(null), ae.length = 0, oe = 0; Ve.length; ) Ve.pop()();
228
+ for (let t = 0; t < ue.length; t += 1) {
229
+ const r = ue[t];
230
+ Ie.has(r) || (Ie.add(r), r());
231
+ }
232
+ ue.length = 0;
233
+ } while (ae.length);
234
+ for (; dt.length; )
235
+ dt.pop()();
236
+ ze = !1, Ie.clear(), ge(e);
237
+ }
238
+ function Hr(e) {
239
+ if (e.fragment !== null) {
240
+ e.update(), _e(e.before_update);
241
+ const t = e.dirty;
242
+ e.dirty = [-1], e.fragment && e.fragment.p(e.ctx, t), e.after_update.forEach(Xe);
243
+ }
244
+ }
245
+ function Cr(e) {
246
+ const t = [], r = [];
247
+ ue.forEach((n) => e.indexOf(n) === -1 ? t.push(n) : r.push(n)), r.forEach((n) => n()), ue = t;
248
+ }
249
+ const Sr = /* @__PURE__ */ new Set();
250
+ function Mr(e, t) {
251
+ e && e.i && (Sr.delete(e), e.i(t));
252
+ }
253
+ function Rr(e, t, r) {
254
+ const { fragment: n, after_update: i } = e.$$;
255
+ n && n.m(t, r), Xe(() => {
256
+ const o = e.$$.on_mount.map(Ot).filter(rt);
257
+ e.$$.on_destroy ? e.$$.on_destroy.push(...o) : _e(o), e.$$.on_mount = [];
258
+ }), i.forEach(Xe);
259
+ }
260
+ function kr(e, t) {
261
+ const r = e.$$;
262
+ r.fragment !== null && (Cr(r.after_update), _e(r.on_destroy), r.fragment && r.fragment.d(t), r.on_destroy = r.fragment = null, r.ctx = []);
263
+ }
264
+ function Nr(e, t) {
265
+ e.$$.dirty[0] === -1 && (ae.push(e), wr(), e.$$.dirty.fill(0)), e.$$.dirty[t / 31 | 0] |= 1 << t % 31;
266
+ }
267
+ function Ar(e, t, r, n, i, o, s = null, a = [-1]) {
268
+ const l = nt;
269
+ ge(e);
270
+ const u = e.$$ = {
271
+ fragment: null,
272
+ ctx: [],
273
+ // state
274
+ props: o,
275
+ update: Z,
276
+ not_equal: i,
277
+ bound: mt(),
278
+ // lifecycle
279
+ on_mount: [],
280
+ on_destroy: [],
281
+ on_disconnect: [],
282
+ before_update: [],
283
+ after_update: [],
284
+ context: new Map(t.context || (l ? l.$$.context : [])),
285
+ // everything else
286
+ callbacks: mt(),
287
+ dirty: a,
288
+ skip_bound: !1,
289
+ root: t.target || l.$$.root
290
+ };
291
+ s && s(u.root);
292
+ let h = !1;
293
+ if (u.ctx = r ? r(e, t.props || {}, (c, f, ...g) => {
294
+ const v = g.length ? g[0] : f;
295
+ return u.ctx && i(u.ctx[c], u.ctx[c] = v) && (!u.skip_bound && u.bound[c] && u.bound[c](v), h && Nr(e, c)), f;
296
+ }) : [], u.update(), h = !0, _e(u.before_update), u.fragment = n ? n(u.ctx) : !1, t.target) {
297
+ if (t.hydrate) {
298
+ const c = xr(t.target);
299
+ u.fragment && u.fragment.l(c), c.forEach(H);
300
+ } else
301
+ u.fragment && u.fragment.c();
302
+ t.intro && Mr(e.$$.fragment), Rr(e, t.target, t.anchor), z();
303
+ }
304
+ ge(l);
305
+ }
306
+ let Dt;
307
+ typeof HTMLElement == "function" && (Dt = class extends HTMLElement {
308
+ constructor(t, r, n) {
309
+ super();
310
+ /** The Svelte component constructor */
311
+ M(this, "$$ctor");
312
+ /** Slots */
313
+ M(this, "$$s");
314
+ /** The Svelte component instance */
315
+ M(this, "$$c");
316
+ /** Whether or not the custom element is connected */
317
+ M(this, "$$cn", !1);
318
+ /** Component props data */
319
+ M(this, "$$d", {});
320
+ /** `true` if currently in the process of reflecting component props back to attributes */
321
+ M(this, "$$r", !1);
322
+ /** @type {Record<string, CustomElementPropDefinition>} Props definition (name, reflected, type etc) */
323
+ M(this, "$$p_d", {});
324
+ /** @type {Record<string, Function[]>} Event listeners */
325
+ M(this, "$$l", {});
326
+ /** @type {Map<Function, Function>} Event listener unsubscribe functions */
327
+ M(this, "$$l_u", /* @__PURE__ */ new Map());
328
+ this.$$ctor = t, this.$$s = r, n && this.attachShadow({ mode: "open" });
329
+ }
330
+ addEventListener(t, r, n) {
331
+ if (this.$$l[t] = this.$$l[t] || [], this.$$l[t].push(r), this.$$c) {
332
+ const i = this.$$c.$on(t, r);
333
+ this.$$l_u.set(r, i);
334
+ }
335
+ super.addEventListener(t, r, n);
336
+ }
337
+ removeEventListener(t, r, n) {
338
+ if (super.removeEventListener(t, r, n), this.$$c) {
339
+ const i = this.$$l_u.get(r);
340
+ i && (i(), this.$$l_u.delete(r));
341
+ }
342
+ }
343
+ connectedCallback() {
344
+ return ft(this, null, function* () {
345
+ if (this.$$cn = !0, !this.$$c) {
346
+ let t = function(o) {
347
+ return () => {
348
+ let s;
349
+ return {
350
+ c: function() {
351
+ s = x("slot"), o !== "default" && m(s, "name", o);
352
+ },
353
+ /**
354
+ * @param {HTMLElement} target
355
+ * @param {HTMLElement} [anchor]
356
+ */
357
+ m: function(u, h) {
358
+ R(u, s, h);
359
+ },
360
+ d: function(u) {
361
+ u && H(s);
362
+ }
363
+ };
364
+ };
365
+ };
366
+ if (yield Promise.resolve(), !this.$$cn || this.$$c)
367
+ return;
368
+ const r = {}, n = Tr(this);
369
+ for (const o of this.$$s)
370
+ o in n && (r[o] = [t(o)]);
371
+ for (const o of this.attributes) {
372
+ const s = this.$$g_p(o.name);
373
+ s in this.$$d || (this.$$d[s] = Be(s, o.value, this.$$p_d, "toProp"));
374
+ }
375
+ for (const o in this.$$p_d)
376
+ !(o in this.$$d) && this[o] !== void 0 && (this.$$d[o] = this[o], delete this[o]);
377
+ this.$$c = new this.$$ctor({
378
+ target: this.shadowRoot || this,
379
+ props: ct(ht({}, this.$$d), {
380
+ $$slots: r,
381
+ $$scope: {
382
+ ctx: []
383
+ }
384
+ })
385
+ });
386
+ const i = () => {
387
+ this.$$r = !0;
388
+ for (const o in this.$$p_d)
389
+ if (this.$$d[o] = this.$$c.$$.ctx[this.$$c.$$.props[o]], this.$$p_d[o].reflect) {
390
+ const s = Be(
391
+ o,
392
+ this.$$d[o],
393
+ this.$$p_d,
394
+ "toAttribute"
395
+ );
396
+ s == null ? this.removeAttribute(this.$$p_d[o].attribute || o) : this.setAttribute(this.$$p_d[o].attribute || o, s);
397
+ }
398
+ this.$$r = !1;
399
+ };
400
+ this.$$c.$$.after_update.push(i), i();
401
+ for (const o in this.$$l)
402
+ for (const s of this.$$l[o]) {
403
+ const a = this.$$c.$on(o, s);
404
+ this.$$l_u.set(s, a);
405
+ }
406
+ this.$$l = {};
407
+ }
408
+ });
409
+ }
410
+ // We don't need this when working within Svelte code, but for compatibility of people using this outside of Svelte
411
+ // and setting attributes through setAttribute etc, this is helpful
412
+ attributeChangedCallback(t, r, n) {
413
+ var i;
414
+ this.$$r || (t = this.$$g_p(t), this.$$d[t] = Be(t, n, this.$$p_d, "toProp"), (i = this.$$c) == null || i.$set({ [t]: this.$$d[t] }));
415
+ }
416
+ disconnectedCallback() {
417
+ this.$$cn = !1, Promise.resolve().then(() => {
418
+ !this.$$cn && this.$$c && (this.$$c.$destroy(), this.$$c = void 0);
419
+ });
420
+ }
421
+ $$g_p(t) {
422
+ return Object.keys(this.$$p_d).find(
423
+ (r) => this.$$p_d[r].attribute === t || !this.$$p_d[r].attribute && r.toLowerCase() === t
424
+ ) || t;
425
+ }
426
+ });
427
+ function Be(e, t, r, n) {
428
+ var o;
429
+ const i = (o = r[e]) == null ? void 0 : o.type;
430
+ if (t = i === "Boolean" && typeof t != "boolean" ? t != null : t, !n || !r[e])
431
+ return t;
432
+ if (n === "toAttribute")
433
+ switch (i) {
434
+ case "Object":
435
+ case "Array":
436
+ return t == null ? null : JSON.stringify(t);
437
+ case "Boolean":
438
+ return t ? "" : null;
439
+ case "Number":
440
+ return t == null ? null : t;
441
+ default:
442
+ return t;
443
+ }
444
+ else
445
+ switch (i) {
446
+ case "Object":
447
+ case "Array":
448
+ return t && JSON.parse(t);
449
+ case "Boolean":
450
+ return t;
451
+ case "Number":
452
+ return t != null ? +t : t;
453
+ default:
454
+ return t;
455
+ }
456
+ }
457
+ function Lr(e, t, r, n, i, o) {
458
+ let s = class extends Dt {
459
+ constructor() {
460
+ super(e, r, i), this.$$p_d = t;
461
+ }
462
+ static get observedAttributes() {
463
+ return Object.keys(t).map(
464
+ (a) => (t[a].attribute || a).toLowerCase()
465
+ );
466
+ }
467
+ };
468
+ return Object.keys(t).forEach((a) => {
469
+ Object.defineProperty(s.prototype, a, {
470
+ get() {
471
+ return this.$$c && a in this.$$c ? this.$$c[a] : this.$$d[a];
472
+ },
473
+ set(l) {
474
+ var u;
475
+ l = Be(a, l, t), this.$$d[a] = l, (u = this.$$c) == null || u.$set({ [a]: l });
476
+ }
477
+ });
478
+ }), n.forEach((a) => {
479
+ Object.defineProperty(s.prototype, a, {
480
+ get() {
481
+ var l;
482
+ return (l = this.$$c) == null ? void 0 : l[a];
483
+ }
484
+ });
485
+ }), e.element = /** @type {any} */
486
+ s, s;
487
+ }
488
+ class Pr {
489
+ constructor() {
490
+ /**
491
+ * ### PRIVATE API
492
+ *
493
+ * Do not use, may change at any time
494
+ *
495
+ * @type {any}
496
+ */
497
+ M(this, "$$");
498
+ /**
499
+ * ### PRIVATE API
500
+ *
501
+ * Do not use, may change at any time
502
+ *
503
+ * @type {any}
504
+ */
505
+ M(this, "$$set");
506
+ }
507
+ /** @returns {void} */
508
+ $destroy() {
509
+ kr(this, 1), this.$destroy = Z;
510
+ }
511
+ /**
512
+ * @template {Extract<keyof Events, string>} K
513
+ * @param {K} type
514
+ * @param {((e: Events[K]) => void) | null | undefined} callback
515
+ * @returns {() => void}
516
+ */
517
+ $on(t, r) {
518
+ if (!rt(r))
519
+ return Z;
520
+ const n = this.$$.callbacks[t] || (this.$$.callbacks[t] = []);
521
+ return n.push(r), () => {
522
+ const i = n.indexOf(r);
523
+ i !== -1 && n.splice(i, 1);
524
+ };
525
+ }
526
+ /**
527
+ * @param {Partial<Props>} props
528
+ * @returns {void}
529
+ */
530
+ $set(t) {
531
+ this.$$set && !br(t) && (this.$$.skip_bound = !0, this.$$set(t), this.$$.skip_bound = !1);
532
+ }
533
+ }
534
+ const Or = "4";
535
+ typeof window != "undefined" && (window.__svelte || (window.__svelte = { v: /* @__PURE__ */ new Set() })).v.add(Or);
536
+ const se = [];
537
+ function Ir(e, t) {
538
+ return {
539
+ subscribe: ke(e, t).subscribe
540
+ };
541
+ }
542
+ function ke(e, t = Z) {
543
+ let r;
544
+ const n = /* @__PURE__ */ new Set();
545
+ function i(a) {
546
+ if (It(e, a) && (e = a, r)) {
547
+ const l = !se.length;
548
+ for (const u of n)
549
+ u[1](), se.push(u, e);
550
+ if (l) {
551
+ for (let u = 0; u < se.length; u += 2)
552
+ se[u][0](se[u + 1]);
553
+ se.length = 0;
554
+ }
555
+ }
556
+ }
557
+ function o(a) {
558
+ i(a(e));
559
+ }
560
+ function s(a, l = Z) {
561
+ const u = [a, l];
562
+ return n.add(u), n.size === 1 && (r = t(i, o) || Z), a(e), () => {
563
+ n.delete(u), n.size === 0 && r && (r(), r = null);
564
+ };
565
+ }
566
+ return { set: i, update: o, subscribe: s };
567
+ }
568
+ function me(e, t, r) {
569
+ const n = !Array.isArray(e), i = n ? [e] : e;
570
+ if (!i.every(Boolean))
571
+ throw new Error("derived() expects stores as input, got a falsy value");
572
+ const o = t.length < 2;
573
+ return Ir(r, (s, a) => {
574
+ let l = !1;
575
+ const u = [];
576
+ let h = 0, c = Z;
577
+ const f = () => {
578
+ if (h)
579
+ return;
580
+ c();
581
+ const v = t(n ? u[0] : u, s, a);
582
+ o ? s(v) : c = rt(v) ? v : Z;
583
+ }, g = i.map(
584
+ (v, T) => $t(
585
+ v,
586
+ (w) => {
587
+ u[T] = w, h &= ~(1 << T), l && f();
588
+ },
589
+ () => {
590
+ h |= 1 << T;
591
+ }
592
+ )
593
+ );
594
+ return l = !0, f(), function() {
595
+ _e(g), c(), l = !1;
596
+ };
597
+ });
598
+ }
599
+ function $r(e) {
600
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
601
+ }
602
+ var Dr = function(t) {
603
+ return Ur(t) && !Gr(t);
604
+ };
605
+ function Ur(e) {
606
+ return !!e && typeof e == "object";
607
+ }
608
+ function Gr(e) {
609
+ var t = Object.prototype.toString.call(e);
610
+ return t === "[object RegExp]" || t === "[object Date]" || Vr(e);
611
+ }
612
+ var Fr = typeof Symbol == "function" && Symbol.for, jr = Fr ? Symbol.for("react.element") : 60103;
613
+ function Vr(e) {
614
+ return e.$$typeof === jr;
615
+ }
616
+ function zr(e) {
617
+ return Array.isArray(e) ? [] : {};
618
+ }
619
+ function ve(e, t) {
620
+ return t.clone !== !1 && t.isMergeableObject(e) ? le(zr(e), e, t) : e;
621
+ }
622
+ function Xr(e, t, r) {
623
+ return e.concat(t).map(function(n) {
624
+ return ve(n, r);
625
+ });
626
+ }
627
+ function Wr(e, t) {
628
+ if (!t.customMerge)
629
+ return le;
630
+ var r = t.customMerge(e);
631
+ return typeof r == "function" ? r : le;
632
+ }
633
+ function Zr(e) {
634
+ return Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(e).filter(function(t) {
635
+ return Object.propertyIsEnumerable.call(e, t);
636
+ }) : [];
637
+ }
638
+ function pt(e) {
639
+ return Object.keys(e).concat(Zr(e));
640
+ }
641
+ function Ut(e, t) {
642
+ try {
643
+ return t in e;
644
+ } catch (r) {
645
+ return !1;
646
+ }
647
+ }
648
+ function Jr(e, t) {
649
+ return Ut(e, t) && !(Object.hasOwnProperty.call(e, t) && Object.propertyIsEnumerable.call(e, t));
650
+ }
651
+ function Yr(e, t, r) {
652
+ var n = {};
653
+ return r.isMergeableObject(e) && pt(e).forEach(function(i) {
654
+ n[i] = ve(e[i], r);
655
+ }), pt(t).forEach(function(i) {
656
+ Jr(e, i) || (Ut(e, i) && r.isMergeableObject(t[i]) ? n[i] = Wr(i, r)(e[i], t[i], r) : n[i] = ve(t[i], r));
657
+ }), n;
658
+ }
659
+ function le(e, t, r) {
660
+ r = r || {}, r.arrayMerge = r.arrayMerge || Xr, r.isMergeableObject = r.isMergeableObject || Dr, r.cloneUnlessOtherwiseSpecified = ve;
661
+ var n = Array.isArray(t), i = Array.isArray(e), o = n === i;
662
+ return o ? n ? r.arrayMerge(e, t, r) : Yr(e, t, r) : ve(t, r);
663
+ }
664
+ le.all = function(t, r) {
665
+ if (!Array.isArray(t))
666
+ throw new Error("first argument should be an array");
667
+ return t.reduce(function(n, i) {
668
+ return le(n, i, r);
669
+ }, {});
670
+ };
671
+ var qr = le, Kr = qr;
672
+ const Qr = /* @__PURE__ */ $r(Kr);
673
+ var We = function(e, t) {
674
+ return We = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, n) {
675
+ r.__proto__ = n;
676
+ } || function(r, n) {
677
+ for (var i in n) Object.prototype.hasOwnProperty.call(n, i) && (r[i] = n[i]);
678
+ }, We(e, t);
679
+ };
680
+ function Ne(e, t) {
681
+ if (typeof t != "function" && t !== null)
682
+ throw new TypeError("Class extends value " + String(t) + " is not a constructor or null");
683
+ We(e, t);
684
+ function r() {
685
+ this.constructor = e;
686
+ }
687
+ e.prototype = t === null ? Object.create(t) : (r.prototype = t.prototype, new r());
688
+ }
689
+ var _ = function() {
690
+ return _ = Object.assign || function(t) {
691
+ for (var r, n = 1, i = arguments.length; n < i; n++) {
692
+ r = arguments[n];
693
+ for (var o in r) Object.prototype.hasOwnProperty.call(r, o) && (t[o] = r[o]);
694
+ }
695
+ return t;
696
+ }, _.apply(this, arguments);
697
+ };
698
+ function en(e, t) {
699
+ var r = {};
700
+ for (var n in e) Object.prototype.hasOwnProperty.call(e, n) && t.indexOf(n) < 0 && (r[n] = e[n]);
701
+ if (e != null && typeof Object.getOwnPropertySymbols == "function")
702
+ for (var i = 0, n = Object.getOwnPropertySymbols(e); i < n.length; i++)
703
+ t.indexOf(n[i]) < 0 && Object.prototype.propertyIsEnumerable.call(e, n[i]) && (r[n[i]] = e[n[i]]);
704
+ return r;
705
+ }
706
+ function $e(e, t, r) {
707
+ if (r || arguments.length === 2) for (var n = 0, i = t.length, o; n < i; n++)
708
+ (o || !(n in t)) && (o || (o = Array.prototype.slice.call(t, 0, n)), o[n] = t[n]);
709
+ return e.concat(o || Array.prototype.slice.call(t));
710
+ }
711
+ var b;
712
+ (function(e) {
713
+ e[e.EXPECT_ARGUMENT_CLOSING_BRACE = 1] = "EXPECT_ARGUMENT_CLOSING_BRACE", e[e.EMPTY_ARGUMENT = 2] = "EMPTY_ARGUMENT", e[e.MALFORMED_ARGUMENT = 3] = "MALFORMED_ARGUMENT", e[e.EXPECT_ARGUMENT_TYPE = 4] = "EXPECT_ARGUMENT_TYPE", e[e.INVALID_ARGUMENT_TYPE = 5] = "INVALID_ARGUMENT_TYPE", e[e.EXPECT_ARGUMENT_STYLE = 6] = "EXPECT_ARGUMENT_STYLE", e[e.INVALID_NUMBER_SKELETON = 7] = "INVALID_NUMBER_SKELETON", e[e.INVALID_DATE_TIME_SKELETON = 8] = "INVALID_DATE_TIME_SKELETON", e[e.EXPECT_NUMBER_SKELETON = 9] = "EXPECT_NUMBER_SKELETON", e[e.EXPECT_DATE_TIME_SKELETON = 10] = "EXPECT_DATE_TIME_SKELETON", e[e.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE = 11] = "UNCLOSED_QUOTE_IN_ARGUMENT_STYLE", e[e.EXPECT_SELECT_ARGUMENT_OPTIONS = 12] = "EXPECT_SELECT_ARGUMENT_OPTIONS", e[e.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE = 13] = "EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE", e[e.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE = 14] = "INVALID_PLURAL_ARGUMENT_OFFSET_VALUE", e[e.EXPECT_SELECT_ARGUMENT_SELECTOR = 15] = "EXPECT_SELECT_ARGUMENT_SELECTOR", e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR = 16] = "EXPECT_PLURAL_ARGUMENT_SELECTOR", e[e.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT = 17] = "EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT", e[e.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT = 18] = "EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT", e[e.INVALID_PLURAL_ARGUMENT_SELECTOR = 19] = "INVALID_PLURAL_ARGUMENT_SELECTOR", e[e.DUPLICATE_PLURAL_ARGUMENT_SELECTOR = 20] = "DUPLICATE_PLURAL_ARGUMENT_SELECTOR", e[e.DUPLICATE_SELECT_ARGUMENT_SELECTOR = 21] = "DUPLICATE_SELECT_ARGUMENT_SELECTOR", e[e.MISSING_OTHER_CLAUSE = 22] = "MISSING_OTHER_CLAUSE", e[e.INVALID_TAG = 23] = "INVALID_TAG", e[e.INVALID_TAG_NAME = 25] = "INVALID_TAG_NAME", e[e.UNMATCHED_CLOSING_TAG = 26] = "UNMATCHED_CLOSING_TAG", e[e.UNCLOSED_TAG = 27] = "UNCLOSED_TAG";
714
+ })(b || (b = {}));
715
+ var B;
716
+ (function(e) {
717
+ e[e.literal = 0] = "literal", e[e.argument = 1] = "argument", e[e.number = 2] = "number", e[e.date = 3] = "date", e[e.time = 4] = "time", e[e.select = 5] = "select", e[e.plural = 6] = "plural", e[e.pound = 7] = "pound", e[e.tag = 8] = "tag";
718
+ })(B || (B = {}));
719
+ var he;
720
+ (function(e) {
721
+ e[e.number = 0] = "number", e[e.dateTime = 1] = "dateTime";
722
+ })(he || (he = {}));
723
+ function bt(e) {
724
+ return e.type === B.literal;
725
+ }
726
+ function tn(e) {
727
+ return e.type === B.argument;
728
+ }
729
+ function Gt(e) {
730
+ return e.type === B.number;
731
+ }
732
+ function Ft(e) {
733
+ return e.type === B.date;
734
+ }
735
+ function jt(e) {
736
+ return e.type === B.time;
737
+ }
738
+ function Vt(e) {
739
+ return e.type === B.select;
740
+ }
741
+ function zt(e) {
742
+ return e.type === B.plural;
743
+ }
744
+ function rn(e) {
745
+ return e.type === B.pound;
746
+ }
747
+ function Xt(e) {
748
+ return e.type === B.tag;
749
+ }
750
+ function Wt(e) {
751
+ return !!(e && typeof e == "object" && e.type === he.number);
752
+ }
753
+ function Ze(e) {
754
+ return !!(e && typeof e == "object" && e.type === he.dateTime);
755
+ }
756
+ var Zt = /[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000]/, nn = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g;
757
+ function on(e) {
758
+ var t = {};
759
+ return e.replace(nn, function(r) {
760
+ var n = r.length;
761
+ switch (r[0]) {
762
+ case "G":
763
+ t.era = n === 4 ? "long" : n === 5 ? "narrow" : "short";
764
+ break;
765
+ case "y":
766
+ t.year = n === 2 ? "2-digit" : "numeric";
767
+ break;
768
+ case "Y":
769
+ case "u":
770
+ case "U":
771
+ case "r":
772
+ throw new RangeError("`Y/u/U/r` (year) patterns are not supported, use `y` instead");
773
+ case "q":
774
+ case "Q":
775
+ throw new RangeError("`q/Q` (quarter) patterns are not supported");
776
+ case "M":
777
+ case "L":
778
+ t.month = ["numeric", "2-digit", "short", "long", "narrow"][n - 1];
779
+ break;
780
+ case "w":
781
+ case "W":
782
+ throw new RangeError("`w/W` (week) patterns are not supported");
783
+ case "d":
784
+ t.day = ["numeric", "2-digit"][n - 1];
785
+ break;
786
+ case "D":
787
+ case "F":
788
+ case "g":
789
+ throw new RangeError("`D/F/g` (day) patterns are not supported, use `d` instead");
790
+ case "E":
791
+ t.weekday = n === 4 ? "long" : n === 5 ? "narrow" : "short";
792
+ break;
793
+ case "e":
794
+ if (n < 4)
795
+ throw new RangeError("`e..eee` (weekday) patterns are not supported");
796
+ t.weekday = ["short", "long", "narrow", "short"][n - 4];
797
+ break;
798
+ case "c":
799
+ if (n < 4)
800
+ throw new RangeError("`c..ccc` (weekday) patterns are not supported");
801
+ t.weekday = ["short", "long", "narrow", "short"][n - 4];
802
+ break;
803
+ case "a":
804
+ t.hour12 = !0;
805
+ break;
806
+ case "b":
807
+ case "B":
808
+ throw new RangeError("`b/B` (period) patterns are not supported, use `a` instead");
809
+ case "h":
810
+ t.hourCycle = "h12", t.hour = ["numeric", "2-digit"][n - 1];
811
+ break;
812
+ case "H":
813
+ t.hourCycle = "h23", t.hour = ["numeric", "2-digit"][n - 1];
814
+ break;
815
+ case "K":
816
+ t.hourCycle = "h11", t.hour = ["numeric", "2-digit"][n - 1];
817
+ break;
818
+ case "k":
819
+ t.hourCycle = "h24", t.hour = ["numeric", "2-digit"][n - 1];
820
+ break;
821
+ case "j":
822
+ case "J":
823
+ case "C":
824
+ throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead");
825
+ case "m":
826
+ t.minute = ["numeric", "2-digit"][n - 1];
827
+ break;
828
+ case "s":
829
+ t.second = ["numeric", "2-digit"][n - 1];
830
+ break;
831
+ case "S":
832
+ case "A":
833
+ throw new RangeError("`S/A` (second) patterns are not supported, use `s` instead");
834
+ case "z":
835
+ t.timeZoneName = n < 4 ? "short" : "long";
836
+ break;
837
+ case "Z":
838
+ case "O":
839
+ case "v":
840
+ case "V":
841
+ case "X":
842
+ case "x":
843
+ throw new RangeError("`Z/O/v/V/X/x` (timeZone) patterns are not supported, use `z` instead");
844
+ }
845
+ return "";
846
+ }), t;
847
+ }
848
+ var sn = /[\t-\r \x85\u200E\u200F\u2028\u2029]/i;
849
+ function an(e) {
850
+ if (e.length === 0)
851
+ throw new Error("Number skeleton cannot be empty");
852
+ for (var t = e.split(sn).filter(function(f) {
853
+ return f.length > 0;
854
+ }), r = [], n = 0, i = t; n < i.length; n++) {
855
+ var o = i[n], s = o.split("/");
856
+ if (s.length === 0)
857
+ throw new Error("Invalid number skeleton");
858
+ for (var a = s[0], l = s.slice(1), u = 0, h = l; u < h.length; u++) {
859
+ var c = h[u];
860
+ if (c.length === 0)
861
+ throw new Error("Invalid number skeleton");
862
+ }
863
+ r.push({ stem: a, options: l });
864
+ }
865
+ return r;
866
+ }
867
+ function un(e) {
868
+ return e.replace(/^(.*?)-/, "");
869
+ }
870
+ var gt = /^\.(?:(0+)(\*)?|(#+)|(0+)(#+))$/g, Jt = /^(@+)?(\+|#+)?[rs]?$/g, ln = /(\*)(0+)|(#+)(0+)|(0+)/g, Yt = /^(0+)$/;
871
+ function vt(e) {
872
+ var t = {};
873
+ return e[e.length - 1] === "r" ? t.roundingPriority = "morePrecision" : e[e.length - 1] === "s" && (t.roundingPriority = "lessPrecision"), e.replace(Jt, function(r, n, i) {
874
+ return typeof i != "string" ? (t.minimumSignificantDigits = n.length, t.maximumSignificantDigits = n.length) : i === "+" ? t.minimumSignificantDigits = n.length : n[0] === "#" ? t.maximumSignificantDigits = n.length : (t.minimumSignificantDigits = n.length, t.maximumSignificantDigits = n.length + (typeof i == "string" ? i.length : 0)), "";
875
+ }), t;
876
+ }
877
+ function qt(e) {
878
+ switch (e) {
879
+ case "sign-auto":
880
+ return {
881
+ signDisplay: "auto"
882
+ };
883
+ case "sign-accounting":
884
+ case "()":
885
+ return {
886
+ currencySign: "accounting"
887
+ };
888
+ case "sign-always":
889
+ case "+!":
890
+ return {
891
+ signDisplay: "always"
892
+ };
893
+ case "sign-accounting-always":
894
+ case "()!":
895
+ return {
896
+ signDisplay: "always",
897
+ currencySign: "accounting"
898
+ };
899
+ case "sign-except-zero":
900
+ case "+?":
901
+ return {
902
+ signDisplay: "exceptZero"
903
+ };
904
+ case "sign-accounting-except-zero":
905
+ case "()?":
906
+ return {
907
+ signDisplay: "exceptZero",
908
+ currencySign: "accounting"
909
+ };
910
+ case "sign-never":
911
+ case "+_":
912
+ return {
913
+ signDisplay: "never"
914
+ };
915
+ }
916
+ }
917
+ function hn(e) {
918
+ var t;
919
+ if (e[0] === "E" && e[1] === "E" ? (t = {
920
+ notation: "engineering"
921
+ }, e = e.slice(2)) : e[0] === "E" && (t = {
922
+ notation: "scientific"
923
+ }, e = e.slice(1)), t) {
924
+ var r = e.slice(0, 2);
925
+ if (r === "+!" ? (t.signDisplay = "always", e = e.slice(2)) : r === "+?" && (t.signDisplay = "exceptZero", e = e.slice(2)), !Yt.test(e))
926
+ throw new Error("Malformed concise eng/scientific notation");
927
+ t.minimumIntegerDigits = e.length;
928
+ }
929
+ return t;
930
+ }
931
+ function yt(e) {
932
+ var t = {}, r = qt(e);
933
+ return r || t;
934
+ }
935
+ function cn(e) {
936
+ for (var t = {}, r = 0, n = e; r < n.length; r++) {
937
+ var i = n[r];
938
+ switch (i.stem) {
939
+ case "percent":
940
+ case "%":
941
+ t.style = "percent";
942
+ continue;
943
+ case "%x100":
944
+ t.style = "percent", t.scale = 100;
945
+ continue;
946
+ case "currency":
947
+ t.style = "currency", t.currency = i.options[0];
948
+ continue;
949
+ case "group-off":
950
+ case ",_":
951
+ t.useGrouping = !1;
952
+ continue;
953
+ case "precision-integer":
954
+ case ".":
955
+ t.maximumFractionDigits = 0;
956
+ continue;
957
+ case "measure-unit":
958
+ case "unit":
959
+ t.style = "unit", t.unit = un(i.options[0]);
960
+ continue;
961
+ case "compact-short":
962
+ case "K":
963
+ t.notation = "compact", t.compactDisplay = "short";
964
+ continue;
965
+ case "compact-long":
966
+ case "KK":
967
+ t.notation = "compact", t.compactDisplay = "long";
968
+ continue;
969
+ case "scientific":
970
+ t = _(_(_({}, t), { notation: "scientific" }), i.options.reduce(function(l, u) {
971
+ return _(_({}, l), yt(u));
972
+ }, {}));
973
+ continue;
974
+ case "engineering":
975
+ t = _(_(_({}, t), { notation: "engineering" }), i.options.reduce(function(l, u) {
976
+ return _(_({}, l), yt(u));
977
+ }, {}));
978
+ continue;
979
+ case "notation-simple":
980
+ t.notation = "standard";
981
+ continue;
982
+ case "unit-width-narrow":
983
+ t.currencyDisplay = "narrowSymbol", t.unitDisplay = "narrow";
984
+ continue;
985
+ case "unit-width-short":
986
+ t.currencyDisplay = "code", t.unitDisplay = "short";
987
+ continue;
988
+ case "unit-width-full-name":
989
+ t.currencyDisplay = "name", t.unitDisplay = "long";
990
+ continue;
991
+ case "unit-width-iso-code":
992
+ t.currencyDisplay = "symbol";
993
+ continue;
994
+ case "scale":
995
+ t.scale = parseFloat(i.options[0]);
996
+ continue;
997
+ case "rounding-mode-floor":
998
+ t.roundingMode = "floor";
999
+ continue;
1000
+ case "rounding-mode-ceiling":
1001
+ t.roundingMode = "ceil";
1002
+ continue;
1003
+ case "rounding-mode-down":
1004
+ t.roundingMode = "trunc";
1005
+ continue;
1006
+ case "rounding-mode-up":
1007
+ t.roundingMode = "expand";
1008
+ continue;
1009
+ case "rounding-mode-half-even":
1010
+ t.roundingMode = "halfEven";
1011
+ continue;
1012
+ case "rounding-mode-half-down":
1013
+ t.roundingMode = "halfTrunc";
1014
+ continue;
1015
+ case "rounding-mode-half-up":
1016
+ t.roundingMode = "halfExpand";
1017
+ continue;
1018
+ case "integer-width":
1019
+ if (i.options.length > 1)
1020
+ throw new RangeError("integer-width stems only accept a single optional option");
1021
+ i.options[0].replace(ln, function(l, u, h, c, f, g) {
1022
+ if (u)
1023
+ t.minimumIntegerDigits = h.length;
1024
+ else {
1025
+ if (c && f)
1026
+ throw new Error("We currently do not support maximum integer digits");
1027
+ if (g)
1028
+ throw new Error("We currently do not support exact integer digits");
1029
+ }
1030
+ return "";
1031
+ });
1032
+ continue;
1033
+ }
1034
+ if (Yt.test(i.stem)) {
1035
+ t.minimumIntegerDigits = i.stem.length;
1036
+ continue;
1037
+ }
1038
+ if (gt.test(i.stem)) {
1039
+ if (i.options.length > 1)
1040
+ throw new RangeError("Fraction-precision stems only accept a single optional option");
1041
+ i.stem.replace(gt, function(l, u, h, c, f, g) {
1042
+ return h === "*" ? t.minimumFractionDigits = u.length : c && c[0] === "#" ? t.maximumFractionDigits = c.length : f && g ? (t.minimumFractionDigits = f.length, t.maximumFractionDigits = f.length + g.length) : (t.minimumFractionDigits = u.length, t.maximumFractionDigits = u.length), "";
1043
+ });
1044
+ var o = i.options[0];
1045
+ o === "w" ? t = _(_({}, t), { trailingZeroDisplay: "stripIfInteger" }) : o && (t = _(_({}, t), vt(o)));
1046
+ continue;
1047
+ }
1048
+ if (Jt.test(i.stem)) {
1049
+ t = _(_({}, t), vt(i.stem));
1050
+ continue;
1051
+ }
1052
+ var s = qt(i.stem);
1053
+ s && (t = _(_({}, t), s));
1054
+ var a = hn(i.stem);
1055
+ a && (t = _(_({}, t), a));
1056
+ }
1057
+ return t;
1058
+ }
1059
+ var Te = {
1060
+ "001": [
1061
+ "H",
1062
+ "h"
1063
+ ],
1064
+ AC: [
1065
+ "H",
1066
+ "h",
1067
+ "hb",
1068
+ "hB"
1069
+ ],
1070
+ AD: [
1071
+ "H",
1072
+ "hB"
1073
+ ],
1074
+ AE: [
1075
+ "h",
1076
+ "hB",
1077
+ "hb",
1078
+ "H"
1079
+ ],
1080
+ AF: [
1081
+ "H",
1082
+ "hb",
1083
+ "hB",
1084
+ "h"
1085
+ ],
1086
+ AG: [
1087
+ "h",
1088
+ "hb",
1089
+ "H",
1090
+ "hB"
1091
+ ],
1092
+ AI: [
1093
+ "H",
1094
+ "h",
1095
+ "hb",
1096
+ "hB"
1097
+ ],
1098
+ AL: [
1099
+ "h",
1100
+ "H",
1101
+ "hB"
1102
+ ],
1103
+ AM: [
1104
+ "H",
1105
+ "hB"
1106
+ ],
1107
+ AO: [
1108
+ "H",
1109
+ "hB"
1110
+ ],
1111
+ AR: [
1112
+ "H",
1113
+ "h",
1114
+ "hB",
1115
+ "hb"
1116
+ ],
1117
+ AS: [
1118
+ "h",
1119
+ "H"
1120
+ ],
1121
+ AT: [
1122
+ "H",
1123
+ "hB"
1124
+ ],
1125
+ AU: [
1126
+ "h",
1127
+ "hb",
1128
+ "H",
1129
+ "hB"
1130
+ ],
1131
+ AW: [
1132
+ "H",
1133
+ "hB"
1134
+ ],
1135
+ AX: [
1136
+ "H"
1137
+ ],
1138
+ AZ: [
1139
+ "H",
1140
+ "hB",
1141
+ "h"
1142
+ ],
1143
+ BA: [
1144
+ "H",
1145
+ "hB",
1146
+ "h"
1147
+ ],
1148
+ BB: [
1149
+ "h",
1150
+ "hb",
1151
+ "H",
1152
+ "hB"
1153
+ ],
1154
+ BD: [
1155
+ "h",
1156
+ "hB",
1157
+ "H"
1158
+ ],
1159
+ BE: [
1160
+ "H",
1161
+ "hB"
1162
+ ],
1163
+ BF: [
1164
+ "H",
1165
+ "hB"
1166
+ ],
1167
+ BG: [
1168
+ "H",
1169
+ "hB",
1170
+ "h"
1171
+ ],
1172
+ BH: [
1173
+ "h",
1174
+ "hB",
1175
+ "hb",
1176
+ "H"
1177
+ ],
1178
+ BI: [
1179
+ "H",
1180
+ "h"
1181
+ ],
1182
+ BJ: [
1183
+ "H",
1184
+ "hB"
1185
+ ],
1186
+ BL: [
1187
+ "H",
1188
+ "hB"
1189
+ ],
1190
+ BM: [
1191
+ "h",
1192
+ "hb",
1193
+ "H",
1194
+ "hB"
1195
+ ],
1196
+ BN: [
1197
+ "hb",
1198
+ "hB",
1199
+ "h",
1200
+ "H"
1201
+ ],
1202
+ BO: [
1203
+ "H",
1204
+ "hB",
1205
+ "h",
1206
+ "hb"
1207
+ ],
1208
+ BQ: [
1209
+ "H"
1210
+ ],
1211
+ BR: [
1212
+ "H",
1213
+ "hB"
1214
+ ],
1215
+ BS: [
1216
+ "h",
1217
+ "hb",
1218
+ "H",
1219
+ "hB"
1220
+ ],
1221
+ BT: [
1222
+ "h",
1223
+ "H"
1224
+ ],
1225
+ BW: [
1226
+ "H",
1227
+ "h",
1228
+ "hb",
1229
+ "hB"
1230
+ ],
1231
+ BY: [
1232
+ "H",
1233
+ "h"
1234
+ ],
1235
+ BZ: [
1236
+ "H",
1237
+ "h",
1238
+ "hb",
1239
+ "hB"
1240
+ ],
1241
+ CA: [
1242
+ "h",
1243
+ "hb",
1244
+ "H",
1245
+ "hB"
1246
+ ],
1247
+ CC: [
1248
+ "H",
1249
+ "h",
1250
+ "hb",
1251
+ "hB"
1252
+ ],
1253
+ CD: [
1254
+ "hB",
1255
+ "H"
1256
+ ],
1257
+ CF: [
1258
+ "H",
1259
+ "h",
1260
+ "hB"
1261
+ ],
1262
+ CG: [
1263
+ "H",
1264
+ "hB"
1265
+ ],
1266
+ CH: [
1267
+ "H",
1268
+ "hB",
1269
+ "h"
1270
+ ],
1271
+ CI: [
1272
+ "H",
1273
+ "hB"
1274
+ ],
1275
+ CK: [
1276
+ "H",
1277
+ "h",
1278
+ "hb",
1279
+ "hB"
1280
+ ],
1281
+ CL: [
1282
+ "H",
1283
+ "h",
1284
+ "hB",
1285
+ "hb"
1286
+ ],
1287
+ CM: [
1288
+ "H",
1289
+ "h",
1290
+ "hB"
1291
+ ],
1292
+ CN: [
1293
+ "H",
1294
+ "hB",
1295
+ "hb",
1296
+ "h"
1297
+ ],
1298
+ CO: [
1299
+ "h",
1300
+ "H",
1301
+ "hB",
1302
+ "hb"
1303
+ ],
1304
+ CP: [
1305
+ "H"
1306
+ ],
1307
+ CR: [
1308
+ "H",
1309
+ "h",
1310
+ "hB",
1311
+ "hb"
1312
+ ],
1313
+ CU: [
1314
+ "H",
1315
+ "h",
1316
+ "hB",
1317
+ "hb"
1318
+ ],
1319
+ CV: [
1320
+ "H",
1321
+ "hB"
1322
+ ],
1323
+ CW: [
1324
+ "H",
1325
+ "hB"
1326
+ ],
1327
+ CX: [
1328
+ "H",
1329
+ "h",
1330
+ "hb",
1331
+ "hB"
1332
+ ],
1333
+ CY: [
1334
+ "h",
1335
+ "H",
1336
+ "hb",
1337
+ "hB"
1338
+ ],
1339
+ CZ: [
1340
+ "H"
1341
+ ],
1342
+ DE: [
1343
+ "H",
1344
+ "hB"
1345
+ ],
1346
+ DG: [
1347
+ "H",
1348
+ "h",
1349
+ "hb",
1350
+ "hB"
1351
+ ],
1352
+ DJ: [
1353
+ "h",
1354
+ "H"
1355
+ ],
1356
+ DK: [
1357
+ "H"
1358
+ ],
1359
+ DM: [
1360
+ "h",
1361
+ "hb",
1362
+ "H",
1363
+ "hB"
1364
+ ],
1365
+ DO: [
1366
+ "h",
1367
+ "H",
1368
+ "hB",
1369
+ "hb"
1370
+ ],
1371
+ DZ: [
1372
+ "h",
1373
+ "hB",
1374
+ "hb",
1375
+ "H"
1376
+ ],
1377
+ EA: [
1378
+ "H",
1379
+ "h",
1380
+ "hB",
1381
+ "hb"
1382
+ ],
1383
+ EC: [
1384
+ "H",
1385
+ "hB",
1386
+ "h",
1387
+ "hb"
1388
+ ],
1389
+ EE: [
1390
+ "H",
1391
+ "hB"
1392
+ ],
1393
+ EG: [
1394
+ "h",
1395
+ "hB",
1396
+ "hb",
1397
+ "H"
1398
+ ],
1399
+ EH: [
1400
+ "h",
1401
+ "hB",
1402
+ "hb",
1403
+ "H"
1404
+ ],
1405
+ ER: [
1406
+ "h",
1407
+ "H"
1408
+ ],
1409
+ ES: [
1410
+ "H",
1411
+ "hB",
1412
+ "h",
1413
+ "hb"
1414
+ ],
1415
+ ET: [
1416
+ "hB",
1417
+ "hb",
1418
+ "h",
1419
+ "H"
1420
+ ],
1421
+ FI: [
1422
+ "H"
1423
+ ],
1424
+ FJ: [
1425
+ "h",
1426
+ "hb",
1427
+ "H",
1428
+ "hB"
1429
+ ],
1430
+ FK: [
1431
+ "H",
1432
+ "h",
1433
+ "hb",
1434
+ "hB"
1435
+ ],
1436
+ FM: [
1437
+ "h",
1438
+ "hb",
1439
+ "H",
1440
+ "hB"
1441
+ ],
1442
+ FO: [
1443
+ "H",
1444
+ "h"
1445
+ ],
1446
+ FR: [
1447
+ "H",
1448
+ "hB"
1449
+ ],
1450
+ GA: [
1451
+ "H",
1452
+ "hB"
1453
+ ],
1454
+ GB: [
1455
+ "H",
1456
+ "h",
1457
+ "hb",
1458
+ "hB"
1459
+ ],
1460
+ GD: [
1461
+ "h",
1462
+ "hb",
1463
+ "H",
1464
+ "hB"
1465
+ ],
1466
+ GE: [
1467
+ "H",
1468
+ "hB",
1469
+ "h"
1470
+ ],
1471
+ GF: [
1472
+ "H",
1473
+ "hB"
1474
+ ],
1475
+ GG: [
1476
+ "H",
1477
+ "h",
1478
+ "hb",
1479
+ "hB"
1480
+ ],
1481
+ GH: [
1482
+ "h",
1483
+ "H"
1484
+ ],
1485
+ GI: [
1486
+ "H",
1487
+ "h",
1488
+ "hb",
1489
+ "hB"
1490
+ ],
1491
+ GL: [
1492
+ "H",
1493
+ "h"
1494
+ ],
1495
+ GM: [
1496
+ "h",
1497
+ "hb",
1498
+ "H",
1499
+ "hB"
1500
+ ],
1501
+ GN: [
1502
+ "H",
1503
+ "hB"
1504
+ ],
1505
+ GP: [
1506
+ "H",
1507
+ "hB"
1508
+ ],
1509
+ GQ: [
1510
+ "H",
1511
+ "hB",
1512
+ "h",
1513
+ "hb"
1514
+ ],
1515
+ GR: [
1516
+ "h",
1517
+ "H",
1518
+ "hb",
1519
+ "hB"
1520
+ ],
1521
+ GT: [
1522
+ "H",
1523
+ "h",
1524
+ "hB",
1525
+ "hb"
1526
+ ],
1527
+ GU: [
1528
+ "h",
1529
+ "hb",
1530
+ "H",
1531
+ "hB"
1532
+ ],
1533
+ GW: [
1534
+ "H",
1535
+ "hB"
1536
+ ],
1537
+ GY: [
1538
+ "h",
1539
+ "hb",
1540
+ "H",
1541
+ "hB"
1542
+ ],
1543
+ HK: [
1544
+ "h",
1545
+ "hB",
1546
+ "hb",
1547
+ "H"
1548
+ ],
1549
+ HN: [
1550
+ "H",
1551
+ "h",
1552
+ "hB",
1553
+ "hb"
1554
+ ],
1555
+ HR: [
1556
+ "H",
1557
+ "hB"
1558
+ ],
1559
+ HU: [
1560
+ "H",
1561
+ "h"
1562
+ ],
1563
+ IC: [
1564
+ "H",
1565
+ "h",
1566
+ "hB",
1567
+ "hb"
1568
+ ],
1569
+ ID: [
1570
+ "H"
1571
+ ],
1572
+ IE: [
1573
+ "H",
1574
+ "h",
1575
+ "hb",
1576
+ "hB"
1577
+ ],
1578
+ IL: [
1579
+ "H",
1580
+ "hB"
1581
+ ],
1582
+ IM: [
1583
+ "H",
1584
+ "h",
1585
+ "hb",
1586
+ "hB"
1587
+ ],
1588
+ IN: [
1589
+ "h",
1590
+ "H"
1591
+ ],
1592
+ IO: [
1593
+ "H",
1594
+ "h",
1595
+ "hb",
1596
+ "hB"
1597
+ ],
1598
+ IQ: [
1599
+ "h",
1600
+ "hB",
1601
+ "hb",
1602
+ "H"
1603
+ ],
1604
+ IR: [
1605
+ "hB",
1606
+ "H"
1607
+ ],
1608
+ IS: [
1609
+ "H"
1610
+ ],
1611
+ IT: [
1612
+ "H",
1613
+ "hB"
1614
+ ],
1615
+ JE: [
1616
+ "H",
1617
+ "h",
1618
+ "hb",
1619
+ "hB"
1620
+ ],
1621
+ JM: [
1622
+ "h",
1623
+ "hb",
1624
+ "H",
1625
+ "hB"
1626
+ ],
1627
+ JO: [
1628
+ "h",
1629
+ "hB",
1630
+ "hb",
1631
+ "H"
1632
+ ],
1633
+ JP: [
1634
+ "H",
1635
+ "K",
1636
+ "h"
1637
+ ],
1638
+ KE: [
1639
+ "hB",
1640
+ "hb",
1641
+ "H",
1642
+ "h"
1643
+ ],
1644
+ KG: [
1645
+ "H",
1646
+ "h",
1647
+ "hB",
1648
+ "hb"
1649
+ ],
1650
+ KH: [
1651
+ "hB",
1652
+ "h",
1653
+ "H",
1654
+ "hb"
1655
+ ],
1656
+ KI: [
1657
+ "h",
1658
+ "hb",
1659
+ "H",
1660
+ "hB"
1661
+ ],
1662
+ KM: [
1663
+ "H",
1664
+ "h",
1665
+ "hB",
1666
+ "hb"
1667
+ ],
1668
+ KN: [
1669
+ "h",
1670
+ "hb",
1671
+ "H",
1672
+ "hB"
1673
+ ],
1674
+ KP: [
1675
+ "h",
1676
+ "H",
1677
+ "hB",
1678
+ "hb"
1679
+ ],
1680
+ KR: [
1681
+ "h",
1682
+ "H",
1683
+ "hB",
1684
+ "hb"
1685
+ ],
1686
+ KW: [
1687
+ "h",
1688
+ "hB",
1689
+ "hb",
1690
+ "H"
1691
+ ],
1692
+ KY: [
1693
+ "h",
1694
+ "hb",
1695
+ "H",
1696
+ "hB"
1697
+ ],
1698
+ KZ: [
1699
+ "H",
1700
+ "hB"
1701
+ ],
1702
+ LA: [
1703
+ "H",
1704
+ "hb",
1705
+ "hB",
1706
+ "h"
1707
+ ],
1708
+ LB: [
1709
+ "h",
1710
+ "hB",
1711
+ "hb",
1712
+ "H"
1713
+ ],
1714
+ LC: [
1715
+ "h",
1716
+ "hb",
1717
+ "H",
1718
+ "hB"
1719
+ ],
1720
+ LI: [
1721
+ "H",
1722
+ "hB",
1723
+ "h"
1724
+ ],
1725
+ LK: [
1726
+ "H",
1727
+ "h",
1728
+ "hB",
1729
+ "hb"
1730
+ ],
1731
+ LR: [
1732
+ "h",
1733
+ "hb",
1734
+ "H",
1735
+ "hB"
1736
+ ],
1737
+ LS: [
1738
+ "h",
1739
+ "H"
1740
+ ],
1741
+ LT: [
1742
+ "H",
1743
+ "h",
1744
+ "hb",
1745
+ "hB"
1746
+ ],
1747
+ LU: [
1748
+ "H",
1749
+ "h",
1750
+ "hB"
1751
+ ],
1752
+ LV: [
1753
+ "H",
1754
+ "hB",
1755
+ "hb",
1756
+ "h"
1757
+ ],
1758
+ LY: [
1759
+ "h",
1760
+ "hB",
1761
+ "hb",
1762
+ "H"
1763
+ ],
1764
+ MA: [
1765
+ "H",
1766
+ "h",
1767
+ "hB",
1768
+ "hb"
1769
+ ],
1770
+ MC: [
1771
+ "H",
1772
+ "hB"
1773
+ ],
1774
+ MD: [
1775
+ "H",
1776
+ "hB"
1777
+ ],
1778
+ ME: [
1779
+ "H",
1780
+ "hB",
1781
+ "h"
1782
+ ],
1783
+ MF: [
1784
+ "H",
1785
+ "hB"
1786
+ ],
1787
+ MG: [
1788
+ "H",
1789
+ "h"
1790
+ ],
1791
+ MH: [
1792
+ "h",
1793
+ "hb",
1794
+ "H",
1795
+ "hB"
1796
+ ],
1797
+ MK: [
1798
+ "H",
1799
+ "h",
1800
+ "hb",
1801
+ "hB"
1802
+ ],
1803
+ ML: [
1804
+ "H"
1805
+ ],
1806
+ MM: [
1807
+ "hB",
1808
+ "hb",
1809
+ "H",
1810
+ "h"
1811
+ ],
1812
+ MN: [
1813
+ "H",
1814
+ "h",
1815
+ "hb",
1816
+ "hB"
1817
+ ],
1818
+ MO: [
1819
+ "h",
1820
+ "hB",
1821
+ "hb",
1822
+ "H"
1823
+ ],
1824
+ MP: [
1825
+ "h",
1826
+ "hb",
1827
+ "H",
1828
+ "hB"
1829
+ ],
1830
+ MQ: [
1831
+ "H",
1832
+ "hB"
1833
+ ],
1834
+ MR: [
1835
+ "h",
1836
+ "hB",
1837
+ "hb",
1838
+ "H"
1839
+ ],
1840
+ MS: [
1841
+ "H",
1842
+ "h",
1843
+ "hb",
1844
+ "hB"
1845
+ ],
1846
+ MT: [
1847
+ "H",
1848
+ "h"
1849
+ ],
1850
+ MU: [
1851
+ "H",
1852
+ "h"
1853
+ ],
1854
+ MV: [
1855
+ "H",
1856
+ "h"
1857
+ ],
1858
+ MW: [
1859
+ "h",
1860
+ "hb",
1861
+ "H",
1862
+ "hB"
1863
+ ],
1864
+ MX: [
1865
+ "H",
1866
+ "h",
1867
+ "hB",
1868
+ "hb"
1869
+ ],
1870
+ MY: [
1871
+ "hb",
1872
+ "hB",
1873
+ "h",
1874
+ "H"
1875
+ ],
1876
+ MZ: [
1877
+ "H",
1878
+ "hB"
1879
+ ],
1880
+ NA: [
1881
+ "h",
1882
+ "H",
1883
+ "hB",
1884
+ "hb"
1885
+ ],
1886
+ NC: [
1887
+ "H",
1888
+ "hB"
1889
+ ],
1890
+ NE: [
1891
+ "H"
1892
+ ],
1893
+ NF: [
1894
+ "H",
1895
+ "h",
1896
+ "hb",
1897
+ "hB"
1898
+ ],
1899
+ NG: [
1900
+ "H",
1901
+ "h",
1902
+ "hb",
1903
+ "hB"
1904
+ ],
1905
+ NI: [
1906
+ "H",
1907
+ "h",
1908
+ "hB",
1909
+ "hb"
1910
+ ],
1911
+ NL: [
1912
+ "H",
1913
+ "hB"
1914
+ ],
1915
+ NO: [
1916
+ "H",
1917
+ "h"
1918
+ ],
1919
+ NP: [
1920
+ "H",
1921
+ "h",
1922
+ "hB"
1923
+ ],
1924
+ NR: [
1925
+ "H",
1926
+ "h",
1927
+ "hb",
1928
+ "hB"
1929
+ ],
1930
+ NU: [
1931
+ "H",
1932
+ "h",
1933
+ "hb",
1934
+ "hB"
1935
+ ],
1936
+ NZ: [
1937
+ "h",
1938
+ "hb",
1939
+ "H",
1940
+ "hB"
1941
+ ],
1942
+ OM: [
1943
+ "h",
1944
+ "hB",
1945
+ "hb",
1946
+ "H"
1947
+ ],
1948
+ PA: [
1949
+ "h",
1950
+ "H",
1951
+ "hB",
1952
+ "hb"
1953
+ ],
1954
+ PE: [
1955
+ "H",
1956
+ "hB",
1957
+ "h",
1958
+ "hb"
1959
+ ],
1960
+ PF: [
1961
+ "H",
1962
+ "h",
1963
+ "hB"
1964
+ ],
1965
+ PG: [
1966
+ "h",
1967
+ "H"
1968
+ ],
1969
+ PH: [
1970
+ "h",
1971
+ "hB",
1972
+ "hb",
1973
+ "H"
1974
+ ],
1975
+ PK: [
1976
+ "h",
1977
+ "hB",
1978
+ "H"
1979
+ ],
1980
+ PL: [
1981
+ "H",
1982
+ "h"
1983
+ ],
1984
+ PM: [
1985
+ "H",
1986
+ "hB"
1987
+ ],
1988
+ PN: [
1989
+ "H",
1990
+ "h",
1991
+ "hb",
1992
+ "hB"
1993
+ ],
1994
+ PR: [
1995
+ "h",
1996
+ "H",
1997
+ "hB",
1998
+ "hb"
1999
+ ],
2000
+ PS: [
2001
+ "h",
2002
+ "hB",
2003
+ "hb",
2004
+ "H"
2005
+ ],
2006
+ PT: [
2007
+ "H",
2008
+ "hB"
2009
+ ],
2010
+ PW: [
2011
+ "h",
2012
+ "H"
2013
+ ],
2014
+ PY: [
2015
+ "H",
2016
+ "h",
2017
+ "hB",
2018
+ "hb"
2019
+ ],
2020
+ QA: [
2021
+ "h",
2022
+ "hB",
2023
+ "hb",
2024
+ "H"
2025
+ ],
2026
+ RE: [
2027
+ "H",
2028
+ "hB"
2029
+ ],
2030
+ RO: [
2031
+ "H",
2032
+ "hB"
2033
+ ],
2034
+ RS: [
2035
+ "H",
2036
+ "hB",
2037
+ "h"
2038
+ ],
2039
+ RU: [
2040
+ "H"
2041
+ ],
2042
+ RW: [
2043
+ "H",
2044
+ "h"
2045
+ ],
2046
+ SA: [
2047
+ "h",
2048
+ "hB",
2049
+ "hb",
2050
+ "H"
2051
+ ],
2052
+ SB: [
2053
+ "h",
2054
+ "hb",
2055
+ "H",
2056
+ "hB"
2057
+ ],
2058
+ SC: [
2059
+ "H",
2060
+ "h",
2061
+ "hB"
2062
+ ],
2063
+ SD: [
2064
+ "h",
2065
+ "hB",
2066
+ "hb",
2067
+ "H"
2068
+ ],
2069
+ SE: [
2070
+ "H"
2071
+ ],
2072
+ SG: [
2073
+ "h",
2074
+ "hb",
2075
+ "H",
2076
+ "hB"
2077
+ ],
2078
+ SH: [
2079
+ "H",
2080
+ "h",
2081
+ "hb",
2082
+ "hB"
2083
+ ],
2084
+ SI: [
2085
+ "H",
2086
+ "hB"
2087
+ ],
2088
+ SJ: [
2089
+ "H"
2090
+ ],
2091
+ SK: [
2092
+ "H"
2093
+ ],
2094
+ SL: [
2095
+ "h",
2096
+ "hb",
2097
+ "H",
2098
+ "hB"
2099
+ ],
2100
+ SM: [
2101
+ "H",
2102
+ "h",
2103
+ "hB"
2104
+ ],
2105
+ SN: [
2106
+ "H",
2107
+ "h",
2108
+ "hB"
2109
+ ],
2110
+ SO: [
2111
+ "h",
2112
+ "H"
2113
+ ],
2114
+ SR: [
2115
+ "H",
2116
+ "hB"
2117
+ ],
2118
+ SS: [
2119
+ "h",
2120
+ "hb",
2121
+ "H",
2122
+ "hB"
2123
+ ],
2124
+ ST: [
2125
+ "H",
2126
+ "hB"
2127
+ ],
2128
+ SV: [
2129
+ "H",
2130
+ "h",
2131
+ "hB",
2132
+ "hb"
2133
+ ],
2134
+ SX: [
2135
+ "H",
2136
+ "h",
2137
+ "hb",
2138
+ "hB"
2139
+ ],
2140
+ SY: [
2141
+ "h",
2142
+ "hB",
2143
+ "hb",
2144
+ "H"
2145
+ ],
2146
+ SZ: [
2147
+ "h",
2148
+ "hb",
2149
+ "H",
2150
+ "hB"
2151
+ ],
2152
+ TA: [
2153
+ "H",
2154
+ "h",
2155
+ "hb",
2156
+ "hB"
2157
+ ],
2158
+ TC: [
2159
+ "h",
2160
+ "hb",
2161
+ "H",
2162
+ "hB"
2163
+ ],
2164
+ TD: [
2165
+ "h",
2166
+ "H",
2167
+ "hB"
2168
+ ],
2169
+ TF: [
2170
+ "H",
2171
+ "h",
2172
+ "hB"
2173
+ ],
2174
+ TG: [
2175
+ "H",
2176
+ "hB"
2177
+ ],
2178
+ TH: [
2179
+ "H",
2180
+ "h"
2181
+ ],
2182
+ TJ: [
2183
+ "H",
2184
+ "h"
2185
+ ],
2186
+ TL: [
2187
+ "H",
2188
+ "hB",
2189
+ "hb",
2190
+ "h"
2191
+ ],
2192
+ TM: [
2193
+ "H",
2194
+ "h"
2195
+ ],
2196
+ TN: [
2197
+ "h",
2198
+ "hB",
2199
+ "hb",
2200
+ "H"
2201
+ ],
2202
+ TO: [
2203
+ "h",
2204
+ "H"
2205
+ ],
2206
+ TR: [
2207
+ "H",
2208
+ "hB"
2209
+ ],
2210
+ TT: [
2211
+ "h",
2212
+ "hb",
2213
+ "H",
2214
+ "hB"
2215
+ ],
2216
+ TW: [
2217
+ "hB",
2218
+ "hb",
2219
+ "h",
2220
+ "H"
2221
+ ],
2222
+ TZ: [
2223
+ "hB",
2224
+ "hb",
2225
+ "H",
2226
+ "h"
2227
+ ],
2228
+ UA: [
2229
+ "H",
2230
+ "hB",
2231
+ "h"
2232
+ ],
2233
+ UG: [
2234
+ "hB",
2235
+ "hb",
2236
+ "H",
2237
+ "h"
2238
+ ],
2239
+ UM: [
2240
+ "h",
2241
+ "hb",
2242
+ "H",
2243
+ "hB"
2244
+ ],
2245
+ US: [
2246
+ "h",
2247
+ "hb",
2248
+ "H",
2249
+ "hB"
2250
+ ],
2251
+ UY: [
2252
+ "H",
2253
+ "h",
2254
+ "hB",
2255
+ "hb"
2256
+ ],
2257
+ UZ: [
2258
+ "H",
2259
+ "hB",
2260
+ "h"
2261
+ ],
2262
+ VA: [
2263
+ "H",
2264
+ "h",
2265
+ "hB"
2266
+ ],
2267
+ VC: [
2268
+ "h",
2269
+ "hb",
2270
+ "H",
2271
+ "hB"
2272
+ ],
2273
+ VE: [
2274
+ "h",
2275
+ "H",
2276
+ "hB",
2277
+ "hb"
2278
+ ],
2279
+ VG: [
2280
+ "h",
2281
+ "hb",
2282
+ "H",
2283
+ "hB"
2284
+ ],
2285
+ VI: [
2286
+ "h",
2287
+ "hb",
2288
+ "H",
2289
+ "hB"
2290
+ ],
2291
+ VN: [
2292
+ "H",
2293
+ "h"
2294
+ ],
2295
+ VU: [
2296
+ "h",
2297
+ "H"
2298
+ ],
2299
+ WF: [
2300
+ "H",
2301
+ "hB"
2302
+ ],
2303
+ WS: [
2304
+ "h",
2305
+ "H"
2306
+ ],
2307
+ XK: [
2308
+ "H",
2309
+ "hB",
2310
+ "h"
2311
+ ],
2312
+ YE: [
2313
+ "h",
2314
+ "hB",
2315
+ "hb",
2316
+ "H"
2317
+ ],
2318
+ YT: [
2319
+ "H",
2320
+ "hB"
2321
+ ],
2322
+ ZA: [
2323
+ "H",
2324
+ "h",
2325
+ "hb",
2326
+ "hB"
2327
+ ],
2328
+ ZM: [
2329
+ "h",
2330
+ "hb",
2331
+ "H",
2332
+ "hB"
2333
+ ],
2334
+ ZW: [
2335
+ "H",
2336
+ "h"
2337
+ ],
2338
+ "af-ZA": [
2339
+ "H",
2340
+ "h",
2341
+ "hB",
2342
+ "hb"
2343
+ ],
2344
+ "ar-001": [
2345
+ "h",
2346
+ "hB",
2347
+ "hb",
2348
+ "H"
2349
+ ],
2350
+ "ca-ES": [
2351
+ "H",
2352
+ "h",
2353
+ "hB"
2354
+ ],
2355
+ "en-001": [
2356
+ "h",
2357
+ "hb",
2358
+ "H",
2359
+ "hB"
2360
+ ],
2361
+ "es-BO": [
2362
+ "H",
2363
+ "h",
2364
+ "hB",
2365
+ "hb"
2366
+ ],
2367
+ "es-BR": [
2368
+ "H",
2369
+ "h",
2370
+ "hB",
2371
+ "hb"
2372
+ ],
2373
+ "es-EC": [
2374
+ "H",
2375
+ "h",
2376
+ "hB",
2377
+ "hb"
2378
+ ],
2379
+ "es-ES": [
2380
+ "H",
2381
+ "h",
2382
+ "hB",
2383
+ "hb"
2384
+ ],
2385
+ "es-GQ": [
2386
+ "H",
2387
+ "h",
2388
+ "hB",
2389
+ "hb"
2390
+ ],
2391
+ "es-PE": [
2392
+ "H",
2393
+ "h",
2394
+ "hB",
2395
+ "hb"
2396
+ ],
2397
+ "fr-CA": [
2398
+ "H",
2399
+ "h",
2400
+ "hB"
2401
+ ],
2402
+ "gl-ES": [
2403
+ "H",
2404
+ "h",
2405
+ "hB"
2406
+ ],
2407
+ "gu-IN": [
2408
+ "hB",
2409
+ "hb",
2410
+ "h",
2411
+ "H"
2412
+ ],
2413
+ "hi-IN": [
2414
+ "hB",
2415
+ "h",
2416
+ "H"
2417
+ ],
2418
+ "it-CH": [
2419
+ "H",
2420
+ "h",
2421
+ "hB"
2422
+ ],
2423
+ "it-IT": [
2424
+ "H",
2425
+ "h",
2426
+ "hB"
2427
+ ],
2428
+ "kn-IN": [
2429
+ "hB",
2430
+ "h",
2431
+ "H"
2432
+ ],
2433
+ "ml-IN": [
2434
+ "hB",
2435
+ "h",
2436
+ "H"
2437
+ ],
2438
+ "mr-IN": [
2439
+ "hB",
2440
+ "hb",
2441
+ "h",
2442
+ "H"
2443
+ ],
2444
+ "pa-IN": [
2445
+ "hB",
2446
+ "hb",
2447
+ "h",
2448
+ "H"
2449
+ ],
2450
+ "ta-IN": [
2451
+ "hB",
2452
+ "h",
2453
+ "hb",
2454
+ "H"
2455
+ ],
2456
+ "te-IN": [
2457
+ "hB",
2458
+ "h",
2459
+ "H"
2460
+ ],
2461
+ "zu-ZA": [
2462
+ "H",
2463
+ "hB",
2464
+ "hb",
2465
+ "h"
2466
+ ]
2467
+ };
2468
+ function fn(e, t) {
2469
+ for (var r = "", n = 0; n < e.length; n++) {
2470
+ var i = e.charAt(n);
2471
+ if (i === "j") {
2472
+ for (var o = 0; n + 1 < e.length && e.charAt(n + 1) === i; )
2473
+ o++, n++;
2474
+ var s = 1 + (o & 1), a = o < 2 ? 1 : 3 + (o >> 1), l = "a", u = mn(t);
2475
+ for ((u == "H" || u == "k") && (a = 0); a-- > 0; )
2476
+ r += l;
2477
+ for (; s-- > 0; )
2478
+ r = u + r;
2479
+ } else i === "J" ? r += "H" : r += i;
2480
+ }
2481
+ return r;
2482
+ }
2483
+ function mn(e) {
2484
+ var t = e.hourCycle;
2485
+ if (t === void 0 && // @ts-ignore hourCycle(s) is not identified yet
2486
+ e.hourCycles && // @ts-ignore
2487
+ e.hourCycles.length && (t = e.hourCycles[0]), t)
2488
+ switch (t) {
2489
+ case "h24":
2490
+ return "k";
2491
+ case "h23":
2492
+ return "H";
2493
+ case "h12":
2494
+ return "h";
2495
+ case "h11":
2496
+ return "K";
2497
+ default:
2498
+ throw new Error("Invalid hourCycle");
2499
+ }
2500
+ var r = e.language, n;
2501
+ r !== "root" && (n = e.maximize().region);
2502
+ var i = Te[n || ""] || Te[r || ""] || Te["".concat(r, "-001")] || Te["001"];
2503
+ return i[0];
2504
+ }
2505
+ var De, dn = new RegExp("^".concat(Zt.source, "*")), pn = new RegExp("".concat(Zt.source, "*$"));
2506
+ function y(e, t) {
2507
+ return { start: e, end: t };
2508
+ }
2509
+ var bn = !!String.prototype.startsWith && "_a".startsWith("a", 1), gn = !!String.fromCodePoint, vn = !!Object.fromEntries, yn = !!String.prototype.codePointAt, _n = !!String.prototype.trimStart, En = !!String.prototype.trimEnd, xn = !!Number.isSafeInteger, Tn = xn ? Number.isSafeInteger : function(e) {
2510
+ return typeof e == "number" && isFinite(e) && Math.floor(e) === e && Math.abs(e) <= 9007199254740991;
2511
+ }, Je = !0;
2512
+ try {
2513
+ var Bn = Qt("([^\\p{White_Space}\\p{Pattern_Syntax}]*)", "yu");
2514
+ Je = ((De = Bn.exec("a")) === null || De === void 0 ? void 0 : De[0]) === "a";
2515
+ } catch (e) {
2516
+ Je = !1;
2517
+ }
2518
+ var _t = bn ? (
2519
+ // Native
2520
+ function(t, r, n) {
2521
+ return t.startsWith(r, n);
2522
+ }
2523
+ ) : (
2524
+ // For IE11
2525
+ function(t, r, n) {
2526
+ return t.slice(n, n + r.length) === r;
2527
+ }
2528
+ ), Ye = gn ? String.fromCodePoint : (
2529
+ // IE11
2530
+ function() {
2531
+ for (var t = [], r = 0; r < arguments.length; r++)
2532
+ t[r] = arguments[r];
2533
+ for (var n = "", i = t.length, o = 0, s; i > o; ) {
2534
+ if (s = t[o++], s > 1114111)
2535
+ throw RangeError(s + " is not a valid code point");
2536
+ n += s < 65536 ? String.fromCharCode(s) : String.fromCharCode(((s -= 65536) >> 10) + 55296, s % 1024 + 56320);
2537
+ }
2538
+ return n;
2539
+ }
2540
+ ), Et = (
2541
+ // native
2542
+ vn ? Object.fromEntries : (
2543
+ // Ponyfill
2544
+ function(t) {
2545
+ for (var r = {}, n = 0, i = t; n < i.length; n++) {
2546
+ var o = i[n], s = o[0], a = o[1];
2547
+ r[s] = a;
2548
+ }
2549
+ return r;
2550
+ }
2551
+ )
2552
+ ), Kt = yn ? (
2553
+ // Native
2554
+ function(t, r) {
2555
+ return t.codePointAt(r);
2556
+ }
2557
+ ) : (
2558
+ // IE 11
2559
+ function(t, r) {
2560
+ var n = t.length;
2561
+ if (!(r < 0 || r >= n)) {
2562
+ var i = t.charCodeAt(r), o;
2563
+ return i < 55296 || i > 56319 || r + 1 === n || (o = t.charCodeAt(r + 1)) < 56320 || o > 57343 ? i : (i - 55296 << 10) + (o - 56320) + 65536;
2564
+ }
2565
+ }
2566
+ ), wn = _n ? (
2567
+ // Native
2568
+ function(t) {
2569
+ return t.trimStart();
2570
+ }
2571
+ ) : (
2572
+ // Ponyfill
2573
+ function(t) {
2574
+ return t.replace(dn, "");
2575
+ }
2576
+ ), Hn = En ? (
2577
+ // Native
2578
+ function(t) {
2579
+ return t.trimEnd();
2580
+ }
2581
+ ) : (
2582
+ // Ponyfill
2583
+ function(t) {
2584
+ return t.replace(pn, "");
2585
+ }
2586
+ );
2587
+ function Qt(e, t) {
2588
+ return new RegExp(e, t);
2589
+ }
2590
+ var qe;
2591
+ if (Je) {
2592
+ var xt = Qt("([^\\p{White_Space}\\p{Pattern_Syntax}]*)", "yu");
2593
+ qe = function(t, r) {
2594
+ var n;
2595
+ xt.lastIndex = r;
2596
+ var i = xt.exec(t);
2597
+ return (n = i[1]) !== null && n !== void 0 ? n : "";
2598
+ };
2599
+ } else
2600
+ qe = function(t, r) {
2601
+ for (var n = []; ; ) {
2602
+ var i = Kt(t, r);
2603
+ if (i === void 0 || er(i) || Rn(i))
2604
+ break;
2605
+ n.push(i), r += i >= 65536 ? 2 : 1;
2606
+ }
2607
+ return Ye.apply(void 0, n);
2608
+ };
2609
+ var Cn = (
2610
+ /** @class */
2611
+ function() {
2612
+ function e(t, r) {
2613
+ r === void 0 && (r = {}), this.message = t, this.position = { offset: 0, line: 1, column: 1 }, this.ignoreTag = !!r.ignoreTag, this.locale = r.locale, this.requiresOtherClause = !!r.requiresOtherClause, this.shouldParseSkeletons = !!r.shouldParseSkeletons;
2614
+ }
2615
+ return e.prototype.parse = function() {
2616
+ if (this.offset() !== 0)
2617
+ throw Error("parser can only be used once");
2618
+ return this.parseMessage(0, "", !1);
2619
+ }, e.prototype.parseMessage = function(t, r, n) {
2620
+ for (var i = []; !this.isEOF(); ) {
2621
+ var o = this.char();
2622
+ if (o === 123) {
2623
+ var s = this.parseArgument(t, n);
2624
+ if (s.err)
2625
+ return s;
2626
+ i.push(s.val);
2627
+ } else {
2628
+ if (o === 125 && t > 0)
2629
+ break;
2630
+ if (o === 35 && (r === "plural" || r === "selectordinal")) {
2631
+ var a = this.clonePosition();
2632
+ this.bump(), i.push({
2633
+ type: B.pound,
2634
+ location: y(a, this.clonePosition())
2635
+ });
2636
+ } else if (o === 60 && !this.ignoreTag && this.peek() === 47) {
2637
+ if (n)
2638
+ break;
2639
+ return this.error(b.UNMATCHED_CLOSING_TAG, y(this.clonePosition(), this.clonePosition()));
2640
+ } else if (o === 60 && !this.ignoreTag && Ke(this.peek() || 0)) {
2641
+ var s = this.parseTag(t, r);
2642
+ if (s.err)
2643
+ return s;
2644
+ i.push(s.val);
2645
+ } else {
2646
+ var s = this.parseLiteral(t, r);
2647
+ if (s.err)
2648
+ return s;
2649
+ i.push(s.val);
2650
+ }
2651
+ }
2652
+ }
2653
+ return { val: i, err: null };
2654
+ }, e.prototype.parseTag = function(t, r) {
2655
+ var n = this.clonePosition();
2656
+ this.bump();
2657
+ var i = this.parseTagName();
2658
+ if (this.bumpSpace(), this.bumpIf("/>"))
2659
+ return {
2660
+ val: {
2661
+ type: B.literal,
2662
+ value: "<".concat(i, "/>"),
2663
+ location: y(n, this.clonePosition())
2664
+ },
2665
+ err: null
2666
+ };
2667
+ if (this.bumpIf(">")) {
2668
+ var o = this.parseMessage(t + 1, r, !0);
2669
+ if (o.err)
2670
+ return o;
2671
+ var s = o.val, a = this.clonePosition();
2672
+ if (this.bumpIf("</")) {
2673
+ if (this.isEOF() || !Ke(this.char()))
2674
+ return this.error(b.INVALID_TAG, y(a, this.clonePosition()));
2675
+ var l = this.clonePosition(), u = this.parseTagName();
2676
+ return i !== u ? this.error(b.UNMATCHED_CLOSING_TAG, y(l, this.clonePosition())) : (this.bumpSpace(), this.bumpIf(">") ? {
2677
+ val: {
2678
+ type: B.tag,
2679
+ value: i,
2680
+ children: s,
2681
+ location: y(n, this.clonePosition())
2682
+ },
2683
+ err: null
2684
+ } : this.error(b.INVALID_TAG, y(a, this.clonePosition())));
2685
+ } else
2686
+ return this.error(b.UNCLOSED_TAG, y(n, this.clonePosition()));
2687
+ } else
2688
+ return this.error(b.INVALID_TAG, y(n, this.clonePosition()));
2689
+ }, e.prototype.parseTagName = function() {
2690
+ var t = this.offset();
2691
+ for (this.bump(); !this.isEOF() && Mn(this.char()); )
2692
+ this.bump();
2693
+ return this.message.slice(t, this.offset());
2694
+ }, e.prototype.parseLiteral = function(t, r) {
2695
+ for (var n = this.clonePosition(), i = ""; ; ) {
2696
+ var o = this.tryParseQuote(r);
2697
+ if (o) {
2698
+ i += o;
2699
+ continue;
2700
+ }
2701
+ var s = this.tryParseUnquoted(t, r);
2702
+ if (s) {
2703
+ i += s;
2704
+ continue;
2705
+ }
2706
+ var a = this.tryParseLeftAngleBracket();
2707
+ if (a) {
2708
+ i += a;
2709
+ continue;
2710
+ }
2711
+ break;
2712
+ }
2713
+ var l = y(n, this.clonePosition());
2714
+ return {
2715
+ val: { type: B.literal, value: i, location: l },
2716
+ err: null
2717
+ };
2718
+ }, e.prototype.tryParseLeftAngleBracket = function() {
2719
+ return !this.isEOF() && this.char() === 60 && (this.ignoreTag || // If at the opening tag or closing tag position, bail.
2720
+ !Sn(this.peek() || 0)) ? (this.bump(), "<") : null;
2721
+ }, e.prototype.tryParseQuote = function(t) {
2722
+ if (this.isEOF() || this.char() !== 39)
2723
+ return null;
2724
+ switch (this.peek()) {
2725
+ case 39:
2726
+ return this.bump(), this.bump(), "'";
2727
+ case 123:
2728
+ case 60:
2729
+ case 62:
2730
+ case 125:
2731
+ break;
2732
+ case 35:
2733
+ if (t === "plural" || t === "selectordinal")
2734
+ break;
2735
+ return null;
2736
+ default:
2737
+ return null;
2738
+ }
2739
+ this.bump();
2740
+ var r = [this.char()];
2741
+ for (this.bump(); !this.isEOF(); ) {
2742
+ var n = this.char();
2743
+ if (n === 39)
2744
+ if (this.peek() === 39)
2745
+ r.push(39), this.bump();
2746
+ else {
2747
+ this.bump();
2748
+ break;
2749
+ }
2750
+ else
2751
+ r.push(n);
2752
+ this.bump();
2753
+ }
2754
+ return Ye.apply(void 0, r);
2755
+ }, e.prototype.tryParseUnquoted = function(t, r) {
2756
+ if (this.isEOF())
2757
+ return null;
2758
+ var n = this.char();
2759
+ return n === 60 || n === 123 || n === 35 && (r === "plural" || r === "selectordinal") || n === 125 && t > 0 ? null : (this.bump(), Ye(n));
2760
+ }, e.prototype.parseArgument = function(t, r) {
2761
+ var n = this.clonePosition();
2762
+ if (this.bump(), this.bumpSpace(), this.isEOF())
2763
+ return this.error(b.EXPECT_ARGUMENT_CLOSING_BRACE, y(n, this.clonePosition()));
2764
+ if (this.char() === 125)
2765
+ return this.bump(), this.error(b.EMPTY_ARGUMENT, y(n, this.clonePosition()));
2766
+ var i = this.parseIdentifierIfPossible().value;
2767
+ if (!i)
2768
+ return this.error(b.MALFORMED_ARGUMENT, y(n, this.clonePosition()));
2769
+ if (this.bumpSpace(), this.isEOF())
2770
+ return this.error(b.EXPECT_ARGUMENT_CLOSING_BRACE, y(n, this.clonePosition()));
2771
+ switch (this.char()) {
2772
+ case 125:
2773
+ return this.bump(), {
2774
+ val: {
2775
+ type: B.argument,
2776
+ // value does not include the opening and closing braces.
2777
+ value: i,
2778
+ location: y(n, this.clonePosition())
2779
+ },
2780
+ err: null
2781
+ };
2782
+ case 44:
2783
+ return this.bump(), this.bumpSpace(), this.isEOF() ? this.error(b.EXPECT_ARGUMENT_CLOSING_BRACE, y(n, this.clonePosition())) : this.parseArgumentOptions(t, r, i, n);
2784
+ default:
2785
+ return this.error(b.MALFORMED_ARGUMENT, y(n, this.clonePosition()));
2786
+ }
2787
+ }, e.prototype.parseIdentifierIfPossible = function() {
2788
+ var t = this.clonePosition(), r = this.offset(), n = qe(this.message, r), i = r + n.length;
2789
+ this.bumpTo(i);
2790
+ var o = this.clonePosition(), s = y(t, o);
2791
+ return { value: n, location: s };
2792
+ }, e.prototype.parseArgumentOptions = function(t, r, n, i) {
2793
+ var o, s = this.clonePosition(), a = this.parseIdentifierIfPossible().value, l = this.clonePosition();
2794
+ switch (a) {
2795
+ case "":
2796
+ return this.error(b.EXPECT_ARGUMENT_TYPE, y(s, l));
2797
+ case "number":
2798
+ case "date":
2799
+ case "time": {
2800
+ this.bumpSpace();
2801
+ var u = null;
2802
+ if (this.bumpIf(",")) {
2803
+ this.bumpSpace();
2804
+ var h = this.clonePosition(), c = this.parseSimpleArgStyleIfPossible();
2805
+ if (c.err)
2806
+ return c;
2807
+ var f = Hn(c.val);
2808
+ if (f.length === 0)
2809
+ return this.error(b.EXPECT_ARGUMENT_STYLE, y(this.clonePosition(), this.clonePosition()));
2810
+ var g = y(h, this.clonePosition());
2811
+ u = { style: f, styleLocation: g };
2812
+ }
2813
+ var v = this.tryParseArgumentClose(i);
2814
+ if (v.err)
2815
+ return v;
2816
+ var T = y(i, this.clonePosition());
2817
+ if (u && _t(u == null ? void 0 : u.style, "::", 0)) {
2818
+ var w = wn(u.style.slice(2));
2819
+ if (a === "number") {
2820
+ var c = this.parseNumberSkeletonFromString(w, u.styleLocation);
2821
+ return c.err ? c : {
2822
+ val: { type: B.number, value: n, location: T, style: c.val },
2823
+ err: null
2824
+ };
2825
+ } else {
2826
+ if (w.length === 0)
2827
+ return this.error(b.EXPECT_DATE_TIME_SKELETON, T);
2828
+ var C = w;
2829
+ this.locale && (C = fn(w, this.locale));
2830
+ var f = {
2831
+ type: he.dateTime,
2832
+ pattern: C,
2833
+ location: u.styleLocation,
2834
+ parsedOptions: this.shouldParseSkeletons ? on(C) : {}
2835
+ }, k = a === "date" ? B.date : B.time;
2836
+ return {
2837
+ val: { type: k, value: n, location: T, style: f },
2838
+ err: null
2839
+ };
2840
+ }
2841
+ }
2842
+ return {
2843
+ val: {
2844
+ type: a === "number" ? B.number : a === "date" ? B.date : B.time,
2845
+ value: n,
2846
+ location: T,
2847
+ style: (o = u == null ? void 0 : u.style) !== null && o !== void 0 ? o : null
2848
+ },
2849
+ err: null
2850
+ };
2851
+ }
2852
+ case "plural":
2853
+ case "selectordinal":
2854
+ case "select": {
2855
+ var S = this.clonePosition();
2856
+ if (this.bumpSpace(), !this.bumpIf(","))
2857
+ return this.error(b.EXPECT_SELECT_ARGUMENT_OPTIONS, y(S, _({}, S)));
2858
+ this.bumpSpace();
2859
+ var L = this.parseIdentifierIfPossible(), P = 0;
2860
+ if (a !== "select" && L.value === "offset") {
2861
+ if (!this.bumpIf(":"))
2862
+ return this.error(b.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, y(this.clonePosition(), this.clonePosition()));
2863
+ this.bumpSpace();
2864
+ var c = this.tryParseDecimalInteger(b.EXPECT_PLURAL_ARGUMENT_OFFSET_VALUE, b.INVALID_PLURAL_ARGUMENT_OFFSET_VALUE);
2865
+ if (c.err)
2866
+ return c;
2867
+ this.bumpSpace(), L = this.parseIdentifierIfPossible(), P = c.val;
2868
+ }
2869
+ var J = this.tryParsePluralOrSelectOptions(t, a, r, L);
2870
+ if (J.err)
2871
+ return J;
2872
+ var v = this.tryParseArgumentClose(i);
2873
+ if (v.err)
2874
+ return v;
2875
+ var te = y(i, this.clonePosition());
2876
+ return a === "select" ? {
2877
+ val: {
2878
+ type: B.select,
2879
+ value: n,
2880
+ options: Et(J.val),
2881
+ location: te
2882
+ },
2883
+ err: null
2884
+ } : {
2885
+ val: {
2886
+ type: B.plural,
2887
+ value: n,
2888
+ options: Et(J.val),
2889
+ offset: P,
2890
+ pluralType: a === "plural" ? "cardinal" : "ordinal",
2891
+ location: te
2892
+ },
2893
+ err: null
2894
+ };
2895
+ }
2896
+ default:
2897
+ return this.error(b.INVALID_ARGUMENT_TYPE, y(s, l));
2898
+ }
2899
+ }, e.prototype.tryParseArgumentClose = function(t) {
2900
+ return this.isEOF() || this.char() !== 125 ? this.error(b.EXPECT_ARGUMENT_CLOSING_BRACE, y(t, this.clonePosition())) : (this.bump(), { val: !0, err: null });
2901
+ }, e.prototype.parseSimpleArgStyleIfPossible = function() {
2902
+ for (var t = 0, r = this.clonePosition(); !this.isEOF(); ) {
2903
+ var n = this.char();
2904
+ switch (n) {
2905
+ case 39: {
2906
+ this.bump();
2907
+ var i = this.clonePosition();
2908
+ if (!this.bumpUntil("'"))
2909
+ return this.error(b.UNCLOSED_QUOTE_IN_ARGUMENT_STYLE, y(i, this.clonePosition()));
2910
+ this.bump();
2911
+ break;
2912
+ }
2913
+ case 123: {
2914
+ t += 1, this.bump();
2915
+ break;
2916
+ }
2917
+ case 125: {
2918
+ if (t > 0)
2919
+ t -= 1;
2920
+ else
2921
+ return {
2922
+ val: this.message.slice(r.offset, this.offset()),
2923
+ err: null
2924
+ };
2925
+ break;
2926
+ }
2927
+ default:
2928
+ this.bump();
2929
+ break;
2930
+ }
2931
+ }
2932
+ return {
2933
+ val: this.message.slice(r.offset, this.offset()),
2934
+ err: null
2935
+ };
2936
+ }, e.prototype.parseNumberSkeletonFromString = function(t, r) {
2937
+ var n = [];
2938
+ try {
2939
+ n = an(t);
2940
+ } catch (i) {
2941
+ return this.error(b.INVALID_NUMBER_SKELETON, r);
2942
+ }
2943
+ return {
2944
+ val: {
2945
+ type: he.number,
2946
+ tokens: n,
2947
+ location: r,
2948
+ parsedOptions: this.shouldParseSkeletons ? cn(n) : {}
2949
+ },
2950
+ err: null
2951
+ };
2952
+ }, e.prototype.tryParsePluralOrSelectOptions = function(t, r, n, i) {
2953
+ for (var o, s = !1, a = [], l = /* @__PURE__ */ new Set(), u = i.value, h = i.location; ; ) {
2954
+ if (u.length === 0) {
2955
+ var c = this.clonePosition();
2956
+ if (r !== "select" && this.bumpIf("=")) {
2957
+ var f = this.tryParseDecimalInteger(b.EXPECT_PLURAL_ARGUMENT_SELECTOR, b.INVALID_PLURAL_ARGUMENT_SELECTOR);
2958
+ if (f.err)
2959
+ return f;
2960
+ h = y(c, this.clonePosition()), u = this.message.slice(c.offset, this.offset());
2961
+ } else
2962
+ break;
2963
+ }
2964
+ if (l.has(u))
2965
+ return this.error(r === "select" ? b.DUPLICATE_SELECT_ARGUMENT_SELECTOR : b.DUPLICATE_PLURAL_ARGUMENT_SELECTOR, h);
2966
+ u === "other" && (s = !0), this.bumpSpace();
2967
+ var g = this.clonePosition();
2968
+ if (!this.bumpIf("{"))
2969
+ return this.error(r === "select" ? b.EXPECT_SELECT_ARGUMENT_SELECTOR_FRAGMENT : b.EXPECT_PLURAL_ARGUMENT_SELECTOR_FRAGMENT, y(this.clonePosition(), this.clonePosition()));
2970
+ var v = this.parseMessage(t + 1, r, n);
2971
+ if (v.err)
2972
+ return v;
2973
+ var T = this.tryParseArgumentClose(g);
2974
+ if (T.err)
2975
+ return T;
2976
+ a.push([
2977
+ u,
2978
+ {
2979
+ value: v.val,
2980
+ location: y(g, this.clonePosition())
2981
+ }
2982
+ ]), l.add(u), this.bumpSpace(), o = this.parseIdentifierIfPossible(), u = o.value, h = o.location;
2983
+ }
2984
+ return a.length === 0 ? this.error(r === "select" ? b.EXPECT_SELECT_ARGUMENT_SELECTOR : b.EXPECT_PLURAL_ARGUMENT_SELECTOR, y(this.clonePosition(), this.clonePosition())) : this.requiresOtherClause && !s ? this.error(b.MISSING_OTHER_CLAUSE, y(this.clonePosition(), this.clonePosition())) : { val: a, err: null };
2985
+ }, e.prototype.tryParseDecimalInteger = function(t, r) {
2986
+ var n = 1, i = this.clonePosition();
2987
+ this.bumpIf("+") || this.bumpIf("-") && (n = -1);
2988
+ for (var o = !1, s = 0; !this.isEOF(); ) {
2989
+ var a = this.char();
2990
+ if (a >= 48 && a <= 57)
2991
+ o = !0, s = s * 10 + (a - 48), this.bump();
2992
+ else
2993
+ break;
2994
+ }
2995
+ var l = y(i, this.clonePosition());
2996
+ return o ? (s *= n, Tn(s) ? { val: s, err: null } : this.error(r, l)) : this.error(t, l);
2997
+ }, e.prototype.offset = function() {
2998
+ return this.position.offset;
2999
+ }, e.prototype.isEOF = function() {
3000
+ return this.offset() === this.message.length;
3001
+ }, e.prototype.clonePosition = function() {
3002
+ return {
3003
+ offset: this.position.offset,
3004
+ line: this.position.line,
3005
+ column: this.position.column
3006
+ };
3007
+ }, e.prototype.char = function() {
3008
+ var t = this.position.offset;
3009
+ if (t >= this.message.length)
3010
+ throw Error("out of bound");
3011
+ var r = Kt(this.message, t);
3012
+ if (r === void 0)
3013
+ throw Error("Offset ".concat(t, " is at invalid UTF-16 code unit boundary"));
3014
+ return r;
3015
+ }, e.prototype.error = function(t, r) {
3016
+ return {
3017
+ val: null,
3018
+ err: {
3019
+ kind: t,
3020
+ message: this.message,
3021
+ location: r
3022
+ }
3023
+ };
3024
+ }, e.prototype.bump = function() {
3025
+ if (!this.isEOF()) {
3026
+ var t = this.char();
3027
+ t === 10 ? (this.position.line += 1, this.position.column = 1, this.position.offset += 1) : (this.position.column += 1, this.position.offset += t < 65536 ? 1 : 2);
3028
+ }
3029
+ }, e.prototype.bumpIf = function(t) {
3030
+ if (_t(this.message, t, this.offset())) {
3031
+ for (var r = 0; r < t.length; r++)
3032
+ this.bump();
3033
+ return !0;
3034
+ }
3035
+ return !1;
3036
+ }, e.prototype.bumpUntil = function(t) {
3037
+ var r = this.offset(), n = this.message.indexOf(t, r);
3038
+ return n >= 0 ? (this.bumpTo(n), !0) : (this.bumpTo(this.message.length), !1);
3039
+ }, e.prototype.bumpTo = function(t) {
3040
+ if (this.offset() > t)
3041
+ throw Error("targetOffset ".concat(t, " must be greater than or equal to the current offset ").concat(this.offset()));
3042
+ for (t = Math.min(t, this.message.length); ; ) {
3043
+ var r = this.offset();
3044
+ if (r === t)
3045
+ break;
3046
+ if (r > t)
3047
+ throw Error("targetOffset ".concat(t, " is at invalid UTF-16 code unit boundary"));
3048
+ if (this.bump(), this.isEOF())
3049
+ break;
3050
+ }
3051
+ }, e.prototype.bumpSpace = function() {
3052
+ for (; !this.isEOF() && er(this.char()); )
3053
+ this.bump();
3054
+ }, e.prototype.peek = function() {
3055
+ if (this.isEOF())
3056
+ return null;
3057
+ var t = this.char(), r = this.offset(), n = this.message.charCodeAt(r + (t >= 65536 ? 2 : 1));
3058
+ return n != null ? n : null;
3059
+ }, e;
3060
+ }()
3061
+ );
3062
+ function Ke(e) {
3063
+ return e >= 97 && e <= 122 || e >= 65 && e <= 90;
3064
+ }
3065
+ function Sn(e) {
3066
+ return Ke(e) || e === 47;
3067
+ }
3068
+ function Mn(e) {
3069
+ return e === 45 || e === 46 || e >= 48 && e <= 57 || e === 95 || e >= 97 && e <= 122 || e >= 65 && e <= 90 || e == 183 || e >= 192 && e <= 214 || e >= 216 && e <= 246 || e >= 248 && e <= 893 || e >= 895 && e <= 8191 || e >= 8204 && e <= 8205 || e >= 8255 && e <= 8256 || e >= 8304 && e <= 8591 || e >= 11264 && e <= 12271 || e >= 12289 && e <= 55295 || e >= 63744 && e <= 64975 || e >= 65008 && e <= 65533 || e >= 65536 && e <= 983039;
3070
+ }
3071
+ function er(e) {
3072
+ return e >= 9 && e <= 13 || e === 32 || e === 133 || e >= 8206 && e <= 8207 || e === 8232 || e === 8233;
3073
+ }
3074
+ function Rn(e) {
3075
+ return e >= 33 && e <= 35 || e === 36 || e >= 37 && e <= 39 || e === 40 || e === 41 || e === 42 || e === 43 || e === 44 || e === 45 || e >= 46 && e <= 47 || e >= 58 && e <= 59 || e >= 60 && e <= 62 || e >= 63 && e <= 64 || e === 91 || e === 92 || e === 93 || e === 94 || e === 96 || e === 123 || e === 124 || e === 125 || e === 126 || e === 161 || e >= 162 && e <= 165 || e === 166 || e === 167 || e === 169 || e === 171 || e === 172 || e === 174 || e === 176 || e === 177 || e === 182 || e === 187 || e === 191 || e === 215 || e === 247 || e >= 8208 && e <= 8213 || e >= 8214 && e <= 8215 || e === 8216 || e === 8217 || e === 8218 || e >= 8219 && e <= 8220 || e === 8221 || e === 8222 || e === 8223 || e >= 8224 && e <= 8231 || e >= 8240 && e <= 8248 || e === 8249 || e === 8250 || e >= 8251 && e <= 8254 || e >= 8257 && e <= 8259 || e === 8260 || e === 8261 || e === 8262 || e >= 8263 && e <= 8273 || e === 8274 || e === 8275 || e >= 8277 && e <= 8286 || e >= 8592 && e <= 8596 || e >= 8597 && e <= 8601 || e >= 8602 && e <= 8603 || e >= 8604 && e <= 8607 || e === 8608 || e >= 8609 && e <= 8610 || e === 8611 || e >= 8612 && e <= 8613 || e === 8614 || e >= 8615 && e <= 8621 || e === 8622 || e >= 8623 && e <= 8653 || e >= 8654 && e <= 8655 || e >= 8656 && e <= 8657 || e === 8658 || e === 8659 || e === 8660 || e >= 8661 && e <= 8691 || e >= 8692 && e <= 8959 || e >= 8960 && e <= 8967 || e === 8968 || e === 8969 || e === 8970 || e === 8971 || e >= 8972 && e <= 8991 || e >= 8992 && e <= 8993 || e >= 8994 && e <= 9e3 || e === 9001 || e === 9002 || e >= 9003 && e <= 9083 || e === 9084 || e >= 9085 && e <= 9114 || e >= 9115 && e <= 9139 || e >= 9140 && e <= 9179 || e >= 9180 && e <= 9185 || e >= 9186 && e <= 9254 || e >= 9255 && e <= 9279 || e >= 9280 && e <= 9290 || e >= 9291 && e <= 9311 || e >= 9472 && e <= 9654 || e === 9655 || e >= 9656 && e <= 9664 || e === 9665 || e >= 9666 && e <= 9719 || e >= 9720 && e <= 9727 || e >= 9728 && e <= 9838 || e === 9839 || e >= 9840 && e <= 10087 || e === 10088 || e === 10089 || e === 10090 || e === 10091 || e === 10092 || e === 10093 || e === 10094 || e === 10095 || e === 10096 || e === 10097 || e === 10098 || e === 10099 || e === 10100 || e === 10101 || e >= 10132 && e <= 10175 || e >= 10176 && e <= 10180 || e === 10181 || e === 10182 || e >= 10183 && e <= 10213 || e === 10214 || e === 10215 || e === 10216 || e === 10217 || e === 10218 || e === 10219 || e === 10220 || e === 10221 || e === 10222 || e === 10223 || e >= 10224 && e <= 10239 || e >= 10240 && e <= 10495 || e >= 10496 && e <= 10626 || e === 10627 || e === 10628 || e === 10629 || e === 10630 || e === 10631 || e === 10632 || e === 10633 || e === 10634 || e === 10635 || e === 10636 || e === 10637 || e === 10638 || e === 10639 || e === 10640 || e === 10641 || e === 10642 || e === 10643 || e === 10644 || e === 10645 || e === 10646 || e === 10647 || e === 10648 || e >= 10649 && e <= 10711 || e === 10712 || e === 10713 || e === 10714 || e === 10715 || e >= 10716 && e <= 10747 || e === 10748 || e === 10749 || e >= 10750 && e <= 11007 || e >= 11008 && e <= 11055 || e >= 11056 && e <= 11076 || e >= 11077 && e <= 11078 || e >= 11079 && e <= 11084 || e >= 11085 && e <= 11123 || e >= 11124 && e <= 11125 || e >= 11126 && e <= 11157 || e === 11158 || e >= 11159 && e <= 11263 || e >= 11776 && e <= 11777 || e === 11778 || e === 11779 || e === 11780 || e === 11781 || e >= 11782 && e <= 11784 || e === 11785 || e === 11786 || e === 11787 || e === 11788 || e === 11789 || e >= 11790 && e <= 11798 || e === 11799 || e >= 11800 && e <= 11801 || e === 11802 || e === 11803 || e === 11804 || e === 11805 || e >= 11806 && e <= 11807 || e === 11808 || e === 11809 || e === 11810 || e === 11811 || e === 11812 || e === 11813 || e === 11814 || e === 11815 || e === 11816 || e === 11817 || e >= 11818 && e <= 11822 || e === 11823 || e >= 11824 && e <= 11833 || e >= 11834 && e <= 11835 || e >= 11836 && e <= 11839 || e === 11840 || e === 11841 || e === 11842 || e >= 11843 && e <= 11855 || e >= 11856 && e <= 11857 || e === 11858 || e >= 11859 && e <= 11903 || e >= 12289 && e <= 12291 || e === 12296 || e === 12297 || e === 12298 || e === 12299 || e === 12300 || e === 12301 || e === 12302 || e === 12303 || e === 12304 || e === 12305 || e >= 12306 && e <= 12307 || e === 12308 || e === 12309 || e === 12310 || e === 12311 || e === 12312 || e === 12313 || e === 12314 || e === 12315 || e === 12316 || e === 12317 || e >= 12318 && e <= 12319 || e === 12320 || e === 12336 || e === 64830 || e === 64831 || e >= 65093 && e <= 65094;
3076
+ }
3077
+ function Qe(e) {
3078
+ e.forEach(function(t) {
3079
+ if (delete t.location, Vt(t) || zt(t))
3080
+ for (var r in t.options)
3081
+ delete t.options[r].location, Qe(t.options[r].value);
3082
+ else Gt(t) && Wt(t.style) || (Ft(t) || jt(t)) && Ze(t.style) ? delete t.style.location : Xt(t) && Qe(t.children);
3083
+ });
3084
+ }
3085
+ function kn(e, t) {
3086
+ t === void 0 && (t = {}), t = _({ shouldParseSkeletons: !0, requiresOtherClause: !0 }, t);
3087
+ var r = new Cn(e, t).parse();
3088
+ if (r.err) {
3089
+ var n = SyntaxError(b[r.err.kind]);
3090
+ throw n.location = r.err.location, n.originalMessage = r.err.message, n;
3091
+ }
3092
+ return t != null && t.captureLocation || Qe(r.val), r.val;
3093
+ }
3094
+ function Ue(e, t) {
3095
+ var r = t && t.cache ? t.cache : In, n = t && t.serializer ? t.serializer : On, i = t && t.strategy ? t.strategy : An;
3096
+ return i(e, {
3097
+ cache: r,
3098
+ serializer: n
3099
+ });
3100
+ }
3101
+ function Nn(e) {
3102
+ return e == null || typeof e == "number" || typeof e == "boolean";
3103
+ }
3104
+ function tr(e, t, r, n) {
3105
+ var i = Nn(n) ? n : r(n), o = t.get(i);
3106
+ return typeof o == "undefined" && (o = e.call(this, n), t.set(i, o)), o;
3107
+ }
3108
+ function rr(e, t, r) {
3109
+ var n = Array.prototype.slice.call(arguments, 3), i = r(n), o = t.get(i);
3110
+ return typeof o == "undefined" && (o = e.apply(this, n), t.set(i, o)), o;
3111
+ }
3112
+ function it(e, t, r, n, i) {
3113
+ return r.bind(t, e, n, i);
3114
+ }
3115
+ function An(e, t) {
3116
+ var r = e.length === 1 ? tr : rr;
3117
+ return it(e, this, r, t.cache.create(), t.serializer);
3118
+ }
3119
+ function Ln(e, t) {
3120
+ return it(e, this, rr, t.cache.create(), t.serializer);
3121
+ }
3122
+ function Pn(e, t) {
3123
+ return it(e, this, tr, t.cache.create(), t.serializer);
3124
+ }
3125
+ var On = function() {
3126
+ return JSON.stringify(arguments);
3127
+ };
3128
+ function ot() {
3129
+ this.cache = /* @__PURE__ */ Object.create(null);
3130
+ }
3131
+ ot.prototype.get = function(e) {
3132
+ return this.cache[e];
3133
+ };
3134
+ ot.prototype.set = function(e, t) {
3135
+ this.cache[e] = t;
3136
+ };
3137
+ var In = {
3138
+ create: function() {
3139
+ return new ot();
3140
+ }
3141
+ }, Ge = {
3142
+ variadic: Ln,
3143
+ monadic: Pn
3144
+ }, ce;
3145
+ (function(e) {
3146
+ e.MISSING_VALUE = "MISSING_VALUE", e.INVALID_VALUE = "INVALID_VALUE", e.MISSING_INTL_API = "MISSING_INTL_API";
3147
+ })(ce || (ce = {}));
3148
+ var Ae = (
3149
+ /** @class */
3150
+ function(e) {
3151
+ Ne(t, e);
3152
+ function t(r, n, i) {
3153
+ var o = e.call(this, r) || this;
3154
+ return o.code = n, o.originalMessage = i, o;
3155
+ }
3156
+ return t.prototype.toString = function() {
3157
+ return "[formatjs Error: ".concat(this.code, "] ").concat(this.message);
3158
+ }, t;
3159
+ }(Error)
3160
+ ), Tt = (
3161
+ /** @class */
3162
+ function(e) {
3163
+ Ne(t, e);
3164
+ function t(r, n, i, o) {
3165
+ return e.call(this, 'Invalid values for "'.concat(r, '": "').concat(n, '". Options are "').concat(Object.keys(i).join('", "'), '"'), ce.INVALID_VALUE, o) || this;
3166
+ }
3167
+ return t;
3168
+ }(Ae)
3169
+ ), $n = (
3170
+ /** @class */
3171
+ function(e) {
3172
+ Ne(t, e);
3173
+ function t(r, n, i) {
3174
+ return e.call(this, 'Value for "'.concat(r, '" must be of type ').concat(n), ce.INVALID_VALUE, i) || this;
3175
+ }
3176
+ return t;
3177
+ }(Ae)
3178
+ ), Dn = (
3179
+ /** @class */
3180
+ function(e) {
3181
+ Ne(t, e);
3182
+ function t(r, n) {
3183
+ return e.call(this, 'The intl string context variable "'.concat(r, '" was not provided to the string "').concat(n, '"'), ce.MISSING_VALUE, n) || this;
3184
+ }
3185
+ return t;
3186
+ }(Ae)
3187
+ ), I;
3188
+ (function(e) {
3189
+ e[e.literal = 0] = "literal", e[e.object = 1] = "object";
3190
+ })(I || (I = {}));
3191
+ function Un(e) {
3192
+ return e.length < 2 ? e : e.reduce(function(t, r) {
3193
+ var n = t[t.length - 1];
3194
+ return !n || n.type !== I.literal || r.type !== I.literal ? t.push(r) : n.value += r.value, t;
3195
+ }, []);
3196
+ }
3197
+ function Gn(e) {
3198
+ return typeof e == "function";
3199
+ }
3200
+ function we(e, t, r, n, i, o, s) {
3201
+ if (e.length === 1 && bt(e[0]))
3202
+ return [
3203
+ {
3204
+ type: I.literal,
3205
+ value: e[0].value
3206
+ }
3207
+ ];
3208
+ for (var a = [], l = 0, u = e; l < u.length; l++) {
3209
+ var h = u[l];
3210
+ if (bt(h)) {
3211
+ a.push({
3212
+ type: I.literal,
3213
+ value: h.value
3214
+ });
3215
+ continue;
3216
+ }
3217
+ if (rn(h)) {
3218
+ typeof o == "number" && a.push({
3219
+ type: I.literal,
3220
+ value: r.getNumberFormat(t).format(o)
3221
+ });
3222
+ continue;
3223
+ }
3224
+ var c = h.value;
3225
+ if (!(i && c in i))
3226
+ throw new Dn(c, s);
3227
+ var f = i[c];
3228
+ if (tn(h)) {
3229
+ (!f || typeof f == "string" || typeof f == "number") && (f = typeof f == "string" || typeof f == "number" ? String(f) : ""), a.push({
3230
+ type: typeof f == "string" ? I.literal : I.object,
3231
+ value: f
3232
+ });
3233
+ continue;
3234
+ }
3235
+ if (Ft(h)) {
3236
+ var g = typeof h.style == "string" ? n.date[h.style] : Ze(h.style) ? h.style.parsedOptions : void 0;
3237
+ a.push({
3238
+ type: I.literal,
3239
+ value: r.getDateTimeFormat(t, g).format(f)
3240
+ });
3241
+ continue;
3242
+ }
3243
+ if (jt(h)) {
3244
+ var g = typeof h.style == "string" ? n.time[h.style] : Ze(h.style) ? h.style.parsedOptions : n.time.medium;
3245
+ a.push({
3246
+ type: I.literal,
3247
+ value: r.getDateTimeFormat(t, g).format(f)
3248
+ });
3249
+ continue;
3250
+ }
3251
+ if (Gt(h)) {
3252
+ var g = typeof h.style == "string" ? n.number[h.style] : Wt(h.style) ? h.style.parsedOptions : void 0;
3253
+ g && g.scale && (f = f * (g.scale || 1)), a.push({
3254
+ type: I.literal,
3255
+ value: r.getNumberFormat(t, g).format(f)
3256
+ });
3257
+ continue;
3258
+ }
3259
+ if (Xt(h)) {
3260
+ var v = h.children, T = h.value, w = i[T];
3261
+ if (!Gn(w))
3262
+ throw new $n(T, "function", s);
3263
+ var C = we(v, t, r, n, i, o), k = w(C.map(function(P) {
3264
+ return P.value;
3265
+ }));
3266
+ Array.isArray(k) || (k = [k]), a.push.apply(a, k.map(function(P) {
3267
+ return {
3268
+ type: typeof P == "string" ? I.literal : I.object,
3269
+ value: P
3270
+ };
3271
+ }));
3272
+ }
3273
+ if (Vt(h)) {
3274
+ var S = h.options[f] || h.options.other;
3275
+ if (!S)
3276
+ throw new Tt(h.value, f, Object.keys(h.options), s);
3277
+ a.push.apply(a, we(S.value, t, r, n, i));
3278
+ continue;
3279
+ }
3280
+ if (zt(h)) {
3281
+ var S = h.options["=".concat(f)];
3282
+ if (!S) {
3283
+ if (!Intl.PluralRules)
3284
+ throw new Ae(`Intl.PluralRules is not available in this environment.
3285
+ Try polyfilling it using "@formatjs/intl-pluralrules"
3286
+ `, ce.MISSING_INTL_API, s);
3287
+ var L = r.getPluralRules(t, { type: h.pluralType }).select(f - (h.offset || 0));
3288
+ S = h.options[L] || h.options.other;
3289
+ }
3290
+ if (!S)
3291
+ throw new Tt(h.value, f, Object.keys(h.options), s);
3292
+ a.push.apply(a, we(S.value, t, r, n, i, f - (h.offset || 0)));
3293
+ continue;
3294
+ }
3295
+ }
3296
+ return Un(a);
3297
+ }
3298
+ function Fn(e, t) {
3299
+ return t ? _(_(_({}, e || {}), t || {}), Object.keys(e).reduce(function(r, n) {
3300
+ return r[n] = _(_({}, e[n]), t[n] || {}), r;
3301
+ }, {})) : e;
3302
+ }
3303
+ function jn(e, t) {
3304
+ return t ? Object.keys(e).reduce(function(r, n) {
3305
+ return r[n] = Fn(e[n], t[n]), r;
3306
+ }, _({}, e)) : e;
3307
+ }
3308
+ function Fe(e) {
3309
+ return {
3310
+ create: function() {
3311
+ return {
3312
+ get: function(t) {
3313
+ return e[t];
3314
+ },
3315
+ set: function(t, r) {
3316
+ e[t] = r;
3317
+ }
3318
+ };
3319
+ }
3320
+ };
3321
+ }
3322
+ function Vn(e) {
3323
+ return e === void 0 && (e = {
3324
+ number: {},
3325
+ dateTime: {},
3326
+ pluralRules: {}
3327
+ }), {
3328
+ getNumberFormat: Ue(function() {
3329
+ for (var t, r = [], n = 0; n < arguments.length; n++)
3330
+ r[n] = arguments[n];
3331
+ return new ((t = Intl.NumberFormat).bind.apply(t, $e([void 0], r, !1)))();
3332
+ }, {
3333
+ cache: Fe(e.number),
3334
+ strategy: Ge.variadic
3335
+ }),
3336
+ getDateTimeFormat: Ue(function() {
3337
+ for (var t, r = [], n = 0; n < arguments.length; n++)
3338
+ r[n] = arguments[n];
3339
+ return new ((t = Intl.DateTimeFormat).bind.apply(t, $e([void 0], r, !1)))();
3340
+ }, {
3341
+ cache: Fe(e.dateTime),
3342
+ strategy: Ge.variadic
3343
+ }),
3344
+ getPluralRules: Ue(function() {
3345
+ for (var t, r = [], n = 0; n < arguments.length; n++)
3346
+ r[n] = arguments[n];
3347
+ return new ((t = Intl.PluralRules).bind.apply(t, $e([void 0], r, !1)))();
3348
+ }, {
3349
+ cache: Fe(e.pluralRules),
3350
+ strategy: Ge.variadic
3351
+ })
3352
+ };
3353
+ }
3354
+ var zn = (
3355
+ /** @class */
3356
+ function() {
3357
+ function e(t, r, n, i) {
3358
+ var o = this;
3359
+ if (r === void 0 && (r = e.defaultLocale), this.formatterCache = {
3360
+ number: {},
3361
+ dateTime: {},
3362
+ pluralRules: {}
3363
+ }, this.format = function(l) {
3364
+ var u = o.formatToParts(l);
3365
+ if (u.length === 1)
3366
+ return u[0].value;
3367
+ var h = u.reduce(function(c, f) {
3368
+ return !c.length || f.type !== I.literal || typeof c[c.length - 1] != "string" ? c.push(f.value) : c[c.length - 1] += f.value, c;
3369
+ }, []);
3370
+ return h.length <= 1 ? h[0] || "" : h;
3371
+ }, this.formatToParts = function(l) {
3372
+ return we(o.ast, o.locales, o.formatters, o.formats, l, void 0, o.message);
3373
+ }, this.resolvedOptions = function() {
3374
+ var l;
3375
+ return {
3376
+ locale: ((l = o.resolvedLocale) === null || l === void 0 ? void 0 : l.toString()) || Intl.NumberFormat.supportedLocalesOf(o.locales)[0]
3377
+ };
3378
+ }, this.getAst = function() {
3379
+ return o.ast;
3380
+ }, this.locales = r, this.resolvedLocale = e.resolveLocale(r), typeof t == "string") {
3381
+ if (this.message = t, !e.__parse)
3382
+ throw new TypeError("IntlMessageFormat.__parse must be set to process `message` of type `string`");
3383
+ var s = i || {};
3384
+ s.formatters;
3385
+ var a = en(s, ["formatters"]);
3386
+ this.ast = e.__parse(t, _(_({}, a), { locale: this.resolvedLocale }));
3387
+ } else
3388
+ this.ast = t;
3389
+ if (!Array.isArray(this.ast))
3390
+ throw new TypeError("A message must be provided as a String or AST.");
3391
+ this.formats = jn(e.formats, n), this.formatters = i && i.formatters || Vn(this.formatterCache);
3392
+ }
3393
+ return Object.defineProperty(e, "defaultLocale", {
3394
+ get: function() {
3395
+ return e.memoizedDefaultLocale || (e.memoizedDefaultLocale = new Intl.NumberFormat().resolvedOptions().locale), e.memoizedDefaultLocale;
3396
+ },
3397
+ enumerable: !1,
3398
+ configurable: !0
3399
+ }), e.memoizedDefaultLocale = null, e.resolveLocale = function(t) {
3400
+ if (typeof Intl.Locale != "undefined") {
3401
+ var r = Intl.NumberFormat.supportedLocalesOf(t);
3402
+ return r.length > 0 ? new Intl.Locale(r[0]) : new Intl.Locale(typeof t == "string" ? t : t[0]);
3403
+ }
3404
+ }, e.__parse = kn, e.formats = {
3405
+ number: {
3406
+ integer: {
3407
+ maximumFractionDigits: 0
3408
+ },
3409
+ currency: {
3410
+ style: "currency"
3411
+ },
3412
+ percent: {
3413
+ style: "percent"
3414
+ }
3415
+ },
3416
+ date: {
3417
+ short: {
3418
+ month: "numeric",
3419
+ day: "numeric",
3420
+ year: "2-digit"
3421
+ },
3422
+ medium: {
3423
+ month: "short",
3424
+ day: "numeric",
3425
+ year: "numeric"
3426
+ },
3427
+ long: {
3428
+ month: "long",
3429
+ day: "numeric",
3430
+ year: "numeric"
3431
+ },
3432
+ full: {
3433
+ weekday: "long",
3434
+ month: "long",
3435
+ day: "numeric",
3436
+ year: "numeric"
3437
+ }
3438
+ },
3439
+ time: {
3440
+ short: {
3441
+ hour: "numeric",
3442
+ minute: "numeric"
3443
+ },
3444
+ medium: {
3445
+ hour: "numeric",
3446
+ minute: "numeric",
3447
+ second: "numeric"
3448
+ },
3449
+ long: {
3450
+ hour: "numeric",
3451
+ minute: "numeric",
3452
+ second: "numeric",
3453
+ timeZoneName: "short"
3454
+ },
3455
+ full: {
3456
+ hour: "numeric",
3457
+ minute: "numeric",
3458
+ second: "numeric",
3459
+ timeZoneName: "short"
3460
+ }
3461
+ }
3462
+ }, e;
3463
+ }()
3464
+ );
3465
+ function Xn(e, t) {
3466
+ if (t == null)
3467
+ return;
3468
+ if (t in e)
3469
+ return e[t];
3470
+ const r = t.split(".");
3471
+ let n = e;
3472
+ for (let i = 0; i < r.length; i++)
3473
+ if (typeof n == "object") {
3474
+ if (i > 0) {
3475
+ const o = r.slice(i, r.length).join(".");
3476
+ if (o in n) {
3477
+ n = n[o];
3478
+ break;
3479
+ }
3480
+ }
3481
+ n = n[r[i]];
3482
+ } else
3483
+ n = void 0;
3484
+ return n;
3485
+ }
3486
+ const Q = {}, Wn = (e, t, r) => r && (t in Q || (Q[t] = {}), e in Q[t] || (Q[t][e] = r), r), nr = (e, t) => {
3487
+ if (t == null)
3488
+ return;
3489
+ if (t in Q && e in Q[t])
3490
+ return Q[t][e];
3491
+ const r = Le(t);
3492
+ for (let n = 0; n < r.length; n++) {
3493
+ const i = r[n], o = Jn(i, e);
3494
+ if (o)
3495
+ return Wn(e, t, o);
3496
+ }
3497
+ };
3498
+ let st;
3499
+ const de = ke({});
3500
+ function Zn(e) {
3501
+ return st[e] || null;
3502
+ }
3503
+ function ir(e) {
3504
+ return e in st;
3505
+ }
3506
+ function Jn(e, t) {
3507
+ if (!ir(e))
3508
+ return null;
3509
+ const r = Zn(e);
3510
+ return Xn(r, t);
3511
+ }
3512
+ function Yn(e) {
3513
+ if (e == null)
3514
+ return;
3515
+ const t = Le(e);
3516
+ for (let r = 0; r < t.length; r++) {
3517
+ const n = t[r];
3518
+ if (ir(n))
3519
+ return n;
3520
+ }
3521
+ }
3522
+ function or(e, ...t) {
3523
+ delete Q[e], de.update((r) => (r[e] = Qr.all([r[e] || {}, ...t]), r));
3524
+ }
3525
+ me(
3526
+ [de],
3527
+ ([e]) => Object.keys(e)
3528
+ );
3529
+ de.subscribe((e) => st = e);
3530
+ const He = {};
3531
+ function qn(e, t) {
3532
+ He[e].delete(t), He[e].size === 0 && delete He[e];
3533
+ }
3534
+ function sr(e) {
3535
+ return He[e];
3536
+ }
3537
+ function Kn(e) {
3538
+ return Le(e).map((t) => {
3539
+ const r = sr(t);
3540
+ return [t, r ? [...r] : []];
3541
+ }).filter(([, t]) => t.length > 0);
3542
+ }
3543
+ function et(e) {
3544
+ return e == null ? !1 : Le(e).some(
3545
+ (t) => {
3546
+ var r;
3547
+ return (r = sr(t)) == null ? void 0 : r.size;
3548
+ }
3549
+ );
3550
+ }
3551
+ function Qn(e, t) {
3552
+ return Promise.all(
3553
+ t.map((n) => (qn(e, n), n().then((i) => i.default || i)))
3554
+ ).then((n) => or(e, ...n));
3555
+ }
3556
+ const be = {};
3557
+ function ar(e) {
3558
+ if (!et(e))
3559
+ return e in be ? be[e] : Promise.resolve();
3560
+ const t = Kn(e);
3561
+ return be[e] = Promise.all(
3562
+ t.map(
3563
+ ([r, n]) => Qn(r, n)
3564
+ )
3565
+ ).then(() => {
3566
+ if (et(e))
3567
+ return ar(e);
3568
+ delete be[e];
3569
+ }), be[e];
3570
+ }
3571
+ const ei = {
3572
+ number: {
3573
+ scientific: { notation: "scientific" },
3574
+ engineering: { notation: "engineering" },
3575
+ compactLong: { notation: "compact", compactDisplay: "long" },
3576
+ compactShort: { notation: "compact", compactDisplay: "short" }
3577
+ },
3578
+ date: {
3579
+ short: { month: "numeric", day: "numeric", year: "2-digit" },
3580
+ medium: { month: "short", day: "numeric", year: "numeric" },
3581
+ long: { month: "long", day: "numeric", year: "numeric" },
3582
+ full: { weekday: "long", month: "long", day: "numeric", year: "numeric" }
3583
+ },
3584
+ time: {
3585
+ short: { hour: "numeric", minute: "numeric" },
3586
+ medium: { hour: "numeric", minute: "numeric", second: "numeric" },
3587
+ long: {
3588
+ hour: "numeric",
3589
+ minute: "numeric",
3590
+ second: "numeric",
3591
+ timeZoneName: "short"
3592
+ },
3593
+ full: {
3594
+ hour: "numeric",
3595
+ minute: "numeric",
3596
+ second: "numeric",
3597
+ timeZoneName: "short"
3598
+ }
3599
+ }
3600
+ }, ti = {
3601
+ fallbackLocale: null,
3602
+ loadingDelay: 200,
3603
+ formats: ei,
3604
+ warnOnMissingMessages: !0,
3605
+ handleMissingMessage: void 0,
3606
+ ignoreTag: !0
3607
+ }, ri = ti;
3608
+ function fe() {
3609
+ return ri;
3610
+ }
3611
+ const je = ke(!1);
3612
+ var ni = Object.defineProperty, ii = Object.defineProperties, oi = Object.getOwnPropertyDescriptors, Bt = Object.getOwnPropertySymbols, si = Object.prototype.hasOwnProperty, ai = Object.prototype.propertyIsEnumerable, wt = (e, t, r) => t in e ? ni(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r, ui = (e, t) => {
3613
+ for (var r in t || (t = {}))
3614
+ si.call(t, r) && wt(e, r, t[r]);
3615
+ if (Bt)
3616
+ for (var r of Bt(t))
3617
+ ai.call(t, r) && wt(e, r, t[r]);
3618
+ return e;
3619
+ }, li = (e, t) => ii(e, oi(t));
3620
+ let tt;
3621
+ const Ce = ke(null);
3622
+ function Ht(e) {
3623
+ return e.split("-").map((t, r, n) => n.slice(0, r + 1).join("-")).reverse();
3624
+ }
3625
+ function Le(e, t = fe().fallbackLocale) {
3626
+ const r = Ht(e);
3627
+ return t ? [.../* @__PURE__ */ new Set([...r, ...Ht(t)])] : r;
3628
+ }
3629
+ function ne() {
3630
+ return tt != null ? tt : void 0;
3631
+ }
3632
+ Ce.subscribe((e) => {
3633
+ tt = e != null ? e : void 0, typeof window != "undefined" && e != null && document.documentElement.setAttribute("lang", e);
3634
+ });
3635
+ const hi = (e) => {
3636
+ if (e && Yn(e) && et(e)) {
3637
+ const { loadingDelay: t } = fe();
3638
+ let r;
3639
+ return typeof window != "undefined" && ne() != null && t ? r = window.setTimeout(
3640
+ () => je.set(!0),
3641
+ t
3642
+ ) : je.set(!0), ar(e).then(() => {
3643
+ Ce.set(e);
3644
+ }).finally(() => {
3645
+ clearTimeout(r), je.set(!1);
3646
+ });
3647
+ }
3648
+ return Ce.set(e);
3649
+ }, ee = li(ui({}, Ce), {
3650
+ set: hi
3651
+ }), Pe = (e) => {
3652
+ const t = /* @__PURE__ */ Object.create(null);
3653
+ return (n) => {
3654
+ const i = JSON.stringify(n);
3655
+ return i in t ? t[i] : t[i] = e(n);
3656
+ };
3657
+ };
3658
+ var ci = Object.defineProperty, Se = Object.getOwnPropertySymbols, ur = Object.prototype.hasOwnProperty, lr = Object.prototype.propertyIsEnumerable, Ct = (e, t, r) => t in e ? ci(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r, at = (e, t) => {
3659
+ for (var r in t || (t = {}))
3660
+ ur.call(t, r) && Ct(e, r, t[r]);
3661
+ if (Se)
3662
+ for (var r of Se(t))
3663
+ lr.call(t, r) && Ct(e, r, t[r]);
3664
+ return e;
3665
+ }, pe = (e, t) => {
3666
+ var r = {};
3667
+ for (var n in e)
3668
+ ur.call(e, n) && t.indexOf(n) < 0 && (r[n] = e[n]);
3669
+ if (e != null && Se)
3670
+ for (var n of Se(e))
3671
+ t.indexOf(n) < 0 && lr.call(e, n) && (r[n] = e[n]);
3672
+ return r;
3673
+ };
3674
+ const ye = (e, t) => {
3675
+ const { formats: r } = fe();
3676
+ if (e in r && t in r[e])
3677
+ return r[e][t];
3678
+ throw new Error(`[svelte-i18n] Unknown "${t}" ${e} format.`);
3679
+ }, fi = Pe(
3680
+ (e) => {
3681
+ var t = e, { locale: r, format: n } = t, i = pe(t, ["locale", "format"]);
3682
+ if (r == null)
3683
+ throw new Error('[svelte-i18n] A "locale" must be set to format numbers');
3684
+ return n && (i = ye("number", n)), new Intl.NumberFormat(r, i);
3685
+ }
3686
+ ), mi = Pe(
3687
+ (e) => {
3688
+ var t = e, { locale: r, format: n } = t, i = pe(t, ["locale", "format"]);
3689
+ if (r == null)
3690
+ throw new Error('[svelte-i18n] A "locale" must be set to format dates');
3691
+ return n ? i = ye("date", n) : Object.keys(i).length === 0 && (i = ye("date", "short")), new Intl.DateTimeFormat(r, i);
3692
+ }
3693
+ ), di = Pe(
3694
+ (e) => {
3695
+ var t = e, { locale: r, format: n } = t, i = pe(t, ["locale", "format"]);
3696
+ if (r == null)
3697
+ throw new Error(
3698
+ '[svelte-i18n] A "locale" must be set to format time values'
3699
+ );
3700
+ return n ? i = ye("time", n) : Object.keys(i).length === 0 && (i = ye("time", "short")), new Intl.DateTimeFormat(r, i);
3701
+ }
3702
+ ), pi = (e = {}) => {
3703
+ var t = e, {
3704
+ locale: r = ne()
3705
+ } = t, n = pe(t, [
3706
+ "locale"
3707
+ ]);
3708
+ return fi(at({ locale: r }, n));
3709
+ }, bi = (e = {}) => {
3710
+ var t = e, {
3711
+ locale: r = ne()
3712
+ } = t, n = pe(t, [
3713
+ "locale"
3714
+ ]);
3715
+ return mi(at({ locale: r }, n));
3716
+ }, gi = (e = {}) => {
3717
+ var t = e, {
3718
+ locale: r = ne()
3719
+ } = t, n = pe(t, [
3720
+ "locale"
3721
+ ]);
3722
+ return di(at({ locale: r }, n));
3723
+ }, vi = Pe(
3724
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
3725
+ (e, t = ne()) => new zn(e, t, fe().formats, {
3726
+ ignoreTag: fe().ignoreTag
3727
+ })
3728
+ ), yi = (e, t = {}) => {
3729
+ var r, n, i, o;
3730
+ let s = t;
3731
+ typeof e == "object" && (s = e, e = s.id);
3732
+ const {
3733
+ values: a,
3734
+ locale: l = ne(),
3735
+ default: u
3736
+ } = s;
3737
+ if (l == null)
3738
+ throw new Error(
3739
+ "[svelte-i18n] Cannot format a message without first setting the initial locale."
3740
+ );
3741
+ let h = nr(e, l);
3742
+ if (!h)
3743
+ h = (o = (i = (n = (r = fe()).handleMissingMessage) == null ? void 0 : n.call(r, { locale: l, id: e, defaultValue: u })) != null ? i : u) != null ? o : e;
3744
+ else if (typeof h != "string")
3745
+ return console.warn(
3746
+ `[svelte-i18n] Message with id "${e}" must be of type "string", found: "${typeof h}". Gettin its value through the "$format" method is deprecated; use the "json" method instead.`
3747
+ ), h;
3748
+ if (!a)
3749
+ return h;
3750
+ let c = h;
3751
+ try {
3752
+ c = vi(h, l).format(a);
3753
+ } catch (f) {
3754
+ f instanceof Error && console.warn(
3755
+ `[svelte-i18n] Message "${e}" has syntax error:`,
3756
+ f.message
3757
+ );
3758
+ }
3759
+ return c;
3760
+ }, _i = (e, t) => gi(t).format(e), Ei = (e, t) => bi(t).format(e), xi = (e, t) => pi(t).format(e), Ti = (e, t = ne()) => nr(e, t), Bi = me([ee, de], () => yi);
3761
+ me([ee], () => _i);
3762
+ me([ee], () => Ei);
3763
+ me([ee], () => xi);
3764
+ me([ee, de], () => Ti);
3765
+ function wi({ withLocale: e, translations: t }) {
3766
+ ee.subscribe((r) => {
3767
+ r == null && (de.set(t), ee.set(e));
3768
+ });
3769
+ }
3770
+ function St(e, t) {
3771
+ or(e, t);
3772
+ }
3773
+ function Hi(e) {
3774
+ ee.set(e);
3775
+ }
3776
+ const Mt = {
3777
+ en: {
3778
+ scoreCriteriaType: {
3779
+ stake: "The score criteria for this tournament is <b>Turnover</b>. For each X generated (X= amount wagered in player currency or equivalent in base currency) player will get 1 point. The player who will have the largest turnover will have the highest score and rank.",
3780
+ mostRounds: "The score criteria for this tournament is <b>Most Rounds</b>. For every played round player will get 1 point. The player who will have the biggest number of played rounds / placed bets will have the highest score and rank.",
3781
+ winStateRatio: "The score criteria for this tournament is <b>Win/State Ratio</b>. The score will be calculated as a sum of win/stake ratios for qualified rounds and bets. The player who got the highest score will win the tournament.",
3782
+ maxWinStateRatio: "The score criteria for this tournament is <b>Max Win/State Ratio</b>. The player who got the biggest win by placing the smallest bet will win the tournament (bet = 10 EUR, win = 5000 EUR, the score will be 500). Only higher ratio will update the player's score."
3783
+ },
3784
+ miniBetCount: "Minimum bet count: {betCount}. To be qualified for prizes, the player has to play at least {betCount} rounds, otherwise the prize won’t be granted.",
3785
+ timePeriod: "The tournament start {startTime} and ends {endTime}",
3786
+ terms: 'See <a href="{tcUrl}" target="_blank">Terms & Conditions.</>',
3787
+ productNoLimitsBet: "For {productName}, there are no minimum and maximum bet limits set.",
3788
+ productMinMaxBet: "For {productName}, the minimum accepted bet is {minBet} and maximum accepted bet is {maxBet}.",
3789
+ productMinBet: "For {productName}, the minimum bet amount accepted is {minBet}.",
3790
+ productMaxBet: "For {productName}, the maximum bet amount accepted is {maxBet}."
3791
+ },
3792
+ tr: {
3793
+ scoreCriteriaType: {
3794
+ stake: "Bu turnuvanın puan kriteri <b>Ciro</b>'dur. Oluşturulan her X için (X= oyuncunun para biriminde veya temel para birimindeki eşdeğerinde oynanan bahis miktarı) oyuncu 1 puan alacaktır. En fazla ciroya sahip olan oyuncu en yüksek puana ve sıralamaya sahip olacaktır.",
3795
+ mostRounds: "Bu turnuvanın puan kriteri <b>En Çok Tur</b>'dur. Oynanan her tur için oyuncu 1 puan alacaktır. En fazla oynanan tur/bahis sayısına sahip olan oyuncu, en yüksek puana ve sıralamaya sahip olacaktır.",
3796
+ winStateRatio: "Bu turnuvanın puan kriteri <b>Galibiyet/Durum Oranı</b>'dır. Puan, nitelikli turlar ve bahisler için kazanma/bahis oranlarının toplamı olarak hesaplanacaktır. En yüksek puanı alan oyuncu turnuvayı kazanacak.",
3797
+ maxWinStateRatio: "Bu turnuvanın puan kriteri <b>Maksimum Galibiyet/Durum Oranı</b>'dır. En küçük bahsi koyarak en büyük kazancı elde eden oyuncu turnuvayı kazanacaktır (bahis = 10 EUR, galibiyet = 5000 EUR, skor 500 olacaktır). Yalnızca daha yüksek oran oyuncunun puanını güncelleyecektir."
3798
+ },
3799
+ miniBetCount: "Minimum bahis sayısı: {betCount}. Ödüllere hak kazanmak için oyuncunun en az {betCount} tur oynaması gerekir, aksi takdirde ödül verilmeyecektir.",
3800
+ timePeriod: "Turnuva {startTime} tarihinde başlar ve {endTime} tarihinde sona erer",
3801
+ terms: '<a href={tcUrl}"" target=""_blank"">Şartlar ve Koşullar</>""a bakın.',
3802
+ productNoLimitsBet: "{productName} için belirlenmiş minimum ve maksimum bahis limiti yoktur.",
3803
+ productMinMaxBet: "{productName} için kabul edilen minimum bahis {minBet} ve kabul edilen maksimum bahis {maxBet}'tir.",
3804
+ productMinBet: "{productName} için kabul edilen minimum bahis miktarı {minBet}'tir.",
3805
+ productMaxBet: "{productName} için kabul edilen maksimum bahis miktarı {maxBet}'tir."
3806
+ },
3807
+ el: {
3808
+ scoreCriteriaType: {
3809
+ stake: "The score criteria for this tournament is <b>Turnover</b>. For each X generated (X= amount wagered in player currency or equivalent in base currency) player will get 1 point. The player who will have the largest turnover will have the highest score and rank.",
3810
+ mostRounds: "EL-The score criteria for this tournament is <b>Most Rounds</b>. For every played round player will get 1 point. The player who will have the biggest number of played rounds / placed bets will have the highest score and rank.",
3811
+ winStateRatio: "The score criteria for this tournament is <b>Win/State Ratio</b>. The score will be calculated as a sum of win/stake ratios for qualified rounds and bets. The player who got the highest score will win the tournament.",
3812
+ maxWinStateRatio: "The score criteria for this tournament is <b>Max Win/State Ratio</b>. The player who got the biggest win by placing the smallest bet will win the tournament (bet = 10 EUR, win = 5000 EUR, the score will be 500). Only higher ratio will update the player's score."
3813
+ },
3814
+ miniBetCount: "Minimum bet count: {betCount}. To be qualified for prizes, the player has to play at least {betCount} rounds, otherwise the prize won’t be granted.",
3815
+ timePeriod: "The tournament start {startTime} and ends {endTime}",
3816
+ terms: 'See <a href="{tcUrl}" target="_blank">Terms & Conditions.</>',
3817
+ productNoLimitsBet: "For {productName}, there are no minimum and maximum bet limits set.",
3818
+ productMinMaxBet: "For {productName}, the minimum accepted bet is {minBet} and maximum accepted bet is {maxBet}.",
3819
+ productMinBet: "For {productName}, the minimum bet amount accepted is {minBet}.",
3820
+ productMaxBet: "For {productName}, the maximum bet amount accepted is {maxBet}."
3821
+ },
3822
+ hu: {
3823
+ scoreCriteriaType: {
3824
+ stake: "A verseny pontozási szempontja a <b>Forgalom</b>. Minden X generált összegért (X = a játékos pénznemben tett tét összege vagy az alapvaluta megfelelője) a játékos 1 pontot kap. A legnagyobb forgalmat birtokló játékos lesz a legmagasabb pontszámú és rangú.",
3825
+ mostRounds: "A verseny pontozási szempontja a <b>Legtöbb kör</b>. Minden lejátszott körért a játékos 1 pontot kap. A legtöbb lejátszott körrel / tét helyezéssel rendelkező játékos lesz a legmagasabb pontszámú és rangú.",
3826
+ winStateRatio: "A verseny pontozási szempontja a <b>Nyereség/Állapotarány</b>. A pontot az alkalmas körök és tétek nyerés / tét arányainak összegeként számítják. A legmagasabb pontszámot elért játékos nyeri a versenyt.",
3827
+ maxWinStateRatio: "A verseny pontozási szempontja a <b>Max Nyereség/Állapotarány</b>. A legkisebb téttel a legnagyobb nyereményt elért játékos nyeri a versenyt (tét = 10 EUR, nyeremény = 5000 EUR, a pontszám 500 lesz). Csak a magasabb arány frissíti a játékos pontszámát."
3828
+ },
3829
+ miniBetCount: "Minimális tét szám: {betCount}. Az árakhoz való jogosultsághoz a játékosnak legalább {betCount} kört kell játszania, különben az ár nem kerül kiosztásra.",
3830
+ timePeriod: "A verseny {startTime}-kor kezdődik és {endTime}-kor végződik.",
3831
+ terms: 'Lásd a <a href="{tcUrl}" target="_blank">Felhasználási feltételeket.</>',
3832
+ productNoLimitsBet: "A {productName}-nál nincsenek minimális és maximális tét határok beállítva.",
3833
+ productMinMaxBet: "A {productName}-nál a minimálisan elfogadott tét {minBet}, a maximálisan elfogadott tét pedig {maxBet}.",
3834
+ productMinBet: "A {productName}-nál a minimálisan elfogadott tét összege {minBet}.",
3835
+ productMaxBet: "A {productName}-nál a maximálisan elfogadott tét összege {maxBet}."
3836
+ },
3837
+ pt: {
3838
+ scoreCriteriaType: {
3839
+ stake: "The score criteria for this tournament is <b>Turnover</b>. For each X generated (X= amount wagered in player currency or equivalent in base currency) player will get 1 point. The player who will have the largest turnover will have the highest score and rank.",
3840
+ mostRounds: "The score criteria for this tournament is <b>Most Rounds</b>. For every played round player will get 1 point. The player who will have the biggest number of played rounds / placed bets will have the highest score and rank.",
3841
+ winStateRatio: "The score criteria for this tournament is <b>Win/State Ratio</b>. The score will be calculated as a sum of win/stake ratios for qualified rounds and bets. The player who got the highest score will win the tournament.",
3842
+ maxWinStateRatio: "The score criteria for this tournament is <b>Max Win/State Ratio</b>. The player who got the biggest win by placing the smallest bet will win the tournament (bet = 10 EUR, win = 5000 EUR, the score will be 500). Only higher ratio will update the player's score."
3843
+ },
3844
+ miniBetCount: "Mínimo de apostas: {betCount}. Para se qualificar para os prêmios, o jogador deve jogar pelo menos {betCount} rodadas, caso contrário, o prêmio não será concedido.",
3845
+ timePeriod: "O torneio começa {startTime} e termina {endTime}",
3846
+ terms: 'Veja os <a href="{tcUrl}" target="_blank">Termos & Condições.</>',
3847
+ productNoLimitsBet: "Para {productName}, não há limites mínimo e máximo de apostas definidos.",
3848
+ productMinMaxBet: "Para {productName}, a aposta mínima aceita é {minBet} e a aposta máxima aceita é {maxBet}.",
3849
+ productMinBet: "Para {productName}, o valor mínimo da aposta aceita é {minBet}.",
3850
+ productMaxBet: "Para {productName}, o valor máximo da aposta aceita é {maxBet}."
3851
+ }
3852
+ }, A = {
3853
+ AED: "د.إ",
3854
+ AFN: "؋",
3855
+ ALL: "L",
3856
+ AMD: "֏",
3857
+ ANG: "ƒ",
3858
+ AOA: "Kz",
3859
+ ARS: "$",
3860
+ AUD: "$",
3861
+ AWG: "ƒ",
3862
+ AZN: "ман",
3863
+ BAM: "KM",
3864
+ BBD: "$",
3865
+ BDT: "৳",
3866
+ BGN: "лв",
3867
+ BHD: ".د.ب",
3868
+ BIF: "FBu",
3869
+ BMD: "$",
3870
+ BND: "$",
3871
+ BOB: "$b",
3872
+ BRL: "R$",
3873
+ BSD: "$",
3874
+ BTC: "฿",
3875
+ BTN: "Nu.",
3876
+ BWP: "P",
3877
+ BYR: "p.",
3878
+ BZD: "BZ$",
3879
+ CAD: "$",
3880
+ CDF: "FC",
3881
+ CHF: "CHF",
3882
+ CLP: "$",
3883
+ CNY: "¥",
3884
+ COP: "$",
3885
+ CRC: "₡",
3886
+ CUC: "$",
3887
+ CUP: "₱",
3888
+ CVE: "$",
3889
+ CZK: "Kč",
3890
+ DJF: "Fdj",
3891
+ DKK: "kr",
3892
+ DOP: "RD$",
3893
+ DZD: "دج",
3894
+ EEK: "kr",
3895
+ EGP: "£",
3896
+ ERN: "Nfk",
3897
+ ETB: "Br",
3898
+ ETH: "Ξ",
3899
+ EUR: "€",
3900
+ FJD: "$",
3901
+ FKP: "£",
3902
+ GBP: "£",
3903
+ GEL: "₾",
3904
+ GGP: "£",
3905
+ GHC: "₵",
3906
+ GHS: "GH₵",
3907
+ GIP: "£",
3908
+ GMD: "D",
3909
+ GNF: "FG",
3910
+ GTQ: "Q",
3911
+ GYD: "$",
3912
+ HKD: "$",
3913
+ HNL: "L",
3914
+ HRK: "kn",
3915
+ HTG: "G",
3916
+ HUF: "Ft",
3917
+ IDR: "Rp",
3918
+ ILS: "₪",
3919
+ IMP: "£",
3920
+ INR: "₹",
3921
+ IQD: "ع.د",
3922
+ IRR: "﷼",
3923
+ ISK: "kr",
3924
+ JEP: "£",
3925
+ JMD: "J$",
3926
+ JOD: "JD",
3927
+ JPY: "¥",
3928
+ KES: "KSh",
3929
+ KGS: "лв",
3930
+ KHR: "៛",
3931
+ KMF: "CF",
3932
+ KPW: "₩",
3933
+ KRW: "₩",
3934
+ KWD: "KD",
3935
+ KYD: "$",
3936
+ KZT: "лв",
3937
+ LAK: "₭",
3938
+ LBP: "£",
3939
+ LKR: "₨",
3940
+ LRD: "$",
3941
+ LSL: "M",
3942
+ LTC: "Ł",
3943
+ LTL: "Lt",
3944
+ LVL: "Ls",
3945
+ LYD: "LD",
3946
+ MAD: "MAD",
3947
+ MDL: "lei",
3948
+ MGA: "Ar",
3949
+ MKD: "ден",
3950
+ MMK: "K",
3951
+ MNT: "₮",
3952
+ MOP: "MOP$",
3953
+ MRO: "UM",
3954
+ MUR: "₨",
3955
+ MVR: "Rf",
3956
+ MWK: "MK",
3957
+ MXN: "$",
3958
+ MYR: "RM",
3959
+ MZN: "MT",
3960
+ NAD: "$",
3961
+ NGN: "₦",
3962
+ NIO: "C$",
3963
+ NOK: "kr",
3964
+ NPR: "₨",
3965
+ NZD: "$",
3966
+ OMR: "﷼",
3967
+ PAB: "B/.",
3968
+ PEN: "S/.",
3969
+ PGK: "K",
3970
+ PHP: "₱",
3971
+ PKR: "₨",
3972
+ PLN: "zł",
3973
+ PYG: "Gs",
3974
+ QAR: "﷼",
3975
+ RMB: "¥",
3976
+ RON: "lei",
3977
+ RSD: "Дин.",
3978
+ RUB: "₽",
3979
+ RWF: "R₣",
3980
+ SAR: "﷼",
3981
+ SBD: "$",
3982
+ SCR: "₨",
3983
+ SDG: "ج.س.",
3984
+ SEK: "kr",
3985
+ SGD: "$",
3986
+ SHP: "£",
3987
+ SLL: "Le",
3988
+ SOS: "S",
3989
+ SRD: "$",
3990
+ SSP: "£",
3991
+ STD: "Db",
3992
+ SVC: "$",
3993
+ SYP: "£",
3994
+ SZL: "E",
3995
+ THB: "฿",
3996
+ TJS: "SM",
3997
+ TMT: "T",
3998
+ TND: "د.ت",
3999
+ TOP: "T$",
4000
+ TRL: "₤",
4001
+ TRY: "₺",
4002
+ TTD: "TT$",
4003
+ TVD: "$",
4004
+ TWD: "NT$",
4005
+ TZS: "TSh",
4006
+ UAH: "₴",
4007
+ UGX: "USh",
4008
+ USD: "$",
4009
+ UYU: "$U",
4010
+ UZS: "лв",
4011
+ VEF: "Bs",
4012
+ VND: "₫",
4013
+ VUV: "VT",
4014
+ WST: "WS$",
4015
+ XAF: "FCFA",
4016
+ XBT: "Ƀ",
4017
+ XCD: "$",
4018
+ XOF: "CFA",
4019
+ XPF: "₣",
4020
+ YER: "﷼",
4021
+ ZAR: "R",
4022
+ ZWD: "Z$"
4023
+ }, Ci = "data:image/svg+xml,%3csvg%20width='35'%20height='25'%20viewBox='0%200%2025%2025'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_2591_521)'%3e%3cpath%20d='M22.3588%2020.1363C22.3601%2020.7949%2022.1782%2021.4408%2021.8334%2022.0019C21.6456%2022.3247%2021.4036%2022.6127%2021.1179%2022.8533C20.4473%2023.4391%2019.5846%2023.7574%2018.6942%2023.7474C17.8037%2023.7373%2016.9482%2023.3997%2016.2909%2022.7989C16.0353%2022.567%2015.8156%2022.2984%2015.6389%2022.0019C15.3424%2021.5116%2015.1664%2020.958%2015.1255%2020.3865C15.0845%2019.815%2015.1799%2019.2419%2015.4034%2018.7144C15.6399%2018.1566%2016.0124%2017.667%2016.487%2017.2905C16.9617%2016.9139%2017.5234%2016.6623%2018.1204%2016.5589C18.3103%2016.5455%2018.5009%2016.5455%2018.6908%2016.5589C19.6516%2016.5589%2020.573%2016.9406%2021.2524%2017.62C21.9318%2018.2994%2022.3135%2019.2208%2022.3135%2020.1816L22.3588%2020.1363Z'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17.3242%2020.1371L18.2299%2021.0428L20.1591%2019.2314'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22.278%206.46076C21.2037%204.5943%2019.6194%203.073%2017.711%202.0753C15.8025%201.0776%2013.6493%200.644982%2011.5036%200.828135C9.35785%201.01129%207.30885%201.8026%205.59709%203.10931C3.88533%204.41603%202.5817%206.1839%201.83935%208.20542C1.09701%2010.2269%200.9467%2012.4182%201.40598%2014.5222C1.86526%2016.6261%202.91505%2018.5555%204.43229%2020.0838C5.94953%2021.6121%207.87136%2022.6759%209.97194%2023.1504C12.0725%2023.6249%2014.2648%2023.4903%2016.2917%2022.7627C16.0361%2022.5307%2015.8163%2022.2621%2015.6396%2021.9657C15.3432%2021.4754%2015.1671%2020.9217%2015.1262%2020.3502C15.0853%2019.7788%2015.1806%2019.2057%2015.4041%2018.6781C14.4907%2019.0911%2013.4995%2019.3042%2012.497%2019.3031C11.2245%2019.3008%209.97506%2018.9635%208.87436%2018.325C7.77533%2017.6908%206.86538%2016.7747%206.23875%2015.6714V15.6714C5.33468%2014.0218%205.11294%2012.0836%205.62119%2010.2725C6.12945%208.46132%207.32717%206.92144%208.9575%205.98306C10.5878%205.04467%2012.521%204.78249%2014.3424%205.25274C16.1637%205.72298%2017.7284%206.88816%2018.7006%208.4985C18.7123%208.52746%2018.7275%208.55493%2018.746%208.58009C19.3629%209.66322%2019.6875%2010.8882%2019.6875%2012.1347C19.6875%2013.3813%2019.3629%2014.6064%2018.746%2015.6895C18.5748%2015.9855%2018.384%2016.2699%2018.1753%2016.5408C18.3652%2016.5273%2018.556%2016.5273%2018.746%2016.5408C19.3961%2016.5406%2020.0342%2016.7154%2020.5936%2017.0469C21.1529%2017.3783%2021.6128%2017.8543%2021.9249%2018.4246C23.1544%2016.5691%2023.8097%2014.3923%2023.8087%2012.1665C23.8164%2010.1621%2023.2878%208.19215%2022.278%206.46076V6.46076Z'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4785%200.819336V4.94915'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M18.1391%202.32227L16.0742%205.89962'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22.2866%206.46094L18.7002%208.52584'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.6875%2012.1035L23.7992%2012.1216'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22.2775%2017.7729L18.7363%2015.708'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.4966%2019.3398L12.4785%2023.4153'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M8.883%2018.3613L6.82715%2021.8843'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.24745%2015.708L2.69727%2017.7276'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.30577%2012.0946L1.20312%2012.0674'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.30214%208.49903L2.75195%206.41602'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M6.90918%202.29492L8.94692%205.89039'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M9.7086%2010.4202H8.7206L7.74805%2011.0146V11.9254L8.61254%2011.4082H8.6357V14.3722H9.7086V10.4202Z'%20fill='white'/%3e%3cpath%20d='M11.7885%2014.4803C12.8633%2014.4822%2013.531%2013.7123%2013.5329%2012.4039C13.5348%2011.1033%2012.8633%2010.3662%2011.7885%2010.3662C10.7117%2010.3662%2010.0479%2011.0995%2010.044%2012.4039C10.0402%2013.7065%2010.7117%2014.4783%2011.7885%2014.4803ZM11.7885%2013.6081C11.418%2013.6081%2011.1517%2013.2356%2011.1555%2012.4039C11.1594%2011.5916%2011.418%2011.2307%2011.7885%2011.2307C12.159%2011.2307%2012.4195%2011.5916%2012.4214%2012.4039C12.4233%2013.2356%2012.159%2013.6081%2011.7885%2013.6081Z'%20fill='white'/%3e%3cpath%20d='M15.305%2014.4803C16.3798%2014.4822%2017.0475%2013.7123%2017.0494%2012.4039C17.0513%2011.1033%2016.3798%2010.3662%2015.305%2010.3662C14.2282%2010.3662%2013.5644%2011.0995%2013.5605%2012.4039C13.5567%2013.7065%2014.2282%2014.4783%2015.305%2014.4803ZM15.305%2013.6081C14.9345%2013.6081%2014.6682%2013.2356%2014.672%2012.4039C14.6759%2011.5916%2014.9345%2011.2307%2015.305%2011.2307C15.6755%2011.2307%2015.936%2011.5916%2015.9379%2012.4039C15.9398%2013.2356%2015.6755%2013.6081%2015.305%2013.6081Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_2591_521'%3e%3crect%20width='24'%20height='24.2989'%20fill='white'%20transform='translate(0.478516%200.139648)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", Si = "data:image/svg+xml,%3csvg%20width='35'%20height='24'%20viewBox='0%200%2025%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M19.6712%2020.9658H5.22363V23.2166H19.6712V20.9658Z'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M13.9074%2014.8942C16.0065%2013.9267%2019.3847%2011.229%2019.3847%204.9113C19.3847%203.38619%2019.1879%202.20546%2018.7246%201.30762H6.03995C5.58078%202.20546%205.37988%203.38619%205.37988%204.9113C5.37988%2011.0978%208.76219%2013.8611%2010.8572%2014.8696V18.6906H6.40482V20.9414H18.4868V18.6906H13.9074V14.8942Z'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M5.41677%203.39453H0.841439C0.841439%203.39453%20-0.343394%209.90085%206.77789%2010.9586'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.499%203.39453H24.0743C24.0743%203.39453%2025.2592%209.90085%2018.1338%2010.9586'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12.3862%203.97656L13.2718%206.31343L15.7685%206.43642L13.8211%208.00253L14.4771%2010.4132L12.3862%209.04387L10.2953%2010.4132L10.9472%208.00253L9.00391%206.43642L11.4966%206.31343L12.3862%203.97656Z'%20stroke='white'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", hr = "data:image/svg+xml,%3csvg%20width='35'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.5%2013.7502C9.5%2014.7202%2010.25%2015.5002%2011.17%2015.5002H13.05C13.85%2015.5002%2014.5%2014.8202%2014.5%2013.9702C14.5%2013.0602%2014.1%2012.7302%2013.51%2012.5202L10.5%2011.4702C9.91%2011.2602%209.51001%2010.9402%209.51001%2010.0202C9.51001%209.18023%2010.16%208.49023%2010.96%208.49023H12.84C13.76%208.49023%2014.51%209.27023%2014.51%2010.2402'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M12%207.5V16.5'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22%2012C22%2017.52%2017.52%2022%2012%2022C6.48%2022%202%2017.52%202%2012C2%206.48%206.48%202%2012%202'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M22%206V2H18'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M17%207L22%202'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", Mi = "data:image/svg+xml,%3csvg%20width='35'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M22%2012C22%2017.52%2017.52%2022%2012%2022C6.48%2022%202%2017.52%202%2012C2%206.48%206.48%202%2012%202C17.52%202%2022%206.48%2022%2012Z'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M15.7099%2015.1798L12.6099%2013.3298C12.0699%2013.0098%2011.6299%2012.2398%2011.6299%2011.6098V7.50977'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e", Ri = "data:image/svg+xml,%3csvg%20width='35'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11%2019.5H21'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%2012.5H21'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M11%205.5H21'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%205.5L4%206.5L7%203.5'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2012.5L4%2013.5L7%2010.5'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M3%2019.5L4%2020.5L7%2017.5'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e";
4024
+ function ki(e) {
4025
+ vr(e, "svelte-1vcbuod", ".svelte-1vcbuod.svelte-1vcbuod,.svelte-1vcbuod.svelte-1vcbuod::before,.svelte-1vcbuod.svelte-1vcbuod::after{margin:0;padding:0;list-style:none;text-decoration:none;outline:none;box-sizing:border-box}.casino-tournaments-thumbnail-rule.svelte-1vcbuod.svelte-1vcbuod{color:#fff;font-size:12px;line-height:15px;letter-spacing:-0.177807px;color:#B5B5B5}.casino-tournaments-thumbnail-rule.svelte-1vcbuod .RulesRow.svelte-1vcbuod{padding:10px;display:flex;border-bottom:1px solid #424242}.casino-tournaments-thumbnail-rule.svelte-1vcbuod .RulesRow .RuleTxt.svelte-1vcbuod{padding:3px 5px}.casino-tournaments-thumbnail-rule.svelte-1vcbuod .RuleIcon.svelte-1vcbuod{width:38px;height:30px}");
4026
+ }
4027
+ function Rt(e) {
4028
+ let t, r = (
4029
+ /*$_*/
4030
+ e[13]("scoreCriteriaType.mostRounds") + ""
4031
+ ), n;
4032
+ return {
4033
+ c() {
4034
+ t = new Re(!1), n = Me(), t.a = n;
4035
+ },
4036
+ m(i, o) {
4037
+ t.m(r, i, o), R(i, n, o);
4038
+ },
4039
+ p(i, o) {
4040
+ o & /*$_*/
4041
+ 8192 && r !== (r = /*$_*/
4042
+ i[13]("scoreCriteriaType.mostRounds") + "") && t.p(r);
4043
+ },
4044
+ d(i) {
4045
+ i && (H(n), t.d());
4046
+ }
4047
+ };
4048
+ }
4049
+ function kt(e) {
4050
+ let t, r = (
4051
+ /*$_*/
4052
+ e[13]("scoreCriteriaType.winStateRatio") + ""
4053
+ ), n;
4054
+ return {
4055
+ c() {
4056
+ t = new Re(!1), n = Me(), t.a = n;
4057
+ },
4058
+ m(i, o) {
4059
+ t.m(r, i, o), R(i, n, o);
4060
+ },
4061
+ p(i, o) {
4062
+ o & /*$_*/
4063
+ 8192 && r !== (r = /*$_*/
4064
+ i[13]("scoreCriteriaType.winStateRatio") + "") && t.p(r);
4065
+ },
4066
+ d(i) {
4067
+ i && (H(n), t.d());
4068
+ }
4069
+ };
4070
+ }
4071
+ function Nt(e) {
4072
+ let t, r = (
4073
+ /*$_*/
4074
+ e[13]("scoreCriteriaType.maxWinStateRatio") + ""
4075
+ ), n;
4076
+ return {
4077
+ c() {
4078
+ t = new Re(!1), n = Me(), t.a = n;
4079
+ },
4080
+ m(i, o) {
4081
+ t.m(r, i, o), R(i, n, o);
4082
+ },
4083
+ p(i, o) {
4084
+ o & /*$_*/
4085
+ 8192 && r !== (r = /*$_*/
4086
+ i[13]("scoreCriteriaType.maxWinStateRatio") + "") && t.p(r);
4087
+ },
4088
+ d(i) {
4089
+ i && (H(n), t.d());
4090
+ }
4091
+ };
4092
+ }
4093
+ function At(e) {
4094
+ let t, r = (
4095
+ /*$_*/
4096
+ e[13]("scoreCriteriaType.stake") + ""
4097
+ ), n;
4098
+ return {
4099
+ c() {
4100
+ t = new Re(!1), n = Me(), t.a = n;
4101
+ },
4102
+ m(i, o) {
4103
+ t.m(r, i, o), R(i, n, o);
4104
+ },
4105
+ p(i, o) {
4106
+ o & /*$_*/
4107
+ 8192 && r !== (r = /*$_*/
4108
+ i[13]("scoreCriteriaType.stake") + "") && t.p(r);
4109
+ },
4110
+ d(i) {
4111
+ i && (H(n), t.d());
4112
+ }
4113
+ };
4114
+ }
4115
+ function Lt(e) {
4116
+ let t, r, n;
4117
+ function i(a, l) {
4118
+ return (
4119
+ /*noMinCasinoBet*/
4120
+ a[8] && /*noMaxCasinoBet*/
4121
+ a[9] ? Pi : (
4122
+ /*noMinCasinoBet*/
4123
+ a[8] ? Li : (
4124
+ /*noMaxCasinoBet*/
4125
+ a[9] ? Ai : Ni
4126
+ )
4127
+ )
4128
+ );
4129
+ }
4130
+ let o = i(e), s = o(e);
4131
+ return {
4132
+ c() {
4133
+ t = x("div"), r = x("div"), r.innerHTML = `<img src="${hr}" class="svelte-1vcbuod"/>`, n = O(), s.c(), m(r, "class", "RuleIcon svelte-1vcbuod"), m(r, "part", "RuleIcon"), m(t, "class", "RulesRow svelte-1vcbuod"), m(t, "part", "rule");
4134
+ },
4135
+ m(a, l) {
4136
+ R(a, t, l), p(t, r), p(t, n), s.m(t, null);
4137
+ },
4138
+ p(a, l) {
4139
+ o === (o = i(a)) && s ? s.p(a, l) : (s.d(1), s = o(a), s && (s.c(), s.m(t, null)));
4140
+ },
4141
+ d(a) {
4142
+ a && H(t), s.d();
4143
+ }
4144
+ };
4145
+ }
4146
+ function Ni(e) {
4147
+ let t, r = (
4148
+ /*$_*/
4149
+ e[13]("productMinMaxBet", {
4150
+ values: {
4151
+ productName: (
4152
+ /*casino*/
4153
+ e[6].name
4154
+ ),
4155
+ minBet: `${/*isNumber*/
4156
+ e[14](
4157
+ /*casino*/
4158
+ e[6].minbet
4159
+ ) ? A[
4160
+ /*currency*/
4161
+ e[12]
4162
+ ] : ""}${/*casino*/
4163
+ e[6].minbet}`,
4164
+ maxBet: `${/*isNumber*/
4165
+ e[14](
4166
+ /*casino*/
4167
+ e[6].maxbet
4168
+ ) ? A[
4169
+ /*currency*/
4170
+ e[12]
4171
+ ] : ""}${/*casino*/
4172
+ e[6].maxbet}`
4173
+ }
4174
+ }) + ""
4175
+ ), n;
4176
+ return {
4177
+ c() {
4178
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4179
+ },
4180
+ m(i, o) {
4181
+ R(i, t, o), p(t, n);
4182
+ },
4183
+ p(i, o) {
4184
+ o & /*$_, casino, currency*/
4185
+ 12352 && r !== (r = /*$_*/
4186
+ i[13]("productMinMaxBet", {
4187
+ values: {
4188
+ productName: (
4189
+ /*casino*/
4190
+ i[6].name
4191
+ ),
4192
+ minBet: `${/*isNumber*/
4193
+ i[14](
4194
+ /*casino*/
4195
+ i[6].minbet
4196
+ ) ? A[
4197
+ /*currency*/
4198
+ i[12]
4199
+ ] : ""}${/*casino*/
4200
+ i[6].minbet}`,
4201
+ maxBet: `${/*isNumber*/
4202
+ i[14](
4203
+ /*casino*/
4204
+ i[6].maxbet
4205
+ ) ? A[
4206
+ /*currency*/
4207
+ i[12]
4208
+ ] : ""}${/*casino*/
4209
+ i[6].maxbet}`
4210
+ }
4211
+ }) + "") && Y(n, r);
4212
+ },
4213
+ d(i) {
4214
+ i && H(t);
4215
+ }
4216
+ };
4217
+ }
4218
+ function Ai(e) {
4219
+ let t, r = (
4220
+ /*$_*/
4221
+ e[13]("productMinBet", {
4222
+ values: {
4223
+ productName: (
4224
+ /*casino*/
4225
+ e[6].name
4226
+ ),
4227
+ minBet: `${/*isNumber*/
4228
+ e[14](
4229
+ /*casino*/
4230
+ e[6].minbet
4231
+ ) ? A[
4232
+ /*currency*/
4233
+ e[12]
4234
+ ] : ""}${/*casino*/
4235
+ e[6].minbet}`
4236
+ }
4237
+ }) + ""
4238
+ ), n;
4239
+ return {
4240
+ c() {
4241
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4242
+ },
4243
+ m(i, o) {
4244
+ R(i, t, o), p(t, n);
4245
+ },
4246
+ p(i, o) {
4247
+ o & /*$_, casino, currency*/
4248
+ 12352 && r !== (r = /*$_*/
4249
+ i[13]("productMinBet", {
4250
+ values: {
4251
+ productName: (
4252
+ /*casino*/
4253
+ i[6].name
4254
+ ),
4255
+ minBet: `${/*isNumber*/
4256
+ i[14](
4257
+ /*casino*/
4258
+ i[6].minbet
4259
+ ) ? A[
4260
+ /*currency*/
4261
+ i[12]
4262
+ ] : ""}${/*casino*/
4263
+ i[6].minbet}`
4264
+ }
4265
+ }) + "") && Y(n, r);
4266
+ },
4267
+ d(i) {
4268
+ i && H(t);
4269
+ }
4270
+ };
4271
+ }
4272
+ function Li(e) {
4273
+ let t, r = (
4274
+ /*$_*/
4275
+ e[13]("productMaxBet", {
4276
+ values: {
4277
+ productName: (
4278
+ /*casino*/
4279
+ e[6].name
4280
+ ),
4281
+ maxBet: `${/*isNumber*/
4282
+ e[14](
4283
+ /*casino*/
4284
+ e[6].maxbet
4285
+ ) ? A[
4286
+ /*currency*/
4287
+ e[12]
4288
+ ] : ""}${/*casino*/
4289
+ e[6].maxbet}`
4290
+ }
4291
+ }) + ""
4292
+ ), n;
4293
+ return {
4294
+ c() {
4295
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4296
+ },
4297
+ m(i, o) {
4298
+ R(i, t, o), p(t, n);
4299
+ },
4300
+ p(i, o) {
4301
+ o & /*$_, casino, currency*/
4302
+ 12352 && r !== (r = /*$_*/
4303
+ i[13]("productMaxBet", {
4304
+ values: {
4305
+ productName: (
4306
+ /*casino*/
4307
+ i[6].name
4308
+ ),
4309
+ maxBet: `${/*isNumber*/
4310
+ i[14](
4311
+ /*casino*/
4312
+ i[6].maxbet
4313
+ ) ? A[
4314
+ /*currency*/
4315
+ i[12]
4316
+ ] : ""}${/*casino*/
4317
+ i[6].maxbet}`
4318
+ }
4319
+ }) + "") && Y(n, r);
4320
+ },
4321
+ d(i) {
4322
+ i && H(t);
4323
+ }
4324
+ };
4325
+ }
4326
+ function Pi(e) {
4327
+ let t, r = (
4328
+ /*$_*/
4329
+ e[13]("productNoLimitsBet", {
4330
+ values: { productName: (
4331
+ /*casino*/
4332
+ e[6].name
4333
+ ) }
4334
+ }) + ""
4335
+ ), n;
4336
+ return {
4337
+ c() {
4338
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4339
+ },
4340
+ m(i, o) {
4341
+ R(i, t, o), p(t, n);
4342
+ },
4343
+ p(i, o) {
4344
+ o & /*$_, casino*/
4345
+ 8256 && r !== (r = /*$_*/
4346
+ i[13]("productNoLimitsBet", {
4347
+ values: { productName: (
4348
+ /*casino*/
4349
+ i[6].name
4350
+ ) }
4351
+ }) + "") && Y(n, r);
4352
+ },
4353
+ d(i) {
4354
+ i && H(t);
4355
+ }
4356
+ };
4357
+ }
4358
+ function Pt(e) {
4359
+ let t, r, n;
4360
+ function i(a, l) {
4361
+ return (
4362
+ /*noMinSportsBet*/
4363
+ a[10] && /*noMaxSportsBet*/
4364
+ a[11] ? Di : (
4365
+ /*noMinSportsBet*/
4366
+ a[10] ? $i : (
4367
+ /*noMaxSportsBet*/
4368
+ a[11] ? Ii : Oi
4369
+ )
4370
+ )
4371
+ );
4372
+ }
4373
+ let o = i(e), s = o(e);
4374
+ return {
4375
+ c() {
4376
+ t = x("div"), r = x("div"), r.innerHTML = `<img src="${hr}" class="svelte-1vcbuod"/>`, n = O(), s.c(), m(r, "class", "RuleIcon svelte-1vcbuod"), m(r, "part", "RuleIcon"), m(t, "class", "RulesRow svelte-1vcbuod"), m(t, "part", "rule");
4377
+ },
4378
+ m(a, l) {
4379
+ R(a, t, l), p(t, r), p(t, n), s.m(t, null);
4380
+ },
4381
+ p(a, l) {
4382
+ o === (o = i(a)) && s ? s.p(a, l) : (s.d(1), s = o(a), s && (s.c(), s.m(t, null)));
4383
+ },
4384
+ d(a) {
4385
+ a && H(t), s.d();
4386
+ }
4387
+ };
4388
+ }
4389
+ function Oi(e) {
4390
+ let t, r = (
4391
+ /*$_*/
4392
+ e[13]("productMinMaxBet", {
4393
+ values: {
4394
+ productName: (
4395
+ /*sports*/
4396
+ e[7].name
4397
+ ),
4398
+ minBet: `${/*isNumber*/
4399
+ e[14](
4400
+ /*sports*/
4401
+ e[7].minbet
4402
+ ) ? A[
4403
+ /*currency*/
4404
+ e[12]
4405
+ ] : ""}${/*sports*/
4406
+ e[7].minbet}`,
4407
+ maxBet: `${/*isNumber*/
4408
+ e[14](
4409
+ /*sports*/
4410
+ e[7].maxbet
4411
+ ) ? A[
4412
+ /*currency*/
4413
+ e[12]
4414
+ ] : ""}${/*sports*/
4415
+ e[7].maxbet}`
4416
+ }
4417
+ }) + ""
4418
+ ), n;
4419
+ return {
4420
+ c() {
4421
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4422
+ },
4423
+ m(i, o) {
4424
+ R(i, t, o), p(t, n);
4425
+ },
4426
+ p(i, o) {
4427
+ o & /*$_, sports, currency*/
4428
+ 12416 && r !== (r = /*$_*/
4429
+ i[13]("productMinMaxBet", {
4430
+ values: {
4431
+ productName: (
4432
+ /*sports*/
4433
+ i[7].name
4434
+ ),
4435
+ minBet: `${/*isNumber*/
4436
+ i[14](
4437
+ /*sports*/
4438
+ i[7].minbet
4439
+ ) ? A[
4440
+ /*currency*/
4441
+ i[12]
4442
+ ] : ""}${/*sports*/
4443
+ i[7].minbet}`,
4444
+ maxBet: `${/*isNumber*/
4445
+ i[14](
4446
+ /*sports*/
4447
+ i[7].maxbet
4448
+ ) ? A[
4449
+ /*currency*/
4450
+ i[12]
4451
+ ] : ""}${/*sports*/
4452
+ i[7].maxbet}`
4453
+ }
4454
+ }) + "") && Y(n, r);
4455
+ },
4456
+ d(i) {
4457
+ i && H(t);
4458
+ }
4459
+ };
4460
+ }
4461
+ function Ii(e) {
4462
+ let t, r = (
4463
+ /*$_*/
4464
+ e[13]("productMinBet", {
4465
+ values: {
4466
+ productName: (
4467
+ /*sports*/
4468
+ e[7].name
4469
+ ),
4470
+ minBet: `${/*isNumber*/
4471
+ e[14](
4472
+ /*sports*/
4473
+ e[7].minbet
4474
+ ) ? A[
4475
+ /*currency*/
4476
+ e[12]
4477
+ ] : ""}${/*sports*/
4478
+ e[7].minbet}`
4479
+ }
4480
+ }) + ""
4481
+ ), n;
4482
+ return {
4483
+ c() {
4484
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4485
+ },
4486
+ m(i, o) {
4487
+ R(i, t, o), p(t, n);
4488
+ },
4489
+ p(i, o) {
4490
+ o & /*$_, sports, currency*/
4491
+ 12416 && r !== (r = /*$_*/
4492
+ i[13]("productMinBet", {
4493
+ values: {
4494
+ productName: (
4495
+ /*sports*/
4496
+ i[7].name
4497
+ ),
4498
+ minBet: `${/*isNumber*/
4499
+ i[14](
4500
+ /*sports*/
4501
+ i[7].minbet
4502
+ ) ? A[
4503
+ /*currency*/
4504
+ i[12]
4505
+ ] : ""}${/*sports*/
4506
+ i[7].minbet}`
4507
+ }
4508
+ }) + "") && Y(n, r);
4509
+ },
4510
+ d(i) {
4511
+ i && H(t);
4512
+ }
4513
+ };
4514
+ }
4515
+ function $i(e) {
4516
+ let t, r = (
4517
+ /*$_*/
4518
+ e[13]("productMaxBet", {
4519
+ values: {
4520
+ productName: (
4521
+ /*sports*/
4522
+ e[7].name
4523
+ ),
4524
+ maxBet: `${/*isNumber*/
4525
+ e[14](
4526
+ /*sports*/
4527
+ e[7].maxbet
4528
+ ) ? A[
4529
+ /*currency*/
4530
+ e[12]
4531
+ ] : ""}${/*sports*/
4532
+ e[7].maxbet}`
4533
+ }
4534
+ }) + ""
4535
+ ), n;
4536
+ return {
4537
+ c() {
4538
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4539
+ },
4540
+ m(i, o) {
4541
+ R(i, t, o), p(t, n);
4542
+ },
4543
+ p(i, o) {
4544
+ o & /*$_, sports, currency*/
4545
+ 12416 && r !== (r = /*$_*/
4546
+ i[13]("productMaxBet", {
4547
+ values: {
4548
+ productName: (
4549
+ /*sports*/
4550
+ i[7].name
4551
+ ),
4552
+ maxBet: `${/*isNumber*/
4553
+ i[14](
4554
+ /*sports*/
4555
+ i[7].maxbet
4556
+ ) ? A[
4557
+ /*currency*/
4558
+ i[12]
4559
+ ] : ""}${/*sports*/
4560
+ i[7].maxbet}`
4561
+ }
4562
+ }) + "") && Y(n, r);
4563
+ },
4564
+ d(i) {
4565
+ i && H(t);
4566
+ }
4567
+ };
4568
+ }
4569
+ function Di(e) {
4570
+ let t, r = (
4571
+ /*$_*/
4572
+ e[13]("productNoLimitsBet", {
4573
+ values: { productName: (
4574
+ /*sports*/
4575
+ e[7].name
4576
+ ) }
4577
+ }) + ""
4578
+ ), n;
4579
+ return {
4580
+ c() {
4581
+ t = x("div"), n = X(r), m(t, "class", "RuleTxt svelte-1vcbuod"), m(t, "part", "RuleTxt");
4582
+ },
4583
+ m(i, o) {
4584
+ R(i, t, o), p(t, n);
4585
+ },
4586
+ p(i, o) {
4587
+ o & /*$_, sports*/
4588
+ 8320 && r !== (r = /*$_*/
4589
+ i[13]("productNoLimitsBet", {
4590
+ values: { productName: (
4591
+ /*sports*/
4592
+ i[7].name
4593
+ ) }
4594
+ }) + "") && Y(n, r);
4595
+ },
4596
+ d(i) {
4597
+ i && H(t);
4598
+ }
4599
+ };
4600
+ }
4601
+ function Ui(e) {
4602
+ let t, r, n, i, o, s, a, l, u, h, c, f, g, v = (
4603
+ /*$_*/
4604
+ e[13]("miniBetCount", {
4605
+ values: { betCount: (
4606
+ /*betcount*/
4607
+ e[1]
4608
+ ) }
4609
+ }) + ""
4610
+ ), T, w, C, k, S, L, P = (
4611
+ /*$_*/
4612
+ e[13]("timePeriod", {
4613
+ values: {
4614
+ startTime: (
4615
+ /*starttime*/
4616
+ e[2]
4617
+ ),
4618
+ endTime: (
4619
+ /*endtime*/
4620
+ e[3]
4621
+ )
4622
+ }
4623
+ }) + ""
4624
+ ), J, te, q, re, Ee, K, ie = (
4625
+ /*$_*/
4626
+ e[13]("terms", { values: { tcUrl: (
4627
+ /*tcurl*/
4628
+ e[4]
4629
+ ) } }) + ""
4630
+ ), xe, d, N, W, ut, $ = (
4631
+ /*scorecriterial*/
4632
+ e[0] == "BetCount" && Rt(e)
4633
+ ), D = (
4634
+ /*scorecriterial*/
4635
+ e[0] == "WinStakeRatio" && kt(e)
4636
+ ), U = (
4637
+ /*scorecriterial*/
4638
+ e[0] == "MaxWinStakeRatio" && Nt(e)
4639
+ ), G = (
4640
+ /*scorecriterial*/
4641
+ e[0] == "Stake" && At(e)
4642
+ ), F = (
4643
+ /*casino*/
4644
+ e[6] && Lt(e)
4645
+ ), j = (
4646
+ /*sports*/
4647
+ e[7] && Pt(e)
4648
+ );
4649
+ return {
4650
+ c() {
4651
+ t = x("div"), r = x("div"), n = x("div"), n.innerHTML = `<img src="${Si}" class="svelte-1vcbuod"/>`, i = O(), o = x("div"), $ && $.c(), s = O(), D && D.c(), a = O(), U && U.c(), l = O(), G && G.c(), u = O(), h = x("div"), c = x("div"), c.innerHTML = `<img src="${Ci}" class="svelte-1vcbuod"/>`, f = O(), g = x("div"), T = X(v), w = O(), C = x("div"), k = x("div"), k.innerHTML = `<img src="${Mi}" class="svelte-1vcbuod"/>`, S = O(), L = x("div"), J = X(P), te = O(), q = x("div"), re = x("div"), re.innerHTML = `<img src="${Ri}" class="svelte-1vcbuod"/>`, Ee = O(), K = x("div"), xe = O(), F && F.c(), d = O(), N = x("span"), ut = O(), j && j.c(), m(n, "class", "RuleIcon svelte-1vcbuod"), m(n, "part", "RuleIcon"), m(o, "class", "RuleTxt svelte-1vcbuod"), m(o, "part", "RuleTxt"), m(r, "class", "RulesRow svelte-1vcbuod"), m(r, "part", "rule"), m(c, "class", "RuleIcon svelte-1vcbuod"), m(c, "part", "RuleIcon"), m(g, "class", "RuleTxt svelte-1vcbuod"), m(g, "part", "RuleTxt"), m(h, "class", "RulesRow svelte-1vcbuod"), m(h, "part", "rule"), m(k, "class", "RuleIcon svelte-1vcbuod"), m(k, "part", "RuleIcon"), m(L, "class", "RuleTxt svelte-1vcbuod"), m(L, "part", "RuleTxt"), m(C, "class", "RulesRow svelte-1vcbuod"), m(C, "part", "rule"), m(re, "class", "RuleIcon svelte-1vcbuod"), m(re, "part", "RuleIcon"), m(K, "class", "RuleTxt svelte-1vcbuod"), m(K, "part", "RuleTxt"), m(q, "class", "RulesRow svelte-1vcbuod"), m(q, "part", "rule"), m(N, "type", "hidden"), m(N, "href", W = { tcurl: (
4652
+ /*tcurl*/
4653
+ e[4]
4654
+ ) }), m(N, "class", "svelte-1vcbuod"), m(t, "class", "casino-tournaments-thumbnail-rule svelte-1vcbuod"), m(t, "part", "casino-tournaments-thumbnail-rule");
4655
+ },
4656
+ m(E, V) {
4657
+ R(E, t, V), p(t, r), p(r, n), p(r, i), p(r, o), $ && $.m(o, null), p(o, s), D && D.m(o, null), p(o, a), U && U.m(o, null), p(o, l), G && G.m(o, null), p(t, u), p(t, h), p(h, c), p(h, f), p(h, g), p(g, T), p(t, w), p(t, C), p(C, k), p(C, S), p(C, L), p(L, J), p(t, te), p(t, q), p(q, re), p(q, Ee), p(q, K), K.innerHTML = ie, p(t, xe), F && F.m(t, null), p(t, d), p(t, N), p(t, ut), j && j.m(t, null), e[20](t);
4658
+ },
4659
+ p(E, [V]) {
4660
+ /*scorecriterial*/
4661
+ E[0] == "BetCount" ? $ ? $.p(E, V) : ($ = Rt(E), $.c(), $.m(o, s)) : $ && ($.d(1), $ = null), /*scorecriterial*/
4662
+ E[0] == "WinStakeRatio" ? D ? D.p(E, V) : (D = kt(E), D.c(), D.m(o, a)) : D && (D.d(1), D = null), /*scorecriterial*/
4663
+ E[0] == "MaxWinStakeRatio" ? U ? U.p(E, V) : (U = Nt(E), U.c(), U.m(o, l)) : U && (U.d(1), U = null), /*scorecriterial*/
4664
+ E[0] == "Stake" ? G ? G.p(E, V) : (G = At(E), G.c(), G.m(o, null)) : G && (G.d(1), G = null), V & /*$_, betcount*/
4665
+ 8194 && v !== (v = /*$_*/
4666
+ E[13]("miniBetCount", {
4667
+ values: { betCount: (
4668
+ /*betcount*/
4669
+ E[1]
4670
+ ) }
4671
+ }) + "") && Y(T, v), V & /*$_, starttime, endtime*/
4672
+ 8204 && P !== (P = /*$_*/
4673
+ E[13]("timePeriod", {
4674
+ values: {
4675
+ startTime: (
4676
+ /*starttime*/
4677
+ E[2]
4678
+ ),
4679
+ endTime: (
4680
+ /*endtime*/
4681
+ E[3]
4682
+ )
4683
+ }
4684
+ }) + "") && Y(J, P), V & /*$_, tcurl*/
4685
+ 8208 && ie !== (ie = /*$_*/
4686
+ E[13]("terms", { values: { tcUrl: (
4687
+ /*tcurl*/
4688
+ E[4]
4689
+ ) } }) + "") && (K.innerHTML = ie), /*casino*/
4690
+ E[6] ? F ? F.p(E, V) : (F = Lt(E), F.c(), F.m(t, d)) : F && (F.d(1), F = null), V & /*tcurl*/
4691
+ 16 && W !== (W = { tcurl: (
4692
+ /*tcurl*/
4693
+ E[4]
4694
+ ) }) && m(N, "href", W), /*sports*/
4695
+ E[7] ? j ? j.p(E, V) : (j = Pt(E), j.c(), j.m(t, null)) : j && (j.d(1), j = null);
4696
+ },
4697
+ i: Z,
4698
+ o: Z,
4699
+ d(E) {
4700
+ E && H(t), $ && $.d(), D && D.d(), U && U.d(), G && G.d(), F && F.d(), j && j.d(), e[20](null);
4701
+ }
4702
+ };
4703
+ }
4704
+ function Gi(e, t, r) {
4705
+ let n;
4706
+ gr(e, Bi, (d) => r(13, n = d));
4707
+ let { lang: i = "tr" } = t, { scorecriterial: o = "BetCount" } = t, { betcount: s } = t, { starttime: a } = t, { endtime: l } = t, { tcurl: u } = t, { products: h = "{}" } = t, { clientstyling: c = "" } = t, { clientstylingurl: f = "" } = t, { translationurl: g = "" } = t, v, T, w, C = !1, k = !1, S = !1, L = !1, P = "EUR";
4708
+ wi({ withLocale: "en", translations: {} });
4709
+ const J = (d) => typeof d == "number" || Object.prototype.toString.call(d) === "[object Number]", te = () => {
4710
+ fetch(g).then((N) => N.json()).then((N) => {
4711
+ Object.keys(N).forEach((W) => {
4712
+ St(W, N[W]);
4713
+ });
4714
+ }).catch((N) => {
4715
+ console.log(N);
4716
+ });
4717
+ };
4718
+ Object.keys(Mt).forEach((d) => {
4719
+ St(d, Mt[d]);
4720
+ });
4721
+ const q = (d) => {
4722
+ r(12, P = d.currency), d.casino ? (r(6, T = d.casino), r(8, C = !(T.hasOwnProperty("minbet") && T.minbet != 0)), r(9, k = !(T.hasOwnProperty("maxbet") && T.maxbet != 0))) : (r(8, C = !0), r(9, k = !0)), d.sports ? (r(7, w = d.sports), r(10, S = !(w.hasOwnProperty("minbet") && w.minbet != 0)), r(11, L = !(w.hasOwnProperty("maxbet") && w.maxbet != 0))) : (r(10, S = !0), r(11, L = !0));
4723
+ }, re = () => {
4724
+ if (!h) return;
4725
+ let d;
4726
+ typeof h == "string" ? d = JSON.parse(h) : d = h, q(d);
4727
+ }, Ee = () => {
4728
+ Hi(i);
4729
+ }, K = () => {
4730
+ let d = document.createElement("style");
4731
+ d.innerHTML = c, v.appendChild(d);
4732
+ }, ie = () => {
4733
+ let d = new URL(f), N = document.createElement("style");
4734
+ fetch(d.href).then((W) => W.text()).then((W) => {
4735
+ N.innerHTML = W, setTimeout(
4736
+ () => {
4737
+ v.appendChild(N);
4738
+ },
4739
+ 1
4740
+ ), setTimeout(
4741
+ () => {
4742
+ },
4743
+ 500
4744
+ );
4745
+ });
4746
+ };
4747
+ function xe(d) {
4748
+ Ve[d ? "unshift" : "push"](() => {
4749
+ v = d, r(5, v);
4750
+ });
4751
+ }
4752
+ return e.$$set = (d) => {
4753
+ "lang" in d && r(15, i = d.lang), "scorecriterial" in d && r(0, o = d.scorecriterial), "betcount" in d && r(1, s = d.betcount), "starttime" in d && r(2, a = d.starttime), "endtime" in d && r(3, l = d.endtime), "tcurl" in d && r(4, u = d.tcurl), "products" in d && r(16, h = d.products), "clientstyling" in d && r(17, c = d.clientstyling), "clientstylingurl" in d && r(18, f = d.clientstylingurl), "translationurl" in d && r(19, g = d.translationurl);
4754
+ }, e.$$.update = () => {
4755
+ e.$$.dirty & /*lang*/
4756
+ 32768 && i && Ee(), e.$$.dirty & /*products*/
4757
+ 65536 && h && re(), e.$$.dirty & /*clientstyling, customStylingContainer*/
4758
+ 131104 && c && v && K(), e.$$.dirty & /*clientstylingurl, customStylingContainer*/
4759
+ 262176 && f && v && ie(), e.$$.dirty & /*translationurl*/
4760
+ 524288 && g && te();
4761
+ }, [
4762
+ o,
4763
+ s,
4764
+ a,
4765
+ l,
4766
+ u,
4767
+ v,
4768
+ T,
4769
+ w,
4770
+ C,
4771
+ k,
4772
+ S,
4773
+ L,
4774
+ P,
4775
+ n,
4776
+ J,
4777
+ i,
4778
+ h,
4779
+ c,
4780
+ f,
4781
+ g,
4782
+ xe
4783
+ ];
4784
+ }
4785
+ class Fi extends Pr {
4786
+ constructor(t) {
4787
+ super(), Ar(
4788
+ this,
4789
+ t,
4790
+ Gi,
4791
+ Ui,
4792
+ It,
4793
+ {
4794
+ lang: 15,
4795
+ scorecriterial: 0,
4796
+ betcount: 1,
4797
+ starttime: 2,
4798
+ endtime: 3,
4799
+ tcurl: 4,
4800
+ products: 16,
4801
+ clientstyling: 17,
4802
+ clientstylingurl: 18,
4803
+ translationurl: 19
4804
+ },
4805
+ ki
4806
+ );
4807
+ }
4808
+ get lang() {
4809
+ return this.$$.ctx[15];
4810
+ }
4811
+ set lang(t) {
4812
+ this.$$set({ lang: t }), z();
4813
+ }
4814
+ get scorecriterial() {
4815
+ return this.$$.ctx[0];
4816
+ }
4817
+ set scorecriterial(t) {
4818
+ this.$$set({ scorecriterial: t }), z();
4819
+ }
4820
+ get betcount() {
4821
+ return this.$$.ctx[1];
4822
+ }
4823
+ set betcount(t) {
4824
+ this.$$set({ betcount: t }), z();
4825
+ }
4826
+ get starttime() {
4827
+ return this.$$.ctx[2];
4828
+ }
4829
+ set starttime(t) {
4830
+ this.$$set({ starttime: t }), z();
4831
+ }
4832
+ get endtime() {
4833
+ return this.$$.ctx[3];
4834
+ }
4835
+ set endtime(t) {
4836
+ this.$$set({ endtime: t }), z();
4837
+ }
4838
+ get tcurl() {
4839
+ return this.$$.ctx[4];
4840
+ }
4841
+ set tcurl(t) {
4842
+ this.$$set({ tcurl: t }), z();
4843
+ }
4844
+ get products() {
4845
+ return this.$$.ctx[16];
4846
+ }
4847
+ set products(t) {
4848
+ this.$$set({ products: t }), z();
4849
+ }
4850
+ get clientstyling() {
4851
+ return this.$$.ctx[17];
4852
+ }
4853
+ set clientstyling(t) {
4854
+ this.$$set({ clientstyling: t }), z();
4855
+ }
4856
+ get clientstylingurl() {
4857
+ return this.$$.ctx[18];
4858
+ }
4859
+ set clientstylingurl(t) {
4860
+ this.$$set({ clientstylingurl: t }), z();
4861
+ }
4862
+ get translationurl() {
4863
+ return this.$$.ctx[19];
4864
+ }
4865
+ set translationurl(t) {
4866
+ this.$$set({ translationurl: t }), z();
4867
+ }
4868
+ }
4869
+ Lr(Fi, { lang: {}, scorecriterial: {}, betcount: {}, starttime: {}, endtime: {}, tcurl: {}, products: {}, clientstyling: {}, clientstylingurl: {}, translationurl: {} }, [], [], !0);
4870
+ export {
4871
+ Fi as default
4872
+ };