From dae30b676e31371cdb39c5821d79b1b4747b8a7e Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 19:19:00 -0400 Subject: [PATCH 01/16] perf: move custom-app js to load only on homepage --- fern/docs.yml | 2 -- fern/home/index.mdx | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 8924b7f0e..011c99e27 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -74,8 +74,6 @@ css: - ./components/Footer.css js: - - path: ./dist/output.js - strategy: beforeInteractive - path: assets/heap.js strategy: afterInteractive - path: assets/dashboard-referral.js diff --git a/fern/home/index.mdx b/fern/home/index.mdx index c14d0a7e1..2d68ca5c5 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,6 +7,7 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
+

Build anything onchain

From b282c6c676d6c90b57a6961b90b9ba8b1dd24bbc Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 19:34:27 -0400 Subject: [PATCH 02/16] perf: try executing script with defer --- fern/home/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/home/index.mdx b/fern/home/index.mdx index 2d68ca5c5..85e57c7c0 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,7 +7,7 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
- +

Build anything onchain

From d0b4729b0d34f70bdcfe9ff943f89607c32a23b6 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 19:41:51 -0400 Subject: [PATCH 03/16] Revert "perf: try executing script with defer" This reverts commit b282c6c676d6c90b57a6961b90b9ba8b1dd24bbc. --- fern/home/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/home/index.mdx b/fern/home/index.mdx index 85e57c7c0..2d68ca5c5 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,7 +7,7 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
- +

Build anything onchain

From 5d3a9c4a0a18362ecf8db4b1f38a798ed17b4ee0 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 20:43:09 -0400 Subject: [PATCH 04/16] fix: run custom-app synchronously --- fern/home/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/home/index.mdx b/fern/home/index.mdx index 2d68ca5c5..f543e8724 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,7 +7,7 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
- +

Build anything onchain

From 5936b0b4bb9a6984919e4d1aeb0d89e41490f49d Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 21:03:30 -0400 Subject: [PATCH 05/16] debug: test event listener with popstate --- custom-app/src/main.tsx | 2 +- fern/dist/output.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index 5f9de16a1..e95d2db40 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -34,7 +34,7 @@ const render = async () => { document.getElementById('builtwithfern')?.remove() } -window.addEventListener('load', async () => { +window.addEventListener('popstate', async () => { // Only render on /docs or /docs/ const initialPath = window.location.pathname.replace(/\/+$/, '') diff --git a/fern/dist/output.js b/fern/dist/output.js index 214989949..83531004a 100644 --- a/fern/dist/output.js +++ b/fern/dist/output.js @@ -26894,7 +26894,7 @@ const Ha = xw(), (n.style.display = "block"), (o = document.getElementById("builtwithfern")) == null || o.remove(); }; -window.addEventListener("load", async () => { +window.addEventListener("popstate", async () => { window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Rh()), new MutationObserver(async (o) => { if (!(window.location.pathname.replace(/\/+$/, "") === "/docs")) return; From d8e8fef19db27face65fe42ca9dd7a5e4fe43529 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 22:37:56 -0400 Subject: [PATCH 06/16] fix: try running script on both load and popstate events --- custom-app/src/main.tsx | 10 +- fern/dist/output.js | 3170 ++++++++++++++++++++------------------- 2 files changed, 1595 insertions(+), 1585 deletions(-) diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index e95d2db40..f000fe621 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -34,7 +34,7 @@ const render = async () => { document.getElementById('builtwithfern')?.remove() } -window.addEventListener('popstate', async () => { +const initializeApp = async () => { // Only render on /docs or /docs/ const initialPath = window.location.pathname.replace(/\/+$/, '') @@ -67,4 +67,10 @@ window.addEventListener('popstate', async () => { }) observer.observe(document.body, { childList: true, subtree: true }) -}) +} + +// Run immediately when script loads (for direct navigation to homepage) +initializeApp() + +// Also run on popstate (for back/forward navigation) +window.addEventListener('popstate', initializeApp) diff --git a/fern/dist/output.js b/fern/dist/output.js index 83531004a..e563be006 100644 --- a/fern/dist/output.js +++ b/fern/dist/output.js @@ -1,14 +1,14 @@ -var wb = Object.defineProperty; -var kb = Object.getPrototypeOf; -var Cb = Reflect.get; +var kb = Object.defineProperty; +var Cb = Object.getPrototypeOf; +var Pb = Reflect.get; var tp = (n) => { throw TypeError(n); }; -var Pb = (n, t, o) => +var Ob = (n, t, o) => t in n - ? wb(n, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) + ? kb(n, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) : (n[t] = o); -var B = (n, t, o) => Pb(n, typeof t != "symbol" ? t + "" : t, o), +var B = (n, t, o) => Ob(n, typeof t != "symbol" ? t + "" : t, o), Il = (n, t, o) => t.has(n) || tp("Cannot " + o); var yt = (n, t, o) => ( Il(n, t, "read from private field"), o ? o.call(n) : t.get(n) @@ -23,8 +23,8 @@ var yt = (n, t, o) => ( Il(n, t, "write to private field"), a ? a.call(n, o) : t.set(n, o), o ), Fl = (n, t, o) => (Il(n, t, "access private method"), o); -var np = (n, t, o) => Cb(kb(n), o, t); -function Ob(n, t) { +var np = (n, t, o) => Pb(Cb(n), o, t); +function Eb(n, t) { for (var o = 0; o < t.length; o++) { const a = t[o]; if (typeof a != "string" && !Array.isArray(a)) { @@ -74,7 +74,7 @@ function Ob(n, t) { fetch(i.href, c); } })(); -function Eb(n) { +function Tb(n) { return n && n.__esModule && Object.prototype.hasOwnProperty.call(n, "default") ? n.default : n; @@ -92,7 +92,7 @@ var Rl = { exports: {} }, * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var rp; -function Tb() { +function jb() { if (rp) return ke; rp = 1; var n = Symbol.for("react.element"), @@ -489,7 +489,7 @@ function Tb() { } var op; function Nc() { - return op || ((op = 1), (Ml.exports = Tb())), Ml.exports; + return op || ((op = 1), (Ml.exports = jb())), Ml.exports; } /** * @license React @@ -500,7 +500,7 @@ function Nc() { * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var ap; -function jb() { +function Ib() { if (ap) return Zr; ap = 1; var n = Nc(), @@ -532,13 +532,13 @@ function jb() { return (Zr.Fragment = o), (Zr.jsx = d), (Zr.jsxs = d), Zr; } var ip; -function Ib() { - return ip || ((ip = 1), (Rl.exports = jb())), Rl.exports; +function Fb() { + return ip || ((ip = 1), (Rl.exports = Ib())), Rl.exports; } -var Re = Ib(), +var Re = Fb(), V = Nc(); -const Ue = Eb(V), - sp = Ob({ __proto__: null, default: Ue }, [V]); +const Ue = Tb(V), + sp = Eb({ __proto__: null, default: Ue }, [V]); var ja = {}, Nl = { exports: {} }, Pt = {}, @@ -553,7 +553,7 @@ var ja = {}, * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var lp; -function Fb() { +function Rb() { return ( lp || ((lp = 1), @@ -845,8 +845,8 @@ function Fb() { ); } var cp; -function Rb() { - return cp || ((cp = 1), (Bl.exports = Fb())), Bl.exports; +function Mb() { + return cp || ((cp = 1), (Bl.exports = Rb())), Bl.exports; } /** * @license React @@ -857,11 +857,11 @@ function Rb() { * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var up; -function Mb() { +function Nb() { if (up) return Pt; up = 1; var n = Nc(), - t = Rb(); + t = Mb(); function o(e) { for ( var r = "https://reactjs.org/docs/error-decoder.html?invariant=" + e, @@ -1595,9 +1595,9 @@ function Mb() { strokeOpacity: !0, strokeWidth: !0, }, - Og = ["Webkit", "ms", "Moz", "O"]; + Eg = ["Webkit", "ms", "Moz", "O"]; Object.keys(mr).forEach(function (e) { - Og.forEach(function (r) { + Eg.forEach(function (r) { (r = r + e.charAt(0).toUpperCase() + e.substring(1)), (mr[r] = mr[e]); }); }); @@ -1617,7 +1617,7 @@ function Mb() { s === "float" && (s = "cssFloat"), l ? e.setProperty(s, u) : (e[s] = u); } } - var Eg = w( + var Tg = w( { menuitem: !0 }, { area: !0, @@ -1639,7 +1639,7 @@ function Mb() { ); function Vi(e, r) { if (r) { - if (Eg[e] && (r.children != null || r.dangerouslySetInnerHTML != null)) + if (Tg[e] && (r.children != null || r.dangerouslySetInnerHTML != null)) throw Error(o(137, e)); if (r.dangerouslySetInnerHTML != null) { if (r.children != null) throw Error(o(60)); @@ -1759,7 +1759,7 @@ function Mb() { } catch { Xi = !1; } - function Tg(e, r, s, l, u, p, g, _, k) { + function jg(e, r, s, l, u, p, g, _, k) { var M = Array.prototype.slice.call(arguments, 3); try { r.apply(s, M); @@ -1771,16 +1771,16 @@ function Mb() { wo = null, ko = !1, Qi = null, - jg = { + Ig = { onError: function (e) { (vr = !0), (wo = e); }, }; - function Ig(e, r, s, l, u, p, g, _, k) { - (vr = !1), (wo = null), Tg.apply(jg, arguments); - } function Fg(e, r, s, l, u, p, g, _, k) { - if ((Ig.apply(this, arguments), vr)) { + (vr = !1), (wo = null), jg.apply(Ig, arguments); + } + function Rg(e, r, s, l, u, p, g, _, k) { + if ((Fg.apply(this, arguments), vr)) { if (vr) { var M = wo; (vr = !1), (wo = null); @@ -1813,7 +1813,7 @@ function Mb() { function wu(e) { if (Zn(e) !== e) throw Error(o(188)); } - function Rg(e) { + function Mg(e) { var r = e.alternate; if (!r) { if (((r = Zn(e)), r === null)) throw Error(o(188)); @@ -1872,7 +1872,7 @@ function Mb() { return s.stateNode.current === s ? e : r; } function ku(e) { - return (e = Rg(e)), e !== null ? Cu(e) : null; + return (e = Mg(e)), e !== null ? Cu(e) : null; } function Cu(e) { if (e.tag === 5 || e.tag === 6) return e; @@ -1885,28 +1885,28 @@ function Mb() { } var Pu = t.unstable_scheduleCallback, Ou = t.unstable_cancelCallback, - Mg = t.unstable_shouldYield, - Ng = t.unstable_requestPaint, + Ng = t.unstable_shouldYield, + Bg = t.unstable_requestPaint, qe = t.unstable_now, - Bg = t.unstable_getCurrentPriorityLevel, + Lg = t.unstable_getCurrentPriorityLevel, Yi = t.unstable_ImmediatePriority, Eu = t.unstable_UserBlockingPriority, Co = t.unstable_NormalPriority, - Lg = t.unstable_LowPriority, + $g = t.unstable_LowPriority, Tu = t.unstable_IdlePriority, Po = null, tn = null; - function $g(e) { + function Ag(e) { if (tn && typeof tn.onCommitFiberRoot == "function") try { tn.onCommitFiberRoot(Po, e, void 0, (e.current.flags & 128) === 128); } catch {} } - var qt = Math.clz32 ? Math.clz32 : zg, - Ag = Math.log, - Dg = Math.LN2; - function zg(e) { - return (e >>>= 0), e === 0 ? 32 : (31 - ((Ag(e) / Dg) | 0)) | 0; + var qt = Math.clz32 ? Math.clz32 : Hg, + Dg = Math.log, + zg = Math.LN2; + function Hg(e) { + return (e >>>= 0), e === 0 ? 32 : (31 - ((Dg(e) / zg) | 0)) | 0; } var Oo = 64, Eo = 4194304; @@ -1983,7 +1983,7 @@ function Mb() { (s = 31 - qt(r)), (u = 1 << s), (l |= e[s]), (r &= ~u); return l; } - function Hg(e, r) { + function Vg(e, r) { switch (e) { case 1: case 2: @@ -2024,7 +2024,7 @@ function Mb() { return -1; } } - function Vg(e, r) { + function Ug(e, r) { for ( var s = e.suspendedLanes, l = e.pingedLanes, @@ -2037,7 +2037,7 @@ function Mb() { _ = 1 << g, k = u[g]; k === -1 - ? ((_ & s) === 0 || (_ & l) !== 0) && (u[g] = Hg(_, r)) + ? ((_ & s) === 0 || (_ & l) !== 0) && (u[g] = Vg(_, r)) : k <= r && (e.expiredLanes |= _), (p &= ~_); } @@ -2063,7 +2063,7 @@ function Mb() { (r = 31 - qt(r)), (e[r] = s); } - function Ug(e, r) { + function Gg(e, r) { var s = e.pendingLanes & ~r; (e.pendingLanes = r), (e.suspendedLanes = 0), @@ -2107,7 +2107,7 @@ function Mb() { xr = new Map(), Sr = new Map(), Tn = [], - Gg = + qg = "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split( " ", ); @@ -2150,7 +2150,7 @@ function Mb() { u !== null && r.indexOf(u) === -1 && r.push(u), e); } - function qg(e, r, s, l, u) { + function Wg(e, r, s, l, u) { switch (r) { case "focusin": return (Pn = wr(Pn, e, r, s, l, u)), !0; @@ -2205,7 +2205,7 @@ function Mb() { function $u(e, r, s) { Io(e) && s.delete(r); } - function Wg() { + function Kg() { (ns = !1), Pn !== null && Io(Pn) && (Pn = null), On !== null && Io(On) && (On = null), @@ -2218,7 +2218,7 @@ function Mb() { ((e.blockedOn = null), ns || ((ns = !0), - t.unstable_scheduleCallback(t.unstable_NormalPriority, Wg))); + t.unstable_scheduleCallback(t.unstable_NormalPriority, Kg))); } function Cr(e) { function r(u) { @@ -2247,7 +2247,7 @@ function Mb() { } var E0 = L.ReactCurrentBatchConfig, Fo = !0; - function Kg(e, r, s, l) { + function Xg(e, r, s, l) { var u = Fe, p = E0.transition; E0.transition = null; @@ -2257,7 +2257,7 @@ function Mb() { (Fe = u), (E0.transition = p); } } - function Xg(e, r, s, l) { + function Qg(e, r, s, l) { var u = Fe, p = E0.transition; E0.transition = null; @@ -2271,8 +2271,8 @@ function Mb() { if (Fo) { var u = os(e, r, s, l); if (u === null) xs(e, r, l, Ro, s), Bu(e, l); - else if (qg(u, e, r, s, l)) l.stopPropagation(); - else if ((Bu(e, l), r & 4 && -1 < Gg.indexOf(e))) { + else if (Wg(u, e, r, s, l)) l.stopPropagation(); + else if ((Bu(e, l), r & 4 && -1 < qg.indexOf(e))) { for (; u !== null; ) { var p = Lr(u); if ( @@ -2377,13 +2377,13 @@ function Mb() { case "pointerleave": return 4; case "message": - switch (Bg()) { + switch (Lg()) { case Yi: return 1; case Eu: return 4; case Co: - case Lg: + case $g: return 16; case Tu: return 536870912; @@ -2483,7 +2483,7 @@ function Mb() { }, is = Tt(T0), Pr = w({}, T0, { view: 0, detail: 0 }), - Qg = Tt(Pr), + Yg = Tt(Pr), ss, ls, Or, @@ -2523,21 +2523,21 @@ function Mb() { }, }), Hu = Tt(Lo), - Yg = w({}, Lo, { dataTransfer: 0 }), - Zg = Tt(Yg), - Jg = w({}, Pr, { relatedTarget: 0 }), - cs = Tt(Jg), - e1 = w({}, T0, { animationName: 0, elapsedTime: 0, pseudoElement: 0 }), - t1 = Tt(e1), - n1 = w({}, T0, { + Zg = w({}, Lo, { dataTransfer: 0 }), + Jg = Tt(Zg), + e1 = w({}, Pr, { relatedTarget: 0 }), + cs = Tt(e1), + t1 = w({}, T0, { animationName: 0, elapsedTime: 0, pseudoElement: 0 }), + n1 = Tt(t1), + r1 = w({}, T0, { clipboardData: function (e) { return "clipboardData" in e ? e.clipboardData : window.clipboardData; }, }), - r1 = Tt(n1), - o1 = w({}, T0, { data: 0 }), - Vu = Tt(o1), - a1 = { + o1 = Tt(r1), + a1 = w({}, T0, { data: 0 }), + Vu = Tt(a1), + i1 = { Esc: "Escape", Spacebar: " ", Left: "ArrowLeft", @@ -2551,7 +2551,7 @@ function Mb() { Scroll: "ScrollLock", MozPrintableKey: "Unidentified", }, - i1 = { + s1 = { 8: "Backspace", 9: "Tab", 12: "Clear", @@ -2589,33 +2589,33 @@ function Mb() { 145: "ScrollLock", 224: "Meta", }, - s1 = { + l1 = { Alt: "altKey", Control: "ctrlKey", Meta: "metaKey", Shift: "shiftKey", }; - function l1(e) { + function c1(e) { var r = this.nativeEvent; return r.getModifierState ? r.getModifierState(e) - : (e = s1[e]) + : (e = l1[e]) ? !!r[e] : !1; } function us() { - return l1; + return c1; } - var c1 = w({}, Pr, { + var u1 = w({}, Pr, { key: function (e) { if (e.key) { - var r = a1[e.key] || e.key; + var r = i1[e.key] || e.key; if (r !== "Unidentified") return r; } return e.type === "keypress" ? ((e = No(e)), e === 13 ? "Enter" : String.fromCharCode(e)) : e.type === "keydown" || e.type === "keyup" - ? i1[e.keyCode] || "Unidentified" + ? s1[e.keyCode] || "Unidentified" : ""; }, code: 0, @@ -2641,8 +2641,8 @@ function Mb() { : 0; }, }), - u1 = Tt(c1), - d1 = w({}, Lo, { + d1 = Tt(u1), + f1 = w({}, Lo, { pointerId: 0, width: 0, height: 0, @@ -2654,8 +2654,8 @@ function Mb() { pointerType: 0, isPrimary: 0, }), - Uu = Tt(d1), - f1 = w({}, Pr, { + Uu = Tt(f1), + p1 = w({}, Pr, { touches: 0, targetTouches: 0, changedTouches: 0, @@ -2665,10 +2665,10 @@ function Mb() { shiftKey: 0, getModifierState: us, }), - p1 = Tt(f1), - h1 = w({}, T0, { propertyName: 0, elapsedTime: 0, pseudoElement: 0 }), - m1 = Tt(h1), - g1 = w({}, Lo, { + h1 = Tt(p1), + m1 = w({}, T0, { propertyName: 0, elapsedTime: 0, pseudoElement: 0 }), + g1 = Tt(m1), + b1 = w({}, Lo, { deltaX: function (e) { return "deltaX" in e ? e.deltaX @@ -2688,19 +2688,19 @@ function Mb() { deltaZ: 0, deltaMode: 0, }), - b1 = Tt(g1), - v1 = [9, 13, 27, 32], + v1 = Tt(b1), + y1 = [9, 13, 27, 32], ds = h && "CompositionEvent" in window, Er = null; h && "documentMode" in document && (Er = document.documentMode); - var y1 = h && "TextEvent" in window && !Er, + var _1 = h && "TextEvent" in window && !Er, Gu = h && (!ds || (Er && 8 < Er && 11 >= Er)), qu = " ", Wu = !1; function Ku(e, r) { switch (e) { case "keyup": - return v1.indexOf(r.keyCode) !== -1; + return y1.indexOf(r.keyCode) !== -1; case "keydown": return r.keyCode !== 229; case "keypress": @@ -2715,7 +2715,7 @@ function Mb() { return (e = e.detail), typeof e == "object" && "data" in e ? e.data : null; } var j0 = !1; - function _1(e, r) { + function x1(e, r) { switch (e) { case "compositionend": return Xu(r); @@ -2727,7 +2727,7 @@ function Mb() { return null; } } - function x1(e, r) { + function S1(e, r) { if (j0) return e === "compositionend" || (!ds && Ku(e, r)) ? ((e = Du()), (Mo = as = jn = null), (j0 = !1), e) @@ -2747,7 +2747,7 @@ function Mb() { return null; } } - var S1 = { + var w1 = { color: !0, date: !0, datetime: !0, @@ -2766,7 +2766,7 @@ function Mb() { }; function Qu(e) { var r = e && e.nodeName && e.nodeName.toLowerCase(); - return r === "input" ? !!S1[e.type] : r === "textarea"; + return r === "input" ? !!w1[e.type] : r === "textarea"; } function Yu(e, r, s, l) { bu(l), @@ -2777,14 +2777,14 @@ function Mb() { } var Tr = null, jr = null; - function w1(e) { + function k1(e) { md(e, 0); } function $o(e) { var r = N0(e); if (_t(r)) return e; } - function k1(e, r) { + function C1(e, r) { if (e === "change") return r; } var Zu = !1; @@ -2807,28 +2807,28 @@ function Mb() { function td(e) { if (e.propertyName === "value" && $o(jr)) { var r = []; - Yu(r, jr, e, qi(e)), xu(w1, r); + Yu(r, jr, e, qi(e)), xu(k1, r); } } - function C1(e, r, s) { + function P1(e, r, s) { e === "focusin" ? (ed(), (Tr = r), (jr = s), Tr.attachEvent("onpropertychange", td)) : e === "focusout" && ed(); } - function P1(e) { + function O1(e) { if (e === "selectionchange" || e === "keyup" || e === "keydown") return $o(jr); } - function O1(e, r) { + function E1(e, r) { if (e === "click") return $o(r); } - function E1(e, r) { + function T1(e, r) { if (e === "input" || e === "change") return $o(r); } - function T1(e, r) { + function j1(e, r) { return (e === r && (e !== 0 || 1 / e === 1 / r)) || (e !== e && r !== r); } - var Wt = typeof Object.is == "function" ? Object.is : T1; + var Wt = typeof Object.is == "function" ? Object.is : j1; function Ir(e, r) { if (Wt(e, r)) return !0; if ( @@ -2915,7 +2915,7 @@ function Mb() { e.contentEditable === "true") ); } - function j1(e) { + function I1(e) { var r = ad(), s = e.focusedElem, l = e.selectionRange; @@ -2969,7 +2969,7 @@ function Mb() { (e.element.scrollTop = e.top); } } - var I1 = h && "documentMode" in document && 11 >= document.documentMode, + var F1 = h && "documentMode" in document && 11 >= document.documentMode, I0 = null, ms = null, Fr = null, @@ -3047,9 +3047,9 @@ function Mb() { } for (var vs = 0; vs < pd.length; vs++) { var ys = pd[vs], - F1 = ys.toLowerCase(), - R1 = ys[0].toUpperCase() + ys.slice(1); - In(F1, "on" + R1); + R1 = ys.toLowerCase(), + M1 = ys[0].toUpperCase() + ys.slice(1); + In(R1, "on" + M1); } In(ld, "onAnimationEnd"), In(cd, "onAnimationIteration"), @@ -3091,12 +3091,12 @@ function Mb() { "abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split( " ", ), - M1 = new Set( + N1 = new Set( "cancel close invalid load scroll toggle".split(" ").concat(Rr), ); function hd(e, r, s) { var l = e.type || "unknown-event"; - (e.currentTarget = s), Fg(l, r, void 0, e), (e.currentTarget = null); + (e.currentTarget = s), Rg(l, r, void 0, e), (e.currentTarget = null); } function md(e, r) { r = (r & 4) !== 0; @@ -3146,7 +3146,7 @@ function Mb() { if (!e[zo]) { (e[zo] = !0), a.forEach(function (s) { - s !== "selectionchange" && (M1.has(s) || _s(s, !1, e), _s(s, !0, e)); + s !== "selectionchange" && (N1.has(s) || _s(s, !1, e), _s(s, !0, e)); }); var r = e.nodeType === 9 ? e : e.ownerDocument; r === null || r[zo] || ((r[zo] = !0), _s("selectionchange", !1, r)); @@ -3155,10 +3155,10 @@ function Mb() { function gd(e, r, s, l) { switch (Au(r)) { case 1: - var u = Kg; + var u = Xg; break; case 4: - u = Xg; + u = Qg; break; default: u = rs; @@ -3221,7 +3221,7 @@ function Mb() { if (No(s) === 0) break e; case "keydown": case "keyup": - X = u1; + X = d1; break; case "focusin": (Z = "focus"), (X = cs); @@ -3253,32 +3253,32 @@ function Mb() { case "dragover": case "dragstart": case "drop": - X = Zg; + X = Jg; break; case "touchcancel": case "touchend": case "touchmove": case "touchstart": - X = p1; + X = h1; break; case ld: case cd: case ud: - X = t1; + X = n1; break; case dd: - X = m1; + X = g1; break; case "scroll": - X = Qg; + X = Yg; break; case "wheel": - X = b1; + X = v1; break; case "copy": case "cut": case "paste": - X = r1; + X = o1; break; case "gotpointercapture": case "lostpointercapture": @@ -3387,18 +3387,18 @@ function Mb() { (X = D.nodeName && D.nodeName.toLowerCase()), X === "select" || (X === "input" && D.type === "file")) ) - var te = k1; + var te = C1; else if (Qu(D)) - if (Zu) te = E1; + if (Zu) te = T1; else { - te = P1; - var oe = C1; + te = O1; + var oe = P1; } else (X = D.nodeName) && X.toLowerCase() === "input" && (D.type === "checkbox" || D.type === "radio") && - (te = O1); + (te = E1); if (te && (te = te(e, M))) { Yu(H, te, s, z); break e; @@ -3427,7 +3427,7 @@ function Mb() { (gs = !1), id(H, s, z); break; case "selectionchange": - if (I1) break; + if (F1) break; case "keydown": case "keyup": id(H, s, z); @@ -3469,7 +3469,7 @@ function Mb() { ae ? (de.data = ae) : ((ae = Xu(s)), ae !== null && (de.data = ae)))), - (ae = y1 ? _1(e, s) : x1(e, s)) && + (ae = _1 ? x1(e, s) : S1(e, s)) && ((M = Ho(M, "onBeforeInput")), 0 < M.length && ((z = new Vu("onBeforeInput", "beforeinput", null, s, z)), @@ -3519,16 +3519,16 @@ function Mb() { } g.length !== 0 && e.push({ event: r, listeners: g }); } - var N1 = /\r\n?/g, - B1 = /\u0000|\uFFFD/g; + var B1 = /\r\n?/g, + L1 = /\u0000|\uFFFD/g; function vd(e) { return (typeof e == "string" ? e : "" + e) .replace( - N1, + B1, ` `, ) - .replace(B1, ""); + .replace(L1, ""); } function Vo(e, r, s) { if (((r = vd(r)), vd(e) !== r && s)) throw Error(o(425)); @@ -3548,17 +3548,17 @@ function Mb() { ); } var Cs = typeof setTimeout == "function" ? setTimeout : void 0, - L1 = typeof clearTimeout == "function" ? clearTimeout : void 0, + $1 = typeof clearTimeout == "function" ? clearTimeout : void 0, yd = typeof Promise == "function" ? Promise : void 0, - $1 = + A1 = typeof queueMicrotask == "function" ? queueMicrotask : typeof yd < "u" ? function (e) { - return yd.resolve(null).then(e).catch(A1); + return yd.resolve(null).then(e).catch(D1); } : Cs; - function A1(e) { + function D1(e) { setTimeout(function () { throw e; }); @@ -3610,8 +3610,8 @@ function Mb() { Br = "__reactProps$" + M0, fn = "__reactContainer$" + M0, Os = "__reactEvents$" + M0, - D1 = "__reactListeners$" + M0, - z1 = "__reactHandles$" + M0; + z1 = "__reactListeners$" + M0, + H1 = "__reactHandles$" + M0; function Jn(e) { var r = e[nn]; if (r) return r; @@ -3725,7 +3725,7 @@ function Mb() { function kd(e) { pn === null ? (pn = [e]) : pn.push(e); } - function H1(e) { + function V1(e) { (Ko = !0), kd(e); } function Nn() { @@ -3920,7 +3920,7 @@ function Mb() { function Ms(e) { Kt === null ? (Kt = [e]) : Kt.push(e); } - var V1 = L.ReactCurrentBatchConfig; + var U1 = L.ReactCurrentBatchConfig; function Xt(e, r) { if (e && e.defaultProps) { (r = w({}, r)), (e = e.defaultProps); @@ -4574,8 +4574,8 @@ function Mb() { (oe = Pe)); return ( e && - ae.forEach(function (Sb) { - return r(I, Sb); + ae.forEach(function (wb) { + return r(I, wb); }), De && n0(I, de), te @@ -4749,7 +4749,7 @@ function Mb() { ia = !1, Hr = !1, Vr = 0, - U1 = 0; + G1 = 0; function ut() { throw Error(o(321)); } @@ -4766,7 +4766,7 @@ function Mb() { (r.memoizedState = null), (r.updateQueue = null), (r.lanes = 0), - (aa.current = e === null || e.memoizedState === null ? K1 : X1), + (aa.current = e === null || e.memoizedState === null ? X1 : Q1), (e = s(l, u)), Hr) ) { @@ -4776,7 +4776,7 @@ function Mb() { (p += 1), (tt = Ze = null), (r.updateQueue = null), - (aa.current = Q1), + (aa.current = Y1), (e = s(l, u)); } while (Hr); } @@ -4978,7 +4978,7 @@ function Mb() { lastRenderedState: e, }), (r.queue = e), - (e = e.dispatch = W1.bind(null, He, e)), + (e = e.dispatch = K1.bind(null, He, e)), [r.memoizedState, e] ); } @@ -5077,7 +5077,7 @@ function Mb() { ((s = ju()), (He.lanes |= s), (i0 |= s), (e.baseState = !0)), r); } - function G1(e, r) { + function q1(e, r) { var s = Fe; (Fe = s !== 0 && 4 > s ? s : 4), e(!0); var l = Ws.transition; @@ -5091,7 +5091,7 @@ function Mb() { function af() { return Dt().memoizedState; } - function q1(e, r, s) { + function W1(e, r, s) { var l = zn(e); if ( ((s = { @@ -5109,7 +5109,7 @@ function Mb() { Zt(s, e, l, u), cf(s, r, l); } } - function W1(e, r, s) { + function K1(e, r, s) { var l = zn(e), u = { lane: l, @@ -5180,7 +5180,7 @@ function Mb() { useId: ut, unstable_isNewReconciler: !1, }, - K1 = { + X1 = { readContext: At, useCallback: function (e, r) { return (on().memoizedState = [e, r === void 0 ? null : r]), e; @@ -5222,7 +5222,7 @@ function Mb() { lastRenderedState: r, }), (l.queue = e), - (e = e.dispatch = q1.bind(null, He, e)), + (e = e.dispatch = W1.bind(null, He, e)), [l.memoizedState, e] ); }, @@ -5238,7 +5238,7 @@ function Mb() { useTransition: function () { var e = Xd(!1), r = e[0]; - return (e = G1.bind(null, e[1])), (on().memoizedState = e), [r, e]; + return (e = q1.bind(null, e[1])), (on().memoizedState = e), [r, e]; }, useMutableSource: function () {}, useSyncExternalStore: function (e, r, s) { @@ -5272,12 +5272,12 @@ function Mb() { (s = Vr++), 0 < s && (r += "H" + s.toString(32)), (r += ":"); - } else (s = U1++), (r = ":" + r + "r" + s.toString(32) + ":"); + } else (s = G1++), (r = ":" + r + "r" + s.toString(32) + ":"); return (e.memoizedState = r); }, unstable_isNewReconciler: !1, }, - X1 = { + Q1 = { readContext: At, useCallback: nf, useContext: At, @@ -5306,7 +5306,7 @@ function Mb() { useId: af, unstable_isNewReconciler: !1, }, - Q1 = { + Y1 = { readContext: At, useCallback: nf, useContext: At, @@ -5365,7 +5365,7 @@ Error generating stack: ` + }); } } - var Y1 = typeof WeakMap == "function" ? WeakMap : Map; + var Z1 = typeof WeakMap == "function" ? WeakMap : Map; function uf(e, r, s) { (s = bn(-1, s)), (s.tag = 3), (s.payload = { element: null }); var l = r.value; @@ -5407,11 +5407,11 @@ Error generating stack: ` + function ff(e, r, s) { var l = e.pingCache; if (l === null) { - l = e.pingCache = new Y1(); + l = e.pingCache = new Z1(); var u = new Set(); l.set(r, u); } else (u = l.get(r)), u === void 0 && ((u = new Set()), l.set(r, u)); - u.has(s) || (u.add(s), (e = db.bind(null, e, r, s)), r.then(e, e)); + u.has(s) || (u.add(s), (e = fb.bind(null, e, r, s)), r.then(e, e)); } function pf(e) { do { @@ -5442,7 +5442,7 @@ Error generating stack: ` + e) : ((e.flags |= 65536), (e.lanes = u), e); } - var Z1 = L.ReactCurrentOwner, + var J1 = L.ReactCurrentOwner, wt = !1; function bt(e, r, s, l) { r.child = e === null ? Dd(r, null, s, l) : V0(r, e.child, s, l); @@ -5678,7 +5678,7 @@ Error generating stack: ` + yf(e, r); var g = (r.flags & 128) !== 0; if (!l && !g) return u && wd(r, s, !1), vn(e, r, p); - (l = r.stateNode), (Z1.current = r); + (l = r.stateNode), (J1.current = r); var _ = g && typeof s.getDerivedStateFromError != "function" ? null : l.render(); return ( @@ -5750,7 +5750,7 @@ Error generating stack: ` + : sl(r, g)) ); if (((u = e.memoizedState), u !== null && ((_ = u.dehydrated), _ !== null))) - return J1(e, r, g, l, _, u, s); + return eb(e, r, g, l, _, u, s); if (p) { (p = l.fallback), (g = r.mode), (u = e.child), (_ = u.sibling); var k = { mode: "hidden", children: l.children }; @@ -5815,7 +5815,7 @@ Error generating stack: ` + e ); } - function J1(e, r, s, l, u, p, g) { + function eb(e, r, s, l, u, p, g) { if (s) return r.flags & 256 ? ((r.flags &= -257), (l = tl(Error(o(422)))), ua(e, r, g, l)) @@ -5889,7 +5889,7 @@ Error generating stack: ` + return u.data === "$?" ? ((r.flags |= 128), (r.child = e.child), - (r = fb.bind(null, e)), + (r = pb.bind(null, e)), (u._reactRetry = r), null) : ((e = p.treeContext), @@ -6013,7 +6013,7 @@ Error generating stack: ` + } return r.child; } - function eb(e, r, s) { + function tb(e, r, s) { switch (r.tag) { case 3: xf(r), D0(); @@ -6199,7 +6199,7 @@ Error generating stack: ` + (u = u.sibling); return (e.subtreeFlags |= l), (e.childLanes = s), r; } - function tb(e, r, s) { + function nb(e, r, s) { var l = r.pendingProps; switch ((Is(r), r.tag)) { case 2: @@ -6630,7 +6630,7 @@ Error generating stack: ` + } throw Error(o(156, r.tag)); } - function nb(e, r) { + function rb(e, r) { switch ((Is(r), r.tag)) { case 1: return ( @@ -6678,7 +6678,7 @@ Error generating stack: ` + } var fa = !1, ft = !1, - rb = typeof WeakSet == "function" ? WeakSet : Set, + ob = typeof WeakSet == "function" ? WeakSet : Set, Y = null; function q0(e, r) { var s = e.ref; @@ -6699,7 +6699,7 @@ Error generating stack: ` + } } var Tf = !1; - function ob(e, r) { + function ab(e, r) { if (((Ss = Fo), (e = ad()), hs(e))) { if ("selectionStart" in e) var s = { start: e.selectionStart, end: e.selectionEnd }; @@ -6862,8 +6862,8 @@ Error generating stack: ` + (delete r[nn], delete r[Br], delete r[Os], - delete r[D1], - delete r[z1])), + delete r[z1], + delete r[H1])), (e.stateNode = null), (e.return = null), (e.dependencies = null), @@ -7019,9 +7019,9 @@ Error generating stack: ` + if (r !== null) { e.updateQueue = null; var s = e.stateNode; - s === null && (s = e.stateNode = new rb()), + s === null && (s = e.stateNode = new ob()), r.forEach(function (l) { - var u = pb.bind(null, e, l); + var u = hb.bind(null, e, l); s.has(l) || (s.add(l), l.then(u, u)); }); } @@ -7322,7 +7322,7 @@ Error generating stack: ` + } r & 4096 && (e.flags &= -4097); } - function ab(e, r, s) { + function ib(e, r, s) { (Y = e), Bf(e); } function Bf(e, r, s) { @@ -7531,7 +7531,7 @@ Error generating stack: ` + Y = r.return; } } - var ib = Math.ceil, + var sb = Math.ceil, ha = L.ReactCurrentDispatcher, hl = L.ReactCurrentOwner, zt = L.ReactCurrentBatchConfig, @@ -7569,7 +7569,7 @@ Error generating stack: ` + ? 1 : (Ce & 2) !== 0 && st !== 0 ? st & -st - : V1.transition !== null + : U1.transition !== null ? (_a === 0 && (_a = ju()), _a) : ((e = Fe), e !== 0 || @@ -7589,14 +7589,14 @@ Error generating stack: ` + } function Ct(e, r) { var s = e.callbackNode; - Vg(e, r); + Ug(e, r); var l = To(e, e === nt ? st : 0); if (l === 0) s !== null && Ou(s), (e.callbackNode = null), (e.callbackPriority = 0); else if (((r = l & -l), e.callbackPriority !== r)) { if ((s != null && Ou(s), r === 1)) - e.tag === 0 ? H1(zf.bind(null, e)) : kd(zf.bind(null, e)), - $1(function () { + e.tag === 0 ? V1(zf.bind(null, e)) : kd(zf.bind(null, e)), + A1(function () { (Ce & 6) === 0 && Nn(); }), (s = null); @@ -7637,7 +7637,7 @@ Error generating stack: ` + (nt !== e || st !== r) && ((yn = null), (K0 = qe() + 500), l0(e, r)); do try { - cb(); + ub(); break; } catch (_) { Hf(e, _); @@ -7659,7 +7659,7 @@ Error generating stack: ` + if ( ((u = e.current.alternate), (l & 30) === 0 && - !sb(u) && + !lb(u) && ((r = xa(e, l)), r === 2 && ((p = Zi(e)), p !== 0 && ((l = p), (r = yl(e, p)))), r === 1)) @@ -7709,7 +7709,7 @@ Error generating stack: ` + ? 3e3 : 4320 > l ? 4320 - : 1960 * ib(l / 1960)) - l), + : 1960 * sb(l / 1960)) - l), 10 < l) ) { e.timeoutHandle = Cs(c0.bind(null, e, kt, yn), l); @@ -7739,7 +7739,7 @@ Error generating stack: ` + function _l(e) { kt === null ? (kt = e) : kt.push.apply(kt, e); } - function sb(e) { + function lb(e) { for (var r = e; ; ) { if (r.flags & 16384) { var s = r.updateQueue; @@ -7830,7 +7830,7 @@ Error generating stack: ` + function l0(e, r) { (e.finishedWork = null), (e.finishedLanes = 0); var s = e.timeoutHandle; - if ((s !== -1 && ((e.timeoutHandle = -1), L1(s)), Ke !== null)) + if ((s !== -1 && ((e.timeoutHandle = -1), $1(s)), Ke !== null)) for (s = Ke.return; s !== null; ) { var l = s; switch ((Is(l), l.tag)) { @@ -8014,7 +8014,7 @@ Error generating stack: ` + (nt !== e || st !== r) && ((yn = null), l0(e, r)); do try { - lb(); + cb(); break; } catch (u) { Hf(e, u); @@ -8023,11 +8023,11 @@ Error generating stack: ` + if ((Bs(), (Ce = s), (ha.current = l), Ke !== null)) throw Error(o(261)); return (nt = null), (st = 0), Je; } - function lb() { + function cb() { for (; Ke !== null; ) Uf(Ke); } - function cb() { - for (; Ke !== null && !Mg(); ) Uf(Ke); + function ub() { + for (; Ke !== null && !Ng(); ) Uf(Ke); } function Uf(e) { var r = Kf(e.alternate, e, Ft); @@ -8040,12 +8040,12 @@ Error generating stack: ` + do { var s = r.alternate; if (((e = r.return), (r.flags & 32768) === 0)) { - if (((s = tb(s, r, Ft)), s !== null)) { + if (((s = nb(s, r, Ft)), s !== null)) { Ke = s; return; } } else { - if (((s = nb(s, r)), s !== null)) { + if (((s = rb(s, r)), s !== null)) { (s.flags &= 32767), (Ke = s); return; } @@ -8068,13 +8068,13 @@ Error generating stack: ` + var l = Fe, u = zt.transition; try { - (zt.transition = null), (Fe = 1), ub(e, r, s, l); + (zt.transition = null), (Fe = 1), db(e, r, s, l); } finally { (zt.transition = u), (Fe = l); } return null; } - function ub(e, r, s, l) { + function db(e, r, s, l) { do X0(); while (Dn !== null); if ((Ce & 6) !== 0) throw Error(o(327)); @@ -8086,7 +8086,7 @@ Error generating stack: ` + (e.callbackNode = null), (e.callbackPriority = 0); var p = s.lanes | s.childLanes; if ( - (Ug(e, p), + (Gg(e, p), e === nt && ((Ke = nt = null), (st = 0)), ((s.subtreeFlags & 2064) === 0 && (s.flags & 2064) === 0) || ba || @@ -8103,14 +8103,14 @@ Error generating stack: ` + var _ = Ce; (Ce |= 4), (hl.current = null), - ob(e, s), + ab(e, s), Nf(s, e), - j1(ws), + I1(ws), (Fo = !!Ss), (ws = Ss = null), (e.current = s), - ab(s), - Ng(), + ib(s), + Bg(), (Ce = _), (Fe = g), (zt.transition = p); @@ -8119,7 +8119,7 @@ Error generating stack: ` + (ba && ((ba = !1), (Dn = e), (va = u)), (p = e.pendingLanes), p === 0 && (An = null), - $g(s.stateNode), + Ag(s.stateNode), Ct(e, qe()), r !== null) ) @@ -8294,7 +8294,7 @@ Error generating stack: ` + r = r.return; } } - function db(e, r, s) { + function fb(e, r, s) { var l = e.pingCache; l !== null && l.delete(r), (r = vt()), @@ -8314,12 +8314,12 @@ Error generating stack: ` + var s = vt(); (e = gn(e, r)), e !== null && (_r(e, r, s), Ct(e, s)); } - function fb(e) { + function pb(e) { var r = e.memoizedState, s = 0; r !== null && (s = r.retryLane), Wf(e, s); } - function pb(e, r) { + function hb(e, r) { var s = 0; switch (e.tag) { case 13: @@ -8341,7 +8341,7 @@ Error generating stack: ` + if (e.memoizedProps !== r.pendingProps || xt.current) wt = !0; else { if ((e.lanes & s) === 0 && (r.flags & 128) === 0) - return (wt = !1), eb(e, r, s); + return (wt = !1), tb(e, r, s); wt = (e.flags & 131072) !== 0; } else (wt = !1), De && (r.flags & 1048576) !== 0 && Cd(r, Qo, r.index); @@ -8382,7 +8382,7 @@ Error generating stack: ` + (u = l._init), (l = u(l._payload)), (r.type = l), - (u = r.tag = mb(l)), + (u = r.tag = gb(l)), (e = Xt(l, e)), u) ) { @@ -8616,7 +8616,7 @@ Error generating stack: ` + function Xf(e, r) { return Pu(e, r); } - function hb(e, r, s, l) { + function mb(e, r, s, l) { (this.tag = e), (this.key = s), (this.sibling = @@ -8641,12 +8641,12 @@ Error generating stack: ` + (this.alternate = null); } function Ht(e, r, s, l) { - return new hb(e, r, s, l); + return new mb(e, r, s, l); } function kl(e) { return (e = e.prototype), !(!e || !e.isReactComponent); } - function mb(e) { + function gb(e) { if (typeof e == "function") return kl(e) ? 1 : 0; if (e != null) { if (((e = e.$$typeof), e === le)) return 11; @@ -8758,7 +8758,7 @@ Error generating stack: ` + r ); } - function gb(e, r, s, l, u) { + function bb(e, r, s, l, u) { (this.tag = r), (this.containerInfo = e), (this.finishedWork = @@ -8786,7 +8786,7 @@ Error generating stack: ` + } function Ol(e, r, s, l, u, p, g, _, k) { return ( - (e = new gb(e, r, s, _, k)), + (e = new bb(e, r, s, _, k)), r === 1 ? ((r = 1), p === !0 && (r |= 8)) : (r = 0), (p = Ht(3, null, null, r)), (e.current = p), @@ -8802,7 +8802,7 @@ Error generating stack: ` + e ); } - function bb(e, r, s) { + function vb(e, r, s) { var l = 3 < arguments.length && arguments[3] !== void 0 ? arguments[3] : null; return { @@ -8890,7 +8890,7 @@ Error generating stack: ` + function El(e, r) { Zf(e, r), (e = e.alternate) && Zf(e, r); } - function vb() { + function yb() { return null; } var Jf = @@ -8944,7 +8944,7 @@ Error generating stack: ` + ); } function ep() {} - function yb(e, r, s, l, u) { + function _b(e, r, s, l, u) { if (u) { if (typeof l == "function") { var p = l; @@ -8993,7 +8993,7 @@ Error generating stack: ` + }; } ka(r, g, e, u); - } else g = yb(s, r, e, u, l); + } else g = _b(s, r, e, u, l); return Ca(g); } (Fu = function (e) { @@ -9082,14 +9082,14 @@ Error generating stack: ` + }), (yu = xl), (_u = s0); - var _b = { usingClientEntryPoint: !1, Events: [Lr, N0, Go, bu, vu, xl] }, + var xb = { usingClientEntryPoint: !1, Events: [Lr, N0, Go, bu, vu, xl] }, Yr = { findFiberByHostInstance: Jn, bundleType: 0, version: "18.2.0", rendererPackageName: "react-dom", }, - xb = { + Sb = { bundleType: Yr.bundleType, version: Yr.version, rendererPackageName: Yr.rendererPackageName, @@ -9107,7 +9107,7 @@ Error generating stack: ` + findHostInstanceByFiber: function (e) { return (e = ku(e)), e === null ? null : e.stateNode; }, - findFiberByHostInstance: Yr.findFiberByHostInstance || vb, + findFiberByHostInstance: Yr.findFiberByHostInstance || yb, findHostInstancesForRefresh: null, scheduleRefresh: null, scheduleRoot: null, @@ -9119,16 +9119,16 @@ Error generating stack: ` + var Ta = __REACT_DEVTOOLS_GLOBAL_HOOK__; if (!Ta.isDisabled && Ta.supportsFiber) try { - (Po = Ta.inject(xb)), (tn = Ta); + (Po = Ta.inject(Sb)), (tn = Ta); } catch {} } return ( - (Pt.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = _b), + (Pt.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = xb), (Pt.createPortal = function (e, r) { var s = 2 < arguments.length && arguments[2] !== void 0 ? arguments[2] : null; if (!jl(r)) throw Error(o(200)); - return bb(e, r, null, s); + return vb(e, r, null, s); }), (Pt.createRoot = function (e, r) { if (!jl(e)) throw Error(o(299)); @@ -9230,18 +9230,18 @@ function Mh() { console.error(t); } } - return n(), (Nl.exports = Mb()), Nl.exports; + return n(), (Nl.exports = Nb()), Nl.exports; } var fp; -function Nb() { +function Bb() { if (fp) return ja; fp = 1; var n = Mh(); return (ja.createRoot = n.createRoot), (ja.hydrateRoot = n.hydrateRoot), ja; } -var Bb = Nb(); -const Lb = "modulepreload", - $b = function (n) { +var Lb = Bb(); +const $b = "modulepreload", + Ab = function (n) { return "/" + n; }, pp = {}, @@ -9265,14 +9265,14 @@ const Lb = "modulepreload", (h == null ? void 0 : h.getAttribute("nonce")); i = d( o.map((m) => { - if (((m = $b(m)), m in pp)) return; + if (((m = Ab(m)), m in pp)) return; pp[m] = !0; const b = m.endsWith(".css"), v = b ? '[rel="stylesheet"]' : ""; if (document.querySelector(`link[href="${m}"]${v}`)) return; const y = document.createElement("link"); if ( - ((y.rel = b ? "stylesheet" : Lb), + ((y.rel = b ? "stylesheet" : $b), b || (y.as = "script"), (y.crossOrigin = ""), (y.href = m), @@ -9304,24 +9304,24 @@ let at = class extends Error { super(t), (this.name = "ShikiError"); } }; -function Ab(n) { +function Db(n) { return Bc(n); } function Bc(n) { return Array.isArray(n) - ? Db(n) + ? zb(n) : n instanceof RegExp ? n : typeof n == "object" - ? zb(n) + ? Hb(n) : n; } -function Db(n) { +function zb(n) { let t = []; for (let o = 0, a = n.length; o < a; o++) t[o] = Bc(n[o]); return t; } -function zb(n) { +function Hb(n) { let t = {}; for (let o in n) t[o] = Bc(n[o]); return t; @@ -9411,10 +9411,10 @@ var Dh = class { (this._colorMap = n), (this._defaults = t), (this._root = o); } static createFromRawTheme(n, t) { - return this.createFromParsedTheme(Ub(n), t); + return this.createFromParsedTheme(Gb(n), t); } static createFromParsedTheme(n, t) { - return qb(n, t); + return Wb(n, t); } getColorMap() { return this._colorMap.getColorMap(); @@ -9427,7 +9427,7 @@ var Dh = class { const t = n.scopeName, a = this._cachedMatchRoot .get(t) - .find((i) => Hb(n.parent, i.parentScopes)); + .find((i) => Vb(n.parent, i.parentScopes)); return a ? new zh(a.fontStyle, a.foreground, a.background) : null; } }, @@ -9470,7 +9470,7 @@ var Dh = class { return a === t ? o.reverse() : void 0; } }; -function Hb(n, t) { +function Vb(n, t) { if (t.length === 0) return !0; for (let o = 0; o < t.length; o++) { let a = t[o], @@ -9479,7 +9479,7 @@ function Hb(n, t) { if (o === t.length - 1) return !1; (a = t[++o]), (i = !0); } - for (; n && !Vb(n.scopeName, a); ) { + for (; n && !Ub(n.scopeName, a); ) { if (i) return !1; n = n.parent; } @@ -9488,7 +9488,7 @@ function Hb(n, t) { } return !0; } -function Vb(n, t) { +function Ub(n, t) { return t === n || (n.startsWith(t) && n[t.length] === "."); } var zh = class { @@ -9496,7 +9496,7 @@ var zh = class { (this.fontStyle = n), (this.foregroundId = t), (this.backgroundId = o); } }; -function Ub(n) { +function Gb(n) { if (!n) return []; if (!n.settings || !Array.isArray(n.settings)) return []; let t = n.settings, @@ -9545,12 +9545,12 @@ function Ub(n) { O = S[S.length - 1], C = null; S.length > 1 && ((C = S.slice(0, S.length - 1)), C.reverse()), - (o[a++] = new Gb(O, C, i, f, m, b)); + (o[a++] = new qb(O, C, i, f, m, b)); } } return o; } -var Gb = class { +var qb = class { constructor(n, t, o, a, i, c) { (this.scope = n), (this.parentScopes = t), @@ -9569,7 +9569,7 @@ var Gb = class { (n[(n.Strikethrough = 8)] = "Strikethrough"), n ))(mt || {}); -function qb(n, t) { +function Wb(n, t) { n.sort((f, m) => { let b = Lh(f.scope, m.scope); return b !== 0 || ((b = $h(f.parentScopes, m.parentScopes)), b !== 0) @@ -9585,9 +9585,9 @@ function qb(n, t) { f.foreground !== null && (a = f.foreground), f.background !== null && (i = f.background); } - let c = new Wb(t), + let c = new Kb(t), d = new zh(o, c.getId(a), c.getId(i)), - h = new Xb(new ic(0, null, -1, 0, 0), []); + h = new Qb(new ic(0, null, -1, 0, 0), []); for (let f = 0, m = n.length; f < m; f++) { let b = n[f]; h.insert( @@ -9601,7 +9601,7 @@ function qb(n, t) { } return new ti(c, d, h); } -var Wb = class { +var Kb = class { constructor(n) { B(this, "_isFrozen"); B(this, "_lastColorId"); @@ -9635,7 +9635,7 @@ var Wb = class { return this._id2color.slice(0); } }, - Kb = Object.freeze([]), + Xb = Object.freeze([]), ic = class Hh { constructor(t, o, a, i, c) { B(this, "scopeDepth"); @@ -9644,7 +9644,7 @@ var Wb = class { B(this, "foreground"); B(this, "background"); (this.scopeDepth = t), - (this.parentScopes = o || Kb), + (this.parentScopes = o || Xb), (this.fontStyle = a), (this.foreground = i), (this.background = c); @@ -9672,7 +9672,7 @@ var Wb = class { i !== 0 && (this.background = i); } }, - Xb = class sc { + Qb = class sc { constructor(t, o = [], a = {}) { B(this, "_rulesWithParentScopes"); (this._mainRule = t), @@ -9813,7 +9813,7 @@ var Wb = class { }; function ni(n, t) { const o = [], - a = Qb(n); + a = Yb(n); let i = a.next(); for (; i !== null; ) { let f = 0; @@ -9874,7 +9874,7 @@ function ni(n, t) { function mp(n) { return !!n && !!n.match(/[\w\.:]+/); } -function Qb(n) { +function Yb(n) { let t = /([LR]:|[\w\.:][\w\.:\-]*|[\,\|\-\(\)])/g, o = t.exec(n); return { @@ -9896,7 +9896,7 @@ var so = class { return this.scopeName; } }, - Yb = class { + Zb = class { constructor(n, t) { (this.scopeName = n), (this.ruleName = t); } @@ -9904,7 +9904,7 @@ var so = class { return `${this.scopeName}#${this.ruleName}`; } }, - Zb = class { + Jb = class { constructor() { B(this, "_references", []); B(this, "_seenReferenceKeys", new Set()); @@ -9919,7 +9919,7 @@ var so = class { (this._seenReferenceKeys.add(t), this._references.push(n)); } }, - Jb = class { + ev = class { constructor(n, t) { B(this, "seenFullScopeRequests", new Set()); B(this, "seenPartialScopeRequests", new Set()); @@ -9932,8 +9932,8 @@ var so = class { processQueue() { const n = this.Q; this.Q = []; - const t = new Zb(); - for (const o of n) ev(o, this.initialScopeName, this.repo, t); + const t = new Jb(); + for (const o of n) tv(o, this.initialScopeName, this.repo, t); for (const o of t.references) if (o instanceof so) { if (this.seenFullScopeRequests.has(o.scopeName)) continue; @@ -9948,7 +9948,7 @@ var so = class { } } }; -function ev(n, t, o, a) { +function tv(n, t, o, a) { const i = o.lookup(n.scopeName); if (!i) { if (n.scopeName === t) throw new Error(`No grammar provided for <${t}>`); @@ -10022,55 +10022,55 @@ function ri(n, t, o) { d.kind === 4 ? lc(d.ruleName, f, o) : Ua(f, o); } else d.kind === 4 - ? o.add(new Yb(d.scopeName, d.ruleName)) + ? o.add(new Zb(d.scopeName, d.ruleName)) : o.add(new so(d.scopeName)); break; } } } -var tv = class { +var nv = class { constructor() { B(this, "kind", 0); } }, - nv = class { + rv = class { constructor() { B(this, "kind", 1); } }, - rv = class { + ov = class { constructor(n) { B(this, "kind", 2); this.ruleName = n; } }, - ov = class { + av = class { constructor(n) { B(this, "kind", 3); this.scopeName = n; } }, - av = class { + iv = class { constructor(n, t) { B(this, "kind", 4); (this.scopeName = n), (this.ruleName = t); } }; function Uh(n) { - if (n === "$base") return new tv(); - if (n === "$self") return new nv(); + if (n === "$base") return new nv(); + if (n === "$self") return new rv(); const t = n.indexOf("#"); - if (t === -1) return new ov(n); - if (t === 0) return new rv(n.substring(1)); + if (t === -1) return new av(n); + if (t === 0) return new ov(n.substring(1)); { const o = n.substring(0, t), a = n.substring(t + 1); - return new av(o, a); + return new iv(o, a); } } -var iv = /\\(\d+)/, +var sv = /\\(\d+)/, gp = /\\(\d+)/g, - sv = -1, + lv = -1, Gh = -2; var vo = class { constructor(n, t, o, a) { @@ -10107,7 +10107,7 @@ var vo = class { : Fa.replaceCaptures(this._contentName, n, t); } }, - lv = class extends vo { + cv = class extends vo { constructor(t, o, a, i, c) { super(t, o, a, i); B(this, "retokenizeCapturedWithRuleId"); @@ -10124,7 +10124,7 @@ var vo = class { throw new Error("Not supported!"); } }, - cv = class extends vo { + uv = class extends vo { constructor(t, o, a, i, c) { super(t, o, a, null); B(this, "_match"); @@ -10340,14 +10340,14 @@ var vo = class { }, qh = class pt { static createCaptureRule(t, o, a, i, c) { - return t.registerRule((d) => new lv(o, d, a, i, c)); + return t.registerRule((d) => new cv(o, d, a, i, c)); } static getCompiledRuleId(t, o, a) { return ( t.id || o.registerRule((i) => { if (((t.id = i), t.match)) - return new cv( + return new uv( t.$vscodeTextmateLocation, t.id, t.name, @@ -10509,7 +10509,7 @@ var vo = class { : (this._anchorCache = null), (this.ruleId = o), typeof this.source == "string" - ? (this.hasBackReferences = iv.test(this.source)) + ? (this.hasBackReferences = sv.test(this.source)) : (this.hasBackReferences = !1); } clone() { @@ -10702,7 +10702,7 @@ var vo = class { } }, Sn, - uv = + dv = ((Sn = class { constructor(t, o) { B(this, "_defaultAttributes"); @@ -10717,7 +10717,7 @@ var vo = class { }), ); (this._defaultAttributes = new Dl(t, 8)), - (this._embeddedLanguagesMatcher = new dv(Object.entries(o || {}))); + (this._embeddedLanguagesMatcher = new fv(Object.entries(o || {}))); } getDefaultAttributes() { return this._defaultAttributes; @@ -10753,7 +10753,7 @@ var vo = class { /\b(comment|string|regex|meta\.embedded)\b/, ), Sn), - dv = class { + fv = class { constructor(n) { B(this, "values"); B(this, "scopesRegExp"); @@ -10782,7 +10782,7 @@ function Kh(n, t, o, a, i, c, d, h) { let m = !1, b = -1; if (d) { - const x = fv(n, t, o, a, i, c); + const x = pv(n, t, o, a, i, c); (i = x.stack), (a = x.linePos), (o = x.isFirstLine), (b = x.anchorPosition); } const v = Date.now(); @@ -10792,7 +10792,7 @@ function Kh(n, t, o, a, i, c, d, h) { } return new yp(i, !1); function y() { - const x = pv(n, t, o, a, i, b); + const x = hv(n, t, o, a, i, b); if (!x) { c.produce(i, f), (m = !0); return; @@ -10800,7 +10800,7 @@ function Kh(n, t, o, a, i, c, d, h) { const S = x.captureIndices, O = x.matchedRuleId, C = S && S.length > 0 ? S[0].end > a : !1; - if (O === sv) { + if (O === lv) { const P = i.getRule(n); c.produce(i, S[0].start), (i = i.withContentNameScopesList(i.nameScopesList)), @@ -10870,7 +10870,7 @@ function Kh(n, t, o, a, i, c, d, h) { S[0].end > a && ((a = S[0].end), (o = !1)); } } -function fv(n, t, o, a, i, c) { +function pv(n, t, o, a, i, c) { let d = i.beginRuleCapturedEOL ? 0 : -1; const h = []; for (let f = i; f; f = f.pop()) { @@ -10878,7 +10878,7 @@ function fv(n, t, o, a, i, c) { m instanceof oi && h.push({ rule: m, stack: f }); } for (let f = h.pop(); f; f = h.pop()) { - const { ruleScanner: m, findOptions: b } = gv( + const { ruleScanner: m, findOptions: b } = bv( f.rule, n, f.stack.endRule, @@ -10906,18 +10906,18 @@ function fv(n, t, o, a, i, c) { } return { stack: i, linePos: a, anchorPosition: d, isFirstLine: o }; } -function pv(n, t, o, a, i, c) { - const d = hv(n, t, o, a, i, c), +function hv(n, t, o, a, i, c) { + const d = mv(n, t, o, a, i, c), h = n.getInjections(); if (h.length === 0) return d; - const f = mv(h, n, t, o, a, i, c); + const f = gv(h, n, t, o, a, i, c); if (!f) return d; if (!d) return f; const m = d.captureIndices[0].start, b = f.captureIndices[0].start; return b < m || (f.priorityMatch && b === m) ? f : d; } -function hv(n, t, o, a, i, c) { +function mv(n, t, o, a, i, c) { const d = i.getRule(n), { ruleScanner: h, findOptions: f } = Xh(d, n, i.endRule, o, a === c), m = h.findNextMatchSync(t, a, f); @@ -10925,7 +10925,7 @@ function hv(n, t, o, a, i, c) { ? { captureIndices: m.captureIndices, matchedRuleId: m.ruleId } : null; } -function mv(n, t, o, a, i, c, d) { +function gv(n, t, o, a, i, c, d) { let h = Number.MAX_VALUE, f = null, m, @@ -10956,7 +10956,7 @@ function mv(n, t, o, a, i, c, d) { function Xh(n, t, o, a, i) { return { ruleScanner: n.compileAG(t, o, a, i), findOptions: 0 }; } -function gv(n, t, o, a, i) { +function bv(n, t, o, a, i) { return { ruleScanner: n.compileWhileAG(t, o, a, i), findOptions: 0 }; } function no(n, t, o, a, i, c, d) { @@ -10994,22 +10994,22 @@ function no(n, t, o, a, i, c, d) { const C = ( m.length > 0 ? m[m.length - 1].scopes : a.contentNameScopesList ).pushAttributed(S, n); - m.push(new bv(C, x.end)); + m.push(new vv(C, x.end)); } } for (; m.length > 0; ) i.produceFromScopes(m[m.length - 1].scopes, m[m.length - 1].endPos), m.pop(); } -var bv = class { +var vv = class { constructor(n, t) { B(this, "scopes"); B(this, "endPos"); (this.scopes = n), (this.endPos = t); } }; -function vv(n, t, o, a, i, c, d, h) { - return new _v(n, t, o, a, i, c, d, h); +function yv(n, t, o, a, i, c, d, h) { + return new xv(n, t, o, a, i, c, d, h); } function _p(n, t, o, a, i) { const c = ni(t, ai), @@ -11027,17 +11027,17 @@ function ai(n, t) { if (t.length < n.length) return !1; let o = 0; return n.every((a) => { - for (let i = o; i < t.length; i++) if (yv(t[i], a)) return (o = i + 1), !0; + for (let i = o; i < t.length; i++) if (_v(t[i], a)) return (o = i + 1), !0; return !1; }); } -function yv(n, t) { +function _v(n, t) { if (!n) return !1; if (n === t) return !0; const o = t.length; return n.length > o && n.substr(0, o) === t && n[o] === "."; } -var _v = class { +var xv = class { constructor(n, t, o, a, i, c, d, h) { B(this, "_rootId"); B(this, "_lastRuleId"); @@ -11052,7 +11052,7 @@ var _v = class { ((this._rootScopeName = n), (this.balancedBracketSelectors = c), (this._onigLib = h), - (this._basicScopeAttributesProvider = new uv(o, a)), + (this._basicScopeAttributesProvider = new dv(o, a)), (this._rootId = -1), (this._lastRuleId = 0), (this._ruleId2desc = [null]), @@ -11187,7 +11187,7 @@ var _v = class { `; const c = this.createOnigString(n), d = c.content.length, - h = new Sv(o, n, this._tokenTypeMatchers, this.balancedBracketSelectors), + h = new wv(o, n, this._tokenTypeMatchers, this.balancedBracketSelectors), f = Kh(this, c, i, 0, t, h, !0, a); return ( Vh(c), @@ -11202,7 +11202,7 @@ var _v = class { }; function xp(n, t) { return ( - (n = Ab(n)), + (n = Db(n)), (n.repository = n.repository || {}), (n.repository.$self = { $vscodeTextmateLocation: n.$vscodeTextmateLocation, @@ -11455,7 +11455,7 @@ var ao = class sn { }), B(Ut, "NULL", new Ut(null, 0, 0, 0, !1, null, null, null)), Ut), - xv = class { + Sv = class { constructor(n, t) { B(this, "balancedBracketScopes"); B(this, "unbalancedBracketScopes"); @@ -11481,7 +11481,7 @@ var ao = class sn { return this.allowAny; } }, - Sv = class { + wv = class { constructor(n, t, o, a) { B(this, "_emitBinaryTokens"); B(this, "_lineText"); @@ -11568,7 +11568,7 @@ var ao = class sn { return o; } }, - wv = class { + kv = class { constructor(n, t) { B(this, "_grammars", new Map()); B(this, "_rawGrammars", new Map()); @@ -11605,18 +11605,18 @@ var ao = class sn { if (!this._grammars.has(n)) { let c = this._rawGrammars.get(n); if (!c) return null; - this._grammars.set(n, vv(n, c, t, o, a, i, this, this._onigLib)); + this._grammars.set(n, yv(n, c, t, o, a, i, this, this._onigLib)); } return this._grammars.get(n); } }, - kv = class { + Cv = class { constructor(t) { B(this, "_options"); B(this, "_syncRegistry"); B(this, "_ensureGrammarCache"); (this._options = t), - (this._syncRegistry = new wv( + (this._syncRegistry = new kv( ti.createFromRawTheme(t.theme, t.colorMap), t.onigLib, )), @@ -11640,7 +11640,7 @@ var ao = class sn { o, a.embeddedLanguages, a.tokenTypes, - new xv( + new Sv( a.balancedBracketSelectors || [], a.unbalancedBracketSelectors || [], ), @@ -11650,7 +11650,7 @@ var ao = class sn { return this._loadGrammar(t, 0, null, null, null); } _loadGrammar(t, o, a, i, c) { - const d = new Jb(this._syncRegistry, t); + const d = new ev(this._syncRegistry, t); for (; d.Q.length > 0; ) d.Q.map((h) => this._loadSingleGrammar(h.scopeName)), d.processQueue(); return this._grammarForScopeName(t, o, a, i, c); @@ -11680,7 +11680,7 @@ var ao = class sn { } }, dc = uc.NULL; -const Cv = [ +const Pv = [ "area", "base", "basefont", @@ -11736,7 +11736,7 @@ Et.prototype.overloadedBoolean = !1; Et.prototype.property = ""; Et.prototype.spaceSeparated = !1; Et.prototype.space = void 0; -let Pv = 0; +let Ov = 0; const be = x0(), Xe = x0(), pc = x0(), @@ -11745,7 +11745,7 @@ const be = x0(), er = x0(), Rt = x0(); function x0() { - return 2 ** ++Pv; + return 2 ** ++Ov; } const hc = Object.freeze( Object.defineProperty( @@ -11854,7 +11854,7 @@ function Zh(n, t) { function Jh(n, t) { return Zh(n, t.toLowerCase()); } -const Ov = cr({ +const Ev = cr({ attributes: { acceptcharset: "accept-charset", classname: "class", @@ -12159,7 +12159,7 @@ const Ov = cr({ space: "html", transform: Jh, }), - Ev = cr({ + Tv = cr({ attributes: { accentHeight: "accent-height", alignmentBaseline: "alignment-baseline", @@ -12743,22 +12743,22 @@ const Ov = cr({ return "xml:" + t.slice(3).toLowerCase(); }, }), - Tv = /[A-Z]/g, + jv = /[A-Z]/g, wp = /-[a-z]/g, - jv = /^data[-\w.:]+$/i; -function Iv(n, t) { + Iv = /^data[-\w.:]+$/i; +function Fv(n, t) { const o = fc(t); let a = t, i = Et; if (o in n.normal) return n.property[n.normal[o]]; - if (o.length > 4 && o.slice(0, 4) === "data" && jv.test(t)) { + if (o.length > 4 && o.slice(0, 4) === "data" && Iv.test(t)) { if (t.charAt(4) === "-") { - const c = t.slice(5).replace(wp, Rv); + const c = t.slice(5).replace(wp, Mv); a = "data" + c.charAt(0).toUpperCase() + c.slice(1); } else { const c = t.slice(4); if (!wp.test(c)) { - let d = c.replace(Tv, Fv); + let d = c.replace(jv, Rv); d.charAt(0) !== "-" && (d = "-" + d), (t = "data" + d); } } @@ -12766,16 +12766,16 @@ function Iv(n, t) { } return new i(a, t); } -function Fv(n) { +function Rv(n) { return "-" + n.toLowerCase(); } -function Rv(n) { +function Mv(n) { return n.charAt(1).toUpperCase(); } -const Mv = Qh([Yh, Ov, em, tm, nm], "html"), - rm = Qh([Yh, Ev, em, tm, nm], "svg"), +const Nv = Qh([Yh, Ev, em, tm, nm], "html"), + rm = Qh([Yh, Tv, em, tm, nm], "svg"), kp = {}.hasOwnProperty; -function Nv(n, t) { +function Bv(n, t) { const o = t || {}; function a(i, ...c) { let d = a.invalid; @@ -12793,17 +12793,17 @@ function Nv(n, t) { a ); } -const Bv = /["&'<>`]/g, - Lv = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g, - $v = /[\x01-\t\v\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g, - Av = /[|\\{}()[\]^$+*?.]/g, +const Lv = /["&'<>`]/g, + $v = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g, + Av = /[\x01-\t\v\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g, + Dv = /[|\\{}()[\]^$+*?.]/g, Cp = new WeakMap(); -function Dv(n, t) { +function zv(n, t) { if ( - ((n = n.replace(t.subset ? zv(t.subset) : Bv, a)), t.subset || t.escapeOnly) + ((n = n.replace(t.subset ? Hv(t.subset) : Lv, a)), t.subset || t.escapeOnly) ) return n; - return n.replace(Lv, o).replace($v, a); + return n.replace($v, o).replace(Av, a); function o(i, c, d) { return t.format( (i.charCodeAt(0) - 55296) * 1024 + i.charCodeAt(1) - 56320 + 65536, @@ -12815,27 +12815,27 @@ function Dv(n, t) { return t.format(i.charCodeAt(0), d.charCodeAt(c + 1), t); } } -function zv(n) { +function Hv(n) { let t = Cp.get(n); - return t || ((t = Hv(n)), Cp.set(n, t)), t; + return t || ((t = Vv(n)), Cp.set(n, t)), t; } -function Hv(n) { +function Vv(n) { const t = []; let o = -1; - for (; ++o < n.length; ) t.push(n[o].replace(Av, "\\$&")); + for (; ++o < n.length; ) t.push(n[o].replace(Dv, "\\$&")); return new RegExp("(?:" + t.join("|") + ")", "g"); } -const Vv = /[\dA-Fa-f]/; -function Uv(n, t, o) { +const Uv = /[\dA-Fa-f]/; +function Gv(n, t, o) { const a = "&#x" + n.toString(16).toUpperCase(); - return o && t && !Vv.test(String.fromCharCode(t)) ? a : a + ";"; + return o && t && !Uv.test(String.fromCharCode(t)) ? a : a + ";"; } -const Gv = /\d/; -function qv(n, t, o) { +const qv = /\d/; +function Wv(n, t, o) { const a = "&#" + String(n); - return o && t && !Gv.test(String.fromCharCode(t)) ? a : a + ";"; + return o && t && !qv.test(String.fromCharCode(t)) ? a : a + ";"; } -const Wv = [ +const Kv = [ "AElig", "AMP", "Aacute", @@ -13197,62 +13197,62 @@ const Wv = [ rsaquo: "›", euro: "€", }, - Kv = ["cent", "copy", "divide", "gt", "lt", "not", "para", "times"], + Xv = ["cent", "copy", "divide", "gt", "lt", "not", "para", "times"], om = {}.hasOwnProperty, mc = {}; let Ra; for (Ra in Hl) om.call(Hl, Ra) && (mc[Hl[Ra]] = Ra); -const Xv = /[^\dA-Za-z]/; -function Qv(n, t, o, a) { +const Qv = /[^\dA-Za-z]/; +function Yv(n, t, o, a) { const i = String.fromCharCode(n); if (om.call(mc, i)) { const c = mc[i], d = "&" + c; return o && - Wv.includes(c) && - !Kv.includes(c) && - (!a || (t && t !== 61 && Xv.test(String.fromCharCode(t)))) + Kv.includes(c) && + !Xv.includes(c) && + (!a || (t && t !== 61 && Qv.test(String.fromCharCode(t)))) ? d : d + ";"; } return ""; } -function Yv(n, t, o) { - let a = Uv(n, t, o.omitOptionalSemicolons), +function Zv(n, t, o) { + let a = Gv(n, t, o.omitOptionalSemicolons), i; if ( ((o.useNamedReferences || o.useShortestReferences) && - (i = Qv(n, t, o.omitOptionalSemicolons, o.attribute)), + (i = Yv(n, t, o.omitOptionalSemicolons, o.attribute)), (o.useShortestReferences || !i) && o.useShortestReferences) ) { - const c = qv(n, t, o.omitOptionalSemicolons); + const c = Wv(n, t, o.omitOptionalSemicolons); c.length < a.length && (a = c); } return i && (!o.useShortestReferences || i.length < a.length) ? i : a; } function tr(n, t) { - return Dv(n, Object.assign({ format: Yv }, t)); + return zv(n, Object.assign({ format: Zv }, t)); } -const Zv = /^>|^->||--!>|"], - ey = ["<", ">"]; -function ty(n, t, o, a) { +const Jv = /^>|^->||--!>|"], + ty = ["<", ">"]; +function ny(n, t, o, a) { return a.settings.bogusComments ? "" - : ""; + : ""; function i(c) { return tr( c, - Object.assign({}, a.settings.characterReferences, { subset: ey }), + Object.assign({}, a.settings.characterReferences, { subset: ty }), ); } } -function ny(n, t, o, a) { +function ry(n, t, o, a) { return ( " i); function o(i) { if (i === n.length) @@ -13810,7 +13810,7 @@ function Uy(n) { return { lines: t, indexToPos: o, posToIndex: a }; } const Hc = "light-dark()"; -function Gy(n, t) { +function qy(n, t) { let o = 0; const a = []; for (const i of t) @@ -13823,7 +13823,7 @@ function Gy(n, t) { a ); } -function qy(n, t) { +function Wy(n, t) { const o = Array.from(t instanceof Set ? t : new Set(t)).sort((a, i) => a - i); return o.length ? n.map((a) => @@ -13832,12 +13832,12 @@ function qy(n, t) { .filter((d) => i.offset < d && d < i.offset + i.content.length) .map((d) => d - i.offset) .sort((d, h) => d - h); - return c.length ? Gy(i, c) : i; + return c.length ? qy(i, c) : i; }), ) : n; } -function Wy(n, t, o, a, i = "css-vars") { +function Ky(n, t, o, a, i = "css-vars") { const c = { content: n.content, explanation: n.explanation, @@ -13926,13 +13926,13 @@ class ur { return this._stacks[this.theme]; } static initial(t, o) { - return new ur(Object.fromEntries(zy(o).map((a) => [a, dc])), t); + return new ur(Object.fromEntries(Hy(o).map((a) => [a, dc])), t); } getInternalStack(t = this.theme) { return this._stacks[t]; } getScopes(t = this.theme) { - return Ky(this._stacks[t]); + return Xy(this._stacks[t]); } toJSON() { return { @@ -13943,7 +13943,7 @@ class ur { }; } } -function Ky(n) { +function Xy(n) { const t = [], o = new Set(); function a(i) { @@ -13958,11 +13958,11 @@ function Ky(n) { } return a(n), t; } -function Xy(n, t) { +function Qy(n, t) { if (!(n instanceof ur)) throw new at("Invalid grammar state"); return n.getInternalStack(t); } -function Qy() { +function Yy() { const n = new WeakMap(); function t(o) { if (!n.has(o.meta)) { @@ -13986,13 +13986,13 @@ function Qy() { return { ...d, offset: i.posToIndex(d.line, d.character) }; } }; - const i = Uy(o.source), + const i = Gy(o.source), c = (o.options.decorations || []).map((d) => ({ ...d, start: a(d.start), end: a(d.end), })); - Yy(c), n.set(o.meta, { decorations: c, converter: i, source: o.source }); + Zy(c), n.set(o.meta, { decorations: c, converter: i, source: o.source }); } return n.get(o.meta); } @@ -14005,7 +14005,7 @@ function Qy() { h.start.offset, h.end.offset, ]); - return qy(o, i); + return Wy(o, i); }, code(o) { var b; @@ -14088,7 +14088,7 @@ function Qy() { }, }; } -function Yy(n) { +function Zy(n) { for (let t = 0; t < n.length; t++) { const o = n[t]; if (o.start.offset > o.end.offset) @@ -14117,9 +14117,9 @@ function fm(n) { ? n.children.map(fm).join("") : ""; } -const Zy = [Qy()]; +const Jy = [Yy()]; function li(n) { - return [...(n.transformers || []), ...Zy]; + return [...(n.transformers || []), ...Jy]; } var f0 = [ "black", @@ -14148,7 +14148,7 @@ var f0 = [ 8: "hidden", 9: "strikethrough", }; -function Jy(n, t) { +function e_(n, t) { const o = n.indexOf("\x1B", t); if (o !== -1 && n[o + 1] === "[") { const a = n.indexOf("m", o); @@ -14173,7 +14173,7 @@ function jp(n) { if (o) return { type: "table", index: Number(o) }; } } -function e_(n) { +function t_(n) { const t = []; for (; n.length > 0; ) { const o = n.shift(); @@ -14225,7 +14225,7 @@ function e_(n) { } return t; } -function t_() { +function n_() { let n = null, t = null, o = new Set(); @@ -14234,7 +14234,7 @@ function t_() { const i = []; let c = 0; do { - const d = Jy(a, c), + const d = e_(a, c), h = d.sequence ? a.substring(c, d.startPosition) : a.substring(c); if ( (h.length > 0 && @@ -14246,7 +14246,7 @@ function t_() { }), d.sequence) ) { - const f = e_(d.sequence); + const f = t_(d.sequence); for (const m of f) m.type === "resetAll" ? ((n = null), (t = null), o.clear()) @@ -14268,7 +14268,7 @@ function t_() { }, }; } -var n_ = { +var r_ = { black: "#000000", red: "#bb0000", green: "#00bb00", @@ -14286,7 +14286,7 @@ var n_ = { brightCyan: "#55ffff", brightWhite: "#ffffff", }; -function r_(n = n_) { +function o_(n = r_) { function t(h) { return n[h]; } @@ -14321,10 +14321,10 @@ function r_(n = n_) { } return { value: d }; } -function o_(n, t, o) { +function a_(n, t, o) { const a = ii(n, o), i = Pi(t), - c = r_( + c = o_( Object.fromEntries( f0.map((h) => { var f; @@ -14337,7 +14337,7 @@ function o_(n, t, o) { }), ), ), - d = t_(); + d = n_(); return i.map((h) => d.parse(h[0]).map((f) => { let m, b; @@ -14348,7 +14348,7 @@ function o_(n, t, o) { (b = f.background ? c.value(f.background) : void 0)), (m = Xn(m, a)), (b = Xn(b, a)), - f.decorations.has("dim") && (m = a_(m)); + f.decorations.has("dim") && (m = i_(m)); let v = mt.None; return ( f.decorations.has("bold") && (v |= mt.Bold), @@ -14360,7 +14360,7 @@ function o_(n, t, o) { }), ); } -function a_(n) { +function i_(n) { const t = n.match(/#([0-9a-f]{3})([0-9a-f]{3})?([0-9a-f]{2})?/); if (t) if (t[3]) { @@ -14382,7 +14382,7 @@ function Vc(n, t, o = {}) { if (Dc(a) || zc(i)) return Pi(t).map((f) => [{ content: f[0], offset: f[1] }]); const { theme: c, colorMap: d } = n.setTheme(i); - if (a === "ansi") return o_(c, t, o); + if (a === "ansi") return a_(c, t, o); const h = n.getLanguage(a); if (o.grammarState) { if (o.grammarState.lang !== h.name) @@ -14394,9 +14394,9 @@ function Vc(n, t, o = {}) { `Grammar state themes "${o.grammarState.themes}" do not contain highlight theme "${c.name}"`, ); } - return s_(t, h, c, d, o); + return l_(t, h, c, d, o); } -function i_(...n) { +function s_(...n) { if (n.length === 2) return uo(n[1]); const [t, o, a = {}] = n, { lang: i = "text", theme: c = t.getLoadedThemes()[0] } = a; @@ -14407,7 +14407,7 @@ function i_(...n) { f = t.getLanguage(i); return new ur(ci(o, f, d, h, a).stateStack, f.name, d.name); } -function s_(n, t, o, a, i) { +function l_(n, t, o, a, i) { const c = ci(n, t, o, a, i), d = new ur(ci(n, t, o, a, i).stateStack, t.name, o.name); return Oi(c.tokens, d), c.tokens; @@ -14417,7 +14417,7 @@ function ci(n, t, o, a, i) { { tokenizeMaxLineLength: d = 0, tokenizeTimeLimit: h = 500 } = i, f = Pi(n); let m = i.grammarState - ? (Xy(i.grammarState, o.name) ?? dc) + ? (Qy(i.grammarState, o.name) ?? dc) : i.grammarContextCode != null ? ci(i.grammarContextCode, t, o, a, { ...i, @@ -14482,8 +14482,8 @@ function ci(n, t, o, a, i) { content: me, scopes: i.includeExplanation === "scopeName" - ? l_(xe.scopes) - : c_(le, xe.scopes), + ? c_(xe.scopes) + : u_(le, xe.scopes), }), (T += 1); } @@ -14494,32 +14494,32 @@ function ci(n, t, o, a, i) { } return { tokens: v, stateStack: m }; } -function l_(n) { +function c_(n) { return n.map((t) => ({ scopeName: t })); } -function c_(n, t) { +function u_(n, t) { const o = []; for (let a = 0, i = t.length; a < i; a++) { const c = t[a]; - o[a] = { scopeName: c, themeMatches: d_(n, c, t.slice(0, a)) }; + o[a] = { scopeName: c, themeMatches: f_(n, c, t.slice(0, a)) }; } return o; } function Ip(n, t) { return n === t || (t.substring(0, n.length) === n && t[n.length] === "."); } -function u_(n, t, o) { +function d_(n, t, o) { if (!Ip(n[n.length - 1], t)) return !1; let a = n.length - 2, i = o.length - 1; for (; a >= 0 && i >= 0; ) Ip(n[a], o[i]) && (a -= 1), (i -= 1); return a === -1; } -function d_(n, t, o) { +function f_(n, t, o) { const a = []; for (const { selectors: i, settings: c } of n) for (const d of i) - if (u_(d, t, o)) { + if (d_(d, t, o)) { a.push(c); break; } @@ -14535,7 +14535,7 @@ function pm(n, t, o) { v = typeof f.theme == "string" ? f.theme : f.theme.name; return { tokens: m, state: b, theme: v }; }), - c = f_(...i.map((f) => f.tokens)), + c = p_(...i.map((f) => f.tokens)), d = c[0].map((f, m) => f.map((b, v) => { const y = { content: b.content, variants: {}, offset: b.offset }; @@ -14567,7 +14567,7 @@ function pm(n, t, o) { : void 0; return h && Oi(d, h), d; } -function f_(...n) { +function p_(...n) { const t = n.map(() => []), o = n.length; for (let a = 0; a < n[0].length; a++) { @@ -14613,7 +14613,7 @@ function ui(n, t, o) { ); const S = y.map((P) => n.getTheme(P.theme)), O = y.map((P) => P.color); - (c = x.map((P) => P.map((T) => Wy(T, O, b, m, v)))), f && Oi(c, f); + (c = x.map((P) => P.map((T) => Ky(T, O, b, m, v)))), f && Oi(c, f); const C = y.map((P) => ii(P.theme, o)); (i = Fp(y, S, C, b, m, "fg", v)), (a = Fp(y, S, C, b, m, "bg", v)), @@ -14685,7 +14685,7 @@ function di( grammarState: b, } = ui(n, i, o); const { mergeWhitespaces: v = !0, mergeSameStyleTokens: y = !1 } = o; - v === !0 ? (c = h_(c)) : v === "never" && (c = m_(c)), y && (c = g_(c)); + v === !0 ? (c = m_(c)) : v === "never" && (c = g_(c)), y && (c = b_(c)); const x = { ...a, get source() { @@ -14694,9 +14694,9 @@ function di( }; for (const C of li(o)) c = ((O = C.tokens) == null ? void 0 : O.call(x, c)) || c; - return p_(c, { ...o, fg: d, bg: h, themeName: f, rootStyle: m }, x, b); + return h_(c, { ...o, fg: d, bg: h, themeName: f, rootStyle: m }, x, b); } -function p_(n, t, o, a = uo(n)) { +function h_(n, t, o, a = uo(n)) { var S, O, C; const i = li(t), c = [], @@ -14815,7 +14815,7 @@ function p_(n, t, o, a = uo(n)) { ((C = P == null ? void 0 : P.root) == null ? void 0 : C.call(y, x)) || x; return a && Oi(x, a), x; } -function h_(n) { +function m_(n) { return n.map((t) => { const o = []; let a = "", @@ -14840,7 +14840,7 @@ function h_(n) { ); }); } -function m_(n) { +function g_(n) { return n.map((t) => t.flatMap((o) => { if (o.content.match(/^\s+$/)) return o; @@ -14857,7 +14857,7 @@ function m_(n) { }), ); } -function g_(n) { +function b_(n) { return n.map((t) => { const o = []; for (const a of t) { @@ -14879,8 +14879,8 @@ function g_(n) { return o; }); } -const b_ = $y; -function v_(n, t, o) { +const v_ = Ay; +function y_(n, t, o) { var c; const a = { meta: {}, @@ -14888,7 +14888,7 @@ function v_(n, t, o) { codeToHast: (d, h) => di(n, d, h), codeToTokens: (d, h) => ui(n, d, h), }; - let i = b_(di(n, t, o, a)); + let i = v_(di(n, t, o, a)); for (const d of li(o)) i = ((c = d.postprocess) == null ? void 0 : c.call(a, i, o)) || i; return i; @@ -14983,7 +14983,7 @@ async function hm(n) { ( await Promise.all( n - .filter((t) => !Hy(t)) + .filter((t) => !Vy(t)) .map( async (t) => await cm(t).then((o) => (Array.isArray(o) ? o : [o])), @@ -14995,19 +14995,19 @@ async function hm(n) { } async function mm(n) { return ( - await Promise.all(n.map(async (o) => (Vy(o) ? null : Uc(await cm(o))))) + await Promise.all(n.map(async (o) => (Uy(o) ? null : Uc(await cm(o))))) ).filter((o) => !!o); } -let y_ = 3; -function __(n, t = 3) { - t > y_ || console.trace(`[SHIKI DEPRECATE]: ${n}`); +let __ = 3; +function x_(n, t = 3) { + t > __ || console.trace(`[SHIKI DEPRECATE]: ${n}`); } class Z0 extends Error { constructor(t) { super(t), (this.name = "ShikiError"); } } -class x_ extends kv { +class S_ extends Cv { constructor(o, a, i, c = {}) { super(o); B(this, "_resolvedThemes", new Map()); @@ -15151,7 +15151,7 @@ class x_ extends kv { this._langGraph.set(a, this._langMap.get(a)); } } -class S_ { +class w_ { constructor(t, o) { B(this, "_langs", new Map()); B(this, "_scopeToLang", new Map()); @@ -15196,7 +15196,7 @@ class S_ { } } let Jr = 0; -function w_(n) { +function k_(n) { (Jr += 1), n.warnings !== !1 && Jr >= 10 && @@ -15209,8 +15209,8 @@ function w_(n) { throw new Z0("`engine` option is required for synchronous mode"); const o = (n.langs || []).flat(1), a = (n.themes || []).flat(1).map(Uc), - i = new S_(n.engine, o), - c = new x_(i, a, o, n.langAlias); + i = new w_(n.engine, o), + c = new S_(i, a, o, n.langAlias); let d; function h(T) { C(); @@ -15276,9 +15276,9 @@ function w_(n) { [Symbol.dispose]: P, }; } -async function k_(n) { +async function C_(n) { n.engine || - __( + x_( "`engine` option is required. Use `createOnigurumaEngine` or `createJavaScriptRegexEngine` to create an engine.", ); const [t, o, a] = await Promise.all([ @@ -15286,27 +15286,27 @@ async function k_(n) { hm(n.langs || []), n.engine, ]); - return w_({ ...n, themes: t, langs: o, engine: a }); + return k_({ ...n, themes: t, langs: o, engine: a }); } -async function C_(n) { - const t = await k_(n); +async function P_(n) { + const t = await C_(n); return { - getLastGrammarState: (...o) => i_(t, ...o), + getLastGrammarState: (...o) => s_(t, ...o), codeToTokensBase: (o, a) => Vc(t, o, a), codeToTokensWithThemes: (o, a) => pm(t, o, a), codeToTokens: (o, a) => ui(t, o, a), codeToHast: (o, a) => di(t, o, a), - codeToHtml: (o, a) => v_(t, o, a), + codeToHtml: (o, a) => y_(t, o, a), getBundledLanguages: () => ({}), getBundledThemes: () => ({}), ...t, getInternalContext: () => t, }; } -function P_(n) { +function O_(n) { return n.replace(/[- _]+/g, "").toLowerCase(); } -const O_ = String.raw`(?:[?*+]|\{\d+(?:,\d*)?\})`; +const E_ = String.raw`(?:[?*+]|\{\d+(?:,\d*)?\})`; new RegExp( String.raw` \\(?: \d+ @@ -15321,13 +15321,13 @@ new RegExp( | [A-Za-z\-]+: | \(DEFINE\) ))? -| (?${O_})(?[?+]?)(?[?*+\{]?) +| (?${E_})(?[?+]?)(?[?*+\{]?) | \\?. `.replace(/\s+/g, ""), "gsu", ); -var E_ = String.fromCodePoint, - T_ = String.raw, +var T_ = String.fromCodePoint, + j_ = String.raw, fi = { flagGroups: (() => { try { @@ -15349,7 +15349,7 @@ var E_ = String.fromCodePoint, fi.bugFlagVLiteralHyphenIsRange = fi.unicodeSets ? (() => { try { - new RegExp(T_`[\d\-a]`, "v"); + new RegExp(j_`[\d\-a]`, "v"); } catch { return !0; } @@ -15358,7 +15358,7 @@ fi.bugFlagVLiteralHyphenIsRange = fi.unicodeSets : !1; fi.bugNestedClassIgnoresNegation = fi.unicodeSets && new RegExp("[[^a]]", "v").test("a"); -function j_(n, t, o) { +function I_(n, t, o) { return n.has(t) || n.set(t, o), n.get(t); } `C Other @@ -15453,7 +15453,7 @@ White_Space space XID_Continue XIDC XID_Start XIDS` .split(/\s/) - .map((n) => [P_(n), n]); + .map((n) => [O_(n), n]); new Map([ Gn(453), Gn(456), @@ -15466,17 +15466,17 @@ new Map([ Gn(8140), Gn(8188), ]); -function I_(n, t) { +function F_(n, t) { const o = []; for (let a = n; a <= t; a++) o.push(a); return o; } function Gn(n) { - const t = E_(n); + const t = T_(n); return [t.toLowerCase(), t]; } function Gl(n, t) { - return I_(n, t).map((o) => Gn(o)); + return F_(n, t).map((o) => Gn(o)); } var Wn, xn, @@ -15489,8 +15489,8 @@ var Wn, Te = ((Qn = class extends RegExp { constructor(o, a, i) { - var t = (..._k) => ( - super(..._k), + var t = (...xk) => ( + super(...xk), d0(this, bo), d0(this, Wn, new Map()), d0(this, xn, null), @@ -15516,7 +15516,7 @@ var Wn, const d = { hiddenCaptures: [], strategy: null, transfers: [], ...i }; t(c ? "" : o, a), Jt(this, h0, o), - Jt(this, Wn, R_(d.hiddenCaptures, d.transfers)), + Jt(this, Wn, M_(d.hiddenCaptures, d.transfers)), Jt(this, m0, d.strategy), (this.rawOptions = i ?? {}); } @@ -15535,7 +15535,7 @@ var Wn, if (yt(this, m0) === "clip_search" && a && i) { this.lastIndex = 0; const c = Fl(this, bo, bc).call(this, o.slice(i)); - return c && (F_(c, i, o, this.hasIndices), (this.lastIndex += i)), c; + return c && (R_(c, i, o, this.hasIndices), (this.lastIndex += i)), c; } return Fl(this, bo, bc).call(this, o); } @@ -15571,7 +15571,7 @@ var Wn, if ( ((a[b] = i[h]), this.hasIndices && (a.indices[b] = c[h]), a.groups) ) { - yt(this, Kn) || Jt(this, Kn, M_(this.source)); + yt(this, Kn) || Jt(this, Kn, N_(this.source)); const v = yt(this, Kn).get(m); v && ((a.groups[v] = i[h]), @@ -15582,7 +15582,7 @@ var Wn, return a; }), Qn); -function F_(n, t, o, a) { +function R_(n, t, o, a) { if (((n.index += t), (n.input = o), a)) { const i = n.indices; for (let d = 0; d < i.length; d++) { @@ -15597,13 +15597,13 @@ function F_(n, t, o, a) { }); } } -function R_(n, t) { +function M_(n, t) { const o = new Map(); for (const a of n) o.set(a, { hidden: !0 }); - for (const [a, i] of t) for (const c of i) j_(o, c, {}).transferTo = a; + for (const [a, i] of t) for (const c of i) I_(o, c, {}).transferTo = a; return o; } -function M_(n) { +function N_(n) { const t = /(?\((?:\?<(?![=!])(?[^>]+)>|(?!\?)))|\\?./gsu, o = new Map(); let a = 0, @@ -15619,7 +15619,7 @@ function M_(n) { return o; } const Bp = 4294967295; -class N_ { +class B_ { constructor(t, o = {}) { B(this, "regexps"); (this.patterns = t), (this.options = o); @@ -15676,7 +15676,7 @@ class N_ { return null; } } -function B_() { +function L_() { const n = { cache: new Map(), regexConstructor: () => { @@ -15685,7 +15685,7 @@ function B_() { }; return { createScanner(t) { - return new N_(t, n); + return new B_(t, n); }, createString(t) { return { content: t }; @@ -15720,13 +15720,13 @@ var Ae = "-ms-", gm = "comm", Ei = "rule", Gc = "decl", - L_ = "@import", + $_ = "@import", bm = "@keyframes", - $_ = "@layer", + A_ = "@layer", vm = Math.abs, qc = String.fromCharCode, vc = Object.assign; -function A_(n, t) { +function D_(n, t) { return ot(n, 0) ^ 45 ? (((((((t << 2) ^ ot(n, 0)) << 2) ^ ot(n, 1)) << 2) ^ ot(n, 2)) << 2) ^ ot(n, 3) @@ -15759,7 +15759,7 @@ function _m(n) { function ro(n, t) { return t.push(n), n; } -function D_(n, t) { +function z_(n, t) { return n.map(t).join(""); } function Lp(n, t) { @@ -15800,10 +15800,10 @@ function Q0(n) { for (; n.root; ) n = qn(n.root, { children: [n] }); ro(n, n.siblings); } -function z_() { +function H_() { return Qe; } -function H_() { +function V_() { return ( (Qe = Gt > 0 ? ot(dr, --Gt) : 0), ar--, Qe === 10 && ((ar = 1), Ti--), Qe ); @@ -15854,20 +15854,20 @@ function yc(n) { } return 0; } -function V_(n) { +function U_(n) { return (Ti = ar = 1), (xm = ln((dr = n))), (Gt = 0), []; } -function U_(n) { +function G_(n) { return (dr = ""), n; } function ql(n) { return ym(Ii(Gt - 1, _c(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); } -function G_(n) { +function q_(n) { for (; (Qe = g0()) && Qe < 33; ) en(); return yc(n) > 2 || yc(Qe) > 3 ? "" : " "; } -function q_(n, t) { +function W_(n, t) { for ( ; --t && @@ -15895,16 +15895,16 @@ function _c(n) { } return Gt; } -function W_(n, t) { +function K_(n, t) { for (; en() && n + Qe !== 57; ) if (n + Qe === 84 && g0() === 47) break; return "/*" + Ii(t, Gt - 1) + "*" + qc(n === 47 ? n : en()); } -function K_(n) { +function X_(n) { for (; !yc(g0()); ) en(); return Ii(n, Gt); } -function X_(n) { - return U_(Wa("", null, null, null, [""], (n = V_(n)), 0, [0], n)); +function Q_(n) { + return G_(Wa("", null, null, null, [""], (n = U_(n)), 0, [0], n)); } function Wa(n, t, o, a, i, c, d, h, f) { for ( @@ -15942,16 +15942,16 @@ function Wa(n, t, o, a, i, c, d, h, f) { case 10: case 13: case 32: - N += G_(S); + N += q_(S); break; case 92: - N += q_(qa() - 1, 7); + N += W_(qa() - 1, 7); continue; case 47: switch (g0()) { case 42: case 47: - ro(Q_(W_(en(), qa()), t, o, f), f); + ro(Y_(K_(en(), qa()), t, o, f), f); break; default: N += "/"; @@ -16017,7 +16017,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { default: if (O < 1) { if (T == 123) --O; - else if (T == 125 && O++ == 0 && H_() == 125) continue; + else if (T == 125 && O++ == 0 && V_() == 125) continue; } switch (((N += qc(T)), T * O)) { case 38: @@ -16029,7 +16029,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { case 64: g0() === 45 && (N += ql(en())), (y = g0()), - (b = v = ln((R = N += K_(qa())))), + (b = v = ln((R = N += X_(qa())))), T++; break; case 45: @@ -16048,14 +16048,14 @@ function $p(n, t, o, a, i, c, d, h, f, m, b, v) { (L = ym(C > 0 ? x[T] + " " + R : _e(R, /&\f/g, x[T]))) && (f[P++] = L); return ji(n, t, o, i === 0 ? Ei : h, f, m, b, v); } -function Q_(n, t, o, a) { - return ji(n, t, o, gm, qc(z_()), or(n, 2, -2), 0, a); +function Y_(n, t, o, a) { + return ji(n, t, o, gm, qc(H_()), or(n, 2, -2), 0, a); } function Ap(n, t, o, a, i) { return ji(n, t, o, Gc, or(n, 0, a), or(n, a + 1, -1), a, i); } function Sm(n, t, o) { - switch (A_(n, t)) { + switch (D_(n, t)) { case 5103: return Ie + "print-" + n + n; case 5737: @@ -16295,11 +16295,11 @@ function hi(n, t) { for (var o = "", a = 0; a < n.length; a++) o += t(n[a], a, n, t) || ""; return o; } -function Y_(n, t, o, a) { +function Z_(n, t, o, a) { switch (n.type) { - case $_: + case A_: if (n.children.length) break; - case L_: + case $_: case Gc: return (n.return = n.return || n.value); case gm: @@ -16313,19 +16313,19 @@ function Y_(n, t, o, a) { ? (n.return = n.value + "{" + o + "}") : ""; } -function Z_(n) { +function J_(n) { var t = _m(n); return function (o, a, i, c) { for (var d = "", h = 0; h < t; h++) d += n[h](o, a, i, c) || ""; return d; }; } -function J_(n) { +function e2(n) { return function (t) { t.root || ((t = t.return) && n(t)); }; } -function e2(n, t, o, a) { +function t2(n, t, o, a) { if (n.length > -1 && !n.return) switch (n.type) { case Gc: @@ -16335,7 +16335,7 @@ function e2(n, t, o, a) { return hi([qn(n, { value: _e(n.value, "@", "@" + Ie) })], a); case Ei: if (n.length) - return D_((o = n.props), function (i) { + return z_((o = n.props), function (i) { switch (_n(i, (a = /(::plac\w+|:read-\w+)/))) { case ":read-only": case ":read-write": @@ -16359,7 +16359,7 @@ function e2(n, t, o, a) { }); } } -var t2 = { +var n2 = { animationIterationCount: 1, aspectRatio: 1, borderImageOutset: 1, @@ -16419,7 +16419,7 @@ var t2 = { Wc = `/*!sc*/ `, mi = typeof window < "u" && typeof document < "u", - n2 = !!(typeof SC_DISABLE_SPEEDY == "boolean" + r2 = !!(typeof SC_DISABLE_SPEEDY == "boolean" ? SC_DISABLE_SPEEDY : typeof process < "u" && Mt !== void 0 && @@ -16435,7 +16435,7 @@ var t2 = { Mt.SC_DISABLE_SPEEDY), Ri = Object.freeze([]), sr = Object.freeze({}); -function r2(n, t, o) { +function o2(n, t, o) { return ( o === void 0 && (o = sr), (n.theme !== o.theme && n.theme) || t || o.theme ); @@ -16575,12 +16575,12 @@ var Cm = new Set([ "text", "tspan", ]), - o2 = /[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g, - a2 = /(^-|-$)/g; + a2 = /[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g, + i2 = /(^-|-$)/g; function Dp(n) { - return n.replace(o2, "-").replace(a2, ""); + return n.replace(a2, "-").replace(i2, ""); } -var i2 = /(a)(d)/gi, +var s2 = /(a)(d)/gi, Na = 52, zp = function (n) { return String.fromCharCode(n + (n > 25 ? 39 : 97)); @@ -16589,7 +16589,7 @@ function xc(n) { var t, o = ""; for (t = Math.abs(n); t > Na; t = (t / Na) | 0) o = zp(t % Na) + o; - return (zp(t % Na) + o).replace(i2, "$1-$2"); + return (zp(t % Na) + o).replace(s2, "$1-$2"); } var Wl, Pm = 5381, @@ -16600,10 +16600,10 @@ var Wl, Om = function (n) { return J0(Pm, n); }; -function s2(n) { +function l2(n) { return xc(Om(n) >>> 0); } -function l2(n) { +function c2(n) { return n.displayName || n.name || "Component"; } function Kl(n) { @@ -16611,8 +16611,8 @@ function Kl(n) { } var Em = typeof Symbol == "function" && Symbol.for, Tm = Em ? Symbol.for("react.memo") : 60115, - c2 = Em ? Symbol.for("react.forward_ref") : 60112, - u2 = { + u2 = Em ? Symbol.for("react.forward_ref") : 60112, + d2 = { childContextTypes: !0, contextType: !0, contextTypes: !0, @@ -16625,7 +16625,7 @@ var Em = typeof Symbol == "function" && Symbol.for, propTypes: !0, type: !0, }, - d2 = { + f2 = { name: !0, length: !0, prototype: !0, @@ -16642,8 +16642,8 @@ var Em = typeof Symbol == "function" && Symbol.for, propTypes: !0, type: !0, }, - f2 = - (((Wl = {})[c2] = { + p2 = + (((Wl = {})[u2] = { $$typeof: !0, render: !0, defaultProps: !0, @@ -16656,30 +16656,30 @@ function Hp(n) { return ("type" in (t = n) && t.type.$$typeof) === Tm ? jm : "$$typeof" in n - ? f2[n.$$typeof] - : u2; + ? p2[n.$$typeof] + : d2; var t; } -var p2 = Object.defineProperty, - h2 = Object.getOwnPropertyNames, +var h2 = Object.defineProperty, + m2 = Object.getOwnPropertyNames, Vp = Object.getOwnPropertySymbols, - m2 = Object.getOwnPropertyDescriptor, - g2 = Object.getPrototypeOf, + g2 = Object.getOwnPropertyDescriptor, + b2 = Object.getPrototypeOf, Up = Object.prototype; function Im(n, t, o) { if (typeof t != "string") { if (Up) { - var a = g2(t); + var a = b2(t); a && a !== Up && Im(n, a, o); } - var i = h2(t); + var i = m2(t); Vp && (i = i.concat(Vp(t))); for (var c = Hp(n), d = Hp(t), h = 0; h < i.length; ++h) { var f = i[h]; - if (!(f in d2 || (o && o[f]) || (d && f in d) || (c && f in c))) { - var m = m2(t, f); + if (!(f in f2 || (o && o[f]) || (d && f in d) || (c && f in c))) { + var m = g2(t, f); try { - p2(n, f, m); + h2(n, f, m); } catch {} } } @@ -16726,7 +16726,7 @@ function y0(n) { .concat(t.length > 0 ? " Args: ".concat(t.join(", ")) : ""), ); } -var b2 = (function () { +var v2 = (function () { function n(t) { (this.groupSizes = new Uint32Array(512)), (this.length = 512), @@ -16788,18 +16788,18 @@ var b2 = (function () { var t = Xa++; return Ka.set(n, t), gi.set(t, n), t; }, - v2 = function (n, t) { + y2 = function (n, t) { (Xa = t + 1), Ka.set(n, t), gi.set(t, n); }, - y2 = "style[".concat(ir, "][").concat(km, '="').concat(Fi, '"]'), - _2 = new RegExp( + _2 = "style[".concat(ir, "][").concat(km, '="').concat(Fi, '"]'), + x2 = new RegExp( "^".concat(ir, '\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'), ), - x2 = function (n, t, o) { + S2 = function (n, t, o) { for (var a, i = o.split(","), c = 0, d = i.length; c < d; c++) (a = i[c]) && n.registerName(t, a); }, - S2 = function (n, t) { + w2 = function (n, t) { for ( var o, a = ((o = t.textContent) !== null && o !== void 0 ? o : "").split(Wc), @@ -16811,11 +16811,11 @@ var b2 = (function () { ) { var h = a[c].trim(); if (h) { - var f = h.match(_2); + var f = h.match(x2); if (f) { var m = 0 | parseInt(f[1], 10), b = f[2]; - m !== 0 && (v2(b, m), x2(n, b, f[3]), n.getTag().insertRules(m, i)), + m !== 0 && (y2(b, m), S2(n, b, f[3]), n.getTag().insertRules(m, i)), (i.length = 0); } else i.push(h); } @@ -16823,17 +16823,17 @@ var b2 = (function () { }, qp = function (n) { for ( - var t = document.querySelectorAll(y2), o = 0, a = t.length; + var t = document.querySelectorAll(_2), o = 0, a = t.length; o < a; o++ ) { var i = t[o]; i && i.getAttribute(ir) !== wm && - (S2(n, i), i.parentNode && i.parentNode.removeChild(i)); + (w2(n, i), i.parentNode && i.parentNode.removeChild(i)); } }; -function w2() { +function k2() { return typeof __webpack_nonce__ < "u" ? __webpack_nonce__ : null; } var Fm = function (n) { @@ -16846,10 +16846,10 @@ var Fm = function (n) { })(o), c = i !== void 0 ? i.nextSibling : null; a.setAttribute(ir, wm), a.setAttribute(km, Fi); - var d = w2(); + var d = k2(); return d && a.setAttribute("nonce", d), o.insertBefore(a, c), a; }, - k2 = (function () { + C2 = (function () { function n(t) { (this.element = Fm(t)), this.element.appendChild(document.createTextNode("")), @@ -16881,7 +16881,7 @@ var Fm = function (n) { n ); })(), - C2 = (function () { + P2 = (function () { function n(t) { (this.element = Fm(t)), (this.nodes = this.element.childNodes), @@ -16908,7 +16908,7 @@ var Fm = function (n) { n ); })(), - P2 = (function () { + O2 = (function () { function n(t) { (this.rules = []), (this.length = 0); } @@ -16928,12 +16928,12 @@ var Fm = function (n) { ); })(), Wp = mi, - O2 = { isServer: !mi, useCSSOMInjection: !n2 }, + E2 = { isServer: !mi, useCSSOMInjection: !r2 }, Rm = (function () { function n(t, o, a) { t === void 0 && (t = sr), o === void 0 && (o = {}); var i = this; - (this.options = gt(gt({}, O2), t)), + (this.options = gt(gt({}, E2), t)), (this.gs = o), (this.names = new Map(a)), (this.server = !!t.isServer), @@ -17004,9 +17004,9 @@ var Fm = function (n) { ((t = (function (o) { var a = o.useCSSOMInjection, i = o.target; - return o.isServer ? new P2(i) : a ? new k2(i) : new C2(i); + return o.isServer ? new O2(i) : a ? new C2(i) : new P2(i); })(this.options)), - new b2(t))) + new v2(t))) ); var t; }), @@ -17035,8 +17035,8 @@ var Fm = function (n) { n ); })(), - E2 = /&/g, - T2 = /^\s*\/\/.*$/gm; + T2 = /&/g, + j2 = /^\s*\/\/.*$/gm; function Mm(n, t) { return n.map(function (o) { return ( @@ -17053,7 +17053,7 @@ function Mm(n, t) { ); }); } -function j2(n) { +function I2(n) { var t, o, a, @@ -17071,10 +17071,10 @@ function j2(n) { b.push(function (y) { y.type === Ei && y.value.includes("&") && - (y.props[0] = y.props[0].replace(E2, o).replace(a, m)); + (y.props[0] = y.props[0].replace(T2, o).replace(a, m)); }), - d.prefix && b.push(e2), - b.push(Y_); + d.prefix && b.push(t2), + b.push(Z_); var v = function (y, x, S, O) { x === void 0 && (x = ""), S === void 0 && (S = ""), @@ -17082,16 +17082,16 @@ function j2(n) { (t = O), (o = x), (a = new RegExp("\\".concat(o, "\\b"), "g")); - var C = y.replace(T2, ""), - P = X_(S || x ? "".concat(S, " ").concat(x, " { ").concat(C, " }") : C); + var C = y.replace(j2, ""), + P = Q_(S || x ? "".concat(S, " ").concat(x, " { ").concat(C, " }") : C); d.namespace && (P = Mm(P, d.namespace)); var T = []; return ( hi( P, - Z_( + J_( b.concat( - J_(function (R) { + e2(function (R) { return T.push(R); }), ), @@ -17111,11 +17111,11 @@ function j2(n) { v ); } -var I2 = new Rm(), - wc = j2(), +var F2 = new Rm(), + wc = I2(), Nm = Ue.createContext({ shouldForwardProp: void 0, - styleSheet: I2, + styleSheet: F2, stylis: wc, }); Nm.Consumer; @@ -17123,7 +17123,7 @@ Ue.createContext(void 0); function Kp() { return V.useContext(Nm); } -var F2 = (function () { +var R2 = (function () { function n(t, o) { var a = this; (this.inject = function (i, c) { @@ -17146,14 +17146,14 @@ var F2 = (function () { n ); })(), - R2 = function (n) { + M2 = function (n) { return n >= "A" && n <= "Z"; }; function Xp(n) { for (var t = "", o = 0; o < n.length; o++) { var a = n[o]; if (o === 1 && a === "-" && n[0] === "-") return n; - R2(a) ? (t += "-" + a.toLowerCase()) : (t += a); + M2(a) ? (t += "-" + a.toLowerCase()) : (t += a); } return t.startsWith("ms-") ? "-" + t : t; } @@ -17184,7 +17184,7 @@ var Bm = function (n) { ? "" : typeof o != "number" || o === 0 || - t in t2 || + t in n2 || t.startsWith("--") ? String(o).trim() : "".concat(o, "px")), @@ -17204,7 +17204,7 @@ function b0(n, t, o, a) { return b0(i, t, o, a); } var c; - return n instanceof F2 + return n instanceof R2 ? o ? (n.inject(o, a), [n.getName(a)]) : [n] @@ -17219,21 +17219,21 @@ function b0(n, t, o, a) { ) : [n.toString()]; } -function M2(n) { +function N2(n) { for (var t = 0; t < n.length; t += 1) { var o = n[t]; if (v0(o) && !Kc(o)) return !1; } return !0; } -var N2 = Om(Fi), - B2 = (function () { +var B2 = Om(Fi), + L2 = (function () { function n(t, o, a) { (this.rules = t), (this.staticRulesId = ""), - (this.isStatic = (a === void 0 || a.isStatic) && M2(t)), + (this.isStatic = (a === void 0 || a.isStatic) && N2(t)), (this.componentId = o), - (this.baseHash = J0(N2, o)), + (this.baseHash = J0(B2, o)), (this.baseStyle = a), Rm.registerId(o); } @@ -17288,7 +17288,7 @@ var N2 = Om(Fi), })(), bi = Ue.createContext(void 0); bi.Consumer; -function L2(n) { +function $2(n) { var t = Ue.useContext(bi), o = V.useMemo( function () { @@ -17309,7 +17309,7 @@ function L2(n) { : null; } var Xl = {}; -function $2(n, t, o) { +function A2(n, t, o) { var a = Kc(n), i = n, c = !Kl(n), @@ -17321,7 +17321,7 @@ function $2(n, t, o) { ? (function (L, j) { var $ = typeof L != "string" ? "sc" : Dp(L); Xl[$] = (Xl[$] || 0) + 1; - var N = "".concat($, "-").concat(s2(Fi + $ + Xl[$])); + var N = "".concat($, "-").concat(l2(Fi + $ + Xl[$])); return j ? "".concat(j, "-").concat(N) : N; })(t.displayName, t.parentComponentId) : f, @@ -17329,7 +17329,7 @@ function $2(n, t, o) { v = b === void 0 ? (function (L) { - return Kl(L) ? "styled.".concat(L) : "Styled(".concat(l2(L), ")"); + return Kl(L) ? "styled.".concat(L) : "Styled(".concat(c2(L), ")"); })(n) : b, y = @@ -17347,7 +17347,7 @@ function $2(n, t, o) { }; } else S = O; } - var P = new B2(o, y, a ? i.componentStyle : void 0); + var P = new L2(o, y, a ? i.componentStyle : void 0); function T(L, j) { return (function ($, N, K) { var pe = $.attrs, @@ -17359,7 +17359,7 @@ function $2(n, t, o) { me = Ue.useContext(bi), he = Kp(), we = $.shouldForwardProp || he.shouldForwardProp, - q = r2(N, me, ee) || sr, + q = o2(N, me, ee) || sr, Q = (function (ye, ue, ge) { for ( var fe, @@ -17457,7 +17457,7 @@ function Qp(n, t) { var Yp = function (n) { return Object.assign(n, { isCss: !0 }); }; -function A2(n) { +function D2(n) { for (var t = [], o = 1; o < arguments.length; o++) t[o - 1] = arguments[o]; if (v0(n) || fo(n)) return Yp(b0(Qp(Ri, pi([n], t, !0)))); var a = n; @@ -17469,7 +17469,7 @@ function kc(n, t, o) { if ((o === void 0 && (o = sr), !t)) throw y0(1, t); var a = function (i) { for (var c = [], d = 1; d < arguments.length; d++) c[d - 1] = arguments[d]; - return n(t, o, A2.apply(void 0, pi([i], c, !1))); + return n(t, o, D2.apply(void 0, pi([i], c, !1))); }; return ( (a.attrs = function (i) { @@ -17488,7 +17488,7 @@ function kc(n, t, o) { ); } var $m = function (n) { - return kc($2, n); + return kc(A2, n); }, S0 = $m; Cm.forEach(function (n) { @@ -17513,7 +17513,7 @@ function _0(n) { _0(n) ); } -function D2(n, t) { +function z2(n, t) { if (_0(n) != "object" || !n) return n; var o = n[Symbol.toPrimitive]; if (o !== void 0) { @@ -17524,7 +17524,7 @@ function D2(n, t) { return (t === "string" ? String : Number)(n); } function Am(n) { - var t = D2(n, "string"); + var t = z2(n, "string"); return _0(t) == "symbol" ? t : t + ""; } function oo(n, t, o) { @@ -17567,10 +17567,10 @@ function ie(n) { } return n; } -function z2(n) { +function H2(n) { if (Array.isArray(n)) return n; } -function H2(n, t) { +function V2(n, t) { var o = n == null ? null @@ -17626,14 +17626,14 @@ function Dm(n, t) { ); } } -function V2() { +function U2() { throw new TypeError(`Invalid attempt to destructure non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } function wn(n, t) { - return z2(n) || H2(n, t) || Dm(n, t) || V2(); + return H2(n) || V2(n, t) || Dm(n, t) || U2(); } -function U2(n, t) { +function G2(n, t) { if (n == null) return {}; var o = {}; for (var a in n) @@ -17647,7 +17647,7 @@ function Cn(n, t) { if (n == null) return {}; var o, a, - i = U2(n, t); + i = G2(n, t); if (Object.getOwnPropertySymbols) { var c = Object.getOwnPropertySymbols(n); for (a = 0; a < c.length; a++) @@ -17658,7 +17658,7 @@ function Cn(n, t) { } return i; } -var G2 = [ +var q2 = [ "defaultInputValue", "defaultMenuIsOpen", "defaultValue", @@ -17670,7 +17670,7 @@ var G2 = [ "onMenuOpen", "value", ]; -function q2(n) { +function W2(n) { var t = n.defaultInputValue, o = t === void 0 ? "" : t, a = n.defaultMenuIsOpen, @@ -17684,7 +17684,7 @@ function q2(n) { v = n.onMenuClose, y = n.onMenuOpen, x = n.value, - S = Cn(n, G2), + S = Cn(n, q2), O = V.useState(h !== void 0 ? h : o), C = wn(O, 2), P = C[0], @@ -17753,7 +17753,7 @@ function ce() { ce.apply(null, arguments) ); } -function W2(n, t) { +function K2(n, t) { if (!(n instanceof t)) throw new TypeError("Cannot call a class as a function"); } @@ -17766,7 +17766,7 @@ function Jp(n, t) { Object.defineProperty(n, Am(a.key), a); } } -function K2(n, t, o) { +function X2(n, t, o) { return ( t && Jp(n.prototype, t), o && Jp(n, o), @@ -17784,7 +17784,7 @@ function Pc(n, t) { Pc(n, t) ); } -function X2(n, t) { +function Q2(n, t) { if (typeof t != "function" && t !== null) throw new TypeError("Super expression must either be null or a function"); (n.prototype = Object.create(t && t.prototype, { @@ -17813,22 +17813,22 @@ function zm() { return !!n; })(); } -function Q2(n) { +function Y2(n) { if (n === void 0) throw new ReferenceError( "this hasn't been initialised - super() hasn't been called", ); return n; } -function Y2(n, t) { +function Z2(n, t) { if (t && (_0(t) == "object" || typeof t == "function")) return t; if (t !== void 0) throw new TypeError( "Derived constructors may only return object or undefined", ); - return Q2(n); + return Y2(n); } -function Z2(n) { +function J2(n) { var t = zm(); return function () { var o, @@ -17837,32 +17837,32 @@ function Z2(n) { var i = vi(this).constructor; o = Reflect.construct(a, arguments, i); } else o = a.apply(this, arguments); - return Y2(this, o); + return Z2(this, o); }; } -function J2(n) { +function e5(n) { if (Array.isArray(n)) return Cc(n); } -function e5(n) { +function t5(n) { if ( (typeof Symbol < "u" && n[Symbol.iterator] != null) || n["@@iterator"] != null ) return Array.from(n); } -function t5() { +function n5() { throw new TypeError(`Invalid attempt to spread non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } function Qc(n) { - return J2(n) || e5(n) || Dm(n) || t5(); + return e5(n) || t5(n) || Dm(n) || n5(); } -function n5(n) { +function r5(n) { if (n.sheet) return n.sheet; for (var t = 0; t < document.styleSheets.length; t++) if (document.styleSheets[t].ownerNode === n) return document.styleSheets[t]; } -function r5(n) { +function o5(n) { var t = document.createElement("style"); return ( t.setAttribute("data-emotion", n.key), @@ -17872,7 +17872,7 @@ function r5(n) { t ); } -var o5 = (function () { +var a5 = (function () { function n(o) { var a = this; (this._insertTag = function (i) { @@ -17904,10 +17904,10 @@ var o5 = (function () { }), (t.insert = function (a) { this.ctr % (this.isSpeedy ? 65e3 : 1) === 0 && - this._insertTag(r5(this)); + this._insertTag(o5(this)); var i = this.tags[this.tags.length - 1]; if (this.isSpeedy) { - var c = n5(i); + var c = r5(i); try { c.insertRule(a, c.cssRules.length); } catch {} @@ -17931,13 +17931,13 @@ var o5 = (function () { Hm = "comm", Yc = "rule", Zc = "decl", - a5 = "@import", + i5 = "@import", Vm = "@keyframes", - i5 = "@layer", - s5 = Math.abs, + s5 = "@layer", + l5 = Math.abs, Mi = String.fromCharCode, - l5 = Object.assign; -function c5(n, t) { + c5 = Object.assign; +function u5(n, t) { return lt(n, 0) ^ 45 ? (((((((t << 2) ^ lt(n, 0)) << 2) ^ lt(n, 1)) << 2) ^ lt(n, 2)) << 2) ^ lt(n, 3) @@ -17946,7 +17946,7 @@ function c5(n, t) { function Um(n) { return n.trim(); } -function u5(n, t) { +function d5(n, t) { return (n = t.exec(n)) ? n[0] : n; } function Ee(n, t, o) { @@ -17970,7 +17970,7 @@ function Jc(n) { function La(n, t) { return t.push(n), n; } -function d5(n, t) { +function f5(n, t) { return n.map(t).join(""); } var Ni = 1, @@ -17994,12 +17994,12 @@ function Bi(n, t, o, a, i, c, d) { }; } function eo(n, t) { - return l5(Bi("", null, null, "", null, null, 0), n, { length: -n.length }, t); + return c5(Bi("", null, null, "", null, null, 0), n, { length: -n.length }, t); } -function f5() { +function p5() { return Ye; } -function p5() { +function h5() { return ( (Ye = Ot > 0 ? lt(fr, --Ot) : 0), lr--, Ye === 10 && ((lr = 1), Ni--), Ye ); @@ -18059,11 +18059,11 @@ function Wm(n) { function Ya(n) { return Um(_o(Ot - 1, Ec(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); } -function h5(n) { +function m5(n) { for (; (Ye = dn()) && Ye < 33; ) Nt(); return ho(n) > 2 || ho(Ye) > 3 ? "" : " "; } -function m5(n, t) { +function g5(n, t) { for ( ; --t && @@ -18091,15 +18091,15 @@ function Ec(n) { } return Ot; } -function g5(n, t) { +function b5(n, t) { for (; Nt() && n + Ye !== 57; ) if (n + Ye === 84 && dn() === 47) break; return "/*" + _o(t, Ot - 1) + "*" + Mi(n === 47 ? n : Nt()); } -function b5(n) { +function v5(n) { for (; !ho(dn()); ) Nt(); return _o(n, Ot); } -function v5(n) { +function y5(n) { return Wm(Za("", null, null, null, [""], (n = qm(n)), 0, [0], n)); } function Za(n, t, o, a, i, c, d, h, f) { @@ -18137,16 +18137,16 @@ function Za(n, t, o, a, i, c, d, h, f) { case 10: case 13: case 32: - N += h5(S); + N += m5(S); break; case 92: - N += m5(Qa() - 1, 7); + N += g5(Qa() - 1, 7); continue; case 47: switch (dn()) { case 42: case 47: - La(y5(g5(Nt(), Qa()), t, o), f); + La(_5(b5(Nt(), Qa()), t, o), f); break; default: N += "/"; @@ -18209,7 +18209,7 @@ function Za(n, t, o, a, i, c, d, h, f) { default: if (O < 1) { if (T == 123) --O; - else if (T == 125 && O++ == 0 && p5() == 125) continue; + else if (T == 125 && O++ == 0 && h5() == 125) continue; } switch (((N += Mi(T)), T * O)) { case 38: @@ -18221,7 +18221,7 @@ function Za(n, t, o, a, i, c, d, h, f) { case 64: dn() === 45 && (N += Ya(Nt())), (y = dn()), - (b = v = cn((R = N += b5(Qa())))), + (b = v = cn((R = N += v5(Qa())))), T++; break; case 45: @@ -18236,12 +18236,12 @@ function eh(n, t, o, a, i, c, d, h, f, m, b) { S < a; ++S ) - for (var P = 0, T = po(n, v + 1, (v = s5((O = d[S])))), R = n; P < x; ++P) + for (var P = 0, T = po(n, v + 1, (v = l5((O = d[S])))), R = n; P < x; ++P) (R = Um(O > 0 ? y[P] + " " + T : Ee(T, /&\f/g, y[P]))) && (f[C++] = R); return Bi(n, t, o, i === 0 ? Yc : h, f, m, b); } -function y5(n, t, o) { - return Bi(n, t, o, Hm, Mi(f5()), po(n, 2, -2), 0); +function _5(n, t, o) { + return Bi(n, t, o, Hm, Mi(p5()), po(n, 2, -2), 0); } function th(n, t, o, a) { return Bi(n, t, o, Zc, po(n, 0, a), po(n, a + 1, -1), a); @@ -18250,11 +18250,11 @@ function nr(n, t) { for (var o = "", a = Jc(n), i = 0; i < a; i++) o += t(n[i], i, n, t) || ""; return o; } -function _5(n, t, o, a) { +function x5(n, t, o, a) { switch (n.type) { - case i5: + case s5: if (n.children.length) break; - case a5: + case i5: case Zc: return (n.return = n.return || n.value); case Hm: @@ -18268,25 +18268,25 @@ function _5(n, t, o, a) { ? (n.return = n.value + "{" + o + "}") : ""; } -function x5(n) { +function S5(n) { var t = Jc(n); return function (o, a, i, c) { for (var d = "", h = 0; h < t; h++) d += n[h](o, a, i, c) || ""; return d; }; } -function S5(n) { +function w5(n) { return function (t) { t.root || ((t = t.return) && n(t)); }; } -function w5(n) { +function k5(n) { var t = Object.create(null); return function (o) { return t[o] === void 0 && (t[o] = n(o)), t[o]; }; } -var k5 = function (t, o, a) { +var C5 = function (t, o, a) { for ( var i = 0, c = 0; (i = c), (c = dn()), i === 38 && c === 12 && (o[a] = 1), !ho(c); @@ -18295,13 +18295,13 @@ var k5 = function (t, o, a) { Nt(); return _o(t, Ot); }, - C5 = function (t, o) { + P5 = function (t, o) { var a = -1, i = 44; do switch (ho(i)) { case 0: - i === 38 && dn() === 12 && (o[a] = 1), (t[a] += k5(Ot - 1, o, a)); + i === 38 && dn() === 12 && (o[a] = 1), (t[a] += C5(Ot - 1, o, a)); break; case 2: t[a] += Ya(i); @@ -18317,11 +18317,11 @@ var k5 = function (t, o, a) { while ((i = Nt())); return t; }, - P5 = function (t, o) { - return Wm(C5(qm(t), o)); + O5 = function (t, o) { + return Wm(P5(qm(t), o)); }, nh = new WeakMap(), - O5 = function (t) { + E5 = function (t) { if (!(t.type !== "rule" || !t.parent || t.length < 1)) { for ( var o = t.value, @@ -18337,7 +18337,7 @@ var k5 = function (t, o, a) { ) { nh.set(t, !0); for ( - var c = [], d = P5(o, c), h = a.props, f = 0, m = 0; + var c = [], d = O5(o, c), h = a.props, f = 0, m = 0; f < d.length; f++ ) @@ -18346,7 +18346,7 @@ var k5 = function (t, o, a) { } } }, - E5 = function (t) { + T5 = function (t) { if (t.type === "decl") { var o = t.value; o.charCodeAt(0) === 108 && @@ -18355,7 +18355,7 @@ var k5 = function (t, o, a) { } }; function Km(n, t) { - switch (c5(n, t)) { + switch (u5(n, t)) { case 5103: return Oe + "print-" + n + n; case 5737: @@ -18524,7 +18524,7 @@ function Km(n, t) { } return n; } -var T5 = function (t, o, a, i) { +var j5 = function (t, o, a, i) { if (t.length > -1 && !t.return) switch (t.type) { case Zc: @@ -18534,8 +18534,8 @@ var T5 = function (t, o, a, i) { return nr([eo(t, { value: Ee(t.value, "@", "@" + Oe) })], i); case Yc: if (t.length) - return d5(t.props, function (c) { - switch (u5(c, /(::plac\w+|:read-\w+)/)) { + return f5(t.props, function (c) { + switch (d5(c, /(::plac\w+|:read-\w+)/)) { case ":read-only": case ":read-write": return nr( @@ -18558,8 +18558,8 @@ var T5 = function (t, o, a, i) { }); } }, - j5 = [T5], - I5 = function (t) { + I5 = [j5], + F5 = function (t) { var o = t.key; if (o === "css") { var a = document.querySelectorAll("style[data-emotion]:not([data-s])"); @@ -18569,7 +18569,7 @@ var T5 = function (t, o, a, i) { (document.head.appendChild(O), O.setAttribute("data-s", "")); }); } - var i = t.stylisPlugins || j5, + var i = t.stylisPlugins || I5, c = {}, d, h = []; @@ -18587,18 +18587,18 @@ var T5 = function (t, o, a, i) { }, ); var f, - m = [O5, E5]; + m = [E5, T5]; { var b, v = [ - _5, - S5(function (O) { + x5, + w5(function (O) { b.insert(O); }), ], - y = x5(m.concat(i, v)), + y = S5(m.concat(i, v)), x = function (C) { - return nr(v5(C), y); + return nr(y5(C), y); }; f = function (C, P, T, R) { (b = T), @@ -18608,7 +18608,7 @@ var T5 = function (t, o, a, i) { } var S = { key: o, - sheet: new o5({ + sheet: new a5({ key: o, container: d, nonce: t.nonce, @@ -18633,7 +18633,7 @@ var T5 = function (t, o, a, i) { * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var rh; -function F5() { +function R5() { if (rh) return je; rh = 1; var n = typeof Symbol == "function" && Symbol.for, @@ -18767,14 +18767,14 @@ function F5() { ); } var oh; -function R5() { - return oh || ((oh = 1), (Ql.exports = F5())), Ql.exports; +function M5() { + return oh || ((oh = 1), (Ql.exports = R5())), Ql.exports; } var Yl, ah; -function M5() { +function N5() { if (ah) return Yl; ah = 1; - var n = R5(), + var n = M5(), t = { childContextTypes: !0, contextType: !0, @@ -18845,9 +18845,9 @@ function M5() { } return (Yl = x), Yl; } -M5(); -var N5 = !0; -function B5(n, t, o) { +N5(); +var B5 = !0; +function L5(n, t, o) { var a = ""; return ( o.split(" ").forEach(function (i) { @@ -18858,11 +18858,11 @@ function B5(n, t, o) { } var Xm = function (t, o, a) { var i = t.key + "-" + o.name; - (a === !1 || N5 === !1) && + (a === !1 || B5 === !1) && t.registered[i] === void 0 && (t.registered[i] = o.styles); }, - L5 = function (t, o, a) { + $5 = function (t, o, a) { Xm(t, o, a); var i = t.key + "-" + o.name; if (t.inserted[o.name] === void 0) { @@ -18871,7 +18871,7 @@ var Xm = function (t, o, a) { while (c !== void 0); } }; -function $5(n) { +function A5(n) { for (var t = 0, o, a = 0, i = n.length; i >= 4; ++a, i -= 4) (o = (n.charCodeAt(a) & 255) | @@ -18898,7 +18898,7 @@ function $5(n) { ((t ^ (t >>> 15)) >>> 0).toString(36) ); } -var A5 = { +var D5 = { animationIterationCount: 1, aspectRatio: 1, borderImageOutset: 1, @@ -18947,27 +18947,27 @@ var A5 = { strokeOpacity: 1, strokeWidth: 1, }, - D5 = /[A-Z]|^ms/g, - z5 = /_EMO_([^_]+?)_([^]*?)_EMO_/g, + z5 = /[A-Z]|^ms/g, + H5 = /_EMO_([^_]+?)_([^]*?)_EMO_/g, Qm = function (t) { return t.charCodeAt(1) === 45; }, ih = function (t) { return t != null && typeof t != "boolean"; }, - Zl = w5(function (n) { - return Qm(n) ? n : n.replace(D5, "-$&").toLowerCase(); + Zl = k5(function (n) { + return Qm(n) ? n : n.replace(z5, "-$&").toLowerCase(); }), sh = function (t, o) { switch (t) { case "animation": case "animationName": if (typeof o == "string") - return o.replace(z5, function (a, i, c) { + return o.replace(H5, function (a, i, c) { return (un = { name: i, styles: c, next: un }), i; }); } - return A5[t] !== 1 && !Qm(t) && typeof o == "number" && o !== 0 + return D5[t] !== 1 && !Qm(t) && typeof o == "number" && o !== 0 ? o + "px" : o; }; @@ -18991,7 +18991,7 @@ function mo(n, t, o) { var h = c.styles + ";"; return h; } - return H5(n, t, o); + return V5(n, t, o); } case "function": { if (n !== void 0) { @@ -19005,7 +19005,7 @@ function mo(n, t, o) { var b = o; return b; } -function H5(n, t, o) { +function V5(n, t, o) { var a = ""; if (Array.isArray(o)) for (var i = 0; i < o.length; i++) a += mo(n, t, o[i]) + ";"; @@ -19059,52 +19059,52 @@ function Ym(n, t, o) { } lh.lastIndex = 0; for (var m = "", b; (b = lh.exec(i)) !== null; ) m += "-" + b[1]; - var v = $5(i) + m; + var v = A5(i) + m; return { name: v, styles: i, next: un }; } -var V5 = function (t) { +var U5 = function (t) { return t(); }, - U5 = sp.useInsertionEffect ? sp.useInsertionEffect : !1, - G5 = U5 || V5, - Zm = V.createContext(typeof HTMLElement < "u" ? I5({ key: "css" }) : null); + G5 = sp.useInsertionEffect ? sp.useInsertionEffect : !1, + q5 = G5 || U5, + Zm = V.createContext(typeof HTMLElement < "u" ? F5({ key: "css" }) : null); Zm.Provider; -var q5 = function (t) { +var W5 = function (t) { return V.forwardRef(function (o, a) { var i = V.useContext(Zm); return t(o, i, a); }); }, - W5 = V.createContext({}), + K5 = V.createContext({}), eu = {}.hasOwnProperty, Tc = "__EMOTION_TYPE_PLEASE_DO_NOT_USE__", - K5 = function (t, o) { + X5 = function (t, o) { var a = {}; for (var i in o) eu.call(o, i) && (a[i] = o[i]); return (a[Tc] = t), a; }, - X5 = function (t) { + Q5 = function (t) { var o = t.cache, a = t.serialized, i = t.isStringTag; return ( Xm(o, a, i), - G5(function () { - return L5(o, a, i); + q5(function () { + return $5(o, a, i); }), null ); }, - Q5 = q5(function (n, t, o) { + Y5 = W5(function (n, t, o) { var a = n.css; typeof a == "string" && t.registered[a] !== void 0 && (a = t.registered[a]); var i = n[Tc], c = [a], d = ""; typeof n.className == "string" - ? (d = B5(t.registered, c, n.className)) + ? (d = L5(t.registered, c, n.className)) : n.className != null && (d = n.className + " "); - var h = Ym(c, void 0, V.useContext(W5)); + var h = Ym(c, void 0, V.useContext(K5)); d += t.key + "-" + h.name; var f = {}; for (var m in n) eu.call(n, m) && m !== "css" && m !== Tc && (f[m] = n[m]); @@ -19114,7 +19114,7 @@ var q5 = function (t) { V.createElement( V.Fragment, null, - V.createElement(X5, { + V.createElement(Q5, { cache: t, serialized: h, isStringTag: typeof i == "string", @@ -19123,14 +19123,14 @@ var q5 = function (t) { ) ); }), - Y5 = Q5, + Z5 = Y5, ne = function (t, o) { var a = arguments; if (o == null || !eu.call(o, "css")) return V.createElement.apply(void 0, a); var i = a.length, c = new Array(i); - (c[0] = Y5), (c[1] = K5(t, o)); + (c[0] = Z5), (c[1] = X5(t, o)); for (var d = 2; d < i; d++) c[d] = a[d]; return V.createElement.apply(null, c); }; @@ -19143,7 +19143,7 @@ function tu() { t[o] = arguments[o]; return Ym(t); } -function Z5() { +function J5() { var n = tu.apply(void 0, arguments), t = "animation-" + n.name; return { @@ -19155,7 +19155,7 @@ function Z5() { }, }; } -function J5(n, t) { +function ex(n, t) { return ( t || (t = n.slice(0)), Object.freeze( @@ -19163,13 +19163,13 @@ function J5(n, t) { ) ); } -var ex = Mh(); -const tx = Math.min, - nx = Math.max, +var tx = Mh(); +const nx = Math.min, + rx = Math.max, _i = Math.round, $a = Math.floor, xi = (n) => ({ x: n, y: n }); -function rx(n) { +function ox(n) { const { x: t, y: o, width: a, height: i } = n; return { width: a, @@ -19204,7 +19204,7 @@ function eg(n) { function tg(n) { return Li() ? n instanceof Node || n instanceof kn(n).Node : !1; } -function ox(n) { +function ax(n) { return Li() ? n instanceof Element || n instanceof kn(n).Element : !1; } function nu(n) { @@ -19222,25 +19222,25 @@ function ng(n) { !["inline", "contents"].includes(i) ); } -function ax() { +function ix() { return typeof CSS > "u" || !CSS.supports ? !1 : CSS.supports("-webkit-backdrop-filter", "none"); } -function ix(n) { +function sx(n) { return ["html", "body", "#document"].includes(Jm(n)); } function ru(n) { return kn(n).getComputedStyle(n); } -function sx(n) { +function lx(n) { if (Jm(n) === "html") return n; const t = n.assignedSlot || n.parentNode || (ch(n) && n.host) || eg(n); return ch(t) ? t.host : t; } function rg(n) { - const t = sx(n); - return ix(t) + const t = lx(n); + return sx(t) ? n.ownerDocument ? n.ownerDocument.body : n.body @@ -19268,7 +19268,7 @@ function Si(n, t, o) { function jc(n) { return n.parent && Object.getPrototypeOf(n.parent) ? n.frameElement : null; } -function lx(n) { +function cx(n) { const t = ru(n); let o = parseFloat(t.width) || 0, a = parseFloat(t.height) || 0; @@ -19279,13 +19279,13 @@ function lx(n) { return h && ((o = c), (a = d)), { width: o, height: a, $: h }; } function ou(n) { - return ox(n) ? n : n.contextElement; + return ax(n) ? n : n.contextElement; } function uh(n) { const t = ou(n); if (!nu(t)) return xi(1); const o = t.getBoundingClientRect(), - { width: a, height: i, $: c } = lx(t); + { width: a, height: i, $: c } = cx(t); let d = (c ? _i(o.width) : o.width) / a, h = (c ? _i(o.height) : o.height) / i; return ( @@ -19294,14 +19294,14 @@ function uh(n) { { x: d, y: h } ); } -const cx = xi(0); -function ux(n) { +const ux = xi(0); +function dx(n) { const t = kn(n); - return !ax() || !t.visualViewport - ? cx + return !ix() || !t.visualViewport + ? ux : { x: t.visualViewport.offsetLeft, y: t.visualViewport.offsetTop }; } -function dx(n, t, o) { +function fx(n, t, o) { return !1; } function dh(n, t, o, a) { @@ -19310,7 +19310,7 @@ function dh(n, t, o, a) { c = ou(n); let d = xi(1); t && (d = uh(n)); - const h = dx() ? ux(c) : xi(0); + const h = fx() ? dx(c) : xi(0); let f = (i.left + h.x) / d.x, m = (i.top + h.y) / d.y, b = i.width / d.x, @@ -19336,14 +19336,14 @@ function dh(n, t, o, a) { (O = jc(S)); } } - return rx({ width: b, height: v, x: f, y: m }); + return ox({ width: b, height: v, x: f, y: m }); } function og(n, t) { return ( n.x === t.x && n.y === t.y && n.width === t.width && n.height === t.height ); } -function fx(n, t) { +function px(n, t) { let o = null, a; const i = eg(n); @@ -19362,7 +19362,7 @@ function fx(n, t) { P = $a(b), R = { rootMargin: -S + "px " + -O + "px " + -C + "px " + -P + "px", - threshold: nx(0, tx(1, f)) || 1, + threshold: rx(0, nx(1, f)) || 1, }; let L = !0; function j($) { @@ -19386,7 +19386,7 @@ function fx(n, t) { } return d(!0), c; } -function px(n, t, o, a) { +function hx(n, t, o, a) { a === void 0 && (a = {}); const { ancestorScroll: i = !0, @@ -19401,7 +19401,7 @@ function px(n, t, o, a) { i && P.addEventListener("scroll", o, { passive: !0 }), c && P.addEventListener("resize", o); }); - const v = m && h ? fx(m, o) : null; + const v = m && h ? px(m, o) : null; let y = -1, x = null; d && @@ -19443,7 +19443,7 @@ function px(n, t, o, a) { ); } var Ic = V.useLayoutEffect, - hx = [ + mx = [ "className", "clearValue", "cx", @@ -19460,10 +19460,10 @@ var Ic = V.useLayoutEffect, "theme", ], wi = function () {}; -function mx(n, t) { +function gx(n, t) { return t ? (t[0] === "-" ? n + t : n + "__" + t) : n; } -function gx(n, t) { +function bx(n, t) { for ( var o = arguments.length, a = new Array(o > 2 ? o - 2 : 0), i = 2; i < o; @@ -19472,7 +19472,7 @@ function gx(n, t) { a[i - 2] = arguments[i]; var c = [].concat(a); if (t && n) - for (var d in t) t.hasOwnProperty(d) && t[d] && c.push("".concat(mx(n, d))); + for (var d in t) t.hasOwnProperty(d) && t[d] && c.push("".concat(gx(n, d))); return c .filter(function (h) { return h; @@ -19483,7 +19483,7 @@ function gx(n, t) { .join(" "); } var fh = function (t) { - return Cx(t) + return Px(t) ? t.filter(Boolean) : _0(t) === "object" && t !== null ? [t] @@ -19504,7 +19504,7 @@ var fh = function (t) { t.selectProps, t.setValue, t.theme; - var o = Cn(t, hx); + var o = Cn(t, mx); return ie({}, o); }, Ge = function (t, o, a) { @@ -19517,7 +19517,7 @@ var fh = function (t) { function $i(n) { return [document.documentElement, document.body, window].indexOf(n) > -1; } -function bx(n) { +function vx(n) { return $i(n) ? window.innerHeight : n.clientHeight; } function ig(n) { @@ -19530,7 +19530,7 @@ function ki(n, t) { } n.scrollTop = t; } -function vx(n) { +function yx(n) { var t = getComputedStyle(n), o = t.position === "absolute", a = /(auto|scroll)/; @@ -19544,7 +19544,7 @@ function vx(n) { return i; return document.documentElement; } -function yx(n, t, o, a) { +function _x(n, t, o, a) { return o * ((n = n / a - 1) * n * n + 1) + t; } function Aa(n, t) { @@ -19556,7 +19556,7 @@ function Aa(n, t) { h = 0; function f() { h += d; - var m = yx(h, i, c, o); + var m = _x(h, i, c, o); ki(n, m), h < o ? window.requestAnimationFrame(f) : a(n); } f(); @@ -19575,7 +19575,7 @@ function ph(n, t) { ) : a.top - i < o.top && ki(n, Math.max(t.offsetTop - i, 0)); } -function _x(n) { +function xx(n) { var t = n.getBoundingClientRect(); return { bottom: t.bottom, @@ -19593,7 +19593,7 @@ function hh() { return !1; } } -function xx() { +function Sx() { try { return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test( navigator.userAgent, @@ -19603,7 +19603,7 @@ function xx() { } } var sg = !1, - Sx = { + wx = { get passive() { return (sg = !0); }, @@ -19611,18 +19611,18 @@ var sg = !1, Da = typeof window < "u" ? window : {}; Da.addEventListener && Da.removeEventListener && - (Da.addEventListener("p", wi, Sx), Da.removeEventListener("p", wi, !1)); -var wx = sg; -function kx(n) { + (Da.addEventListener("p", wi, wx), Da.removeEventListener("p", wi, !1)); +var kx = sg; +function Cx(n) { return n != null; } -function Cx(n) { +function Px(n) { return Array.isArray(n); } function za(n, t, o) { return n ? t : o; } -var Px = function (t) { +var Ox = function (t) { for ( var o = arguments.length, a = new Array(o > 1 ? o - 1 : 0), i = 1; i < o; @@ -19641,9 +19641,9 @@ var Px = function (t) { return (d[m] = b), d; }, {}); }, - Ox = ["children", "innerProps"], - Ex = ["children", "innerProps"]; -function Tx(n) { + Ex = ["children", "innerProps"], + Tx = ["children", "innerProps"]; +function jx(n) { var t = n.maxHeight, o = n.menuEl, a = n.minHeight, @@ -19651,7 +19651,7 @@ function Tx(n) { c = n.shouldScroll, d = n.isFixedPosition, h = n.controlHeight, - f = vx(o), + f = yx(o), m = { placement: "bottom", maxHeight: t }; if (!o || !o.offsetParent) return m; var b = f.getBoundingClientRect(), @@ -19662,7 +19662,7 @@ function Tx(n) { O = y.top, C = o.offsetParent.getBoundingClientRect(), P = C.top, - T = d ? window.innerHeight : bx(f), + T = d ? window.innerHeight : vx(f), R = ig(f), L = parseInt(getComputedStyle(o).marginBottom, 10), j = parseInt(getComputedStyle(o).marginTop, 10), @@ -19713,14 +19713,14 @@ function Tx(n) { } return m; } -function jx(n) { +function Ix(n) { var t = { bottom: "top", top: "bottom" }; return n ? t[n] : "bottom"; } var lg = function (t) { return t === "auto" ? "bottom" : t; }, - Ix = function (t, o) { + Fx = function (t, o) { var a, i = t.placement, c = t.theme, @@ -19729,7 +19729,7 @@ var lg = function (t) { f = c.colors; return ie( ((a = { label: "menu" }), - oo(a, jx(i), "100%"), + oo(a, Ix(i), "100%"), oo(a, "position", "absolute"), oo(a, "width", "100%"), oo(a, "zIndex", 1), @@ -19747,7 +19747,7 @@ var lg = function (t) { ); }, cg = V.createContext(null), - Fx = function (t) { + Rx = function (t) { var o = t.children, a = t.minMenuHeight, i = t.maxMenuHeight, @@ -19774,7 +19774,7 @@ var lg = function (t) { if (j) { var $ = d === "fixed", N = h && !$, - K = Tx({ + K = jx({ maxHeight: i, menuEl: j, minHeight: a, @@ -19794,14 +19794,14 @@ var lg = function (t) { }) ); }, - Rx = function (t) { + Mx = function (t) { var o = t.children, a = t.innerRef, i = t.innerProps; return ne("div", ce({}, Ge(t, "menu", { menu: !0 }), { ref: a }, i), o); }, - Mx = Rx, - Nx = function (t, o) { + Nx = Mx, + Bx = function (t, o) { var a = t.maxHeight, i = t.theme.spacing.baseUnit; return ie( @@ -19814,7 +19814,7 @@ var lg = function (t) { o ? {} : { paddingBottom: i, paddingTop: i }, ); }, - Bx = function (t) { + Lx = function (t) { var o = t.children, a = t.innerProps, i = t.innerRef, @@ -19844,13 +19844,13 @@ var lg = function (t) { }, ); }, - Lx = ug, $x = ug, - Ax = function (t) { + Ax = ug, + Dx = function (t) { var o = t.children, a = o === void 0 ? "No options" : o, i = t.innerProps, - c = Cn(t, Ox); + c = Cn(t, Ex); return ne( "div", ce( @@ -19865,11 +19865,11 @@ var lg = function (t) { a, ); }, - Dx = function (t) { + zx = function (t) { var o = t.children, a = o === void 0 ? "Loading..." : o, i = t.innerProps, - c = Cn(t, Ex); + c = Cn(t, Tx); return ne( "div", ce( @@ -19884,13 +19884,13 @@ var lg = function (t) { a, ); }, - zx = function (t) { + Hx = function (t) { var o = t.rect, a = t.offset, i = t.position; return { left: o.left, position: i, top: a, width: o.width, zIndex: 1 }; }, - Hx = function (t) { + Vx = function (t) { var o = t.appendTo, a = t.children, i = t.controlElement, @@ -19913,7 +19913,7 @@ var lg = function (t) { R = V.useCallback( function () { if (i) { - var N = _x(i), + var N = xx(i), K = h === "fixed" ? 0 : window.pageYOffset, pe = N[y] + K; (pe !== (P == null ? void 0 : P.offset) || @@ -19942,7 +19942,7 @@ var lg = function (t) { typeof m.current == "function" && (m.current(), (m.current = null)), i && f.current && - (m.current = px(i, f.current, R, { + (m.current = hx(i, f.current, R, { elementResize: "ResizeObserver" in window, })); }, @@ -19974,9 +19974,9 @@ var lg = function (t) { ), a, ); - return ne(cg.Provider, { value: S }, o ? ex.createPortal($, o) : $); + return ne(cg.Provider, { value: S }, o ? tx.createPortal($, o) : $); }, - Vx = function (t) { + Ux = function (t) { var o = t.isDisabled, a = t.isRtl; return { @@ -19986,7 +19986,7 @@ var lg = function (t) { position: "relative", }; }, - Ux = function (t) { + Gx = function (t) { var o = t.children, a = t.innerProps, i = t.isDisabled, @@ -19997,7 +19997,7 @@ var lg = function (t) { o, ); }, - Gx = function (t, o) { + qx = function (t, o) { var a = t.theme.spacing, i = t.isMulti, c = t.hasValue, @@ -20021,7 +20021,7 @@ var lg = function (t) { }, ); }, - qx = function (t) { + Wx = function (t) { var o = t.children, a = t.innerProps, i = t.isMulti, @@ -20040,7 +20040,7 @@ var lg = function (t) { o, ); }, - Wx = function () { + Kx = function () { return { alignItems: "center", alignSelf: "stretch", @@ -20048,7 +20048,7 @@ var lg = function (t) { flexShrink: 0, }; }, - Kx = function (t) { + Xx = function (t) { var o = t.children, a = t.innerProps; return ne( @@ -20058,16 +20058,16 @@ var lg = function (t) { ); }, mh, - Xx = ["size"], - Qx = ["innerProps", "isRtl", "size"], - Yx = { + Qx = ["size"], + Yx = ["innerProps", "isRtl", "size"], + Zx = { name: "8mmkcg", styles: "display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0", }, dg = function (t) { var o = t.size, - a = Cn(t, Xx); + a = Cn(t, Qx); return ne( "svg", ce( @@ -20077,7 +20077,7 @@ var lg = function (t) { viewBox: "0 0 20 20", "aria-hidden": "true", focusable: "false", - css: Yx, + css: Zx, }, a, ), @@ -20121,8 +20121,8 @@ var lg = function (t) { }, ); }, - Zx = pg, - Jx = function (t) { + Jx = pg, + e4 = function (t) { var o = t.children, a = t.innerProps; return ne( @@ -20135,8 +20135,8 @@ var lg = function (t) { o || ne(fg, null), ); }, - e4 = pg, - t4 = function (t) { + t4 = pg, + n4 = function (t) { var o = t.children, a = t.innerProps; return ne( @@ -20149,7 +20149,7 @@ var lg = function (t) { o || ne(au, null), ); }, - n4 = function (t, o) { + r4 = function (t, o) { var a = t.isDisabled, i = t.theme, c = i.spacing.baseUnit, @@ -20165,23 +20165,23 @@ var lg = function (t) { }, ); }, - r4 = function (t) { + o4 = function (t) { var o = t.innerProps; return ne( "span", ce({}, o, Ge(t, "indicatorSeparator", { "indicator-separator": !0 })), ); }, - o4 = Z5( + a4 = J5( mh || - (mh = J5([ + (mh = ex([ ` 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } `, ])), ), - a4 = function (t, o) { + i4 = function (t, o) { var a = t.isFocused, i = t.size, c = t.theme, @@ -20209,7 +20209,7 @@ var lg = function (t) { css: tu( { animation: "" - .concat(o4, " 1s ease-in-out ") + .concat(a4, " 1s ease-in-out ") .concat(o, "ms infinite;"), backgroundColor: "currentColor", borderRadius: "1em", @@ -20224,12 +20224,12 @@ var lg = function (t) { ), }); }, - i4 = function (t) { + s4 = function (t) { var o = t.innerProps, a = t.isRtl, i = t.size, c = i === void 0 ? 4 : i, - d = Cn(t, Qx); + d = Cn(t, Yx); return ne( "div", ce( @@ -20246,7 +20246,7 @@ var lg = function (t) { ne(Jl, { delay: 320, offset: !a }), ); }, - s4 = function (t, o) { + l4 = function (t, o) { var a = t.isDisabled, i = t.isFocused, c = t.theme, @@ -20279,7 +20279,7 @@ var lg = function (t) { }, ); }, - l4 = function (t) { + c4 = function (t) { var o = t.children, a = t.isDisabled, i = t.isFocused, @@ -20302,15 +20302,15 @@ var lg = function (t) { o, ); }, - c4 = l4, - u4 = ["data"], - d4 = function (t, o) { + u4 = c4, + d4 = ["data"], + f4 = function (t, o) { var a = t.theme.spacing; return o ? {} : { paddingBottom: a.baseUnit * 2, paddingTop: a.baseUnit * 2 }; }, - f4 = function (t) { + p4 = function (t) { var o = t.children, a = t.cx, i = t.getStyles, @@ -20338,7 +20338,7 @@ var lg = function (t) { ne("div", null, o), ); }, - p4 = function (t, o) { + h4 = function (t, o) { var a = t.theme, i = a.colors, c = a.spacing; @@ -20357,15 +20357,15 @@ var lg = function (t) { }, ); }, - h4 = function (t) { + m4 = function (t) { var o = ag(t); o.data; - var a = Cn(o, u4); + var a = Cn(o, d4); return ne("div", ce({}, Ge(t, "groupHeading", { "group-heading": !0 }), a)); }, - m4 = f4, - g4 = ["innerRef", "isDisabled", "isHidden", "inputClassName"], - b4 = function (t, o) { + g4 = p4, + b4 = ["innerRef", "isDisabled", "isHidden", "inputClassName"], + v4 = function (t, o) { var a = t.isDisabled, i = t.value, c = t.theme, @@ -20377,7 +20377,7 @@ var lg = function (t) { visibility: a ? "hidden" : "visible", transform: i ? "translateZ(0)" : "", }, - v4, + y4, ), o ? {} @@ -20398,7 +20398,7 @@ var lg = function (t) { outline: 0, padding: 0, }, - v4 = { + y4 = { flex: "1 1 auto", display: "inline-grid", gridArea: "1 / 1 / 2 / 3", @@ -20412,7 +20412,7 @@ var lg = function (t) { hg, ), }, - y4 = function (t) { + _4 = function (t) { return ie( { label: "input", @@ -20424,7 +20424,7 @@ var lg = function (t) { hg, ); }, - _4 = function (t) { + x4 = function (t) { var o = t.cx, a = t.value, i = ag(t), @@ -20432,7 +20432,7 @@ var lg = function (t) { d = i.isDisabled, h = i.isHidden, f = i.inputClassName, - m = Cn(i, g4); + m = Cn(i, b4); return ne( "div", ce({}, Ge(t, "input", { "input-container": !0 }), { @@ -20441,14 +20441,14 @@ var lg = function (t) { ne( "input", ce( - { className: o({ input: !0 }, f), ref: c, style: y4(h), disabled: d }, + { className: o({ input: !0 }, f), ref: c, style: _4(h), disabled: d }, m, ), ), ); }, - x4 = _4, - S4 = function (t, o) { + S4 = x4, + w4 = function (t, o) { var a = t.theme, i = a.spacing, c = a.borderRadius, @@ -20464,7 +20464,7 @@ var lg = function (t) { }, ); }, - w4 = function (t, o) { + k4 = function (t, o) { var a = t.theme, i = a.borderRadius, c = a.colors, @@ -20486,7 +20486,7 @@ var lg = function (t) { }, ); }, - k4 = function (t, o) { + C4 = function (t, o) { var a = t.theme, i = a.spacing, c = a.borderRadius, @@ -20510,14 +20510,14 @@ var lg = function (t) { a = t.innerProps; return ne("div", a, o); }, - C4 = mg, - P4 = mg; -function O4(n) { + P4 = mg, + O4 = mg; +function E4(n) { var t = n.children, o = n.innerProps; return ne("div", ce({ role: "button" }, o), t || ne(au, { size: 14 })); } -var E4 = function (t) { +var T4 = function (t) { var o = t.children, a = t.components, i = t.data, @@ -20568,8 +20568,8 @@ var E4 = function (t) { }), ); }, - T4 = E4, - j4 = function (t, o) { + j4 = T4, + I4 = function (t, o) { var a = t.isDisabled, i = t.isFocused, c = t.isSelected, @@ -20600,7 +20600,7 @@ var E4 = function (t) { }, ); }, - I4 = function (t) { + F4 = function (t) { var o = t.children, a = t.isDisabled, i = t.isFocused, @@ -20623,8 +20623,8 @@ var E4 = function (t) { o, ); }, - F4 = I4, - R4 = function (t, o) { + R4 = F4, + M4 = function (t, o) { var a = t.theme, i = a.spacing, c = a.colors; @@ -20639,13 +20639,13 @@ var E4 = function (t) { }, ); }, - M4 = function (t) { + N4 = function (t) { var o = t.children, a = t.innerProps; return ne("div", ce({}, Ge(t, "placeholder", { placeholder: !0 }), a), o); }, - N4 = M4, - B4 = function (t, o) { + B4 = N4, + L4 = function (t, o) { var a = t.isDisabled, i = t.theme, c = i.spacing, @@ -20668,7 +20668,7 @@ var E4 = function (t) { }, ); }, - L4 = function (t) { + $4 = function (t) { var o = t.children, a = t.isDisabled, i = t.innerProps; @@ -20685,52 +20685,52 @@ var E4 = function (t) { o, ); }, - $4 = L4, - A4 = { - ClearIndicator: t4, - Control: c4, - DropdownIndicator: Jx, + A4 = $4, + D4 = { + ClearIndicator: n4, + Control: u4, + DropdownIndicator: e4, DownChevron: fg, CrossIcon: au, - Group: m4, - GroupHeading: h4, - IndicatorsContainer: Kx, - IndicatorSeparator: r4, - Input: x4, - LoadingIndicator: i4, - Menu: Mx, - MenuList: Bx, - MenuPortal: Hx, - LoadingMessage: Dx, - NoOptionsMessage: Ax, - MultiValue: T4, - MultiValueContainer: C4, - MultiValueLabel: P4, - MultiValueRemove: O4, - Option: F4, - Placeholder: N4, - SelectContainer: Ux, - SingleValue: $4, - ValueContainer: qx, + Group: g4, + GroupHeading: m4, + IndicatorsContainer: Xx, + IndicatorSeparator: o4, + Input: S4, + LoadingIndicator: s4, + Menu: Nx, + MenuList: Lx, + MenuPortal: Vx, + LoadingMessage: zx, + NoOptionsMessage: Dx, + MultiValue: j4, + MultiValueContainer: P4, + MultiValueLabel: O4, + MultiValueRemove: E4, + Option: R4, + Placeholder: B4, + SelectContainer: Gx, + SingleValue: A4, + ValueContainer: Wx, }, - D4 = function (t) { - return ie(ie({}, A4), t.components); + z4 = function (t) { + return ie(ie({}, D4), t.components); }, gh = Number.isNaN || function (t) { return typeof t == "number" && t !== t; }; -function z4(n, t) { +function H4(n, t) { return !!(n === t || (gh(n) && gh(t))); } -function H4(n, t) { +function V4(n, t) { if (n.length !== t.length) return !1; - for (var o = 0; o < n.length; o++) if (!z4(n[o], t[o])) return !1; + for (var o = 0; o < n.length; o++) if (!H4(n[o], t[o])) return !1; return !0; } -function V4(n, t) { - t === void 0 && (t = H4); +function U4(n, t) { + t === void 0 && (t = V4); var o = null; function a() { for (var i = [], c = 0; c < arguments.length; c++) i[c] = arguments[c]; @@ -20745,16 +20745,16 @@ function V4(n, t) { a ); } -var U4 = { +var G4 = { name: "7pg0cj-a11yText", styles: "label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap", }, - G4 = function (t) { - return ne("span", ce({ css: U4 }, t)); + q4 = function (t) { + return ne("span", ce({ css: G4 }, t)); }, - bh = G4, - q4 = { + bh = q4, + W4 = { guidance: function (t) { var o = t.isSearchable, a = t.isMulti, @@ -20838,7 +20838,7 @@ var U4 = { return "".concat(a).concat(o ? " for search term " + o : "", "."); }, }, - W4 = function (t) { + K4 = function (t) { var o = t.ariaSelection, a = t.focusedOption, i = t.focusedValue, @@ -20863,7 +20863,7 @@ var U4 = { N = f["aria-live"], K = V.useMemo( function () { - return ie(ie({}, q4), v || {}); + return ie(ie({}, W4), v || {}); }, [v], ), @@ -20967,7 +20967,7 @@ var U4 = { ), ); }, - K4 = W4, + X4 = K4, Fc = [ { base: "A", letters: "AⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ" }, { base: "AA", letters: "Ꜳ" }, @@ -21054,7 +21054,7 @@ var U4 = { { base: "y", letters: "yⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ" }, { base: "z", letters: "zⓩzźẑżžẓẕƶȥɀⱬꝣ" }, ], - X4 = new RegExp( + Q4 = new RegExp( "[" + Fc.map(function (n) { return n.letters; @@ -21067,25 +21067,25 @@ for (var ec = 0; ec < Fc.length; ec++) for (var tc = Fc[ec], nc = 0; nc < tc.letters.length; nc++) gg[tc.letters[nc]] = tc.base; var bg = function (t) { - return t.replace(X4, function (o) { + return t.replace(Q4, function (o) { return gg[o]; }); }, - Q4 = V4(bg), + Y4 = U4(bg), vh = function (t) { return t.replace(/^\s+|\s+$/g, ""); }, - Y4 = function (t) { + Z4 = function (t) { return "".concat(t.label, " ").concat(t.value); }, - Z4 = function (t) { + J4 = function (t) { return function (o, a) { if (o.data.__isNew__) return !0; var i = ie( { ignoreCase: !0, ignoreAccents: !0, - stringify: Y4, + stringify: Z4, trim: !0, matchFrom: "any", }, @@ -21100,16 +21100,16 @@ var bg = function (t) { v = f ? vh(h(o)) : h(o); return ( c && ((b = b.toLowerCase()), (v = v.toLowerCase())), - d && ((b = Q4(b)), (v = bg(v))), + d && ((b = Y4(b)), (v = bg(v))), m === "start" ? v.substr(0, b.length) === b : v.indexOf(b) > -1 ); }; }, - J4 = ["innerRef"]; -function e3(n) { + e3 = ["innerRef"]; +function t3(n) { var t = n.innerRef, - o = Cn(n, J4), - a = Px(o, "onExited", "in", "enter", "exit", "appear"); + o = Cn(n, e3), + a = Ox(o, "onExited", "in", "enter", "exit", "appear"); return ne( "input", ce({ ref: t }, a, { @@ -21136,10 +21136,10 @@ function e3(n) { }), ); } -var t3 = function (t) { +var n3 = function (t) { t.cancelable && t.preventDefault(), t.stopPropagation(); }; -function n3(n) { +function r3(n) { var t = n.isEnabled, o = n.onBottomArrive, a = n.onBottomLeave, @@ -21173,7 +21173,7 @@ function n3(n) { ($.scrollTop = 0), (pe = !0), (h.current = !0)), - pe && t3(C); + pe && n3(C); } }, [o, a, i, c], @@ -21197,7 +21197,7 @@ function n3(n) { S = V.useCallback( function (C) { if (C) { - var P = wx ? { passive: !1 } : !1; + var P = kx ? { passive: !1 } : !1; C.addEventListener("wheel", v, P), C.addEventListener("touchstart", y, P), C.addEventListener("touchmove", x, P); @@ -21263,7 +21263,7 @@ var Ch = !!( ), to = 0, Y0 = { capture: !1, passive: !1 }; -function r3(n) { +function o3(n) { var t = n.isEnabled, o = n.accountForScrollbars, a = o === void 0 ? !0 : o, @@ -21344,17 +21344,17 @@ function r3(n) { } ); } -var o3 = function (t) { +var a3 = function (t) { var o = t.target; return ( o.ownerDocument.activeElement && o.ownerDocument.activeElement.blur() ); }, - a3 = { + i3 = { name: "1kfdb0e", styles: "position:fixed;left:0;bottom:0;right:0;top:0", }; -function i3(n) { +function s3(n) { var t = n.children, o = n.lockEnabled, a = n.captureEnabled, @@ -21363,25 +21363,25 @@ function i3(n) { d = n.onBottomLeave, h = n.onTopArrive, f = n.onTopLeave, - m = n3({ + m = r3({ isEnabled: i, onBottomArrive: c, onBottomLeave: d, onTopArrive: h, onTopLeave: f, }), - b = r3({ isEnabled: o }), + b = o3({ isEnabled: o }), v = function (x) { m(x), b(x); }; - return ne(V.Fragment, null, o && ne("div", { onClick: o3, css: a3 }), t(v)); + return ne(V.Fragment, null, o && ne("div", { onClick: a3, css: i3 }), t(v)); } -var s3 = { +var l3 = { name: "1a0ro4n-requiredInput", styles: "label:requiredInput;opacity:0;pointer-events:none;position:absolute;bottom:0;left:0;right:0;width:100%", }, - l3 = function (t) { + c3 = function (t) { var o = t.name, a = t.onFocus; return ne("input", { @@ -21390,12 +21390,12 @@ var s3 = { tabIndex: -1, "aria-hidden": "true", onFocus: a, - css: s3, + css: l3, value: "", onChange: function () {}, }); }, - c3 = l3; + u3 = c3; function iu(n) { var t; return typeof window < "u" && window.navigator != null @@ -21406,58 +21406,58 @@ function iu(n) { ) : !1; } -function u3() { +function d3() { return iu(/^iPhone/i); } function vg() { return iu(/^Mac/i); } -function d3() { - return iu(/^iPad/i) || (vg() && navigator.maxTouchPoints > 1); -} function f3() { - return u3() || d3(); + return iu(/^iPad/i) || (vg() && navigator.maxTouchPoints > 1); } function p3() { - return vg() || f3(); + return d3() || f3(); } -var h3 = function (t) { +function h3() { + return vg() || p3(); +} +var m3 = function (t) { return t.label; }, - m3 = function (t) { + g3 = function (t) { return t.label; }, - g3 = function (t) { + b3 = function (t) { return t.value; }, - b3 = function (t) { + v3 = function (t) { return !!t.isDisabled; }, - v3 = { - clearIndicator: e4, - container: Vx, - control: s4, - dropdownIndicator: Zx, - group: d4, - groupHeading: p4, - indicatorsContainer: Wx, - indicatorSeparator: n4, - input: b4, - loadingIndicator: a4, - loadingMessage: $x, - menu: Ix, - menuList: Nx, - menuPortal: zx, - multiValue: S4, - multiValueLabel: w4, - multiValueRemove: k4, - noOptionsMessage: Lx, - option: j4, - placeholder: R4, - singleValue: B4, - valueContainer: Gx, - }, y3 = { + clearIndicator: t4, + container: Ux, + control: l4, + dropdownIndicator: Jx, + group: f4, + groupHeading: h4, + indicatorsContainer: Kx, + indicatorSeparator: r4, + input: v4, + loadingIndicator: i4, + loadingMessage: Ax, + menu: Fx, + menuList: Bx, + menuPortal: Hx, + multiValue: w4, + multiValueLabel: k4, + multiValueRemove: C4, + noOptionsMessage: $x, + option: I4, + placeholder: M4, + singleValue: L4, + valueContainer: qx, + }, + _3 = { primary: "#2684FF", primary75: "#4C9AFF", primary50: "#B2D4FF", @@ -21476,13 +21476,13 @@ var h3 = function (t) { neutral80: "hsl(0, 0%, 20%)", neutral90: "hsl(0, 0%, 10%)", }, - _3 = 4, + x3 = 4, yg = 4, - x3 = 38, - S3 = yg * 2, - w3 = { baseUnit: yg, controlHeight: x3, menuGutter: S3 }, - rc = { borderRadius: _3, colors: y3, spacing: w3 }, - k3 = { + S3 = 38, + w3 = yg * 2, + k3 = { baseUnit: yg, controlHeight: S3, menuGutter: w3 }, + rc = { borderRadius: x3, colors: _3, spacing: k3 }, + C3 = { "aria-live": "polite", backspaceRemovesValue: !0, blurInputOnSelect: hh(), @@ -21493,16 +21493,16 @@ var h3 = function (t) { components: {}, controlShouldRenderValue: !0, escapeClearsValue: !1, - filterOption: Z4(), - formatGroupLabel: h3, - getOptionLabel: m3, - getOptionValue: g3, + filterOption: J4(), + formatGroupLabel: m3, + getOptionLabel: g3, + getOptionValue: b3, isDisabled: !1, isLoading: !1, isMulti: !1, isRtl: !1, isSearchable: !0, - isOptionDisabled: b3, + isOptionDisabled: v3, loadingMessage: function () { return "Loading..."; }, @@ -21512,7 +21512,7 @@ var h3 = function (t) { menuPlacement: "bottom", menuPosition: "absolute", menuShouldBlockScroll: !1, - menuShouldScrollIntoView: !xx(), + menuShouldScrollIntoView: !Sx(), noOptionsMessage: function () { return "No options"; }, @@ -21563,7 +21563,7 @@ function Ja(n, t) { var c = Ph(n, o, t, a); return Eh(n, c) ? c : void 0; }) - .filter(kx); + .filter(Cx); } function _g(n) { return n.reduce(function (t, o) { @@ -21602,7 +21602,7 @@ function Oh(n, t) { ); }, []); } -function C3(n, t) { +function P3(n, t) { return _g(Ja(n, t)); } function Eh(n, t) { @@ -21614,7 +21614,7 @@ function Eh(n, t) { h = t.value; return (!Cg(n) || !c) && kg(n, { label: d, value: h, data: i }, a); } -function P3(n, t) { +function O3(n, t) { var o = n.focusedValue, a = n.selectValue, i = a.indexOf(o); @@ -21625,7 +21625,7 @@ function P3(n, t) { } return null; } -function O3(n, t) { +function E3(n, t) { var o = n.focusedOption; return o && t.indexOf(o) > -1 ? o : t[0]; } @@ -21666,14 +21666,14 @@ var Cg = function (t) { a = t.isMulti; return o === void 0 ? a : o; }, - E3 = 1, + T3 = 1, Pg = (function (n) { - X2(o, n); - var t = Z2(o); + Q2(o, n); + var t = J2(o); function o(a) { var i; if ( - (W2(this, o), + (K2(this, o), (i = t.call(this, a)), (i.state = { ariaSelection: null, @@ -21698,7 +21698,7 @@ var Cg = function (t) { (i.openAfterFocus = !1), (i.scrollToFocusedOptionOnUpdate = !1), (i.userIsDragging = void 0), - (i.isAppleDevice = p3()), + (i.isAppleDevice = h3()), (i.controlRef = null), (i.getControlRef = function (f) { i.controlRef = f; @@ -21799,7 +21799,7 @@ var Cg = function (t) { (i.cx = function () { for (var f = arguments.length, m = new Array(f), b = 0; b < f; b++) m[b] = arguments[b]; - return gx.apply(void 0, [i.props.classNamePrefix].concat(m)); + return bx.apply(void 0, [i.props.classNamePrefix].concat(m)); }), (i.getOptionLabel = function (f) { return xg(i.props, f); @@ -21809,7 +21809,7 @@ var Cg = function (t) { }), (i.getStyles = function (f, m) { var b = i.props.unstyled, - v = v3[f](m, b); + v = y3[f](m, b); v.boxSizing = "border-box"; var y = i.props.styles[f]; return y ? y(v, m) : v; @@ -21824,7 +21824,7 @@ var Cg = function (t) { return "".concat(i.state.instancePrefix, "-").concat(f); }), (i.getComponents = function () { - return D4(i.props); + return z4(i.props); }), (i.buildCategorizedOptions = function () { return Ja(i.props, i.state.selectValue); @@ -22086,7 +22086,7 @@ var Cg = function (t) { } }), (i.state.instancePrefix = - "react-select-" + (i.props.instanceId || ++E3)), + "react-select-" + (i.props.instanceId || ++T3)), (i.state.selectValue = fh(a.value)), a.menuIsOpen && i.state.selectValue.length) ) { @@ -22100,7 +22100,7 @@ var Cg = function (t) { return i; } return ( - K2( + X2( o, [ { @@ -22502,7 +22502,7 @@ var Cg = function (t) { ), ) : V.createElement( - e3, + t3, ce( { id: R, @@ -22791,7 +22791,7 @@ var Cg = function (t) { menuPosition: pe, menuShouldScrollIntoView: le, }, - A = V.createElement(Fx, ce({}, S, w), function (W) { + A = V.createElement(Rx, ce({}, S, w), function (W) { var se = W.ref, re = W.placerProps, ye = re.placement, @@ -22808,7 +22808,7 @@ var Cg = function (t) { placement: ye, }), V.createElement( - i3, + s3, { captureEnabled: P, onTopArrive: xe, @@ -22863,7 +22863,7 @@ var Cg = function (t) { b = c.required, v = this.state.selectValue; if (b && !this.hasValue() && !h) - return V.createElement(c3, { + return V.createElement(u3, { name: m, onFocus: this.onValueInputFocus, }); @@ -22920,7 +22920,7 @@ var Cg = function (t) { b = c.selectValue, v = this.getFocusableOptions(); return V.createElement( - K4, + X4, ce({}, i, { id: this.getElementId("live-region"), ariaSelection: d, @@ -23016,10 +23016,10 @@ var Cg = function (t) { O !== d.menuIsOpen || C !== d.inputValue) ) { - var L = O ? C3(i, T) : [], + var L = O ? P3(i, T) : [], j = O ? Oh(Ja(i, T), "".concat(y, "-option")) : [], - $ = h ? P3(c, T) : null, - N = O3(c, L), + $ = h ? O3(c, T) : null, + N = E3(c, L), K = oc(j, N); R = { selectValue: T, @@ -23060,12 +23060,12 @@ var Cg = function (t) { o ); })(V.Component); -Pg.defaultProps = k3; -var T3 = V.forwardRef(function (n, t) { - var o = q2(n); +Pg.defaultProps = C3; +var j3 = V.forwardRef(function (n, t) { + var o = W2(n); return V.createElement(Pg, ce({ ref: t }, o)); }), - j3 = T3; + I3 = j3; function Th({ isDark: n, context: t, isFocused: o = !1, isSelected: a = !1 }) { if (t === "control") return o ? (n ? "#222222" : "#E8E8E8") : n ? "#383838" : "#F1F1F1"; @@ -23074,7 +23074,7 @@ function Th({ isDark: n, context: t, isFocused: o = !1, isSelected: a = !1 }) { if (t === "menu" || t === "menuList") return n ? "#222222" : "#F1F1F1"; } const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => - Re.jsx(j3, { + Re.jsx(I3, { styles: { control: (i, c) => ({ ...i, @@ -23144,7 +23144,7 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => i && a(i.value); }, }), - I3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + F3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23161,14 +23161,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - F3 = Object.freeze( + R3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: I3 }, + { __proto__: null, default: F3 }, Symbol.toStringTag, { value: "Module" }, ), ), - R3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + M3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23182,14 +23182,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - M3 = Object.freeze( + N3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: R3 }, + { __proto__: null, default: M3 }, Symbol.toStringTag, { value: "Module" }, ), ), - N3 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + B3 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23197,14 +23197,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - B3 = Object.freeze( + L3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: N3 }, + { __proto__: null, default: B3 }, Symbol.toStringTag, { value: "Module" }, ), ), - L3 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + $3 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23212,14 +23212,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - $3 = Object.freeze( + A3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: L3 }, + { __proto__: null, default: $3 }, Symbol.toStringTag, { value: "Module" }, ), ), - A3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + D3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23227,14 +23227,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - D3 = Object.freeze( + z3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: A3 }, + { __proto__: null, default: D3 }, Symbol.toStringTag, { value: "Module" }, ), ), - z3 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + H3 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23242,14 +23242,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - H3 = Object.freeze( + V3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: z3 }, + { __proto__: null, default: H3 }, Symbol.toStringTag, { value: "Module" }, ), ), - V3 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + U3 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23257,14 +23257,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - U3 = Object.freeze( + G3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: V3 }, + { __proto__: null, default: U3 }, Symbol.toStringTag, { value: "Module" }, ), ), - G3 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + q3 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23272,14 +23272,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - q3 = Object.freeze( + W3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: G3 }, + { __proto__: null, default: q3 }, Symbol.toStringTag, { value: "Module" }, ), ), - W3 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + K3 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23287,14 +23287,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - K3 = Object.freeze( + X3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: W3 }, + { __proto__: null, default: K3 }, Symbol.toStringTag, { value: "Module" }, ), ), - X3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + Q3 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23302,14 +23302,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - Q3 = Object.freeze( + Y3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: X3 }, + { __proto__: null, default: Q3 }, Symbol.toStringTag, { value: "Module" }, ), ), - Y3 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + Z3 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23317,14 +23317,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - Z3 = Object.freeze( + J3 = Object.freeze( Object.defineProperty( - { __proto__: null, default: Y3 }, + { __proto__: null, default: Z3 }, Symbol.toStringTag, { value: "Module" }, ), ), - J3 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + eS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23332,14 +23332,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - eS = Object.freeze( + tS = Object.freeze( Object.defineProperty( - { __proto__: null, default: J3 }, + { __proto__: null, default: eS }, Symbol.toStringTag, { value: "Module" }, ), ), - tS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + nS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23353,14 +23353,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - nS = Object.freeze( + rS = Object.freeze( Object.defineProperty( - { __proto__: null, default: tS }, + { __proto__: null, default: nS }, Symbol.toStringTag, { value: "Module" }, ), ), - rS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + oS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23374,14 +23374,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - oS = Object.freeze( + aS = Object.freeze( Object.defineProperty( - { __proto__: null, default: rS }, + { __proto__: null, default: oS }, Symbol.toStringTag, { value: "Module" }, ), ), - aS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + iS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23395,14 +23395,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - iS = Object.freeze( + sS = Object.freeze( Object.defineProperty( - { __proto__: null, default: aS }, + { __proto__: null, default: iS }, Symbol.toStringTag, { value: "Module" }, ), ), - sS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + lS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23416,14 +23416,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - lS = Object.freeze( + cS = Object.freeze( Object.defineProperty( - { __proto__: null, default: sS }, + { __proto__: null, default: lS }, Symbol.toStringTag, { value: "Module" }, ), ), - cS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + uS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23437,14 +23437,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - uS = Object.freeze( + dS = Object.freeze( Object.defineProperty( - { __proto__: null, default: cS }, + { __proto__: null, default: uS }, Symbol.toStringTag, { value: "Module" }, ), ), - dS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + fS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23452,14 +23452,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - fS = Object.freeze( + pS = Object.freeze( Object.defineProperty( - { __proto__: null, default: dS }, + { __proto__: null, default: fS }, Symbol.toStringTag, { value: "Module" }, ), ), - pS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + hS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23467,14 +23467,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - hS = Object.freeze( + mS = Object.freeze( Object.defineProperty( - { __proto__: null, default: pS }, + { __proto__: null, default: hS }, Symbol.toStringTag, { value: "Module" }, ), ), - mS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + gS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23482,14 +23482,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - gS = Object.freeze( + bS = Object.freeze( Object.defineProperty( - { __proto__: null, default: mS }, + { __proto__: null, default: gS }, Symbol.toStringTag, { value: "Module" }, ), ), - bS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + vS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23497,14 +23497,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - vS = Object.freeze( + yS = Object.freeze( Object.defineProperty( - { __proto__: null, default: bS }, + { __proto__: null, default: vS }, Symbol.toStringTag, { value: "Module" }, ), ), - yS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + _S = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23512,14 +23512,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - _S = Object.freeze( + xS = Object.freeze( Object.defineProperty( - { __proto__: null, default: yS }, + { __proto__: null, default: _S }, Symbol.toStringTag, { value: "Module" }, ), ), - xS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + SS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23530,14 +23530,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - SS = Object.freeze( + wS = Object.freeze( Object.defineProperty( - { __proto__: null, default: xS }, + { __proto__: null, default: SS }, Symbol.toStringTag, { value: "Module" }, ), ), - wS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + kS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23548,14 +23548,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - kS = Object.freeze( + CS = Object.freeze( Object.defineProperty( - { __proto__: null, default: wS }, + { __proto__: null, default: kS }, Symbol.toStringTag, { value: "Module" }, ), ), - CS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + PS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23566,14 +23566,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - PS = Object.freeze( + OS = Object.freeze( Object.defineProperty( - { __proto__: null, default: CS }, + { __proto__: null, default: PS }, Symbol.toStringTag, { value: "Module" }, ), ), - OS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + ES = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23584,14 +23584,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - ES = Object.freeze( + TS = Object.freeze( Object.defineProperty( - { __proto__: null, default: OS }, + { __proto__: null, default: ES }, Symbol.toStringTag, { value: "Module" }, ), ), - TS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + jS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23602,14 +23602,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - jS = Object.freeze( + IS = Object.freeze( Object.defineProperty( - { __proto__: null, default: TS }, + { __proto__: null, default: jS }, Symbol.toStringTag, { value: "Module" }, ), ), - IS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + FS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23620,14 +23620,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - FS = Object.freeze( + RS = Object.freeze( Object.defineProperty( - { __proto__: null, default: IS }, + { __proto__: null, default: FS }, Symbol.toStringTag, { value: "Module" }, ), ), - RS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + MS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23638,14 +23638,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - MS = Object.freeze( + NS = Object.freeze( Object.defineProperty( - { __proto__: null, default: RS }, + { __proto__: null, default: MS }, Symbol.toStringTag, { value: "Module" }, ), ), - NS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + BS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23656,14 +23656,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - BS = Object.freeze( + LS = Object.freeze( Object.defineProperty( - { __proto__: null, default: NS }, + { __proto__: null, default: BS }, Symbol.toStringTag, { value: "Module" }, ), ), - LS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + $S = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23674,14 +23674,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - $S = Object.freeze( + AS = Object.freeze( Object.defineProperty( - { __proto__: null, default: LS }, + { __proto__: null, default: $S }, Symbol.toStringTag, { value: "Module" }, ), ), - AS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + DS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23692,14 +23692,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - DS = Object.freeze( + zS = Object.freeze( Object.defineProperty( - { __proto__: null, default: AS }, + { __proto__: null, default: DS }, Symbol.toStringTag, { value: "Module" }, ), ), - zS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + HS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23709,14 +23709,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - HS = Object.freeze( + VS = Object.freeze( Object.defineProperty( - { __proto__: null, default: zS }, + { __proto__: null, default: HS }, Symbol.toStringTag, { value: "Module" }, ), ), - VS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + US = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23726,14 +23726,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - US = Object.freeze( + GS = Object.freeze( Object.defineProperty( - { __proto__: null, default: VS }, + { __proto__: null, default: US }, Symbol.toStringTag, { value: "Module" }, ), ), - GS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + qS = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23743,14 +23743,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - qS = Object.freeze( + WS = Object.freeze( Object.defineProperty( - { __proto__: null, default: GS }, + { __proto__: null, default: qS }, Symbol.toStringTag, { value: "Module" }, ), ), - WS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + KS = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23760,14 +23760,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - KS = Object.freeze( + XS = Object.freeze( Object.defineProperty( - { __proto__: null, default: WS }, + { __proto__: null, default: KS }, Symbol.toStringTag, { value: "Module" }, ), ), - XS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + QS = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23777,14 +23777,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - QS = Object.freeze( + YS = Object.freeze( Object.defineProperty( - { __proto__: null, default: XS }, + { __proto__: null, default: QS }, Symbol.toStringTag, { value: "Module" }, ), ), - YS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + ZS = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23799,14 +23799,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - ZS = Object.freeze( + JS = Object.freeze( Object.defineProperty( - { __proto__: null, default: YS }, + { __proto__: null, default: ZS }, Symbol.toStringTag, { value: "Module" }, ), ), - JS = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + e6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23821,14 +23821,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - e6 = Object.freeze( + t6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: JS }, + { __proto__: null, default: e6 }, Symbol.toStringTag, { value: "Module" }, ), ), - t6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + n6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23843,14 +23843,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - n6 = Object.freeze( + r6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: t6 }, + { __proto__: null, default: n6 }, Symbol.toStringTag, { value: "Module" }, ), ), - r6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + o6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23865,14 +23865,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - o6 = Object.freeze( + a6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: r6 }, + { __proto__: null, default: o6 }, Symbol.toStringTag, { value: "Module" }, ), ), - a6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + i6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23887,14 +23887,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - i6 = Object.freeze( + s6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: a6 }, + { __proto__: null, default: i6 }, Symbol.toStringTag, { value: "Module" }, ), ), - s6 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + l6 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23904,14 +23904,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - l6 = Object.freeze( + c6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: s6 }, + { __proto__: null, default: l6 }, Symbol.toStringTag, { value: "Module" }, ), ), - c6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + u6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23921,14 +23921,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - u6 = Object.freeze( + d6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: c6 }, + { __proto__: null, default: u6 }, Symbol.toStringTag, { value: "Module" }, ), ), - d6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + f6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23938,14 +23938,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - f6 = Object.freeze( + p6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: d6 }, + { __proto__: null, default: f6 }, Symbol.toStringTag, { value: "Module" }, ), ), - p6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + h6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23955,14 +23955,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - h6 = Object.freeze( + m6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: p6 }, + { __proto__: null, default: h6 }, Symbol.toStringTag, { value: "Module" }, ), ), - m6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + g6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23972,14 +23972,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - g6 = Object.freeze( + b6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: m6 }, + { __proto__: null, default: g6 }, Symbol.toStringTag, { value: "Module" }, ), ), - b6 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + v6 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -23990,14 +23990,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - v6 = Object.freeze( + y6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: b6 }, + { __proto__: null, default: v6 }, Symbol.toStringTag, { value: "Module" }, ), ), - y6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + _6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24008,14 +24008,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - _6 = Object.freeze( + x6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: y6 }, + { __proto__: null, default: _6 }, Symbol.toStringTag, { value: "Module" }, ), ), - x6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + S6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24026,14 +24026,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - S6 = Object.freeze( + w6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: x6 }, + { __proto__: null, default: S6 }, Symbol.toStringTag, { value: "Module" }, ), ), - w6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + k6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24043,14 +24043,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - k6 = Object.freeze( + C6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: w6 }, + { __proto__: null, default: k6 }, Symbol.toStringTag, { value: "Module" }, ), ), - C6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + P6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24060,14 +24060,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - P6 = Object.freeze( + O6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: C6 }, + { __proto__: null, default: P6 }, Symbol.toStringTag, { value: "Module" }, ), ), - O6 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ + E6 = `curl -X POST https://arb-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24077,14 +24077,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - E6 = Object.freeze( + T6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: O6 }, + { __proto__: null, default: E6 }, Symbol.toStringTag, { value: "Module" }, ), ), - T6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ + j6 = `curl -X POST https://base-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24094,14 +24094,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - j6 = Object.freeze( + I6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: T6 }, + { __proto__: null, default: j6 }, Symbol.toStringTag, { value: "Module" }, ), ), - I6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ + F6 = `curl -X POST https://eth-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24111,14 +24111,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - F6 = Object.freeze( + R6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: I6 }, + { __proto__: null, default: F6 }, Symbol.toStringTag, { value: "Module" }, ), ), - R6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ + M6 = `curl -X POST https://opt-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24128,14 +24128,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - M6 = Object.freeze( + N6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: R6 }, + { __proto__: null, default: M6 }, Symbol.toStringTag, { value: "Module" }, ), ), - N6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ + B6 = `curl -X POST https://polygon-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24145,14 +24145,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - B6 = Object.freeze( + L6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: N6 }, + { __proto__: null, default: B6 }, Symbol.toStringTag, { value: "Module" }, ), ), - L6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + $6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24162,14 +24162,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - $6 = Object.freeze( + A6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: L6 }, + { __proto__: null, default: $6 }, Symbol.toStringTag, { value: "Module" }, ), ), - A6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + D6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24179,14 +24179,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - D6 = Object.freeze( + z6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: A6 }, + { __proto__: null, default: D6 }, Symbol.toStringTag, { value: "Module" }, ), ), - z6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + H6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24194,14 +24194,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "params": [], "id": 1 }'`, - H6 = Object.freeze( + V6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: z6 }, + { __proto__: null, default: H6 }, Symbol.toStringTag, { value: "Module" }, ), ), - V6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + U6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24214,14 +24214,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - U6 = Object.freeze( + G6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: V6 }, + { __proto__: null, default: U6 }, Symbol.toStringTag, { value: "Module" }, ), ), - G6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + q6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24231,14 +24231,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - q6 = Object.freeze( + W6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: G6 }, + { __proto__: null, default: q6 }, Symbol.toStringTag, { value: "Module" }, ), ), - W6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + K6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24254,14 +24254,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - K6 = Object.freeze( + X6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: W6 }, + { __proto__: null, default: K6 }, Symbol.toStringTag, { value: "Module" }, ), ), - X6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ + Q6 = `curl -X POST https://solana-mainnet.g.alchemy.com/v2/{apiKey} \\ -H "Content-Type: application/json" \\ -d '{ "jsonrpc": "2.0", @@ -24274,14 +24274,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }'`, - Q6 = Object.freeze( + Y6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: X6 }, + { __proto__: null, default: Q6 }, Symbol.toStringTag, { value: "Module" }, ), ), - Y6 = `{ + Z6 = `{ "jsonrpc": "2.0", "id": "1", "result": { @@ -24326,14 +24326,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "pageKey": "" } }`, - Z6 = Object.freeze( + J6 = Object.freeze( Object.defineProperty( - { __proto__: null, default: Y6 }, + { __proto__: null, default: Z6 }, Symbol.toStringTag, { value: "Module" }, ), ), - J6 = `{ + e8 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -24383,314 +24383,314 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "pageKey": "0x00000000f9fd50c832d79facfe6f4e8ce90a5efb" } }`, - e8 = Object.freeze( + t8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: J6 }, + { __proto__: null, default: e8 }, Symbol.toStringTag, { value: "Module" }, ), ), - t8 = `{ + n8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x14c3bbfa" }`, - n8 = Object.freeze( + r8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: t8 }, + { __proto__: null, default: n8 }, Symbol.toStringTag, { value: "Module" }, ), ), - r8 = `{ + o8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x1e3a66b" }`, - o8 = Object.freeze( + a8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: r8 }, + { __proto__: null, default: o8 }, Symbol.toStringTag, { value: "Module" }, ), ), - a8 = `{ + i8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x159fee5" }`, - i8 = Object.freeze( + s8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: a8 }, + { __proto__: null, default: i8 }, Symbol.toStringTag, { value: "Module" }, ), ), - s8 = `{ + l8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x82ee7dd" }`, - l8 = Object.freeze( + c8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: s8 }, + { __proto__: null, default: l8 }, Symbol.toStringTag, { value: "Module" }, ), ), - c8 = `{ + u8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x4582eef" }`, - u8 = Object.freeze( + d8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: c8 }, + { __proto__: null, default: u8 }, Symbol.toStringTag, { value: "Module" }, ), ), - d8 = `{ + f8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0xa4b1" }`, - f8 = Object.freeze( + p8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: d8 }, + { __proto__: null, default: f8 }, Symbol.toStringTag, { value: "Module" }, ), ), - p8 = `{ + h8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x2105" }`, - h8 = Object.freeze( + m8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: p8 }, + { __proto__: null, default: h8 }, Symbol.toStringTag, { value: "Module" }, ), ), - m8 = `{ + g8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x1" }`, - g8 = Object.freeze( + b8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: m8 }, + { __proto__: null, default: g8 }, Symbol.toStringTag, { value: "Module" }, ), ), - b8 = `{ + v8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0xa" }`, - v8 = Object.freeze( + y8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: b8 }, + { __proto__: null, default: v8 }, Symbol.toStringTag, { value: "Module" }, ), ), - y8 = `{ + _8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x89" }`, - _8 = Object.freeze( + x8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: y8 }, + { __proto__: null, default: _8 }, Symbol.toStringTag, { value: "Module" }, ), ), - x8 = `{ + S8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x64a3" }`, - S8 = Object.freeze( + w8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: x8 }, + { __proto__: null, default: S8 }, Symbol.toStringTag, { value: "Module" }, ), ), - w8 = `{ + k8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x5208" }`, - k8 = Object.freeze( + C8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: w8 }, + { __proto__: null, default: k8 }, Symbol.toStringTag, { value: "Module" }, ), ), - C8 = `{ + P8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x5208" }`, - P8 = Object.freeze( + O8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: C8 }, + { __proto__: null, default: P8 }, Symbol.toStringTag, { value: "Module" }, ), ), - O8 = `{ + E8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x5208" }`, - E8 = Object.freeze( + T8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: O8 }, + { __proto__: null, default: E8 }, Symbol.toStringTag, { value: "Module" }, ), ), - T8 = `{ + j8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x5208" }`, - j8 = Object.freeze( + I8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: T8 }, + { __proto__: null, default: j8 }, Symbol.toStringTag, { value: "Module" }, ), ), - I8 = `{ + F8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x989680" }`, - F8 = Object.freeze( + R8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: I8 }, + { __proto__: null, default: F8 }, Symbol.toStringTag, { value: "Module" }, ), ), - R8 = `{ + M8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x4c539c" }`, - M8 = Object.freeze( + N8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: R8 }, + { __proto__: null, default: M8 }, Symbol.toStringTag, { value: "Module" }, ), ), - N8 = `{ + B8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x5b377580e" }`, - B8 = Object.freeze( + L8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: N8 }, + { __proto__: null, default: B8 }, Symbol.toStringTag, { value: "Module" }, ), ), - L8 = `{ + $8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0xf55cd" }`, - $8 = Object.freeze( + A8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: L8 }, + { __proto__: null, default: $8 }, Symbol.toStringTag, { value: "Module" }, ), ), - A8 = `{ + D8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x60db8841a" }`, - D8 = Object.freeze( + z8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: A8 }, + { __proto__: null, default: D8 }, Symbol.toStringTag, { value: "Module" }, ), ), - z8 = `{ + H8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x0" }`, - H8 = Object.freeze( + V8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: z8 }, + { __proto__: null, default: H8 }, Symbol.toStringTag, { value: "Module" }, ), ), - V8 = `{ + U8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x0" }`, - U8 = Object.freeze( + G8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: V8 }, + { __proto__: null, default: U8 }, Symbol.toStringTag, { value: "Module" }, ), ), - G8 = `{ + q8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0xcd5" }`, - q8 = Object.freeze( + W8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: G8 }, + { __proto__: null, default: q8 }, Symbol.toStringTag, { value: "Module" }, ), ), - W8 = `{ + K8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x0" }`, - K8 = Object.freeze( + X8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: W8 }, + { __proto__: null, default: K8 }, Symbol.toStringTag, { value: "Module" }, ), ), - X8 = `{ + Q8 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x41d6" }`, - Q8 = Object.freeze( + Y8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: X8 }, + { __proto__: null, default: Q8 }, Symbol.toStringTag, { value: "Module" }, ), ), - Y8 = `{ + Z8 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -24718,14 +24718,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "uncles": [] } }`, - Z8 = Object.freeze( + J8 = Object.freeze( Object.defineProperty( - { __proto__: null, default: Y8 }, + { __proto__: null, default: Z8 }, Symbol.toStringTag, { value: "Module" }, ), ), - J8 = `{ + e9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -24753,14 +24753,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ] } }`, - e9 = Object.freeze( + t9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: J8 }, + { __proto__: null, default: e9 }, Symbol.toStringTag, { value: "Module" }, ), ), - t9 = `{ + n9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -24785,14 +24785,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "transactions": [] } }`, - n9 = Object.freeze( + r9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: t9 }, + { __proto__: null, default: n9 }, Symbol.toStringTag, { value: "Module" }, ), ), - r9 = `{ + o9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -24819,14 +24819,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "uncles": [] } }`, - o9 = Object.freeze( + a9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: r9 }, + { __proto__: null, default: o9 }, Symbol.toStringTag, { value: "Module" }, ), ), - a9 = `{ + i9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -24851,14 +24851,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "uncles": [] } }`, - i9 = Object.freeze( + s9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: a9 }, + { __proto__: null, default: i9 }, Symbol.toStringTag, { value: "Module" }, ), ), - s9 = `{ + l9 = `{ "jsonrpc": "2.0", "id": 1, "result": [ @@ -24902,14 +24902,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - l9 = Object.freeze( + c9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: s9 }, + { __proto__: null, default: l9 }, Symbol.toStringTag, { value: "Module" }, ), ), - c9 = `{ + u9 = `{ "jsonrpc": "2.0", "id": 1, "result": [ @@ -24961,14 +24961,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - u9 = Object.freeze( + d9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: c9 }, + { __proto__: null, default: u9 }, Symbol.toStringTag, { value: "Module" }, ), ), - d9 = `{ + f9 = `{ "jsonrpc": "2.0", "id": "1", "result": [ @@ -25027,14 +25027,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - f9 = Object.freeze( + p9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: d9 }, + { __proto__: null, default: f9 }, Symbol.toStringTag, { value: "Module" }, ), ), - p9 = `{ + h9 = `{ "jsonrpc": "2.0", "id": 1, "result": [ @@ -25080,14 +25080,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - h9 = Object.freeze( + m9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: p9 }, + { __proto__: null, default: h9 }, Symbol.toStringTag, { value: "Module" }, ), ), - m9 = `{ + g9 = `{ "jsonrpc": "2.0", "id": 1, "result": [ @@ -25141,14 +25141,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - g9 = Object.freeze( + b9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: m9 }, + { __proto__: null, default: g9 }, Symbol.toStringTag, { value: "Module" }, ), ), - b9 = `{ + v9 = `{ "jsonrpc": "2.0", "id": "1", "result": [ @@ -25180,14 +25180,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - v9 = Object.freeze( + y9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: b9 }, + { __proto__: null, default: v9 }, Symbol.toStringTag, { value: "Module" }, ), ), - y9 = `{ + _9 = `{ "jsonrpc": "2.0", "id": "1", "result": [ @@ -25219,14 +25219,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - _9 = Object.freeze( + x9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: y9 }, + { __proto__: null, default: _9 }, Symbol.toStringTag, { value: "Module" }, ), ), - x9 = `{ + S9 = `{ "jsonrpc": "2.0", "id": "1", "result": [ @@ -25265,14 +25265,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ] } `, - S9 = Object.freeze( + w9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: x9 }, + { __proto__: null, default: S9 }, Symbol.toStringTag, { value: "Module" }, ), ), - w9 = `{ + k9 = `{ "jsonrpc": "2.0", "id": "1", "result": [ @@ -25304,14 +25304,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - k9 = Object.freeze( + C9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: w9 }, + { __proto__: null, default: k9 }, Symbol.toStringTag, { value: "Module" }, ), ), - C9 = `{ + P9 = `{ "jsonrpc": "2.0", "id": "1", "result": [ @@ -25343,14 +25343,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => } ] }`, - P9 = Object.freeze( + O9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: C9 }, + { __proto__: null, default: P9 }, Symbol.toStringTag, { value: "Module" }, ), ), - O9 = `{ + E9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25376,14 +25376,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "yParity": "0x0" } }`, - E9 = Object.freeze( + T9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: O9 }, + { __proto__: null, default: E9 }, Symbol.toStringTag, { value: "Module" }, ), ), - T9 = `{ + j9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25409,14 +25409,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "gasPrice": "0xd6946" } }`, - j9 = Object.freeze( + I9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: T9 }, + { __proto__: null, default: j9 }, Symbol.toStringTag, { value: "Module" }, ), ), - I9 = `{ + F9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25442,14 +25442,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "gasPrice": "0x6c1954f4" } }`, - F9 = Object.freeze( + R9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: I9 }, + { __proto__: null, default: F9 }, Symbol.toStringTag, { value: "Module" }, ), ), - R9 = `{ + M9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25475,14 +25475,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "yParity": "0x0" } }`, - M9 = Object.freeze( + N9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: R9 }, + { __proto__: null, default: M9 }, Symbol.toStringTag, { value: "Module" }, ), ), - N9 = `{ + B9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25508,74 +25508,74 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "s": "0x2f710024ce850f65f35345132d2b551d53a84f21cb07e05e0c1aaa614a3cd485" } }`, - B9 = Object.freeze( + L9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: N9 }, + { __proto__: null, default: B9 }, Symbol.toStringTag, { value: "Module" }, ), ), - L9 = `{ + $9 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x15c29" }`, - $9 = Object.freeze( + A9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: L9 }, + { __proto__: null, default: $9 }, Symbol.toStringTag, { value: "Module" }, ), ), - A9 = `{ + D9 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x5ae51f" }`, - D9 = Object.freeze( + z9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: A9 }, + { __proto__: null, default: D9 }, Symbol.toStringTag, { value: "Module" }, ), ), - z9 = `{ + H9 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x21a" }`, - H9 = Object.freeze( + V9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: z9 }, + { __proto__: null, default: H9 }, Symbol.toStringTag, { value: "Module" }, ), ), - V9 = `{ + U9 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x455ff" }`, - U9 = Object.freeze( + G9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: V9 }, + { __proto__: null, default: U9 }, Symbol.toStringTag, { value: "Module" }, ), ), - G9 = `{ + q9 = `{ "jsonrpc": "2.0", "id": 1, "result": "0x513" }`, - q9 = Object.freeze( + W9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: G9 }, + { __proto__: null, default: q9 }, Symbol.toStringTag, { value: "Module" }, ), ), - W9 = `{ + K9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25631,14 +25631,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "type": "0x2" } }`, - K9 = Object.freeze( + X9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: W9 }, + { __proto__: null, default: K9 }, Symbol.toStringTag, { value: "Module" }, ), ), - X9 = `{ + Q9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25664,14 +25664,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "l1BlobBaseFeeScalar": "0x101c12" } }`, - Q9 = Object.freeze( + Y9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: X9 }, + { __proto__: null, default: Q9 }, Symbol.toStringTag, { value: "Module" }, ), ), - Y9 = `{ + Z9 = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25845,14 +25845,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "contractAddress": null } }`, - Z9 = Object.freeze( + J9 = Object.freeze( Object.defineProperty( - { __proto__: null, default: Y9 }, + { __proto__: null, default: Z9 }, Symbol.toStringTag, { value: "Module" }, ), ), - J9 = `{ + ew = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25878,14 +25878,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "type": "0x2" } }`, - ew = Object.freeze( + tw = Object.freeze( Object.defineProperty( - { __proto__: null, default: J9 }, + { __proto__: null, default: ew }, Symbol.toStringTag, { value: "Module" }, ), ), - tw = `{ + nw = `{ "jsonrpc": "2.0", "id": 1, "result": { @@ -25964,14 +25964,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => "type": "0x2" } }`, - nw = Object.freeze( + rw = Object.freeze( Object.defineProperty( - { __proto__: null, default: tw }, + { __proto__: null, default: nw }, Symbol.toStringTag, { value: "Module" }, ), ), - rw = `{ + ow = `{ "jsonrpc": "2.0", "result": { "context": { @@ -25989,14 +25989,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => }, "id": 1 }`, - ow = Object.freeze( + aw = Object.freeze( Object.defineProperty( - { __proto__: null, default: rw }, + { __proto__: null, default: ow }, Symbol.toStringTag, { value: "Module" }, ), ), - aw = `{ + iw = `{ "jsonrpc": "2.0", "result": { "context": { @@ -26007,14 +26007,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => }, "id": 1 }`, - iw = Object.freeze( + sw = Object.freeze( Object.defineProperty( - { __proto__: null, default: aw }, + { __proto__: null, default: iw }, Symbol.toStringTag, { value: "Module" }, ), ), - sw = `{ + lw = `{ "jsonrpc": "2.0", "result": { "context": { @@ -26028,14 +26028,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => }, "id": 1 }`, - lw = Object.freeze( + cw = Object.freeze( Object.defineProperty( - { __proto__: null, default: sw }, + { __proto__: null, default: lw }, Symbol.toStringTag, { value: "Module" }, ), ), - cw = `{ + uw = `{ "jsonrpc": "2.0", "result": [ { @@ -26049,14 +26049,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => ], "id": 1 }`, - uw = Object.freeze( + dw = Object.freeze( Object.defineProperty( - { __proto__: null, default: cw }, + { __proto__: null, default: uw }, Symbol.toStringTag, { value: "Module" }, ), ), - dw = `{ + fw = `{ "jsonrpc": "2.0", "result": { "context": { @@ -26072,14 +26072,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => }, "id": 1 }`, - fw = Object.freeze( + pw = Object.freeze( Object.defineProperty( - { __proto__: null, default: dw }, + { __proto__: null, default: fw }, Symbol.toStringTag, { value: "Module" }, ), ), - pw = `{ + hw = `{ "jsonrpc": "2.0", "result": { "context": { @@ -26149,14 +26149,14 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => }, "id": 1 }`, - hw = Object.freeze( + mw = Object.freeze( Object.defineProperty( - { __proto__: null, default: pw }, + { __proto__: null, default: hw }, Symbol.toStringTag, { value: "Module" }, ), ), - mw = `{ + gw = `{ "jsonrpc": "2.0", "result": { "blockTime": 1750178045, @@ -26253,9 +26253,9 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => }, "id": 1 }`, - gw = Object.freeze( + bw = Object.freeze( Object.defineProperty( - { __proto__: null, default: mw }, + { __proto__: null, default: gw }, Symbol.toStringTag, { value: "Module" }, ), @@ -26267,7 +26267,7 @@ var Rc = ((n) => ( (n.JSON = "json"), n ))(Rc || {}); -const bw = [ +const vw = [ { value: "bash", label: "curl" }, { value: "json", label: "JSON" }, ]; @@ -26280,7 +26280,7 @@ var go = ((n) => ( (n.polygonMainnet = "polygon-mainnet"), n ))(go || {}); -const vw = [ +const yw = [ { value: "ethereum-mainnet", label: "Ethereum" }, { value: "arb-mainnet", label: "Arbitrum" }, { value: "base-mainnet", label: "Base" }, @@ -26311,7 +26311,7 @@ var ei = ((n) => ( (n.getTransaction = "getTransaction"), n ))(ei || {}); -const yw = [ +const _w = [ "getTokenAccountsByOwner", "getTokenAccountBalance", "getLatestBlockhash", @@ -26333,147 +26333,147 @@ const yw = [ "eth_chainId", "eth_blockNumber", ], - _w = ["alchemy_getAssetTransfers", "alchemy_getTokenBalances"], + xw = ["alchemy_getAssetTransfers", "alchemy_getTokenBalances"], Ih = Object.assign({ "./code-samples/alchemy_getAssetTransfers/bash/ethereum-mainnet/request": - F3, - "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/request": M3, - "./code-samples/eth_blockNumber/bash/arb-mainnet/request": B3, - "./code-samples/eth_blockNumber/bash/base-mainnet/request": $3, - "./code-samples/eth_blockNumber/bash/ethereum-mainnet/request": D3, - "./code-samples/eth_blockNumber/bash/opt-mainnet/request": H3, - "./code-samples/eth_blockNumber/bash/polygon-mainnet/request": U3, - "./code-samples/eth_chainId/bash/arb-mainnet/request": q3, - "./code-samples/eth_chainId/bash/base-mainnet/request": K3, - "./code-samples/eth_chainId/bash/ethereum-mainnet/request": Q3, - "./code-samples/eth_chainId/bash/opt-mainnet/request": Z3, - "./code-samples/eth_chainId/bash/polygon-mainnet/request": eS, - "./code-samples/eth_estimateGas/bash/arb-mainnet/request": nS, - "./code-samples/eth_estimateGas/bash/base-mainnet/request": oS, - "./code-samples/eth_estimateGas/bash/ethereum-mainnet/request": iS, - "./code-samples/eth_estimateGas/bash/opt-mainnet/request": lS, - "./code-samples/eth_estimateGas/bash/polygon-mainnet/request": uS, - "./code-samples/eth_gasPrice/bash/arb-mainnet/request": fS, - "./code-samples/eth_gasPrice/bash/base-mainnet/request": hS, - "./code-samples/eth_gasPrice/bash/ethereum-mainnet/request": gS, - "./code-samples/eth_gasPrice/bash/opt-mainnet/request": vS, - "./code-samples/eth_gasPrice/bash/polygon-mainnet/request": _S, - "./code-samples/eth_getBalance/bash/arb-mainnet/request": SS, - "./code-samples/eth_getBalance/bash/base-mainnet/request": kS, - "./code-samples/eth_getBalance/bash/ethereum-mainnet/request": PS, - "./code-samples/eth_getBalance/bash/opt-mainnet/request": ES, - "./code-samples/eth_getBalance/bash/polygon-mainnet/request": jS, - "./code-samples/eth_getBlockByNumber/bash/arb-mainnet/request": FS, - "./code-samples/eth_getBlockByNumber/bash/base-mainnet/request": MS, - "./code-samples/eth_getBlockByNumber/bash/ethereum-mainnet/request": BS, - "./code-samples/eth_getBlockByNumber/bash/opt-mainnet/request": $S, - "./code-samples/eth_getBlockByNumber/bash/polygon-mainnet/request": DS, - "./code-samples/eth_getBlockReceipts/bash/arb-mainnet/request": HS, - "./code-samples/eth_getBlockReceipts/bash/base-mainnet/request": US, - "./code-samples/eth_getBlockReceipts/bash/ethereum-mainnet/request": qS, - "./code-samples/eth_getBlockReceipts/bash/opt-mainnet/request": KS, - "./code-samples/eth_getBlockReceipts/bash/polygon-mainnet/request": QS, - "./code-samples/eth_getLogs/bash/arb-mainnet/request": ZS, - "./code-samples/eth_getLogs/bash/base-mainnet/request": e6, - "./code-samples/eth_getLogs/bash/ethereum-mainnet/request": n6, - "./code-samples/eth_getLogs/bash/opt-mainnet/request": o6, - "./code-samples/eth_getLogs/bash/polygon-mainnet/request": i6, - "./code-samples/eth_getTransactionByHash/bash/arb-mainnet/request": l6, - "./code-samples/eth_getTransactionByHash/bash/base-mainnet/request": u6, - "./code-samples/eth_getTransactionByHash/bash/ethereum-mainnet/request": f6, - "./code-samples/eth_getTransactionByHash/bash/opt-mainnet/request": h6, - "./code-samples/eth_getTransactionByHash/bash/polygon-mainnet/request": g6, - "./code-samples/eth_getTransactionCount/bash/arb-mainnet/request": v6, - "./code-samples/eth_getTransactionCount/bash/base-mainnet/request": _6, - "./code-samples/eth_getTransactionCount/bash/ethereum-mainnet/request": S6, - "./code-samples/eth_getTransactionCount/bash/opt-mainnet/request": k6, - "./code-samples/eth_getTransactionCount/bash/polygon-mainnet/request": P6, - "./code-samples/eth_getTransactionReceipt/bash/arb-mainnet/request": E6, - "./code-samples/eth_getTransactionReceipt/bash/base-mainnet/request": j6, + R3, + "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/request": N3, + "./code-samples/eth_blockNumber/bash/arb-mainnet/request": L3, + "./code-samples/eth_blockNumber/bash/base-mainnet/request": A3, + "./code-samples/eth_blockNumber/bash/ethereum-mainnet/request": z3, + "./code-samples/eth_blockNumber/bash/opt-mainnet/request": V3, + "./code-samples/eth_blockNumber/bash/polygon-mainnet/request": G3, + "./code-samples/eth_chainId/bash/arb-mainnet/request": W3, + "./code-samples/eth_chainId/bash/base-mainnet/request": X3, + "./code-samples/eth_chainId/bash/ethereum-mainnet/request": Y3, + "./code-samples/eth_chainId/bash/opt-mainnet/request": J3, + "./code-samples/eth_chainId/bash/polygon-mainnet/request": tS, + "./code-samples/eth_estimateGas/bash/arb-mainnet/request": rS, + "./code-samples/eth_estimateGas/bash/base-mainnet/request": aS, + "./code-samples/eth_estimateGas/bash/ethereum-mainnet/request": sS, + "./code-samples/eth_estimateGas/bash/opt-mainnet/request": cS, + "./code-samples/eth_estimateGas/bash/polygon-mainnet/request": dS, + "./code-samples/eth_gasPrice/bash/arb-mainnet/request": pS, + "./code-samples/eth_gasPrice/bash/base-mainnet/request": mS, + "./code-samples/eth_gasPrice/bash/ethereum-mainnet/request": bS, + "./code-samples/eth_gasPrice/bash/opt-mainnet/request": yS, + "./code-samples/eth_gasPrice/bash/polygon-mainnet/request": xS, + "./code-samples/eth_getBalance/bash/arb-mainnet/request": wS, + "./code-samples/eth_getBalance/bash/base-mainnet/request": CS, + "./code-samples/eth_getBalance/bash/ethereum-mainnet/request": OS, + "./code-samples/eth_getBalance/bash/opt-mainnet/request": TS, + "./code-samples/eth_getBalance/bash/polygon-mainnet/request": IS, + "./code-samples/eth_getBlockByNumber/bash/arb-mainnet/request": RS, + "./code-samples/eth_getBlockByNumber/bash/base-mainnet/request": NS, + "./code-samples/eth_getBlockByNumber/bash/ethereum-mainnet/request": LS, + "./code-samples/eth_getBlockByNumber/bash/opt-mainnet/request": AS, + "./code-samples/eth_getBlockByNumber/bash/polygon-mainnet/request": zS, + "./code-samples/eth_getBlockReceipts/bash/arb-mainnet/request": VS, + "./code-samples/eth_getBlockReceipts/bash/base-mainnet/request": GS, + "./code-samples/eth_getBlockReceipts/bash/ethereum-mainnet/request": WS, + "./code-samples/eth_getBlockReceipts/bash/opt-mainnet/request": XS, + "./code-samples/eth_getBlockReceipts/bash/polygon-mainnet/request": YS, + "./code-samples/eth_getLogs/bash/arb-mainnet/request": JS, + "./code-samples/eth_getLogs/bash/base-mainnet/request": t6, + "./code-samples/eth_getLogs/bash/ethereum-mainnet/request": r6, + "./code-samples/eth_getLogs/bash/opt-mainnet/request": a6, + "./code-samples/eth_getLogs/bash/polygon-mainnet/request": s6, + "./code-samples/eth_getTransactionByHash/bash/arb-mainnet/request": c6, + "./code-samples/eth_getTransactionByHash/bash/base-mainnet/request": d6, + "./code-samples/eth_getTransactionByHash/bash/ethereum-mainnet/request": p6, + "./code-samples/eth_getTransactionByHash/bash/opt-mainnet/request": m6, + "./code-samples/eth_getTransactionByHash/bash/polygon-mainnet/request": b6, + "./code-samples/eth_getTransactionCount/bash/arb-mainnet/request": y6, + "./code-samples/eth_getTransactionCount/bash/base-mainnet/request": x6, + "./code-samples/eth_getTransactionCount/bash/ethereum-mainnet/request": w6, + "./code-samples/eth_getTransactionCount/bash/opt-mainnet/request": C6, + "./code-samples/eth_getTransactionCount/bash/polygon-mainnet/request": O6, + "./code-samples/eth_getTransactionReceipt/bash/arb-mainnet/request": T6, + "./code-samples/eth_getTransactionReceipt/bash/base-mainnet/request": I6, "./code-samples/eth_getTransactionReceipt/bash/ethereum-mainnet/request": - F6, - "./code-samples/eth_getTransactionReceipt/bash/opt-mainnet/request": M6, - "./code-samples/eth_getTransactionReceipt/bash/polygon-mainnet/request": B6, - "./code-samples/getAccountInfo/bash/solana-mainnet/request": $6, - "./code-samples/getBalance/bash/solana-mainnet/request": D6, - "./code-samples/getLatestBlockhash/bash/solana-mainnet/request": H6, - "./code-samples/getSignaturesForAddress/bash/solana-mainnet/request": U6, - "./code-samples/getTokenAccountBalance/bash/solana-mainnet/request": q6, - "./code-samples/getTokenAccountsByOwner/bash/solana-mainnet/request": K6, - "./code-samples/getTransaction/bash/solana-mainnet/request": Q6, + R6, + "./code-samples/eth_getTransactionReceipt/bash/opt-mainnet/request": N6, + "./code-samples/eth_getTransactionReceipt/bash/polygon-mainnet/request": L6, + "./code-samples/getAccountInfo/bash/solana-mainnet/request": A6, + "./code-samples/getBalance/bash/solana-mainnet/request": z6, + "./code-samples/getLatestBlockhash/bash/solana-mainnet/request": V6, + "./code-samples/getSignaturesForAddress/bash/solana-mainnet/request": G6, + "./code-samples/getTokenAccountBalance/bash/solana-mainnet/request": W6, + "./code-samples/getTokenAccountsByOwner/bash/solana-mainnet/request": X6, + "./code-samples/getTransaction/bash/solana-mainnet/request": Y6, }), Fh = Object.assign({ "./code-samples/alchemy_getAssetTransfers/bash/ethereum-mainnet/response": - Z6, + J6, "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/response": - e8, - "./code-samples/eth_blockNumber/bash/arb-mainnet/response": n8, - "./code-samples/eth_blockNumber/bash/base-mainnet/response": o8, - "./code-samples/eth_blockNumber/bash/ethereum-mainnet/response": i8, - "./code-samples/eth_blockNumber/bash/opt-mainnet/response": l8, - "./code-samples/eth_blockNumber/bash/polygon-mainnet/response": u8, - "./code-samples/eth_chainId/bash/arb-mainnet/response": f8, - "./code-samples/eth_chainId/bash/base-mainnet/response": h8, - "./code-samples/eth_chainId/bash/ethereum-mainnet/response": g8, - "./code-samples/eth_chainId/bash/opt-mainnet/response": v8, - "./code-samples/eth_chainId/bash/polygon-mainnet/response": _8, - "./code-samples/eth_estimateGas/bash/arb-mainnet/response": S8, - "./code-samples/eth_estimateGas/bash/base-mainnet/response": k8, - "./code-samples/eth_estimateGas/bash/ethereum-mainnet/response": P8, - "./code-samples/eth_estimateGas/bash/opt-mainnet/response": E8, - "./code-samples/eth_estimateGas/bash/polygon-mainnet/response": j8, - "./code-samples/eth_gasPrice/bash/arb-mainnet/response": F8, - "./code-samples/eth_gasPrice/bash/base-mainnet/response": M8, - "./code-samples/eth_gasPrice/bash/ethereum-mainnet/response": B8, - "./code-samples/eth_gasPrice/bash/opt-mainnet/response": $8, - "./code-samples/eth_gasPrice/bash/polygon-mainnet/response": D8, - "./code-samples/eth_getBalance/bash/arb-mainnet/response": H8, - "./code-samples/eth_getBalance/bash/base-mainnet/response": U8, - "./code-samples/eth_getBalance/bash/ethereum-mainnet/response": q8, - "./code-samples/eth_getBalance/bash/opt-mainnet/response": K8, - "./code-samples/eth_getBalance/bash/polygon-mainnet/response": Q8, - "./code-samples/eth_getBlockByNumber/bash/arb-mainnet/response": Z8, - "./code-samples/eth_getBlockByNumber/bash/base-mainnet/response": e9, - "./code-samples/eth_getBlockByNumber/bash/ethereum-mainnet/response": n9, - "./code-samples/eth_getBlockByNumber/bash/opt-mainnet/response": o9, - "./code-samples/eth_getBlockByNumber/bash/polygon-mainnet/response": i9, - "./code-samples/eth_getBlockReceipts/bash/arb-mainnet/response": l9, - "./code-samples/eth_getBlockReceipts/bash/base-mainnet/response": u9, - "./code-samples/eth_getBlockReceipts/bash/ethereum-mainnet/response": f9, - "./code-samples/eth_getBlockReceipts/bash/opt-mainnet/response": h9, - "./code-samples/eth_getBlockReceipts/bash/polygon-mainnet/response": g9, - "./code-samples/eth_getLogs/bash/arb-mainnet/response": v9, - "./code-samples/eth_getLogs/bash/base-mainnet/response": _9, - "./code-samples/eth_getLogs/bash/ethereum-mainnet/response": S9, - "./code-samples/eth_getLogs/bash/opt-mainnet/response": k9, - "./code-samples/eth_getLogs/bash/polygon-mainnet/response": P9, - "./code-samples/eth_getTransactionByHash/bash/arb-mainnet/response": E9, - "./code-samples/eth_getTransactionByHash/bash/base-mainnet/response": j9, + t8, + "./code-samples/eth_blockNumber/bash/arb-mainnet/response": r8, + "./code-samples/eth_blockNumber/bash/base-mainnet/response": a8, + "./code-samples/eth_blockNumber/bash/ethereum-mainnet/response": s8, + "./code-samples/eth_blockNumber/bash/opt-mainnet/response": c8, + "./code-samples/eth_blockNumber/bash/polygon-mainnet/response": d8, + "./code-samples/eth_chainId/bash/arb-mainnet/response": p8, + "./code-samples/eth_chainId/bash/base-mainnet/response": m8, + "./code-samples/eth_chainId/bash/ethereum-mainnet/response": b8, + "./code-samples/eth_chainId/bash/opt-mainnet/response": y8, + "./code-samples/eth_chainId/bash/polygon-mainnet/response": x8, + "./code-samples/eth_estimateGas/bash/arb-mainnet/response": w8, + "./code-samples/eth_estimateGas/bash/base-mainnet/response": C8, + "./code-samples/eth_estimateGas/bash/ethereum-mainnet/response": O8, + "./code-samples/eth_estimateGas/bash/opt-mainnet/response": T8, + "./code-samples/eth_estimateGas/bash/polygon-mainnet/response": I8, + "./code-samples/eth_gasPrice/bash/arb-mainnet/response": R8, + "./code-samples/eth_gasPrice/bash/base-mainnet/response": N8, + "./code-samples/eth_gasPrice/bash/ethereum-mainnet/response": L8, + "./code-samples/eth_gasPrice/bash/opt-mainnet/response": A8, + "./code-samples/eth_gasPrice/bash/polygon-mainnet/response": z8, + "./code-samples/eth_getBalance/bash/arb-mainnet/response": V8, + "./code-samples/eth_getBalance/bash/base-mainnet/response": G8, + "./code-samples/eth_getBalance/bash/ethereum-mainnet/response": W8, + "./code-samples/eth_getBalance/bash/opt-mainnet/response": X8, + "./code-samples/eth_getBalance/bash/polygon-mainnet/response": Y8, + "./code-samples/eth_getBlockByNumber/bash/arb-mainnet/response": J8, + "./code-samples/eth_getBlockByNumber/bash/base-mainnet/response": t9, + "./code-samples/eth_getBlockByNumber/bash/ethereum-mainnet/response": r9, + "./code-samples/eth_getBlockByNumber/bash/opt-mainnet/response": a9, + "./code-samples/eth_getBlockByNumber/bash/polygon-mainnet/response": s9, + "./code-samples/eth_getBlockReceipts/bash/arb-mainnet/response": c9, + "./code-samples/eth_getBlockReceipts/bash/base-mainnet/response": d9, + "./code-samples/eth_getBlockReceipts/bash/ethereum-mainnet/response": p9, + "./code-samples/eth_getBlockReceipts/bash/opt-mainnet/response": m9, + "./code-samples/eth_getBlockReceipts/bash/polygon-mainnet/response": b9, + "./code-samples/eth_getLogs/bash/arb-mainnet/response": y9, + "./code-samples/eth_getLogs/bash/base-mainnet/response": x9, + "./code-samples/eth_getLogs/bash/ethereum-mainnet/response": w9, + "./code-samples/eth_getLogs/bash/opt-mainnet/response": C9, + "./code-samples/eth_getLogs/bash/polygon-mainnet/response": O9, + "./code-samples/eth_getTransactionByHash/bash/arb-mainnet/response": T9, + "./code-samples/eth_getTransactionByHash/bash/base-mainnet/response": I9, "./code-samples/eth_getTransactionByHash/bash/ethereum-mainnet/response": - F9, - "./code-samples/eth_getTransactionByHash/bash/opt-mainnet/response": M9, - "./code-samples/eth_getTransactionByHash/bash/polygon-mainnet/response": B9, - "./code-samples/eth_getTransactionCount/bash/arb-mainnet/response": $9, - "./code-samples/eth_getTransactionCount/bash/base-mainnet/response": D9, - "./code-samples/eth_getTransactionCount/bash/ethereum-mainnet/response": H9, - "./code-samples/eth_getTransactionCount/bash/opt-mainnet/response": U9, - "./code-samples/eth_getTransactionCount/bash/polygon-mainnet/response": q9, - "./code-samples/eth_getTransactionReceipt/bash/arb-mainnet/response": K9, - "./code-samples/eth_getTransactionReceipt/bash/base-mainnet/response": Q9, + R9, + "./code-samples/eth_getTransactionByHash/bash/opt-mainnet/response": N9, + "./code-samples/eth_getTransactionByHash/bash/polygon-mainnet/response": L9, + "./code-samples/eth_getTransactionCount/bash/arb-mainnet/response": A9, + "./code-samples/eth_getTransactionCount/bash/base-mainnet/response": z9, + "./code-samples/eth_getTransactionCount/bash/ethereum-mainnet/response": V9, + "./code-samples/eth_getTransactionCount/bash/opt-mainnet/response": G9, + "./code-samples/eth_getTransactionCount/bash/polygon-mainnet/response": W9, + "./code-samples/eth_getTransactionReceipt/bash/arb-mainnet/response": X9, + "./code-samples/eth_getTransactionReceipt/bash/base-mainnet/response": Y9, "./code-samples/eth_getTransactionReceipt/bash/ethereum-mainnet/response": - Z9, - "./code-samples/eth_getTransactionReceipt/bash/opt-mainnet/response": ew, + J9, + "./code-samples/eth_getTransactionReceipt/bash/opt-mainnet/response": tw, "./code-samples/eth_getTransactionReceipt/bash/polygon-mainnet/response": - nw, - "./code-samples/getAccountInfo/bash/solana-mainnet/response": ow, - "./code-samples/getBalance/bash/solana-mainnet/response": iw, - "./code-samples/getLatestBlockhash/bash/solana-mainnet/response": lw, - "./code-samples/getSignaturesForAddress/bash/solana-mainnet/response": uw, - "./code-samples/getTokenAccountBalance/bash/solana-mainnet/response": fw, - "./code-samples/getTokenAccountsByOwner/bash/solana-mainnet/response": hw, - "./code-samples/getTransaction/bash/solana-mainnet/response": gw, + rw, + "./code-samples/getAccountInfo/bash/solana-mainnet/response": aw, + "./code-samples/getBalance/bash/solana-mainnet/response": sw, + "./code-samples/getLatestBlockhash/bash/solana-mainnet/response": cw, + "./code-samples/getSignaturesForAddress/bash/solana-mainnet/response": dw, + "./code-samples/getTokenAccountBalance/bash/solana-mainnet/response": pw, + "./code-samples/getTokenAccountsByOwner/bash/solana-mainnet/response": mw, + "./code-samples/getTransaction/bash/solana-mainnet/response": bw, }); -function xw() { +function Sw() { const n = {}; function t(o) { const a = o.replace("./code-samples/", "").split("/"), @@ -26496,13 +26496,13 @@ function xw() { } return n; } -const Ha = xw(), - Sw = S0.div` +const Ha = Sw(), + ww = S0.div` background-color: ${({ theme: n }) => (n.mode === "dark" ? "#121212" : "#FAFAFA")}; border-radius: 24px; border: ${({ theme: n }) => (n.mode === "dark" ? "1px solid #383838" : "1px solid #EAEAEA")}; `, - ww = S0.div` + kw = S0.div` margin-top: 24px; overflow-x: auto; height: 300px; @@ -26536,7 +26536,7 @@ const Ha = xw(), color: rgba(115, 138, 148, 0.4); } `, - kw = S0.button` + Cw = S0.button` background-color: ${({ theme: n }) => (n.mode === "dark" ? "#1C1C1C" : "#383838")}; color: ${({ theme: n }) => (n.mode === "dark", "#EDEDED")}; padding: 6px 12px; @@ -26549,7 +26549,7 @@ const Ha = xw(), align-self: flex-start; gap: 8px; `, - Cw = S0.div` + Pw = S0.div` display: flex; justify-content: center; align-items: center; @@ -26557,7 +26557,7 @@ const Ha = xw(), height: 300px; width: 100%; `, - Pw = S0.div` + Ow = S0.div` width: 16px; height: 16px; border: 2px solid @@ -26575,7 +26575,7 @@ const Ha = xw(), } } `, - Ow = S0.div` + Ew = S0.div` background-color: ${({ theme: n }) => (n.mode === "dark" ? "#131313" : "#fbfbfb")}; border-radius: 0 0 24px 24px; padding: 24px 32px; @@ -26583,14 +26583,14 @@ const Ha = xw(), display: flex; justify-content: space-between; `, - Ew = (n) => + Tw = (n) => n === go.solanaMainnet - ? yw.map((o) => ({ value: o, label: o })) - : (n === go.ethereumMainnet ? [..._w, ...jh] : jh).map((o) => ({ + ? _w.map((o) => ({ value: o, label: o })) + : (n === go.ethereumMainnet ? [...xw, ...jh] : jh).map((o) => ({ value: o, label: o, })), - Tw = () => { + jw = () => { var K, pe, Se; const [n, t] = Ue.useState( document.documentElement.classList.contains("dark"), @@ -26670,16 +26670,16 @@ const Ha = xw(), Ue.useEffect( () => ( (async () => { - const le = await C_({ + const le = await P_({ langs: [ - Ia(() => Promise.resolve().then(() => Fw), void 0), - Ia(() => Promise.resolve().then(() => Nw), void 0), + Ia(() => Promise.resolve().then(() => Rw), void 0), + Ia(() => Promise.resolve().then(() => Bw), void 0), ], themes: [ - Ia(() => Promise.resolve().then(() => Lw), void 0), - Ia(() => Promise.resolve().then(() => Aw), void 0), + Ia(() => Promise.resolve().then(() => $w), void 0), + Ia(() => Promise.resolve().then(() => Dw), void 0), ], - engine: B_(), + engine: L_(), }); N(le); })(), @@ -26707,14 +26707,14 @@ const Ha = xw(), } })(); }, [S, a, n, $]), - Re.jsxs(L2, { + Re.jsxs($2, { theme: o, children: [ Re.jsx("h3", { className: "mb-6", children: "Query the blockchain instantly", }), - Re.jsxs(Sw, { + Re.jsxs(ww, { children: [ Re.jsxs("div", { style: { padding: "24px 24px 0px" }, @@ -26741,7 +26741,7 @@ const Ha = xw(), }), Re.jsx(ac, { isDark: n, - options: bw.filter((ee) => { + options: vw.filter((ee) => { var ve, xe; const le = (xe = @@ -26759,7 +26759,7 @@ const Ha = xw(), }), Re.jsx(ac, { isDark: n, - options: vw, + options: yw, selectedOption: c, onChange: (ee) => { ee === go.solanaMainnet && ee !== c @@ -26769,7 +26769,7 @@ const Ha = xw(), }), Re.jsx(ac, { isDark: n, - options: Ew(c), + options: Tw(c), selectedOption: h, onChange: (ee) => { R(c, ee); @@ -26777,7 +26777,7 @@ const Ha = xw(), }), ], }), - Re.jsxs(kw, { + Re.jsxs(Cw, { onMouseOver: (ee) => { ee.currentTarget.style.backgroundColor = "#4b5563"; }, @@ -26807,11 +26807,11 @@ const Ha = xw(), ], }), C - ? Re.jsx(Cw, { children: Re.jsx(Pw, {}) }) - : Re.jsx(ww, { dangerouslySetInnerHTML: { __html: L } }), + ? Re.jsx(Pw, { children: Re.jsx(Ow, {}) }) + : Re.jsx(kw, { dangerouslySetInnerHTML: { __html: L } }), ], }), - Re.jsxs(Ow, { + Re.jsxs(Ew, { children: [ Re.jsxs("div", { style: { color: n ? "#EDEDED" : "#111111" }, @@ -26888,25 +26888,29 @@ const Ha = xw(), n.hasChildNodes()) ) return; - Bb.createRoot(n).render( - Re.jsx(Ue.StrictMode, { children: Re.jsx(Tw, {}) }), + Lb.createRoot(n).render( + Re.jsx(Ue.StrictMode, { children: Re.jsx(jw, {}) }), ), (n.style.display = "block"), (o = document.getElementById("builtwithfern")) == null || o.remove(); + }, + Og = async () => { + window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Rh()), + new MutationObserver(async (o) => { + if (!(window.location.pathname.replace(/\/+$/, "") === "/docs")) return; + o.some((d) => { + var m; + const h = d.type === "childList", + f = !( + (m = document.getElementById(Mc)) != null && m.hasChildNodes() + ); + return h && f; + }) && (await Rh()); + }).observe(document.body, { childList: !0, subtree: !0 }); }; -window.addEventListener("popstate", async () => { - window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Rh()), - new MutationObserver(async (o) => { - if (!(window.location.pathname.replace(/\/+$/, "") === "/docs")) return; - o.some((d) => { - var m; - const h = d.type === "childList", - f = !((m = document.getElementById(Mc)) != null && m.hasChildNodes()); - return h && f; - }) && (await Rh()); - }).observe(document.body, { childList: !0, subtree: !0 }); -}); -const jw = Object.freeze({ +Og(); +window.addEventListener("popstate", Og); +const Iw = Object.freeze({ displayName: "Shell", name: "shellscript", patterns: [{ include: "#initial_context" }], @@ -28700,15 +28704,15 @@ const jw = Object.freeze({ embeddedLangs: void 0, aliases: ["bash", "sh", "shell", "zsh"], }), - Iw = [jw], - Fw = Object.freeze( + Fw = [Iw], + Rw = Object.freeze( Object.defineProperty( - { __proto__: null, default: Iw }, + { __proto__: null, default: Fw }, Symbol.toStringTag, { value: "Module" }, ), ), - Rw = Object.freeze({ + Mw = Object.freeze({ displayName: "JSON", name: "json", patterns: [{ include: "#value" }], @@ -28851,34 +28855,34 @@ const jw = Object.freeze({ embeddedLangs: void 0, aliases: void 0, }), - Mw = [Rw], - Nw = Object.freeze( + Nw = [Mw], + Bw = Object.freeze( Object.defineProperty( - { __proto__: null, default: Mw }, + { __proto__: null, default: Nw }, Symbol.toStringTag, { value: "Module" }, ), ), - Bw = Object.freeze( + Lw = Object.freeze( JSON.parse( '{"colors":{"activityBar.activeBorder":"#f9826c","activityBar.background":"#fff","activityBar.border":"#e1e4e8","activityBar.foreground":"#2f363d","activityBar.inactiveForeground":"#959da5","activityBarBadge.background":"#2188ff","activityBarBadge.foreground":"#fff","badge.background":"#dbedff","badge.foreground":"#005cc5","breadcrumb.activeSelectionForeground":"#586069","breadcrumb.focusForeground":"#2f363d","breadcrumb.foreground":"#6a737d","breadcrumbPicker.background":"#fafbfc","button.background":"#159739","button.foreground":"#fff","button.hoverBackground":"#138934","button.secondaryBackground":"#e1e4e8","button.secondaryForeground":"#1b1f23","button.secondaryHoverBackground":"#d1d5da","checkbox.background":"#fafbfc","checkbox.border":"#d1d5da","debugToolBar.background":"#fff","descriptionForeground":"#6a737d","diffEditor.insertedTextBackground":"#34d05822","diffEditor.removedTextBackground":"#d73a4922","dropdown.background":"#fafbfc","dropdown.border":"#e1e4e8","dropdown.foreground":"#2f363d","dropdown.listBackground":"#fff","editor.background":"#fff","editor.findMatchBackground":"#ffdf5d","editor.findMatchHighlightBackground":"#ffdf5d66","editor.focusedStackFrameHighlightBackground":"#28a74525","editor.foldBackground":"#d1d5da11","editor.foreground":"#24292e","editor.inactiveSelectionBackground":"#0366d611","editor.lineHighlightBackground":"#f6f8fa","editor.linkedEditingBackground":"#0366d611","editor.selectionBackground":"#0366d625","editor.selectionHighlightBackground":"#34d05840","editor.selectionHighlightBorder":"#34d05800","editor.stackFrameHighlightBackground":"#ffd33d33","editor.wordHighlightBackground":"#34d05800","editor.wordHighlightBorder":"#24943e99","editor.wordHighlightStrongBackground":"#34d05800","editor.wordHighlightStrongBorder":"#24943e50","editorBracketHighlight.foreground1":"#005cc5","editorBracketHighlight.foreground2":"#e36209","editorBracketHighlight.foreground3":"#5a32a3","editorBracketHighlight.foreground4":"#005cc5","editorBracketHighlight.foreground5":"#e36209","editorBracketHighlight.foreground6":"#5a32a3","editorBracketMatch.background":"#34d05840","editorBracketMatch.border":"#34d05800","editorCursor.foreground":"#044289","editorError.foreground":"#cb2431","editorGroup.border":"#e1e4e8","editorGroupHeader.tabsBackground":"#f6f8fa","editorGroupHeader.tabsBorder":"#e1e4e8","editorGutter.addedBackground":"#28a745","editorGutter.deletedBackground":"#d73a49","editorGutter.modifiedBackground":"#2188ff","editorIndentGuide.activeBackground":"#d7dbe0","editorIndentGuide.background":"#eff2f6","editorLineNumber.activeForeground":"#24292e","editorLineNumber.foreground":"#1b1f234d","editorOverviewRuler.border":"#fff","editorWarning.foreground":"#f9c513","editorWhitespace.foreground":"#d1d5da","editorWidget.background":"#f6f8fa","errorForeground":"#cb2431","focusBorder":"#2188ff","foreground":"#444d56","gitDecoration.addedResourceForeground":"#28a745","gitDecoration.conflictingResourceForeground":"#e36209","gitDecoration.deletedResourceForeground":"#d73a49","gitDecoration.ignoredResourceForeground":"#959da5","gitDecoration.modifiedResourceForeground":"#005cc5","gitDecoration.submoduleResourceForeground":"#959da5","gitDecoration.untrackedResourceForeground":"#28a745","input.background":"#fafbfc","input.border":"#e1e4e8","input.foreground":"#2f363d","input.placeholderForeground":"#959da5","list.activeSelectionBackground":"#e2e5e9","list.activeSelectionForeground":"#2f363d","list.focusBackground":"#cce5ff","list.hoverBackground":"#ebf0f4","list.hoverForeground":"#2f363d","list.inactiveFocusBackground":"#dbedff","list.inactiveSelectionBackground":"#e8eaed","list.inactiveSelectionForeground":"#2f363d","notificationCenterHeader.background":"#e1e4e8","notificationCenterHeader.foreground":"#6a737d","notifications.background":"#fafbfc","notifications.border":"#e1e4e8","notifications.foreground":"#2f363d","notificationsErrorIcon.foreground":"#d73a49","notificationsInfoIcon.foreground":"#005cc5","notificationsWarningIcon.foreground":"#e36209","panel.background":"#f6f8fa","panel.border":"#e1e4e8","panelInput.border":"#e1e4e8","panelTitle.activeBorder":"#f9826c","panelTitle.activeForeground":"#2f363d","panelTitle.inactiveForeground":"#6a737d","pickerGroup.border":"#e1e4e8","pickerGroup.foreground":"#2f363d","progressBar.background":"#2188ff","quickInput.background":"#fafbfc","quickInput.foreground":"#2f363d","scrollbar.shadow":"#6a737d33","scrollbarSlider.activeBackground":"#959da588","scrollbarSlider.background":"#959da533","scrollbarSlider.hoverBackground":"#959da544","settings.headerForeground":"#2f363d","settings.modifiedItemIndicator":"#2188ff","sideBar.background":"#f6f8fa","sideBar.border":"#e1e4e8","sideBar.foreground":"#586069","sideBarSectionHeader.background":"#f6f8fa","sideBarSectionHeader.border":"#e1e4e8","sideBarSectionHeader.foreground":"#2f363d","sideBarTitle.foreground":"#2f363d","statusBar.background":"#fff","statusBar.border":"#e1e4e8","statusBar.debuggingBackground":"#f9826c","statusBar.debuggingForeground":"#fff","statusBar.foreground":"#586069","statusBar.noFolderBackground":"#fff","statusBarItem.prominentBackground":"#e8eaed","statusBarItem.remoteBackground":"#fff","statusBarItem.remoteForeground":"#586069","tab.activeBackground":"#fff","tab.activeBorder":"#fff","tab.activeBorderTop":"#f9826c","tab.activeForeground":"#2f363d","tab.border":"#e1e4e8","tab.hoverBackground":"#fff","tab.inactiveBackground":"#f6f8fa","tab.inactiveForeground":"#6a737d","tab.unfocusedActiveBorder":"#fff","tab.unfocusedActiveBorderTop":"#e1e4e8","tab.unfocusedHoverBackground":"#fff","terminal.ansiBlack":"#24292e","terminal.ansiBlue":"#0366d6","terminal.ansiBrightBlack":"#959da5","terminal.ansiBrightBlue":"#005cc5","terminal.ansiBrightCyan":"#3192aa","terminal.ansiBrightGreen":"#22863a","terminal.ansiBrightMagenta":"#5a32a3","terminal.ansiBrightRed":"#cb2431","terminal.ansiBrightWhite":"#d1d5da","terminal.ansiBrightYellow":"#b08800","terminal.ansiCyan":"#1b7c83","terminal.ansiGreen":"#28a745","terminal.ansiMagenta":"#5a32a3","terminal.ansiRed":"#d73a49","terminal.ansiWhite":"#6a737d","terminal.ansiYellow":"#dbab09","terminal.foreground":"#586069","terminal.tab.activeBorder":"#f9826c","terminalCursor.background":"#d1d5da","terminalCursor.foreground":"#005cc5","textBlockQuote.background":"#fafbfc","textBlockQuote.border":"#e1e4e8","textCodeBlock.background":"#f6f8fa","textLink.activeForeground":"#005cc5","textLink.foreground":"#0366d6","textPreformat.foreground":"#586069","textSeparator.foreground":"#d1d5da","titleBar.activeBackground":"#fff","titleBar.activeForeground":"#2f363d","titleBar.border":"#e1e4e8","titleBar.inactiveBackground":"#f6f8fa","titleBar.inactiveForeground":"#6a737d","tree.indentGuidesStroke":"#e1e4e8","welcomePage.buttonBackground":"#f6f8fa","welcomePage.buttonHoverBackground":"#e1e4e8"},"displayName":"GitHub Light","name":"github-light","semanticHighlighting":true,"tokenColors":[{"scope":["comment","punctuation.definition.comment","string.comment"],"settings":{"foreground":"#6a737d"}},{"scope":["constant","entity.name.constant","variable.other.constant","variable.other.enummember","variable.language"],"settings":{"foreground":"#005cc5"}},{"scope":["entity","entity.name"],"settings":{"foreground":"#6f42c1"}},{"scope":"variable.parameter.function","settings":{"foreground":"#24292e"}},{"scope":"entity.name.tag","settings":{"foreground":"#22863a"}},{"scope":"keyword","settings":{"foreground":"#d73a49"}},{"scope":["storage","storage.type"],"settings":{"foreground":"#d73a49"}},{"scope":["storage.modifier.package","storage.modifier.import","storage.type.java"],"settings":{"foreground":"#24292e"}},{"scope":["string","punctuation.definition.string","string punctuation.section.embedded source"],"settings":{"foreground":"#032f62"}},{"scope":"support","settings":{"foreground":"#005cc5"}},{"scope":"meta.property-name","settings":{"foreground":"#005cc5"}},{"scope":"variable","settings":{"foreground":"#e36209"}},{"scope":"variable.other","settings":{"foreground":"#24292e"}},{"scope":"invalid.broken","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"invalid.deprecated","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"invalid.illegal","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"invalid.unimplemented","settings":{"fontStyle":"italic","foreground":"#b31d28"}},{"scope":"carriage-return","settings":{"background":"#d73a49","content":"^M","fontStyle":"italic underline","foreground":"#fafbfc"}},{"scope":"message.error","settings":{"foreground":"#b31d28"}},{"scope":"string variable","settings":{"foreground":"#005cc5"}},{"scope":["source.regexp","string.regexp"],"settings":{"foreground":"#032f62"}},{"scope":["string.regexp.character-class","string.regexp constant.character.escape","string.regexp source.ruby.embedded","string.regexp string.regexp.arbitrary-repitition"],"settings":{"foreground":"#032f62"}},{"scope":"string.regexp constant.character.escape","settings":{"fontStyle":"bold","foreground":"#22863a"}},{"scope":"support.constant","settings":{"foreground":"#005cc5"}},{"scope":"support.variable","settings":{"foreground":"#005cc5"}},{"scope":"meta.module-reference","settings":{"foreground":"#005cc5"}},{"scope":"punctuation.definition.list.begin.markdown","settings":{"foreground":"#e36209"}},{"scope":["markup.heading","markup.heading entity.name"],"settings":{"fontStyle":"bold","foreground":"#005cc5"}},{"scope":"markup.quote","settings":{"foreground":"#22863a"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#24292e"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#24292e"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline"}},{"scope":["markup.strikethrough"],"settings":{"fontStyle":"strikethrough"}},{"scope":"markup.inline.raw","settings":{"foreground":"#005cc5"}},{"scope":["markup.deleted","meta.diff.header.from-file","punctuation.definition.deleted"],"settings":{"background":"#ffeef0","foreground":"#b31d28"}},{"scope":["markup.inserted","meta.diff.header.to-file","punctuation.definition.inserted"],"settings":{"background":"#f0fff4","foreground":"#22863a"}},{"scope":["markup.changed","punctuation.definition.changed"],"settings":{"background":"#ffebda","foreground":"#e36209"}},{"scope":["markup.ignored","markup.untracked"],"settings":{"background":"#005cc5","foreground":"#f6f8fa"}},{"scope":"meta.diff.range","settings":{"fontStyle":"bold","foreground":"#6f42c1"}},{"scope":"meta.diff.header","settings":{"foreground":"#005cc5"}},{"scope":"meta.separator","settings":{"fontStyle":"bold","foreground":"#005cc5"}},{"scope":"meta.output","settings":{"foreground":"#005cc5"}},{"scope":["brackethighlighter.tag","brackethighlighter.curly","brackethighlighter.round","brackethighlighter.square","brackethighlighter.angle","brackethighlighter.quote"],"settings":{"foreground":"#586069"}},{"scope":"brackethighlighter.unmatched","settings":{"foreground":"#b31d28"}},{"scope":["constant.other.reference.link","string.other.link"],"settings":{"fontStyle":"underline","foreground":"#032f62"}}],"type":"light"}', ), ), - Lw = Object.freeze( + $w = Object.freeze( Object.defineProperty( - { __proto__: null, default: Bw }, + { __proto__: null, default: Lw }, Symbol.toStringTag, { value: "Module" }, ), ), - $w = Object.freeze( + Aw = Object.freeze( JSON.parse( '{"colors":{"activityBar.activeBorder":"#80CBC4","activityBar.background":"#212121","activityBar.border":"#21212160","activityBar.dropBackground":"#f0717880","activityBar.foreground":"#EEFFFF","activityBarBadge.background":"#80CBC4","activityBarBadge.foreground":"#000000","badge.background":"#00000030","badge.foreground":"#545454","breadcrumb.activeSelectionForeground":"#80CBC4","breadcrumb.background":"#212121","breadcrumb.focusForeground":"#EEFFFF","breadcrumb.foreground":"#676767","breadcrumbPicker.background":"#212121","button.background":"#61616150","button.foreground":"#ffffff","debugConsole.errorForeground":"#f07178","debugConsole.infoForeground":"#89DDFF","debugConsole.warningForeground":"#FFCB6B","debugToolBar.background":"#212121","diffEditor.insertedTextBackground":"#89DDFF20","diffEditor.removedTextBackground":"#ff9cac20","dropdown.background":"#212121","dropdown.border":"#FFFFFF10","editor.background":"#212121","editor.findMatchBackground":"#000000","editor.findMatchBorder":"#80CBC4","editor.findMatchHighlight":"#EEFFFF","editor.findMatchHighlightBackground":"#00000050","editor.findMatchHighlightBorder":"#ffffff30","editor.findRangeHighlightBackground":"#FFCB6B30","editor.foreground":"#EEFFFF","editor.lineHighlightBackground":"#00000050","editor.lineHighlightBorder":"#00000000","editor.rangeHighlightBackground":"#FFFFFF0d","editor.selectionBackground":"#61616150","editor.selectionHighlightBackground":"#FFCC0020","editor.wordHighlightBackground":"#ff9cac30","editor.wordHighlightStrongBackground":"#C3E88D30","editorBracketMatch.background":"#212121","editorBracketMatch.border":"#FFCC0050","editorCursor.foreground":"#FFCC00","editorError.foreground":"#f0717870","editorGroup.border":"#00000030","editorGroup.dropBackground":"#f0717880","editorGroup.focusedEmptyBorder":"#f07178","editorGroupHeader.tabsBackground":"#212121","editorGutter.addedBackground":"#C3E88D60","editorGutter.deletedBackground":"#f0717860","editorGutter.modifiedBackground":"#82AAFF60","editorHoverWidget.background":"#212121","editorHoverWidget.border":"#FFFFFF10","editorIndentGuide.activeBackground":"#424242","editorIndentGuide.background":"#42424270","editorInfo.foreground":"#82AAFF70","editorLineNumber.activeForeground":"#676767","editorLineNumber.foreground":"#424242","editorLink.activeForeground":"#EEFFFF","editorMarkerNavigation.background":"#EEFFFF05","editorOverviewRuler.border":"#212121","editorOverviewRuler.errorForeground":"#f0717840","editorOverviewRuler.findMatchForeground":"#80CBC4","editorOverviewRuler.infoForeground":"#82AAFF40","editorOverviewRuler.warningForeground":"#FFCB6B40","editorRuler.foreground":"#424242","editorSuggestWidget.background":"#212121","editorSuggestWidget.border":"#FFFFFF10","editorSuggestWidget.foreground":"#EEFFFF","editorSuggestWidget.highlightForeground":"#80CBC4","editorSuggestWidget.selectedBackground":"#00000050","editorWarning.foreground":"#FFCB6B70","editorWhitespace.foreground":"#EEFFFF40","editorWidget.background":"#212121","editorWidget.border":"#80CBC4","editorWidget.resizeBorder":"#80CBC4","extensionBadge.remoteForeground":"#EEFFFF","extensionButton.prominentBackground":"#C3E88D90","extensionButton.prominentForeground":"#EEFFFF","extensionButton.prominentHoverBackground":"#C3E88D","focusBorder":"#FFFFFF00","foreground":"#EEFFFF","gitDecoration.conflictingResourceForeground":"#FFCB6B90","gitDecoration.deletedResourceForeground":"#f0717890","gitDecoration.ignoredResourceForeground":"#67676790","gitDecoration.modifiedResourceForeground":"#82AAFF90","gitDecoration.untrackedResourceForeground":"#C3E88D90","input.background":"#2B2B2B","input.border":"#FFFFFF10","input.foreground":"#EEFFFF","input.placeholderForeground":"#EEFFFF60","inputOption.activeBackground":"#EEFFFF30","inputOption.activeBorder":"#EEFFFF30","inputValidation.errorBorder":"#f07178","inputValidation.infoBorder":"#82AAFF","inputValidation.warningBorder":"#FFCB6B","list.activeSelectionBackground":"#212121","list.activeSelectionForeground":"#80CBC4","list.dropBackground":"#f0717880","list.focusBackground":"#EEFFFF20","list.focusForeground":"#EEFFFF","list.highlightForeground":"#80CBC4","list.hoverBackground":"#212121","list.hoverForeground":"#FFFFFF","list.inactiveSelectionBackground":"#00000030","list.inactiveSelectionForeground":"#80CBC4","listFilterWidget.background":"#00000030","listFilterWidget.noMatchesOutline":"#00000030","listFilterWidget.outline":"#00000030","menu.background":"#212121","menu.foreground":"#EEFFFF","menu.selectionBackground":"#00000050","menu.selectionBorder":"#00000030","menu.selectionForeground":"#80CBC4","menu.separatorBackground":"#EEFFFF","menubar.selectionBackground":"#00000030","menubar.selectionBorder":"#00000030","menubar.selectionForeground":"#80CBC4","notebook.focusedCellBorder":"#80CBC4","notebook.inactiveFocusedCellBorder":"#80CBC450","notificationLink.foreground":"#80CBC4","notifications.background":"#212121","notifications.foreground":"#EEFFFF","panel.background":"#212121","panel.border":"#21212160","panel.dropBackground":"#EEFFFF","panelTitle.activeBorder":"#80CBC4","panelTitle.activeForeground":"#FFFFFF","panelTitle.inactiveForeground":"#EEFFFF","peekView.border":"#00000030","peekViewEditor.background":"#2B2B2B","peekViewEditor.matchHighlightBackground":"#61616150","peekViewEditorGutter.background":"#2B2B2B","peekViewResult.background":"#2B2B2B","peekViewResult.matchHighlightBackground":"#61616150","peekViewResult.selectionBackground":"#67676770","peekViewTitle.background":"#2B2B2B","peekViewTitleDescription.foreground":"#EEFFFF60","pickerGroup.border":"#FFFFFF1a","pickerGroup.foreground":"#80CBC4","progressBar.background":"#80CBC4","quickInput.background":"#212121","quickInput.foreground":"#676767","quickInput.list.focusBackground":"#EEFFFF20","sash.hoverBorder":"#80CBC450","scrollbar.shadow":"#00000030","scrollbarSlider.activeBackground":"#80CBC4","scrollbarSlider.background":"#EEFFFF20","scrollbarSlider.hoverBackground":"#EEFFFF10","selection.background":"#00000080","settings.checkboxBackground":"#212121","settings.checkboxForeground":"#EEFFFF","settings.dropdownBackground":"#212121","settings.dropdownForeground":"#EEFFFF","settings.headerForeground":"#80CBC4","settings.modifiedItemIndicator":"#80CBC4","settings.numberInputBackground":"#212121","settings.numberInputForeground":"#EEFFFF","settings.textInputBackground":"#212121","settings.textInputForeground":"#EEFFFF","sideBar.background":"#212121","sideBar.border":"#21212160","sideBar.foreground":"#676767","sideBarSectionHeader.background":"#212121","sideBarSectionHeader.border":"#21212160","sideBarTitle.foreground":"#EEFFFF","statusBar.background":"#212121","statusBar.border":"#21212160","statusBar.debuggingBackground":"#C792EA","statusBar.debuggingForeground":"#ffffff","statusBar.foreground":"#616161","statusBar.noFolderBackground":"#212121","statusBarItem.activeBackground":"#f0717880","statusBarItem.hoverBackground":"#54545420","statusBarItem.remoteBackground":"#80CBC4","statusBarItem.remoteForeground":"#000000","tab.activeBackground":"#212121","tab.activeBorder":"#80CBC4","tab.activeForeground":"#FFFFFF","tab.activeModifiedBorder":"#676767","tab.border":"#212121","tab.inactiveBackground":"#212121","tab.inactiveForeground":"#676767","tab.inactiveModifiedBorder":"#904348","tab.unfocusedActiveBorder":"#545454","tab.unfocusedActiveForeground":"#EEFFFF","tab.unfocusedActiveModifiedBorder":"#c05a60","tab.unfocusedInactiveModifiedBorder":"#904348","terminal.ansiBlack":"#000000","terminal.ansiBlue":"#82AAFF","terminal.ansiBrightBlack":"#545454","terminal.ansiBrightBlue":"#82AAFF","terminal.ansiBrightCyan":"#89DDFF","terminal.ansiBrightGreen":"#C3E88D","terminal.ansiBrightMagenta":"#C792EA","terminal.ansiBrightRed":"#f07178","terminal.ansiBrightWhite":"#ffffff","terminal.ansiBrightYellow":"#FFCB6B","terminal.ansiCyan":"#89DDFF","terminal.ansiGreen":"#C3E88D","terminal.ansiMagenta":"#C792EA","terminal.ansiRed":"#f07178","terminal.ansiWhite":"#ffffff","terminal.ansiYellow":"#FFCB6B","terminalCursor.background":"#000000","terminalCursor.foreground":"#FFCB6B","textLink.activeForeground":"#EEFFFF","textLink.foreground":"#80CBC4","titleBar.activeBackground":"#212121","titleBar.activeForeground":"#EEFFFF","titleBar.border":"#21212160","titleBar.inactiveBackground":"#212121","titleBar.inactiveForeground":"#676767","tree.indentGuidesStroke":"#424242","widget.shadow":"#00000030"},"displayName":"Material Theme Darker","name":"material-theme-darker","semanticHighlighting":true,"tokenColors":[{"settings":{"background":"#212121","foreground":"#EEFFFF"}},{"scope":"string","settings":{"foreground":"#C3E88D"}},{"scope":"punctuation, constant.other.symbol","settings":{"foreground":"#89DDFF"}},{"scope":"constant.character.escape, text.html constant.character.entity.named","settings":{"foreground":"#EEFFFF"}},{"scope":"constant.language.boolean","settings":{"foreground":"#ff9cac"}},{"scope":"constant.numeric","settings":{"foreground":"#F78C6C"}},{"scope":"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments","settings":{"foreground":"#EEFFFF"}},{"scope":"keyword.other","settings":{"foreground":"#F78C6C"}},{"scope":"keyword, modifier, variable.language.this, support.type.object, constant.language","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name.function, support.function","settings":{"foreground":"#82AAFF"}},{"scope":"storage.type, storage.modifier, storage.control","settings":{"foreground":"#C792EA"}},{"scope":"support.module, support.node","settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":"support.type, constant.other.key","settings":{"foreground":"#FFCB6B"}},{"scope":"entity.name.type, entity.other.inherited-class, entity.other","settings":{"foreground":"#FFCB6B"}},{"scope":"comment","settings":{"fontStyle":"italic","foreground":"#545454"}},{"scope":"comment punctuation.definition.comment, string.quoted.docstring","settings":{"fontStyle":"italic","foreground":"#545454"}},{"scope":"punctuation","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name, entity.name.type.class, support.type, support.class, meta.use","settings":{"foreground":"#FFCB6B"}},{"scope":"variable.object.property, meta.field.declaration entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"meta.definition.method entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"meta.function entity.name.function","settings":{"foreground":"#82AAFF"}},{"scope":"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end","settings":{"foreground":"#89DDFF"}},{"scope":"meta.embedded, source.groovy.embedded, meta.template.expression","settings":{"foreground":"#EEFFFF"}},{"scope":"entity.name.tag.yaml","settings":{"foreground":"#f07178"}},{"scope":"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json","settings":{"foreground":"#f07178"}},{"scope":"constant.language.json","settings":{"foreground":"#89DDFF"}},{"scope":"entity.other.attribute-name.class","settings":{"foreground":"#FFCB6B"}},{"scope":"entity.other.attribute-name.id","settings":{"foreground":"#F78C6C"}},{"scope":"source.css entity.name.tag","settings":{"foreground":"#FFCB6B"}},{"scope":"support.type.property-name.css","settings":{"foreground":"#B2CCD6"}},{"scope":"meta.tag, punctuation.definition.tag","settings":{"foreground":"#89DDFF"}},{"scope":"entity.name.tag","settings":{"foreground":"#f07178"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#C792EA"}},{"scope":"punctuation.definition.entity.html","settings":{"foreground":"#EEFFFF"}},{"scope":"markup.heading","settings":{"foreground":"#89DDFF"}},{"scope":"text.html.markdown meta.link.inline, meta.link.reference","settings":{"foreground":"#f07178"}},{"scope":"text.html.markdown beginning.punctuation.definition.list","settings":{"foreground":"#89DDFF"}},{"scope":"markup.italic","settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":"markup.bold","settings":{"fontStyle":"bold","foreground":"#f07178"}},{"scope":"markup.bold markup.italic, markup.italic markup.bold","settings":{"fontStyle":"italic bold","foreground":"#f07178"}},{"scope":"markup.fenced_code.block.markdown punctuation.definition.markdown","settings":{"foreground":"#C3E88D"}},{"scope":"markup.inline.raw.string.markdown","settings":{"foreground":"#C3E88D"}},{"scope":"keyword.other.definition.ini","settings":{"foreground":"#f07178"}},{"scope":"entity.name.section.group-title.ini","settings":{"foreground":"#89DDFF"}},{"scope":"source.cs meta.class.identifier storage.type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.method.identifier entity.name.function","settings":{"foreground":"#f07178"}},{"scope":"source.cs meta.method-call meta.method, source.cs entity.name.function","settings":{"foreground":"#82AAFF"}},{"scope":"source.cs storage.type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.method.return-type","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cs meta.preprocessor","settings":{"foreground":"#545454"}},{"scope":"source.cs entity.name.type.namespace","settings":{"foreground":"#EEFFFF"}},{"scope":"meta.jsx.children, SXNested","settings":{"foreground":"#EEFFFF"}},{"scope":"support.class.component","settings":{"foreground":"#FFCB6B"}},{"scope":"source.cpp meta.block variable.other","settings":{"foreground":"#EEFFFF"}},{"scope":"source.python meta.member.access.python","settings":{"foreground":"#f07178"}},{"scope":"source.python meta.function-call.python, meta.function-call.arguments","settings":{"foreground":"#82AAFF"}},{"scope":"meta.block","settings":{"foreground":"#f07178"}},{"scope":"entity.name.function.call","settings":{"foreground":"#82AAFF"}},{"scope":"source.php support.other.namespace, source.php meta.use support.class","settings":{"foreground":"#EEFFFF"}},{"scope":"constant.keyword","settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":"entity.name.function","settings":{"foreground":"#82AAFF"}},{"settings":{"background":"#212121","foreground":"#EEFFFF"}},{"scope":["constant.other.placeholder"],"settings":{"foreground":"#f07178"}},{"scope":["markup.deleted"],"settings":{"foreground":"#f07178"}},{"scope":["markup.inserted"],"settings":{"foreground":"#C3E88D"}},{"scope":["markup.underline"],"settings":{"fontStyle":"underline"}},{"scope":["keyword.control"],"settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":["variable.parameter"],"settings":{"fontStyle":"italic"}},{"scope":["variable.parameter.function.language.special.self.python"],"settings":{"fontStyle":"italic","foreground":"#f07178"}},{"scope":["constant.character.format.placeholder.other.python"],"settings":{"foreground":"#F78C6C"}},{"scope":["markup.quote"],"settings":{"fontStyle":"italic","foreground":"#89DDFF"}},{"scope":["markup.fenced_code.block"],"settings":{"foreground":"#EEFFFF90"}},{"scope":["punctuation.definition.quote"],"settings":{"foreground":"#ff9cac"}},{"scope":["meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C792EA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#FFCB6B"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#F78C6C"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#f07178"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#916b53"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#82AAFF"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#ff9cac"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C792EA"}},{"scope":["meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"],"settings":{"foreground":"#C3E88D"}}],"type":"dark"}', ), ), - Aw = Object.freeze( + Dw = Object.freeze( Object.defineProperty( - { __proto__: null, default: $w }, + { __proto__: null, default: Aw }, Symbol.toStringTag, { value: "Module" }, ), From b1bd188380ba519f2d078f2fedfd900927c00b98 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 22:57:39 -0400 Subject: [PATCH 07/16] fix: try loading script programmatically in index.mdx --- custom-app/src/main.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index f000fe621..de964a44b 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -69,6 +69,11 @@ const initializeApp = async () => { observer.observe(document.body, { childList: true, subtree: true }) } +type WindowWithInitializeApp = Window & + typeof globalThis & { initializeApp: () => void } +// Expose initializeApp globally for MDX to call +;(window as WindowWithInitializeApp).initializeApp = initializeApp + // Run immediately when script loads (for direct navigation to homepage) initializeApp() From d8e2fae41a91b07f6c9d08dfb0b4f512e39d9acc Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 23:20:20 -0400 Subject: [PATCH 08/16] fix: test with dedicated script for loading dist/output.js --- custom-app/src/main.tsx | 6 +- fern/assets/load-custom-app.js | 11 + fern/dist/output.js | 1932 ++++++++++++++++---------------- fern/docs.yml | 2 + fern/home/index.mdx | 1 - 5 files changed, 986 insertions(+), 966 deletions(-) create mode 100644 fern/assets/load-custom-app.js diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index de964a44b..4b61bd266 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -35,6 +35,7 @@ const render = async () => { } const initializeApp = async () => { + console.log('initializeApp') // Only render on /docs or /docs/ const initialPath = window.location.pathname.replace(/\/+$/, '') @@ -78,4 +79,7 @@ type WindowWithInitializeApp = Window & initializeApp() // Also run on popstate (for back/forward navigation) -window.addEventListener('popstate', initializeApp) +window.addEventListener('popstate', () => { + console.log('popstate') + initializeApp() +}) diff --git a/fern/assets/load-custom-app.js b/fern/assets/load-custom-app.js new file mode 100644 index 000000000..d36843f3a --- /dev/null +++ b/fern/assets/load-custom-app.js @@ -0,0 +1,11 @@ +// Simple pathname check - only load script once when on /docs +const regex = /\/docs\//; +if (regex.test(window.location.pathname)) { + // Check if script is already loaded + if (!document.getElementById("homepage-script")) { + const script = document.createElement("script"); + script.id = "homepage-script"; + script.src = "/dist/output.js"; + document.head.appendChild(script); + } +} diff --git a/fern/dist/output.js b/fern/dist/output.js index e563be006..c7577413a 100644 --- a/fern/dist/output.js +++ b/fern/dist/output.js @@ -1,7 +1,7 @@ var kb = Object.defineProperty; var Cb = Object.getPrototypeOf; var Pb = Reflect.get; -var tp = (n) => { +var np = (n) => { throw TypeError(n); }; var Ob = (n, t, o) => @@ -9,13 +9,13 @@ var Ob = (n, t, o) => ? kb(n, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) : (n[t] = o); var B = (n, t, o) => Ob(n, typeof t != "symbol" ? t + "" : t, o), - Il = (n, t, o) => t.has(n) || tp("Cannot " + o); + Il = (n, t, o) => t.has(n) || np("Cannot " + o); var yt = (n, t, o) => ( Il(n, t, "read from private field"), o ? o.call(n) : t.get(n) ), d0 = (n, t, o) => t.has(n) - ? tp("Cannot add the same private member more than once") + ? np("Cannot add the same private member more than once") : t instanceof WeakSet ? t.add(n) : t.set(n, o), @@ -23,7 +23,7 @@ var yt = (n, t, o) => ( Il(n, t, "write to private field"), a ? a.call(n, o) : t.set(n, o), o ), Fl = (n, t, o) => (Il(n, t, "access private method"), o); -var np = (n, t, o) => Pb(Cb(n), o, t); +var rp = (n, t, o) => Pb(Cb(n), o, t); function Eb(n, t) { for (var o = 0; o < t.length; o++) { const a = t[o]; @@ -91,10 +91,10 @@ var Rl = { exports: {} }, * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var rp; + */ var op; function jb() { - if (rp) return ke; - rp = 1; + if (op) return ke; + op = 1; var n = Symbol.for("react.element"), t = Symbol.for("react.portal"), o = Symbol.for("react.fragment"), @@ -487,9 +487,9 @@ function jb() { ke ); } -var op; +var ap; function Nc() { - return op || ((op = 1), (Ml.exports = jb())), Ml.exports; + return ap || ((ap = 1), (Ml.exports = jb())), Ml.exports; } /** * @license React @@ -499,10 +499,10 @@ function Nc() { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var ap; + */ var ip; function Ib() { - if (ap) return Zr; - ap = 1; + if (ip) return Zr; + ip = 1; var n = Nc(), t = Symbol.for("react.element"), o = Symbol.for("react.fragment"), @@ -531,14 +531,14 @@ function Ib() { } return (Zr.Fragment = o), (Zr.jsx = d), (Zr.jsxs = d), Zr; } -var ip; +var sp; function Fb() { - return ip || ((ip = 1), (Rl.exports = Ib())), Rl.exports; + return sp || ((sp = 1), (Rl.exports = Ib())), Rl.exports; } var Re = Fb(), V = Nc(); const Ue = Tb(V), - sp = Eb({ __proto__: null, default: Ue }, [V]); + lp = Eb({ __proto__: null, default: Ue }, [V]); var ja = {}, Nl = { exports: {} }, Pt = {}, @@ -552,11 +552,11 @@ var ja = {}, * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var lp; + */ var cp; function Rb() { return ( - lp || - ((lp = 1), + cp || + ((cp = 1), (function (n) { function t(q, Q) { var w = q.length; @@ -844,9 +844,9 @@ function Rb() { Ll ); } -var cp; +var up; function Mb() { - return cp || ((cp = 1), (Bl.exports = Rb())), Bl.exports; + return up || ((up = 1), (Bl.exports = Rb())), Bl.exports; } /** * @license React @@ -856,10 +856,10 @@ function Mb() { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var up; + */ var dp; function Nb() { - if (up) return Pt; - up = 1; + if (dp) return Pt; + dp = 1; var n = Nc(), t = Mb(); function o(e) { @@ -1393,11 +1393,11 @@ function Nb() { : r.value != null, }); } - function su(e, r) { + function lu(e, r) { (r = r.checked), r != null && R(e, "checked", r, !1); } function Ai(e, r) { - su(e, r); + lu(e, r); var s = fe(r.value), l = r.type; if (s != null) @@ -1415,7 +1415,7 @@ function Nb() { r.defaultChecked != null && (e.defaultChecked = !!r.defaultChecked); } - function lu(e, r, s) { + function cu(e, r, s) { if (r.hasOwnProperty("value") || r.hasOwnProperty("defaultValue")) { var l = r.type; if ( @@ -1468,7 +1468,7 @@ function Nb() { children: "" + e._wrapperState.initialValue, }); } - function cu(e, r) { + function uu(e, r) { var s = r.value; if (s == null) { if (((s = r.children), (r = r.defaultValue), s != null)) { @@ -1483,7 +1483,7 @@ function Nb() { } e._wrapperState = { initialValue: fe(s) }; } - function uu(e, r) { + function du(e, r) { var s = fe(r.value), l = fe(r.defaultValue); s != null && @@ -1492,14 +1492,14 @@ function Nb() { r.defaultValue == null && e.defaultValue !== s && (e.defaultValue = s)), l != null && (e.defaultValue = "" + l); } - function du(e) { + function fu(e) { var r = e.textContent; r === e._wrapperState.initialValue && r !== "" && r !== null && (e.value = r); } - function fu(e) { + function pu(e) { switch (e) { case "svg": return "http://www.w3.org/2000/svg"; @@ -1511,13 +1511,13 @@ function Nb() { } function Hi(e, r) { return e == null || e === "http://www.w3.org/1999/xhtml" - ? fu(r) + ? pu(r) : e === "http://www.w3.org/2000/svg" && r === "foreignObject" ? "http://www.w3.org/1999/xhtml" : e; } var So, - pu = (function (e) { + hu = (function (e) { return typeof MSApp < "u" && MSApp.execUnsafeLocalFunction ? function (r, s, l, u) { MSApp.execUnsafeLocalFunction(function () { @@ -1601,19 +1601,19 @@ function Nb() { (r = r + e.charAt(0).toUpperCase() + e.substring(1)), (mr[r] = mr[e]); }); }); - function hu(e, r, s) { + function mu(e, r, s) { return r == null || typeof r == "boolean" || r === "" ? "" : s || typeof r != "number" || r === 0 || (mr.hasOwnProperty(e) && mr[e]) ? ("" + r).trim() : r + "px"; } - function mu(e, r) { + function gu(e, r) { e = e.style; for (var s in r) if (r.hasOwnProperty(s)) { var l = s.indexOf("--") === 0, - u = hu(s, r[s], l); + u = mu(s, r[s], l); s === "float" && (s = "cssFloat"), l ? e.setProperty(s, u) : (e[s] = u); } } @@ -1679,35 +1679,35 @@ function Nb() { var Wi = null, P0 = null, O0 = null; - function gu(e) { + function bu(e) { if ((e = Lr(e))) { if (typeof Wi != "function") throw Error(o(280)); var r = e.stateNode; r && ((r = Go(r)), Wi(e.stateNode, e.type, r)); } } - function bu(e) { + function vu(e) { P0 ? (O0 ? O0.push(e) : (O0 = [e])) : (P0 = e); } - function vu() { + function yu() { if (P0) { var e = P0, r = O0; - if (((O0 = P0 = null), gu(e), r)) for (e = 0; e < r.length; e++) gu(r[e]); + if (((O0 = P0 = null), bu(e), r)) for (e = 0; e < r.length; e++) bu(r[e]); } } - function yu(e, r) { + function _u(e, r) { return e(r); } - function _u() {} + function xu() {} var Ki = !1; - function xu(e, r, s) { + function Su(e, r, s) { if (Ki) return e(r, s); Ki = !0; try { - return yu(e, r, s); + return _u(e, r, s); } finally { - (Ki = !1), (P0 !== null || O0 !== null) && (_u(), vu()); + (Ki = !1), (P0 !== null || O0 !== null) && (xu(), yu()); } } function gr(e, r) { @@ -1799,7 +1799,7 @@ function Nb() { } return r.tag === 3 ? s : null; } - function Su(e) { + function wu(e) { if (e.tag === 13) { var r = e.memoizedState; if ( @@ -1810,7 +1810,7 @@ function Nb() { } return null; } - function wu(e) { + function ku(e) { if (Zn(e) !== e) throw Error(o(188)); } function Mg(e) { @@ -1832,8 +1832,8 @@ function Nb() { } if (u.child === p.child) { for (p = u.child; p; ) { - if (p === s) return wu(u), e; - if (p === l) return wu(u), r; + if (p === s) return ku(u), e; + if (p === l) return ku(u), r; p = p.sibling; } throw Error(o(188)); @@ -1871,29 +1871,29 @@ function Nb() { if (s.tag !== 3) throw Error(o(188)); return s.stateNode.current === s ? e : r; } - function ku(e) { - return (e = Mg(e)), e !== null ? Cu(e) : null; - } function Cu(e) { + return (e = Mg(e)), e !== null ? Pu(e) : null; + } + function Pu(e) { if (e.tag === 5 || e.tag === 6) return e; for (e = e.child; e !== null; ) { - var r = Cu(e); + var r = Pu(e); if (r !== null) return r; e = e.sibling; } return null; } - var Pu = t.unstable_scheduleCallback, - Ou = t.unstable_cancelCallback, + var Ou = t.unstable_scheduleCallback, + Eu = t.unstable_cancelCallback, Ng = t.unstable_shouldYield, Bg = t.unstable_requestPaint, qe = t.unstable_now, Lg = t.unstable_getCurrentPriorityLevel, Yi = t.unstable_ImmediatePriority, - Eu = t.unstable_UserBlockingPriority, + Tu = t.unstable_UserBlockingPriority, Co = t.unstable_NormalPriority, $g = t.unstable_LowPriority, - Tu = t.unstable_IdlePriority, + ju = t.unstable_IdlePriority, Po = null, tn = null; function Ag(e) { @@ -2048,7 +2048,7 @@ function Nb() { e !== 0 ? e : e & 1073741824 ? 1073741824 : 0 ); } - function ju() { + function Iu() { var e = Oo; return (Oo <<= 1), (Oo & 4194240) === 0 && (Oo = 64), e; } @@ -2088,17 +2088,17 @@ function Nb() { } } var Fe = 0; - function Iu(e) { + function Fu(e) { return ( (e &= -e), 1 < e ? (4 < e ? ((e & 268435455) !== 0 ? 16 : 536870912) : 4) : 1 ); } - var Fu, + var Ru, ts, - Ru, Mu, Nu, + Bu, ns = !1, jo = [], Pn = null, @@ -2111,7 +2111,7 @@ function Nb() { "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split( " ", ); - function Bu(e, r) { + function Lu(e, r) { switch (e) { case "focusin": case "focusout": @@ -2168,16 +2168,16 @@ function Nb() { } return !1; } - function Lu(e) { + function $u(e) { var r = Jn(e.target); if (r !== null) { var s = Zn(r); if (s !== null) { if (((r = s.tag), r === 13)) { - if (((r = Su(s)), r !== null)) { + if (((r = wu(s)), r !== null)) { (e.blockedOn = r), - Nu(e.priority, function () { - Ru(s); + Bu(e.priority, function () { + Mu(s); }); return; } @@ -2202,7 +2202,7 @@ function Nb() { } return !0; } - function $u(e, r, s) { + function Au(e, r, s) { Io(e) && s.delete(r); } function Kg() { @@ -2210,8 +2210,8 @@ function Nb() { Pn !== null && Io(Pn) && (Pn = null), On !== null && Io(On) && (On = null), En !== null && Io(En) && (En = null), - xr.forEach($u), - Sr.forEach($u); + xr.forEach(Au), + Sr.forEach(Au); } function kr(e, r) { e.blockedOn === r && @@ -2243,7 +2243,7 @@ function Nb() { ) (l = Tn[s]), l.blockedOn === e && (l.blockedOn = null); for (; 0 < Tn.length && ((s = Tn[0]), s.blockedOn === null); ) - Lu(s), s.blockedOn === null && Tn.shift(); + $u(s), s.blockedOn === null && Tn.shift(); } var E0 = L.ReactCurrentBatchConfig, Fo = !0; @@ -2270,13 +2270,13 @@ function Nb() { function rs(e, r, s, l) { if (Fo) { var u = os(e, r, s, l); - if (u === null) xs(e, r, l, Ro, s), Bu(e, l); + if (u === null) xs(e, r, l, Ro, s), Lu(e, l); else if (Wg(u, e, r, s, l)) l.stopPropagation(); - else if ((Bu(e, l), r & 4 && -1 < qg.indexOf(e))) { + else if ((Lu(e, l), r & 4 && -1 < qg.indexOf(e))) { for (; u !== null; ) { var p = Lr(u); if ( - (p !== null && Fu(p), + (p !== null && Ru(p), (p = os(e, r, s, l)), p === null && xs(e, r, l, Ro, s), p === u) @@ -2293,7 +2293,7 @@ function Nb() { if (((Ro = null), (e = qi(l)), (e = Jn(e)), e !== null)) if (((r = Zn(e)), r === null)) e = null; else if (((s = r.tag), s === 13)) { - if (((e = Su(r)), e !== null)) return e; + if (((e = wu(r)), e !== null)) return e; e = null; } else if (s === 3) { if (r.stateNode.current.memoizedState.isDehydrated) @@ -2302,7 +2302,7 @@ function Nb() { } else r !== e && (e = null); return (Ro = e), null; } - function Au(e) { + function Du(e) { switch (e) { case "cancel": case "click": @@ -2380,12 +2380,12 @@ function Nb() { switch (Lg()) { case Yi: return 1; - case Eu: + case Tu: return 4; case Co: case $g: return 16; - case Tu: + case ju: return 536870912; default: return 16; @@ -2397,7 +2397,7 @@ function Nb() { var jn = null, as = null, Mo = null; - function Du() { + function zu() { if (Mo) return Mo; var e, r = as, @@ -2423,7 +2423,7 @@ function Nb() { function Bo() { return !0; } - function zu() { + function Hu() { return !1; } function Tt(e) { @@ -2441,8 +2441,8 @@ function Nb() { p.defaultPrevented != null ? p.defaultPrevented : p.returnValue === !1 ) ? Bo - : zu), - (this.isPropagationStopped = zu), + : Hu), + (this.isPropagationStopped = Hu), this ); } @@ -2522,7 +2522,7 @@ function Nb() { return "movementY" in e ? e.movementY : ls; }, }), - Hu = Tt(Lo), + Vu = Tt(Lo), Zg = w({}, Lo, { dataTransfer: 0 }), Jg = Tt(Zg), e1 = w({}, Pr, { relatedTarget: 0 }), @@ -2536,7 +2536,7 @@ function Nb() { }), o1 = Tt(r1), a1 = w({}, T0, { data: 0 }), - Vu = Tt(a1), + Uu = Tt(a1), i1 = { Esc: "Escape", Spacebar: " ", @@ -2654,7 +2654,7 @@ function Nb() { pointerType: 0, isPrimary: 0, }), - Uu = Tt(f1), + Gu = Tt(f1), p1 = w({}, Pr, { touches: 0, targetTouches: 0, @@ -2694,10 +2694,10 @@ function Nb() { Er = null; h && "documentMode" in document && (Er = document.documentMode); var _1 = h && "TextEvent" in window && !Er, - Gu = h && (!ds || (Er && 8 < Er && 11 >= Er)), - qu = " ", - Wu = !1; - function Ku(e, r) { + qu = h && (!ds || (Er && 8 < Er && 11 >= Er)), + Wu = " ", + Ku = !1; + function Xu(e, r) { switch (e) { case "keyup": return y1.indexOf(r.keyCode) !== -1; @@ -2711,26 +2711,26 @@ function Nb() { return !1; } } - function Xu(e) { + function Qu(e) { return (e = e.detail), typeof e == "object" && "data" in e ? e.data : null; } var j0 = !1; function x1(e, r) { switch (e) { case "compositionend": - return Xu(r); + return Qu(r); case "keypress": - return r.which !== 32 ? null : ((Wu = !0), qu); + return r.which !== 32 ? null : ((Ku = !0), Wu); case "textInput": - return (e = r.data), e === qu && Wu ? null : e; + return (e = r.data), e === Wu && Ku ? null : e; default: return null; } } function S1(e, r) { if (j0) - return e === "compositionend" || (!ds && Ku(e, r)) - ? ((e = Du()), (Mo = as = jn = null), (j0 = !1), e) + return e === "compositionend" || (!ds && Xu(e, r)) + ? ((e = zu()), (Mo = as = jn = null), (j0 = !1), e) : null; switch (e) { case "paste": @@ -2742,7 +2742,7 @@ function Nb() { } return null; case "compositionend": - return Gu && r.locale !== "ko" ? null : r.data; + return qu && r.locale !== "ko" ? null : r.data; default: return null; } @@ -2764,12 +2764,12 @@ function Nb() { url: !0, week: !0, }; - function Qu(e) { + function Yu(e) { var r = e && e.nodeName && e.nodeName.toLowerCase(); return r === "input" ? !!w1[e.type] : r === "textarea"; } - function Yu(e, r, s, l) { - bu(l), + function Zu(e, r, s, l) { + vu(l), (r = Ho(r, "onChange")), 0 < r.length && ((s = new is("onChange", "change", null, s, l)), @@ -2778,7 +2778,7 @@ function Nb() { var Tr = null, jr = null; function k1(e) { - md(e, 0); + gd(e, 0); } function $o(e) { var r = N0(e); @@ -2787,33 +2787,33 @@ function Nb() { function C1(e, r) { if (e === "change") return r; } - var Zu = !1; + var Ju = !1; if (h) { var fs; if (h) { var ps = "oninput" in document; if (!ps) { - var Ju = document.createElement("div"); - Ju.setAttribute("oninput", "return;"), - (ps = typeof Ju.oninput == "function"); + var ed = document.createElement("div"); + ed.setAttribute("oninput", "return;"), + (ps = typeof ed.oninput == "function"); } fs = ps; } else fs = !1; - Zu = fs && (!document.documentMode || 9 < document.documentMode); + Ju = fs && (!document.documentMode || 9 < document.documentMode); } - function ed() { - Tr && (Tr.detachEvent("onpropertychange", td), (jr = Tr = null)); + function td() { + Tr && (Tr.detachEvent("onpropertychange", nd), (jr = Tr = null)); } - function td(e) { + function nd(e) { if (e.propertyName === "value" && $o(jr)) { var r = []; - Yu(r, jr, e, qi(e)), xu(k1, r); + Zu(r, jr, e, qi(e)), Su(k1, r); } } function P1(e, r, s) { e === "focusin" - ? (ed(), (Tr = r), (jr = s), Tr.attachEvent("onpropertychange", td)) - : e === "focusout" && ed(); + ? (td(), (Tr = r), (jr = s), Tr.attachEvent("onpropertychange", nd)) + : e === "focusout" && td(); } function O1(e) { if (e === "selectionchange" || e === "keyup" || e === "keydown") @@ -2847,12 +2847,12 @@ function Nb() { } return !0; } - function nd(e) { + function rd(e) { for (; e && e.firstChild; ) e = e.firstChild; return e; } - function rd(e, r) { - var s = nd(e); + function od(e, r) { + var s = rd(e); e = 0; for (var l; s; ) { if (s.nodeType === 3) { @@ -2870,17 +2870,17 @@ function Nb() { } s = void 0; } - s = nd(s); + s = rd(s); } } - function od(e, r) { + function ad(e, r) { return e && r ? e === r ? !0 : e && e.nodeType === 3 ? !1 : r && r.nodeType === 3 - ? od(e, r.parentNode) + ? ad(e, r.parentNode) : "contains" in e ? e.contains(r) : e.compareDocumentPosition @@ -2888,7 +2888,7 @@ function Nb() { : !1 : !1; } - function ad() { + function id() { for (var e = window, r = w0(); r instanceof e.HTMLIFrameElement; ) { try { var s = typeof r.contentWindow.location.href == "string"; @@ -2916,14 +2916,14 @@ function Nb() { ); } function I1(e) { - var r = ad(), + var r = id(), s = e.focusedElem, l = e.selectionRange; if ( r !== s && s && s.ownerDocument && - od(s.ownerDocument.documentElement, s) + ad(s.ownerDocument.documentElement, s) ) { if (l !== null && hs(s)) { if ( @@ -2943,8 +2943,8 @@ function Nb() { p = Math.min(l.start, u); (l = l.end === void 0 ? p : Math.min(l.end, u)), !e.extend && p > l && ((u = l), (l = p), (p = u)), - (u = rd(s, p)); - var g = rd(s, l); + (u = od(s, p)); + var g = od(s, l); u && g && (e.rangeCount !== 1 || @@ -2974,7 +2974,7 @@ function Nb() { ms = null, Fr = null, gs = !1; - function id(e, r, s) { + function sd(e, r, s) { var l = s.window === s ? s.document : s.nodeType === 9 ? s : s.ownerDocument; gs || @@ -3017,9 +3017,9 @@ function Nb() { transitionend: Ao("Transition", "TransitionEnd"), }, bs = {}, - sd = {}; + ld = {}; h && - ((sd = document.createElement("div").style), + ((ld = document.createElement("div").style), "AnimationEvent" in window || (delete F0.animationend.animation, delete F0.animationiteration.animation, @@ -3030,34 +3030,34 @@ function Nb() { if (!F0[e]) return e; var r = F0[e], s; - for (s in r) if (r.hasOwnProperty(s) && s in sd) return (bs[e] = r[s]); + for (s in r) if (r.hasOwnProperty(s) && s in ld) return (bs[e] = r[s]); return e; } - var ld = Do("animationend"), - cd = Do("animationiteration"), - ud = Do("animationstart"), - dd = Do("transitionend"), - fd = new Map(), - pd = + var cd = Do("animationend"), + ud = Do("animationiteration"), + dd = Do("animationstart"), + fd = Do("transitionend"), + pd = new Map(), + hd = "abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split( " ", ); function In(e, r) { - fd.set(e, r), c(r, [e]); + pd.set(e, r), c(r, [e]); } - for (var vs = 0; vs < pd.length; vs++) { - var ys = pd[vs], + for (var vs = 0; vs < hd.length; vs++) { + var ys = hd[vs], R1 = ys.toLowerCase(), M1 = ys[0].toUpperCase() + ys.slice(1); In(R1, "on" + M1); } - In(ld, "onAnimationEnd"), - In(cd, "onAnimationIteration"), - In(ud, "onAnimationStart"), + In(cd, "onAnimationEnd"), + In(ud, "onAnimationIteration"), + In(dd, "onAnimationStart"), In("dblclick", "onDoubleClick"), In("focusin", "onFocus"), In("focusout", "onBlur"), - In(dd, "onTransitionEnd"), + In(fd, "onTransitionEnd"), d("onMouseEnter", ["mouseout", "mouseover"]), d("onMouseLeave", ["mouseout", "mouseover"]), d("onPointerEnter", ["pointerout", "pointerover"]), @@ -3094,11 +3094,11 @@ function Nb() { N1 = new Set( "cancel close invalid load scroll toggle".split(" ").concat(Rr), ); - function hd(e, r, s) { + function md(e, r, s) { var l = e.type || "unknown-event"; (e.currentTarget = s), Rg(l, r, void 0, e), (e.currentTarget = null); } - function md(e, r) { + function gd(e, r) { r = (r & 4) !== 0; for (var s = 0; s < e.length; s++) { var l = e[s], @@ -3113,7 +3113,7 @@ function Nb() { M = _.currentTarget; if (((_ = _.listener), k !== p && u.isPropagationStopped())) break e; - hd(u, _, M), (p = k); + md(u, _, M), (p = k); } else for (g = 0; g < l.length; g++) { @@ -3125,7 +3125,7 @@ function Nb() { k !== p && u.isPropagationStopped()) ) break e; - hd(u, _, M), (p = k); + md(u, _, M), (p = k); } } } @@ -3135,11 +3135,11 @@ function Nb() { var s = r[Os]; s === void 0 && (s = r[Os] = new Set()); var l = e + "__bubble"; - s.has(l) || (gd(r, e, 2, !1), s.add(l)); + s.has(l) || (bd(r, e, 2, !1), s.add(l)); } function _s(e, r, s) { var l = 0; - r && (l |= 4), gd(s, e, l, r); + r && (l |= 4), bd(s, e, l, r); } var zo = "_reactListening" + Math.random().toString(36).slice(2); function Mr(e) { @@ -3152,8 +3152,8 @@ function Nb() { r === null || r[zo] || ((r[zo] = !0), _s("selectionchange", !1, r)); } } - function gd(e, r, s, l) { - switch (Au(r)) { + function bd(e, r, s, l) { + switch (Du(r)) { case 1: var u = Xg; break; @@ -3207,12 +3207,12 @@ function Nb() { } l = l.return; } - xu(function () { + Su(function () { var M = p, z = qi(s), H = []; e: { - var D = fd.get(e); + var D = pd.get(e); if (D !== void 0) { var X = is, Z = e; @@ -3243,7 +3243,7 @@ function Nb() { case "mouseout": case "mouseover": case "contextmenu": - X = Hu; + X = Vu; break; case "drag": case "dragend": @@ -3261,12 +3261,12 @@ function Nb() { case "touchstart": X = h1; break; - case ld: case cd: case ud: + case dd: X = n1; break; - case dd: + case fd: X = g1; break; case "scroll": @@ -3288,7 +3288,7 @@ function Nb() { case "pointerout": case "pointerover": case "pointerup": - X = Uu; + X = Gu; } var J = (r & 4) !== 0, We = !J && e === "scroll", @@ -3342,12 +3342,12 @@ function Nb() { X !== Z) ) { if ( - ((J = Hu), + ((J = Vu), (G = "onMouseLeave"), (I = "onMouseEnter"), (E = "mouse"), (e === "pointerout" || e === "pointerover") && - ((J = Uu), + ((J = Gu), (G = "onPointerLeave"), (I = "onPointerEnter"), (E = "pointer")), @@ -3377,8 +3377,8 @@ function Nb() { J = null; } else J = null; - X !== null && bd(H, D, X, J, !1), - Z !== null && We !== null && bd(H, We, Z, J, !0); + X !== null && vd(H, D, X, J, !1), + Z !== null && We !== null && vd(H, We, Z, J, !0); } } e: { @@ -3388,8 +3388,8 @@ function Nb() { X === "select" || (X === "input" && D.type === "file")) ) var te = C1; - else if (Qu(D)) - if (Zu) te = T1; + else if (Yu(D)) + if (Ju) te = T1; else { te = O1; var oe = P1; @@ -3400,7 +3400,7 @@ function Nb() { (D.type === "checkbox" || D.type === "radio") && (te = E1); if (te && (te = te(e, M))) { - Yu(H, te, s, z); + Zu(H, te, s, z); break e; } oe && oe(e, D, M), @@ -3412,7 +3412,7 @@ function Nb() { } switch (((oe = M ? N0(M) : window), e)) { case "focusin": - (Qu(oe) || oe.contentEditable === "true") && + (Yu(oe) || oe.contentEditable === "true") && ((I0 = oe), (ms = M), (Fr = null)); break; case "focusout": @@ -3424,13 +3424,13 @@ function Nb() { case "contextmenu": case "mouseup": case "dragend": - (gs = !1), id(H, s, z); + (gs = !1), sd(H, s, z); break; case "selectionchange": if (F1) break; case "keydown": case "keyup": - id(H, s, z); + sd(H, s, z); } var ae; if (ds) @@ -3450,33 +3450,33 @@ function Nb() { } else j0 - ? Ku(e, s) && (de = "onCompositionEnd") + ? Xu(e, s) && (de = "onCompositionEnd") : e === "keydown" && s.keyCode === 229 && (de = "onCompositionStart"); de && - (Gu && + (qu && s.locale !== "ko" && (j0 || de !== "onCompositionStart" - ? de === "onCompositionEnd" && j0 && (ae = Du()) + ? de === "onCompositionEnd" && j0 && (ae = zu()) : ((jn = z), (as = "value" in jn ? jn.value : jn.textContent), (j0 = !0))), (oe = Ho(M, de)), 0 < oe.length && - ((de = new Vu(de, e, null, s, z)), + ((de = new Uu(de, e, null, s, z)), H.push({ event: de, listeners: oe }), ae ? (de.data = ae) - : ((ae = Xu(s)), ae !== null && (de.data = ae)))), + : ((ae = Qu(s)), ae !== null && (de.data = ae)))), (ae = _1 ? x1(e, s) : S1(e, s)) && ((M = Ho(M, "onBeforeInput")), 0 < M.length && - ((z = new Vu("onBeforeInput", "beforeinput", null, s, z)), + ((z = new Uu("onBeforeInput", "beforeinput", null, s, z)), H.push({ event: z, listeners: M }), (z.data = ae))); } - md(H, r); + gd(H, r); }); } function Nr(e, r, s) { @@ -3503,7 +3503,7 @@ function Nb() { while (e && e.tag !== 5); return e || null; } - function bd(e, r, s, l, u) { + function vd(e, r, s, l, u) { for (var p = r._reactName, g = []; s !== null && s !== l; ) { var _ = s, k = _.alternate, @@ -3521,7 +3521,7 @@ function Nb() { } var B1 = /\r\n?/g, L1 = /\u0000|\uFFFD/g; - function vd(e) { + function yd(e) { return (typeof e == "string" ? e : "" + e) .replace( B1, @@ -3531,7 +3531,7 @@ function Nb() { .replace(L1, ""); } function Vo(e, r, s) { - if (((r = vd(r)), vd(e) !== r && s)) throw Error(o(425)); + if (((r = yd(r)), yd(e) !== r && s)) throw Error(o(425)); } function Uo() {} var Ss = null, @@ -3549,13 +3549,13 @@ function Nb() { } var Cs = typeof setTimeout == "function" ? setTimeout : void 0, $1 = typeof clearTimeout == "function" ? clearTimeout : void 0, - yd = typeof Promise == "function" ? Promise : void 0, + _d = typeof Promise == "function" ? Promise : void 0, A1 = typeof queueMicrotask == "function" ? queueMicrotask - : typeof yd < "u" + : typeof _d < "u" ? function (e) { - return yd.resolve(null).then(e).catch(D1); + return _d.resolve(null).then(e).catch(D1); } : Cs; function D1(e) { @@ -3591,7 +3591,7 @@ function Nb() { } return e; } - function _d(e) { + function xd(e) { e = e.previousSibling; for (var r = 0; e; ) { if (e.nodeType === 8) { @@ -3621,9 +3621,9 @@ function Nb() { ((s = r.alternate), r.child !== null || (s !== null && s.child !== null)) ) - for (e = _d(e); e !== null; ) { + for (e = xd(e); e !== null; ) { if ((s = e[nn])) return s; - e = _d(e); + e = xd(e); } return r; } @@ -3684,11 +3684,11 @@ function Nb() { function qo() { $e(xt), $e(ct); } - function xd(e, r, s) { + function Sd(e, r, s) { if (ct.current !== Mn) throw Error(o(168)); Ne(ct, r), Ne(xt, s); } - function Sd(e, r, s) { + function wd(e, r, s) { var l = e.stateNode; if (((r = r.childContextTypes), typeof l.getChildContext != "function")) return s; @@ -3707,11 +3707,11 @@ function Nb() { !0 ); } - function wd(e, r, s) { + function kd(e, r, s) { var l = e.stateNode; if (!l) throw Error(o(169)); s - ? ((e = Sd(e, r, e0)), + ? ((e = wd(e, r, e0)), (l.__reactInternalMemoizedMergedChildContext = e), $e(xt), $e(ct), @@ -3722,11 +3722,11 @@ function Nb() { var pn = null, Ko = !1, Ts = !1; - function kd(e) { + function Cd(e) { pn === null ? (pn = [e]) : pn.push(e); } function V1(e) { - (Ko = !0), kd(e); + (Ko = !0), Cd(e); } function Nn() { if (!Ts && pn !== null) { @@ -3742,7 +3742,7 @@ function Nb() { } (pn = null), (Ko = !1); } catch (u) { - throw (pn !== null && (pn = pn.slice(e + 1)), Pu(Yi, Nn), u); + throw (pn !== null && (pn = pn.slice(e + 1)), Ou(Yi, Nn), u); } finally { (Fe = r), (Ts = !1); } @@ -3761,7 +3761,7 @@ function Nb() { function n0(e, r) { ($0[A0++] = Qo), ($0[A0++] = Xo), (Xo = e), (Qo = r); } - function Cd(e, r, s) { + function Pd(e, r, s) { (Lt[$t++] = hn), (Lt[$t++] = mn), (Lt[$t++] = t0), (t0 = e); var l = hn; e = mn; @@ -3778,7 +3778,7 @@ function Nb() { } else (hn = (1 << p) | (s << u) | l), (mn = e); } function js(e) { - e.return !== null && (n0(e, 1), Cd(e, 1, 0)); + e.return !== null && (n0(e, 1), Pd(e, 1, 0)); } function Is(e) { for (; e === Xo; ) @@ -3795,7 +3795,7 @@ function Nb() { It = null, De = !1, Kt = null; - function Pd(e, r) { + function Od(e, r) { var s = Ht(5, null, null, 0); (s.elementType = "DELETED"), (s.stateNode = r), @@ -3803,7 +3803,7 @@ function Nb() { (r = e.deletions), r === null ? ((e.deletions = [s]), (e.flags |= 16)) : r.push(s); } - function Od(e, r) { + function Ed(e, r) { switch (e.tag) { case 5: var s = e.type; @@ -3852,12 +3852,12 @@ function Nb() { var r = It; if (r) { var s = r; - if (!Od(e, r)) { + if (!Ed(e, r)) { if (Fs(e)) throw Error(o(418)); r = Fn(s.nextSibling); var l = jt; - r && Od(e, r) - ? Pd(l, s) + r && Ed(e, r) + ? Od(l, s) : ((e.flags = (e.flags & -4097) | 2), (De = !1), (jt = e)); } } else { @@ -3866,7 +3866,7 @@ function Nb() { } } } - function Ed(e) { + function Td(e) { for ( e = e.return; e !== null && e.tag !== 5 && e.tag !== 3 && e.tag !== 13; @@ -3877,7 +3877,7 @@ function Nb() { } function Yo(e) { if (e !== jt) return !1; - if (!De) return Ed(e), (De = !0), !1; + if (!De) return Td(e), (De = !0), !1; var r; if ( ((r = e.tag !== 3) && @@ -3886,10 +3886,10 @@ function Nb() { (r = r !== "head" && r !== "body" && !ks(e.type, e.memoizedProps))), r && (r = It)) ) { - if (Fs(e)) throw (Td(), Error(o(418))); - for (; r; ) Pd(e, r), (r = Fn(r.nextSibling)); + if (Fs(e)) throw (jd(), Error(o(418))); + for (; r; ) Od(e, r), (r = Fn(r.nextSibling)); } - if ((Ed(e), e.tag === 13)) { + if ((Td(e), e.tag === 13)) { if (((e = e.memoizedState), (e = e !== null ? e.dehydrated : null), !e)) throw Error(o(317)); e: { @@ -3911,7 +3911,7 @@ function Nb() { } else It = jt ? Fn(e.stateNode.nextSibling) : null; return !0; } - function Td() { + function jd() { for (var e = It; e; ) e = Fn(e.nextSibling); } function D0() { @@ -3974,7 +3974,7 @@ function Nb() { function As(e) { r0 === null ? (r0 = [e]) : r0.push(e); } - function jd(e, r, s, l) { + function Id(e, r, s, l) { var u = r.interleaved; return ( u === null ? ((s.next = s), As(r)) : ((s.next = u.next), (u.next = s)), @@ -4003,7 +4003,7 @@ function Nb() { effects: null, }; } - function Id(e, r) { + function Fd(e, r) { (e = e.updateQueue), r.updateQueue === e && (r.updateQueue = { @@ -4050,7 +4050,7 @@ function Nb() { (l &= e.pendingLanes), (s |= l), (r.lanes = s), es(e, s); } } - function Fd(e, r) { + function Rd(e, r) { var s = e.updateQueue, l = e.alternate; if (l !== null && ((l = l.updateQueue), s === l)) { @@ -4186,7 +4186,7 @@ function Nb() { (i0 |= g), (e.lanes = g), (e.memoizedState = H); } } - function Rd(e, r, s) { + function Md(e, r, s) { if (((e = r.effects), (r.effects = null), e !== null)) for (r = 0; r < e.length; r++) { var l = e[r], @@ -4198,7 +4198,7 @@ function Nb() { } } } - var Md = new n.Component().refs; + var Nd = new n.Component().refs; function zs(e, r, s, l) { (r = e.memoizedState), (s = s(l, r)), @@ -4242,7 +4242,7 @@ function Nb() { r !== null && (Zt(r, e, l, s), ea(r, e, l)); }, }; - function Nd(e, r, s, l, u, p, g) { + function Bd(e, r, s, l, u, p, g) { return ( (e = e.stateNode), typeof e.shouldComponentUpdate == "function" @@ -4252,7 +4252,7 @@ function Nb() { : !0 ); } - function Bd(e, r, s) { + function Ld(e, r, s) { var l = !1, u = Mn, p = r.contextType; @@ -4275,7 +4275,7 @@ function Nb() { r ); } - function Ld(e, r, s, l) { + function $d(e, r, s, l) { (e = r.state), typeof r.componentWillReceiveProps == "function" && r.componentWillReceiveProps(s, l), @@ -4285,7 +4285,7 @@ function Nb() { } function Hs(e, r, s, l) { var u = e.stateNode; - (u.props = s), (u.state = e.memoizedState), (u.refs = Md), Ds(e); + (u.props = s), (u.state = e.memoizedState), (u.refs = Nd), Ds(e); var p = r.contextType; typeof p == "object" && p !== null ? (u.context = At(p)) @@ -4326,7 +4326,7 @@ function Nb() { ? r.ref : ((r = function (g) { var _ = u.refs; - _ === Md && (_ = u.refs = {}), + _ === Nd && (_ = u.refs = {}), g === null ? delete _[p] : (_[p] = g); }), (r._stringRef = p), @@ -4350,11 +4350,11 @@ function Nb() { )) ); } - function $d(e) { + function Ad(e) { var r = e._init; return r(e._payload); } - function Ad(e) { + function Dd(e) { function r(I, E) { if (e) { var F = I.deletions; @@ -4402,7 +4402,7 @@ function Nb() { (typeof te == "object" && te !== null && te.$$typeof === he && - $d(te) === E.type)) + Ad(te) === E.type)) ? ((G = u(E, F.props)), (G.ref = $r(I, E, F)), (G.return = I), G) : ((G = Sa(F.type, F.key, F.props, null, I.mode, G)), (G.ref = $r(I, E, F)), @@ -4608,7 +4608,7 @@ function Nb() { (typeof te == "object" && te !== null && te.$$typeof === he && - $d(te) === oe.type) + Ad(te) === oe.type) ) { s(I, oe.sibling), (E = u(oe, F.props)), @@ -4673,8 +4673,8 @@ function Nb() { } return We; } - var V0 = Ad(!0), - Dd = Ad(!1), + var V0 = Dd(!0), + zd = Dd(!1), Ar = {}, rn = Rn(Ar), Dr = Rn(Ar), @@ -4700,7 +4700,7 @@ function Nb() { function U0() { $e(rn), $e(Dr), $e(zr); } - function zd(e) { + function Hd(e) { o0(zr.current); var r = o0(rn.current), s = Hi(r, e.type); @@ -4910,8 +4910,8 @@ function Nb() { } return [p, l]; } - function Hd() {} - function Vd(e, r) { + function Vd() {} + function Ud(e, r) { var s = He, l = Dt(), u = r(), @@ -4919,20 +4919,20 @@ function Nb() { if ( (p && ((l.memoizedState = u), (wt = !0)), (l = l.queue), - Js(qd.bind(null, s, l, e), [e]), + Js(Wd.bind(null, s, l, e), [e]), l.getSnapshot !== r || p || (tt !== null && tt.memoizedState.tag & 1)) ) { if ( ((s.flags |= 2048), - Gr(9, Gd.bind(null, s, l, u, r), void 0, null), + Gr(9, qd.bind(null, s, l, u, r), void 0, null), nt === null) ) throw Error(o(349)); - (a0 & 30) !== 0 || Ud(s, r, u); + (a0 & 30) !== 0 || Gd(s, r, u); } return u; } - function Ud(e, r, s) { + function Gd(e, r, s) { (e.flags |= 16384), (e = { getSnapshot: r, value: s }), (r = He.updateQueue), @@ -4942,15 +4942,15 @@ function Nb() { (r.stores = [e])) : ((s = r.stores), s === null ? (r.stores = [e]) : s.push(e)); } - function Gd(e, r, s, l) { - (r.value = s), (r.getSnapshot = l), Wd(r) && Kd(e); + function qd(e, r, s, l) { + (r.value = s), (r.getSnapshot = l), Kd(r) && Xd(e); } - function qd(e, r, s) { + function Wd(e, r, s) { return s(function () { - Wd(r) && Kd(e); + Kd(r) && Xd(e); }); } - function Wd(e) { + function Kd(e) { var r = e.getSnapshot; e = e.value; try { @@ -4960,11 +4960,11 @@ function Nb() { return !0; } } - function Kd(e) { + function Xd(e) { var r = gn(e, 1); r !== null && Zt(r, e, 1, -1); } - function Xd(e) { + function Qd(e) { var r = on(); return ( typeof e == "function" && (e = e()), @@ -4997,7 +4997,7 @@ function Nb() { e ); } - function Qd() { + function Yd() { return Dt().memoizedState; } function sa(e, r, s, l) { @@ -5018,19 +5018,19 @@ function Nb() { } (He.flags |= e), (u.memoizedState = Gr(1 | r, s, p, l)); } - function Yd(e, r) { + function Zd(e, r) { return sa(8390656, 8, e, r); } function Js(e, r) { return la(2048, 8, e, r); } - function Zd(e, r) { + function Jd(e, r) { return la(4, 2, e, r); } - function Jd(e, r) { + function ef(e, r) { return la(4, 4, e, r); } - function ef(e, r) { + function tf(e, r) { if (typeof r == "function") return ( (e = e()), @@ -5048,13 +5048,13 @@ function Nb() { } ); } - function tf(e, r, s) { + function nf(e, r, s) { return ( - (s = s != null ? s.concat([e]) : null), la(4, 4, ef.bind(null, r, e), s) + (s = s != null ? s.concat([e]) : null), la(4, 4, tf.bind(null, r, e), s) ); } function el() {} - function nf(e, r) { + function rf(e, r) { var s = Dt(); r = r === void 0 ? null : r; var l = s.memoizedState; @@ -5062,7 +5062,7 @@ function Nb() { ? l[0] : ((s.memoizedState = [e, r]), e); } - function rf(e, r) { + function of(e, r) { var s = Dt(); r = r === void 0 ? null : r; var l = s.memoizedState; @@ -5070,11 +5070,11 @@ function Nb() { ? l[0] : ((e = e()), (s.memoizedState = [e, r]), e); } - function of(e, r, s) { + function af(e, r, s) { return (a0 & 21) === 0 ? (e.baseState && ((e.baseState = !1), (wt = !0)), (e.memoizedState = s)) : (Wt(s, r) || - ((s = ju()), (He.lanes |= s), (i0 |= s), (e.baseState = !0)), + ((s = Iu()), (He.lanes |= s), (i0 |= s), (e.baseState = !0)), r); } function q1(e, r) { @@ -5088,7 +5088,7 @@ function Nb() { (Fe = s), (Ws.transition = l); } } - function af() { + function sf() { return Dt().memoizedState; } function W1(e, r, s) { @@ -5101,12 +5101,12 @@ function Nb() { eagerState: null, next: null, }), - sf(e)) + lf(e)) ) - lf(r, s); - else if (((s = jd(e, r, s, l)), s !== null)) { + cf(r, s); + else if (((s = Id(e, r, s, l)), s !== null)) { var u = vt(); - Zt(s, e, l, u), cf(s, r, l); + Zt(s, e, l, u), uf(s, r, l); } } function K1(e, r, s) { @@ -5118,7 +5118,7 @@ function Nb() { eagerState: null, next: null, }; - if (sf(e)) lf(r, u); + if (lf(e)) cf(r, u); else { var p = e.alternate; if ( @@ -5140,21 +5140,21 @@ function Nb() { } catch { } finally { } - (s = jd(e, r, u, l)), - s !== null && ((u = vt()), Zt(s, e, l, u), cf(s, r, l)); + (s = Id(e, r, u, l)), + s !== null && ((u = vt()), Zt(s, e, l, u), uf(s, r, l)); } } - function sf(e) { + function lf(e) { var r = e.alternate; return e === He || (r !== null && r === He); } - function lf(e, r) { + function cf(e, r) { Hr = ia = !0; var s = e.pending; s === null ? (r.next = r) : ((r.next = s.next), (s.next = r)), (e.pending = r); } - function cf(e, r, s) { + function uf(e, r, s) { if ((s & 4194240) !== 0) { var l = r.lanes; (l &= e.pendingLanes), (s |= l), (r.lanes = s), es(e, s); @@ -5186,11 +5186,11 @@ function Nb() { return (on().memoizedState = [e, r === void 0 ? null : r]), e; }, useContext: At, - useEffect: Yd, + useEffect: Zd, useImperativeHandle: function (e, r, s) { return ( (s = s != null ? s.concat([e]) : null), - sa(4194308, 4, ef.bind(null, r, e), s) + sa(4194308, 4, tf.bind(null, r, e), s) ); }, useLayoutEffect: function (e, r) { @@ -5230,13 +5230,13 @@ function Nb() { var r = on(); return (e = { current: e }), (r.memoizedState = e); }, - useState: Xd, + useState: Qd, useDebugValue: el, useDeferredValue: function (e) { return (on().memoizedState = e); }, useTransition: function () { - var e = Xd(!1), + var e = Qd(!1), r = e[0]; return (e = q1.bind(null, e[1])), (on().memoizedState = e), [r, e]; }, @@ -5249,15 +5249,15 @@ function Nb() { s = s(); } else { if (((s = r()), nt === null)) throw Error(o(349)); - (a0 & 30) !== 0 || Ud(l, r, s); + (a0 & 30) !== 0 || Gd(l, r, s); } u.memoizedState = s; var p = { value: s, getSnapshot: r }; return ( (u.queue = p), - Yd(qd.bind(null, l, p, e), [e]), + Zd(Wd.bind(null, l, p, e), [e]), (l.flags |= 2048), - Gr(9, Gd.bind(null, l, p, s, r), void 0, null), + Gr(9, qd.bind(null, l, p, s, r), void 0, null), s ); }, @@ -5279,60 +5279,60 @@ function Nb() { }, Q1 = { readContext: At, - useCallback: nf, + useCallback: rf, useContext: At, useEffect: Js, - useImperativeHandle: tf, - useInsertionEffect: Zd, - useLayoutEffect: Jd, - useMemo: rf, + useImperativeHandle: nf, + useInsertionEffect: Jd, + useLayoutEffect: ef, + useMemo: of, useReducer: Ys, - useRef: Qd, + useRef: Yd, useState: function () { return Ys(Ur); }, useDebugValue: el, useDeferredValue: function (e) { var r = Dt(); - return of(r, Ze.memoizedState, e); + return af(r, Ze.memoizedState, e); }, useTransition: function () { var e = Ys(Ur)[0], r = Dt().memoizedState; return [e, r]; }, - useMutableSource: Hd, - useSyncExternalStore: Vd, - useId: af, + useMutableSource: Vd, + useSyncExternalStore: Ud, + useId: sf, unstable_isNewReconciler: !1, }, Y1 = { readContext: At, - useCallback: nf, + useCallback: rf, useContext: At, useEffect: Js, - useImperativeHandle: tf, - useInsertionEffect: Zd, - useLayoutEffect: Jd, - useMemo: rf, + useImperativeHandle: nf, + useInsertionEffect: Jd, + useLayoutEffect: ef, + useMemo: of, useReducer: Zs, - useRef: Qd, + useRef: Yd, useState: function () { return Zs(Ur); }, useDebugValue: el, useDeferredValue: function (e) { var r = Dt(); - return Ze === null ? (r.memoizedState = e) : of(r, Ze.memoizedState, e); + return Ze === null ? (r.memoizedState = e) : af(r, Ze.memoizedState, e); }, useTransition: function () { var e = Zs(Ur)[0], r = Dt().memoizedState; return [e, r]; }, - useMutableSource: Hd, - useSyncExternalStore: Vd, - useId: af, + useMutableSource: Vd, + useSyncExternalStore: Ud, + useId: sf, unstable_isNewReconciler: !1, }; function G0(e, r) { @@ -5366,7 +5366,7 @@ Error generating stack: ` + } } var Z1 = typeof WeakMap == "function" ? WeakMap : Map; - function uf(e, r, s) { + function df(e, r, s) { (s = bn(-1, s)), (s.tag = 3), (s.payload = { element: null }); var l = r.value; return ( @@ -5376,7 +5376,7 @@ Error generating stack: ` + s ); } - function df(e, r, s) { + function ff(e, r, s) { (s = bn(-1, s)), (s.tag = 3); var l = e.type.getDerivedStateFromError; if (typeof l == "function") { @@ -5404,7 +5404,7 @@ Error generating stack: ` + s ); } - function ff(e, r, s) { + function pf(e, r, s) { var l = e.pingCache; if (l === null) { l = e.pingCache = new Z1(); @@ -5413,7 +5413,7 @@ Error generating stack: ` + } else (u = l.get(r)), u === void 0 && ((u = new Set()), l.set(r, u)); u.has(s) || (u.add(s), (e = fb.bind(null, e, r, s)), r.then(e, e)); } - function pf(e) { + function hf(e) { do { var r; if ( @@ -5427,7 +5427,7 @@ Error generating stack: ` + } while (e !== null); return null; } - function hf(e, r, s, l, u) { + function mf(e, r, s, l, u) { return (e.mode & 1) === 0 ? (e === r ? (e.flags |= 65536) @@ -5445,9 +5445,9 @@ Error generating stack: ` + var J1 = L.ReactCurrentOwner, wt = !1; function bt(e, r, s, l) { - r.child = e === null ? Dd(r, null, s, l) : V0(r, e.child, s, l); + r.child = e === null ? zd(r, null, s, l) : V0(r, e.child, s, l); } - function mf(e, r, s, l, u) { + function gf(e, r, s, l, u) { s = s.render; var p = r.ref; return ( @@ -5462,7 +5462,7 @@ Error generating stack: ` + : (De && s && js(r), (r.flags |= 1), bt(e, r, l, u), r.child) ); } - function gf(e, r, s, l, u) { + function bf(e, r, s, l, u) { if (e === null) { var p = s.type; return typeof p == "function" && @@ -5470,7 +5470,7 @@ Error generating stack: ` + p.defaultProps === void 0 && s.compare === null && s.defaultProps === void 0 - ? ((r.tag = 15), (r.type = p), bf(e, r, p, l, u)) + ? ((r.tag = 15), (r.type = p), vf(e, r, p, l, u)) : ((e = Sa(s.type, null, l, r, r.mode, u)), (e.ref = r.ref), (e.return = r), @@ -5491,7 +5491,7 @@ Error generating stack: ` + (r.child = e) ); } - function bf(e, r, s, l, u) { + function vf(e, r, s, l, u) { if (e !== null) { var p = e.memoizedProps; if (Ir(p, l) && e.ref === r.ref) @@ -5501,7 +5501,7 @@ Error generating stack: ` + } return rl(e, r, s, l, u); } - function vf(e, r, s) { + function yf(e, r, s) { var l = r.pendingProps, u = l.children, p = e !== null ? e.memoizedState : null; @@ -5544,7 +5544,7 @@ Error generating stack: ` + (Ft |= l); return bt(e, r, u, s), r.child; } - function yf(e, r) { + function _f(e, r) { var s = r.ref; ((e === null && s !== null) || (e !== null && e.ref !== s)) && ((r.flags |= 512), (r.flags |= 2097152)); @@ -5564,13 +5564,13 @@ Error generating stack: ` + : (De && l && js(r), (r.flags |= 1), bt(e, r, s, u), r.child) ); } - function _f(e, r, s, l, u) { + function xf(e, r, s, l, u) { if (St(s)) { var p = !0; Wo(r); } else p = !1; if ((H0(r, u), r.stateNode === null)) - da(e, r), Bd(r, s, l), Hs(r, s, l, u), (l = !0); + da(e, r), Ld(r, s, l), Hs(r, s, l, u), (l = !0); else if (e === null) { var g = r.stateNode, _ = r.memoizedProps; @@ -5587,7 +5587,7 @@ Error generating stack: ` + H || (typeof g.UNSAFE_componentWillReceiveProps != "function" && typeof g.componentWillReceiveProps != "function") || - ((_ !== l || k !== M) && Ld(r, g, l, M)), + ((_ !== l || k !== M) && $d(r, g, l, M)), (Bn = !1); var D = r.memoizedState; (g.state = D), @@ -5595,7 +5595,7 @@ Error generating stack: ` + (k = r.memoizedState), _ !== l || D !== k || xt.current || Bn ? (typeof z == "function" && (zs(r, s, z, l), (k = r.memoizedState)), - (_ = Bn || Nd(r, s, _, l, D, k, M)) + (_ = Bn || Bd(r, s, _, l, D, k, M)) ? (H || (typeof g.UNSAFE_componentWillMount != "function" && typeof g.componentWillMount != "function") || @@ -5617,7 +5617,7 @@ Error generating stack: ` + (l = !1)); } else { (g = r.stateNode), - Id(e, r), + Fd(e, r), (_ = r.memoizedProps), (M = r.type === r.elementType ? _ : Xt(r.type, _)), (g.props = M), @@ -5633,7 +5633,7 @@ Error generating stack: ` + typeof g.getSnapshotBeforeUpdate == "function") || (typeof g.UNSAFE_componentWillReceiveProps != "function" && typeof g.componentWillReceiveProps != "function") || - ((_ !== H || D !== k) && Ld(r, g, l, k)), + ((_ !== H || D !== k) && $d(r, g, l, k)), (Bn = !1), (D = r.memoizedState), (g.state = D), @@ -5641,7 +5641,7 @@ Error generating stack: ` + var Z = r.memoizedState; _ !== H || D !== Z || xt.current || Bn ? (typeof X == "function" && (zs(r, s, X, l), (Z = r.memoizedState)), - (M = Bn || Nd(r, s, M, l, D, Z, k) || !1) + (M = Bn || Bd(r, s, M, l, D, Z, k) || !1) ? (z || (typeof g.UNSAFE_componentWillUpdate != "function" && typeof g.componentWillUpdate != "function") || @@ -5675,9 +5675,9 @@ Error generating stack: ` + return ol(e, r, s, l, p, u); } function ol(e, r, s, l, u, p) { - yf(e, r); + _f(e, r); var g = (r.flags & 128) !== 0; - if (!l && !g) return u && wd(r, s, !1), vn(e, r, p); + if (!l && !g) return u && kd(r, s, !1), vn(e, r, p); (l = r.stateNode), (J1.current = r); var _ = g && typeof s.getDerivedStateFromError != "function" ? null : l.render(); @@ -5687,25 +5687,25 @@ Error generating stack: ` + ? ((r.child = V0(r, e.child, null, p)), (r.child = V0(r, null, _, p))) : bt(e, r, _, p), (r.memoizedState = l.state), - u && wd(r, s, !0), + u && kd(r, s, !0), r.child ); } - function xf(e) { + function Sf(e) { var r = e.stateNode; r.pendingContext - ? xd(e, r.pendingContext, r.pendingContext !== r.context) - : r.context && xd(e, r.context, !1), + ? Sd(e, r.pendingContext, r.pendingContext !== r.context) + : r.context && Sd(e, r.context, !1), Vs(e, r.containerInfo); } - function Sf(e, r, s, l, u) { + function wf(e, r, s, l, u) { return D0(), Ms(u), (r.flags |= 256), bt(e, r, s, l), r.child; } var al = { dehydrated: null, treeContext: null, retryLane: 0 }; function il(e) { return { baseLanes: e, cachePool: null, transitions: null }; } - function wf(e, r, s) { + function kf(e, r, s) { var l = r.pendingProps, u = ze.current, p = !1, @@ -5908,7 +5908,7 @@ Error generating stack: ` + (r.flags |= 4096), r); } - function kf(e, r, s) { + function Cf(e, r, s) { e.lanes |= r; var l = e.alternate; l !== null && (l.lanes |= r), $s(e.return, r, s); @@ -5931,7 +5931,7 @@ Error generating stack: ` + (p.tail = s), (p.tailMode = u)); } - function Cf(e, r, s) { + function Pf(e, r, s) { var l = r.pendingProps, u = l.revealOrder, p = l.tail; @@ -5940,8 +5940,8 @@ Error generating stack: ` + else { if (e !== null && (e.flags & 128) !== 0) e: for (e = r.child; e !== null; ) { - if (e.tag === 13) e.memoizedState !== null && kf(e, s, r); - else if (e.tag === 19) kf(e, s, r); + if (e.tag === 13) e.memoizedState !== null && Cf(e, s, r); + else if (e.tag === 19) Cf(e, s, r); else if (e.child !== null) { (e.child.return = e), (e = e.child); continue; @@ -6016,10 +6016,10 @@ Error generating stack: ` + function tb(e, r, s) { switch (r.tag) { case 3: - xf(r), D0(); + Sf(r), D0(); break; case 5: - zd(r); + Hd(r); break; case 1: St(r.type) && Wo(r); @@ -6037,7 +6037,7 @@ Error generating stack: ` + return l.dehydrated !== null ? (Ne(ze, ze.current & 1), (r.flags |= 128), null) : (s & r.child.childLanes) !== 0 - ? wf(e, r, s) + ? kf(e, r, s) : (Ne(ze, ze.current & 1), (e = vn(e, r, s)), e !== null ? e.sibling : null); @@ -6045,7 +6045,7 @@ Error generating stack: ` + break; case 19: if (((l = (s & r.childLanes) !== 0), (e.flags & 128) !== 0)) { - if (l) return Cf(e, r, s); + if (l) return Pf(e, r, s); r.flags |= 128; } if ( @@ -6059,12 +6059,12 @@ Error generating stack: ` + return null; case 22: case 23: - return (r.lanes = 0), vf(e, r, s); + return (r.lanes = 0), yf(e, r, s); } return vn(e, r, s); } - var Pf, cl, Of, Ef; - (Pf = function (e, r) { + var Of, cl, Ef, Tf; + (Of = function (e, r) { for (var s = r.child; s !== null; ) { if (s.tag === 5 || s.tag === 6) e.appendChild(s.stateNode); else if (s.tag !== 4 && s.child !== null) { @@ -6080,7 +6080,7 @@ Error generating stack: ` + } }), (cl = function () {}), - (Of = function (e, r, s, l) { + (Ef = function (e, r, s, l) { var u = e.memoizedProps; if (u !== l) { (e = r.stateNode), o0(rn.current); @@ -6156,7 +6156,7 @@ Error generating stack: ` + (r.updateQueue = M) && (r.flags |= 4); } }), - (Ef = function (e, r, s, l) { + (Tf = function (e, r, s, l) { s !== l && (r.flags |= 4); }); function qr(e, r) { @@ -6238,7 +6238,7 @@ Error generating stack: ` + Us(r); var u = o0(zr.current); if (((s = r.type), e !== null && r.stateNode != null)) - Of(e, r, s, l, u), + Ef(e, r, s, l, u), e.ref !== r.ref && ((r.flags |= 512), (r.flags |= 2097152)); else { if (!l) { @@ -6280,7 +6280,7 @@ Error generating stack: ` + Le("invalid", l); break; case "textarea": - cu(l, p), Le("invalid", l); + uu(l, p), Le("invalid", l); } Vi(s, p), (u = null); for (var g in p) @@ -6304,10 +6304,10 @@ Error generating stack: ` + } switch (s) { case "input": - Bt(l), lu(l, p, !0); + Bt(l), cu(l, p, !0); break; case "textarea": - Bt(l), du(l); + Bt(l), fu(l); break; case "select": case "option": @@ -6318,7 +6318,7 @@ Error generating stack: ` + (l = u), (r.updateQueue = l), l !== null && (r.flags |= 4); } else { (g = u.nodeType === 9 ? u : u.ownerDocument), - e === "http://www.w3.org/1999/xhtml" && (e = fu(s)), + e === "http://www.w3.org/1999/xhtml" && (e = pu(s)), e === "http://www.w3.org/1999/xhtml" ? s === "script" ? ((e = g.createElement("div")), @@ -6335,7 +6335,7 @@ Error generating stack: ` + : (e = g.createElementNS(e, s)), (e[nn] = r), (e[Br] = l), - Pf(e, r, !1, !1), + Of(e, r, !1, !1), (r.stateNode = e); e: { switch (((g = Ui(s, l)), s)) { @@ -6375,7 +6375,7 @@ Error generating stack: ` + Le("invalid", e); break; case "textarea": - cu(e, l), (u = zi(e, l)), Le("invalid", e); + uu(e, l), (u = zi(e, l)), Le("invalid", e); break; default: u = l; @@ -6385,9 +6385,9 @@ Error generating stack: ` + if (_.hasOwnProperty(p)) { var k = _[p]; p === "style" - ? mu(e, k) + ? gu(e, k) : p === "dangerouslySetInnerHTML" - ? ((k = k ? k.__html : void 0), k != null && pu(e, k)) + ? ((k = k ? k.__html : void 0), k != null && hu(e, k)) : p === "children" ? typeof k == "string" ? (s !== "textarea" || k !== "") && hr(e, k) @@ -6401,10 +6401,10 @@ Error generating stack: ` + } switch (s) { case "input": - Bt(e), lu(e, l, !1); + Bt(e), cu(e, l, !1); break; case "textarea": - Bt(e), du(e); + Bt(e), fu(e); break; case "option": l.value != null && e.setAttribute("value", "" + fe(l.value)); @@ -6440,7 +6440,7 @@ Error generating stack: ` + } return dt(r), null; case 6: - if (e && r.stateNode != null) Ef(e, r, e.memoizedProps, l); + if (e && r.stateNode != null) Tf(e, r, e.memoizedProps, l); else { if (typeof l != "string" && r.stateNode === null) throw Error(o(166)); if (((s = o0(zr.current)), o0(rn.current), Yo(r))) { @@ -6473,7 +6473,7 @@ Error generating stack: ` + (e.memoizedState !== null && e.memoizedState.dehydrated !== null)) ) { if (De && It !== null && (r.mode & 1) !== 0 && (r.flags & 128) === 0) - Td(), D0(), (r.flags |= 98560), (p = !1); + jd(), D0(), (r.flags |= 98560), (p = !1); else if (((p = Yo(r)), l !== null && l.dehydrated !== null)) { if (e === null) { if (!p) throw Error(o(318)); @@ -6698,9 +6698,9 @@ Error generating stack: ` + Ve(e, r, l); } } - var Tf = !1; + var jf = !1; function ab(e, r) { - if (((Ss = Fo), (e = ad()), hs(e))) { + if (((Ss = Fo), (e = id()), hs(e))) { if ("selectionStart" in e) var s = { start: e.selectionStart, end: e.selectionEnd }; else @@ -6807,7 +6807,7 @@ Error generating stack: ` + } Y = r.return; } - return (Z = Tf), (Tf = !1), Z; + return (Z = jf), (jf = !1), Z; } function Wr(e, r, s) { var l = r.updateQueue; @@ -6850,9 +6850,9 @@ Error generating stack: ` + typeof r == "function" ? r(e) : (r.current = e); } } - function jf(e) { + function If(e) { var r = e.alternate; - r !== null && ((e.alternate = null), jf(r)), + r !== null && ((e.alternate = null), If(r)), (e.child = null), (e.deletions = null), (e.sibling = null), @@ -6873,13 +6873,13 @@ Error generating stack: ` + (e.stateNode = null), (e.updateQueue = null); } - function If(e) { + function Ff(e) { return e.tag === 5 || e.tag === 3 || e.tag === 4; } - function Ff(e) { + function Rf(e) { e: for (;;) { for (; e.sibling === null; ) { - if (e.return === null || If(e.return)) return null; + if (e.return === null || Ff(e.return)) return null; e = e.return; } for ( @@ -6921,9 +6921,9 @@ Error generating stack: ` + var it = null, Qt = !1; function $n(e, r, s) { - for (s = s.child; s !== null; ) Rf(e, r, s), (s = s.sibling); + for (s = s.child; s !== null; ) Mf(e, r, s), (s = s.sibling); } - function Rf(e, r, s) { + function Mf(e, r, s) { if (tn && typeof tn.onCommitFiberUnmount == "function") try { tn.onCommitFiberUnmount(Po, s); @@ -7014,7 +7014,7 @@ Error generating stack: ` + $n(e, r, s); } } - function Mf(e) { + function Nf(e) { var r = e.updateQueue; if (r !== null) { e.updateQueue = null; @@ -7050,7 +7050,7 @@ Error generating stack: ` + _ = _.return; } if (it === null) throw Error(o(160)); - Rf(p, g, u), (it = null), (Qt = !1); + Mf(p, g, u), (it = null), (Qt = !1); var k = u.alternate; k !== null && (k.return = null), (u.return = null); } catch (M) { @@ -7058,9 +7058,9 @@ Error generating stack: ` + } } if (r.subtreeFlags & 12854) - for (r = r.child; r !== null; ) Nf(r, e), (r = r.sibling); + for (r = r.child; r !== null; ) Bf(r, e), (r = r.sibling); } - function Nf(e, r) { + function Bf(e, r) { var s = e.alternate, l = e.flags; switch (e.tag) { @@ -7105,16 +7105,16 @@ Error generating stack: ` + k = e.updateQueue; if (((e.updateQueue = null), k !== null)) try { - _ === "input" && p.type === "radio" && p.name != null && su(u, p), + _ === "input" && p.type === "radio" && p.name != null && lu(u, p), Ui(_, g); var M = Ui(_, p); for (g = 0; g < k.length; g += 2) { var z = k[g], H = k[g + 1]; z === "style" - ? mu(u, H) + ? gu(u, H) : z === "dangerouslySetInnerHTML" - ? pu(u, H) + ? hu(u, H) : z === "children" ? hr(u, H) : R(u, z, H, M); @@ -7124,7 +7124,7 @@ Error generating stack: ` + Ai(u, p); break; case "textarea": - uu(u, p); + du(u, p); break; case "select": var D = u._wrapperState.wasMultiple; @@ -7177,7 +7177,7 @@ Error generating stack: ` + !p || (u.alternate !== null && u.alternate.memoizedState !== null) || (gl = qe())), - l & 4 && Mf(e); + l & 4 && Nf(e); break; case 22: if ( @@ -7219,11 +7219,11 @@ Error generating stack: ` + break; case 22: if (D.memoizedState !== null) { - $f(H); + Af(H); continue; } } - X !== null ? ((X.return = D), (Y = X)) : $f(H); + X !== null ? ((X.return = D), (Y = X)) : Af(H); } z = z.sibling; } @@ -7244,7 +7244,7 @@ Error generating stack: ` + k != null && k.hasOwnProperty("display") ? k.display : null), - (_.style.display = hu("display", g))); + (_.style.display = mu("display", g))); } catch (J) { Ve(e, e.return, J); } @@ -7277,7 +7277,7 @@ Error generating stack: ` + } break; case 19: - Yt(r, e), an(e), l & 4 && Mf(e); + Yt(r, e), an(e), l & 4 && Nf(e); break; case 21: break; @@ -7291,7 +7291,7 @@ Error generating stack: ` + try { e: { for (var s = e.return; s !== null; ) { - if (If(s)) { + if (Ff(s)) { var l = s; break e; } @@ -7303,13 +7303,13 @@ Error generating stack: ` + case 5: var u = l.stateNode; l.flags & 32 && (hr(u, ""), (l.flags &= -33)); - var p = Ff(e); + var p = Rf(e); pl(e, p, u); break; case 3: case 4: var g = l.stateNode.containerInfo, - _ = Ff(e); + _ = Rf(e); fl(e, _, g); break; default: @@ -7323,9 +7323,9 @@ Error generating stack: ` + r & 4096 && (e.flags &= -4097); } function ib(e, r, s) { - (Y = e), Bf(e); + (Y = e), Lf(e); } - function Bf(e, r, s) { + function Lf(e, r, s) { for (var l = (e.mode & 1) !== 0; Y !== null; ) { var u = Y, p = u.child; @@ -7341,21 +7341,21 @@ Error generating stack: ` + (g = Y), (k = g.child), g.tag === 22 && g.memoizedState !== null - ? Af(u) + ? Df(u) : k !== null ? ((k.return = g), (Y = k)) - : Af(u); - for (; p !== null; ) (Y = p), Bf(p), (p = p.sibling); + : Df(u); + for (; p !== null; ) (Y = p), Lf(p), (p = p.sibling); (Y = u), (fa = _), (ft = M); } - Lf(e); + $f(e); } else (u.subtreeFlags & 8772) !== 0 && p !== null ? ((p.return = u), (Y = p)) - : Lf(e); + : $f(e); } } - function Lf(e) { + function $f(e) { for (; Y !== null; ) { var r = Y; if ((r.flags & 8772) !== 0) { @@ -7384,7 +7384,7 @@ Error generating stack: ` + ); } var p = r.updateQueue; - p !== null && Rd(r, p, l); + p !== null && Md(r, p, l); break; case 3: var g = r.updateQueue; @@ -7397,7 +7397,7 @@ Error generating stack: ` + case 1: s = r.child.stateNode; } - Rd(r, g, s); + Md(r, g, s); } break; case 5: @@ -7461,7 +7461,7 @@ Error generating stack: ` + Y = r.return; } } - function $f(e) { + function Af(e) { for (; Y !== null; ) { var r = Y; if (r === e) { @@ -7476,7 +7476,7 @@ Error generating stack: ` + Y = r.return; } } - function Af(e) { + function Df(e) { for (; Y !== null; ) { var r = Y; try { @@ -7570,10 +7570,10 @@ Error generating stack: ` + : (Ce & 2) !== 0 && st !== 0 ? st & -st : U1.transition !== null - ? (_a === 0 && (_a = ju()), _a) + ? (_a === 0 && (_a = Iu()), _a) : ((e = Fe), e !== 0 || - ((e = window.event), (e = e === void 0 ? 16 : Au(e.type))), + ((e = window.event), (e = e === void 0 ? 16 : Du(e.type))), e); } function Zt(e, r, s, l) { @@ -7592,37 +7592,37 @@ Error generating stack: ` + Ug(e, r); var l = To(e, e === nt ? st : 0); if (l === 0) - s !== null && Ou(s), (e.callbackNode = null), (e.callbackPriority = 0); + s !== null && Eu(s), (e.callbackNode = null), (e.callbackPriority = 0); else if (((r = l & -l), e.callbackPriority !== r)) { - if ((s != null && Ou(s), r === 1)) - e.tag === 0 ? V1(zf.bind(null, e)) : kd(zf.bind(null, e)), + if ((s != null && Eu(s), r === 1)) + e.tag === 0 ? V1(Hf.bind(null, e)) : Cd(Hf.bind(null, e)), A1(function () { (Ce & 6) === 0 && Nn(); }), (s = null); else { - switch (Iu(l)) { + switch (Fu(l)) { case 1: s = Yi; break; case 4: - s = Eu; + s = Tu; break; case 16: s = Co; break; case 536870912: - s = Tu; + s = ju; break; default: s = Co; } - s = Xf(s, Df.bind(null, e)); + s = Qf(s, zf.bind(null, e)); } (e.callbackPriority = r), (e.callbackNode = s); } } - function Df(e, r) { + function zf(e, r) { if (((ya = -1), (_a = 0), (Ce & 6) !== 0)) throw Error(o(327)); var s = e.callbackNode; if (X0() && e.callbackNode !== s) return null; @@ -7633,14 +7633,14 @@ Error generating stack: ` + r = l; var u = Ce; Ce |= 2; - var p = Vf(); + var p = Uf(); (nt !== e || st !== r) && ((yn = null), (K0 = qe() + 500), l0(e, r)); do try { ub(); break; } catch (_) { - Hf(e, _); + Vf(e, _); } while (!0); Bs(), @@ -7725,7 +7725,7 @@ Error generating stack: ` + } } } - return Ct(e, qe()), e.callbackNode === s ? Df.bind(null, e) : null; + return Ct(e, qe()), e.callbackNode === s ? zf.bind(null, e) : null; } function yl(e, r) { var s = Xr; @@ -7783,7 +7783,7 @@ Error generating stack: ` + (e[s] = -1), (r &= ~l); } } - function zf(e) { + function Hf(e) { if ((Ce & 6) !== 0) throw Error(o(327)); X0(); var r = To(e, 0); @@ -7886,7 +7886,7 @@ Error generating stack: ` + } return e; } - function Hf(e, r) { + function Vf(e, r) { do { var s = Ke; try { @@ -7929,11 +7929,11 @@ Error generating stack: ` + (z.lanes = D.lanes)) : ((z.updateQueue = null), (z.memoizedState = null)); } - var X = pf(g); + var X = hf(g); if (X !== null) { (X.flags &= -257), - hf(X, g, _, p, r), - X.mode & 1 && ff(p, M, r), + mf(X, g, _, p, r), + X.mode & 1 && pf(p, M, r), (r = X), (k = M); var Z = r.updateQueue; @@ -7944,16 +7944,16 @@ Error generating stack: ` + break e; } else { if ((r & 1) === 0) { - ff(p, M, r), wl(); + pf(p, M, r), wl(); break e; } k = Error(o(426)); } } else if (De && _.mode & 1) { - var We = pf(g); + var We = hf(g); if (We !== null) { (We.flags & 65536) === 0 && (We.flags |= 256), - hf(We, g, _, p, r), + mf(We, g, _, p, r), Ms(G0(k, _)); break e; } @@ -7966,8 +7966,8 @@ Error generating stack: ` + switch (p.tag) { case 3: (p.flags |= 65536), (r &= -r), (p.lanes |= r); - var I = uf(p, k, r); - Fd(p, I); + var I = df(p, k, r); + Rd(p, I); break e; case 1: _ = k; @@ -7981,15 +7981,15 @@ Error generating stack: ` + (An === null || !An.has(F)))) ) { (p.flags |= 65536), (r &= -r), (p.lanes |= r); - var G = df(p, _, r); - Fd(p, G); + var G = ff(p, _, r); + Rd(p, G); break e; } } p = p.return; } while (p !== null); } - Gf(s); + qf(s); } catch (te) { (r = te), Ke === s && s !== null && (Ke = s = s.return); continue; @@ -7997,7 +7997,7 @@ Error generating stack: ` + break; } while (!0); } - function Vf() { + function Uf() { var e = ha.current; return (ha.current = ca), e === null ? ca : e; } @@ -8010,32 +8010,32 @@ Error generating stack: ` + function xa(e, r) { var s = Ce; Ce |= 2; - var l = Vf(); + var l = Uf(); (nt !== e || st !== r) && ((yn = null), l0(e, r)); do try { cb(); break; } catch (u) { - Hf(e, u); + Vf(e, u); } while (!0); if ((Bs(), (Ce = s), (ha.current = l), Ke !== null)) throw Error(o(261)); return (nt = null), (st = 0), Je; } function cb() { - for (; Ke !== null; ) Uf(Ke); + for (; Ke !== null; ) Gf(Ke); } function ub() { - for (; Ke !== null && !Ng(); ) Uf(Ke); + for (; Ke !== null && !Ng(); ) Gf(Ke); } - function Uf(e) { - var r = Kf(e.alternate, e, Ft); + function Gf(e) { + var r = Xf(e.alternate, e, Ft); (e.memoizedProps = e.pendingProps), - r === null ? Gf(e) : (Ke = r), + r === null ? qf(e) : (Ke = r), (hl.current = null); } - function Gf(e) { + function qf(e) { var r = e; do { var s = r.alternate; @@ -8091,7 +8091,7 @@ Error generating stack: ` + ((s.subtreeFlags & 2064) === 0 && (s.flags & 2064) === 0) || ba || ((ba = !0), - Xf(Co, function () { + Qf(Co, function () { return X0(), null; })), (p = (s.flags & 15990) !== 0), @@ -8104,7 +8104,7 @@ Error generating stack: ` + (Ce |= 4), (hl.current = null), ab(e, s), - Nf(s, e), + Bf(s, e), I1(ws), (Fo = !!Ss), (ws = Ss = null), @@ -8136,7 +8136,7 @@ Error generating stack: ` + } function X0() { if (Dn !== null) { - var e = Iu(va), + var e = Fu(va), r = zt.transition, s = Fe; try { @@ -8169,7 +8169,7 @@ Error generating stack: ` + z = Y; var D = z.sibling, X = z.return; - if ((jf(z), z === M)) { + if ((If(z), z === M)) { Y = null; break; } @@ -8262,19 +8262,19 @@ Error generating stack: ` + } return !1; } - function qf(e, r, s) { + function Wf(e, r, s) { (r = G0(s, r)), - (r = uf(e, r, 1)), + (r = df(e, r, 1)), (e = Ln(e, r, 1)), (r = vt()), e !== null && (_r(e, 1, r), Ct(e, r)); } function Ve(e, r, s) { - if (e.tag === 3) qf(e, e, s); + if (e.tag === 3) Wf(e, e, s); else for (; r !== null; ) { if (r.tag === 3) { - qf(r, e, s); + Wf(r, e, s); break; } else if (r.tag === 1) { var l = r.stateNode; @@ -8284,7 +8284,7 @@ Error generating stack: ` + (An === null || !An.has(l))) ) { (e = G0(s, e)), - (e = df(r, e, 1)), + (e = ff(r, e, 1)), (r = Ln(r, e, 1)), (e = vt()), r !== null && (_r(r, 1, e), Ct(r, e)); @@ -8306,7 +8306,7 @@ Error generating stack: ` + : (ml |= s)), Ct(e, r); } - function Wf(e, r) { + function Kf(e, r) { r === 0 && ((e.mode & 1) === 0 ? (r = 1) @@ -8317,7 +8317,7 @@ Error generating stack: ` + function pb(e) { var r = e.memoizedState, s = 0; - r !== null && (s = r.retryLane), Wf(e, s); + r !== null && (s = r.retryLane), Kf(e, s); } function hb(e, r) { var s = 0; @@ -8333,10 +8333,10 @@ Error generating stack: ` + default: throw Error(o(314)); } - l !== null && l.delete(r), Wf(e, s); + l !== null && l.delete(r), Kf(e, s); } - var Kf; - Kf = function (e, r, s) { + var Xf; + Xf = function (e, r, s) { if (e !== null) if (e.memoizedProps !== r.pendingProps || xt.current) wt = !0; else { @@ -8344,7 +8344,7 @@ Error generating stack: ` + return (wt = !1), tb(e, r, s); wt = (e.flags & 131072) !== 0; } - else (wt = !1), De && (r.flags & 1048576) !== 0 && Cd(r, Qo, r.index); + else (wt = !1), De && (r.flags & 1048576) !== 0 && Pd(r, Qo, r.index); switch (((r.lanes = 0), r.tag)) { case 2: var l = r.type; @@ -8390,13 +8390,13 @@ Error generating stack: ` + r = rl(null, r, l, e, s); break e; case 1: - r = _f(null, r, l, e, s); + r = xf(null, r, l, e, s); break e; case 11: - r = mf(null, r, l, e, s); + r = gf(null, r, l, e, s); break e; case 14: - r = gf(null, r, l, Xt(l.type, e), s); + r = bf(null, r, l, Xt(l.type, e), s); break e; } throw Error(o(306, l, "")); @@ -8414,15 +8414,15 @@ Error generating stack: ` + (l = r.type), (u = r.pendingProps), (u = r.elementType === l ? u : Xt(l, u)), - _f(e, r, l, u, s) + xf(e, r, l, u, s) ); case 3: e: { - if ((xf(r), e === null)) throw Error(o(387)); + if ((Sf(r), e === null)) throw Error(o(387)); (l = r.pendingProps), (p = r.memoizedState), (u = p.element), - Id(e, r), + Fd(e, r), ta(r, l, null, s); var g = r.memoizedState; if (((l = g.element), p.isDehydrated)) @@ -8438,10 +8438,10 @@ Error generating stack: ` + (r.memoizedState = p), r.flags & 256) ) { - (u = G0(Error(o(423)), r)), (r = Sf(e, r, l, s, u)); + (u = G0(Error(o(423)), r)), (r = wf(e, r, l, s, u)); break e; } else if (l !== u) { - (u = G0(Error(o(424)), r)), (r = Sf(e, r, l, s, u)); + (u = G0(Error(o(424)), r)), (r = wf(e, r, l, s, u)); break e; } else for ( @@ -8449,7 +8449,7 @@ Error generating stack: ` + jt = r, De = !0, Kt = null, - s = Dd(r, null, l, s), + s = zd(r, null, l, s), r.child = s; s; @@ -8467,21 +8467,21 @@ Error generating stack: ` + return r; case 5: return ( - zd(r), + Hd(r), e === null && Rs(r), (l = r.type), (u = r.pendingProps), (p = e !== null ? e.memoizedProps : null), (g = u.children), ks(l, u) ? (g = null) : p !== null && ks(l, p) && (r.flags |= 32), - yf(e, r), + _f(e, r), bt(e, r, g, s), r.child ); case 6: return e === null && Rs(r), null; case 13: - return wf(e, r, s); + return kf(e, r, s); case 4: return ( Vs(r, r.stateNode.containerInfo), @@ -8494,7 +8494,7 @@ Error generating stack: ` + (l = r.type), (u = r.pendingProps), (u = r.elementType === l ? u : Xt(l, u)), - mf(e, r, l, u, s) + gf(e, r, l, u, s) ); case 7: return bt(e, r, r.pendingProps, s), r.child; @@ -8589,10 +8589,10 @@ Error generating stack: ` + (l = r.type), (u = Xt(l, r.pendingProps)), (u = Xt(l.type, u)), - gf(e, r, l, u, s) + bf(e, r, l, u, s) ); case 15: - return bf(e, r, r.type, r.pendingProps, s); + return vf(e, r, r.type, r.pendingProps, s); case 17: return ( (l = r.type), @@ -8602,19 +8602,19 @@ Error generating stack: ` + (r.tag = 1), St(l) ? ((e = !0), Wo(r)) : (e = !1), H0(r, s), - Bd(r, l, u), + Ld(r, l, u), Hs(r, l, u, s), ol(null, r, l, !0, e, s) ); case 19: - return Cf(e, r, s); + return Pf(e, r, s); case 22: - return vf(e, r, s); + return yf(e, r, s); } throw Error(o(156, r.tag)); }; - function Xf(e, r) { - return Pu(e, r); + function Qf(e, r) { + return Ou(e, r); } function mb(e, r, s, l) { (this.tag = e), @@ -8813,7 +8813,7 @@ Error generating stack: ` + implementation: s, }; } - function Qf(e) { + function Yf(e) { if (!e) return Mn; e = e._reactInternals; e: { @@ -8836,14 +8836,14 @@ Error generating stack: ` + } if (e.tag === 1) { var s = e.type; - if (St(s)) return Sd(e, s, r); + if (St(s)) return wd(e, s, r); } return r; } - function Yf(e, r, s, l, u, p, g, _, k) { + function Zf(e, r, s, l, u, p, g, _, k) { return ( (e = Ol(s, l, !0, e, u, p, g, _, k)), - (e.context = Qf(null)), + (e.context = Yf(null)), (s = e.current), (l = vt()), (u = zn(s)), @@ -8861,7 +8861,7 @@ Error generating stack: ` + p = vt(), g = zn(u); return ( - (s = Qf(s)), + (s = Yf(s)), r.context === null ? (r.context = s) : (r.pendingContext = s), (r = bn(p, g)), (r.payload = { element: e }), @@ -8881,19 +8881,19 @@ Error generating stack: ` + return e.child.stateNode; } } - function Zf(e, r) { + function Jf(e, r) { if (((e = e.memoizedState), e !== null && e.dehydrated !== null)) { var s = e.retryLane; e.retryLane = s !== 0 && s < r ? s : r; } } function El(e, r) { - Zf(e, r), (e = e.alternate) && Zf(e, r); + Jf(e, r), (e = e.alternate) && Jf(e, r); } function yb() { return null; } - var Jf = + var ep = typeof reportError == "function" ? reportError : function (e) { @@ -8925,10 +8925,10 @@ Error generating stack: ` + } Pa.prototype.unstable_scheduleHydration = function (e) { if (e) { - var r = Mu(); + var r = Nu(); e = { blockedOn: null, target: e, priority: r }; for (var s = 0; s < Tn.length && r !== 0 && r < Tn[s].priority; s++); - Tn.splice(s, 0, e), s === 0 && Lu(e); + Tn.splice(s, 0, e), s === 0 && $u(e); } }; function jl(e) { @@ -8943,7 +8943,7 @@ Error generating stack: ` + (e.nodeType !== 8 || e.nodeValue !== " react-mount-point-unstable ")) ); } - function ep() {} + function tp() {} function _b(e, r, s, l, u) { if (u) { if (typeof l == "function") { @@ -8953,7 +8953,7 @@ Error generating stack: ` + p.call(M); }; } - var g = Yf(r, l, e, 0, null, !1, !1, "", ep); + var g = Zf(r, l, e, 0, null, !1, !1, "", tp); return ( (e._reactRootContainer = g), (e[fn] = g.current), @@ -8970,7 +8970,7 @@ Error generating stack: ` + _.call(M); }; } - var k = Ol(e, 0, !1, null, null, !1, !1, "", ep); + var k = Ol(e, 0, !1, null, null, !1, !1, "", tp); return ( (e._reactRootContainer = k), (e[fn] = k.current), @@ -8996,7 +8996,7 @@ Error generating stack: ` + } else g = _b(s, r, e, u, l); return Ca(g); } - (Fu = function (e) { + (Ru = function (e) { switch (e.tag) { case 3: var r = e.stateNode; @@ -9029,7 +9029,7 @@ Error generating stack: ` + El(e, 134217728); } }), - (Ru = function (e) { + (Mu = function (e) { if (e.tag === 13) { var r = zn(e), s = gn(e, r); @@ -9040,10 +9040,10 @@ Error generating stack: ` + El(e, r); } }), - (Mu = function () { + (Nu = function () { return Fe; }), - (Nu = function (e, r) { + (Bu = function (e, r) { var s = Fe; try { return (Fe = e), r(); @@ -9074,15 +9074,15 @@ Error generating stack: ` + } break; case "textarea": - uu(e, s); + du(e, s); break; case "select": (r = s.value), r != null && C0(e, !!s.multiple, r, !1); } }), - (yu = xl), - (_u = s0); - var xb = { usingClientEntryPoint: !1, Events: [Lr, N0, Go, bu, vu, xl] }, + (_u = xl), + (xu = s0); + var xb = { usingClientEntryPoint: !1, Events: [Lr, N0, Go, vu, yu, xl] }, Yr = { findFiberByHostInstance: Jn, bundleType: 0, @@ -9105,7 +9105,7 @@ Error generating stack: ` + scheduleUpdate: null, currentDispatcherRef: L.ReactCurrentDispatcher, findHostInstanceByFiber: function (e) { - return (e = ku(e)), e === null ? null : e.stateNode; + return (e = Cu(e)), e === null ? null : e.stateNode; }, findFiberByHostInstance: Yr.findFiberByHostInstance || yb, findHostInstancesForRefresh: null, @@ -9134,7 +9134,7 @@ Error generating stack: ` + if (!jl(e)) throw Error(o(299)); var s = !1, l = "", - u = Jf; + u = ep; return ( r != null && (r.unstable_strictMode === !0 && (s = !0), @@ -9154,7 +9154,7 @@ Error generating stack: ` + throw typeof e.render == "function" ? Error(o(188)) : ((e = Object.keys(e).join(",")), Error(o(268, e))); - return (e = ku(r)), (e = e === null ? null : e.stateNode), e; + return (e = Cu(r)), (e = e === null ? null : e.stateNode), e; }), (Pt.flushSync = function (e) { return s0(e); @@ -9168,13 +9168,13 @@ Error generating stack: ` + var l = (s != null && s.hydratedSources) || null, u = !1, p = "", - g = Jf; + g = ep; if ( (s != null && (s.unstable_strictMode === !0 && (u = !0), s.identifierPrefix !== void 0 && (p = s.identifierPrefix), s.onRecoverableError !== void 0 && (g = s.onRecoverableError)), - (r = Yf(r, null, e, 1, s ?? null, u, !1, p, g)), + (r = Zf(r, null, e, 1, s ?? null, u, !1, p, g)), (e[fn] = r.current), Mr(e), l) @@ -9213,10 +9213,10 @@ Error generating stack: ` + Pt ); } -var dp; -function Mh() { - if (dp) return Nl.exports; - dp = 1; +var fp; +function Nh() { + if (fp) return Nl.exports; + fp = 1; function n() { if ( !( @@ -9232,11 +9232,11 @@ function Mh() { } return n(), (Nl.exports = Nb()), Nl.exports; } -var fp; +var pp; function Bb() { - if (fp) return ja; - fp = 1; - var n = Mh(); + if (pp) return ja; + pp = 1; + var n = Nh(); return (ja.createRoot = n.createRoot), (ja.hydrateRoot = n.hydrateRoot), ja; } var Lb = Bb(); @@ -9244,7 +9244,7 @@ const $b = "modulepreload", Ab = function (n) { return "/" + n; }, - pp = {}, + hp = {}, Ia = function (t, o, a) { let i = Promise.resolve(); if (o && o.length > 0) { @@ -9265,8 +9265,8 @@ const $b = "modulepreload", (h == null ? void 0 : h.getAttribute("nonce")); i = d( o.map((m) => { - if (((m = Ab(m)), m in pp)) return; - pp[m] = !0; + if (((m = Ab(m)), m in hp)) return; + hp[m] = !0; const b = m.endsWith(".css"), v = b ? '[rel="stylesheet"]' : ""; if (document.querySelector(`link[href="${m}"]${v}`)) return; @@ -9326,7 +9326,7 @@ function Hb(n) { for (let o in n) t[o] = Bc(n[o]); return t; } -function Nh(n, ...t) { +function Bh(n, ...t) { return ( t.forEach((o) => { for (let a in o) n[a] = o[a]; @@ -9334,12 +9334,12 @@ function Nh(n, ...t) { n ); } -function Bh(n) { +function Lh(n) { const t = ~n.lastIndexOf("/") || ~n.lastIndexOf("\\"); return t === 0 ? n : ~t === n.length - 1 - ? Bh(n.substring(0, n.length - 1)) + ? Lh(n.substring(0, n.length - 1)) : n.substr(~t + 1); } var $l = /\$(\d+)|\${(\d+):\/(downcase|upcase)}/g, @@ -9365,10 +9365,10 @@ var $l = /\$(\d+)|\${(\d+):\/(downcase|upcase)}/g, }); } }; -function Lh(n, t) { +function $h(n, t) { return n < t ? -1 : n > t ? 1 : 0; } -function $h(n, t) { +function Ah(n, t) { if (n === null && t === null) return 0; if (!n) return -1; if (!t) return 1; @@ -9376,14 +9376,14 @@ function $h(n, t) { a = t.length; if (o === a) { for (let i = 0; i < o; i++) { - let c = Lh(n[i], t[i]); + let c = $h(n[i], t[i]); if (c !== 0) return c; } return 0; } return o - a; } -function hp(n) { +function mp(n) { return !!( /^#[0-9a-f]{6}$/i.test(n) || /^#[0-9a-f]{8}$/i.test(n) || @@ -9391,10 +9391,10 @@ function hp(n) { /^#[0-9a-f]{4}$/i.test(n) ); } -function Ah(n) { +function Dh(n) { return n.replace(/[\-\\\{\}\*\+\?\|\^\$\.\,\[\]\(\)\#\s]/g, "\\$&"); } -var Dh = class { +var zh = class { constructor(n) { B(this, "cache", new Map()); this.fn = n; @@ -9407,7 +9407,7 @@ var Dh = class { }, ti = class { constructor(n, t, o) { - B(this, "_cachedMatchRoot", new Dh((n) => this._root.match(n))); + B(this, "_cachedMatchRoot", new zh((n) => this._root.match(n))); (this._colorMap = n), (this._defaults = t), (this._root = o); } static createFromRawTheme(n, t) { @@ -9428,7 +9428,7 @@ var Dh = class { a = this._cachedMatchRoot .get(t) .find((i) => Vb(n.parent, i.parentScopes)); - return a ? new zh(a.fontStyle, a.foreground, a.background) : null; + return a ? new Hh(a.fontStyle, a.foreground, a.background) : null; } }, Al = class Va { @@ -9491,7 +9491,7 @@ function Vb(n, t) { function Ub(n, t) { return t === n || (n.startsWith(t) && n[t.length] === "."); } -var zh = class { +var Hh = class { constructor(n, t, o) { (this.fontStyle = n), (this.foregroundId = t), (this.backgroundId = o); } @@ -9534,11 +9534,11 @@ function Gb(n) { } let m = null; typeof d.settings.foreground == "string" && - hp(d.settings.foreground) && + mp(d.settings.foreground) && (m = d.settings.foreground); let b = null; typeof d.settings.background == "string" && - hp(d.settings.background) && + mp(d.settings.background) && (b = d.settings.background); for (let v = 0, y = h.length; v < y; v++) { let S = h[v].trim().split(" "), @@ -9571,8 +9571,8 @@ var qb = class { ))(mt || {}); function Wb(n, t) { n.sort((f, m) => { - let b = Lh(f.scope, m.scope); - return b !== 0 || ((b = $h(f.parentScopes, m.parentScopes)), b !== 0) + let b = $h(f.scope, m.scope); + return b !== 0 || ((b = Ah(f.parentScopes, m.parentScopes)), b !== 0) ? b : f.index - m.index; }); @@ -9586,7 +9586,7 @@ function Wb(n, t) { f.background !== null && (i = f.background); } let c = new Kb(t), - d = new zh(o, c.getId(a), c.getId(i)), + d = new Hh(o, c.getId(a), c.getId(i)), h = new Qb(new ic(0, null, -1, 0, 0), []); for (let f = 0, m = n.length; f < m; f++) { let b = n[f]; @@ -9636,7 +9636,7 @@ var Kb = class { } }, Xb = Object.freeze([]), - ic = class Hh { + ic = class Vh { constructor(t, o, a, i, c) { B(this, "scopeDepth"); B(this, "parentScopes"); @@ -9650,7 +9650,7 @@ var Kb = class { (this.background = c); } clone() { - return new Hh( + return new Vh( this.scopeDepth, this.parentScopes, this.fontStyle, @@ -9740,7 +9740,7 @@ var Kb = class { } for (let d = 0, h = this._rulesWithParentScopes.length; d < h; d++) { let f = this._rulesWithParentScopes[d]; - if ($h(f.parentScopes, o) === 0) { + if (Ah(f.parentScopes, o) === 0) { f.acceptOverwrite(t, a, i, c); return; } @@ -9846,10 +9846,10 @@ function ni(n, t) { const f = h(); return i === ")" && (i = a.next()), f; } - if (mp(i)) { + if (gp(i)) { const f = []; do f.push(i), (i = a.next()); - while (mp(i)); + while (gp(i)); return (m) => t(f, m); } return null; @@ -9871,7 +9871,7 @@ function ni(n, t) { return (b) => f.some((v) => v(b)); } } -function mp(n) { +function gp(n) { return !!n && !!n.match(/[\w\.:]+/); } function Yb(n) { @@ -9885,7 +9885,7 @@ function Yb(n) { }, }; } -function Vh(n) { +function Uh(n) { typeof n.dispose == "function" && n.dispose(); } var so = class { @@ -9990,11 +9990,11 @@ function ri(n, t, o) { for (const a of n) { if (o.visitedRule.has(a)) continue; o.visitedRule.add(a); - const i = a.repository ? Nh({}, t.repository, a.repository) : t.repository; + const i = a.repository ? Bh({}, t.repository, a.repository) : t.repository; Array.isArray(a.patterns) && ri(a.patterns, { ...t, repository: i }, o); const c = a.include; if (!c) continue; - const d = Uh(c); + const d = Gh(c); switch (d.kind) { case 0: Ua({ ...t, selfGrammar: t.baseGrammar }, o); @@ -10056,7 +10056,7 @@ var nv = class { (this.scopeName = n), (this.ruleName = t); } }; -function Uh(n) { +function Gh(n) { if (n === "$base") return new nv(); if (n === "$self") return new rv(); const t = n.indexOf("#"); @@ -10069,9 +10069,9 @@ function Uh(n) { } } var sv = /\\(\d+)/, - gp = /\\(\d+)/g, + bp = /\\(\d+)/g, lv = -1, - Gh = -2; + qh = -2; var vo = class { constructor(n, t, o, a) { B(this, "$location"); @@ -10089,7 +10089,7 @@ var vo = class { } get debugName() { const n = this.$location - ? `${Bh(this.$location.filename)}:${this.$location.line}` + ? `${Lh(this.$location.filename)}:${this.$location.line}` : "unknown"; return `${this.constructor.name}#${this.id} @ ${n}`; } @@ -10160,7 +10160,7 @@ var vo = class { ); } }, - bp = class extends vo { + vp = class extends vo { constructor(t, o, a, i, c) { super(t, o, a, i); B(this, "hasMissingPatterns"); @@ -10278,7 +10278,7 @@ var vo = class { (this._begin = new lo(c, this.id)), (this.beginCaptures = d), (this.whileCaptures = f), - (this._while = new lo(h, Gh)), + (this._while = new lo(h, qh)), (this.whileHasBackReferences = this._while.hasBackReferences), (this.patterns = m.patterns), (this.hasMissingPatterns = m.hasMissingPatterns), @@ -10338,7 +10338,7 @@ var vo = class { ); } }, - qh = class pt { + Wh = class pt { static createCaptureRule(t, o, a, i, c) { return t.registerRule((d) => new cv(o, d, a, i, c)); } @@ -10355,11 +10355,11 @@ var vo = class { pt._compileCaptures(t.captures, o, a), ); if (typeof t.begin > "u") { - t.repository && (a = Nh({}, a, t.repository)); + t.repository && (a = Bh({}, a, t.repository)); let c = t.patterns; return ( typeof c > "u" && t.include && (c = [{ include: t.include }]), - new bp( + new vp( t.$vscodeTextmateLocation, t.id, t.name, @@ -10429,7 +10429,7 @@ var vo = class { const h = t[c]; let f = -1; if (h.include) { - const m = Uh(h.include); + const m = Gh(h.include); switch (m.kind) { case 0: case 1: @@ -10461,7 +10461,7 @@ var vo = class { const m = o.getRule(f); let b = !1; if ( - ((m instanceof bp || m instanceof cc || m instanceof oi) && + ((m instanceof vp || m instanceof cc || m instanceof oi) && m.hasMissingPatterns && m.patterns.length === 0 && (b = !0), @@ -10477,7 +10477,7 @@ var vo = class { }; } }, - lo = class Wh { + lo = class Kh { constructor(t, o) { B(this, "source"); B(this, "ruleId"); @@ -10513,7 +10513,7 @@ var vo = class { : (this.hasBackReferences = !1); } clone() { - return new Wh(this.source, this.ruleId); + return new Kh(this.source, this.ruleId); } setSource(t) { this.source !== t && @@ -10527,8 +10527,8 @@ var vo = class { ); let a = o.map((i) => t.substring(i.start, i.end)); return ( - (gp.lastIndex = 0), - this.source.replace(gp, (i, c) => Ah(a[parseInt(c, 10)] || "")) + (bp.lastIndex = 0), + this.source.replace(bp, (i, c) => Dh(a[parseInt(c, 10)] || "")) ); } _buildAnchorCache() { @@ -10636,7 +10636,7 @@ var vo = class { compile(n) { if (!this._cached) { let t = this._items.map((o) => o.source); - this._cached = new vp( + this._cached = new yp( n, t, this._items.map((o) => o.ruleId), @@ -10665,14 +10665,14 @@ var vo = class { } _resolveAnchors(n, t, o) { let a = this._items.map((i) => i.resolveAnchors(t, o)); - return new vp( + return new yp( n, a, this._items.map((i) => i.ruleId), ); } }, - vp = class { + yp = class { constructor(n, t, o) { B(this, "scanner"); (this.regExps = t), @@ -10710,7 +10710,7 @@ var vo = class { B( this, "_getBasicScopeAttributes", - new Dh((t) => { + new zh((t) => { const o = this._scopeToLanguage(t), a = this._toStandardTokenType(t); return new Dl(o, a); @@ -10760,7 +10760,7 @@ var vo = class { if (n.length === 0) (this.values = null), (this.scopesRegExp = null); else { this.values = new Map(n); - const t = n.map(([o, a]) => Ah(o)); + const t = n.map(([o, a]) => Dh(o)); t.sort(), t.reverse(), (this.scopesRegExp = new RegExp(`^((${t.join(")|(")}))($|\\.)`, "")); @@ -10772,12 +10772,12 @@ var vo = class { if (t) return this.values.get(t[1]); } }, - yp = class { + _p = class { constructor(n, t) { (this.stack = n), (this.stoppedEarly = t); } }; -function Kh(n, t, o, a, i, c, d, h) { +function Xh(n, t, o, a, i, c, d, h) { const f = t.content.length; let m = !1, b = -1; @@ -10787,10 +10787,10 @@ function Kh(n, t, o, a, i, c, d, h) { } const v = Date.now(); for (; !m; ) { - if (h !== 0 && Date.now() - v > h) return new yp(i, !0); + if (h !== 0 && Date.now() - v > h) return new _p(i, !0); y(); } - return new yp(i, !1); + return new _p(i, !1); function y() { const x = hv(n, t, o, a, i, b); if (!x) { @@ -10887,7 +10887,7 @@ function pv(n, t, o, a, i, c) { ), v = m.findNextMatchSync(t, a, b); if (v) { - if (v.ruleId !== Gh) { + if (v.ruleId !== qh) { i = f.stack.pop(); break; } @@ -10919,7 +10919,7 @@ function hv(n, t, o, a, i, c) { } function mv(n, t, o, a, i, c) { const d = i.getRule(n), - { ruleScanner: h, findOptions: f } = Xh(d, n, i.endRule, o, a === c), + { ruleScanner: h, findOptions: f } = Qh(d, n, i.endRule, o, a === c), m = h.findNextMatchSync(t, a, f); return m ? { captureIndices: m.captureIndices, matchedRuleId: m.ruleId } @@ -10935,7 +10935,7 @@ function gv(n, t, o, a, i, c, d) { const S = n[y]; if (!S.matcher(v)) continue; const O = t.getRule(S.ruleId), - { ruleScanner: C, findOptions: P } = Xh(O, t, null, a, i === d), + { ruleScanner: C, findOptions: P } = Qh(O, t, null, a, i === d), T = C.findNextMatchSync(o, i, P); if (!T) continue; const R = T.captureIndices[0].start; @@ -10953,7 +10953,7 @@ function gv(n, t, o, a, i, c, d) { ? { priorityMatch: b === -1, captureIndices: f, matchedRuleId: m } : null; } -function Xh(n, t, o, a, i) { +function Qh(n, t, o, a, i) { return { ruleScanner: n.compileAG(t, o, a, i), findOptions: 0 }; } function bv(n, t, o, a, i) { @@ -10986,7 +10986,7 @@ function no(n, t, o, a, i, c, d) { T = C.pushAttributed(P, n), R = a.push(y.retokenizeCapturedWithRuleId, x.start, -1, !1, null, C, T), L = n.createOnigString(h.substring(0, x.end)); - Kh(n, L, o && x.start === 0, x.start, R, i, !1, 0), Vh(L); + Xh(n, L, o && x.start === 0, x.start, R, i, !1, 0), Uh(L); continue; } const S = y.getName(h, d); @@ -11011,9 +11011,9 @@ var vv = class { function yv(n, t, o, a, i, c, d, h) { return new xv(n, t, o, a, i, c, d, h); } -function _p(n, t, o, a, i) { +function xp(n, t, o, a, i) { const c = ni(t, ai), - d = qh.getCompiledRuleId(o, a, i.repository); + d = Wh.getCompiledRuleId(o, a, i.repository); for (const h of c) n.push({ debugSelector: t, @@ -11058,7 +11058,7 @@ var xv = class { (this._ruleId2desc = [null]), (this._includedGrammars = {}), (this._grammarRepository = d), - (this._grammar = xp(t, null)), + (this._grammar = Sp(t, null)), (this._injections = null), (this._tokenTypeMatchers = []), i) @@ -11097,14 +11097,14 @@ var xv = class { a = n.lookup(o); if (a) { const i = a.injections; - if (i) for (let d in i) _p(t, d, i[d], this, a); + if (i) for (let d in i) xp(t, d, i[d], this, a); const c = this._grammarRepository.injections(o); c && c.forEach((d) => { const h = this.getExternalGrammar(d); if (h) { const f = h.injectionSelector; - f && _p(t, f, h, this, h); + f && xp(t, f, h, this, h); } }); } @@ -11131,7 +11131,7 @@ var xv = class { const o = this._grammarRepository.lookup(n); if (o) return ( - (this._includedGrammars[n] = xp(o, t && t.$base)), + (this._includedGrammars[n] = Sp(o, t && t.$base)), this._includedGrammars[n] ); } @@ -11154,7 +11154,7 @@ var xv = class { } _tokenize(n, t, o, a) { this._rootId === -1 && - ((this._rootId = qh.getCompiledRuleId( + ((this._rootId = Wh.getCompiledRuleId( this._grammar.repository.$self, this, this._grammar.repository, @@ -11188,9 +11188,9 @@ var xv = class { const c = this.createOnigString(n), d = c.content.length, h = new wv(o, n, this._tokenTypeMatchers, this.balancedBracketSelectors), - f = Kh(this, c, i, 0, t, h, !0, a); + f = Xh(this, c, i, 0, t, h, !0, a); return ( - Vh(c), + Uh(c), { lineLength: d, lineTokens: h, @@ -11200,7 +11200,7 @@ var xv = class { ); } }; -function xp(n, t) { +function Sp(n, t) { return ( (n = Db(n)), (n.repository = n.repository || {}), @@ -11710,7 +11710,7 @@ class yo { yo.prototype.normal = {}; yo.prototype.property = {}; yo.prototype.space = void 0; -function Qh(n, t) { +function Yh(n, t) { const o = {}, a = {}; for (const i of n) Object.assign(o, i.property), Object.assign(a, i.normal); @@ -11767,15 +11767,15 @@ const hc = Object.freeze( class Lc extends Et { constructor(t, o, a, i) { let c = -1; - if ((super(t, o), Sp(this, "space", i), typeof a == "number")) + if ((super(t, o), wp(this, "space", i), typeof a == "number")) for (; ++c < zl.length; ) { const d = zl[c]; - Sp(this, zl[c], (a & hc[d]) === hc[d]); + wp(this, zl[c], (a & hc[d]) === hc[d]); } } } Lc.prototype.defined = !0; -function Sp(n, t, o) { +function wp(n, t, o) { o && (n[t] = o); } function cr(n) { @@ -11792,7 +11792,7 @@ function cr(n) { } return new yo(t, o, n.space); } -const Yh = cr({ +const Zh = cr({ properties: { ariaActiveDescendant: null, ariaAtomic: Xe, @@ -11848,11 +11848,11 @@ const Yh = cr({ return t === "role" ? t : "aria-" + t.slice(4).toLowerCase(); }, }); -function Zh(n, t) { +function Jh(n, t) { return t in n ? n[t] : t; } -function Jh(n, t) { - return Zh(n, t.toLowerCase()); +function em(n, t) { + return Jh(n, t.toLowerCase()); } const Ev = cr({ attributes: { @@ -12157,7 +12157,7 @@ const Ev = cr({ unselectable: null, }, space: "html", - transform: Jh, + transform: em, }), Tv = cr({ attributes: { @@ -12713,9 +12713,9 @@ const Ev = cr({ zoomAndPan: null, }, space: "svg", - transform: Zh, + transform: Jh, }), - em = cr({ + tm = cr({ properties: { xLinkActuate: null, xLinkArcRole: null, @@ -12730,13 +12730,13 @@ const Ev = cr({ return "xlink:" + t.slice(5).toLowerCase(); }, }), - tm = cr({ + nm = cr({ attributes: { xmlnsxlink: "xmlns:xlink" }, properties: { xmlnsXLink: null, xmlns: null }, space: "xmlns", - transform: Jh, + transform: em, }), - nm = cr({ + rm = cr({ properties: { xmlBase: null, xmlLang: null, xmlSpace: null }, space: "xml", transform(n, t) { @@ -12744,7 +12744,7 @@ const Ev = cr({ }, }), jv = /[A-Z]/g, - wp = /-[a-z]/g, + kp = /-[a-z]/g, Iv = /^data[-\w.:]+$/i; function Fv(n, t) { const o = fc(t); @@ -12753,11 +12753,11 @@ function Fv(n, t) { if (o in n.normal) return n.property[n.normal[o]]; if (o.length > 4 && o.slice(0, 4) === "data" && Iv.test(t)) { if (t.charAt(4) === "-") { - const c = t.slice(5).replace(wp, Mv); + const c = t.slice(5).replace(kp, Mv); a = "data" + c.charAt(0).toUpperCase() + c.slice(1); } else { const c = t.slice(4); - if (!wp.test(c)) { + if (!kp.test(c)) { let d = c.replace(jv, Rv); d.charAt(0) !== "-" && (d = "-" + d), (t = "data" + d); } @@ -12772,17 +12772,17 @@ function Rv(n) { function Mv(n) { return n.charAt(1).toUpperCase(); } -const Nv = Qh([Yh, Ev, em, tm, nm], "html"), - rm = Qh([Yh, Tv, em, tm, nm], "svg"), - kp = {}.hasOwnProperty; +const Nv = Yh([Zh, Ev, tm, nm, rm], "html"), + om = Yh([Zh, Tv, tm, nm, rm], "svg"), + Cp = {}.hasOwnProperty; function Bv(n, t) { const o = t || {}; function a(i, ...c) { let d = a.invalid; const h = a.handlers; - if (i && kp.call(i, n)) { + if (i && Cp.call(i, n)) { const f = String(i[n]); - d = kp.call(h, f) ? h[f] : a.unknown; + d = Cp.call(h, f) ? h[f] : a.unknown; } if (d) return d.call(this, i, ...c); } @@ -12797,7 +12797,7 @@ const Lv = /["&'<>`]/g, $v = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g, Av = /[\x01-\t\v\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g, Dv = /[|\\{}()[\]^$+*?.]/g, - Cp = new WeakMap(); + Pp = new WeakMap(); function zv(n, t) { if ( ((n = n.replace(t.subset ? Hv(t.subset) : Lv, a)), t.subset || t.escapeOnly) @@ -12816,8 +12816,8 @@ function zv(n, t) { } } function Hv(n) { - let t = Cp.get(n); - return t || ((t = Vv(n)), Cp.set(n, t)), t; + let t = Pp.get(n); + return t || ((t = Vv(n)), Pp.set(n, t)), t; } function Vv(n) { const t = []; @@ -13198,14 +13198,14 @@ const Kv = [ euro: "€", }, Xv = ["cent", "copy", "divide", "gt", "lt", "not", "para", "times"], - om = {}.hasOwnProperty, + am = {}.hasOwnProperty, mc = {}; let Ra; -for (Ra in Hl) om.call(Hl, Ra) && (mc[Hl[Ra]] = Ra); +for (Ra in Hl) am.call(Hl, Ra) && (mc[Hl[Ra]] = Ra); const Qv = /[^\dA-Za-z]/; function Yv(n, t, o, a) { const i = String.fromCharCode(n); - if (om.call(mc, i)) { + if (am.call(mc, i)) { const c = mc[i], d = "&" + c; return o && @@ -13260,7 +13260,7 @@ function ry(n, t, o, a) { "html>" ); } -function Pp(n, t) { +function Op(n, t) { const o = String(n); if (typeof t != "string") throw new TypeError("Expected character"); let a = 0, @@ -13279,15 +13279,15 @@ function ay(n) { } const iy = /[ \t\n\f\r]/g; function $c(n) { - return typeof n == "object" ? (n.type === "text" ? Op(n.value) : !1) : Op(n); + return typeof n == "object" ? (n.type === "text" ? Ep(n.value) : !1) : Ep(n); } -function Op(n) { +function Ep(n) { return n.replace(iy, "") === ""; } -const et = im(1), - am = im(-1), +const et = sm(1), + im = sm(-1), sy = []; -function im(n) { +function sm(n) { return t; function t(o, a, i) { const c = o ? o.children : sy; @@ -13298,13 +13298,13 @@ function im(n) { } } const ly = {}.hasOwnProperty; -function sm(n) { +function lm(n) { return t; function t(o, a, i) { return ly.call(n, o.tagName) && n[o.tagName](o, a, i); } } -const Ac = sm({ +const Ac = lm({ body: uy, caption: Vl, colgroup: Vl, @@ -13316,12 +13316,12 @@ const Ac = sm({ optgroup: my, option: gy, p: dy, - rp: Ep, - rt: Ep, + rp: Tp, + rt: Tp, tbody: vy, - td: Tp, + td: jp, tfoot: yy, - th: Tp, + th: jp, thead: by, tr: _y, }); @@ -13404,7 +13404,7 @@ function hy(n, t, o) { !a || (a.type === "element" && (a.tagName === "dt" || a.tagName === "dd")) ); } -function Ep(n, t, o) { +function Tp(n, t, o) { const a = et(o, t); return ( !a || (a.type === "element" && (a.tagName === "rp" || a.tagName === "rt")) @@ -13444,13 +13444,13 @@ function _y(n, t, o) { const a = et(o, t); return !a || (a.type === "element" && a.tagName === "tr"); } -function Tp(n, t, o) { +function jp(n, t, o) { const a = et(o, t); return ( !a || (a.type === "element" && (a.tagName === "td" || a.tagName === "th")) ); } -const xy = sm({ body: ky, colgroup: Cy, head: wy, html: Sy, tbody: Py }); +const xy = lm({ body: ky, colgroup: Cy, head: wy, html: Sy, tbody: Py }); function Sy(n) { const t = et(n, -1); return !t || t.type !== "comment"; @@ -13485,7 +13485,7 @@ function ky(n) { ); } function Cy(n, t, o) { - const a = am(o, t), + const a = im(o, t), i = et(n, -1, !0); return o && a && @@ -13496,7 +13496,7 @@ function Cy(n, t, o) { : !!(i && i.type === "element" && i.tagName === "col"); } function Py(n, t, o) { - const a = am(o, t), + const a = im(o, t), i = et(n, -1); return o && a && @@ -13553,7 +13553,7 @@ function Oy(n, t, o, a) { : a.settings.voids.includes(n.tagName.toLowerCase()); const h = []; let f; - i.space === "html" && n.tagName === "svg" && (a.schema = rm); + i.space === "html" && n.tagName === "svg" && (a.schema = om); const m = Ey(a, n.properties), b = a.all(i.space === "html" && n.tagName === "template" ? n.content : n); return ( @@ -13633,7 +13633,7 @@ function Ty(n, t, o) { )), h !== o && (n.settings.quoteSmart && - Pp(o, d) > Pp(o, n.alternative) && + Op(o, d) > Op(o, n.alternative) && (d = n.alternative), (h = d + @@ -13648,7 +13648,7 @@ function Ty(n, t, o) { f + (h && "=" + h)); } const jy = ["<", "&"]; -function lm(n, t, o, a) { +function cm(n, t, o, a) { return o && o.type === "element" && (o.tagName === "script" || o.tagName === "style") @@ -13659,7 +13659,7 @@ function lm(n, t, o, a) { ); } function Iy(n, t, o, a) { - return a.settings.allowDangerousHtml ? n.value : lm(n, t, o, a); + return a.settings.allowDangerousHtml ? n.value : cm(n, t, o, a); } function Fy(n, t, o, a) { return a.all(n); @@ -13673,7 +13673,7 @@ const Ry = Bv("type", { element: Oy, raw: Iy, root: Fy, - text: lm, + text: cm, }, }); function My(n) { @@ -13714,7 +13714,7 @@ function Ay(n, t) { closeSelfClosing: o.closeSelfClosing || !1, closeEmptyElements: o.closeEmptyElements || !1, }, - schema: o.space === "svg" ? rm : Nv, + schema: o.space === "svg" ? om : Nv, quote: a, alternative: i, }.one(Array.isArray(n) ? { type: "root", children: n } : n, void 0, void 0); @@ -13746,7 +13746,7 @@ function Xn(n, t) { function Hy(n) { return Array.isArray(n) ? n : [n]; } -async function cm(n) { +async function um(n) { return Promise.resolve(typeof n == "function" ? n() : n).then( (t) => t.default || t, ); @@ -13763,7 +13763,7 @@ function zc(n) { function Uy(n) { return zc(n); } -function um(n, t) { +function dm(n, t) { var a; if (!t) return n; n.properties || (n.properties = {}), @@ -13897,12 +13897,12 @@ function gc(n) { .map(([t, o]) => `${t}:${o}`) .join(";"); } -const dm = new WeakMap(); +const fm = new WeakMap(); function Oi(n, t) { - dm.set(n, t); + fm.set(n, t); } function uo(n) { - return dm.get(n); + return fm.get(n); } class ur { constructor(...t) { @@ -14030,7 +14030,7 @@ function Yy() { P === -1 || T === -1) ) for (let L = 0; L < O.children.length; L++) - (C += fm(O.children[L])), + (C += pm(O.children[L])), P === -1 && C.length === y && (P = L + 1), T === -1 && C.length === x && (T = L + 1); if (P === -1) @@ -14065,7 +14065,7 @@ function Yy() { return ( (v.tagName = y.tagName || "span"), (v.properties = { ...v.properties, ...S, class: v.properties.class }), - (C = y.properties) != null && C.class && um(v, y.properties.class), + (C = y.properties) != null && C.class && dm(v, y.properties.class), (v = O(v, x) || v), v ); @@ -14110,11 +14110,11 @@ function Zy(n) { } } } -function fm(n) { +function pm(n) { return n.type === "text" ? n.value : n.type === "element" - ? n.children.map(fm).join("") + ? n.children.map(pm).join("") : ""; } const Jy = [Yy()]; @@ -14161,7 +14161,7 @@ function e_(n, t) { } return { position: n.length }; } -function jp(n) { +function Ip(n) { const t = n.shift(); if (t === "2") { const o = n.splice(0, 3).map((a) => Number.parseInt(a)); @@ -14193,7 +14193,7 @@ function t_(n) { value: { type: "named", name: f0[a - 30] }, }); else if (a === 38) { - const i = jp(n); + const i = Ip(n); i && t.push({ type: "setForegroundColor", value: i }); } else if (a === 39) t.push({ type: "resetForegroundColor" }); else if (a <= 47) @@ -14202,7 +14202,7 @@ function t_(n) { value: { type: "named", name: f0[a - 40] }, }); else if (a === 48) { - const i = jp(n); + const i = Ip(n); i && t.push({ type: "setBackgroundColor", value: i }); } else a === 49 @@ -14505,14 +14505,14 @@ function u_(n, t) { } return o; } -function Ip(n, t) { +function Fp(n, t) { return n === t || (t.substring(0, n.length) === n && t[n.length] === "."); } function d_(n, t, o) { - if (!Ip(n[n.length - 1], t)) return !1; + if (!Fp(n[n.length - 1], t)) return !1; let a = n.length - 2, i = o.length - 1; - for (; a >= 0 && i >= 0; ) Ip(n[a], o[i]) && (a -= 1), (i -= 1); + for (; a >= 0 && i >= 0; ) Fp(n[a], o[i]) && (a -= 1), (i -= 1); return a === -1; } function f_(n, t, o) { @@ -14525,7 +14525,7 @@ function f_(n, t, o) { } return a; } -function pm(n, t, o) { +function hm(n, t, o) { const a = Object.entries(o.themes) .filter((f) => f[1]) .map((f) => ({ color: f[0], theme: f[1] })), @@ -14606,7 +14606,7 @@ function ui(n, t, o) { .map((P) => ({ color: P[0], theme: P[1] })) .sort((P, T) => (P.color === m ? -1 : T.color === m ? 1 : 0)); if (y.length === 0) throw new at("`themes` option must not be empty"); - const x = pm(n, t, o); + const x = hm(n, t, o); if (((f = uo(x)), m && Hc !== m && !y.find((P) => P.color === m))) throw new at( `\`themes\` option must contain the defaultColor key \`${m}\``, @@ -14615,8 +14615,8 @@ function ui(n, t, o) { O = y.map((P) => P.color); (c = x.map((P) => P.map((T) => Ky(T, O, b, m, v)))), f && Oi(c, f); const C = y.map((P) => ii(P.theme, o)); - (i = Fp(y, S, C, b, m, "fg", v)), - (a = Fp(y, S, C, b, m, "bg", v)), + (i = Rp(y, S, C, b, m, "fg", v)), + (a = Rp(y, S, C, b, m, "bg", v)), (d = `shiki-themes ${S.map((P) => P.name).join(" ")}`), (h = m ? void 0 : [i, a].join(";")); } else if ("theme" in o) { @@ -14637,7 +14637,7 @@ function ui(n, t, o) { grammarState: f, }; } -function Fp(n, t, o, a, i, c, d) { +function Rp(n, t, o, a, i, c, d) { return n .map((h, f) => { const m = Xn(t[f][c], o[f]) || "inherit", @@ -14722,7 +14722,7 @@ function h_(n, t, o, a = uo(n)) { y = { ...o, structure: h, - addClassToHast: um, + addClassToHast: dm, get source() { return o.source; }, @@ -14893,12 +14893,12 @@ function y_(n, t, o) { i = ((c = d.postprocess) == null ? void 0 : c.call(a, i, o)) || i; return i; } -const Rp = { light: "#333333", dark: "#bbbbbb" }, - Mp = { light: "#fffffe", dark: "#1e1e1e" }, - Np = "__shiki_resolved"; +const Mp = { light: "#333333", dark: "#bbbbbb" }, + Np = { light: "#fffffe", dark: "#1e1e1e" }, + Bp = "__shiki_resolved"; function Uc(n) { var h, f, m, b, v; - if (n != null && n[Np]) return n; + if (n != null && n[Bp]) return n; const t = { ...n }; t.tokenColors && !t.settings && @@ -14923,8 +14923,8 @@ function Uc(n) { (b = t == null ? void 0 : t.colors) != null && b["editor.background"] && (o = t.colors["editor.background"]), - a || (a = t.type === "light" ? Rp.light : Rp.dark), - o || (o = t.type === "light" ? Mp.light : Mp.dark), + a || (a = t.type === "light" ? Mp.light : Mp.dark), + o || (o = t.type === "light" ? Np.light : Np.dark), (t.fg = a), (t.bg = o); } @@ -14974,10 +14974,10 @@ function Uc(n) { (t.colorReplacements[x] = t.colors[y]), (t.colors[y] = x); } return ( - Object.defineProperty(t, Np, { enumerable: !1, writable: !1, value: !0 }), t + Object.defineProperty(t, Bp, { enumerable: !1, writable: !1, value: !0 }), t ); } -async function hm(n) { +async function mm(n) { return Array.from( new Set( ( @@ -14986,16 +14986,16 @@ async function hm(n) { .filter((t) => !Vy(t)) .map( async (t) => - await cm(t).then((o) => (Array.isArray(o) ? o : [o])), + await um(t).then((o) => (Array.isArray(o) ? o : [o])), ), ) ).flat(), ), ); } -async function mm(n) { +async function gm(n) { return ( - await Promise.all(n.map(async (o) => (Uy(o) ? null : Uc(await cm(o))))) + await Promise.all(n.map(async (o) => (Uy(o) ? null : Uc(await um(o))))) ).filter((o) => !!o); } let __ = 3; @@ -15247,14 +15247,14 @@ function k_(n) { C(), c.loadLanguages(T.flat(1)); } async function x(...T) { - return y(await hm(T)); + return y(await mm(T)); } function S(...T) { C(); for (const R of T.flat(1)) c.loadTheme(R); } async function O(...T) { - return C(), S(await mm(T)); + return C(), S(await gm(T)); } function C() { if (t) throw new Z0("Shiki instance has been disposed"); @@ -15282,8 +15282,8 @@ async function C_(n) { "`engine` option is required. Use `createOnigurumaEngine` or `createJavaScriptRegexEngine` to create an engine.", ); const [t, o, a] = await Promise.all([ - mm(n.themes || []), - hm(n.langs || []), + gm(n.themes || []), + mm(n.langs || []), n.engine, ]); return k_({ ...n, themes: t, langs: o, engine: a }); @@ -15293,7 +15293,7 @@ async function P_(n) { return { getLastGrammarState: (...o) => s_(t, ...o), codeToTokensBase: (o, a) => Vc(t, o, a), - codeToTokensWithThemes: (o, a) => pm(t, o, a), + codeToTokensWithThemes: (o, a) => hm(t, o, a), codeToTokens: (o, a) => ui(t, o, a), codeToHast: (o, a) => di(t, o, a), codeToHtml: (o, a) => y_(t, o, a), @@ -15548,7 +15548,7 @@ var Wn, (bo = new WeakSet()), (bc = function (o) { yt(this, xn).lastIndex = this.lastIndex; - const a = np(Qn.prototype, this, "exec").call(yt(this, xn), o); + const a = rp(Qn.prototype, this, "exec").call(yt(this, xn), o); if (((this.lastIndex = yt(this, xn).lastIndex), !a || !yt(this, Wn).size)) return a; const i = [...a]; @@ -15618,7 +15618,7 @@ function N_(n) { } return o; } -const Bp = 4294967295; +const Lp = 4294967295; class B_ { constructor(t, o = {}) { B(this, "regexps"); @@ -15650,7 +15650,7 @@ class B_ { index: h, captureIndices: f.indices.map((b) => b == null - ? { start: Bp, end: Bp, length: 0 } + ? { start: Lp, end: Lp, length: 0 } : { start: b[0] + m, end: b[1] + m, length: b[1] - b[0] }, ), }; @@ -15717,13 +15717,13 @@ function pi(n, t, o) { var Ae = "-ms-", io = "-moz-", Ie = "-webkit-", - gm = "comm", + bm = "comm", Ei = "rule", Gc = "decl", $_ = "@import", - bm = "@keyframes", + vm = "@keyframes", A_ = "@layer", - vm = Math.abs, + ym = Math.abs, qc = String.fromCharCode, vc = Object.assign; function D_(n, t) { @@ -15732,7 +15732,7 @@ function D_(n, t) { ot(n, 3) : 0; } -function ym(n) { +function _m(n) { return n.trim(); } function _n(n, t) { @@ -15753,7 +15753,7 @@ function or(n, t, o) { function ln(n) { return n.length; } -function _m(n) { +function xm(n) { return n.length; } function ro(n, t) { @@ -15762,14 +15762,14 @@ function ro(n, t) { function z_(n, t) { return n.map(t).join(""); } -function Lp(n, t) { +function $p(n, t) { return n.filter(function (o) { return !_n(o, t); }); } var Ti = 1, ar = 1, - xm = 0, + Sm = 0, Gt = 0, Qe = 0, dr = ""; @@ -15810,7 +15810,7 @@ function V_() { } function en() { return ( - (Qe = Gt < xm ? ot(dr, Gt++) : 0), ar++, Qe === 10 && ((ar = 1), Ti++), Qe + (Qe = Gt < Sm ? ot(dr, Gt++) : 0), ar++, Qe === 10 && ((ar = 1), Ti++), Qe ); } function g0() { @@ -15855,13 +15855,13 @@ function yc(n) { return 0; } function U_(n) { - return (Ti = ar = 1), (xm = ln((dr = n))), (Gt = 0), []; + return (Ti = ar = 1), (Sm = ln((dr = n))), (Gt = 0), []; } function G_(n) { return (dr = ""), n; } function ql(n) { - return ym(Ii(Gt - 1, _c(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); + return _m(Ii(Gt - 1, _c(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); } function q_(n) { for (; (Qe = g0()) && Qe < 33; ) en(); @@ -15929,7 +15929,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { switch (((S = T), (T = en()))) { case 40: if (S != 108 && ot(N, v - 1) == 58) { - Ga((N += _e(ql(T), "&", "&\f")), "&\f", vm(m ? h[m - 1] : 0)) != -1 && + Ga((N += _e(ql(T), "&", "&\f")), "&\f", ym(m ? h[m - 1] : 0)) != -1 && (P = -1); break; } @@ -15972,8 +15972,8 @@ function Wa(n, t, o, a, i, c, d, h, f) { ln(N) - v && ro( x > 32 - ? Ap(N + ";", a, o, v - 1, f) - : Ap(_e(N, " ", "") + ";", a, o, v - 2, f), + ? Dp(N + ";", a, o, v - 1, f) + : Dp(_e(N, " ", "") + ";", a, o, v - 2, f), f, ); break; @@ -15982,7 +15982,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { default: if ( (ro( - ($ = $p(N, t, o, m, b, i, h, R, (L = []), (j = []), v, c)), + ($ = Ap(N, t, o, m, b, i, h, R, (L = []), (j = []), v, c)), c, ), T === 123) @@ -15998,7 +15998,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { n, $, $, - a && ro($p(n, $, $, 0, 0, i, h, R, i, (L = []), v, j), j), + a && ro(Ap(n, $, $, 0, 0, i, h, R, i, (L = []), v, j), j), i, j, v, @@ -16038,23 +16038,23 @@ function Wa(n, t, o, a, i, c, d, h, f) { } return c; } -function $p(n, t, o, a, i, c, d, h, f, m, b, v) { +function Ap(n, t, o, a, i, c, d, h, f, m, b, v) { for ( - var y = i - 1, x = i === 0 ? c : [""], S = _m(x), O = 0, C = 0, P = 0; + var y = i - 1, x = i === 0 ? c : [""], S = xm(x), O = 0, C = 0, P = 0; O < a; ++O ) - for (var T = 0, R = or(n, y + 1, (y = vm((C = d[O])))), L = n; T < S; ++T) - (L = ym(C > 0 ? x[T] + " " + R : _e(R, /&\f/g, x[T]))) && (f[P++] = L); + for (var T = 0, R = or(n, y + 1, (y = ym((C = d[O])))), L = n; T < S; ++T) + (L = _m(C > 0 ? x[T] + " " + R : _e(R, /&\f/g, x[T]))) && (f[P++] = L); return ji(n, t, o, i === 0 ? Ei : h, f, m, b, v); } function Y_(n, t, o, a) { - return ji(n, t, o, gm, qc(H_()), or(n, 2, -2), 0, a); + return ji(n, t, o, bm, qc(H_()), or(n, 2, -2), 0, a); } -function Ap(n, t, o, a, i) { +function Dp(n, t, o, a, i) { return ji(n, t, o, Gc, or(n, 0, a), or(n, a + 1, -1), a, i); } -function Sm(n, t, o) { +function wm(n, t, o) { switch (D_(n, t)) { case 5103: return Ie + "print-" + n + n; @@ -16237,7 +16237,7 @@ function Sm(n, t, o) { ); case 115: return ~Ga(n, "stretch", 0) - ? Sm(_e(n, "stretch", "fill-available"), t, o) + n + ? wm(_e(n, "stretch", "fill-available"), t, o) + n : n; } break; @@ -16302,9 +16302,9 @@ function Z_(n, t, o, a) { case $_: case Gc: return (n.return = n.return || n.value); - case gm: - return ""; case bm: + return ""; + case vm: return (n.return = n.value + "{" + hi(n.children, a) + "}"); case Ei: if (!ln((n.value = n.props.join(",")))) return ""; @@ -16314,7 +16314,7 @@ function Z_(n, t, o, a) { : ""; } function J_(n) { - var t = _m(n); + var t = xm(n); return function (o, a, i, c) { for (var d = "", h = 0; h < t; h++) d += n[h](o, a, i, c) || ""; return d; @@ -16329,9 +16329,9 @@ function t2(n, t, o, a) { if (n.length > -1 && !n.return) switch (n.type) { case Gc: - n.return = Sm(n.value, n.length, o); + n.return = wm(n.value, n.length, o); return; - case bm: + case vm: return hi([qn(n, { value: _e(n.value, "@", "@" + Ie) })], a); case Ei: if (n.length) @@ -16341,7 +16341,7 @@ function t2(n, t, o, a) { case ":read-write": Q0(qn(n, { props: [_e(i, /:(read-\w+)/, ":" + io + "$1")] })), Q0(qn(n, { props: [i] })), - vc(n, { props: Lp(o, a) }); + vc(n, { props: $p(o, a) }); break; case "::placeholder": Q0( @@ -16352,7 +16352,7 @@ function t2(n, t, o, a) { Q0(qn(n, { props: [_e(i, /:(plac\w+)/, ":" + io + "$1")] })), Q0(qn(n, { props: [_e(i, /:(plac\w+)/, Ae + "input-$1")] })), Q0(qn(n, { props: [i] })), - vc(n, { props: Lp(o, a) }); + vc(n, { props: $p(o, a) }); break; } return ""; @@ -16413,8 +16413,8 @@ var n2 = { Mt !== void 0 && (Mt.REACT_APP_SC_ATTR || Mt.SC_ATTR)) || "data-styled", - wm = "active", - km = "data-styled-version", + km = "active", + Cm = "data-styled-version", Fi = "6.1.18", Wc = `/*!sc*/ `, @@ -16440,7 +16440,7 @@ function o2(n, t, o) { o === void 0 && (o = sr), (n.theme !== o.theme && n.theme) || t || o.theme ); } -var Cm = new Set([ +var Pm = new Set([ "a", "abbr", "address", @@ -16577,31 +16577,31 @@ var Cm = new Set([ ]), a2 = /[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g, i2 = /(^-|-$)/g; -function Dp(n) { +function zp(n) { return n.replace(a2, "-").replace(i2, ""); } var s2 = /(a)(d)/gi, Na = 52, - zp = function (n) { + Hp = function (n) { return String.fromCharCode(n + (n > 25 ? 39 : 97)); }; function xc(n) { var t, o = ""; - for (t = Math.abs(n); t > Na; t = (t / Na) | 0) o = zp(t % Na) + o; - return (zp(t % Na) + o).replace(s2, "$1-$2"); + for (t = Math.abs(n); t > Na; t = (t / Na) | 0) o = Hp(t % Na) + o; + return (Hp(t % Na) + o).replace(s2, "$1-$2"); } var Wl, - Pm = 5381, + Om = 5381, J0 = function (n, t) { for (var o = t.length; o; ) n = (33 * n) ^ t.charCodeAt(--o); return n; }, - Om = function (n) { - return J0(Pm, n); + Em = function (n) { + return J0(Om, n); }; function l2(n) { - return xc(Om(n) >>> 0); + return xc(Em(n) >>> 0); } function c2(n) { return n.displayName || n.name || "Component"; @@ -16609,9 +16609,9 @@ function c2(n) { function Kl(n) { return typeof n == "string" && !0; } -var Em = typeof Symbol == "function" && Symbol.for, - Tm = Em ? Symbol.for("react.memo") : 60115, - u2 = Em ? Symbol.for("react.forward_ref") : 60112, +var Tm = typeof Symbol == "function" && Symbol.for, + jm = Tm ? Symbol.for("react.memo") : 60115, + u2 = Tm ? Symbol.for("react.forward_ref") : 60112, d2 = { childContextTypes: !0, contextType: !0, @@ -16634,7 +16634,7 @@ var Em = typeof Symbol == "function" && Symbol.for, arguments: !0, arity: !0, }, - jm = { + Im = { $$typeof: !0, compare: !0, defaultProps: !0, @@ -16650,11 +16650,11 @@ var Em = typeof Symbol == "function" && Symbol.for, displayName: !0, propTypes: !0, }), - (Wl[Tm] = jm), + (Wl[jm] = Im), Wl); -function Hp(n) { - return ("type" in (t = n) && t.type.$$typeof) === Tm - ? jm +function Vp(n) { + return ("type" in (t = n) && t.type.$$typeof) === jm + ? Im : "$$typeof" in n ? p2[n.$$typeof] : d2; @@ -16662,19 +16662,19 @@ function Hp(n) { } var h2 = Object.defineProperty, m2 = Object.getOwnPropertyNames, - Vp = Object.getOwnPropertySymbols, + Up = Object.getOwnPropertySymbols, g2 = Object.getOwnPropertyDescriptor, b2 = Object.getPrototypeOf, - Up = Object.prototype; -function Im(n, t, o) { + Gp = Object.prototype; +function Fm(n, t, o) { if (typeof t != "string") { - if (Up) { + if (Gp) { var a = b2(t); - a && a !== Up && Im(n, a, o); + a && a !== Gp && Fm(n, a, o); } var i = m2(t); - Vp && (i = i.concat(Vp(t))); - for (var c = Hp(n), d = Hp(t), h = 0; h < i.length; ++h) { + Up && (i = i.concat(Up(t))); + for (var c = Vp(n), d = Vp(t), h = 0; h < i.length; ++h) { var f = i[h]; if (!(f in f2 || (o && o[f]) || (d && f in d) || (c && f in c))) { var m = g2(t, f); @@ -16695,7 +16695,7 @@ function Kc(n) { function p0(n, t) { return n && t ? "".concat(n, " ").concat(t) : n || t || ""; } -function Gp(n, t) { +function qp(n, t) { if (n.length === 0) return ""; for (var o = n[0], a = 1; a < n.length; a++) o += n[a]; return o; @@ -16791,7 +16791,7 @@ var v2 = (function () { y2 = function (n, t) { (Xa = t + 1), Ka.set(n, t), gi.set(t, n); }, - _2 = "style[".concat(ir, "][").concat(km, '="').concat(Fi, '"]'), + _2 = "style[".concat(ir, "][").concat(Cm, '="').concat(Fi, '"]'), x2 = new RegExp( "^".concat(ir, '\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'), ), @@ -16821,7 +16821,7 @@ var v2 = (function () { } } }, - qp = function (n) { + Wp = function (n) { for ( var t = document.querySelectorAll(_2), o = 0, a = t.length; o < a; @@ -16829,14 +16829,14 @@ var v2 = (function () { ) { var i = t[o]; i && - i.getAttribute(ir) !== wm && + i.getAttribute(ir) !== km && (w2(n, i), i.parentNode && i.parentNode.removeChild(i)); } }; function k2() { return typeof __webpack_nonce__ < "u" ? __webpack_nonce__ : null; } -var Fm = function (n) { +var Rm = function (n) { var t = document.head, o = n || t, a = document.createElement("style"), @@ -16845,13 +16845,13 @@ var Fm = function (n) { return f[f.length - 1]; })(o), c = i !== void 0 ? i.nextSibling : null; - a.setAttribute(ir, wm), a.setAttribute(km, Fi); + a.setAttribute(ir, km), a.setAttribute(Cm, Fi); var d = k2(); return d && a.setAttribute("nonce", d), o.insertBefore(a, c), a; }, C2 = (function () { function n(t) { - (this.element = Fm(t)), + (this.element = Rm(t)), this.element.appendChild(document.createTextNode("")), (this.sheet = (function (o) { if (o.sheet) return o.sheet; @@ -16883,7 +16883,7 @@ var Fm = function (n) { })(), P2 = (function () { function n(t) { - (this.element = Fm(t)), + (this.element = Rm(t)), (this.nodes = this.element.childNodes), (this.length = 0); } @@ -16927,9 +16927,9 @@ var Fm = function (n) { n ); })(), - Wp = mi, + Kp = mi, E2 = { isServer: !mi, useCSSOMInjection: !r2 }, - Rm = (function () { + Mm = (function () { function n(t, o, a) { t === void 0 && (t = sr), o === void 0 && (o = {}); var i = this; @@ -16937,7 +16937,7 @@ var Fm = function (n) { (this.gs = o), (this.names = new Map(a)), (this.server = !!t.isServer), - !this.server && mi && Wp && ((Wp = !1), qp(this)), + !this.server && mi && Kp && ((Kp = !1), Wp(this)), Xc(this, function () { return (function (c) { for ( @@ -16982,7 +16982,7 @@ var Fm = function (n) { return Ba(t); }), (n.prototype.rehydrate = function () { - !this.server && mi && qp(this); + !this.server && mi && Wp(this); }), (n.prototype.reconstructWithOptions = function (t, o) { return ( @@ -17037,7 +17037,7 @@ var Fm = function (n) { })(), T2 = /&/g, j2 = /^\s*\/\/.*$/gm; -function Mm(n, t) { +function Nm(n, t) { return n.map(function (o) { return ( o.type === "rule" && @@ -17048,7 +17048,7 @@ function Mm(n, t) { }))), Array.isArray(o.children) && o.type !== "@keyframes" && - (o.children = Mm(o.children, t)), + (o.children = Nm(o.children, t)), o ); }); @@ -17084,7 +17084,7 @@ function I2(n) { (a = new RegExp("\\".concat(o, "\\b"), "g")); var C = y.replace(j2, ""), P = Q_(S || x ? "".concat(S, " ").concat(x, " { ").concat(C, " }") : C); - d.namespace && (P = Mm(P, d.namespace)); + d.namespace && (P = Nm(P, d.namespace)); var T = []; return ( hi( @@ -17105,23 +17105,23 @@ function I2(n) { ? f .reduce(function (y, x) { return x.name || y0(15), J0(y, x.name); - }, Pm) + }, Om) .toString() : ""), v ); } -var F2 = new Rm(), +var F2 = new Mm(), wc = I2(), - Nm = Ue.createContext({ + Bm = Ue.createContext({ shouldForwardProp: void 0, styleSheet: F2, stylis: wc, }); -Nm.Consumer; +Bm.Consumer; Ue.createContext(void 0); -function Kp() { - return V.useContext(Nm); +function Xp() { + return V.useContext(Bm); } var R2 = (function () { function n(t, o) { @@ -17149,7 +17149,7 @@ var R2 = (function () { M2 = function (n) { return n >= "A" && n <= "Z"; }; -function Xp(n) { +function Qp(n) { for (var t = "", o = 0; o < n.length; o++) { var a = n[o]; if (o === 1 && a === "-" && n[0] === "-") return n; @@ -17157,27 +17157,27 @@ function Xp(n) { } return t.startsWith("ms-") ? "-" + t : t; } -var Bm = function (n) { +var Lm = function (n) { return n == null || n === !1 || n === ""; }, - Lm = function (n) { + $m = function (n) { var t, o, a = []; for (var i in n) { var c = n[i]; n.hasOwnProperty(i) && - !Bm(c) && + !Lm(c) && ((Array.isArray(c) && c.isCss) || v0(c) - ? a.push("".concat(Xp(i), ":"), c, ";") + ? a.push("".concat(Qp(i), ":"), c, ";") : fo(c) ? a.push.apply( a, - pi(pi(["".concat(i, " {")], Lm(c), !1), ["}"], !1), + pi(pi(["".concat(i, " {")], $m(c), !1), ["}"], !1), ) : a.push( "" - .concat(Xp(i), ": ") + .concat(Qp(i), ": ") .concat( ((t = i), (o = c) == null || typeof o == "boolean" || o === "" @@ -17195,7 +17195,7 @@ var Bm = function (n) { return a; }; function b0(n, t, o, a) { - if (Bm(n)) return []; + if (Lm(n)) return []; if (Kc(n)) return [".".concat(n.styledComponentId)]; if (v0(n)) { if (!v0((c = n)) || (c.prototype && c.prototype.isReactComponent) || !t) @@ -17209,7 +17209,7 @@ function b0(n, t, o, a) { ? (n.inject(o, a), [n.getName(a)]) : [n] : fo(n) - ? Lm(n) + ? $m(n) : Array.isArray(n) ? Array.prototype.concat.apply( Ri, @@ -17226,7 +17226,7 @@ function N2(n) { } return !0; } -var B2 = Om(Fi), +var B2 = Em(Fi), L2 = (function () { function n(t, o, a) { (this.rules = t), @@ -17235,7 +17235,7 @@ var B2 = Om(Fi), (this.componentId = o), (this.baseHash = J0(B2, o)), (this.baseStyle = a), - Rm.registerId(o); + Mm.registerId(o); } return ( (n.prototype.generateAndInjectStyles = function (t, o, a) { @@ -17249,7 +17249,7 @@ var B2 = Om(Fi), ) i = p0(i, this.staticRulesId); else { - var c = Gp(b0(this.rules, t, o, a)), + var c = qp(b0(this.rules, t, o, a)), d = xc(J0(this.baseHash, c) >>> 0); if (!o.hasNameForId(this.componentId, d)) { var h = a(c, ".".concat(d), void 0, this.componentId); @@ -17266,7 +17266,7 @@ var B2 = Om(Fi), var v = this.rules[b]; if (typeof v == "string") m += v; else if (v) { - var y = Gp(b0(v, t, o, a)); + var y = qp(b0(v, t, o, a)); (f = J0(f, y + b)), (m += y); } } @@ -17319,7 +17319,7 @@ function A2(n, t, o) { m = f === void 0 ? (function (L, j) { - var $ = typeof L != "string" ? "sc" : Dp(L); + var $ = typeof L != "string" ? "sc" : zp(L); Xl[$] = (Xl[$] || 0) + 1; var N = "".concat($, "-").concat(l2(Fi + $ + Xl[$])); return j ? "".concat(j, "-").concat(N) : N; @@ -17334,7 +17334,7 @@ function A2(n, t, o) { : b, y = t.displayName && t.componentId - ? "".concat(Dp(t.displayName), "-").concat(t.componentId) + ? "".concat(zp(t.displayName), "-").concat(t.componentId) : t.componentId || m, x = a && i.attrs ? i.attrs.concat(h).filter(Boolean) : h, S = t.shouldForwardProp; @@ -17357,7 +17357,7 @@ function A2(n, t, o) { ve = $.styledComponentId, xe = $.target, me = Ue.useContext(bi), - he = Kp(), + he = Xp(), we = $.shouldForwardProp || he.shouldForwardProp, q = o2(N, me, ee) || sr, Q = (function (ye, ue, ge) { @@ -17392,7 +17392,7 @@ function A2(n, t, o) { ? (A.as = Q.forwardedAs) : (we && !we(W, w)) || (A[W] = Q[W])); var se = (function (ye, ue) { - var ge = Kp(), + var ge = Xp(), fe = ye.generateAndInjectStyles(ue, ge.styleSheet, ge.stylis); return fe; })(Se, Q), @@ -17400,7 +17400,7 @@ function A2(n, t, o) { return ( se && (re += " " + se), Q.className && (re += " " + Q.className), - (A[Kl(w) && !Cm.has(w) ? "class" : "className"] = re), + (A[Kl(w) && !Pm.has(w) ? "class" : "className"] = re), K && (A.ref = K), V.createElement(w, A) ); @@ -17437,7 +17437,7 @@ function A2(n, t, o) { return ".".concat(R.styledComponentId); }), c && - Im(R, n, { + Fm(R, n, { attrs: !0, componentStyle: !0, displayName: !0, @@ -17449,21 +17449,21 @@ function A2(n, t, o) { R ); } -function Qp(n, t) { +function Yp(n, t) { for (var o = [n[0]], a = 0, i = t.length; a < i; a += 1) o.push(t[a], n[a + 1]); return o; } -var Yp = function (n) { +var Zp = function (n) { return Object.assign(n, { isCss: !0 }); }; function D2(n) { for (var t = [], o = 1; o < arguments.length; o++) t[o - 1] = arguments[o]; - if (v0(n) || fo(n)) return Yp(b0(Qp(Ri, pi([n], t, !0)))); + if (v0(n) || fo(n)) return Zp(b0(Yp(Ri, pi([n], t, !0)))); var a = n; return t.length === 0 && a.length === 1 && typeof a[0] == "string" ? b0(a) - : Yp(b0(Qp(a, t))); + : Zp(b0(Yp(a, t))); } function kc(n, t, o) { if ((o === void 0 && (o = sr), !t)) throw y0(1, t); @@ -17487,12 +17487,12 @@ function kc(n, t, o) { a ); } -var $m = function (n) { +var Am = function (n) { return kc(A2, n); }, - S0 = $m; -Cm.forEach(function (n) { - S0[n] = $m(n); + S0 = Am; +Pm.forEach(function (n) { + S0[n] = Am(n); }); function _0(n) { "@babel/helpers - typeof"; @@ -17523,13 +17523,13 @@ function z2(n, t) { } return (t === "string" ? String : Number)(n); } -function Am(n) { +function Dm(n) { var t = z2(n, "string"); return _0(t) == "symbol" ? t : t + ""; } function oo(n, t, o) { return ( - (t = Am(t)) in n + (t = Dm(t)) in n ? Object.defineProperty(n, t, { value: o, enumerable: !0, @@ -17540,7 +17540,7 @@ function oo(n, t, o) { n ); } -function Zp(n, t) { +function Jp(n, t) { var o = Object.keys(n); if (Object.getOwnPropertySymbols) { var a = Object.getOwnPropertySymbols(n); @@ -17556,12 +17556,12 @@ function ie(n) { for (var t = 1; t < arguments.length; t++) { var o = arguments[t] != null ? arguments[t] : {}; t % 2 - ? Zp(Object(o), !0).forEach(function (a) { + ? Jp(Object(o), !0).forEach(function (a) { oo(n, a, o[a]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(n, Object.getOwnPropertyDescriptors(o)) - : Zp(Object(o)).forEach(function (a) { + : Jp(Object(o)).forEach(function (a) { Object.defineProperty(n, a, Object.getOwnPropertyDescriptor(o, a)); }); } @@ -17611,7 +17611,7 @@ function Cc(n, t) { for (var o = 0, a = Array(t); o < t; o++) a[o] = n[o]; return a; } -function Dm(n, t) { +function zm(n, t) { if (n) { if (typeof n == "string") return Cc(n, t); var o = {}.toString.call(n).slice(8, -1); @@ -17631,7 +17631,7 @@ function U2() { In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } function wn(n, t) { - return H2(n) || V2(n, t) || Dm(n, t) || U2(); + return H2(n) || V2(n, t) || zm(n, t) || U2(); } function G2(n, t) { if (n == null) return {}; @@ -17757,19 +17757,19 @@ function K2(n, t) { if (!(n instanceof t)) throw new TypeError("Cannot call a class as a function"); } -function Jp(n, t) { +function eh(n, t) { for (var o = 0; o < t.length; o++) { var a = t[o]; (a.enumerable = a.enumerable || !1), (a.configurable = !0), "value" in a && (a.writable = !0), - Object.defineProperty(n, Am(a.key), a); + Object.defineProperty(n, Dm(a.key), a); } } function X2(n, t, o) { return ( - t && Jp(n.prototype, t), - o && Jp(n, o), + t && eh(n.prototype, t), + o && eh(n, o), Object.defineProperty(n, "prototype", { writable: !1 }), n ); @@ -17803,13 +17803,13 @@ function vi(n) { vi(n) ); } -function zm() { +function Hm() { try { var n = !Boolean.prototype.valueOf.call( Reflect.construct(Boolean, [], function () {}), ); } catch {} - return (zm = function () { + return (Hm = function () { return !!n; })(); } @@ -17829,7 +17829,7 @@ function Z2(n, t) { return Y2(n); } function J2(n) { - var t = zm(); + var t = Hm(); return function () { var o, a = vi(n); @@ -17855,7 +17855,7 @@ function n5() { In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } function Qc(n) { - return e5(n) || t5(n) || Dm(n) || n5(); + return e5(n) || t5(n) || zm(n) || n5(); } function r5(n) { if (n.sheet) return n.sheet; @@ -17928,11 +17928,11 @@ var a5 = (function () { ht = "-ms-", yi = "-moz-", Oe = "-webkit-", - Hm = "comm", + Vm = "comm", Yc = "rule", Zc = "decl", i5 = "@import", - Vm = "@keyframes", + Um = "@keyframes", s5 = "@layer", l5 = Math.abs, Mi = String.fromCharCode, @@ -17943,7 +17943,7 @@ function u5(n, t) { lt(n, 3) : 0; } -function Um(n) { +function Gm(n) { return n.trim(); } function d5(n, t) { @@ -17975,7 +17975,7 @@ function f5(n, t) { } var Ni = 1, lr = 1, - Gm = 0, + qm = 0, Ot = 0, Ye = 0, fr = ""; @@ -18006,7 +18006,7 @@ function h5() { } function Nt() { return ( - (Ye = Ot < Gm ? lt(fr, Ot++) : 0), lr++, Ye === 10 && ((lr = 1), Ni++), Ye + (Ye = Ot < qm ? lt(fr, Ot++) : 0), lr++, Ye === 10 && ((lr = 1), Ni++), Ye ); } function dn() { @@ -18050,14 +18050,14 @@ function ho(n) { } return 0; } -function qm(n) { - return (Ni = lr = 1), (Gm = cn((fr = n))), (Ot = 0), []; -} function Wm(n) { + return (Ni = lr = 1), (qm = cn((fr = n))), (Ot = 0), []; +} +function Km(n) { return (fr = ""), n; } function Ya(n) { - return Um(_o(Ot - 1, Ec(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); + return Gm(_o(Ot - 1, Ec(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); } function m5(n) { for (; (Ye = dn()) && Ye < 33; ) Nt(); @@ -18100,7 +18100,7 @@ function v5(n) { return _o(n, Ot); } function y5(n) { - return Wm(Za("", null, null, null, [""], (n = qm(n)), 0, [0], n)); + return Km(Za("", null, null, null, [""], (n = Wm(n)), 0, [0], n)); } function Za(n, t, o, a, i, c, d, h, f) { for ( @@ -18167,8 +18167,8 @@ function Za(n, t, o, a, i, c, d, h, f) { cn(N) - v && La( x > 32 - ? th(N + ";", a, o, v - 1) - : th(Ee(N, " ", "") + ";", a, o, v - 2), + ? nh(N + ";", a, o, v - 1) + : nh(Ee(N, " ", "") + ";", a, o, v - 2), f, ); break; @@ -18176,7 +18176,7 @@ function Za(n, t, o, a, i, c, d, h, f) { N += ";"; default: if ( - (La(($ = eh(N, t, o, m, b, i, h, R, (L = []), (j = []), v)), c), + (La(($ = th(N, t, o, m, b, i, h, R, (L = []), (j = []), v)), c), T === 123) ) if (b === 0) Za(N, t, $, $, L, c, v, h, j); @@ -18190,7 +18190,7 @@ function Za(n, t, o, a, i, c, d, h, f) { n, $, $, - a && La(eh(n, $, $, 0, 0, i, h, R, i, (L = []), v), j), + a && La(th(n, $, $, 0, 0, i, h, R, i, (L = []), v), j), i, j, v, @@ -18230,20 +18230,20 @@ function Za(n, t, o, a, i, c, d, h, f) { } return c; } -function eh(n, t, o, a, i, c, d, h, f, m, b) { +function th(n, t, o, a, i, c, d, h, f, m, b) { for ( var v = i - 1, y = i === 0 ? c : [""], x = Jc(y), S = 0, O = 0, C = 0; S < a; ++S ) for (var P = 0, T = po(n, v + 1, (v = l5((O = d[S])))), R = n; P < x; ++P) - (R = Um(O > 0 ? y[P] + " " + T : Ee(T, /&\f/g, y[P]))) && (f[C++] = R); + (R = Gm(O > 0 ? y[P] + " " + T : Ee(T, /&\f/g, y[P]))) && (f[C++] = R); return Bi(n, t, o, i === 0 ? Yc : h, f, m, b); } function _5(n, t, o) { - return Bi(n, t, o, Hm, Mi(p5()), po(n, 2, -2), 0); + return Bi(n, t, o, Vm, Mi(p5()), po(n, 2, -2), 0); } -function th(n, t, o, a) { +function nh(n, t, o, a) { return Bi(n, t, o, Zc, po(n, 0, a), po(n, a + 1, -1), a); } function nr(n, t) { @@ -18257,9 +18257,9 @@ function x5(n, t, o, a) { case i5: case Zc: return (n.return = n.return || n.value); - case Hm: - return ""; case Vm: + return ""; + case Um: return (n.return = n.value + "{" + nr(n.children, a) + "}"); case Yc: n.value = n.props.join(","); @@ -18318,9 +18318,9 @@ var C5 = function (t, o, a) { return t; }, O5 = function (t, o) { - return Wm(P5(qm(t), o)); + return Km(P5(Wm(t), o)); }, - nh = new WeakMap(), + rh = new WeakMap(), E5 = function (t) { if (!(t.type !== "rule" || !t.parent || t.length < 1)) { for ( @@ -18332,10 +18332,10 @@ var C5 = function (t, o, a) { ) if (((a = a.parent), !a)) return; if ( - !(t.props.length === 1 && o.charCodeAt(0) !== 58 && !nh.get(a)) && + !(t.props.length === 1 && o.charCodeAt(0) !== 58 && !rh.get(a)) && !i ) { - nh.set(t, !0); + rh.set(t, !0); for ( var c = [], d = O5(o, c), h = a.props, f = 0, m = 0; f < d.length; @@ -18354,7 +18354,7 @@ var C5 = function (t, o, a) { ((t.return = ""), (t.value = "")); } }; -function Km(n, t) { +function Xm(n, t) { switch (u5(n, t)) { case 5103: return Oe + "print-" + n + n; @@ -18484,7 +18484,7 @@ function Km(n, t) { ); case 115: return ~Oc(n, "stretch") - ? Km(Ee(n, "stretch", "fill-available"), t) + n + ? Xm(Ee(n, "stretch", "fill-available"), t) + n : n; } break; @@ -18528,9 +18528,9 @@ var j5 = function (t, o, a, i) { if (t.length > -1 && !t.return) switch (t.type) { case Zc: - t.return = Km(t.value, t.length); + t.return = Xm(t.value, t.length); break; - case Vm: + case Um: return nr([eo(t, { value: Ee(t.value, "@", "@" + Oe) })], i); case Yc: if (t.length) @@ -18632,10 +18632,10 @@ var j5 = function (t, o, a, i) { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var rh; + */ var oh; function R5() { - if (rh) return je; - rh = 1; + if (oh) return je; + oh = 1; var n = typeof Symbol == "function" && Symbol.for, t = n ? Symbol.for("react.element") : 60103, o = n ? Symbol.for("react.portal") : 60106, @@ -18766,14 +18766,14 @@ function R5() { je ); } -var oh; +var ah; function M5() { - return oh || ((oh = 1), (Ql.exports = R5())), Ql.exports; + return ah || ((ah = 1), (Ql.exports = R5())), Ql.exports; } -var Yl, ah; +var Yl, ih; function N5() { - if (ah) return Yl; - ah = 1; + if (ih) return Yl; + ih = 1; var n = M5(), t = { childContextTypes: !0, @@ -18856,14 +18856,14 @@ function L5(n, t, o) { a ); } -var Xm = function (t, o, a) { +var Qm = function (t, o, a) { var i = t.key + "-" + o.name; (a === !1 || B5 === !1) && t.registered[i] === void 0 && (t.registered[i] = o.styles); }, $5 = function (t, o, a) { - Xm(t, o, a); + Qm(t, o, a); var i = t.key + "-" + o.name; if (t.inserted[o.name] === void 0) { var c = o; @@ -18949,16 +18949,16 @@ var D5 = { }, z5 = /[A-Z]|^ms/g, H5 = /_EMO_([^_]+?)_([^]*?)_EMO_/g, - Qm = function (t) { + Ym = function (t) { return t.charCodeAt(1) === 45; }, - ih = function (t) { + sh = function (t) { return t != null && typeof t != "boolean"; }, Zl = k5(function (n) { - return Qm(n) ? n : n.replace(z5, "-$&").toLowerCase(); + return Ym(n) ? n : n.replace(z5, "-$&").toLowerCase(); }), - sh = function (t, o) { + lh = function (t, o) { switch (t) { case "animation": case "animationName": @@ -18967,7 +18967,7 @@ var D5 = { return (un = { name: i, styles: c, next: un }), i; }); } - return D5[t] !== 1 && !Qm(t) && typeof o == "number" && o !== 0 + return D5[t] !== 1 && !Ym(t) && typeof o == "number" && o !== 0 ? o + "px" : o; }; @@ -19014,10 +19014,10 @@ function V5(n, t, o) { var d = o[c]; if (typeof d != "object") { var h = d; - ih(h) && (a += Zl(c) + ":" + sh(c, h) + ";"); + sh(h) && (a += Zl(c) + ":" + lh(c, h) + ";"); } else if (Array.isArray(d) && typeof d[0] == "string" && t == null) for (var f = 0; f < d.length; f++) - ih(d[f]) && (a += Zl(c) + ":" + sh(c, d[f]) + ";"); + sh(d[f]) && (a += Zl(c) + ":" + lh(c, d[f]) + ";"); else { var m = mo(n, t, d); switch (c) { @@ -19033,9 +19033,9 @@ function V5(n, t, o) { } return a; } -var lh = /label:\s*([^\s;{]+)\s*(;|$)/g, +var ch = /label:\s*([^\s;{]+)\s*(;|$)/g, un; -function Ym(n, t, o) { +function Zm(n, t, o) { if ( n.length === 1 && typeof n[0] == "object" && @@ -19057,21 +19057,21 @@ function Ym(n, t, o) { var f = c; i += f[h]; } - lh.lastIndex = 0; - for (var m = "", b; (b = lh.exec(i)) !== null; ) m += "-" + b[1]; + ch.lastIndex = 0; + for (var m = "", b; (b = ch.exec(i)) !== null; ) m += "-" + b[1]; var v = A5(i) + m; return { name: v, styles: i, next: un }; } var U5 = function (t) { return t(); }, - G5 = sp.useInsertionEffect ? sp.useInsertionEffect : !1, + G5 = lp.useInsertionEffect ? lp.useInsertionEffect : !1, q5 = G5 || U5, - Zm = V.createContext(typeof HTMLElement < "u" ? F5({ key: "css" }) : null); -Zm.Provider; + Jm = V.createContext(typeof HTMLElement < "u" ? F5({ key: "css" }) : null); +Jm.Provider; var W5 = function (t) { return V.forwardRef(function (o, a) { - var i = V.useContext(Zm); + var i = V.useContext(Jm); return t(o, i, a); }); }, @@ -19088,7 +19088,7 @@ var W5 = function (t) { a = t.serialized, i = t.isStringTag; return ( - Xm(o, a, i), + Qm(o, a, i), q5(function () { return $5(o, a, i); }), @@ -19104,7 +19104,7 @@ var W5 = function (t) { typeof n.className == "string" ? (d = L5(t.registered, c, n.className)) : n.className != null && (d = n.className + " "); - var h = Ym(c, void 0, V.useContext(K5)); + var h = Zm(c, void 0, V.useContext(K5)); d += t.key + "-" + h.name; var f = {}; for (var m in n) eu.call(n, m) && m !== "css" && m !== Tc && (f[m] = n[m]); @@ -19141,7 +19141,7 @@ var W5 = function (t) { function tu() { for (var n = arguments.length, t = new Array(n), o = 0; o < n; o++) t[o] = arguments[o]; - return Ym(t); + return Zm(t); } function J5() { var n = tu.apply(void 0, arguments), @@ -19163,7 +19163,7 @@ function ex(n, t) { ) ); } -var tx = Mh(); +var tx = Nh(); const nx = Math.min, rx = Math.max, _i = Math.round, @@ -19185,8 +19185,8 @@ function ox(n) { function Li() { return typeof window < "u"; } -function Jm(n) { - return tg(n) ? (n.nodeName || "").toLowerCase() : "#document"; +function eg(n) { + return ng(n) ? (n.nodeName || "").toLowerCase() : "#document"; } function kn(n) { var t; @@ -19195,13 +19195,13 @@ function kn(n) { window ); } -function eg(n) { +function tg(n) { var t; - return (t = (tg(n) ? n.ownerDocument : n.document) || window.document) == null + return (t = (ng(n) ? n.ownerDocument : n.document) || window.document) == null ? void 0 : t.documentElement; } -function tg(n) { +function ng(n) { return Li() ? n instanceof Node || n instanceof kn(n).Node : !1; } function ax(n) { @@ -19210,12 +19210,12 @@ function ax(n) { function nu(n) { return Li() ? n instanceof HTMLElement || n instanceof kn(n).HTMLElement : !1; } -function ch(n) { +function uh(n) { return !Li() || typeof ShadowRoot > "u" ? !1 : n instanceof ShadowRoot || n instanceof kn(n).ShadowRoot; } -function ng(n) { +function rg(n) { const { overflow: t, overflowX: o, overflowY: a, display: i } = ru(n); return ( /auto|scroll|overlay|hidden|clip/.test(t + a + o) && @@ -19228,30 +19228,30 @@ function ix() { : CSS.supports("-webkit-backdrop-filter", "none"); } function sx(n) { - return ["html", "body", "#document"].includes(Jm(n)); + return ["html", "body", "#document"].includes(eg(n)); } function ru(n) { return kn(n).getComputedStyle(n); } function lx(n) { - if (Jm(n) === "html") return n; - const t = n.assignedSlot || n.parentNode || (ch(n) && n.host) || eg(n); - return ch(t) ? t.host : t; + if (eg(n) === "html") return n; + const t = n.assignedSlot || n.parentNode || (uh(n) && n.host) || tg(n); + return uh(t) ? t.host : t; } -function rg(n) { +function og(n) { const t = lx(n); return sx(t) ? n.ownerDocument ? n.ownerDocument.body : n.body - : nu(t) && ng(t) + : nu(t) && rg(t) ? t - : rg(t); + : og(t); } function Si(n, t, o) { var a; t === void 0 && (t = []), o === void 0 && (o = !0); - const i = rg(n), + const i = og(n), c = i === ((a = n.ownerDocument) == null ? void 0 : a.body), d = kn(i); if (c) { @@ -19259,7 +19259,7 @@ function Si(n, t, o) { return t.concat( d, d.visualViewport || [], - ng(i) ? i : [], + rg(i) ? i : [], h && o ? Si(h) : [], ); } @@ -19281,7 +19281,7 @@ function cx(n) { function ou(n) { return ax(n) ? n : n.contextElement; } -function uh(n) { +function dh(n) { const t = ou(n); if (!nu(t)) return xi(1); const o = t.getBoundingClientRect(), @@ -19304,12 +19304,12 @@ function dx(n) { function fx(n, t, o) { return !1; } -function dh(n, t, o, a) { +function fh(n, t, o, a) { t === void 0 && (t = !1); const i = n.getBoundingClientRect(), c = ou(n); let d = xi(1); - t && (d = uh(n)); + t && (d = dh(n)); const h = fx() ? dx(c) : xi(0); let f = (i.left + h.x) / d.x, m = (i.top + h.y) / d.y, @@ -19321,7 +19321,7 @@ function dh(n, t, o, a) { let S = y, O = jc(S); for (; O && a && x !== S; ) { - const C = uh(O), + const C = dh(O), P = O.getBoundingClientRect(), T = ru(O), R = P.left + (O.clientLeft + parseFloat(T.paddingLeft)) * C.x, @@ -19338,7 +19338,7 @@ function dh(n, t, o, a) { } return ox({ width: b, height: v, x: f, y: m }); } -function og(n, t) { +function ag(n, t) { return ( n.x === t.x && n.y === t.y && n.width === t.width && n.height === t.height ); @@ -19346,7 +19346,7 @@ function og(n, t) { function px(n, t) { let o = null, a; - const i = eg(n); + const i = tg(n); function c() { var h; clearTimeout(a), (h = o) == null || h.disconnect(), (o = null); @@ -19375,7 +19375,7 @@ function px(n, t) { d(!1, 1e-7); }, 1e3)); } - N === 1 && !og(m, n.getBoundingClientRect()) && d(), (L = !1); + N === 1 && !ag(m, n.getBoundingClientRect()) && d(), (L = !1); } try { o = new IntersectionObserver(j, { ...R, root: i.ownerDocument }); @@ -19421,11 +19421,11 @@ function hx(n, t, o, a) { m && !f && x.observe(m), x.observe(t)); let S, - O = f ? dh(n) : null; + O = f ? fh(n) : null; f && C(); function C() { - const P = dh(n); - O && !og(O, P) && o(), (O = P), (S = requestAnimationFrame(C)); + const P = fh(n); + O && !ag(O, P) && o(), (O = P), (S = requestAnimationFrame(C)); } return ( o(), @@ -19482,14 +19482,14 @@ function bx(n, t) { }) .join(" "); } -var fh = function (t) { +var ph = function (t) { return Px(t) ? t.filter(Boolean) : _0(t) === "object" && t !== null ? [t] : []; }, - ag = function (t) { + ig = function (t) { t.className, t.clearValue, t.cx, @@ -19520,7 +19520,7 @@ function $i(n) { function vx(n) { return $i(n) ? window.innerHeight : n.clientHeight; } -function ig(n) { +function sg(n) { return $i(n) ? window.pageYOffset : n.scrollTop; } function ki(n, t) { @@ -19550,7 +19550,7 @@ function _x(n, t, o, a) { function Aa(n, t) { var o = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 200, a = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : wi, - i = ig(n), + i = sg(n), c = t - i, d = 10, h = 0; @@ -19561,7 +19561,7 @@ function Aa(n, t) { } f(); } -function ph(n, t) { +function hh(n, t) { var o = n.getBoundingClientRect(), a = t.getBoundingClientRect(), i = t.offsetHeight / 3; @@ -19586,7 +19586,7 @@ function xx(n) { width: t.width, }; } -function hh() { +function mh() { try { return document.createEvent("TouchEvent"), !0; } catch { @@ -19602,17 +19602,17 @@ function Sx() { return !1; } } -var sg = !1, +var lg = !1, wx = { get passive() { - return (sg = !0); + return (lg = !0); }, }, Da = typeof window < "u" ? window : {}; Da.addEventListener && Da.removeEventListener && (Da.addEventListener("p", wi, wx), Da.removeEventListener("p", wi, !1)); -var kx = sg; +var kx = lg; function Cx(n) { return n != null; } @@ -19663,7 +19663,7 @@ function jx(n) { C = o.offsetParent.getBoundingClientRect(), P = C.top, T = d ? window.innerHeight : vx(f), - R = ig(f), + R = sg(f), L = parseInt(getComputedStyle(o).marginBottom, 10), j = parseInt(getComputedStyle(o).marginTop, 10), $ = P - j, @@ -19717,7 +19717,7 @@ function Ix(n) { var t = { bottom: "top", top: "bottom" }; return n ? t[n] : "bottom"; } -var lg = function (t) { +var cg = function (t) { return t === "auto" ? "bottom" : t; }, Fx = function (t, o) { @@ -19746,7 +19746,7 @@ var lg = function (t) { }, ); }, - cg = V.createContext(null), + ug = V.createContext(null), Rx = function (t) { var o = t.children, a = t.minMenuHeight, @@ -19755,7 +19755,7 @@ var lg = function (t) { d = t.menuPosition, h = t.menuShouldScrollIntoView, f = t.theme, - m = V.useContext(cg) || {}, + m = V.useContext(ug) || {}, b = m.setPortalPlacement, v = V.useRef(null), y = V.useState(i), @@ -19790,7 +19790,7 @@ var lg = function (t) { ), o({ ref: v, - placerProps: ie(ie({}, t), {}, { placement: T || lg(c), maxHeight: S }), + placerProps: ie(ie({}, t), {}, { placement: T || cg(c), maxHeight: S }), }) ); }, @@ -19830,7 +19830,7 @@ var lg = function (t) { o, ); }, - ug = function (t, o) { + dg = function (t, o) { var a = t.theme, i = a.spacing.baseUnit, c = a.colors; @@ -19844,8 +19844,8 @@ var lg = function (t) { }, ); }, - $x = ug, - Ax = ug, + $x = dg, + Ax = dg, Dx = function (t) { var o = t.children, a = o === void 0 ? "No options" : o, @@ -19899,7 +19899,7 @@ var lg = function (t) { h = t.menuPosition, f = V.useRef(null), m = V.useRef(null), - b = V.useState(lg(d)), + b = V.useState(cg(d)), v = wn(b, 2), y = v[0], x = v[1], @@ -19974,7 +19974,7 @@ var lg = function (t) { ), a, ); - return ne(cg.Provider, { value: S }, o ? tx.createPortal($, o) : $); + return ne(ug.Provider, { value: S }, o ? tx.createPortal($, o) : $); }, Ux = function (t) { var o = t.isDisabled, @@ -20057,7 +20057,7 @@ var lg = function (t) { o, ); }, - mh, + gh, Qx = ["size"], Yx = ["innerProps", "isRtl", "size"], Zx = { @@ -20065,7 +20065,7 @@ var lg = function (t) { styles: "display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0", }, - dg = function (t) { + fg = function (t) { var o = t.size, a = Cn(t, Qx); return ne( @@ -20085,23 +20085,23 @@ var lg = function (t) { }, au = function (t) { return ne( - dg, + fg, ce({ size: 20 }, t), ne("path", { d: "M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z", }), ); }, - fg = function (t) { + pg = function (t) { return ne( - dg, + fg, ce({ size: 20 }, t), ne("path", { d: "M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z", }), ); }, - pg = function (t, o) { + hg = function (t, o) { var a = t.isFocused, i = t.theme, c = i.spacing.baseUnit, @@ -20121,7 +20121,7 @@ var lg = function (t) { }, ); }, - Jx = pg, + Jx = hg, e4 = function (t) { var o = t.children, a = t.innerProps; @@ -20132,10 +20132,10 @@ var lg = function (t) { Ge(t, "dropdownIndicator", { indicator: !0, "dropdown-indicator": !0 }), a, ), - o || ne(fg, null), + o || ne(pg, null), ); }, - t4 = pg, + t4 = hg, n4 = function (t) { var o = t.children, a = t.innerProps; @@ -20173,8 +20173,8 @@ var lg = function (t) { ); }, a4 = J5( - mh || - (mh = ex([ + gh || + (gh = ex([ ` 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } @@ -20358,7 +20358,7 @@ var lg = function (t) { ); }, m4 = function (t) { - var o = ag(t); + var o = ig(t); o.data; var a = Cn(o, d4); return ne("div", ce({}, Ge(t, "groupHeading", { "group-heading": !0 }), a)); @@ -20389,7 +20389,7 @@ var lg = function (t) { }, ); }, - hg = { + mg = { gridArea: "1 / 2", font: "inherit", minWidth: "2px", @@ -20409,7 +20409,7 @@ var lg = function (t) { visibility: "hidden", whiteSpace: "pre", }, - hg, + mg, ), }, _4 = function (t) { @@ -20421,13 +20421,13 @@ var lg = function (t) { opacity: t ? 0 : 1, width: "100%", }, - hg, + mg, ); }, x4 = function (t) { var o = t.cx, a = t.value, - i = ag(t), + i = ig(t), c = i.innerRef, d = i.isDisabled, h = i.isHidden, @@ -20505,13 +20505,13 @@ var lg = function (t) { }, ); }, - mg = function (t) { + gg = function (t) { var o = t.children, a = t.innerProps; return ne("div", a, o); }, - P4 = mg, - O4 = mg; + P4 = gg, + O4 = gg; function E4(n) { var t = n.children, o = n.innerProps; @@ -20690,7 +20690,7 @@ var T4 = function (t) { ClearIndicator: n4, Control: u4, DropdownIndicator: e4, - DownChevron: fg, + DownChevron: pg, CrossIcon: au, Group: g4, GroupHeading: m4, @@ -20716,13 +20716,13 @@ var T4 = function (t) { z4 = function (t) { return ie(ie({}, D4), t.components); }, - gh = + bh = Number.isNaN || function (t) { return typeof t == "number" && t !== t; }; function H4(n, t) { - return !!(n === t || (gh(n) && gh(t))); + return !!(n === t || (bh(n) && bh(t))); } function V4(n, t) { if (n.length !== t.length) return !1; @@ -20753,7 +20753,7 @@ var G4 = { q4 = function (t) { return ne("span", ce({ css: G4 }, t)); }, - bh = q4, + vh = q4, W4 = { guidance: function (t) { var o = t.isSearchable, @@ -20954,9 +20954,9 @@ var G4 = { return ne( V.Fragment, null, - ne(bh, { id: m }, le && xe), + ne(vh, { id: m }, le && xe), ne( - bh, + vh, { "aria-live": N, "aria-atomic": "false", @@ -21062,17 +21062,17 @@ var G4 = { "]", "g", ), - gg = {}; + bg = {}; for (var ec = 0; ec < Fc.length; ec++) for (var tc = Fc[ec], nc = 0; nc < tc.letters.length; nc++) - gg[tc.letters[nc]] = tc.base; -var bg = function (t) { + bg[tc.letters[nc]] = tc.base; +var vg = function (t) { return t.replace(Q4, function (o) { - return gg[o]; + return bg[o]; }); }, - Y4 = U4(bg), - vh = function (t) { + Y4 = U4(vg), + yh = function (t) { return t.replace(/^\s+|\s+$/g, ""); }, Z4 = function (t) { @@ -21096,11 +21096,11 @@ var bg = function (t) { h = i.stringify, f = i.trim, m = i.matchFrom, - b = f ? vh(a) : a, - v = f ? vh(h(o)) : h(o); + b = f ? yh(a) : a, + v = f ? yh(h(o)) : h(o); return ( c && ((b = b.toLowerCase()), (v = v.toLowerCase())), - d && ((b = Y4(b)), (v = bg(v))), + d && ((b = Y4(b)), (v = vg(v))), m === "start" ? v.substr(0, b.length) === b : v.indexOf(b) > -1 ); }; @@ -21234,29 +21234,29 @@ function r3(n) { } ); } -var yh = ["boxSizing", "height", "overflow", "paddingRight", "position"], - _h = { +var _h = ["boxSizing", "height", "overflow", "paddingRight", "position"], + xh = { boxSizing: "border-box", overflow: "hidden", position: "relative", height: "100%", }; -function xh(n) { +function Sh(n) { n.cancelable && n.preventDefault(); } -function Sh(n) { +function wh(n) { n.stopPropagation(); } -function wh() { +function kh() { var n = this.scrollTop, t = this.scrollHeight, o = n + this.offsetHeight; n === 0 ? (this.scrollTop = 1) : o === t && (this.scrollTop = n - 1); } -function kh() { +function Ch() { return "ontouchstart" in window || navigator.maxTouchPoints; } -var Ch = !!( +var Ph = !!( typeof window < "u" && window.document && window.document.createElement @@ -21271,12 +21271,12 @@ function o3(n) { c = V.useRef(null), d = V.useCallback( function (f) { - if (Ch) { + if (Ph) { var m = document.body, b = m && m.style; if ( (a && - yh.forEach(function (S) { + _h.forEach(function (S) { var O = b && b[S]; i.current[S] = O; }), @@ -21285,18 +21285,18 @@ function o3(n) { var v = parseInt(i.current.paddingRight, 10) || 0, y = document.body ? document.body.clientWidth : 0, x = window.innerWidth - y + v || 0; - Object.keys(_h).forEach(function (S) { - var O = _h[S]; + Object.keys(xh).forEach(function (S) { + var O = xh[S]; b && (b[S] = O); }), b && (b.paddingRight = "".concat(x, "px")); } m && - kh() && - (m.addEventListener("touchmove", xh, Y0), + Ch() && + (m.addEventListener("touchmove", Sh, Y0), f && - (f.addEventListener("touchstart", wh, Y0), - f.addEventListener("touchmove", Sh, Y0))), + (f.addEventListener("touchstart", kh, Y0), + f.addEventListener("touchmove", wh, Y0))), (to += 1); } }, @@ -21304,22 +21304,22 @@ function o3(n) { ), h = V.useCallback( function (f) { - if (Ch) { + if (Ph) { var m = document.body, b = m && m.style; (to = Math.max(to - 1, 0)), a && to < 1 && - yh.forEach(function (v) { + _h.forEach(function (v) { var y = i.current[v]; b && (b[v] = y); }), m && - kh() && - (m.removeEventListener("touchmove", xh, Y0), + Ch() && + (m.removeEventListener("touchmove", Sh, Y0), f && - (f.removeEventListener("touchstart", wh, Y0), - f.removeEventListener("touchmove", Sh, Y0))); + (f.removeEventListener("touchstart", kh, Y0), + f.removeEventListener("touchmove", wh, Y0))); } }, [a], @@ -21409,17 +21409,17 @@ function iu(n) { function d3() { return iu(/^iPhone/i); } -function vg() { +function yg() { return iu(/^Mac/i); } function f3() { - return iu(/^iPad/i) || (vg() && navigator.maxTouchPoints > 1); + return iu(/^iPad/i) || (yg() && navigator.maxTouchPoints > 1); } function p3() { return d3() || f3(); } function h3() { - return vg() || p3(); + return yg() || p3(); } var m3 = function (t) { return t.label; @@ -21477,16 +21477,16 @@ var m3 = function (t) { neutral90: "hsl(0, 0%, 10%)", }, x3 = 4, - yg = 4, + _g = 4, S3 = 38, - w3 = yg * 2, - k3 = { baseUnit: yg, controlHeight: S3, menuGutter: w3 }, + w3 = _g * 2, + k3 = { baseUnit: _g, controlHeight: S3, menuGutter: w3 }, rc = { borderRadius: x3, colors: _3, spacing: k3 }, C3 = { "aria-live": "polite", backspaceRemovesValue: !0, - blurInputOnSelect: hh(), - captureMenuScroll: !hh(), + blurInputOnSelect: mh(), + captureMenuScroll: !mh(), classNames: {}, closeMenuOnSelect: !0, closeMenuOnScroll: !1, @@ -21530,10 +21530,10 @@ var m3 = function (t) { tabSelectsValue: !0, unstyled: !1, }; -function Ph(n, t, o, a) { - var i = Sg(n, t, o), - c = wg(n, t, o), - d = xg(n, t), +function Oh(n, t, o, a) { + var i = wg(n, t, o), + c = kg(n, t, o), + d = Sg(n, t), h = Ci(n, t); return { type: "option", @@ -21551,21 +21551,21 @@ function Ja(n, t) { if ("options" in o) { var i = o.options .map(function (d, h) { - return Ph(n, d, t, h); + return Oh(n, d, t, h); }) .filter(function (d) { - return Eh(n, d); + return Th(n, d); }); return i.length > 0 ? { type: "group", data: o, options: i, index: a } : void 0; } - var c = Ph(n, o, t, a); - return Eh(n, c) ? c : void 0; + var c = Oh(n, o, t, a); + return Th(n, c) ? c : void 0; }) .filter(Cx); } -function _g(n) { +function xg(n) { return n.reduce(function (t, o) { return ( o.type === "group" @@ -21582,7 +21582,7 @@ function _g(n) { ); }, []); } -function Oh(n, t) { +function Eh(n, t) { return n.reduce(function (o, a) { return ( a.type === "group" @@ -21603,16 +21603,16 @@ function Oh(n, t) { }, []); } function P3(n, t) { - return _g(Ja(n, t)); + return xg(Ja(n, t)); } -function Eh(n, t) { +function Th(n, t) { var o = n.inputValue, a = o === void 0 ? "" : o, i = t.data, c = t.isSelected, d = t.label, h = t.value; - return (!Cg(n) || !c) && kg(n, { label: d, value: h, data: i }, a); + return (!Pg(n) || !c) && Cg(n, { label: d, value: h, data: i }, a); } function O3(n, t) { var o = n.focusedValue, @@ -21639,18 +21639,18 @@ var oc = function (t, o) { : a.id; return i || null; }, - xg = function (t, o) { + Sg = function (t, o) { return t.getOptionLabel(o); }, Ci = function (t, o) { return t.getOptionValue(o); }; -function Sg(n, t, o) { +function wg(n, t, o) { return typeof n.isOptionDisabled == "function" ? n.isOptionDisabled(t, o) : !1; } -function wg(n, t, o) { +function kg(n, t, o) { if (o.indexOf(t) > -1) return !0; if (typeof n.isOptionSelected == "function") return n.isOptionSelected(t, o); var a = Ci(n, t); @@ -21658,16 +21658,16 @@ function wg(n, t, o) { return Ci(n, i) === a; }); } -function kg(n, t, o) { +function Cg(n, t, o) { return n.filterOption ? n.filterOption(t, o) : !0; } -var Cg = function (t) { +var Pg = function (t) { var o = t.hideSelectedOptions, a = t.isMulti; return o === void 0 ? a : o; }, T3 = 1, - Pg = (function (n) { + Og = (function (n) { Q2(o, n); var t = J2(o); function o(a) { @@ -21791,7 +21791,7 @@ var Cg = function (t) { return oc(i.state.focusableOptionsWithIds, f); }), (i.getFocusableOptionsWithIds = function () { - return Oh(Ja(i.props, i.state.selectValue), i.getElementId("option")); + return Eh(Ja(i.props, i.state.selectValue), i.getElementId("option")); }), (i.getValue = function () { return i.state.selectValue; @@ -21802,7 +21802,7 @@ var Cg = function (t) { return bx.apply(void 0, [i.props.classNamePrefix].concat(m)); }), (i.getOptionLabel = function (f) { - return xg(i.props, f); + return Sg(i.props, f); }), (i.getOptionValue = function (f) { return Ci(i.props, f); @@ -21833,7 +21833,7 @@ var Cg = function (t) { return i.props.menuIsOpen ? i.buildCategorizedOptions() : []; }), (i.buildFocusableOptions = function () { - return _g(i.buildCategorizedOptions()); + return xg(i.buildCategorizedOptions()); }), (i.getFocusableOptions = function () { return i.props.menuIsOpen ? i.buildFocusableOptions() : []; @@ -21978,7 +21978,7 @@ var Cg = function (t) { } }), (i.shouldHideSelectedOptions = function () { - return Cg(i.props); + return Pg(i.props); }), (i.onValueInputFocus = function (f) { f.preventDefault(), f.stopPropagation(), i.focus(); @@ -22087,7 +22087,7 @@ var Cg = function (t) { }), (i.state.instancePrefix = "react-select-" + (i.props.instanceId || ++T3)), - (i.state.selectValue = fh(a.value)), + (i.state.selectValue = ph(a.value)), a.menuIsOpen && i.state.selectValue.length) ) { var c = i.getFocusableOptionsWithIds(), @@ -22117,7 +22117,7 @@ var Cg = function (t) { this.state.focusedOption && this.menuListRef && this.focusedOptionRef && - ph(this.menuListRef, this.focusedOptionRef); + hh(this.menuListRef, this.focusedOptionRef); }, }, { @@ -22139,7 +22139,7 @@ var Cg = function (t) { this.menuListRef && this.focusedOptionRef && this.scrollToFocusedOptionOnUpdate && - (ph(this.menuListRef, this.focusedOptionRef), + (hh(this.menuListRef, this.focusedOptionRef), (this.scrollToFocusedOptionOnUpdate = !1)); }, }, @@ -22341,19 +22341,19 @@ var Cg = function (t) { { key: "isOptionDisabled", value: function (i, c) { - return Sg(this.props, i, c); + return wg(this.props, i, c); }, }, { key: "isOptionSelected", value: function (i, c) { - return wg(this.props, i, c); + return kg(this.props, i, c); }, }, { key: "filterOption", value: function (i, c) { - return kg(this.props, i, c); + return Cg(this.props, i, c); }, }, { @@ -23007,7 +23007,7 @@ var Cg = function (t) { O = i.menuIsOpen, C = i.inputValue, P = i.isMulti, - T = fh(S), + T = ph(S), R = {}; if ( d && @@ -23017,7 +23017,7 @@ var Cg = function (t) { C !== d.inputValue) ) { var L = O ? P3(i, T) : [], - j = O ? Oh(Ja(i, T), "".concat(y, "-option")) : [], + j = O ? Eh(Ja(i, T), "".concat(y, "-option")) : [], $ = h ? O3(c, T) : null, N = E3(c, L), K = oc(j, N); @@ -23060,13 +23060,13 @@ var Cg = function (t) { o ); })(V.Component); -Pg.defaultProps = C3; +Og.defaultProps = C3; var j3 = V.forwardRef(function (n, t) { var o = W2(n); - return V.createElement(Pg, ce({ ref: t }, o)); + return V.createElement(Og, ce({ ref: t }, o)); }), I3 = j3; -function Th({ isDark: n, context: t, isFocused: o = !1, isSelected: a = !1 }) { +function jh({ isDark: n, context: t, isFocused: o = !1, isSelected: a = !1 }) { if (t === "control") return o ? (n ? "#222222" : "#E8E8E8") : n ? "#383838" : "#F1F1F1"; if (t === "option") @@ -23078,7 +23078,7 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => styles: { control: (i, c) => ({ ...i, - backgroundColor: Th({ + backgroundColor: jh({ isDark: n, context: "control", isFocused: c.isFocused, @@ -23122,7 +23122,7 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => padding: "4px 8px", fontFamily: "monospace", borderRadius: "6px", - backgroundColor: Th({ + backgroundColor: jh({ isDark: n, context: "option", isSelected: c.isSelected, @@ -26320,7 +26320,7 @@ const _w = [ "getAccountInfo", "getBalance", ], - jh = [ + Ih = [ "eth_getBlockByNumber", "eth_getTransactionByHash", "eth_getTransactionCount", @@ -26334,7 +26334,7 @@ const _w = [ "eth_blockNumber", ], xw = ["alchemy_getAssetTransfers", "alchemy_getTokenBalances"], - Ih = Object.assign({ + Fh = Object.assign({ "./code-samples/alchemy_getAssetTransfers/bash/ethereum-mainnet/request": R3, "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/request": N3, @@ -26402,7 +26402,7 @@ const _w = [ "./code-samples/getTokenAccountsByOwner/bash/solana-mainnet/request": X6, "./code-samples/getTransaction/bash/solana-mainnet/request": Y6, }), - Fh = Object.assign({ + Rh = Object.assign({ "./code-samples/alchemy_getAssetTransfers/bash/ethereum-mainnet/response": J6, "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/response": @@ -26480,19 +26480,19 @@ function Sw() { [i, c, d] = a; return { apiKey: i, langKey: c, chainKey: d }; } - for (const o in Ih) { + for (const o in Fh) { const { apiKey: a, langKey: i, chainKey: c } = t(o); n[a] || (n[a] = {}), n[a][i] || (n[a][i] = {}), n[a][i][c] || (n[a][i][c] = { request: "", response: "" }), - (n[a][i][c].request = Ih[o].default); + (n[a][i][c].request = Fh[o].default); } - for (const o in Fh) { + for (const o in Rh) { const { apiKey: a, langKey: i, chainKey: c } = t(o); n[a] || (n[a] = {}), n[a][i] || (n[a][i] = {}), n[a][i][c] || (n[a][i][c] = { request: "", response: "" }), - (n[a][i][c].response = Fh[o].default); + (n[a][i][c].response = Rh[o].default); } return n; } @@ -26586,7 +26586,7 @@ const Ha = Sw(), Tw = (n) => n === go.solanaMainnet ? _w.map((o) => ({ value: o, label: o })) - : (n === go.ethereumMainnet ? [...xw, ...jh] : jh).map((o) => ({ + : (n === go.ethereumMainnet ? [...xw, ...Ih] : Ih).map((o) => ({ value: o, label: o, })), @@ -26877,7 +26877,7 @@ const Ha = Sw(), ); }, Mc = "code-block-id", - Rh = async () => { + Mh = async () => { var o; let n = document.getElementById(Mc); if ( @@ -26894,8 +26894,9 @@ const Ha = Sw(), (n.style.display = "block"), (o = document.getElementById("builtwithfern")) == null || o.remove(); }, - Og = async () => { - window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Rh()), + su = async () => { + console.log("initializeApp"), + window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Mh()), new MutationObserver(async (o) => { if (!(window.location.pathname.replace(/\/+$/, "") === "/docs")) return; o.some((d) => { @@ -26905,11 +26906,14 @@ const Ha = Sw(), (m = document.getElementById(Mc)) != null && m.hasChildNodes() ); return h && f; - }) && (await Rh()); + }) && (await Mh()); }).observe(document.body, { childList: !0, subtree: !0 }); }; -Og(); -window.addEventListener("popstate", Og); +window.initializeApp = su; +su(); +window.addEventListener("popstate", () => { + console.log("popstate"), su(); +}); const Iw = Object.freeze({ displayName: "Shell", name: "shellscript", diff --git a/fern/docs.yml b/fern/docs.yml index 011c99e27..d31921470 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -74,6 +74,8 @@ css: - ./components/Footer.css js: + - path: assets/load-custom-app.js + strategy: beforeInteractive - path: assets/heap.js strategy: afterInteractive - path: assets/dashboard-referral.js diff --git a/fern/home/index.mdx b/fern/home/index.mdx index f543e8724..c14d0a7e1 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,7 +7,6 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
-

Build anything onchain

From dcd7830f6709228ea9cca7851f2fab89093422ac Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 23:37:01 -0400 Subject: [PATCH 09/16] debug: add debugging logs to load-custom-app.js --- fern/assets/load-custom-app.js | 42 ++++++++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/fern/assets/load-custom-app.js b/fern/assets/load-custom-app.js index d36843f3a..f7ac4929c 100644 --- a/fern/assets/load-custom-app.js +++ b/fern/assets/load-custom-app.js @@ -1,11 +1,35 @@ -// Simple pathname check - only load script once when on /docs -const regex = /\/docs\//; -if (regex.test(window.location.pathname)) { - // Check if script is already loaded - if (!document.getElementById("homepage-script")) { - const script = document.createElement("script"); - script.id = "homepage-script"; - script.src = "/dist/output.js"; - document.head.appendChild(script); +// Debug: Log that script is running +console.log("load-custom-app.js executing", window.location.pathname); + +function loadHomepageScript() { + // Simple pathname check - only load script once when on /docs + const cleanPath = window.location.pathname.replace(/\/+$/, ""); + console.log("Clean path:", cleanPath); + + if (cleanPath === "/docs") { + console.log("On homepage, checking for script..."); + // Check if script is already loaded + if (!document.getElementById("homepage-script")) { + console.log("Loading homepage script..."); + const script = document.createElement("script"); + script.id = "homepage-script"; + script.src = "/dist/output.js"; + document.head.appendChild(script); + } else { + console.log("Homepage script already loaded"); + } + } else { + console.log("Not on homepage, path is:", cleanPath); } } + +// Run immediately +loadHomepageScript(); + +// Also run when DOM is ready (in case beforeInteractive is too early) +if (document.readyState === "loading") { + document.addEventListener("DOMContentLoaded", loadHomepageScript); +} else { + // DOM is already ready + loadHomepageScript(); +} From 2b8c30528815a7c072b3ce3573938f76da9e7de2 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Thu, 31 Jul 2025 23:47:16 -0400 Subject: [PATCH 10/16] fix: remove unused window method definition --- custom-app/src/main.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index 4b61bd266..ea21d11b7 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -70,11 +70,6 @@ const initializeApp = async () => { observer.observe(document.body, { childList: true, subtree: true }) } -type WindowWithInitializeApp = Window & - typeof globalThis & { initializeApp: () => void } -// Expose initializeApp globally for MDX to call -;(window as WindowWithInitializeApp).initializeApp = initializeApp - // Run immediately when script loads (for direct navigation to homepage) initializeApp() From 4baf13c80be0748b9b08300a2dddfe3d6a556400 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Fri, 1 Aug 2025 00:17:21 -0400 Subject: [PATCH 11/16] fix: attempt to import initializeApp --- custom-app/src/main.tsx | 13 +++++++++---- fern/assets/load-custom-app.js | 35 ---------------------------------- fern/dist/output.js | 4 +--- fern/docs.yml | 2 -- fern/home/index.mdx | 10 ++++++++++ 5 files changed, 20 insertions(+), 44 deletions(-) delete mode 100644 fern/assets/load-custom-app.js diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index ea21d11b7..1303c57b0 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -70,11 +70,16 @@ const initializeApp = async () => { observer.observe(document.body, { childList: true, subtree: true }) } +type WindowWithInitializeApp = Window & + typeof globalThis & { initializeApp: () => void } +// Expose initializeApp globally for MDX to call +;(window as WindowWithInitializeApp).initializeApp = initializeApp + // Run immediately when script loads (for direct navigation to homepage) initializeApp() // Also run on popstate (for back/forward navigation) -window.addEventListener('popstate', () => { - console.log('popstate') - initializeApp() -}) +window.addEventListener('popstate', initializeApp) + +// Export for module imports +export default initializeApp diff --git a/fern/assets/load-custom-app.js b/fern/assets/load-custom-app.js deleted file mode 100644 index f7ac4929c..000000000 --- a/fern/assets/load-custom-app.js +++ /dev/null @@ -1,35 +0,0 @@ -// Debug: Log that script is running -console.log("load-custom-app.js executing", window.location.pathname); - -function loadHomepageScript() { - // Simple pathname check - only load script once when on /docs - const cleanPath = window.location.pathname.replace(/\/+$/, ""); - console.log("Clean path:", cleanPath); - - if (cleanPath === "/docs") { - console.log("On homepage, checking for script..."); - // Check if script is already loaded - if (!document.getElementById("homepage-script")) { - console.log("Loading homepage script..."); - const script = document.createElement("script"); - script.id = "homepage-script"; - script.src = "/dist/output.js"; - document.head.appendChild(script); - } else { - console.log("Homepage script already loaded"); - } - } else { - console.log("Not on homepage, path is:", cleanPath); - } -} - -// Run immediately -loadHomepageScript(); - -// Also run when DOM is ready (in case beforeInteractive is too early) -if (document.readyState === "loading") { - document.addEventListener("DOMContentLoaded", loadHomepageScript); -} else { - // DOM is already ready - loadHomepageScript(); -} diff --git a/fern/dist/output.js b/fern/dist/output.js index c7577413a..1781b5fe8 100644 --- a/fern/dist/output.js +++ b/fern/dist/output.js @@ -26911,9 +26911,7 @@ const Ha = Sw(), }; window.initializeApp = su; su(); -window.addEventListener("popstate", () => { - console.log("popstate"), su(); -}); +window.addEventListener("popstate", su); const Iw = Object.freeze({ displayName: "Shell", name: "shellscript", diff --git a/fern/docs.yml b/fern/docs.yml index d31921470..011c99e27 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -74,8 +74,6 @@ css: - ./components/Footer.css js: - - path: assets/load-custom-app.js - strategy: beforeInteractive - path: assets/heap.js strategy: afterInteractive - path: assets/dashboard-referral.js diff --git a/fern/home/index.mdx b/fern/home/index.mdx index c14d0a7e1..2ad64cafe 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,6 +7,16 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
+

Build anything onchain

From d390e64acd82ed3a7db000595c7eb36cbc264765 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Fri, 1 Aug 2025 00:44:09 -0400 Subject: [PATCH 12/16] fix: try directly importing the output js --- custom-app/src/main.tsx | 14 +- fern/assets/homepage-loader.js | 22 + fern/dist/output.js | 1932 ++++++++++++++++---------------- fern/home/index.mdx | 11 +- 4 files changed, 995 insertions(+), 984 deletions(-) create mode 100644 fern/assets/homepage-loader.js diff --git a/custom-app/src/main.tsx b/custom-app/src/main.tsx index 1303c57b0..c99af6903 100644 --- a/custom-app/src/main.tsx +++ b/custom-app/src/main.tsx @@ -70,16 +70,12 @@ const initializeApp = async () => { observer.observe(document.body, { childList: true, subtree: true }) } -type WindowWithInitializeApp = Window & - typeof globalThis & { initializeApp: () => void } -// Expose initializeApp globally for MDX to call -;(window as WindowWithInitializeApp).initializeApp = initializeApp - // Run immediately when script loads (for direct navigation to homepage) +console.log('running initializeApp') initializeApp() // Also run on popstate (for back/forward navigation) -window.addEventListener('popstate', initializeApp) - -// Export for module imports -export default initializeApp +window.addEventListener('popstate', () => { + console.log('popstate') + initializeApp() +}) diff --git a/fern/assets/homepage-loader.js b/fern/assets/homepage-loader.js new file mode 100644 index 000000000..9a385c610 --- /dev/null +++ b/fern/assets/homepage-loader.js @@ -0,0 +1,22 @@ +// Homepage script loader - runs on all pages, only acts on /docs +console.log("Homepage loader running on:", window.location.pathname); + +// Only load on homepage +const cleanPath = window.location.pathname.replace(/\/+$/, ""); +if (cleanPath === "/docs") { + console.log("On homepage, loading script..."); + + // Check if already loaded + if (!document.getElementById("homepage-script")) { + const script = document.createElement("script"); + script.id = "homepage-script"; + script.src = "./dist/output.js"; // Relative to current page + script.onload = () => console.log("Homepage script loaded successfully"); + script.onerror = (e) => console.error("Failed to load homepage script:", e); + document.head.appendChild(script); + } else { + console.log("Homepage script already loaded"); + } +} else { + console.log("Not on homepage, skipping script load"); +} diff --git a/fern/dist/output.js b/fern/dist/output.js index 1781b5fe8..9f967c8ad 100644 --- a/fern/dist/output.js +++ b/fern/dist/output.js @@ -1,7 +1,7 @@ var kb = Object.defineProperty; var Cb = Object.getPrototypeOf; var Pb = Reflect.get; -var np = (n) => { +var tp = (n) => { throw TypeError(n); }; var Ob = (n, t, o) => @@ -9,13 +9,13 @@ var Ob = (n, t, o) => ? kb(n, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) : (n[t] = o); var B = (n, t, o) => Ob(n, typeof t != "symbol" ? t + "" : t, o), - Il = (n, t, o) => t.has(n) || np("Cannot " + o); + Il = (n, t, o) => t.has(n) || tp("Cannot " + o); var yt = (n, t, o) => ( Il(n, t, "read from private field"), o ? o.call(n) : t.get(n) ), d0 = (n, t, o) => t.has(n) - ? np("Cannot add the same private member more than once") + ? tp("Cannot add the same private member more than once") : t instanceof WeakSet ? t.add(n) : t.set(n, o), @@ -23,7 +23,7 @@ var yt = (n, t, o) => ( Il(n, t, "write to private field"), a ? a.call(n, o) : t.set(n, o), o ), Fl = (n, t, o) => (Il(n, t, "access private method"), o); -var rp = (n, t, o) => Pb(Cb(n), o, t); +var np = (n, t, o) => Pb(Cb(n), o, t); function Eb(n, t) { for (var o = 0; o < t.length; o++) { const a = t[o]; @@ -91,10 +91,10 @@ var Rl = { exports: {} }, * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var op; + */ var rp; function jb() { - if (op) return ke; - op = 1; + if (rp) return ke; + rp = 1; var n = Symbol.for("react.element"), t = Symbol.for("react.portal"), o = Symbol.for("react.fragment"), @@ -487,9 +487,9 @@ function jb() { ke ); } -var ap; +var op; function Nc() { - return ap || ((ap = 1), (Ml.exports = jb())), Ml.exports; + return op || ((op = 1), (Ml.exports = jb())), Ml.exports; } /** * @license React @@ -499,10 +499,10 @@ function Nc() { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var ip; + */ var ap; function Ib() { - if (ip) return Zr; - ip = 1; + if (ap) return Zr; + ap = 1; var n = Nc(), t = Symbol.for("react.element"), o = Symbol.for("react.fragment"), @@ -531,14 +531,14 @@ function Ib() { } return (Zr.Fragment = o), (Zr.jsx = d), (Zr.jsxs = d), Zr; } -var sp; +var ip; function Fb() { - return sp || ((sp = 1), (Rl.exports = Ib())), Rl.exports; + return ip || ((ip = 1), (Rl.exports = Ib())), Rl.exports; } var Re = Fb(), V = Nc(); const Ue = Tb(V), - lp = Eb({ __proto__: null, default: Ue }, [V]); + sp = Eb({ __proto__: null, default: Ue }, [V]); var ja = {}, Nl = { exports: {} }, Pt = {}, @@ -552,11 +552,11 @@ var ja = {}, * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var cp; + */ var lp; function Rb() { return ( - cp || - ((cp = 1), + lp || + ((lp = 1), (function (n) { function t(q, Q) { var w = q.length; @@ -844,9 +844,9 @@ function Rb() { Ll ); } -var up; +var cp; function Mb() { - return up || ((up = 1), (Bl.exports = Rb())), Bl.exports; + return cp || ((cp = 1), (Bl.exports = Rb())), Bl.exports; } /** * @license React @@ -856,10 +856,10 @@ function Mb() { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var dp; + */ var up; function Nb() { - if (dp) return Pt; - dp = 1; + if (up) return Pt; + up = 1; var n = Nc(), t = Mb(); function o(e) { @@ -1393,11 +1393,11 @@ function Nb() { : r.value != null, }); } - function lu(e, r) { + function su(e, r) { (r = r.checked), r != null && R(e, "checked", r, !1); } function Ai(e, r) { - lu(e, r); + su(e, r); var s = fe(r.value), l = r.type; if (s != null) @@ -1415,7 +1415,7 @@ function Nb() { r.defaultChecked != null && (e.defaultChecked = !!r.defaultChecked); } - function cu(e, r, s) { + function lu(e, r, s) { if (r.hasOwnProperty("value") || r.hasOwnProperty("defaultValue")) { var l = r.type; if ( @@ -1468,7 +1468,7 @@ function Nb() { children: "" + e._wrapperState.initialValue, }); } - function uu(e, r) { + function cu(e, r) { var s = r.value; if (s == null) { if (((s = r.children), (r = r.defaultValue), s != null)) { @@ -1483,7 +1483,7 @@ function Nb() { } e._wrapperState = { initialValue: fe(s) }; } - function du(e, r) { + function uu(e, r) { var s = fe(r.value), l = fe(r.defaultValue); s != null && @@ -1492,14 +1492,14 @@ function Nb() { r.defaultValue == null && e.defaultValue !== s && (e.defaultValue = s)), l != null && (e.defaultValue = "" + l); } - function fu(e) { + function du(e) { var r = e.textContent; r === e._wrapperState.initialValue && r !== "" && r !== null && (e.value = r); } - function pu(e) { + function fu(e) { switch (e) { case "svg": return "http://www.w3.org/2000/svg"; @@ -1511,13 +1511,13 @@ function Nb() { } function Hi(e, r) { return e == null || e === "http://www.w3.org/1999/xhtml" - ? pu(r) + ? fu(r) : e === "http://www.w3.org/2000/svg" && r === "foreignObject" ? "http://www.w3.org/1999/xhtml" : e; } var So, - hu = (function (e) { + pu = (function (e) { return typeof MSApp < "u" && MSApp.execUnsafeLocalFunction ? function (r, s, l, u) { MSApp.execUnsafeLocalFunction(function () { @@ -1601,19 +1601,19 @@ function Nb() { (r = r + e.charAt(0).toUpperCase() + e.substring(1)), (mr[r] = mr[e]); }); }); - function mu(e, r, s) { + function hu(e, r, s) { return r == null || typeof r == "boolean" || r === "" ? "" : s || typeof r != "number" || r === 0 || (mr.hasOwnProperty(e) && mr[e]) ? ("" + r).trim() : r + "px"; } - function gu(e, r) { + function mu(e, r) { e = e.style; for (var s in r) if (r.hasOwnProperty(s)) { var l = s.indexOf("--") === 0, - u = mu(s, r[s], l); + u = hu(s, r[s], l); s === "float" && (s = "cssFloat"), l ? e.setProperty(s, u) : (e[s] = u); } } @@ -1679,35 +1679,35 @@ function Nb() { var Wi = null, P0 = null, O0 = null; - function bu(e) { + function gu(e) { if ((e = Lr(e))) { if (typeof Wi != "function") throw Error(o(280)); var r = e.stateNode; r && ((r = Go(r)), Wi(e.stateNode, e.type, r)); } } - function vu(e) { + function bu(e) { P0 ? (O0 ? O0.push(e) : (O0 = [e])) : (P0 = e); } - function yu() { + function vu() { if (P0) { var e = P0, r = O0; - if (((O0 = P0 = null), bu(e), r)) for (e = 0; e < r.length; e++) bu(r[e]); + if (((O0 = P0 = null), gu(e), r)) for (e = 0; e < r.length; e++) gu(r[e]); } } - function _u(e, r) { + function yu(e, r) { return e(r); } - function xu() {} + function _u() {} var Ki = !1; - function Su(e, r, s) { + function xu(e, r, s) { if (Ki) return e(r, s); Ki = !0; try { - return _u(e, r, s); + return yu(e, r, s); } finally { - (Ki = !1), (P0 !== null || O0 !== null) && (xu(), yu()); + (Ki = !1), (P0 !== null || O0 !== null) && (_u(), vu()); } } function gr(e, r) { @@ -1799,7 +1799,7 @@ function Nb() { } return r.tag === 3 ? s : null; } - function wu(e) { + function Su(e) { if (e.tag === 13) { var r = e.memoizedState; if ( @@ -1810,7 +1810,7 @@ function Nb() { } return null; } - function ku(e) { + function wu(e) { if (Zn(e) !== e) throw Error(o(188)); } function Mg(e) { @@ -1832,8 +1832,8 @@ function Nb() { } if (u.child === p.child) { for (p = u.child; p; ) { - if (p === s) return ku(u), e; - if (p === l) return ku(u), r; + if (p === s) return wu(u), e; + if (p === l) return wu(u), r; p = p.sibling; } throw Error(o(188)); @@ -1871,29 +1871,29 @@ function Nb() { if (s.tag !== 3) throw Error(o(188)); return s.stateNode.current === s ? e : r; } - function Cu(e) { - return (e = Mg(e)), e !== null ? Pu(e) : null; + function ku(e) { + return (e = Mg(e)), e !== null ? Cu(e) : null; } - function Pu(e) { + function Cu(e) { if (e.tag === 5 || e.tag === 6) return e; for (e = e.child; e !== null; ) { - var r = Pu(e); + var r = Cu(e); if (r !== null) return r; e = e.sibling; } return null; } - var Ou = t.unstable_scheduleCallback, - Eu = t.unstable_cancelCallback, + var Pu = t.unstable_scheduleCallback, + Ou = t.unstable_cancelCallback, Ng = t.unstable_shouldYield, Bg = t.unstable_requestPaint, qe = t.unstable_now, Lg = t.unstable_getCurrentPriorityLevel, Yi = t.unstable_ImmediatePriority, - Tu = t.unstable_UserBlockingPriority, + Eu = t.unstable_UserBlockingPriority, Co = t.unstable_NormalPriority, $g = t.unstable_LowPriority, - ju = t.unstable_IdlePriority, + Tu = t.unstable_IdlePriority, Po = null, tn = null; function Ag(e) { @@ -2048,7 +2048,7 @@ function Nb() { e !== 0 ? e : e & 1073741824 ? 1073741824 : 0 ); } - function Iu() { + function ju() { var e = Oo; return (Oo <<= 1), (Oo & 4194240) === 0 && (Oo = 64), e; } @@ -2088,17 +2088,17 @@ function Nb() { } } var Fe = 0; - function Fu(e) { + function Iu(e) { return ( (e &= -e), 1 < e ? (4 < e ? ((e & 268435455) !== 0 ? 16 : 536870912) : 4) : 1 ); } - var Ru, + var Fu, ts, + Ru, Mu, Nu, - Bu, ns = !1, jo = [], Pn = null, @@ -2111,7 +2111,7 @@ function Nb() { "mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split( " ", ); - function Lu(e, r) { + function Bu(e, r) { switch (e) { case "focusin": case "focusout": @@ -2168,16 +2168,16 @@ function Nb() { } return !1; } - function $u(e) { + function Lu(e) { var r = Jn(e.target); if (r !== null) { var s = Zn(r); if (s !== null) { if (((r = s.tag), r === 13)) { - if (((r = wu(s)), r !== null)) { + if (((r = Su(s)), r !== null)) { (e.blockedOn = r), - Bu(e.priority, function () { - Mu(s); + Nu(e.priority, function () { + Ru(s); }); return; } @@ -2202,7 +2202,7 @@ function Nb() { } return !0; } - function Au(e, r, s) { + function $u(e, r, s) { Io(e) && s.delete(r); } function Kg() { @@ -2210,8 +2210,8 @@ function Nb() { Pn !== null && Io(Pn) && (Pn = null), On !== null && Io(On) && (On = null), En !== null && Io(En) && (En = null), - xr.forEach(Au), - Sr.forEach(Au); + xr.forEach($u), + Sr.forEach($u); } function kr(e, r) { e.blockedOn === r && @@ -2243,7 +2243,7 @@ function Nb() { ) (l = Tn[s]), l.blockedOn === e && (l.blockedOn = null); for (; 0 < Tn.length && ((s = Tn[0]), s.blockedOn === null); ) - $u(s), s.blockedOn === null && Tn.shift(); + Lu(s), s.blockedOn === null && Tn.shift(); } var E0 = L.ReactCurrentBatchConfig, Fo = !0; @@ -2270,13 +2270,13 @@ function Nb() { function rs(e, r, s, l) { if (Fo) { var u = os(e, r, s, l); - if (u === null) xs(e, r, l, Ro, s), Lu(e, l); + if (u === null) xs(e, r, l, Ro, s), Bu(e, l); else if (Wg(u, e, r, s, l)) l.stopPropagation(); - else if ((Lu(e, l), r & 4 && -1 < qg.indexOf(e))) { + else if ((Bu(e, l), r & 4 && -1 < qg.indexOf(e))) { for (; u !== null; ) { var p = Lr(u); if ( - (p !== null && Ru(p), + (p !== null && Fu(p), (p = os(e, r, s, l)), p === null && xs(e, r, l, Ro, s), p === u) @@ -2293,7 +2293,7 @@ function Nb() { if (((Ro = null), (e = qi(l)), (e = Jn(e)), e !== null)) if (((r = Zn(e)), r === null)) e = null; else if (((s = r.tag), s === 13)) { - if (((e = wu(r)), e !== null)) return e; + if (((e = Su(r)), e !== null)) return e; e = null; } else if (s === 3) { if (r.stateNode.current.memoizedState.isDehydrated) @@ -2302,7 +2302,7 @@ function Nb() { } else r !== e && (e = null); return (Ro = e), null; } - function Du(e) { + function Au(e) { switch (e) { case "cancel": case "click": @@ -2380,12 +2380,12 @@ function Nb() { switch (Lg()) { case Yi: return 1; - case Tu: + case Eu: return 4; case Co: case $g: return 16; - case ju: + case Tu: return 536870912; default: return 16; @@ -2397,7 +2397,7 @@ function Nb() { var jn = null, as = null, Mo = null; - function zu() { + function Du() { if (Mo) return Mo; var e, r = as, @@ -2423,7 +2423,7 @@ function Nb() { function Bo() { return !0; } - function Hu() { + function zu() { return !1; } function Tt(e) { @@ -2441,8 +2441,8 @@ function Nb() { p.defaultPrevented != null ? p.defaultPrevented : p.returnValue === !1 ) ? Bo - : Hu), - (this.isPropagationStopped = Hu), + : zu), + (this.isPropagationStopped = zu), this ); } @@ -2522,7 +2522,7 @@ function Nb() { return "movementY" in e ? e.movementY : ls; }, }), - Vu = Tt(Lo), + Hu = Tt(Lo), Zg = w({}, Lo, { dataTransfer: 0 }), Jg = Tt(Zg), e1 = w({}, Pr, { relatedTarget: 0 }), @@ -2536,7 +2536,7 @@ function Nb() { }), o1 = Tt(r1), a1 = w({}, T0, { data: 0 }), - Uu = Tt(a1), + Vu = Tt(a1), i1 = { Esc: "Escape", Spacebar: " ", @@ -2654,7 +2654,7 @@ function Nb() { pointerType: 0, isPrimary: 0, }), - Gu = Tt(f1), + Uu = Tt(f1), p1 = w({}, Pr, { touches: 0, targetTouches: 0, @@ -2694,10 +2694,10 @@ function Nb() { Er = null; h && "documentMode" in document && (Er = document.documentMode); var _1 = h && "TextEvent" in window && !Er, - qu = h && (!ds || (Er && 8 < Er && 11 >= Er)), - Wu = " ", - Ku = !1; - function Xu(e, r) { + Gu = h && (!ds || (Er && 8 < Er && 11 >= Er)), + qu = " ", + Wu = !1; + function Ku(e, r) { switch (e) { case "keyup": return y1.indexOf(r.keyCode) !== -1; @@ -2711,26 +2711,26 @@ function Nb() { return !1; } } - function Qu(e) { + function Xu(e) { return (e = e.detail), typeof e == "object" && "data" in e ? e.data : null; } var j0 = !1; function x1(e, r) { switch (e) { case "compositionend": - return Qu(r); + return Xu(r); case "keypress": - return r.which !== 32 ? null : ((Ku = !0), Wu); + return r.which !== 32 ? null : ((Wu = !0), qu); case "textInput": - return (e = r.data), e === Wu && Ku ? null : e; + return (e = r.data), e === qu && Wu ? null : e; default: return null; } } function S1(e, r) { if (j0) - return e === "compositionend" || (!ds && Xu(e, r)) - ? ((e = zu()), (Mo = as = jn = null), (j0 = !1), e) + return e === "compositionend" || (!ds && Ku(e, r)) + ? ((e = Du()), (Mo = as = jn = null), (j0 = !1), e) : null; switch (e) { case "paste": @@ -2742,7 +2742,7 @@ function Nb() { } return null; case "compositionend": - return qu && r.locale !== "ko" ? null : r.data; + return Gu && r.locale !== "ko" ? null : r.data; default: return null; } @@ -2764,12 +2764,12 @@ function Nb() { url: !0, week: !0, }; - function Yu(e) { + function Qu(e) { var r = e && e.nodeName && e.nodeName.toLowerCase(); return r === "input" ? !!w1[e.type] : r === "textarea"; } - function Zu(e, r, s, l) { - vu(l), + function Yu(e, r, s, l) { + bu(l), (r = Ho(r, "onChange")), 0 < r.length && ((s = new is("onChange", "change", null, s, l)), @@ -2778,7 +2778,7 @@ function Nb() { var Tr = null, jr = null; function k1(e) { - gd(e, 0); + md(e, 0); } function $o(e) { var r = N0(e); @@ -2787,33 +2787,33 @@ function Nb() { function C1(e, r) { if (e === "change") return r; } - var Ju = !1; + var Zu = !1; if (h) { var fs; if (h) { var ps = "oninput" in document; if (!ps) { - var ed = document.createElement("div"); - ed.setAttribute("oninput", "return;"), - (ps = typeof ed.oninput == "function"); + var Ju = document.createElement("div"); + Ju.setAttribute("oninput", "return;"), + (ps = typeof Ju.oninput == "function"); } fs = ps; } else fs = !1; - Ju = fs && (!document.documentMode || 9 < document.documentMode); + Zu = fs && (!document.documentMode || 9 < document.documentMode); } - function td() { - Tr && (Tr.detachEvent("onpropertychange", nd), (jr = Tr = null)); + function ed() { + Tr && (Tr.detachEvent("onpropertychange", td), (jr = Tr = null)); } - function nd(e) { + function td(e) { if (e.propertyName === "value" && $o(jr)) { var r = []; - Zu(r, jr, e, qi(e)), Su(k1, r); + Yu(r, jr, e, qi(e)), xu(k1, r); } } function P1(e, r, s) { e === "focusin" - ? (td(), (Tr = r), (jr = s), Tr.attachEvent("onpropertychange", nd)) - : e === "focusout" && td(); + ? (ed(), (Tr = r), (jr = s), Tr.attachEvent("onpropertychange", td)) + : e === "focusout" && ed(); } function O1(e) { if (e === "selectionchange" || e === "keyup" || e === "keydown") @@ -2847,12 +2847,12 @@ function Nb() { } return !0; } - function rd(e) { + function nd(e) { for (; e && e.firstChild; ) e = e.firstChild; return e; } - function od(e, r) { - var s = rd(e); + function rd(e, r) { + var s = nd(e); e = 0; for (var l; s; ) { if (s.nodeType === 3) { @@ -2870,17 +2870,17 @@ function Nb() { } s = void 0; } - s = rd(s); + s = nd(s); } } - function ad(e, r) { + function od(e, r) { return e && r ? e === r ? !0 : e && e.nodeType === 3 ? !1 : r && r.nodeType === 3 - ? ad(e, r.parentNode) + ? od(e, r.parentNode) : "contains" in e ? e.contains(r) : e.compareDocumentPosition @@ -2888,7 +2888,7 @@ function Nb() { : !1 : !1; } - function id() { + function ad() { for (var e = window, r = w0(); r instanceof e.HTMLIFrameElement; ) { try { var s = typeof r.contentWindow.location.href == "string"; @@ -2916,14 +2916,14 @@ function Nb() { ); } function I1(e) { - var r = id(), + var r = ad(), s = e.focusedElem, l = e.selectionRange; if ( r !== s && s && s.ownerDocument && - ad(s.ownerDocument.documentElement, s) + od(s.ownerDocument.documentElement, s) ) { if (l !== null && hs(s)) { if ( @@ -2943,8 +2943,8 @@ function Nb() { p = Math.min(l.start, u); (l = l.end === void 0 ? p : Math.min(l.end, u)), !e.extend && p > l && ((u = l), (l = p), (p = u)), - (u = od(s, p)); - var g = od(s, l); + (u = rd(s, p)); + var g = rd(s, l); u && g && (e.rangeCount !== 1 || @@ -2974,7 +2974,7 @@ function Nb() { ms = null, Fr = null, gs = !1; - function sd(e, r, s) { + function id(e, r, s) { var l = s.window === s ? s.document : s.nodeType === 9 ? s : s.ownerDocument; gs || @@ -3017,9 +3017,9 @@ function Nb() { transitionend: Ao("Transition", "TransitionEnd"), }, bs = {}, - ld = {}; + sd = {}; h && - ((ld = document.createElement("div").style), + ((sd = document.createElement("div").style), "AnimationEvent" in window || (delete F0.animationend.animation, delete F0.animationiteration.animation, @@ -3030,34 +3030,34 @@ function Nb() { if (!F0[e]) return e; var r = F0[e], s; - for (s in r) if (r.hasOwnProperty(s) && s in ld) return (bs[e] = r[s]); + for (s in r) if (r.hasOwnProperty(s) && s in sd) return (bs[e] = r[s]); return e; } - var cd = Do("animationend"), - ud = Do("animationiteration"), - dd = Do("animationstart"), - fd = Do("transitionend"), - pd = new Map(), - hd = + var ld = Do("animationend"), + cd = Do("animationiteration"), + ud = Do("animationstart"), + dd = Do("transitionend"), + fd = new Map(), + pd = "abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split( " ", ); function In(e, r) { - pd.set(e, r), c(r, [e]); + fd.set(e, r), c(r, [e]); } - for (var vs = 0; vs < hd.length; vs++) { - var ys = hd[vs], + for (var vs = 0; vs < pd.length; vs++) { + var ys = pd[vs], R1 = ys.toLowerCase(), M1 = ys[0].toUpperCase() + ys.slice(1); In(R1, "on" + M1); } - In(cd, "onAnimationEnd"), - In(ud, "onAnimationIteration"), - In(dd, "onAnimationStart"), + In(ld, "onAnimationEnd"), + In(cd, "onAnimationIteration"), + In(ud, "onAnimationStart"), In("dblclick", "onDoubleClick"), In("focusin", "onFocus"), In("focusout", "onBlur"), - In(fd, "onTransitionEnd"), + In(dd, "onTransitionEnd"), d("onMouseEnter", ["mouseout", "mouseover"]), d("onMouseLeave", ["mouseout", "mouseover"]), d("onPointerEnter", ["pointerout", "pointerover"]), @@ -3094,11 +3094,11 @@ function Nb() { N1 = new Set( "cancel close invalid load scroll toggle".split(" ").concat(Rr), ); - function md(e, r, s) { + function hd(e, r, s) { var l = e.type || "unknown-event"; (e.currentTarget = s), Rg(l, r, void 0, e), (e.currentTarget = null); } - function gd(e, r) { + function md(e, r) { r = (r & 4) !== 0; for (var s = 0; s < e.length; s++) { var l = e[s], @@ -3113,7 +3113,7 @@ function Nb() { M = _.currentTarget; if (((_ = _.listener), k !== p && u.isPropagationStopped())) break e; - md(u, _, M), (p = k); + hd(u, _, M), (p = k); } else for (g = 0; g < l.length; g++) { @@ -3125,7 +3125,7 @@ function Nb() { k !== p && u.isPropagationStopped()) ) break e; - md(u, _, M), (p = k); + hd(u, _, M), (p = k); } } } @@ -3135,11 +3135,11 @@ function Nb() { var s = r[Os]; s === void 0 && (s = r[Os] = new Set()); var l = e + "__bubble"; - s.has(l) || (bd(r, e, 2, !1), s.add(l)); + s.has(l) || (gd(r, e, 2, !1), s.add(l)); } function _s(e, r, s) { var l = 0; - r && (l |= 4), bd(s, e, l, r); + r && (l |= 4), gd(s, e, l, r); } var zo = "_reactListening" + Math.random().toString(36).slice(2); function Mr(e) { @@ -3152,8 +3152,8 @@ function Nb() { r === null || r[zo] || ((r[zo] = !0), _s("selectionchange", !1, r)); } } - function bd(e, r, s, l) { - switch (Du(r)) { + function gd(e, r, s, l) { + switch (Au(r)) { case 1: var u = Xg; break; @@ -3207,12 +3207,12 @@ function Nb() { } l = l.return; } - Su(function () { + xu(function () { var M = p, z = qi(s), H = []; e: { - var D = pd.get(e); + var D = fd.get(e); if (D !== void 0) { var X = is, Z = e; @@ -3243,7 +3243,7 @@ function Nb() { case "mouseout": case "mouseover": case "contextmenu": - X = Vu; + X = Hu; break; case "drag": case "dragend": @@ -3261,12 +3261,12 @@ function Nb() { case "touchstart": X = h1; break; + case ld: case cd: case ud: - case dd: X = n1; break; - case fd: + case dd: X = g1; break; case "scroll": @@ -3288,7 +3288,7 @@ function Nb() { case "pointerout": case "pointerover": case "pointerup": - X = Gu; + X = Uu; } var J = (r & 4) !== 0, We = !J && e === "scroll", @@ -3342,12 +3342,12 @@ function Nb() { X !== Z) ) { if ( - ((J = Vu), + ((J = Hu), (G = "onMouseLeave"), (I = "onMouseEnter"), (E = "mouse"), (e === "pointerout" || e === "pointerover") && - ((J = Gu), + ((J = Uu), (G = "onPointerLeave"), (I = "onPointerEnter"), (E = "pointer")), @@ -3377,8 +3377,8 @@ function Nb() { J = null; } else J = null; - X !== null && vd(H, D, X, J, !1), - Z !== null && We !== null && vd(H, We, Z, J, !0); + X !== null && bd(H, D, X, J, !1), + Z !== null && We !== null && bd(H, We, Z, J, !0); } } e: { @@ -3388,8 +3388,8 @@ function Nb() { X === "select" || (X === "input" && D.type === "file")) ) var te = C1; - else if (Yu(D)) - if (Ju) te = T1; + else if (Qu(D)) + if (Zu) te = T1; else { te = O1; var oe = P1; @@ -3400,7 +3400,7 @@ function Nb() { (D.type === "checkbox" || D.type === "radio") && (te = E1); if (te && (te = te(e, M))) { - Zu(H, te, s, z); + Yu(H, te, s, z); break e; } oe && oe(e, D, M), @@ -3412,7 +3412,7 @@ function Nb() { } switch (((oe = M ? N0(M) : window), e)) { case "focusin": - (Yu(oe) || oe.contentEditable === "true") && + (Qu(oe) || oe.contentEditable === "true") && ((I0 = oe), (ms = M), (Fr = null)); break; case "focusout": @@ -3424,13 +3424,13 @@ function Nb() { case "contextmenu": case "mouseup": case "dragend": - (gs = !1), sd(H, s, z); + (gs = !1), id(H, s, z); break; case "selectionchange": if (F1) break; case "keydown": case "keyup": - sd(H, s, z); + id(H, s, z); } var ae; if (ds) @@ -3450,33 +3450,33 @@ function Nb() { } else j0 - ? Xu(e, s) && (de = "onCompositionEnd") + ? Ku(e, s) && (de = "onCompositionEnd") : e === "keydown" && s.keyCode === 229 && (de = "onCompositionStart"); de && - (qu && + (Gu && s.locale !== "ko" && (j0 || de !== "onCompositionStart" - ? de === "onCompositionEnd" && j0 && (ae = zu()) + ? de === "onCompositionEnd" && j0 && (ae = Du()) : ((jn = z), (as = "value" in jn ? jn.value : jn.textContent), (j0 = !0))), (oe = Ho(M, de)), 0 < oe.length && - ((de = new Uu(de, e, null, s, z)), + ((de = new Vu(de, e, null, s, z)), H.push({ event: de, listeners: oe }), ae ? (de.data = ae) - : ((ae = Qu(s)), ae !== null && (de.data = ae)))), + : ((ae = Xu(s)), ae !== null && (de.data = ae)))), (ae = _1 ? x1(e, s) : S1(e, s)) && ((M = Ho(M, "onBeforeInput")), 0 < M.length && - ((z = new Uu("onBeforeInput", "beforeinput", null, s, z)), + ((z = new Vu("onBeforeInput", "beforeinput", null, s, z)), H.push({ event: z, listeners: M }), (z.data = ae))); } - gd(H, r); + md(H, r); }); } function Nr(e, r, s) { @@ -3503,7 +3503,7 @@ function Nb() { while (e && e.tag !== 5); return e || null; } - function vd(e, r, s, l, u) { + function bd(e, r, s, l, u) { for (var p = r._reactName, g = []; s !== null && s !== l; ) { var _ = s, k = _.alternate, @@ -3521,7 +3521,7 @@ function Nb() { } var B1 = /\r\n?/g, L1 = /\u0000|\uFFFD/g; - function yd(e) { + function vd(e) { return (typeof e == "string" ? e : "" + e) .replace( B1, @@ -3531,7 +3531,7 @@ function Nb() { .replace(L1, ""); } function Vo(e, r, s) { - if (((r = yd(r)), yd(e) !== r && s)) throw Error(o(425)); + if (((r = vd(r)), vd(e) !== r && s)) throw Error(o(425)); } function Uo() {} var Ss = null, @@ -3549,13 +3549,13 @@ function Nb() { } var Cs = typeof setTimeout == "function" ? setTimeout : void 0, $1 = typeof clearTimeout == "function" ? clearTimeout : void 0, - _d = typeof Promise == "function" ? Promise : void 0, + yd = typeof Promise == "function" ? Promise : void 0, A1 = typeof queueMicrotask == "function" ? queueMicrotask - : typeof _d < "u" + : typeof yd < "u" ? function (e) { - return _d.resolve(null).then(e).catch(D1); + return yd.resolve(null).then(e).catch(D1); } : Cs; function D1(e) { @@ -3591,7 +3591,7 @@ function Nb() { } return e; } - function xd(e) { + function _d(e) { e = e.previousSibling; for (var r = 0; e; ) { if (e.nodeType === 8) { @@ -3621,9 +3621,9 @@ function Nb() { ((s = r.alternate), r.child !== null || (s !== null && s.child !== null)) ) - for (e = xd(e); e !== null; ) { + for (e = _d(e); e !== null; ) { if ((s = e[nn])) return s; - e = xd(e); + e = _d(e); } return r; } @@ -3684,11 +3684,11 @@ function Nb() { function qo() { $e(xt), $e(ct); } - function Sd(e, r, s) { + function xd(e, r, s) { if (ct.current !== Mn) throw Error(o(168)); Ne(ct, r), Ne(xt, s); } - function wd(e, r, s) { + function Sd(e, r, s) { var l = e.stateNode; if (((r = r.childContextTypes), typeof l.getChildContext != "function")) return s; @@ -3707,11 +3707,11 @@ function Nb() { !0 ); } - function kd(e, r, s) { + function wd(e, r, s) { var l = e.stateNode; if (!l) throw Error(o(169)); s - ? ((e = wd(e, r, e0)), + ? ((e = Sd(e, r, e0)), (l.__reactInternalMemoizedMergedChildContext = e), $e(xt), $e(ct), @@ -3722,11 +3722,11 @@ function Nb() { var pn = null, Ko = !1, Ts = !1; - function Cd(e) { + function kd(e) { pn === null ? (pn = [e]) : pn.push(e); } function V1(e) { - (Ko = !0), Cd(e); + (Ko = !0), kd(e); } function Nn() { if (!Ts && pn !== null) { @@ -3742,7 +3742,7 @@ function Nb() { } (pn = null), (Ko = !1); } catch (u) { - throw (pn !== null && (pn = pn.slice(e + 1)), Ou(Yi, Nn), u); + throw (pn !== null && (pn = pn.slice(e + 1)), Pu(Yi, Nn), u); } finally { (Fe = r), (Ts = !1); } @@ -3761,7 +3761,7 @@ function Nb() { function n0(e, r) { ($0[A0++] = Qo), ($0[A0++] = Xo), (Xo = e), (Qo = r); } - function Pd(e, r, s) { + function Cd(e, r, s) { (Lt[$t++] = hn), (Lt[$t++] = mn), (Lt[$t++] = t0), (t0 = e); var l = hn; e = mn; @@ -3778,7 +3778,7 @@ function Nb() { } else (hn = (1 << p) | (s << u) | l), (mn = e); } function js(e) { - e.return !== null && (n0(e, 1), Pd(e, 1, 0)); + e.return !== null && (n0(e, 1), Cd(e, 1, 0)); } function Is(e) { for (; e === Xo; ) @@ -3795,7 +3795,7 @@ function Nb() { It = null, De = !1, Kt = null; - function Od(e, r) { + function Pd(e, r) { var s = Ht(5, null, null, 0); (s.elementType = "DELETED"), (s.stateNode = r), @@ -3803,7 +3803,7 @@ function Nb() { (r = e.deletions), r === null ? ((e.deletions = [s]), (e.flags |= 16)) : r.push(s); } - function Ed(e, r) { + function Od(e, r) { switch (e.tag) { case 5: var s = e.type; @@ -3852,12 +3852,12 @@ function Nb() { var r = It; if (r) { var s = r; - if (!Ed(e, r)) { + if (!Od(e, r)) { if (Fs(e)) throw Error(o(418)); r = Fn(s.nextSibling); var l = jt; - r && Ed(e, r) - ? Od(l, s) + r && Od(e, r) + ? Pd(l, s) : ((e.flags = (e.flags & -4097) | 2), (De = !1), (jt = e)); } } else { @@ -3866,7 +3866,7 @@ function Nb() { } } } - function Td(e) { + function Ed(e) { for ( e = e.return; e !== null && e.tag !== 5 && e.tag !== 3 && e.tag !== 13; @@ -3877,7 +3877,7 @@ function Nb() { } function Yo(e) { if (e !== jt) return !1; - if (!De) return Td(e), (De = !0), !1; + if (!De) return Ed(e), (De = !0), !1; var r; if ( ((r = e.tag !== 3) && @@ -3886,10 +3886,10 @@ function Nb() { (r = r !== "head" && r !== "body" && !ks(e.type, e.memoizedProps))), r && (r = It)) ) { - if (Fs(e)) throw (jd(), Error(o(418))); - for (; r; ) Od(e, r), (r = Fn(r.nextSibling)); + if (Fs(e)) throw (Td(), Error(o(418))); + for (; r; ) Pd(e, r), (r = Fn(r.nextSibling)); } - if ((Td(e), e.tag === 13)) { + if ((Ed(e), e.tag === 13)) { if (((e = e.memoizedState), (e = e !== null ? e.dehydrated : null), !e)) throw Error(o(317)); e: { @@ -3911,7 +3911,7 @@ function Nb() { } else It = jt ? Fn(e.stateNode.nextSibling) : null; return !0; } - function jd() { + function Td() { for (var e = It; e; ) e = Fn(e.nextSibling); } function D0() { @@ -3974,7 +3974,7 @@ function Nb() { function As(e) { r0 === null ? (r0 = [e]) : r0.push(e); } - function Id(e, r, s, l) { + function jd(e, r, s, l) { var u = r.interleaved; return ( u === null ? ((s.next = s), As(r)) : ((s.next = u.next), (u.next = s)), @@ -4003,7 +4003,7 @@ function Nb() { effects: null, }; } - function Fd(e, r) { + function Id(e, r) { (e = e.updateQueue), r.updateQueue === e && (r.updateQueue = { @@ -4050,7 +4050,7 @@ function Nb() { (l &= e.pendingLanes), (s |= l), (r.lanes = s), es(e, s); } } - function Rd(e, r) { + function Fd(e, r) { var s = e.updateQueue, l = e.alternate; if (l !== null && ((l = l.updateQueue), s === l)) { @@ -4186,7 +4186,7 @@ function Nb() { (i0 |= g), (e.lanes = g), (e.memoizedState = H); } } - function Md(e, r, s) { + function Rd(e, r, s) { if (((e = r.effects), (r.effects = null), e !== null)) for (r = 0; r < e.length; r++) { var l = e[r], @@ -4198,7 +4198,7 @@ function Nb() { } } } - var Nd = new n.Component().refs; + var Md = new n.Component().refs; function zs(e, r, s, l) { (r = e.memoizedState), (s = s(l, r)), @@ -4242,7 +4242,7 @@ function Nb() { r !== null && (Zt(r, e, l, s), ea(r, e, l)); }, }; - function Bd(e, r, s, l, u, p, g) { + function Nd(e, r, s, l, u, p, g) { return ( (e = e.stateNode), typeof e.shouldComponentUpdate == "function" @@ -4252,7 +4252,7 @@ function Nb() { : !0 ); } - function Ld(e, r, s) { + function Bd(e, r, s) { var l = !1, u = Mn, p = r.contextType; @@ -4275,7 +4275,7 @@ function Nb() { r ); } - function $d(e, r, s, l) { + function Ld(e, r, s, l) { (e = r.state), typeof r.componentWillReceiveProps == "function" && r.componentWillReceiveProps(s, l), @@ -4285,7 +4285,7 @@ function Nb() { } function Hs(e, r, s, l) { var u = e.stateNode; - (u.props = s), (u.state = e.memoizedState), (u.refs = Nd), Ds(e); + (u.props = s), (u.state = e.memoizedState), (u.refs = Md), Ds(e); var p = r.contextType; typeof p == "object" && p !== null ? (u.context = At(p)) @@ -4326,7 +4326,7 @@ function Nb() { ? r.ref : ((r = function (g) { var _ = u.refs; - _ === Nd && (_ = u.refs = {}), + _ === Md && (_ = u.refs = {}), g === null ? delete _[p] : (_[p] = g); }), (r._stringRef = p), @@ -4350,11 +4350,11 @@ function Nb() { )) ); } - function Ad(e) { + function $d(e) { var r = e._init; return r(e._payload); } - function Dd(e) { + function Ad(e) { function r(I, E) { if (e) { var F = I.deletions; @@ -4402,7 +4402,7 @@ function Nb() { (typeof te == "object" && te !== null && te.$$typeof === he && - Ad(te) === E.type)) + $d(te) === E.type)) ? ((G = u(E, F.props)), (G.ref = $r(I, E, F)), (G.return = I), G) : ((G = Sa(F.type, F.key, F.props, null, I.mode, G)), (G.ref = $r(I, E, F)), @@ -4608,7 +4608,7 @@ function Nb() { (typeof te == "object" && te !== null && te.$$typeof === he && - Ad(te) === oe.type) + $d(te) === oe.type) ) { s(I, oe.sibling), (E = u(oe, F.props)), @@ -4673,8 +4673,8 @@ function Nb() { } return We; } - var V0 = Dd(!0), - zd = Dd(!1), + var V0 = Ad(!0), + Dd = Ad(!1), Ar = {}, rn = Rn(Ar), Dr = Rn(Ar), @@ -4700,7 +4700,7 @@ function Nb() { function U0() { $e(rn), $e(Dr), $e(zr); } - function Hd(e) { + function zd(e) { o0(zr.current); var r = o0(rn.current), s = Hi(r, e.type); @@ -4910,8 +4910,8 @@ function Nb() { } return [p, l]; } - function Vd() {} - function Ud(e, r) { + function Hd() {} + function Vd(e, r) { var s = He, l = Dt(), u = r(), @@ -4919,20 +4919,20 @@ function Nb() { if ( (p && ((l.memoizedState = u), (wt = !0)), (l = l.queue), - Js(Wd.bind(null, s, l, e), [e]), + Js(qd.bind(null, s, l, e), [e]), l.getSnapshot !== r || p || (tt !== null && tt.memoizedState.tag & 1)) ) { if ( ((s.flags |= 2048), - Gr(9, qd.bind(null, s, l, u, r), void 0, null), + Gr(9, Gd.bind(null, s, l, u, r), void 0, null), nt === null) ) throw Error(o(349)); - (a0 & 30) !== 0 || Gd(s, r, u); + (a0 & 30) !== 0 || Ud(s, r, u); } return u; } - function Gd(e, r, s) { + function Ud(e, r, s) { (e.flags |= 16384), (e = { getSnapshot: r, value: s }), (r = He.updateQueue), @@ -4942,15 +4942,15 @@ function Nb() { (r.stores = [e])) : ((s = r.stores), s === null ? (r.stores = [e]) : s.push(e)); } - function qd(e, r, s, l) { - (r.value = s), (r.getSnapshot = l), Kd(r) && Xd(e); + function Gd(e, r, s, l) { + (r.value = s), (r.getSnapshot = l), Wd(r) && Kd(e); } - function Wd(e, r, s) { + function qd(e, r, s) { return s(function () { - Kd(r) && Xd(e); + Wd(r) && Kd(e); }); } - function Kd(e) { + function Wd(e) { var r = e.getSnapshot; e = e.value; try { @@ -4960,11 +4960,11 @@ function Nb() { return !0; } } - function Xd(e) { + function Kd(e) { var r = gn(e, 1); r !== null && Zt(r, e, 1, -1); } - function Qd(e) { + function Xd(e) { var r = on(); return ( typeof e == "function" && (e = e()), @@ -4997,7 +4997,7 @@ function Nb() { e ); } - function Yd() { + function Qd() { return Dt().memoizedState; } function sa(e, r, s, l) { @@ -5018,19 +5018,19 @@ function Nb() { } (He.flags |= e), (u.memoizedState = Gr(1 | r, s, p, l)); } - function Zd(e, r) { + function Yd(e, r) { return sa(8390656, 8, e, r); } function Js(e, r) { return la(2048, 8, e, r); } - function Jd(e, r) { + function Zd(e, r) { return la(4, 2, e, r); } - function ef(e, r) { + function Jd(e, r) { return la(4, 4, e, r); } - function tf(e, r) { + function ef(e, r) { if (typeof r == "function") return ( (e = e()), @@ -5048,13 +5048,13 @@ function Nb() { } ); } - function nf(e, r, s) { + function tf(e, r, s) { return ( - (s = s != null ? s.concat([e]) : null), la(4, 4, tf.bind(null, r, e), s) + (s = s != null ? s.concat([e]) : null), la(4, 4, ef.bind(null, r, e), s) ); } function el() {} - function rf(e, r) { + function nf(e, r) { var s = Dt(); r = r === void 0 ? null : r; var l = s.memoizedState; @@ -5062,7 +5062,7 @@ function Nb() { ? l[0] : ((s.memoizedState = [e, r]), e); } - function of(e, r) { + function rf(e, r) { var s = Dt(); r = r === void 0 ? null : r; var l = s.memoizedState; @@ -5070,11 +5070,11 @@ function Nb() { ? l[0] : ((e = e()), (s.memoizedState = [e, r]), e); } - function af(e, r, s) { + function of(e, r, s) { return (a0 & 21) === 0 ? (e.baseState && ((e.baseState = !1), (wt = !0)), (e.memoizedState = s)) : (Wt(s, r) || - ((s = Iu()), (He.lanes |= s), (i0 |= s), (e.baseState = !0)), + ((s = ju()), (He.lanes |= s), (i0 |= s), (e.baseState = !0)), r); } function q1(e, r) { @@ -5088,7 +5088,7 @@ function Nb() { (Fe = s), (Ws.transition = l); } } - function sf() { + function af() { return Dt().memoizedState; } function W1(e, r, s) { @@ -5101,12 +5101,12 @@ function Nb() { eagerState: null, next: null, }), - lf(e)) + sf(e)) ) - cf(r, s); - else if (((s = Id(e, r, s, l)), s !== null)) { + lf(r, s); + else if (((s = jd(e, r, s, l)), s !== null)) { var u = vt(); - Zt(s, e, l, u), uf(s, r, l); + Zt(s, e, l, u), cf(s, r, l); } } function K1(e, r, s) { @@ -5118,7 +5118,7 @@ function Nb() { eagerState: null, next: null, }; - if (lf(e)) cf(r, u); + if (sf(e)) lf(r, u); else { var p = e.alternate; if ( @@ -5140,21 +5140,21 @@ function Nb() { } catch { } finally { } - (s = Id(e, r, u, l)), - s !== null && ((u = vt()), Zt(s, e, l, u), uf(s, r, l)); + (s = jd(e, r, u, l)), + s !== null && ((u = vt()), Zt(s, e, l, u), cf(s, r, l)); } } - function lf(e) { + function sf(e) { var r = e.alternate; return e === He || (r !== null && r === He); } - function cf(e, r) { + function lf(e, r) { Hr = ia = !0; var s = e.pending; s === null ? (r.next = r) : ((r.next = s.next), (s.next = r)), (e.pending = r); } - function uf(e, r, s) { + function cf(e, r, s) { if ((s & 4194240) !== 0) { var l = r.lanes; (l &= e.pendingLanes), (s |= l), (r.lanes = s), es(e, s); @@ -5186,11 +5186,11 @@ function Nb() { return (on().memoizedState = [e, r === void 0 ? null : r]), e; }, useContext: At, - useEffect: Zd, + useEffect: Yd, useImperativeHandle: function (e, r, s) { return ( (s = s != null ? s.concat([e]) : null), - sa(4194308, 4, tf.bind(null, r, e), s) + sa(4194308, 4, ef.bind(null, r, e), s) ); }, useLayoutEffect: function (e, r) { @@ -5230,13 +5230,13 @@ function Nb() { var r = on(); return (e = { current: e }), (r.memoizedState = e); }, - useState: Qd, + useState: Xd, useDebugValue: el, useDeferredValue: function (e) { return (on().memoizedState = e); }, useTransition: function () { - var e = Qd(!1), + var e = Xd(!1), r = e[0]; return (e = q1.bind(null, e[1])), (on().memoizedState = e), [r, e]; }, @@ -5249,15 +5249,15 @@ function Nb() { s = s(); } else { if (((s = r()), nt === null)) throw Error(o(349)); - (a0 & 30) !== 0 || Gd(l, r, s); + (a0 & 30) !== 0 || Ud(l, r, s); } u.memoizedState = s; var p = { value: s, getSnapshot: r }; return ( (u.queue = p), - Zd(Wd.bind(null, l, p, e), [e]), + Yd(qd.bind(null, l, p, e), [e]), (l.flags |= 2048), - Gr(9, qd.bind(null, l, p, s, r), void 0, null), + Gr(9, Gd.bind(null, l, p, s, r), void 0, null), s ); }, @@ -5279,60 +5279,60 @@ function Nb() { }, Q1 = { readContext: At, - useCallback: rf, + useCallback: nf, useContext: At, useEffect: Js, - useImperativeHandle: nf, - useInsertionEffect: Jd, - useLayoutEffect: ef, - useMemo: of, + useImperativeHandle: tf, + useInsertionEffect: Zd, + useLayoutEffect: Jd, + useMemo: rf, useReducer: Ys, - useRef: Yd, + useRef: Qd, useState: function () { return Ys(Ur); }, useDebugValue: el, useDeferredValue: function (e) { var r = Dt(); - return af(r, Ze.memoizedState, e); + return of(r, Ze.memoizedState, e); }, useTransition: function () { var e = Ys(Ur)[0], r = Dt().memoizedState; return [e, r]; }, - useMutableSource: Vd, - useSyncExternalStore: Ud, - useId: sf, + useMutableSource: Hd, + useSyncExternalStore: Vd, + useId: af, unstable_isNewReconciler: !1, }, Y1 = { readContext: At, - useCallback: rf, + useCallback: nf, useContext: At, useEffect: Js, - useImperativeHandle: nf, - useInsertionEffect: Jd, - useLayoutEffect: ef, - useMemo: of, + useImperativeHandle: tf, + useInsertionEffect: Zd, + useLayoutEffect: Jd, + useMemo: rf, useReducer: Zs, - useRef: Yd, + useRef: Qd, useState: function () { return Zs(Ur); }, useDebugValue: el, useDeferredValue: function (e) { var r = Dt(); - return Ze === null ? (r.memoizedState = e) : af(r, Ze.memoizedState, e); + return Ze === null ? (r.memoizedState = e) : of(r, Ze.memoizedState, e); }, useTransition: function () { var e = Zs(Ur)[0], r = Dt().memoizedState; return [e, r]; }, - useMutableSource: Vd, - useSyncExternalStore: Ud, - useId: sf, + useMutableSource: Hd, + useSyncExternalStore: Vd, + useId: af, unstable_isNewReconciler: !1, }; function G0(e, r) { @@ -5366,7 +5366,7 @@ Error generating stack: ` + } } var Z1 = typeof WeakMap == "function" ? WeakMap : Map; - function df(e, r, s) { + function uf(e, r, s) { (s = bn(-1, s)), (s.tag = 3), (s.payload = { element: null }); var l = r.value; return ( @@ -5376,7 +5376,7 @@ Error generating stack: ` + s ); } - function ff(e, r, s) { + function df(e, r, s) { (s = bn(-1, s)), (s.tag = 3); var l = e.type.getDerivedStateFromError; if (typeof l == "function") { @@ -5404,7 +5404,7 @@ Error generating stack: ` + s ); } - function pf(e, r, s) { + function ff(e, r, s) { var l = e.pingCache; if (l === null) { l = e.pingCache = new Z1(); @@ -5413,7 +5413,7 @@ Error generating stack: ` + } else (u = l.get(r)), u === void 0 && ((u = new Set()), l.set(r, u)); u.has(s) || (u.add(s), (e = fb.bind(null, e, r, s)), r.then(e, e)); } - function hf(e) { + function pf(e) { do { var r; if ( @@ -5427,7 +5427,7 @@ Error generating stack: ` + } while (e !== null); return null; } - function mf(e, r, s, l, u) { + function hf(e, r, s, l, u) { return (e.mode & 1) === 0 ? (e === r ? (e.flags |= 65536) @@ -5445,9 +5445,9 @@ Error generating stack: ` + var J1 = L.ReactCurrentOwner, wt = !1; function bt(e, r, s, l) { - r.child = e === null ? zd(r, null, s, l) : V0(r, e.child, s, l); + r.child = e === null ? Dd(r, null, s, l) : V0(r, e.child, s, l); } - function gf(e, r, s, l, u) { + function mf(e, r, s, l, u) { s = s.render; var p = r.ref; return ( @@ -5462,7 +5462,7 @@ Error generating stack: ` + : (De && s && js(r), (r.flags |= 1), bt(e, r, l, u), r.child) ); } - function bf(e, r, s, l, u) { + function gf(e, r, s, l, u) { if (e === null) { var p = s.type; return typeof p == "function" && @@ -5470,7 +5470,7 @@ Error generating stack: ` + p.defaultProps === void 0 && s.compare === null && s.defaultProps === void 0 - ? ((r.tag = 15), (r.type = p), vf(e, r, p, l, u)) + ? ((r.tag = 15), (r.type = p), bf(e, r, p, l, u)) : ((e = Sa(s.type, null, l, r, r.mode, u)), (e.ref = r.ref), (e.return = r), @@ -5491,7 +5491,7 @@ Error generating stack: ` + (r.child = e) ); } - function vf(e, r, s, l, u) { + function bf(e, r, s, l, u) { if (e !== null) { var p = e.memoizedProps; if (Ir(p, l) && e.ref === r.ref) @@ -5501,7 +5501,7 @@ Error generating stack: ` + } return rl(e, r, s, l, u); } - function yf(e, r, s) { + function vf(e, r, s) { var l = r.pendingProps, u = l.children, p = e !== null ? e.memoizedState : null; @@ -5544,7 +5544,7 @@ Error generating stack: ` + (Ft |= l); return bt(e, r, u, s), r.child; } - function _f(e, r) { + function yf(e, r) { var s = r.ref; ((e === null && s !== null) || (e !== null && e.ref !== s)) && ((r.flags |= 512), (r.flags |= 2097152)); @@ -5564,13 +5564,13 @@ Error generating stack: ` + : (De && l && js(r), (r.flags |= 1), bt(e, r, s, u), r.child) ); } - function xf(e, r, s, l, u) { + function _f(e, r, s, l, u) { if (St(s)) { var p = !0; Wo(r); } else p = !1; if ((H0(r, u), r.stateNode === null)) - da(e, r), Ld(r, s, l), Hs(r, s, l, u), (l = !0); + da(e, r), Bd(r, s, l), Hs(r, s, l, u), (l = !0); else if (e === null) { var g = r.stateNode, _ = r.memoizedProps; @@ -5587,7 +5587,7 @@ Error generating stack: ` + H || (typeof g.UNSAFE_componentWillReceiveProps != "function" && typeof g.componentWillReceiveProps != "function") || - ((_ !== l || k !== M) && $d(r, g, l, M)), + ((_ !== l || k !== M) && Ld(r, g, l, M)), (Bn = !1); var D = r.memoizedState; (g.state = D), @@ -5595,7 +5595,7 @@ Error generating stack: ` + (k = r.memoizedState), _ !== l || D !== k || xt.current || Bn ? (typeof z == "function" && (zs(r, s, z, l), (k = r.memoizedState)), - (_ = Bn || Bd(r, s, _, l, D, k, M)) + (_ = Bn || Nd(r, s, _, l, D, k, M)) ? (H || (typeof g.UNSAFE_componentWillMount != "function" && typeof g.componentWillMount != "function") || @@ -5617,7 +5617,7 @@ Error generating stack: ` + (l = !1)); } else { (g = r.stateNode), - Fd(e, r), + Id(e, r), (_ = r.memoizedProps), (M = r.type === r.elementType ? _ : Xt(r.type, _)), (g.props = M), @@ -5633,7 +5633,7 @@ Error generating stack: ` + typeof g.getSnapshotBeforeUpdate == "function") || (typeof g.UNSAFE_componentWillReceiveProps != "function" && typeof g.componentWillReceiveProps != "function") || - ((_ !== H || D !== k) && $d(r, g, l, k)), + ((_ !== H || D !== k) && Ld(r, g, l, k)), (Bn = !1), (D = r.memoizedState), (g.state = D), @@ -5641,7 +5641,7 @@ Error generating stack: ` + var Z = r.memoizedState; _ !== H || D !== Z || xt.current || Bn ? (typeof X == "function" && (zs(r, s, X, l), (Z = r.memoizedState)), - (M = Bn || Bd(r, s, M, l, D, Z, k) || !1) + (M = Bn || Nd(r, s, M, l, D, Z, k) || !1) ? (z || (typeof g.UNSAFE_componentWillUpdate != "function" && typeof g.componentWillUpdate != "function") || @@ -5675,9 +5675,9 @@ Error generating stack: ` + return ol(e, r, s, l, p, u); } function ol(e, r, s, l, u, p) { - _f(e, r); + yf(e, r); var g = (r.flags & 128) !== 0; - if (!l && !g) return u && kd(r, s, !1), vn(e, r, p); + if (!l && !g) return u && wd(r, s, !1), vn(e, r, p); (l = r.stateNode), (J1.current = r); var _ = g && typeof s.getDerivedStateFromError != "function" ? null : l.render(); @@ -5687,25 +5687,25 @@ Error generating stack: ` + ? ((r.child = V0(r, e.child, null, p)), (r.child = V0(r, null, _, p))) : bt(e, r, _, p), (r.memoizedState = l.state), - u && kd(r, s, !0), + u && wd(r, s, !0), r.child ); } - function Sf(e) { + function xf(e) { var r = e.stateNode; r.pendingContext - ? Sd(e, r.pendingContext, r.pendingContext !== r.context) - : r.context && Sd(e, r.context, !1), + ? xd(e, r.pendingContext, r.pendingContext !== r.context) + : r.context && xd(e, r.context, !1), Vs(e, r.containerInfo); } - function wf(e, r, s, l, u) { + function Sf(e, r, s, l, u) { return D0(), Ms(u), (r.flags |= 256), bt(e, r, s, l), r.child; } var al = { dehydrated: null, treeContext: null, retryLane: 0 }; function il(e) { return { baseLanes: e, cachePool: null, transitions: null }; } - function kf(e, r, s) { + function wf(e, r, s) { var l = r.pendingProps, u = ze.current, p = !1, @@ -5908,7 +5908,7 @@ Error generating stack: ` + (r.flags |= 4096), r); } - function Cf(e, r, s) { + function kf(e, r, s) { e.lanes |= r; var l = e.alternate; l !== null && (l.lanes |= r), $s(e.return, r, s); @@ -5931,7 +5931,7 @@ Error generating stack: ` + (p.tail = s), (p.tailMode = u)); } - function Pf(e, r, s) { + function Cf(e, r, s) { var l = r.pendingProps, u = l.revealOrder, p = l.tail; @@ -5940,8 +5940,8 @@ Error generating stack: ` + else { if (e !== null && (e.flags & 128) !== 0) e: for (e = r.child; e !== null; ) { - if (e.tag === 13) e.memoizedState !== null && Cf(e, s, r); - else if (e.tag === 19) Cf(e, s, r); + if (e.tag === 13) e.memoizedState !== null && kf(e, s, r); + else if (e.tag === 19) kf(e, s, r); else if (e.child !== null) { (e.child.return = e), (e = e.child); continue; @@ -6016,10 +6016,10 @@ Error generating stack: ` + function tb(e, r, s) { switch (r.tag) { case 3: - Sf(r), D0(); + xf(r), D0(); break; case 5: - Hd(r); + zd(r); break; case 1: St(r.type) && Wo(r); @@ -6037,7 +6037,7 @@ Error generating stack: ` + return l.dehydrated !== null ? (Ne(ze, ze.current & 1), (r.flags |= 128), null) : (s & r.child.childLanes) !== 0 - ? kf(e, r, s) + ? wf(e, r, s) : (Ne(ze, ze.current & 1), (e = vn(e, r, s)), e !== null ? e.sibling : null); @@ -6045,7 +6045,7 @@ Error generating stack: ` + break; case 19: if (((l = (s & r.childLanes) !== 0), (e.flags & 128) !== 0)) { - if (l) return Pf(e, r, s); + if (l) return Cf(e, r, s); r.flags |= 128; } if ( @@ -6059,12 +6059,12 @@ Error generating stack: ` + return null; case 22: case 23: - return (r.lanes = 0), yf(e, r, s); + return (r.lanes = 0), vf(e, r, s); } return vn(e, r, s); } - var Of, cl, Ef, Tf; - (Of = function (e, r) { + var Pf, cl, Of, Ef; + (Pf = function (e, r) { for (var s = r.child; s !== null; ) { if (s.tag === 5 || s.tag === 6) e.appendChild(s.stateNode); else if (s.tag !== 4 && s.child !== null) { @@ -6080,7 +6080,7 @@ Error generating stack: ` + } }), (cl = function () {}), - (Ef = function (e, r, s, l) { + (Of = function (e, r, s, l) { var u = e.memoizedProps; if (u !== l) { (e = r.stateNode), o0(rn.current); @@ -6156,7 +6156,7 @@ Error generating stack: ` + (r.updateQueue = M) && (r.flags |= 4); } }), - (Tf = function (e, r, s, l) { + (Ef = function (e, r, s, l) { s !== l && (r.flags |= 4); }); function qr(e, r) { @@ -6238,7 +6238,7 @@ Error generating stack: ` + Us(r); var u = o0(zr.current); if (((s = r.type), e !== null && r.stateNode != null)) - Ef(e, r, s, l, u), + Of(e, r, s, l, u), e.ref !== r.ref && ((r.flags |= 512), (r.flags |= 2097152)); else { if (!l) { @@ -6280,7 +6280,7 @@ Error generating stack: ` + Le("invalid", l); break; case "textarea": - uu(l, p), Le("invalid", l); + cu(l, p), Le("invalid", l); } Vi(s, p), (u = null); for (var g in p) @@ -6304,10 +6304,10 @@ Error generating stack: ` + } switch (s) { case "input": - Bt(l), cu(l, p, !0); + Bt(l), lu(l, p, !0); break; case "textarea": - Bt(l), fu(l); + Bt(l), du(l); break; case "select": case "option": @@ -6318,7 +6318,7 @@ Error generating stack: ` + (l = u), (r.updateQueue = l), l !== null && (r.flags |= 4); } else { (g = u.nodeType === 9 ? u : u.ownerDocument), - e === "http://www.w3.org/1999/xhtml" && (e = pu(s)), + e === "http://www.w3.org/1999/xhtml" && (e = fu(s)), e === "http://www.w3.org/1999/xhtml" ? s === "script" ? ((e = g.createElement("div")), @@ -6335,7 +6335,7 @@ Error generating stack: ` + : (e = g.createElementNS(e, s)), (e[nn] = r), (e[Br] = l), - Of(e, r, !1, !1), + Pf(e, r, !1, !1), (r.stateNode = e); e: { switch (((g = Ui(s, l)), s)) { @@ -6375,7 +6375,7 @@ Error generating stack: ` + Le("invalid", e); break; case "textarea": - uu(e, l), (u = zi(e, l)), Le("invalid", e); + cu(e, l), (u = zi(e, l)), Le("invalid", e); break; default: u = l; @@ -6385,9 +6385,9 @@ Error generating stack: ` + if (_.hasOwnProperty(p)) { var k = _[p]; p === "style" - ? gu(e, k) + ? mu(e, k) : p === "dangerouslySetInnerHTML" - ? ((k = k ? k.__html : void 0), k != null && hu(e, k)) + ? ((k = k ? k.__html : void 0), k != null && pu(e, k)) : p === "children" ? typeof k == "string" ? (s !== "textarea" || k !== "") && hr(e, k) @@ -6401,10 +6401,10 @@ Error generating stack: ` + } switch (s) { case "input": - Bt(e), cu(e, l, !1); + Bt(e), lu(e, l, !1); break; case "textarea": - Bt(e), fu(e); + Bt(e), du(e); break; case "option": l.value != null && e.setAttribute("value", "" + fe(l.value)); @@ -6440,7 +6440,7 @@ Error generating stack: ` + } return dt(r), null; case 6: - if (e && r.stateNode != null) Tf(e, r, e.memoizedProps, l); + if (e && r.stateNode != null) Ef(e, r, e.memoizedProps, l); else { if (typeof l != "string" && r.stateNode === null) throw Error(o(166)); if (((s = o0(zr.current)), o0(rn.current), Yo(r))) { @@ -6473,7 +6473,7 @@ Error generating stack: ` + (e.memoizedState !== null && e.memoizedState.dehydrated !== null)) ) { if (De && It !== null && (r.mode & 1) !== 0 && (r.flags & 128) === 0) - jd(), D0(), (r.flags |= 98560), (p = !1); + Td(), D0(), (r.flags |= 98560), (p = !1); else if (((p = Yo(r)), l !== null && l.dehydrated !== null)) { if (e === null) { if (!p) throw Error(o(318)); @@ -6698,9 +6698,9 @@ Error generating stack: ` + Ve(e, r, l); } } - var jf = !1; + var Tf = !1; function ab(e, r) { - if (((Ss = Fo), (e = id()), hs(e))) { + if (((Ss = Fo), (e = ad()), hs(e))) { if ("selectionStart" in e) var s = { start: e.selectionStart, end: e.selectionEnd }; else @@ -6807,7 +6807,7 @@ Error generating stack: ` + } Y = r.return; } - return (Z = jf), (jf = !1), Z; + return (Z = Tf), (Tf = !1), Z; } function Wr(e, r, s) { var l = r.updateQueue; @@ -6850,9 +6850,9 @@ Error generating stack: ` + typeof r == "function" ? r(e) : (r.current = e); } } - function If(e) { + function jf(e) { var r = e.alternate; - r !== null && ((e.alternate = null), If(r)), + r !== null && ((e.alternate = null), jf(r)), (e.child = null), (e.deletions = null), (e.sibling = null), @@ -6873,13 +6873,13 @@ Error generating stack: ` + (e.stateNode = null), (e.updateQueue = null); } - function Ff(e) { + function If(e) { return e.tag === 5 || e.tag === 3 || e.tag === 4; } - function Rf(e) { + function Ff(e) { e: for (;;) { for (; e.sibling === null; ) { - if (e.return === null || Ff(e.return)) return null; + if (e.return === null || If(e.return)) return null; e = e.return; } for ( @@ -6921,9 +6921,9 @@ Error generating stack: ` + var it = null, Qt = !1; function $n(e, r, s) { - for (s = s.child; s !== null; ) Mf(e, r, s), (s = s.sibling); + for (s = s.child; s !== null; ) Rf(e, r, s), (s = s.sibling); } - function Mf(e, r, s) { + function Rf(e, r, s) { if (tn && typeof tn.onCommitFiberUnmount == "function") try { tn.onCommitFiberUnmount(Po, s); @@ -7014,7 +7014,7 @@ Error generating stack: ` + $n(e, r, s); } } - function Nf(e) { + function Mf(e) { var r = e.updateQueue; if (r !== null) { e.updateQueue = null; @@ -7050,7 +7050,7 @@ Error generating stack: ` + _ = _.return; } if (it === null) throw Error(o(160)); - Mf(p, g, u), (it = null), (Qt = !1); + Rf(p, g, u), (it = null), (Qt = !1); var k = u.alternate; k !== null && (k.return = null), (u.return = null); } catch (M) { @@ -7058,9 +7058,9 @@ Error generating stack: ` + } } if (r.subtreeFlags & 12854) - for (r = r.child; r !== null; ) Bf(r, e), (r = r.sibling); + for (r = r.child; r !== null; ) Nf(r, e), (r = r.sibling); } - function Bf(e, r) { + function Nf(e, r) { var s = e.alternate, l = e.flags; switch (e.tag) { @@ -7105,16 +7105,16 @@ Error generating stack: ` + k = e.updateQueue; if (((e.updateQueue = null), k !== null)) try { - _ === "input" && p.type === "radio" && p.name != null && lu(u, p), + _ === "input" && p.type === "radio" && p.name != null && su(u, p), Ui(_, g); var M = Ui(_, p); for (g = 0; g < k.length; g += 2) { var z = k[g], H = k[g + 1]; z === "style" - ? gu(u, H) + ? mu(u, H) : z === "dangerouslySetInnerHTML" - ? hu(u, H) + ? pu(u, H) : z === "children" ? hr(u, H) : R(u, z, H, M); @@ -7124,7 +7124,7 @@ Error generating stack: ` + Ai(u, p); break; case "textarea": - du(u, p); + uu(u, p); break; case "select": var D = u._wrapperState.wasMultiple; @@ -7177,7 +7177,7 @@ Error generating stack: ` + !p || (u.alternate !== null && u.alternate.memoizedState !== null) || (gl = qe())), - l & 4 && Nf(e); + l & 4 && Mf(e); break; case 22: if ( @@ -7219,11 +7219,11 @@ Error generating stack: ` + break; case 22: if (D.memoizedState !== null) { - Af(H); + $f(H); continue; } } - X !== null ? ((X.return = D), (Y = X)) : Af(H); + X !== null ? ((X.return = D), (Y = X)) : $f(H); } z = z.sibling; } @@ -7244,7 +7244,7 @@ Error generating stack: ` + k != null && k.hasOwnProperty("display") ? k.display : null), - (_.style.display = mu("display", g))); + (_.style.display = hu("display", g))); } catch (J) { Ve(e, e.return, J); } @@ -7277,7 +7277,7 @@ Error generating stack: ` + } break; case 19: - Yt(r, e), an(e), l & 4 && Nf(e); + Yt(r, e), an(e), l & 4 && Mf(e); break; case 21: break; @@ -7291,7 +7291,7 @@ Error generating stack: ` + try { e: { for (var s = e.return; s !== null; ) { - if (Ff(s)) { + if (If(s)) { var l = s; break e; } @@ -7303,13 +7303,13 @@ Error generating stack: ` + case 5: var u = l.stateNode; l.flags & 32 && (hr(u, ""), (l.flags &= -33)); - var p = Rf(e); + var p = Ff(e); pl(e, p, u); break; case 3: case 4: var g = l.stateNode.containerInfo, - _ = Rf(e); + _ = Ff(e); fl(e, _, g); break; default: @@ -7323,9 +7323,9 @@ Error generating stack: ` + r & 4096 && (e.flags &= -4097); } function ib(e, r, s) { - (Y = e), Lf(e); + (Y = e), Bf(e); } - function Lf(e, r, s) { + function Bf(e, r, s) { for (var l = (e.mode & 1) !== 0; Y !== null; ) { var u = Y, p = u.child; @@ -7341,21 +7341,21 @@ Error generating stack: ` + (g = Y), (k = g.child), g.tag === 22 && g.memoizedState !== null - ? Df(u) + ? Af(u) : k !== null ? ((k.return = g), (Y = k)) - : Df(u); - for (; p !== null; ) (Y = p), Lf(p), (p = p.sibling); + : Af(u); + for (; p !== null; ) (Y = p), Bf(p), (p = p.sibling); (Y = u), (fa = _), (ft = M); } - $f(e); + Lf(e); } else (u.subtreeFlags & 8772) !== 0 && p !== null ? ((p.return = u), (Y = p)) - : $f(e); + : Lf(e); } } - function $f(e) { + function Lf(e) { for (; Y !== null; ) { var r = Y; if ((r.flags & 8772) !== 0) { @@ -7384,7 +7384,7 @@ Error generating stack: ` + ); } var p = r.updateQueue; - p !== null && Md(r, p, l); + p !== null && Rd(r, p, l); break; case 3: var g = r.updateQueue; @@ -7397,7 +7397,7 @@ Error generating stack: ` + case 1: s = r.child.stateNode; } - Md(r, g, s); + Rd(r, g, s); } break; case 5: @@ -7461,7 +7461,7 @@ Error generating stack: ` + Y = r.return; } } - function Af(e) { + function $f(e) { for (; Y !== null; ) { var r = Y; if (r === e) { @@ -7476,7 +7476,7 @@ Error generating stack: ` + Y = r.return; } } - function Df(e) { + function Af(e) { for (; Y !== null; ) { var r = Y; try { @@ -7570,10 +7570,10 @@ Error generating stack: ` + : (Ce & 2) !== 0 && st !== 0 ? st & -st : U1.transition !== null - ? (_a === 0 && (_a = Iu()), _a) + ? (_a === 0 && (_a = ju()), _a) : ((e = Fe), e !== 0 || - ((e = window.event), (e = e === void 0 ? 16 : Du(e.type))), + ((e = window.event), (e = e === void 0 ? 16 : Au(e.type))), e); } function Zt(e, r, s, l) { @@ -7592,37 +7592,37 @@ Error generating stack: ` + Ug(e, r); var l = To(e, e === nt ? st : 0); if (l === 0) - s !== null && Eu(s), (e.callbackNode = null), (e.callbackPriority = 0); + s !== null && Ou(s), (e.callbackNode = null), (e.callbackPriority = 0); else if (((r = l & -l), e.callbackPriority !== r)) { - if ((s != null && Eu(s), r === 1)) - e.tag === 0 ? V1(Hf.bind(null, e)) : Cd(Hf.bind(null, e)), + if ((s != null && Ou(s), r === 1)) + e.tag === 0 ? V1(zf.bind(null, e)) : kd(zf.bind(null, e)), A1(function () { (Ce & 6) === 0 && Nn(); }), (s = null); else { - switch (Fu(l)) { + switch (Iu(l)) { case 1: s = Yi; break; case 4: - s = Tu; + s = Eu; break; case 16: s = Co; break; case 536870912: - s = ju; + s = Tu; break; default: s = Co; } - s = Qf(s, zf.bind(null, e)); + s = Xf(s, Df.bind(null, e)); } (e.callbackPriority = r), (e.callbackNode = s); } } - function zf(e, r) { + function Df(e, r) { if (((ya = -1), (_a = 0), (Ce & 6) !== 0)) throw Error(o(327)); var s = e.callbackNode; if (X0() && e.callbackNode !== s) return null; @@ -7633,14 +7633,14 @@ Error generating stack: ` + r = l; var u = Ce; Ce |= 2; - var p = Uf(); + var p = Vf(); (nt !== e || st !== r) && ((yn = null), (K0 = qe() + 500), l0(e, r)); do try { ub(); break; } catch (_) { - Vf(e, _); + Hf(e, _); } while (!0); Bs(), @@ -7725,7 +7725,7 @@ Error generating stack: ` + } } } - return Ct(e, qe()), e.callbackNode === s ? zf.bind(null, e) : null; + return Ct(e, qe()), e.callbackNode === s ? Df.bind(null, e) : null; } function yl(e, r) { var s = Xr; @@ -7783,7 +7783,7 @@ Error generating stack: ` + (e[s] = -1), (r &= ~l); } } - function Hf(e) { + function zf(e) { if ((Ce & 6) !== 0) throw Error(o(327)); X0(); var r = To(e, 0); @@ -7886,7 +7886,7 @@ Error generating stack: ` + } return e; } - function Vf(e, r) { + function Hf(e, r) { do { var s = Ke; try { @@ -7929,11 +7929,11 @@ Error generating stack: ` + (z.lanes = D.lanes)) : ((z.updateQueue = null), (z.memoizedState = null)); } - var X = hf(g); + var X = pf(g); if (X !== null) { (X.flags &= -257), - mf(X, g, _, p, r), - X.mode & 1 && pf(p, M, r), + hf(X, g, _, p, r), + X.mode & 1 && ff(p, M, r), (r = X), (k = M); var Z = r.updateQueue; @@ -7944,16 +7944,16 @@ Error generating stack: ` + break e; } else { if ((r & 1) === 0) { - pf(p, M, r), wl(); + ff(p, M, r), wl(); break e; } k = Error(o(426)); } } else if (De && _.mode & 1) { - var We = hf(g); + var We = pf(g); if (We !== null) { (We.flags & 65536) === 0 && (We.flags |= 256), - mf(We, g, _, p, r), + hf(We, g, _, p, r), Ms(G0(k, _)); break e; } @@ -7966,8 +7966,8 @@ Error generating stack: ` + switch (p.tag) { case 3: (p.flags |= 65536), (r &= -r), (p.lanes |= r); - var I = df(p, k, r); - Rd(p, I); + var I = uf(p, k, r); + Fd(p, I); break e; case 1: _ = k; @@ -7981,15 +7981,15 @@ Error generating stack: ` + (An === null || !An.has(F)))) ) { (p.flags |= 65536), (r &= -r), (p.lanes |= r); - var G = ff(p, _, r); - Rd(p, G); + var G = df(p, _, r); + Fd(p, G); break e; } } p = p.return; } while (p !== null); } - qf(s); + Gf(s); } catch (te) { (r = te), Ke === s && s !== null && (Ke = s = s.return); continue; @@ -7997,7 +7997,7 @@ Error generating stack: ` + break; } while (!0); } - function Uf() { + function Vf() { var e = ha.current; return (ha.current = ca), e === null ? ca : e; } @@ -8010,32 +8010,32 @@ Error generating stack: ` + function xa(e, r) { var s = Ce; Ce |= 2; - var l = Uf(); + var l = Vf(); (nt !== e || st !== r) && ((yn = null), l0(e, r)); do try { cb(); break; } catch (u) { - Vf(e, u); + Hf(e, u); } while (!0); if ((Bs(), (Ce = s), (ha.current = l), Ke !== null)) throw Error(o(261)); return (nt = null), (st = 0), Je; } function cb() { - for (; Ke !== null; ) Gf(Ke); + for (; Ke !== null; ) Uf(Ke); } function ub() { - for (; Ke !== null && !Ng(); ) Gf(Ke); + for (; Ke !== null && !Ng(); ) Uf(Ke); } - function Gf(e) { - var r = Xf(e.alternate, e, Ft); + function Uf(e) { + var r = Kf(e.alternate, e, Ft); (e.memoizedProps = e.pendingProps), - r === null ? qf(e) : (Ke = r), + r === null ? Gf(e) : (Ke = r), (hl.current = null); } - function qf(e) { + function Gf(e) { var r = e; do { var s = r.alternate; @@ -8091,7 +8091,7 @@ Error generating stack: ` + ((s.subtreeFlags & 2064) === 0 && (s.flags & 2064) === 0) || ba || ((ba = !0), - Qf(Co, function () { + Xf(Co, function () { return X0(), null; })), (p = (s.flags & 15990) !== 0), @@ -8104,7 +8104,7 @@ Error generating stack: ` + (Ce |= 4), (hl.current = null), ab(e, s), - Bf(s, e), + Nf(s, e), I1(ws), (Fo = !!Ss), (ws = Ss = null), @@ -8136,7 +8136,7 @@ Error generating stack: ` + } function X0() { if (Dn !== null) { - var e = Fu(va), + var e = Iu(va), r = zt.transition, s = Fe; try { @@ -8169,7 +8169,7 @@ Error generating stack: ` + z = Y; var D = z.sibling, X = z.return; - if ((If(z), z === M)) { + if ((jf(z), z === M)) { Y = null; break; } @@ -8262,19 +8262,19 @@ Error generating stack: ` + } return !1; } - function Wf(e, r, s) { + function qf(e, r, s) { (r = G0(s, r)), - (r = df(e, r, 1)), + (r = uf(e, r, 1)), (e = Ln(e, r, 1)), (r = vt()), e !== null && (_r(e, 1, r), Ct(e, r)); } function Ve(e, r, s) { - if (e.tag === 3) Wf(e, e, s); + if (e.tag === 3) qf(e, e, s); else for (; r !== null; ) { if (r.tag === 3) { - Wf(r, e, s); + qf(r, e, s); break; } else if (r.tag === 1) { var l = r.stateNode; @@ -8284,7 +8284,7 @@ Error generating stack: ` + (An === null || !An.has(l))) ) { (e = G0(s, e)), - (e = ff(r, e, 1)), + (e = df(r, e, 1)), (r = Ln(r, e, 1)), (e = vt()), r !== null && (_r(r, 1, e), Ct(r, e)); @@ -8306,7 +8306,7 @@ Error generating stack: ` + : (ml |= s)), Ct(e, r); } - function Kf(e, r) { + function Wf(e, r) { r === 0 && ((e.mode & 1) === 0 ? (r = 1) @@ -8317,7 +8317,7 @@ Error generating stack: ` + function pb(e) { var r = e.memoizedState, s = 0; - r !== null && (s = r.retryLane), Kf(e, s); + r !== null && (s = r.retryLane), Wf(e, s); } function hb(e, r) { var s = 0; @@ -8333,10 +8333,10 @@ Error generating stack: ` + default: throw Error(o(314)); } - l !== null && l.delete(r), Kf(e, s); + l !== null && l.delete(r), Wf(e, s); } - var Xf; - Xf = function (e, r, s) { + var Kf; + Kf = function (e, r, s) { if (e !== null) if (e.memoizedProps !== r.pendingProps || xt.current) wt = !0; else { @@ -8344,7 +8344,7 @@ Error generating stack: ` + return (wt = !1), tb(e, r, s); wt = (e.flags & 131072) !== 0; } - else (wt = !1), De && (r.flags & 1048576) !== 0 && Pd(r, Qo, r.index); + else (wt = !1), De && (r.flags & 1048576) !== 0 && Cd(r, Qo, r.index); switch (((r.lanes = 0), r.tag)) { case 2: var l = r.type; @@ -8390,13 +8390,13 @@ Error generating stack: ` + r = rl(null, r, l, e, s); break e; case 1: - r = xf(null, r, l, e, s); + r = _f(null, r, l, e, s); break e; case 11: - r = gf(null, r, l, e, s); + r = mf(null, r, l, e, s); break e; case 14: - r = bf(null, r, l, Xt(l.type, e), s); + r = gf(null, r, l, Xt(l.type, e), s); break e; } throw Error(o(306, l, "")); @@ -8414,15 +8414,15 @@ Error generating stack: ` + (l = r.type), (u = r.pendingProps), (u = r.elementType === l ? u : Xt(l, u)), - xf(e, r, l, u, s) + _f(e, r, l, u, s) ); case 3: e: { - if ((Sf(r), e === null)) throw Error(o(387)); + if ((xf(r), e === null)) throw Error(o(387)); (l = r.pendingProps), (p = r.memoizedState), (u = p.element), - Fd(e, r), + Id(e, r), ta(r, l, null, s); var g = r.memoizedState; if (((l = g.element), p.isDehydrated)) @@ -8438,10 +8438,10 @@ Error generating stack: ` + (r.memoizedState = p), r.flags & 256) ) { - (u = G0(Error(o(423)), r)), (r = wf(e, r, l, s, u)); + (u = G0(Error(o(423)), r)), (r = Sf(e, r, l, s, u)); break e; } else if (l !== u) { - (u = G0(Error(o(424)), r)), (r = wf(e, r, l, s, u)); + (u = G0(Error(o(424)), r)), (r = Sf(e, r, l, s, u)); break e; } else for ( @@ -8449,7 +8449,7 @@ Error generating stack: ` + jt = r, De = !0, Kt = null, - s = zd(r, null, l, s), + s = Dd(r, null, l, s), r.child = s; s; @@ -8467,21 +8467,21 @@ Error generating stack: ` + return r; case 5: return ( - Hd(r), + zd(r), e === null && Rs(r), (l = r.type), (u = r.pendingProps), (p = e !== null ? e.memoizedProps : null), (g = u.children), ks(l, u) ? (g = null) : p !== null && ks(l, p) && (r.flags |= 32), - _f(e, r), + yf(e, r), bt(e, r, g, s), r.child ); case 6: return e === null && Rs(r), null; case 13: - return kf(e, r, s); + return wf(e, r, s); case 4: return ( Vs(r, r.stateNode.containerInfo), @@ -8494,7 +8494,7 @@ Error generating stack: ` + (l = r.type), (u = r.pendingProps), (u = r.elementType === l ? u : Xt(l, u)), - gf(e, r, l, u, s) + mf(e, r, l, u, s) ); case 7: return bt(e, r, r.pendingProps, s), r.child; @@ -8589,10 +8589,10 @@ Error generating stack: ` + (l = r.type), (u = Xt(l, r.pendingProps)), (u = Xt(l.type, u)), - bf(e, r, l, u, s) + gf(e, r, l, u, s) ); case 15: - return vf(e, r, r.type, r.pendingProps, s); + return bf(e, r, r.type, r.pendingProps, s); case 17: return ( (l = r.type), @@ -8602,19 +8602,19 @@ Error generating stack: ` + (r.tag = 1), St(l) ? ((e = !0), Wo(r)) : (e = !1), H0(r, s), - Ld(r, l, u), + Bd(r, l, u), Hs(r, l, u, s), ol(null, r, l, !0, e, s) ); case 19: - return Pf(e, r, s); + return Cf(e, r, s); case 22: - return yf(e, r, s); + return vf(e, r, s); } throw Error(o(156, r.tag)); }; - function Qf(e, r) { - return Ou(e, r); + function Xf(e, r) { + return Pu(e, r); } function mb(e, r, s, l) { (this.tag = e), @@ -8813,7 +8813,7 @@ Error generating stack: ` + implementation: s, }; } - function Yf(e) { + function Qf(e) { if (!e) return Mn; e = e._reactInternals; e: { @@ -8836,14 +8836,14 @@ Error generating stack: ` + } if (e.tag === 1) { var s = e.type; - if (St(s)) return wd(e, s, r); + if (St(s)) return Sd(e, s, r); } return r; } - function Zf(e, r, s, l, u, p, g, _, k) { + function Yf(e, r, s, l, u, p, g, _, k) { return ( (e = Ol(s, l, !0, e, u, p, g, _, k)), - (e.context = Yf(null)), + (e.context = Qf(null)), (s = e.current), (l = vt()), (u = zn(s)), @@ -8861,7 +8861,7 @@ Error generating stack: ` + p = vt(), g = zn(u); return ( - (s = Yf(s)), + (s = Qf(s)), r.context === null ? (r.context = s) : (r.pendingContext = s), (r = bn(p, g)), (r.payload = { element: e }), @@ -8881,19 +8881,19 @@ Error generating stack: ` + return e.child.stateNode; } } - function Jf(e, r) { + function Zf(e, r) { if (((e = e.memoizedState), e !== null && e.dehydrated !== null)) { var s = e.retryLane; e.retryLane = s !== 0 && s < r ? s : r; } } function El(e, r) { - Jf(e, r), (e = e.alternate) && Jf(e, r); + Zf(e, r), (e = e.alternate) && Zf(e, r); } function yb() { return null; } - var ep = + var Jf = typeof reportError == "function" ? reportError : function (e) { @@ -8925,10 +8925,10 @@ Error generating stack: ` + } Pa.prototype.unstable_scheduleHydration = function (e) { if (e) { - var r = Nu(); + var r = Mu(); e = { blockedOn: null, target: e, priority: r }; for (var s = 0; s < Tn.length && r !== 0 && r < Tn[s].priority; s++); - Tn.splice(s, 0, e), s === 0 && $u(e); + Tn.splice(s, 0, e), s === 0 && Lu(e); } }; function jl(e) { @@ -8943,7 +8943,7 @@ Error generating stack: ` + (e.nodeType !== 8 || e.nodeValue !== " react-mount-point-unstable ")) ); } - function tp() {} + function ep() {} function _b(e, r, s, l, u) { if (u) { if (typeof l == "function") { @@ -8953,7 +8953,7 @@ Error generating stack: ` + p.call(M); }; } - var g = Zf(r, l, e, 0, null, !1, !1, "", tp); + var g = Yf(r, l, e, 0, null, !1, !1, "", ep); return ( (e._reactRootContainer = g), (e[fn] = g.current), @@ -8970,7 +8970,7 @@ Error generating stack: ` + _.call(M); }; } - var k = Ol(e, 0, !1, null, null, !1, !1, "", tp); + var k = Ol(e, 0, !1, null, null, !1, !1, "", ep); return ( (e._reactRootContainer = k), (e[fn] = k.current), @@ -8996,7 +8996,7 @@ Error generating stack: ` + } else g = _b(s, r, e, u, l); return Ca(g); } - (Ru = function (e) { + (Fu = function (e) { switch (e.tag) { case 3: var r = e.stateNode; @@ -9029,7 +9029,7 @@ Error generating stack: ` + El(e, 134217728); } }), - (Mu = function (e) { + (Ru = function (e) { if (e.tag === 13) { var r = zn(e), s = gn(e, r); @@ -9040,10 +9040,10 @@ Error generating stack: ` + El(e, r); } }), - (Nu = function () { + (Mu = function () { return Fe; }), - (Bu = function (e, r) { + (Nu = function (e, r) { var s = Fe; try { return (Fe = e), r(); @@ -9074,15 +9074,15 @@ Error generating stack: ` + } break; case "textarea": - du(e, s); + uu(e, s); break; case "select": (r = s.value), r != null && C0(e, !!s.multiple, r, !1); } }), - (_u = xl), - (xu = s0); - var xb = { usingClientEntryPoint: !1, Events: [Lr, N0, Go, vu, yu, xl] }, + (yu = xl), + (_u = s0); + var xb = { usingClientEntryPoint: !1, Events: [Lr, N0, Go, bu, vu, xl] }, Yr = { findFiberByHostInstance: Jn, bundleType: 0, @@ -9105,7 +9105,7 @@ Error generating stack: ` + scheduleUpdate: null, currentDispatcherRef: L.ReactCurrentDispatcher, findHostInstanceByFiber: function (e) { - return (e = Cu(e)), e === null ? null : e.stateNode; + return (e = ku(e)), e === null ? null : e.stateNode; }, findFiberByHostInstance: Yr.findFiberByHostInstance || yb, findHostInstancesForRefresh: null, @@ -9134,7 +9134,7 @@ Error generating stack: ` + if (!jl(e)) throw Error(o(299)); var s = !1, l = "", - u = ep; + u = Jf; return ( r != null && (r.unstable_strictMode === !0 && (s = !0), @@ -9154,7 +9154,7 @@ Error generating stack: ` + throw typeof e.render == "function" ? Error(o(188)) : ((e = Object.keys(e).join(",")), Error(o(268, e))); - return (e = Cu(r)), (e = e === null ? null : e.stateNode), e; + return (e = ku(r)), (e = e === null ? null : e.stateNode), e; }), (Pt.flushSync = function (e) { return s0(e); @@ -9168,13 +9168,13 @@ Error generating stack: ` + var l = (s != null && s.hydratedSources) || null, u = !1, p = "", - g = ep; + g = Jf; if ( (s != null && (s.unstable_strictMode === !0 && (u = !0), s.identifierPrefix !== void 0 && (p = s.identifierPrefix), s.onRecoverableError !== void 0 && (g = s.onRecoverableError)), - (r = Zf(r, null, e, 1, s ?? null, u, !1, p, g)), + (r = Yf(r, null, e, 1, s ?? null, u, !1, p, g)), (e[fn] = r.current), Mr(e), l) @@ -9213,10 +9213,10 @@ Error generating stack: ` + Pt ); } -var fp; -function Nh() { - if (fp) return Nl.exports; - fp = 1; +var dp; +function Mh() { + if (dp) return Nl.exports; + dp = 1; function n() { if ( !( @@ -9232,11 +9232,11 @@ function Nh() { } return n(), (Nl.exports = Nb()), Nl.exports; } -var pp; +var fp; function Bb() { - if (pp) return ja; - pp = 1; - var n = Nh(); + if (fp) return ja; + fp = 1; + var n = Mh(); return (ja.createRoot = n.createRoot), (ja.hydrateRoot = n.hydrateRoot), ja; } var Lb = Bb(); @@ -9244,7 +9244,7 @@ const $b = "modulepreload", Ab = function (n) { return "/" + n; }, - hp = {}, + pp = {}, Ia = function (t, o, a) { let i = Promise.resolve(); if (o && o.length > 0) { @@ -9265,8 +9265,8 @@ const $b = "modulepreload", (h == null ? void 0 : h.getAttribute("nonce")); i = d( o.map((m) => { - if (((m = Ab(m)), m in hp)) return; - hp[m] = !0; + if (((m = Ab(m)), m in pp)) return; + pp[m] = !0; const b = m.endsWith(".css"), v = b ? '[rel="stylesheet"]' : ""; if (document.querySelector(`link[href="${m}"]${v}`)) return; @@ -9326,7 +9326,7 @@ function Hb(n) { for (let o in n) t[o] = Bc(n[o]); return t; } -function Bh(n, ...t) { +function Nh(n, ...t) { return ( t.forEach((o) => { for (let a in o) n[a] = o[a]; @@ -9334,12 +9334,12 @@ function Bh(n, ...t) { n ); } -function Lh(n) { +function Bh(n) { const t = ~n.lastIndexOf("/") || ~n.lastIndexOf("\\"); return t === 0 ? n : ~t === n.length - 1 - ? Lh(n.substring(0, n.length - 1)) + ? Bh(n.substring(0, n.length - 1)) : n.substr(~t + 1); } var $l = /\$(\d+)|\${(\d+):\/(downcase|upcase)}/g, @@ -9365,10 +9365,10 @@ var $l = /\$(\d+)|\${(\d+):\/(downcase|upcase)}/g, }); } }; -function $h(n, t) { +function Lh(n, t) { return n < t ? -1 : n > t ? 1 : 0; } -function Ah(n, t) { +function $h(n, t) { if (n === null && t === null) return 0; if (!n) return -1; if (!t) return 1; @@ -9376,14 +9376,14 @@ function Ah(n, t) { a = t.length; if (o === a) { for (let i = 0; i < o; i++) { - let c = $h(n[i], t[i]); + let c = Lh(n[i], t[i]); if (c !== 0) return c; } return 0; } return o - a; } -function mp(n) { +function hp(n) { return !!( /^#[0-9a-f]{6}$/i.test(n) || /^#[0-9a-f]{8}$/i.test(n) || @@ -9391,10 +9391,10 @@ function mp(n) { /^#[0-9a-f]{4}$/i.test(n) ); } -function Dh(n) { +function Ah(n) { return n.replace(/[\-\\\{\}\*\+\?\|\^\$\.\,\[\]\(\)\#\s]/g, "\\$&"); } -var zh = class { +var Dh = class { constructor(n) { B(this, "cache", new Map()); this.fn = n; @@ -9407,7 +9407,7 @@ var zh = class { }, ti = class { constructor(n, t, o) { - B(this, "_cachedMatchRoot", new zh((n) => this._root.match(n))); + B(this, "_cachedMatchRoot", new Dh((n) => this._root.match(n))); (this._colorMap = n), (this._defaults = t), (this._root = o); } static createFromRawTheme(n, t) { @@ -9428,7 +9428,7 @@ var zh = class { a = this._cachedMatchRoot .get(t) .find((i) => Vb(n.parent, i.parentScopes)); - return a ? new Hh(a.fontStyle, a.foreground, a.background) : null; + return a ? new zh(a.fontStyle, a.foreground, a.background) : null; } }, Al = class Va { @@ -9491,7 +9491,7 @@ function Vb(n, t) { function Ub(n, t) { return t === n || (n.startsWith(t) && n[t.length] === "."); } -var Hh = class { +var zh = class { constructor(n, t, o) { (this.fontStyle = n), (this.foregroundId = t), (this.backgroundId = o); } @@ -9534,11 +9534,11 @@ function Gb(n) { } let m = null; typeof d.settings.foreground == "string" && - mp(d.settings.foreground) && + hp(d.settings.foreground) && (m = d.settings.foreground); let b = null; typeof d.settings.background == "string" && - mp(d.settings.background) && + hp(d.settings.background) && (b = d.settings.background); for (let v = 0, y = h.length; v < y; v++) { let S = h[v].trim().split(" "), @@ -9571,8 +9571,8 @@ var qb = class { ))(mt || {}); function Wb(n, t) { n.sort((f, m) => { - let b = $h(f.scope, m.scope); - return b !== 0 || ((b = Ah(f.parentScopes, m.parentScopes)), b !== 0) + let b = Lh(f.scope, m.scope); + return b !== 0 || ((b = $h(f.parentScopes, m.parentScopes)), b !== 0) ? b : f.index - m.index; }); @@ -9586,7 +9586,7 @@ function Wb(n, t) { f.background !== null && (i = f.background); } let c = new Kb(t), - d = new Hh(o, c.getId(a), c.getId(i)), + d = new zh(o, c.getId(a), c.getId(i)), h = new Qb(new ic(0, null, -1, 0, 0), []); for (let f = 0, m = n.length; f < m; f++) { let b = n[f]; @@ -9636,7 +9636,7 @@ var Kb = class { } }, Xb = Object.freeze([]), - ic = class Vh { + ic = class Hh { constructor(t, o, a, i, c) { B(this, "scopeDepth"); B(this, "parentScopes"); @@ -9650,7 +9650,7 @@ var Kb = class { (this.background = c); } clone() { - return new Vh( + return new Hh( this.scopeDepth, this.parentScopes, this.fontStyle, @@ -9740,7 +9740,7 @@ var Kb = class { } for (let d = 0, h = this._rulesWithParentScopes.length; d < h; d++) { let f = this._rulesWithParentScopes[d]; - if (Ah(f.parentScopes, o) === 0) { + if ($h(f.parentScopes, o) === 0) { f.acceptOverwrite(t, a, i, c); return; } @@ -9846,10 +9846,10 @@ function ni(n, t) { const f = h(); return i === ")" && (i = a.next()), f; } - if (gp(i)) { + if (mp(i)) { const f = []; do f.push(i), (i = a.next()); - while (gp(i)); + while (mp(i)); return (m) => t(f, m); } return null; @@ -9871,7 +9871,7 @@ function ni(n, t) { return (b) => f.some((v) => v(b)); } } -function gp(n) { +function mp(n) { return !!n && !!n.match(/[\w\.:]+/); } function Yb(n) { @@ -9885,7 +9885,7 @@ function Yb(n) { }, }; } -function Uh(n) { +function Vh(n) { typeof n.dispose == "function" && n.dispose(); } var so = class { @@ -9990,11 +9990,11 @@ function ri(n, t, o) { for (const a of n) { if (o.visitedRule.has(a)) continue; o.visitedRule.add(a); - const i = a.repository ? Bh({}, t.repository, a.repository) : t.repository; + const i = a.repository ? Nh({}, t.repository, a.repository) : t.repository; Array.isArray(a.patterns) && ri(a.patterns, { ...t, repository: i }, o); const c = a.include; if (!c) continue; - const d = Gh(c); + const d = Uh(c); switch (d.kind) { case 0: Ua({ ...t, selfGrammar: t.baseGrammar }, o); @@ -10056,7 +10056,7 @@ var nv = class { (this.scopeName = n), (this.ruleName = t); } }; -function Gh(n) { +function Uh(n) { if (n === "$base") return new nv(); if (n === "$self") return new rv(); const t = n.indexOf("#"); @@ -10069,9 +10069,9 @@ function Gh(n) { } } var sv = /\\(\d+)/, - bp = /\\(\d+)/g, + gp = /\\(\d+)/g, lv = -1, - qh = -2; + Gh = -2; var vo = class { constructor(n, t, o, a) { B(this, "$location"); @@ -10089,7 +10089,7 @@ var vo = class { } get debugName() { const n = this.$location - ? `${Lh(this.$location.filename)}:${this.$location.line}` + ? `${Bh(this.$location.filename)}:${this.$location.line}` : "unknown"; return `${this.constructor.name}#${this.id} @ ${n}`; } @@ -10160,7 +10160,7 @@ var vo = class { ); } }, - vp = class extends vo { + bp = class extends vo { constructor(t, o, a, i, c) { super(t, o, a, i); B(this, "hasMissingPatterns"); @@ -10278,7 +10278,7 @@ var vo = class { (this._begin = new lo(c, this.id)), (this.beginCaptures = d), (this.whileCaptures = f), - (this._while = new lo(h, qh)), + (this._while = new lo(h, Gh)), (this.whileHasBackReferences = this._while.hasBackReferences), (this.patterns = m.patterns), (this.hasMissingPatterns = m.hasMissingPatterns), @@ -10338,7 +10338,7 @@ var vo = class { ); } }, - Wh = class pt { + qh = class pt { static createCaptureRule(t, o, a, i, c) { return t.registerRule((d) => new cv(o, d, a, i, c)); } @@ -10355,11 +10355,11 @@ var vo = class { pt._compileCaptures(t.captures, o, a), ); if (typeof t.begin > "u") { - t.repository && (a = Bh({}, a, t.repository)); + t.repository && (a = Nh({}, a, t.repository)); let c = t.patterns; return ( typeof c > "u" && t.include && (c = [{ include: t.include }]), - new vp( + new bp( t.$vscodeTextmateLocation, t.id, t.name, @@ -10429,7 +10429,7 @@ var vo = class { const h = t[c]; let f = -1; if (h.include) { - const m = Gh(h.include); + const m = Uh(h.include); switch (m.kind) { case 0: case 1: @@ -10461,7 +10461,7 @@ var vo = class { const m = o.getRule(f); let b = !1; if ( - ((m instanceof vp || m instanceof cc || m instanceof oi) && + ((m instanceof bp || m instanceof cc || m instanceof oi) && m.hasMissingPatterns && m.patterns.length === 0 && (b = !0), @@ -10477,7 +10477,7 @@ var vo = class { }; } }, - lo = class Kh { + lo = class Wh { constructor(t, o) { B(this, "source"); B(this, "ruleId"); @@ -10513,7 +10513,7 @@ var vo = class { : (this.hasBackReferences = !1); } clone() { - return new Kh(this.source, this.ruleId); + return new Wh(this.source, this.ruleId); } setSource(t) { this.source !== t && @@ -10527,8 +10527,8 @@ var vo = class { ); let a = o.map((i) => t.substring(i.start, i.end)); return ( - (bp.lastIndex = 0), - this.source.replace(bp, (i, c) => Dh(a[parseInt(c, 10)] || "")) + (gp.lastIndex = 0), + this.source.replace(gp, (i, c) => Ah(a[parseInt(c, 10)] || "")) ); } _buildAnchorCache() { @@ -10636,7 +10636,7 @@ var vo = class { compile(n) { if (!this._cached) { let t = this._items.map((o) => o.source); - this._cached = new yp( + this._cached = new vp( n, t, this._items.map((o) => o.ruleId), @@ -10665,14 +10665,14 @@ var vo = class { } _resolveAnchors(n, t, o) { let a = this._items.map((i) => i.resolveAnchors(t, o)); - return new yp( + return new vp( n, a, this._items.map((i) => i.ruleId), ); } }, - yp = class { + vp = class { constructor(n, t, o) { B(this, "scanner"); (this.regExps = t), @@ -10710,7 +10710,7 @@ var vo = class { B( this, "_getBasicScopeAttributes", - new zh((t) => { + new Dh((t) => { const o = this._scopeToLanguage(t), a = this._toStandardTokenType(t); return new Dl(o, a); @@ -10760,7 +10760,7 @@ var vo = class { if (n.length === 0) (this.values = null), (this.scopesRegExp = null); else { this.values = new Map(n); - const t = n.map(([o, a]) => Dh(o)); + const t = n.map(([o, a]) => Ah(o)); t.sort(), t.reverse(), (this.scopesRegExp = new RegExp(`^((${t.join(")|(")}))($|\\.)`, "")); @@ -10772,12 +10772,12 @@ var vo = class { if (t) return this.values.get(t[1]); } }, - _p = class { + yp = class { constructor(n, t) { (this.stack = n), (this.stoppedEarly = t); } }; -function Xh(n, t, o, a, i, c, d, h) { +function Kh(n, t, o, a, i, c, d, h) { const f = t.content.length; let m = !1, b = -1; @@ -10787,10 +10787,10 @@ function Xh(n, t, o, a, i, c, d, h) { } const v = Date.now(); for (; !m; ) { - if (h !== 0 && Date.now() - v > h) return new _p(i, !0); + if (h !== 0 && Date.now() - v > h) return new yp(i, !0); y(); } - return new _p(i, !1); + return new yp(i, !1); function y() { const x = hv(n, t, o, a, i, b); if (!x) { @@ -10887,7 +10887,7 @@ function pv(n, t, o, a, i, c) { ), v = m.findNextMatchSync(t, a, b); if (v) { - if (v.ruleId !== qh) { + if (v.ruleId !== Gh) { i = f.stack.pop(); break; } @@ -10919,7 +10919,7 @@ function hv(n, t, o, a, i, c) { } function mv(n, t, o, a, i, c) { const d = i.getRule(n), - { ruleScanner: h, findOptions: f } = Qh(d, n, i.endRule, o, a === c), + { ruleScanner: h, findOptions: f } = Xh(d, n, i.endRule, o, a === c), m = h.findNextMatchSync(t, a, f); return m ? { captureIndices: m.captureIndices, matchedRuleId: m.ruleId } @@ -10935,7 +10935,7 @@ function gv(n, t, o, a, i, c, d) { const S = n[y]; if (!S.matcher(v)) continue; const O = t.getRule(S.ruleId), - { ruleScanner: C, findOptions: P } = Qh(O, t, null, a, i === d), + { ruleScanner: C, findOptions: P } = Xh(O, t, null, a, i === d), T = C.findNextMatchSync(o, i, P); if (!T) continue; const R = T.captureIndices[0].start; @@ -10953,7 +10953,7 @@ function gv(n, t, o, a, i, c, d) { ? { priorityMatch: b === -1, captureIndices: f, matchedRuleId: m } : null; } -function Qh(n, t, o, a, i) { +function Xh(n, t, o, a, i) { return { ruleScanner: n.compileAG(t, o, a, i), findOptions: 0 }; } function bv(n, t, o, a, i) { @@ -10986,7 +10986,7 @@ function no(n, t, o, a, i, c, d) { T = C.pushAttributed(P, n), R = a.push(y.retokenizeCapturedWithRuleId, x.start, -1, !1, null, C, T), L = n.createOnigString(h.substring(0, x.end)); - Xh(n, L, o && x.start === 0, x.start, R, i, !1, 0), Uh(L); + Kh(n, L, o && x.start === 0, x.start, R, i, !1, 0), Vh(L); continue; } const S = y.getName(h, d); @@ -11011,9 +11011,9 @@ var vv = class { function yv(n, t, o, a, i, c, d, h) { return new xv(n, t, o, a, i, c, d, h); } -function xp(n, t, o, a, i) { +function _p(n, t, o, a, i) { const c = ni(t, ai), - d = Wh.getCompiledRuleId(o, a, i.repository); + d = qh.getCompiledRuleId(o, a, i.repository); for (const h of c) n.push({ debugSelector: t, @@ -11058,7 +11058,7 @@ var xv = class { (this._ruleId2desc = [null]), (this._includedGrammars = {}), (this._grammarRepository = d), - (this._grammar = Sp(t, null)), + (this._grammar = xp(t, null)), (this._injections = null), (this._tokenTypeMatchers = []), i) @@ -11097,14 +11097,14 @@ var xv = class { a = n.lookup(o); if (a) { const i = a.injections; - if (i) for (let d in i) xp(t, d, i[d], this, a); + if (i) for (let d in i) _p(t, d, i[d], this, a); const c = this._grammarRepository.injections(o); c && c.forEach((d) => { const h = this.getExternalGrammar(d); if (h) { const f = h.injectionSelector; - f && xp(t, f, h, this, h); + f && _p(t, f, h, this, h); } }); } @@ -11131,7 +11131,7 @@ var xv = class { const o = this._grammarRepository.lookup(n); if (o) return ( - (this._includedGrammars[n] = Sp(o, t && t.$base)), + (this._includedGrammars[n] = xp(o, t && t.$base)), this._includedGrammars[n] ); } @@ -11154,7 +11154,7 @@ var xv = class { } _tokenize(n, t, o, a) { this._rootId === -1 && - ((this._rootId = Wh.getCompiledRuleId( + ((this._rootId = qh.getCompiledRuleId( this._grammar.repository.$self, this, this._grammar.repository, @@ -11188,9 +11188,9 @@ var xv = class { const c = this.createOnigString(n), d = c.content.length, h = new wv(o, n, this._tokenTypeMatchers, this.balancedBracketSelectors), - f = Xh(this, c, i, 0, t, h, !0, a); + f = Kh(this, c, i, 0, t, h, !0, a); return ( - Uh(c), + Vh(c), { lineLength: d, lineTokens: h, @@ -11200,7 +11200,7 @@ var xv = class { ); } }; -function Sp(n, t) { +function xp(n, t) { return ( (n = Db(n)), (n.repository = n.repository || {}), @@ -11710,7 +11710,7 @@ class yo { yo.prototype.normal = {}; yo.prototype.property = {}; yo.prototype.space = void 0; -function Yh(n, t) { +function Qh(n, t) { const o = {}, a = {}; for (const i of n) Object.assign(o, i.property), Object.assign(a, i.normal); @@ -11767,15 +11767,15 @@ const hc = Object.freeze( class Lc extends Et { constructor(t, o, a, i) { let c = -1; - if ((super(t, o), wp(this, "space", i), typeof a == "number")) + if ((super(t, o), Sp(this, "space", i), typeof a == "number")) for (; ++c < zl.length; ) { const d = zl[c]; - wp(this, zl[c], (a & hc[d]) === hc[d]); + Sp(this, zl[c], (a & hc[d]) === hc[d]); } } } Lc.prototype.defined = !0; -function wp(n, t, o) { +function Sp(n, t, o) { o && (n[t] = o); } function cr(n) { @@ -11792,7 +11792,7 @@ function cr(n) { } return new yo(t, o, n.space); } -const Zh = cr({ +const Yh = cr({ properties: { ariaActiveDescendant: null, ariaAtomic: Xe, @@ -11848,11 +11848,11 @@ const Zh = cr({ return t === "role" ? t : "aria-" + t.slice(4).toLowerCase(); }, }); -function Jh(n, t) { +function Zh(n, t) { return t in n ? n[t] : t; } -function em(n, t) { - return Jh(n, t.toLowerCase()); +function Jh(n, t) { + return Zh(n, t.toLowerCase()); } const Ev = cr({ attributes: { @@ -12157,7 +12157,7 @@ const Ev = cr({ unselectable: null, }, space: "html", - transform: em, + transform: Jh, }), Tv = cr({ attributes: { @@ -12713,9 +12713,9 @@ const Ev = cr({ zoomAndPan: null, }, space: "svg", - transform: Jh, + transform: Zh, }), - tm = cr({ + em = cr({ properties: { xLinkActuate: null, xLinkArcRole: null, @@ -12730,13 +12730,13 @@ const Ev = cr({ return "xlink:" + t.slice(5).toLowerCase(); }, }), - nm = cr({ + tm = cr({ attributes: { xmlnsxlink: "xmlns:xlink" }, properties: { xmlnsXLink: null, xmlns: null }, space: "xmlns", - transform: em, + transform: Jh, }), - rm = cr({ + nm = cr({ properties: { xmlBase: null, xmlLang: null, xmlSpace: null }, space: "xml", transform(n, t) { @@ -12744,7 +12744,7 @@ const Ev = cr({ }, }), jv = /[A-Z]/g, - kp = /-[a-z]/g, + wp = /-[a-z]/g, Iv = /^data[-\w.:]+$/i; function Fv(n, t) { const o = fc(t); @@ -12753,11 +12753,11 @@ function Fv(n, t) { if (o in n.normal) return n.property[n.normal[o]]; if (o.length > 4 && o.slice(0, 4) === "data" && Iv.test(t)) { if (t.charAt(4) === "-") { - const c = t.slice(5).replace(kp, Mv); + const c = t.slice(5).replace(wp, Mv); a = "data" + c.charAt(0).toUpperCase() + c.slice(1); } else { const c = t.slice(4); - if (!kp.test(c)) { + if (!wp.test(c)) { let d = c.replace(jv, Rv); d.charAt(0) !== "-" && (d = "-" + d), (t = "data" + d); } @@ -12772,17 +12772,17 @@ function Rv(n) { function Mv(n) { return n.charAt(1).toUpperCase(); } -const Nv = Yh([Zh, Ev, tm, nm, rm], "html"), - om = Yh([Zh, Tv, tm, nm, rm], "svg"), - Cp = {}.hasOwnProperty; +const Nv = Qh([Yh, Ev, em, tm, nm], "html"), + rm = Qh([Yh, Tv, em, tm, nm], "svg"), + kp = {}.hasOwnProperty; function Bv(n, t) { const o = t || {}; function a(i, ...c) { let d = a.invalid; const h = a.handlers; - if (i && Cp.call(i, n)) { + if (i && kp.call(i, n)) { const f = String(i[n]); - d = Cp.call(h, f) ? h[f] : a.unknown; + d = kp.call(h, f) ? h[f] : a.unknown; } if (d) return d.call(this, i, ...c); } @@ -12797,7 +12797,7 @@ const Lv = /["&'<>`]/g, $v = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g, Av = /[\x01-\t\v\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g, Dv = /[|\\{}()[\]^$+*?.]/g, - Pp = new WeakMap(); + Cp = new WeakMap(); function zv(n, t) { if ( ((n = n.replace(t.subset ? Hv(t.subset) : Lv, a)), t.subset || t.escapeOnly) @@ -12816,8 +12816,8 @@ function zv(n, t) { } } function Hv(n) { - let t = Pp.get(n); - return t || ((t = Vv(n)), Pp.set(n, t)), t; + let t = Cp.get(n); + return t || ((t = Vv(n)), Cp.set(n, t)), t; } function Vv(n) { const t = []; @@ -13198,14 +13198,14 @@ const Kv = [ euro: "€", }, Xv = ["cent", "copy", "divide", "gt", "lt", "not", "para", "times"], - am = {}.hasOwnProperty, + om = {}.hasOwnProperty, mc = {}; let Ra; -for (Ra in Hl) am.call(Hl, Ra) && (mc[Hl[Ra]] = Ra); +for (Ra in Hl) om.call(Hl, Ra) && (mc[Hl[Ra]] = Ra); const Qv = /[^\dA-Za-z]/; function Yv(n, t, o, a) { const i = String.fromCharCode(n); - if (am.call(mc, i)) { + if (om.call(mc, i)) { const c = mc[i], d = "&" + c; return o && @@ -13260,7 +13260,7 @@ function ry(n, t, o, a) { "html>" ); } -function Op(n, t) { +function Pp(n, t) { const o = String(n); if (typeof t != "string") throw new TypeError("Expected character"); let a = 0, @@ -13279,15 +13279,15 @@ function ay(n) { } const iy = /[ \t\n\f\r]/g; function $c(n) { - return typeof n == "object" ? (n.type === "text" ? Ep(n.value) : !1) : Ep(n); + return typeof n == "object" ? (n.type === "text" ? Op(n.value) : !1) : Op(n); } -function Ep(n) { +function Op(n) { return n.replace(iy, "") === ""; } -const et = sm(1), - im = sm(-1), +const et = im(1), + am = im(-1), sy = []; -function sm(n) { +function im(n) { return t; function t(o, a, i) { const c = o ? o.children : sy; @@ -13298,13 +13298,13 @@ function sm(n) { } } const ly = {}.hasOwnProperty; -function lm(n) { +function sm(n) { return t; function t(o, a, i) { return ly.call(n, o.tagName) && n[o.tagName](o, a, i); } } -const Ac = lm({ +const Ac = sm({ body: uy, caption: Vl, colgroup: Vl, @@ -13316,12 +13316,12 @@ const Ac = lm({ optgroup: my, option: gy, p: dy, - rp: Tp, - rt: Tp, + rp: Ep, + rt: Ep, tbody: vy, - td: jp, + td: Tp, tfoot: yy, - th: jp, + th: Tp, thead: by, tr: _y, }); @@ -13404,7 +13404,7 @@ function hy(n, t, o) { !a || (a.type === "element" && (a.tagName === "dt" || a.tagName === "dd")) ); } -function Tp(n, t, o) { +function Ep(n, t, o) { const a = et(o, t); return ( !a || (a.type === "element" && (a.tagName === "rp" || a.tagName === "rt")) @@ -13444,13 +13444,13 @@ function _y(n, t, o) { const a = et(o, t); return !a || (a.type === "element" && a.tagName === "tr"); } -function jp(n, t, o) { +function Tp(n, t, o) { const a = et(o, t); return ( !a || (a.type === "element" && (a.tagName === "td" || a.tagName === "th")) ); } -const xy = lm({ body: ky, colgroup: Cy, head: wy, html: Sy, tbody: Py }); +const xy = sm({ body: ky, colgroup: Cy, head: wy, html: Sy, tbody: Py }); function Sy(n) { const t = et(n, -1); return !t || t.type !== "comment"; @@ -13485,7 +13485,7 @@ function ky(n) { ); } function Cy(n, t, o) { - const a = im(o, t), + const a = am(o, t), i = et(n, -1, !0); return o && a && @@ -13496,7 +13496,7 @@ function Cy(n, t, o) { : !!(i && i.type === "element" && i.tagName === "col"); } function Py(n, t, o) { - const a = im(o, t), + const a = am(o, t), i = et(n, -1); return o && a && @@ -13553,7 +13553,7 @@ function Oy(n, t, o, a) { : a.settings.voids.includes(n.tagName.toLowerCase()); const h = []; let f; - i.space === "html" && n.tagName === "svg" && (a.schema = om); + i.space === "html" && n.tagName === "svg" && (a.schema = rm); const m = Ey(a, n.properties), b = a.all(i.space === "html" && n.tagName === "template" ? n.content : n); return ( @@ -13633,7 +13633,7 @@ function Ty(n, t, o) { )), h !== o && (n.settings.quoteSmart && - Op(o, d) > Op(o, n.alternative) && + Pp(o, d) > Pp(o, n.alternative) && (d = n.alternative), (h = d + @@ -13648,7 +13648,7 @@ function Ty(n, t, o) { f + (h && "=" + h)); } const jy = ["<", "&"]; -function cm(n, t, o, a) { +function lm(n, t, o, a) { return o && o.type === "element" && (o.tagName === "script" || o.tagName === "style") @@ -13659,7 +13659,7 @@ function cm(n, t, o, a) { ); } function Iy(n, t, o, a) { - return a.settings.allowDangerousHtml ? n.value : cm(n, t, o, a); + return a.settings.allowDangerousHtml ? n.value : lm(n, t, o, a); } function Fy(n, t, o, a) { return a.all(n); @@ -13673,7 +13673,7 @@ const Ry = Bv("type", { element: Oy, raw: Iy, root: Fy, - text: cm, + text: lm, }, }); function My(n) { @@ -13714,7 +13714,7 @@ function Ay(n, t) { closeSelfClosing: o.closeSelfClosing || !1, closeEmptyElements: o.closeEmptyElements || !1, }, - schema: o.space === "svg" ? om : Nv, + schema: o.space === "svg" ? rm : Nv, quote: a, alternative: i, }.one(Array.isArray(n) ? { type: "root", children: n } : n, void 0, void 0); @@ -13746,7 +13746,7 @@ function Xn(n, t) { function Hy(n) { return Array.isArray(n) ? n : [n]; } -async function um(n) { +async function cm(n) { return Promise.resolve(typeof n == "function" ? n() : n).then( (t) => t.default || t, ); @@ -13763,7 +13763,7 @@ function zc(n) { function Uy(n) { return zc(n); } -function dm(n, t) { +function um(n, t) { var a; if (!t) return n; n.properties || (n.properties = {}), @@ -13897,12 +13897,12 @@ function gc(n) { .map(([t, o]) => `${t}:${o}`) .join(";"); } -const fm = new WeakMap(); +const dm = new WeakMap(); function Oi(n, t) { - fm.set(n, t); + dm.set(n, t); } function uo(n) { - return fm.get(n); + return dm.get(n); } class ur { constructor(...t) { @@ -14030,7 +14030,7 @@ function Yy() { P === -1 || T === -1) ) for (let L = 0; L < O.children.length; L++) - (C += pm(O.children[L])), + (C += fm(O.children[L])), P === -1 && C.length === y && (P = L + 1), T === -1 && C.length === x && (T = L + 1); if (P === -1) @@ -14065,7 +14065,7 @@ function Yy() { return ( (v.tagName = y.tagName || "span"), (v.properties = { ...v.properties, ...S, class: v.properties.class }), - (C = y.properties) != null && C.class && dm(v, y.properties.class), + (C = y.properties) != null && C.class && um(v, y.properties.class), (v = O(v, x) || v), v ); @@ -14110,11 +14110,11 @@ function Zy(n) { } } } -function pm(n) { +function fm(n) { return n.type === "text" ? n.value : n.type === "element" - ? n.children.map(pm).join("") + ? n.children.map(fm).join("") : ""; } const Jy = [Yy()]; @@ -14161,7 +14161,7 @@ function e_(n, t) { } return { position: n.length }; } -function Ip(n) { +function jp(n) { const t = n.shift(); if (t === "2") { const o = n.splice(0, 3).map((a) => Number.parseInt(a)); @@ -14193,7 +14193,7 @@ function t_(n) { value: { type: "named", name: f0[a - 30] }, }); else if (a === 38) { - const i = Ip(n); + const i = jp(n); i && t.push({ type: "setForegroundColor", value: i }); } else if (a === 39) t.push({ type: "resetForegroundColor" }); else if (a <= 47) @@ -14202,7 +14202,7 @@ function t_(n) { value: { type: "named", name: f0[a - 40] }, }); else if (a === 48) { - const i = Ip(n); + const i = jp(n); i && t.push({ type: "setBackgroundColor", value: i }); } else a === 49 @@ -14505,14 +14505,14 @@ function u_(n, t) { } return o; } -function Fp(n, t) { +function Ip(n, t) { return n === t || (t.substring(0, n.length) === n && t[n.length] === "."); } function d_(n, t, o) { - if (!Fp(n[n.length - 1], t)) return !1; + if (!Ip(n[n.length - 1], t)) return !1; let a = n.length - 2, i = o.length - 1; - for (; a >= 0 && i >= 0; ) Fp(n[a], o[i]) && (a -= 1), (i -= 1); + for (; a >= 0 && i >= 0; ) Ip(n[a], o[i]) && (a -= 1), (i -= 1); return a === -1; } function f_(n, t, o) { @@ -14525,7 +14525,7 @@ function f_(n, t, o) { } return a; } -function hm(n, t, o) { +function pm(n, t, o) { const a = Object.entries(o.themes) .filter((f) => f[1]) .map((f) => ({ color: f[0], theme: f[1] })), @@ -14606,7 +14606,7 @@ function ui(n, t, o) { .map((P) => ({ color: P[0], theme: P[1] })) .sort((P, T) => (P.color === m ? -1 : T.color === m ? 1 : 0)); if (y.length === 0) throw new at("`themes` option must not be empty"); - const x = hm(n, t, o); + const x = pm(n, t, o); if (((f = uo(x)), m && Hc !== m && !y.find((P) => P.color === m))) throw new at( `\`themes\` option must contain the defaultColor key \`${m}\``, @@ -14615,8 +14615,8 @@ function ui(n, t, o) { O = y.map((P) => P.color); (c = x.map((P) => P.map((T) => Ky(T, O, b, m, v)))), f && Oi(c, f); const C = y.map((P) => ii(P.theme, o)); - (i = Rp(y, S, C, b, m, "fg", v)), - (a = Rp(y, S, C, b, m, "bg", v)), + (i = Fp(y, S, C, b, m, "fg", v)), + (a = Fp(y, S, C, b, m, "bg", v)), (d = `shiki-themes ${S.map((P) => P.name).join(" ")}`), (h = m ? void 0 : [i, a].join(";")); } else if ("theme" in o) { @@ -14637,7 +14637,7 @@ function ui(n, t, o) { grammarState: f, }; } -function Rp(n, t, o, a, i, c, d) { +function Fp(n, t, o, a, i, c, d) { return n .map((h, f) => { const m = Xn(t[f][c], o[f]) || "inherit", @@ -14722,7 +14722,7 @@ function h_(n, t, o, a = uo(n)) { y = { ...o, structure: h, - addClassToHast: dm, + addClassToHast: um, get source() { return o.source; }, @@ -14893,12 +14893,12 @@ function y_(n, t, o) { i = ((c = d.postprocess) == null ? void 0 : c.call(a, i, o)) || i; return i; } -const Mp = { light: "#333333", dark: "#bbbbbb" }, - Np = { light: "#fffffe", dark: "#1e1e1e" }, - Bp = "__shiki_resolved"; +const Rp = { light: "#333333", dark: "#bbbbbb" }, + Mp = { light: "#fffffe", dark: "#1e1e1e" }, + Np = "__shiki_resolved"; function Uc(n) { var h, f, m, b, v; - if (n != null && n[Bp]) return n; + if (n != null && n[Np]) return n; const t = { ...n }; t.tokenColors && !t.settings && @@ -14923,8 +14923,8 @@ function Uc(n) { (b = t == null ? void 0 : t.colors) != null && b["editor.background"] && (o = t.colors["editor.background"]), - a || (a = t.type === "light" ? Mp.light : Mp.dark), - o || (o = t.type === "light" ? Np.light : Np.dark), + a || (a = t.type === "light" ? Rp.light : Rp.dark), + o || (o = t.type === "light" ? Mp.light : Mp.dark), (t.fg = a), (t.bg = o); } @@ -14974,10 +14974,10 @@ function Uc(n) { (t.colorReplacements[x] = t.colors[y]), (t.colors[y] = x); } return ( - Object.defineProperty(t, Bp, { enumerable: !1, writable: !1, value: !0 }), t + Object.defineProperty(t, Np, { enumerable: !1, writable: !1, value: !0 }), t ); } -async function mm(n) { +async function hm(n) { return Array.from( new Set( ( @@ -14986,16 +14986,16 @@ async function mm(n) { .filter((t) => !Vy(t)) .map( async (t) => - await um(t).then((o) => (Array.isArray(o) ? o : [o])), + await cm(t).then((o) => (Array.isArray(o) ? o : [o])), ), ) ).flat(), ), ); } -async function gm(n) { +async function mm(n) { return ( - await Promise.all(n.map(async (o) => (Uy(o) ? null : Uc(await um(o))))) + await Promise.all(n.map(async (o) => (Uy(o) ? null : Uc(await cm(o))))) ).filter((o) => !!o); } let __ = 3; @@ -15247,14 +15247,14 @@ function k_(n) { C(), c.loadLanguages(T.flat(1)); } async function x(...T) { - return y(await mm(T)); + return y(await hm(T)); } function S(...T) { C(); for (const R of T.flat(1)) c.loadTheme(R); } async function O(...T) { - return C(), S(await gm(T)); + return C(), S(await mm(T)); } function C() { if (t) throw new Z0("Shiki instance has been disposed"); @@ -15282,8 +15282,8 @@ async function C_(n) { "`engine` option is required. Use `createOnigurumaEngine` or `createJavaScriptRegexEngine` to create an engine.", ); const [t, o, a] = await Promise.all([ - gm(n.themes || []), - mm(n.langs || []), + mm(n.themes || []), + hm(n.langs || []), n.engine, ]); return k_({ ...n, themes: t, langs: o, engine: a }); @@ -15293,7 +15293,7 @@ async function P_(n) { return { getLastGrammarState: (...o) => s_(t, ...o), codeToTokensBase: (o, a) => Vc(t, o, a), - codeToTokensWithThemes: (o, a) => hm(t, o, a), + codeToTokensWithThemes: (o, a) => pm(t, o, a), codeToTokens: (o, a) => ui(t, o, a), codeToHast: (o, a) => di(t, o, a), codeToHtml: (o, a) => y_(t, o, a), @@ -15548,7 +15548,7 @@ var Wn, (bo = new WeakSet()), (bc = function (o) { yt(this, xn).lastIndex = this.lastIndex; - const a = rp(Qn.prototype, this, "exec").call(yt(this, xn), o); + const a = np(Qn.prototype, this, "exec").call(yt(this, xn), o); if (((this.lastIndex = yt(this, xn).lastIndex), !a || !yt(this, Wn).size)) return a; const i = [...a]; @@ -15618,7 +15618,7 @@ function N_(n) { } return o; } -const Lp = 4294967295; +const Bp = 4294967295; class B_ { constructor(t, o = {}) { B(this, "regexps"); @@ -15650,7 +15650,7 @@ class B_ { index: h, captureIndices: f.indices.map((b) => b == null - ? { start: Lp, end: Lp, length: 0 } + ? { start: Bp, end: Bp, length: 0 } : { start: b[0] + m, end: b[1] + m, length: b[1] - b[0] }, ), }; @@ -15717,13 +15717,13 @@ function pi(n, t, o) { var Ae = "-ms-", io = "-moz-", Ie = "-webkit-", - bm = "comm", + gm = "comm", Ei = "rule", Gc = "decl", $_ = "@import", - vm = "@keyframes", + bm = "@keyframes", A_ = "@layer", - ym = Math.abs, + vm = Math.abs, qc = String.fromCharCode, vc = Object.assign; function D_(n, t) { @@ -15732,7 +15732,7 @@ function D_(n, t) { ot(n, 3) : 0; } -function _m(n) { +function ym(n) { return n.trim(); } function _n(n, t) { @@ -15753,7 +15753,7 @@ function or(n, t, o) { function ln(n) { return n.length; } -function xm(n) { +function _m(n) { return n.length; } function ro(n, t) { @@ -15762,14 +15762,14 @@ function ro(n, t) { function z_(n, t) { return n.map(t).join(""); } -function $p(n, t) { +function Lp(n, t) { return n.filter(function (o) { return !_n(o, t); }); } var Ti = 1, ar = 1, - Sm = 0, + xm = 0, Gt = 0, Qe = 0, dr = ""; @@ -15810,7 +15810,7 @@ function V_() { } function en() { return ( - (Qe = Gt < Sm ? ot(dr, Gt++) : 0), ar++, Qe === 10 && ((ar = 1), Ti++), Qe + (Qe = Gt < xm ? ot(dr, Gt++) : 0), ar++, Qe === 10 && ((ar = 1), Ti++), Qe ); } function g0() { @@ -15855,13 +15855,13 @@ function yc(n) { return 0; } function U_(n) { - return (Ti = ar = 1), (Sm = ln((dr = n))), (Gt = 0), []; + return (Ti = ar = 1), (xm = ln((dr = n))), (Gt = 0), []; } function G_(n) { return (dr = ""), n; } function ql(n) { - return _m(Ii(Gt - 1, _c(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); + return ym(Ii(Gt - 1, _c(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); } function q_(n) { for (; (Qe = g0()) && Qe < 33; ) en(); @@ -15929,7 +15929,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { switch (((S = T), (T = en()))) { case 40: if (S != 108 && ot(N, v - 1) == 58) { - Ga((N += _e(ql(T), "&", "&\f")), "&\f", ym(m ? h[m - 1] : 0)) != -1 && + Ga((N += _e(ql(T), "&", "&\f")), "&\f", vm(m ? h[m - 1] : 0)) != -1 && (P = -1); break; } @@ -15972,8 +15972,8 @@ function Wa(n, t, o, a, i, c, d, h, f) { ln(N) - v && ro( x > 32 - ? Dp(N + ";", a, o, v - 1, f) - : Dp(_e(N, " ", "") + ";", a, o, v - 2, f), + ? Ap(N + ";", a, o, v - 1, f) + : Ap(_e(N, " ", "") + ";", a, o, v - 2, f), f, ); break; @@ -15982,7 +15982,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { default: if ( (ro( - ($ = Ap(N, t, o, m, b, i, h, R, (L = []), (j = []), v, c)), + ($ = $p(N, t, o, m, b, i, h, R, (L = []), (j = []), v, c)), c, ), T === 123) @@ -15998,7 +15998,7 @@ function Wa(n, t, o, a, i, c, d, h, f) { n, $, $, - a && ro(Ap(n, $, $, 0, 0, i, h, R, i, (L = []), v, j), j), + a && ro($p(n, $, $, 0, 0, i, h, R, i, (L = []), v, j), j), i, j, v, @@ -16038,23 +16038,23 @@ function Wa(n, t, o, a, i, c, d, h, f) { } return c; } -function Ap(n, t, o, a, i, c, d, h, f, m, b, v) { +function $p(n, t, o, a, i, c, d, h, f, m, b, v) { for ( - var y = i - 1, x = i === 0 ? c : [""], S = xm(x), O = 0, C = 0, P = 0; + var y = i - 1, x = i === 0 ? c : [""], S = _m(x), O = 0, C = 0, P = 0; O < a; ++O ) - for (var T = 0, R = or(n, y + 1, (y = ym((C = d[O])))), L = n; T < S; ++T) - (L = _m(C > 0 ? x[T] + " " + R : _e(R, /&\f/g, x[T]))) && (f[P++] = L); + for (var T = 0, R = or(n, y + 1, (y = vm((C = d[O])))), L = n; T < S; ++T) + (L = ym(C > 0 ? x[T] + " " + R : _e(R, /&\f/g, x[T]))) && (f[P++] = L); return ji(n, t, o, i === 0 ? Ei : h, f, m, b, v); } function Y_(n, t, o, a) { - return ji(n, t, o, bm, qc(H_()), or(n, 2, -2), 0, a); + return ji(n, t, o, gm, qc(H_()), or(n, 2, -2), 0, a); } -function Dp(n, t, o, a, i) { +function Ap(n, t, o, a, i) { return ji(n, t, o, Gc, or(n, 0, a), or(n, a + 1, -1), a, i); } -function wm(n, t, o) { +function Sm(n, t, o) { switch (D_(n, t)) { case 5103: return Ie + "print-" + n + n; @@ -16237,7 +16237,7 @@ function wm(n, t, o) { ); case 115: return ~Ga(n, "stretch", 0) - ? wm(_e(n, "stretch", "fill-available"), t, o) + n + ? Sm(_e(n, "stretch", "fill-available"), t, o) + n : n; } break; @@ -16302,9 +16302,9 @@ function Z_(n, t, o, a) { case $_: case Gc: return (n.return = n.return || n.value); - case bm: + case gm: return ""; - case vm: + case bm: return (n.return = n.value + "{" + hi(n.children, a) + "}"); case Ei: if (!ln((n.value = n.props.join(",")))) return ""; @@ -16314,7 +16314,7 @@ function Z_(n, t, o, a) { : ""; } function J_(n) { - var t = xm(n); + var t = _m(n); return function (o, a, i, c) { for (var d = "", h = 0; h < t; h++) d += n[h](o, a, i, c) || ""; return d; @@ -16329,9 +16329,9 @@ function t2(n, t, o, a) { if (n.length > -1 && !n.return) switch (n.type) { case Gc: - n.return = wm(n.value, n.length, o); + n.return = Sm(n.value, n.length, o); return; - case vm: + case bm: return hi([qn(n, { value: _e(n.value, "@", "@" + Ie) })], a); case Ei: if (n.length) @@ -16341,7 +16341,7 @@ function t2(n, t, o, a) { case ":read-write": Q0(qn(n, { props: [_e(i, /:(read-\w+)/, ":" + io + "$1")] })), Q0(qn(n, { props: [i] })), - vc(n, { props: $p(o, a) }); + vc(n, { props: Lp(o, a) }); break; case "::placeholder": Q0( @@ -16352,7 +16352,7 @@ function t2(n, t, o, a) { Q0(qn(n, { props: [_e(i, /:(plac\w+)/, ":" + io + "$1")] })), Q0(qn(n, { props: [_e(i, /:(plac\w+)/, Ae + "input-$1")] })), Q0(qn(n, { props: [i] })), - vc(n, { props: $p(o, a) }); + vc(n, { props: Lp(o, a) }); break; } return ""; @@ -16413,8 +16413,8 @@ var n2 = { Mt !== void 0 && (Mt.REACT_APP_SC_ATTR || Mt.SC_ATTR)) || "data-styled", - km = "active", - Cm = "data-styled-version", + wm = "active", + km = "data-styled-version", Fi = "6.1.18", Wc = `/*!sc*/ `, @@ -16440,7 +16440,7 @@ function o2(n, t, o) { o === void 0 && (o = sr), (n.theme !== o.theme && n.theme) || t || o.theme ); } -var Pm = new Set([ +var Cm = new Set([ "a", "abbr", "address", @@ -16577,31 +16577,31 @@ var Pm = new Set([ ]), a2 = /[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g, i2 = /(^-|-$)/g; -function zp(n) { +function Dp(n) { return n.replace(a2, "-").replace(i2, ""); } var s2 = /(a)(d)/gi, Na = 52, - Hp = function (n) { + zp = function (n) { return String.fromCharCode(n + (n > 25 ? 39 : 97)); }; function xc(n) { var t, o = ""; - for (t = Math.abs(n); t > Na; t = (t / Na) | 0) o = Hp(t % Na) + o; - return (Hp(t % Na) + o).replace(s2, "$1-$2"); + for (t = Math.abs(n); t > Na; t = (t / Na) | 0) o = zp(t % Na) + o; + return (zp(t % Na) + o).replace(s2, "$1-$2"); } var Wl, - Om = 5381, + Pm = 5381, J0 = function (n, t) { for (var o = t.length; o; ) n = (33 * n) ^ t.charCodeAt(--o); return n; }, - Em = function (n) { - return J0(Om, n); + Om = function (n) { + return J0(Pm, n); }; function l2(n) { - return xc(Em(n) >>> 0); + return xc(Om(n) >>> 0); } function c2(n) { return n.displayName || n.name || "Component"; @@ -16609,9 +16609,9 @@ function c2(n) { function Kl(n) { return typeof n == "string" && !0; } -var Tm = typeof Symbol == "function" && Symbol.for, - jm = Tm ? Symbol.for("react.memo") : 60115, - u2 = Tm ? Symbol.for("react.forward_ref") : 60112, +var Em = typeof Symbol == "function" && Symbol.for, + Tm = Em ? Symbol.for("react.memo") : 60115, + u2 = Em ? Symbol.for("react.forward_ref") : 60112, d2 = { childContextTypes: !0, contextType: !0, @@ -16634,7 +16634,7 @@ var Tm = typeof Symbol == "function" && Symbol.for, arguments: !0, arity: !0, }, - Im = { + jm = { $$typeof: !0, compare: !0, defaultProps: !0, @@ -16650,11 +16650,11 @@ var Tm = typeof Symbol == "function" && Symbol.for, displayName: !0, propTypes: !0, }), - (Wl[jm] = Im), + (Wl[Tm] = jm), Wl); -function Vp(n) { - return ("type" in (t = n) && t.type.$$typeof) === jm - ? Im +function Hp(n) { + return ("type" in (t = n) && t.type.$$typeof) === Tm + ? jm : "$$typeof" in n ? p2[n.$$typeof] : d2; @@ -16662,19 +16662,19 @@ function Vp(n) { } var h2 = Object.defineProperty, m2 = Object.getOwnPropertyNames, - Up = Object.getOwnPropertySymbols, + Vp = Object.getOwnPropertySymbols, g2 = Object.getOwnPropertyDescriptor, b2 = Object.getPrototypeOf, - Gp = Object.prototype; -function Fm(n, t, o) { + Up = Object.prototype; +function Im(n, t, o) { if (typeof t != "string") { - if (Gp) { + if (Up) { var a = b2(t); - a && a !== Gp && Fm(n, a, o); + a && a !== Up && Im(n, a, o); } var i = m2(t); - Up && (i = i.concat(Up(t))); - for (var c = Vp(n), d = Vp(t), h = 0; h < i.length; ++h) { + Vp && (i = i.concat(Vp(t))); + for (var c = Hp(n), d = Hp(t), h = 0; h < i.length; ++h) { var f = i[h]; if (!(f in f2 || (o && o[f]) || (d && f in d) || (c && f in c))) { var m = g2(t, f); @@ -16695,7 +16695,7 @@ function Kc(n) { function p0(n, t) { return n && t ? "".concat(n, " ").concat(t) : n || t || ""; } -function qp(n, t) { +function Gp(n, t) { if (n.length === 0) return ""; for (var o = n[0], a = 1; a < n.length; a++) o += n[a]; return o; @@ -16791,7 +16791,7 @@ var v2 = (function () { y2 = function (n, t) { (Xa = t + 1), Ka.set(n, t), gi.set(t, n); }, - _2 = "style[".concat(ir, "][").concat(Cm, '="').concat(Fi, '"]'), + _2 = "style[".concat(ir, "][").concat(km, '="').concat(Fi, '"]'), x2 = new RegExp( "^".concat(ir, '\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'), ), @@ -16821,7 +16821,7 @@ var v2 = (function () { } } }, - Wp = function (n) { + qp = function (n) { for ( var t = document.querySelectorAll(_2), o = 0, a = t.length; o < a; @@ -16829,14 +16829,14 @@ var v2 = (function () { ) { var i = t[o]; i && - i.getAttribute(ir) !== km && + i.getAttribute(ir) !== wm && (w2(n, i), i.parentNode && i.parentNode.removeChild(i)); } }; function k2() { return typeof __webpack_nonce__ < "u" ? __webpack_nonce__ : null; } -var Rm = function (n) { +var Fm = function (n) { var t = document.head, o = n || t, a = document.createElement("style"), @@ -16845,13 +16845,13 @@ var Rm = function (n) { return f[f.length - 1]; })(o), c = i !== void 0 ? i.nextSibling : null; - a.setAttribute(ir, km), a.setAttribute(Cm, Fi); + a.setAttribute(ir, wm), a.setAttribute(km, Fi); var d = k2(); return d && a.setAttribute("nonce", d), o.insertBefore(a, c), a; }, C2 = (function () { function n(t) { - (this.element = Rm(t)), + (this.element = Fm(t)), this.element.appendChild(document.createTextNode("")), (this.sheet = (function (o) { if (o.sheet) return o.sheet; @@ -16883,7 +16883,7 @@ var Rm = function (n) { })(), P2 = (function () { function n(t) { - (this.element = Rm(t)), + (this.element = Fm(t)), (this.nodes = this.element.childNodes), (this.length = 0); } @@ -16927,9 +16927,9 @@ var Rm = function (n) { n ); })(), - Kp = mi, + Wp = mi, E2 = { isServer: !mi, useCSSOMInjection: !r2 }, - Mm = (function () { + Rm = (function () { function n(t, o, a) { t === void 0 && (t = sr), o === void 0 && (o = {}); var i = this; @@ -16937,7 +16937,7 @@ var Rm = function (n) { (this.gs = o), (this.names = new Map(a)), (this.server = !!t.isServer), - !this.server && mi && Kp && ((Kp = !1), Wp(this)), + !this.server && mi && Wp && ((Wp = !1), qp(this)), Xc(this, function () { return (function (c) { for ( @@ -16982,7 +16982,7 @@ var Rm = function (n) { return Ba(t); }), (n.prototype.rehydrate = function () { - !this.server && mi && Wp(this); + !this.server && mi && qp(this); }), (n.prototype.reconstructWithOptions = function (t, o) { return ( @@ -17037,7 +17037,7 @@ var Rm = function (n) { })(), T2 = /&/g, j2 = /^\s*\/\/.*$/gm; -function Nm(n, t) { +function Mm(n, t) { return n.map(function (o) { return ( o.type === "rule" && @@ -17048,7 +17048,7 @@ function Nm(n, t) { }))), Array.isArray(o.children) && o.type !== "@keyframes" && - (o.children = Nm(o.children, t)), + (o.children = Mm(o.children, t)), o ); }); @@ -17084,7 +17084,7 @@ function I2(n) { (a = new RegExp("\\".concat(o, "\\b"), "g")); var C = y.replace(j2, ""), P = Q_(S || x ? "".concat(S, " ").concat(x, " { ").concat(C, " }") : C); - d.namespace && (P = Nm(P, d.namespace)); + d.namespace && (P = Mm(P, d.namespace)); var T = []; return ( hi( @@ -17105,23 +17105,23 @@ function I2(n) { ? f .reduce(function (y, x) { return x.name || y0(15), J0(y, x.name); - }, Om) + }, Pm) .toString() : ""), v ); } -var F2 = new Mm(), +var F2 = new Rm(), wc = I2(), - Bm = Ue.createContext({ + Nm = Ue.createContext({ shouldForwardProp: void 0, styleSheet: F2, stylis: wc, }); -Bm.Consumer; +Nm.Consumer; Ue.createContext(void 0); -function Xp() { - return V.useContext(Bm); +function Kp() { + return V.useContext(Nm); } var R2 = (function () { function n(t, o) { @@ -17149,7 +17149,7 @@ var R2 = (function () { M2 = function (n) { return n >= "A" && n <= "Z"; }; -function Qp(n) { +function Xp(n) { for (var t = "", o = 0; o < n.length; o++) { var a = n[o]; if (o === 1 && a === "-" && n[0] === "-") return n; @@ -17157,27 +17157,27 @@ function Qp(n) { } return t.startsWith("ms-") ? "-" + t : t; } -var Lm = function (n) { +var Bm = function (n) { return n == null || n === !1 || n === ""; }, - $m = function (n) { + Lm = function (n) { var t, o, a = []; for (var i in n) { var c = n[i]; n.hasOwnProperty(i) && - !Lm(c) && + !Bm(c) && ((Array.isArray(c) && c.isCss) || v0(c) - ? a.push("".concat(Qp(i), ":"), c, ";") + ? a.push("".concat(Xp(i), ":"), c, ";") : fo(c) ? a.push.apply( a, - pi(pi(["".concat(i, " {")], $m(c), !1), ["}"], !1), + pi(pi(["".concat(i, " {")], Lm(c), !1), ["}"], !1), ) : a.push( "" - .concat(Qp(i), ": ") + .concat(Xp(i), ": ") .concat( ((t = i), (o = c) == null || typeof o == "boolean" || o === "" @@ -17195,7 +17195,7 @@ var Lm = function (n) { return a; }; function b0(n, t, o, a) { - if (Lm(n)) return []; + if (Bm(n)) return []; if (Kc(n)) return [".".concat(n.styledComponentId)]; if (v0(n)) { if (!v0((c = n)) || (c.prototype && c.prototype.isReactComponent) || !t) @@ -17209,7 +17209,7 @@ function b0(n, t, o, a) { ? (n.inject(o, a), [n.getName(a)]) : [n] : fo(n) - ? $m(n) + ? Lm(n) : Array.isArray(n) ? Array.prototype.concat.apply( Ri, @@ -17226,7 +17226,7 @@ function N2(n) { } return !0; } -var B2 = Em(Fi), +var B2 = Om(Fi), L2 = (function () { function n(t, o, a) { (this.rules = t), @@ -17235,7 +17235,7 @@ var B2 = Em(Fi), (this.componentId = o), (this.baseHash = J0(B2, o)), (this.baseStyle = a), - Mm.registerId(o); + Rm.registerId(o); } return ( (n.prototype.generateAndInjectStyles = function (t, o, a) { @@ -17249,7 +17249,7 @@ var B2 = Em(Fi), ) i = p0(i, this.staticRulesId); else { - var c = qp(b0(this.rules, t, o, a)), + var c = Gp(b0(this.rules, t, o, a)), d = xc(J0(this.baseHash, c) >>> 0); if (!o.hasNameForId(this.componentId, d)) { var h = a(c, ".".concat(d), void 0, this.componentId); @@ -17266,7 +17266,7 @@ var B2 = Em(Fi), var v = this.rules[b]; if (typeof v == "string") m += v; else if (v) { - var y = qp(b0(v, t, o, a)); + var y = Gp(b0(v, t, o, a)); (f = J0(f, y + b)), (m += y); } } @@ -17319,7 +17319,7 @@ function A2(n, t, o) { m = f === void 0 ? (function (L, j) { - var $ = typeof L != "string" ? "sc" : zp(L); + var $ = typeof L != "string" ? "sc" : Dp(L); Xl[$] = (Xl[$] || 0) + 1; var N = "".concat($, "-").concat(l2(Fi + $ + Xl[$])); return j ? "".concat(j, "-").concat(N) : N; @@ -17334,7 +17334,7 @@ function A2(n, t, o) { : b, y = t.displayName && t.componentId - ? "".concat(zp(t.displayName), "-").concat(t.componentId) + ? "".concat(Dp(t.displayName), "-").concat(t.componentId) : t.componentId || m, x = a && i.attrs ? i.attrs.concat(h).filter(Boolean) : h, S = t.shouldForwardProp; @@ -17357,7 +17357,7 @@ function A2(n, t, o) { ve = $.styledComponentId, xe = $.target, me = Ue.useContext(bi), - he = Xp(), + he = Kp(), we = $.shouldForwardProp || he.shouldForwardProp, q = o2(N, me, ee) || sr, Q = (function (ye, ue, ge) { @@ -17392,7 +17392,7 @@ function A2(n, t, o) { ? (A.as = Q.forwardedAs) : (we && !we(W, w)) || (A[W] = Q[W])); var se = (function (ye, ue) { - var ge = Xp(), + var ge = Kp(), fe = ye.generateAndInjectStyles(ue, ge.styleSheet, ge.stylis); return fe; })(Se, Q), @@ -17400,7 +17400,7 @@ function A2(n, t, o) { return ( se && (re += " " + se), Q.className && (re += " " + Q.className), - (A[Kl(w) && !Pm.has(w) ? "class" : "className"] = re), + (A[Kl(w) && !Cm.has(w) ? "class" : "className"] = re), K && (A.ref = K), V.createElement(w, A) ); @@ -17437,7 +17437,7 @@ function A2(n, t, o) { return ".".concat(R.styledComponentId); }), c && - Fm(R, n, { + Im(R, n, { attrs: !0, componentStyle: !0, displayName: !0, @@ -17449,21 +17449,21 @@ function A2(n, t, o) { R ); } -function Yp(n, t) { +function Qp(n, t) { for (var o = [n[0]], a = 0, i = t.length; a < i; a += 1) o.push(t[a], n[a + 1]); return o; } -var Zp = function (n) { +var Yp = function (n) { return Object.assign(n, { isCss: !0 }); }; function D2(n) { for (var t = [], o = 1; o < arguments.length; o++) t[o - 1] = arguments[o]; - if (v0(n) || fo(n)) return Zp(b0(Yp(Ri, pi([n], t, !0)))); + if (v0(n) || fo(n)) return Yp(b0(Qp(Ri, pi([n], t, !0)))); var a = n; return t.length === 0 && a.length === 1 && typeof a[0] == "string" ? b0(a) - : Zp(b0(Yp(a, t))); + : Yp(b0(Qp(a, t))); } function kc(n, t, o) { if ((o === void 0 && (o = sr), !t)) throw y0(1, t); @@ -17487,12 +17487,12 @@ function kc(n, t, o) { a ); } -var Am = function (n) { +var $m = function (n) { return kc(A2, n); }, - S0 = Am; -Pm.forEach(function (n) { - S0[n] = Am(n); + S0 = $m; +Cm.forEach(function (n) { + S0[n] = $m(n); }); function _0(n) { "@babel/helpers - typeof"; @@ -17523,13 +17523,13 @@ function z2(n, t) { } return (t === "string" ? String : Number)(n); } -function Dm(n) { +function Am(n) { var t = z2(n, "string"); return _0(t) == "symbol" ? t : t + ""; } function oo(n, t, o) { return ( - (t = Dm(t)) in n + (t = Am(t)) in n ? Object.defineProperty(n, t, { value: o, enumerable: !0, @@ -17540,7 +17540,7 @@ function oo(n, t, o) { n ); } -function Jp(n, t) { +function Zp(n, t) { var o = Object.keys(n); if (Object.getOwnPropertySymbols) { var a = Object.getOwnPropertySymbols(n); @@ -17556,12 +17556,12 @@ function ie(n) { for (var t = 1; t < arguments.length; t++) { var o = arguments[t] != null ? arguments[t] : {}; t % 2 - ? Jp(Object(o), !0).forEach(function (a) { + ? Zp(Object(o), !0).forEach(function (a) { oo(n, a, o[a]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(n, Object.getOwnPropertyDescriptors(o)) - : Jp(Object(o)).forEach(function (a) { + : Zp(Object(o)).forEach(function (a) { Object.defineProperty(n, a, Object.getOwnPropertyDescriptor(o, a)); }); } @@ -17611,7 +17611,7 @@ function Cc(n, t) { for (var o = 0, a = Array(t); o < t; o++) a[o] = n[o]; return a; } -function zm(n, t) { +function Dm(n, t) { if (n) { if (typeof n == "string") return Cc(n, t); var o = {}.toString.call(n).slice(8, -1); @@ -17631,7 +17631,7 @@ function U2() { In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } function wn(n, t) { - return H2(n) || V2(n, t) || zm(n, t) || U2(); + return H2(n) || V2(n, t) || Dm(n, t) || U2(); } function G2(n, t) { if (n == null) return {}; @@ -17757,19 +17757,19 @@ function K2(n, t) { if (!(n instanceof t)) throw new TypeError("Cannot call a class as a function"); } -function eh(n, t) { +function Jp(n, t) { for (var o = 0; o < t.length; o++) { var a = t[o]; (a.enumerable = a.enumerable || !1), (a.configurable = !0), "value" in a && (a.writable = !0), - Object.defineProperty(n, Dm(a.key), a); + Object.defineProperty(n, Am(a.key), a); } } function X2(n, t, o) { return ( - t && eh(n.prototype, t), - o && eh(n, o), + t && Jp(n.prototype, t), + o && Jp(n, o), Object.defineProperty(n, "prototype", { writable: !1 }), n ); @@ -17803,13 +17803,13 @@ function vi(n) { vi(n) ); } -function Hm() { +function zm() { try { var n = !Boolean.prototype.valueOf.call( Reflect.construct(Boolean, [], function () {}), ); } catch {} - return (Hm = function () { + return (zm = function () { return !!n; })(); } @@ -17829,7 +17829,7 @@ function Z2(n, t) { return Y2(n); } function J2(n) { - var t = Hm(); + var t = zm(); return function () { var o, a = vi(n); @@ -17855,7 +17855,7 @@ function n5() { In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } function Qc(n) { - return e5(n) || t5(n) || zm(n) || n5(); + return e5(n) || t5(n) || Dm(n) || n5(); } function r5(n) { if (n.sheet) return n.sheet; @@ -17928,11 +17928,11 @@ var a5 = (function () { ht = "-ms-", yi = "-moz-", Oe = "-webkit-", - Vm = "comm", + Hm = "comm", Yc = "rule", Zc = "decl", i5 = "@import", - Um = "@keyframes", + Vm = "@keyframes", s5 = "@layer", l5 = Math.abs, Mi = String.fromCharCode, @@ -17943,7 +17943,7 @@ function u5(n, t) { lt(n, 3) : 0; } -function Gm(n) { +function Um(n) { return n.trim(); } function d5(n, t) { @@ -17975,7 +17975,7 @@ function f5(n, t) { } var Ni = 1, lr = 1, - qm = 0, + Gm = 0, Ot = 0, Ye = 0, fr = ""; @@ -18006,7 +18006,7 @@ function h5() { } function Nt() { return ( - (Ye = Ot < qm ? lt(fr, Ot++) : 0), lr++, Ye === 10 && ((lr = 1), Ni++), Ye + (Ye = Ot < Gm ? lt(fr, Ot++) : 0), lr++, Ye === 10 && ((lr = 1), Ni++), Ye ); } function dn() { @@ -18050,14 +18050,14 @@ function ho(n) { } return 0; } -function Wm(n) { - return (Ni = lr = 1), (qm = cn((fr = n))), (Ot = 0), []; +function qm(n) { + return (Ni = lr = 1), (Gm = cn((fr = n))), (Ot = 0), []; } -function Km(n) { +function Wm(n) { return (fr = ""), n; } function Ya(n) { - return Gm(_o(Ot - 1, Ec(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); + return Um(_o(Ot - 1, Ec(n === 91 ? n + 2 : n === 40 ? n + 1 : n))); } function m5(n) { for (; (Ye = dn()) && Ye < 33; ) Nt(); @@ -18100,7 +18100,7 @@ function v5(n) { return _o(n, Ot); } function y5(n) { - return Km(Za("", null, null, null, [""], (n = Wm(n)), 0, [0], n)); + return Wm(Za("", null, null, null, [""], (n = qm(n)), 0, [0], n)); } function Za(n, t, o, a, i, c, d, h, f) { for ( @@ -18167,8 +18167,8 @@ function Za(n, t, o, a, i, c, d, h, f) { cn(N) - v && La( x > 32 - ? nh(N + ";", a, o, v - 1) - : nh(Ee(N, " ", "") + ";", a, o, v - 2), + ? th(N + ";", a, o, v - 1) + : th(Ee(N, " ", "") + ";", a, o, v - 2), f, ); break; @@ -18176,7 +18176,7 @@ function Za(n, t, o, a, i, c, d, h, f) { N += ";"; default: if ( - (La(($ = th(N, t, o, m, b, i, h, R, (L = []), (j = []), v)), c), + (La(($ = eh(N, t, o, m, b, i, h, R, (L = []), (j = []), v)), c), T === 123) ) if (b === 0) Za(N, t, $, $, L, c, v, h, j); @@ -18190,7 +18190,7 @@ function Za(n, t, o, a, i, c, d, h, f) { n, $, $, - a && La(th(n, $, $, 0, 0, i, h, R, i, (L = []), v), j), + a && La(eh(n, $, $, 0, 0, i, h, R, i, (L = []), v), j), i, j, v, @@ -18230,20 +18230,20 @@ function Za(n, t, o, a, i, c, d, h, f) { } return c; } -function th(n, t, o, a, i, c, d, h, f, m, b) { +function eh(n, t, o, a, i, c, d, h, f, m, b) { for ( var v = i - 1, y = i === 0 ? c : [""], x = Jc(y), S = 0, O = 0, C = 0; S < a; ++S ) for (var P = 0, T = po(n, v + 1, (v = l5((O = d[S])))), R = n; P < x; ++P) - (R = Gm(O > 0 ? y[P] + " " + T : Ee(T, /&\f/g, y[P]))) && (f[C++] = R); + (R = Um(O > 0 ? y[P] + " " + T : Ee(T, /&\f/g, y[P]))) && (f[C++] = R); return Bi(n, t, o, i === 0 ? Yc : h, f, m, b); } function _5(n, t, o) { - return Bi(n, t, o, Vm, Mi(p5()), po(n, 2, -2), 0); + return Bi(n, t, o, Hm, Mi(p5()), po(n, 2, -2), 0); } -function nh(n, t, o, a) { +function th(n, t, o, a) { return Bi(n, t, o, Zc, po(n, 0, a), po(n, a + 1, -1), a); } function nr(n, t) { @@ -18257,9 +18257,9 @@ function x5(n, t, o, a) { case i5: case Zc: return (n.return = n.return || n.value); - case Vm: + case Hm: return ""; - case Um: + case Vm: return (n.return = n.value + "{" + nr(n.children, a) + "}"); case Yc: n.value = n.props.join(","); @@ -18318,9 +18318,9 @@ var C5 = function (t, o, a) { return t; }, O5 = function (t, o) { - return Km(P5(Wm(t), o)); + return Wm(P5(qm(t), o)); }, - rh = new WeakMap(), + nh = new WeakMap(), E5 = function (t) { if (!(t.type !== "rule" || !t.parent || t.length < 1)) { for ( @@ -18332,10 +18332,10 @@ var C5 = function (t, o, a) { ) if (((a = a.parent), !a)) return; if ( - !(t.props.length === 1 && o.charCodeAt(0) !== 58 && !rh.get(a)) && + !(t.props.length === 1 && o.charCodeAt(0) !== 58 && !nh.get(a)) && !i ) { - rh.set(t, !0); + nh.set(t, !0); for ( var c = [], d = O5(o, c), h = a.props, f = 0, m = 0; f < d.length; @@ -18354,7 +18354,7 @@ var C5 = function (t, o, a) { ((t.return = ""), (t.value = "")); } }; -function Xm(n, t) { +function Km(n, t) { switch (u5(n, t)) { case 5103: return Oe + "print-" + n + n; @@ -18484,7 +18484,7 @@ function Xm(n, t) { ); case 115: return ~Oc(n, "stretch") - ? Xm(Ee(n, "stretch", "fill-available"), t) + n + ? Km(Ee(n, "stretch", "fill-available"), t) + n : n; } break; @@ -18528,9 +18528,9 @@ var j5 = function (t, o, a, i) { if (t.length > -1 && !t.return) switch (t.type) { case Zc: - t.return = Xm(t.value, t.length); + t.return = Km(t.value, t.length); break; - case Um: + case Vm: return nr([eo(t, { value: Ee(t.value, "@", "@" + Oe) })], i); case Yc: if (t.length) @@ -18632,10 +18632,10 @@ var j5 = function (t, o, a, i) { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ var oh; + */ var rh; function R5() { - if (oh) return je; - oh = 1; + if (rh) return je; + rh = 1; var n = typeof Symbol == "function" && Symbol.for, t = n ? Symbol.for("react.element") : 60103, o = n ? Symbol.for("react.portal") : 60106, @@ -18766,14 +18766,14 @@ function R5() { je ); } -var ah; +var oh; function M5() { - return ah || ((ah = 1), (Ql.exports = R5())), Ql.exports; + return oh || ((oh = 1), (Ql.exports = R5())), Ql.exports; } -var Yl, ih; +var Yl, ah; function N5() { - if (ih) return Yl; - ih = 1; + if (ah) return Yl; + ah = 1; var n = M5(), t = { childContextTypes: !0, @@ -18856,14 +18856,14 @@ function L5(n, t, o) { a ); } -var Qm = function (t, o, a) { +var Xm = function (t, o, a) { var i = t.key + "-" + o.name; (a === !1 || B5 === !1) && t.registered[i] === void 0 && (t.registered[i] = o.styles); }, $5 = function (t, o, a) { - Qm(t, o, a); + Xm(t, o, a); var i = t.key + "-" + o.name; if (t.inserted[o.name] === void 0) { var c = o; @@ -18949,16 +18949,16 @@ var D5 = { }, z5 = /[A-Z]|^ms/g, H5 = /_EMO_([^_]+?)_([^]*?)_EMO_/g, - Ym = function (t) { + Qm = function (t) { return t.charCodeAt(1) === 45; }, - sh = function (t) { + ih = function (t) { return t != null && typeof t != "boolean"; }, Zl = k5(function (n) { - return Ym(n) ? n : n.replace(z5, "-$&").toLowerCase(); + return Qm(n) ? n : n.replace(z5, "-$&").toLowerCase(); }), - lh = function (t, o) { + sh = function (t, o) { switch (t) { case "animation": case "animationName": @@ -18967,7 +18967,7 @@ var D5 = { return (un = { name: i, styles: c, next: un }), i; }); } - return D5[t] !== 1 && !Ym(t) && typeof o == "number" && o !== 0 + return D5[t] !== 1 && !Qm(t) && typeof o == "number" && o !== 0 ? o + "px" : o; }; @@ -19014,10 +19014,10 @@ function V5(n, t, o) { var d = o[c]; if (typeof d != "object") { var h = d; - sh(h) && (a += Zl(c) + ":" + lh(c, h) + ";"); + ih(h) && (a += Zl(c) + ":" + sh(c, h) + ";"); } else if (Array.isArray(d) && typeof d[0] == "string" && t == null) for (var f = 0; f < d.length; f++) - sh(d[f]) && (a += Zl(c) + ":" + lh(c, d[f]) + ";"); + ih(d[f]) && (a += Zl(c) + ":" + sh(c, d[f]) + ";"); else { var m = mo(n, t, d); switch (c) { @@ -19033,9 +19033,9 @@ function V5(n, t, o) { } return a; } -var ch = /label:\s*([^\s;{]+)\s*(;|$)/g, +var lh = /label:\s*([^\s;{]+)\s*(;|$)/g, un; -function Zm(n, t, o) { +function Ym(n, t, o) { if ( n.length === 1 && typeof n[0] == "object" && @@ -19057,21 +19057,21 @@ function Zm(n, t, o) { var f = c; i += f[h]; } - ch.lastIndex = 0; - for (var m = "", b; (b = ch.exec(i)) !== null; ) m += "-" + b[1]; + lh.lastIndex = 0; + for (var m = "", b; (b = lh.exec(i)) !== null; ) m += "-" + b[1]; var v = A5(i) + m; return { name: v, styles: i, next: un }; } var U5 = function (t) { return t(); }, - G5 = lp.useInsertionEffect ? lp.useInsertionEffect : !1, + G5 = sp.useInsertionEffect ? sp.useInsertionEffect : !1, q5 = G5 || U5, - Jm = V.createContext(typeof HTMLElement < "u" ? F5({ key: "css" }) : null); -Jm.Provider; + Zm = V.createContext(typeof HTMLElement < "u" ? F5({ key: "css" }) : null); +Zm.Provider; var W5 = function (t) { return V.forwardRef(function (o, a) { - var i = V.useContext(Jm); + var i = V.useContext(Zm); return t(o, i, a); }); }, @@ -19088,7 +19088,7 @@ var W5 = function (t) { a = t.serialized, i = t.isStringTag; return ( - Qm(o, a, i), + Xm(o, a, i), q5(function () { return $5(o, a, i); }), @@ -19104,7 +19104,7 @@ var W5 = function (t) { typeof n.className == "string" ? (d = L5(t.registered, c, n.className)) : n.className != null && (d = n.className + " "); - var h = Zm(c, void 0, V.useContext(K5)); + var h = Ym(c, void 0, V.useContext(K5)); d += t.key + "-" + h.name; var f = {}; for (var m in n) eu.call(n, m) && m !== "css" && m !== Tc && (f[m] = n[m]); @@ -19141,7 +19141,7 @@ var W5 = function (t) { function tu() { for (var n = arguments.length, t = new Array(n), o = 0; o < n; o++) t[o] = arguments[o]; - return Zm(t); + return Ym(t); } function J5() { var n = tu.apply(void 0, arguments), @@ -19163,7 +19163,7 @@ function ex(n, t) { ) ); } -var tx = Nh(); +var tx = Mh(); const nx = Math.min, rx = Math.max, _i = Math.round, @@ -19185,8 +19185,8 @@ function ox(n) { function Li() { return typeof window < "u"; } -function eg(n) { - return ng(n) ? (n.nodeName || "").toLowerCase() : "#document"; +function Jm(n) { + return tg(n) ? (n.nodeName || "").toLowerCase() : "#document"; } function kn(n) { var t; @@ -19195,13 +19195,13 @@ function kn(n) { window ); } -function tg(n) { +function eg(n) { var t; - return (t = (ng(n) ? n.ownerDocument : n.document) || window.document) == null + return (t = (tg(n) ? n.ownerDocument : n.document) || window.document) == null ? void 0 : t.documentElement; } -function ng(n) { +function tg(n) { return Li() ? n instanceof Node || n instanceof kn(n).Node : !1; } function ax(n) { @@ -19210,12 +19210,12 @@ function ax(n) { function nu(n) { return Li() ? n instanceof HTMLElement || n instanceof kn(n).HTMLElement : !1; } -function uh(n) { +function ch(n) { return !Li() || typeof ShadowRoot > "u" ? !1 : n instanceof ShadowRoot || n instanceof kn(n).ShadowRoot; } -function rg(n) { +function ng(n) { const { overflow: t, overflowX: o, overflowY: a, display: i } = ru(n); return ( /auto|scroll|overlay|hidden|clip/.test(t + a + o) && @@ -19228,30 +19228,30 @@ function ix() { : CSS.supports("-webkit-backdrop-filter", "none"); } function sx(n) { - return ["html", "body", "#document"].includes(eg(n)); + return ["html", "body", "#document"].includes(Jm(n)); } function ru(n) { return kn(n).getComputedStyle(n); } function lx(n) { - if (eg(n) === "html") return n; - const t = n.assignedSlot || n.parentNode || (uh(n) && n.host) || tg(n); - return uh(t) ? t.host : t; + if (Jm(n) === "html") return n; + const t = n.assignedSlot || n.parentNode || (ch(n) && n.host) || eg(n); + return ch(t) ? t.host : t; } -function og(n) { +function rg(n) { const t = lx(n); return sx(t) ? n.ownerDocument ? n.ownerDocument.body : n.body - : nu(t) && rg(t) + : nu(t) && ng(t) ? t - : og(t); + : rg(t); } function Si(n, t, o) { var a; t === void 0 && (t = []), o === void 0 && (o = !0); - const i = og(n), + const i = rg(n), c = i === ((a = n.ownerDocument) == null ? void 0 : a.body), d = kn(i); if (c) { @@ -19259,7 +19259,7 @@ function Si(n, t, o) { return t.concat( d, d.visualViewport || [], - rg(i) ? i : [], + ng(i) ? i : [], h && o ? Si(h) : [], ); } @@ -19281,7 +19281,7 @@ function cx(n) { function ou(n) { return ax(n) ? n : n.contextElement; } -function dh(n) { +function uh(n) { const t = ou(n); if (!nu(t)) return xi(1); const o = t.getBoundingClientRect(), @@ -19304,12 +19304,12 @@ function dx(n) { function fx(n, t, o) { return !1; } -function fh(n, t, o, a) { +function dh(n, t, o, a) { t === void 0 && (t = !1); const i = n.getBoundingClientRect(), c = ou(n); let d = xi(1); - t && (d = dh(n)); + t && (d = uh(n)); const h = fx() ? dx(c) : xi(0); let f = (i.left + h.x) / d.x, m = (i.top + h.y) / d.y, @@ -19321,7 +19321,7 @@ function fh(n, t, o, a) { let S = y, O = jc(S); for (; O && a && x !== S; ) { - const C = dh(O), + const C = uh(O), P = O.getBoundingClientRect(), T = ru(O), R = P.left + (O.clientLeft + parseFloat(T.paddingLeft)) * C.x, @@ -19338,7 +19338,7 @@ function fh(n, t, o, a) { } return ox({ width: b, height: v, x: f, y: m }); } -function ag(n, t) { +function og(n, t) { return ( n.x === t.x && n.y === t.y && n.width === t.width && n.height === t.height ); @@ -19346,7 +19346,7 @@ function ag(n, t) { function px(n, t) { let o = null, a; - const i = tg(n); + const i = eg(n); function c() { var h; clearTimeout(a), (h = o) == null || h.disconnect(), (o = null); @@ -19375,7 +19375,7 @@ function px(n, t) { d(!1, 1e-7); }, 1e3)); } - N === 1 && !ag(m, n.getBoundingClientRect()) && d(), (L = !1); + N === 1 && !og(m, n.getBoundingClientRect()) && d(), (L = !1); } try { o = new IntersectionObserver(j, { ...R, root: i.ownerDocument }); @@ -19421,11 +19421,11 @@ function hx(n, t, o, a) { m && !f && x.observe(m), x.observe(t)); let S, - O = f ? fh(n) : null; + O = f ? dh(n) : null; f && C(); function C() { - const P = fh(n); - O && !ag(O, P) && o(), (O = P), (S = requestAnimationFrame(C)); + const P = dh(n); + O && !og(O, P) && o(), (O = P), (S = requestAnimationFrame(C)); } return ( o(), @@ -19482,14 +19482,14 @@ function bx(n, t) { }) .join(" "); } -var ph = function (t) { +var fh = function (t) { return Px(t) ? t.filter(Boolean) : _0(t) === "object" && t !== null ? [t] : []; }, - ig = function (t) { + ag = function (t) { t.className, t.clearValue, t.cx, @@ -19520,7 +19520,7 @@ function $i(n) { function vx(n) { return $i(n) ? window.innerHeight : n.clientHeight; } -function sg(n) { +function ig(n) { return $i(n) ? window.pageYOffset : n.scrollTop; } function ki(n, t) { @@ -19550,7 +19550,7 @@ function _x(n, t, o, a) { function Aa(n, t) { var o = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 200, a = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : wi, - i = sg(n), + i = ig(n), c = t - i, d = 10, h = 0; @@ -19561,7 +19561,7 @@ function Aa(n, t) { } f(); } -function hh(n, t) { +function ph(n, t) { var o = n.getBoundingClientRect(), a = t.getBoundingClientRect(), i = t.offsetHeight / 3; @@ -19586,7 +19586,7 @@ function xx(n) { width: t.width, }; } -function mh() { +function hh() { try { return document.createEvent("TouchEvent"), !0; } catch { @@ -19602,17 +19602,17 @@ function Sx() { return !1; } } -var lg = !1, +var sg = !1, wx = { get passive() { - return (lg = !0); + return (sg = !0); }, }, Da = typeof window < "u" ? window : {}; Da.addEventListener && Da.removeEventListener && (Da.addEventListener("p", wi, wx), Da.removeEventListener("p", wi, !1)); -var kx = lg; +var kx = sg; function Cx(n) { return n != null; } @@ -19663,7 +19663,7 @@ function jx(n) { C = o.offsetParent.getBoundingClientRect(), P = C.top, T = d ? window.innerHeight : vx(f), - R = sg(f), + R = ig(f), L = parseInt(getComputedStyle(o).marginBottom, 10), j = parseInt(getComputedStyle(o).marginTop, 10), $ = P - j, @@ -19717,7 +19717,7 @@ function Ix(n) { var t = { bottom: "top", top: "bottom" }; return n ? t[n] : "bottom"; } -var cg = function (t) { +var lg = function (t) { return t === "auto" ? "bottom" : t; }, Fx = function (t, o) { @@ -19746,7 +19746,7 @@ var cg = function (t) { }, ); }, - ug = V.createContext(null), + cg = V.createContext(null), Rx = function (t) { var o = t.children, a = t.minMenuHeight, @@ -19755,7 +19755,7 @@ var cg = function (t) { d = t.menuPosition, h = t.menuShouldScrollIntoView, f = t.theme, - m = V.useContext(ug) || {}, + m = V.useContext(cg) || {}, b = m.setPortalPlacement, v = V.useRef(null), y = V.useState(i), @@ -19790,7 +19790,7 @@ var cg = function (t) { ), o({ ref: v, - placerProps: ie(ie({}, t), {}, { placement: T || cg(c), maxHeight: S }), + placerProps: ie(ie({}, t), {}, { placement: T || lg(c), maxHeight: S }), }) ); }, @@ -19830,7 +19830,7 @@ var cg = function (t) { o, ); }, - dg = function (t, o) { + ug = function (t, o) { var a = t.theme, i = a.spacing.baseUnit, c = a.colors; @@ -19844,8 +19844,8 @@ var cg = function (t) { }, ); }, - $x = dg, - Ax = dg, + $x = ug, + Ax = ug, Dx = function (t) { var o = t.children, a = o === void 0 ? "No options" : o, @@ -19899,7 +19899,7 @@ var cg = function (t) { h = t.menuPosition, f = V.useRef(null), m = V.useRef(null), - b = V.useState(cg(d)), + b = V.useState(lg(d)), v = wn(b, 2), y = v[0], x = v[1], @@ -19974,7 +19974,7 @@ var cg = function (t) { ), a, ); - return ne(ug.Provider, { value: S }, o ? tx.createPortal($, o) : $); + return ne(cg.Provider, { value: S }, o ? tx.createPortal($, o) : $); }, Ux = function (t) { var o = t.isDisabled, @@ -20057,7 +20057,7 @@ var cg = function (t) { o, ); }, - gh, + mh, Qx = ["size"], Yx = ["innerProps", "isRtl", "size"], Zx = { @@ -20065,7 +20065,7 @@ var cg = function (t) { styles: "display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0", }, - fg = function (t) { + dg = function (t) { var o = t.size, a = Cn(t, Qx); return ne( @@ -20085,23 +20085,23 @@ var cg = function (t) { }, au = function (t) { return ne( - fg, + dg, ce({ size: 20 }, t), ne("path", { d: "M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z", }), ); }, - pg = function (t) { + fg = function (t) { return ne( - fg, + dg, ce({ size: 20 }, t), ne("path", { d: "M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z", }), ); }, - hg = function (t, o) { + pg = function (t, o) { var a = t.isFocused, i = t.theme, c = i.spacing.baseUnit, @@ -20121,7 +20121,7 @@ var cg = function (t) { }, ); }, - Jx = hg, + Jx = pg, e4 = function (t) { var o = t.children, a = t.innerProps; @@ -20132,10 +20132,10 @@ var cg = function (t) { Ge(t, "dropdownIndicator", { indicator: !0, "dropdown-indicator": !0 }), a, ), - o || ne(pg, null), + o || ne(fg, null), ); }, - t4 = hg, + t4 = pg, n4 = function (t) { var o = t.children, a = t.innerProps; @@ -20173,8 +20173,8 @@ var cg = function (t) { ); }, a4 = J5( - gh || - (gh = ex([ + mh || + (mh = ex([ ` 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } @@ -20358,7 +20358,7 @@ var cg = function (t) { ); }, m4 = function (t) { - var o = ig(t); + var o = ag(t); o.data; var a = Cn(o, d4); return ne("div", ce({}, Ge(t, "groupHeading", { "group-heading": !0 }), a)); @@ -20389,7 +20389,7 @@ var cg = function (t) { }, ); }, - mg = { + hg = { gridArea: "1 / 2", font: "inherit", minWidth: "2px", @@ -20409,7 +20409,7 @@ var cg = function (t) { visibility: "hidden", whiteSpace: "pre", }, - mg, + hg, ), }, _4 = function (t) { @@ -20421,13 +20421,13 @@ var cg = function (t) { opacity: t ? 0 : 1, width: "100%", }, - mg, + hg, ); }, x4 = function (t) { var o = t.cx, a = t.value, - i = ig(t), + i = ag(t), c = i.innerRef, d = i.isDisabled, h = i.isHidden, @@ -20505,13 +20505,13 @@ var cg = function (t) { }, ); }, - gg = function (t) { + mg = function (t) { var o = t.children, a = t.innerProps; return ne("div", a, o); }, - P4 = gg, - O4 = gg; + P4 = mg, + O4 = mg; function E4(n) { var t = n.children, o = n.innerProps; @@ -20690,7 +20690,7 @@ var T4 = function (t) { ClearIndicator: n4, Control: u4, DropdownIndicator: e4, - DownChevron: pg, + DownChevron: fg, CrossIcon: au, Group: g4, GroupHeading: m4, @@ -20716,13 +20716,13 @@ var T4 = function (t) { z4 = function (t) { return ie(ie({}, D4), t.components); }, - bh = + gh = Number.isNaN || function (t) { return typeof t == "number" && t !== t; }; function H4(n, t) { - return !!(n === t || (bh(n) && bh(t))); + return !!(n === t || (gh(n) && gh(t))); } function V4(n, t) { if (n.length !== t.length) return !1; @@ -20753,7 +20753,7 @@ var G4 = { q4 = function (t) { return ne("span", ce({ css: G4 }, t)); }, - vh = q4, + bh = q4, W4 = { guidance: function (t) { var o = t.isSearchable, @@ -20954,9 +20954,9 @@ var G4 = { return ne( V.Fragment, null, - ne(vh, { id: m }, le && xe), + ne(bh, { id: m }, le && xe), ne( - vh, + bh, { "aria-live": N, "aria-atomic": "false", @@ -21062,17 +21062,17 @@ var G4 = { "]", "g", ), - bg = {}; + gg = {}; for (var ec = 0; ec < Fc.length; ec++) for (var tc = Fc[ec], nc = 0; nc < tc.letters.length; nc++) - bg[tc.letters[nc]] = tc.base; -var vg = function (t) { + gg[tc.letters[nc]] = tc.base; +var bg = function (t) { return t.replace(Q4, function (o) { - return bg[o]; + return gg[o]; }); }, - Y4 = U4(vg), - yh = function (t) { + Y4 = U4(bg), + vh = function (t) { return t.replace(/^\s+|\s+$/g, ""); }, Z4 = function (t) { @@ -21096,11 +21096,11 @@ var vg = function (t) { h = i.stringify, f = i.trim, m = i.matchFrom, - b = f ? yh(a) : a, - v = f ? yh(h(o)) : h(o); + b = f ? vh(a) : a, + v = f ? vh(h(o)) : h(o); return ( c && ((b = b.toLowerCase()), (v = v.toLowerCase())), - d && ((b = Y4(b)), (v = vg(v))), + d && ((b = Y4(b)), (v = bg(v))), m === "start" ? v.substr(0, b.length) === b : v.indexOf(b) > -1 ); }; @@ -21234,29 +21234,29 @@ function r3(n) { } ); } -var _h = ["boxSizing", "height", "overflow", "paddingRight", "position"], - xh = { +var yh = ["boxSizing", "height", "overflow", "paddingRight", "position"], + _h = { boxSizing: "border-box", overflow: "hidden", position: "relative", height: "100%", }; -function Sh(n) { +function xh(n) { n.cancelable && n.preventDefault(); } -function wh(n) { +function Sh(n) { n.stopPropagation(); } -function kh() { +function wh() { var n = this.scrollTop, t = this.scrollHeight, o = n + this.offsetHeight; n === 0 ? (this.scrollTop = 1) : o === t && (this.scrollTop = n - 1); } -function Ch() { +function kh() { return "ontouchstart" in window || navigator.maxTouchPoints; } -var Ph = !!( +var Ch = !!( typeof window < "u" && window.document && window.document.createElement @@ -21271,12 +21271,12 @@ function o3(n) { c = V.useRef(null), d = V.useCallback( function (f) { - if (Ph) { + if (Ch) { var m = document.body, b = m && m.style; if ( (a && - _h.forEach(function (S) { + yh.forEach(function (S) { var O = b && b[S]; i.current[S] = O; }), @@ -21285,18 +21285,18 @@ function o3(n) { var v = parseInt(i.current.paddingRight, 10) || 0, y = document.body ? document.body.clientWidth : 0, x = window.innerWidth - y + v || 0; - Object.keys(xh).forEach(function (S) { - var O = xh[S]; + Object.keys(_h).forEach(function (S) { + var O = _h[S]; b && (b[S] = O); }), b && (b.paddingRight = "".concat(x, "px")); } m && - Ch() && - (m.addEventListener("touchmove", Sh, Y0), + kh() && + (m.addEventListener("touchmove", xh, Y0), f && - (f.addEventListener("touchstart", kh, Y0), - f.addEventListener("touchmove", wh, Y0))), + (f.addEventListener("touchstart", wh, Y0), + f.addEventListener("touchmove", Sh, Y0))), (to += 1); } }, @@ -21304,22 +21304,22 @@ function o3(n) { ), h = V.useCallback( function (f) { - if (Ph) { + if (Ch) { var m = document.body, b = m && m.style; (to = Math.max(to - 1, 0)), a && to < 1 && - _h.forEach(function (v) { + yh.forEach(function (v) { var y = i.current[v]; b && (b[v] = y); }), m && - Ch() && - (m.removeEventListener("touchmove", Sh, Y0), + kh() && + (m.removeEventListener("touchmove", xh, Y0), f && - (f.removeEventListener("touchstart", kh, Y0), - f.removeEventListener("touchmove", wh, Y0))); + (f.removeEventListener("touchstart", wh, Y0), + f.removeEventListener("touchmove", Sh, Y0))); } }, [a], @@ -21409,17 +21409,17 @@ function iu(n) { function d3() { return iu(/^iPhone/i); } -function yg() { +function vg() { return iu(/^Mac/i); } function f3() { - return iu(/^iPad/i) || (yg() && navigator.maxTouchPoints > 1); + return iu(/^iPad/i) || (vg() && navigator.maxTouchPoints > 1); } function p3() { return d3() || f3(); } function h3() { - return yg() || p3(); + return vg() || p3(); } var m3 = function (t) { return t.label; @@ -21477,16 +21477,16 @@ var m3 = function (t) { neutral90: "hsl(0, 0%, 10%)", }, x3 = 4, - _g = 4, + yg = 4, S3 = 38, - w3 = _g * 2, - k3 = { baseUnit: _g, controlHeight: S3, menuGutter: w3 }, + w3 = yg * 2, + k3 = { baseUnit: yg, controlHeight: S3, menuGutter: w3 }, rc = { borderRadius: x3, colors: _3, spacing: k3 }, C3 = { "aria-live": "polite", backspaceRemovesValue: !0, - blurInputOnSelect: mh(), - captureMenuScroll: !mh(), + blurInputOnSelect: hh(), + captureMenuScroll: !hh(), classNames: {}, closeMenuOnSelect: !0, closeMenuOnScroll: !1, @@ -21530,10 +21530,10 @@ var m3 = function (t) { tabSelectsValue: !0, unstyled: !1, }; -function Oh(n, t, o, a) { - var i = wg(n, t, o), - c = kg(n, t, o), - d = Sg(n, t), +function Ph(n, t, o, a) { + var i = Sg(n, t, o), + c = wg(n, t, o), + d = xg(n, t), h = Ci(n, t); return { type: "option", @@ -21551,21 +21551,21 @@ function Ja(n, t) { if ("options" in o) { var i = o.options .map(function (d, h) { - return Oh(n, d, t, h); + return Ph(n, d, t, h); }) .filter(function (d) { - return Th(n, d); + return Eh(n, d); }); return i.length > 0 ? { type: "group", data: o, options: i, index: a } : void 0; } - var c = Oh(n, o, t, a); - return Th(n, c) ? c : void 0; + var c = Ph(n, o, t, a); + return Eh(n, c) ? c : void 0; }) .filter(Cx); } -function xg(n) { +function _g(n) { return n.reduce(function (t, o) { return ( o.type === "group" @@ -21582,7 +21582,7 @@ function xg(n) { ); }, []); } -function Eh(n, t) { +function Oh(n, t) { return n.reduce(function (o, a) { return ( a.type === "group" @@ -21603,16 +21603,16 @@ function Eh(n, t) { }, []); } function P3(n, t) { - return xg(Ja(n, t)); + return _g(Ja(n, t)); } -function Th(n, t) { +function Eh(n, t) { var o = n.inputValue, a = o === void 0 ? "" : o, i = t.data, c = t.isSelected, d = t.label, h = t.value; - return (!Pg(n) || !c) && Cg(n, { label: d, value: h, data: i }, a); + return (!Cg(n) || !c) && kg(n, { label: d, value: h, data: i }, a); } function O3(n, t) { var o = n.focusedValue, @@ -21639,18 +21639,18 @@ var oc = function (t, o) { : a.id; return i || null; }, - Sg = function (t, o) { + xg = function (t, o) { return t.getOptionLabel(o); }, Ci = function (t, o) { return t.getOptionValue(o); }; -function wg(n, t, o) { +function Sg(n, t, o) { return typeof n.isOptionDisabled == "function" ? n.isOptionDisabled(t, o) : !1; } -function kg(n, t, o) { +function wg(n, t, o) { if (o.indexOf(t) > -1) return !0; if (typeof n.isOptionSelected == "function") return n.isOptionSelected(t, o); var a = Ci(n, t); @@ -21658,16 +21658,16 @@ function kg(n, t, o) { return Ci(n, i) === a; }); } -function Cg(n, t, o) { +function kg(n, t, o) { return n.filterOption ? n.filterOption(t, o) : !0; } -var Pg = function (t) { +var Cg = function (t) { var o = t.hideSelectedOptions, a = t.isMulti; return o === void 0 ? a : o; }, T3 = 1, - Og = (function (n) { + Pg = (function (n) { Q2(o, n); var t = J2(o); function o(a) { @@ -21791,7 +21791,7 @@ var Pg = function (t) { return oc(i.state.focusableOptionsWithIds, f); }), (i.getFocusableOptionsWithIds = function () { - return Eh(Ja(i.props, i.state.selectValue), i.getElementId("option")); + return Oh(Ja(i.props, i.state.selectValue), i.getElementId("option")); }), (i.getValue = function () { return i.state.selectValue; @@ -21802,7 +21802,7 @@ var Pg = function (t) { return bx.apply(void 0, [i.props.classNamePrefix].concat(m)); }), (i.getOptionLabel = function (f) { - return Sg(i.props, f); + return xg(i.props, f); }), (i.getOptionValue = function (f) { return Ci(i.props, f); @@ -21833,7 +21833,7 @@ var Pg = function (t) { return i.props.menuIsOpen ? i.buildCategorizedOptions() : []; }), (i.buildFocusableOptions = function () { - return xg(i.buildCategorizedOptions()); + return _g(i.buildCategorizedOptions()); }), (i.getFocusableOptions = function () { return i.props.menuIsOpen ? i.buildFocusableOptions() : []; @@ -21978,7 +21978,7 @@ var Pg = function (t) { } }), (i.shouldHideSelectedOptions = function () { - return Pg(i.props); + return Cg(i.props); }), (i.onValueInputFocus = function (f) { f.preventDefault(), f.stopPropagation(), i.focus(); @@ -22087,7 +22087,7 @@ var Pg = function (t) { }), (i.state.instancePrefix = "react-select-" + (i.props.instanceId || ++T3)), - (i.state.selectValue = ph(a.value)), + (i.state.selectValue = fh(a.value)), a.menuIsOpen && i.state.selectValue.length) ) { var c = i.getFocusableOptionsWithIds(), @@ -22117,7 +22117,7 @@ var Pg = function (t) { this.state.focusedOption && this.menuListRef && this.focusedOptionRef && - hh(this.menuListRef, this.focusedOptionRef); + ph(this.menuListRef, this.focusedOptionRef); }, }, { @@ -22139,7 +22139,7 @@ var Pg = function (t) { this.menuListRef && this.focusedOptionRef && this.scrollToFocusedOptionOnUpdate && - (hh(this.menuListRef, this.focusedOptionRef), + (ph(this.menuListRef, this.focusedOptionRef), (this.scrollToFocusedOptionOnUpdate = !1)); }, }, @@ -22341,19 +22341,19 @@ var Pg = function (t) { { key: "isOptionDisabled", value: function (i, c) { - return wg(this.props, i, c); + return Sg(this.props, i, c); }, }, { key: "isOptionSelected", value: function (i, c) { - return kg(this.props, i, c); + return wg(this.props, i, c); }, }, { key: "filterOption", value: function (i, c) { - return Cg(this.props, i, c); + return kg(this.props, i, c); }, }, { @@ -23007,7 +23007,7 @@ var Pg = function (t) { O = i.menuIsOpen, C = i.inputValue, P = i.isMulti, - T = ph(S), + T = fh(S), R = {}; if ( d && @@ -23017,7 +23017,7 @@ var Pg = function (t) { C !== d.inputValue) ) { var L = O ? P3(i, T) : [], - j = O ? Eh(Ja(i, T), "".concat(y, "-option")) : [], + j = O ? Oh(Ja(i, T), "".concat(y, "-option")) : [], $ = h ? O3(c, T) : null, N = E3(c, L), K = oc(j, N); @@ -23060,13 +23060,13 @@ var Pg = function (t) { o ); })(V.Component); -Og.defaultProps = C3; +Pg.defaultProps = C3; var j3 = V.forwardRef(function (n, t) { var o = W2(n); - return V.createElement(Og, ce({ ref: t }, o)); + return V.createElement(Pg, ce({ ref: t }, o)); }), I3 = j3; -function jh({ isDark: n, context: t, isFocused: o = !1, isSelected: a = !1 }) { +function Th({ isDark: n, context: t, isFocused: o = !1, isSelected: a = !1 }) { if (t === "control") return o ? (n ? "#222222" : "#E8E8E8") : n ? "#383838" : "#F1F1F1"; if (t === "option") @@ -23078,7 +23078,7 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => styles: { control: (i, c) => ({ ...i, - backgroundColor: jh({ + backgroundColor: Th({ isDark: n, context: "control", isFocused: c.isFocused, @@ -23122,7 +23122,7 @@ const ac = ({ isDark: n, options: t, selectedOption: o, onChange: a }) => padding: "4px 8px", fontFamily: "monospace", borderRadius: "6px", - backgroundColor: jh({ + backgroundColor: Th({ isDark: n, context: "option", isSelected: c.isSelected, @@ -26320,7 +26320,7 @@ const _w = [ "getAccountInfo", "getBalance", ], - Ih = [ + jh = [ "eth_getBlockByNumber", "eth_getTransactionByHash", "eth_getTransactionCount", @@ -26334,7 +26334,7 @@ const _w = [ "eth_blockNumber", ], xw = ["alchemy_getAssetTransfers", "alchemy_getTokenBalances"], - Fh = Object.assign({ + Ih = Object.assign({ "./code-samples/alchemy_getAssetTransfers/bash/ethereum-mainnet/request": R3, "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/request": N3, @@ -26402,7 +26402,7 @@ const _w = [ "./code-samples/getTokenAccountsByOwner/bash/solana-mainnet/request": X6, "./code-samples/getTransaction/bash/solana-mainnet/request": Y6, }), - Rh = Object.assign({ + Fh = Object.assign({ "./code-samples/alchemy_getAssetTransfers/bash/ethereum-mainnet/response": J6, "./code-samples/alchemy_getTokenBalances/bash/ethereum-mainnet/response": @@ -26480,19 +26480,19 @@ function Sw() { [i, c, d] = a; return { apiKey: i, langKey: c, chainKey: d }; } - for (const o in Fh) { + for (const o in Ih) { const { apiKey: a, langKey: i, chainKey: c } = t(o); n[a] || (n[a] = {}), n[a][i] || (n[a][i] = {}), n[a][i][c] || (n[a][i][c] = { request: "", response: "" }), - (n[a][i][c].request = Fh[o].default); + (n[a][i][c].request = Ih[o].default); } - for (const o in Rh) { + for (const o in Fh) { const { apiKey: a, langKey: i, chainKey: c } = t(o); n[a] || (n[a] = {}), n[a][i] || (n[a][i] = {}), n[a][i][c] || (n[a][i][c] = { request: "", response: "" }), - (n[a][i][c].response = Rh[o].default); + (n[a][i][c].response = Fh[o].default); } return n; } @@ -26586,7 +26586,7 @@ const Ha = Sw(), Tw = (n) => n === go.solanaMainnet ? _w.map((o) => ({ value: o, label: o })) - : (n === go.ethereumMainnet ? [...xw, ...Ih] : Ih).map((o) => ({ + : (n === go.ethereumMainnet ? [...xw, ...jh] : jh).map((o) => ({ value: o, label: o, })), @@ -26877,7 +26877,7 @@ const Ha = Sw(), ); }, Mc = "code-block-id", - Mh = async () => { + Rh = async () => { var o; let n = document.getElementById(Mc); if ( @@ -26894,9 +26894,9 @@ const Ha = Sw(), (n.style.display = "block"), (o = document.getElementById("builtwithfern")) == null || o.remove(); }, - su = async () => { + Og = async () => { console.log("initializeApp"), - window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Mh()), + window.location.pathname.replace(/\/+$/, "") === "/docs" && (await Rh()), new MutationObserver(async (o) => { if (!(window.location.pathname.replace(/\/+$/, "") === "/docs")) return; o.some((d) => { @@ -26906,12 +26906,14 @@ const Ha = Sw(), (m = document.getElementById(Mc)) != null && m.hasChildNodes() ); return h && f; - }) && (await Mh()); + }) && (await Rh()); }).observe(document.body, { childList: !0, subtree: !0 }); }; -window.initializeApp = su; -su(); -window.addEventListener("popstate", su); +console.log("running initializeApp"); +Og(); +window.addEventListener("popstate", () => { + console.log("popstate"), Og(); +}); const Iw = Object.freeze({ displayName: "Shell", name: "shellscript", diff --git a/fern/home/index.mdx b/fern/home/index.mdx index 2ad64cafe..c9655d8b4 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -5,18 +5,9 @@ hide-feedback: true --- import { AlchemyFooter } from "../components/Footer.tsx"; +import "../dist/output.js";
-

Build anything onchain

From d2c75313d7cc9f46b79fdf3890f9295005c3c269 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Fri, 1 Aug 2025 01:10:33 -0400 Subject: [PATCH 13/16] fix: retry wrapper script that infers baseUrl from itself --- fern/assets/homepage-loader.js | 38 +++++++++++++++++++++++++++------- fern/docs.yml | 2 ++ fern/home/index.mdx | 1 - 3 files changed, 32 insertions(+), 9 deletions(-) diff --git a/fern/assets/homepage-loader.js b/fern/assets/homepage-loader.js index 9a385c610..1977024bf 100644 --- a/fern/assets/homepage-loader.js +++ b/fern/assets/homepage-loader.js @@ -1,19 +1,41 @@ -// Homepage script loader - runs on all pages, only acts on /docs +// Homepage script loader - only downloads output.js on /docs pages console.log("Homepage loader running on:", window.location.pathname); // Only load on homepage const cleanPath = window.location.pathname.replace(/\/+$/, ""); if (cleanPath === "/docs") { - console.log("On homepage, loading script..."); + console.log("On homepage, detecting base URL..."); // Check if already loaded if (!document.getElementById("homepage-script")) { - const script = document.createElement("script"); - script.id = "homepage-script"; - script.src = "./dist/output.js"; // Relative to current page - script.onload = () => console.log("Homepage script loaded successfully"); - script.onerror = (e) => console.error("Failed to load homepage script:", e); - document.head.appendChild(script); + // Find base URL from our own script tag + let baseUrl = null; + const scripts = Array.from(document.querySelectorAll("script[src]")); + for (const script of scripts) { + const src = script.src; + if (src.includes("homepage-loader.js")) { + baseUrl = src.substring(0, src.lastIndexOf("/assets/")); + console.log("Found base URL from homepage-loader.js:", baseUrl); + break; + } + } + + if (baseUrl) { + const scriptUrl = `${baseUrl}/dist/output.js`; + console.log("Loading homepage script from:", scriptUrl); + + const script = document.createElement("script"); + script.id = "homepage-script"; + script.src = scriptUrl; + script.onload = () => console.log("Homepage script loaded successfully"); + script.onerror = (e) => { + console.error("Failed to load homepage script from:", scriptUrl, e); + // Could add fallback logic here + }; + document.head.appendChild(script); + } else { + console.error("Could not determine base URL for homepage script"); + } } else { console.log("Homepage script already loaded"); } diff --git a/fern/docs.yml b/fern/docs.yml index 011c99e27..594f7940d 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -74,6 +74,8 @@ css: - ./components/Footer.css js: + - path: assets/homepage-loader.js + strategy: afterInteractive - path: assets/heap.js strategy: afterInteractive - path: assets/dashboard-referral.js diff --git a/fern/home/index.mdx b/fern/home/index.mdx index c9655d8b4..c14d0a7e1 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -5,7 +5,6 @@ hide-feedback: true --- import { AlchemyFooter } from "../components/Footer.tsx"; -import "../dist/output.js";
From 92abcc3ddd4def1942a783363f491ec4dd79a486 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Fri, 1 Aug 2025 01:24:03 -0400 Subject: [PATCH 14/16] revert: return to inline html script on homepage --- fern/assets/homepage-loader.js | 44 ---------------------------------- fern/docs.yml | 2 -- fern/home/index.mdx | 1 + 3 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 fern/assets/homepage-loader.js diff --git a/fern/assets/homepage-loader.js b/fern/assets/homepage-loader.js deleted file mode 100644 index 1977024bf..000000000 --- a/fern/assets/homepage-loader.js +++ /dev/null @@ -1,44 +0,0 @@ -// Homepage script loader - only downloads output.js on /docs pages -console.log("Homepage loader running on:", window.location.pathname); - -// Only load on homepage -const cleanPath = window.location.pathname.replace(/\/+$/, ""); -if (cleanPath === "/docs") { - console.log("On homepage, detecting base URL..."); - - // Check if already loaded - if (!document.getElementById("homepage-script")) { - // Find base URL from our own script tag - let baseUrl = null; - const scripts = Array.from(document.querySelectorAll("script[src]")); - for (const script of scripts) { - const src = script.src; - if (src.includes("homepage-loader.js")) { - baseUrl = src.substring(0, src.lastIndexOf("/assets/")); - console.log("Found base URL from homepage-loader.js:", baseUrl); - break; - } - } - - if (baseUrl) { - const scriptUrl = `${baseUrl}/dist/output.js`; - console.log("Loading homepage script from:", scriptUrl); - - const script = document.createElement("script"); - script.id = "homepage-script"; - script.src = scriptUrl; - script.onload = () => console.log("Homepage script loaded successfully"); - script.onerror = (e) => { - console.error("Failed to load homepage script from:", scriptUrl, e); - // Could add fallback logic here - }; - document.head.appendChild(script); - } else { - console.error("Could not determine base URL for homepage script"); - } - } else { - console.log("Homepage script already loaded"); - } -} else { - console.log("Not on homepage, skipping script load"); -} diff --git a/fern/docs.yml b/fern/docs.yml index 594f7940d..011c99e27 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -74,8 +74,6 @@ css: - ./components/Footer.css js: - - path: assets/homepage-loader.js - strategy: afterInteractive - path: assets/heap.js strategy: afterInteractive - path: assets/dashboard-referral.js diff --git a/fern/home/index.mdx b/fern/home/index.mdx index c14d0a7e1..f543e8724 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,6 +7,7 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx";
+

Build anything onchain

From 3cc08a8c47b2d7a9fce17eef9d68e41488f12284 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Fri, 1 Aug 2025 02:39:31 -0400 Subject: [PATCH 15/16] fix: try moving loading of output into useEffect --- fern/home/index.mdx | 87 +++++++++++++++++++++++++++++++++++++-------- 1 file changed, 72 insertions(+), 15 deletions(-) diff --git a/fern/home/index.mdx b/fern/home/index.mdx index f543e8724..64a690c7c 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -5,60 +5,107 @@ hide-feedback: true --- import { AlchemyFooter } from "../components/Footer.tsx"; +import React from "react"; + +export const HomepageContent = () => { + React.useEffect(() => { + console.log('HomepageContent useEffect running') + + // Check if script is already loaded + if (document.getElementById('homepage-script')) { + console.log('Homepage script already loaded') + return + } + + // Find base URL from any Fern asset script + const assetLink = document.querySelector('link[href*="/assets/"]') + if (assetLink) { + const assetSrc = assetLink.href + console.log('Found asset script at:', assetSrc) + + const baseUrl = assetSrc.substring(0, assetSrc.lastIndexOf('/assets/')) + const scriptUrl = `${baseUrl}/dist/output.js` + + console.log('Inferred base URL:', baseUrl) + console.log('Loading homepage script from:', scriptUrl) + + // Create and load the script + const script = document.createElement('script') + script.id = 'homepage-script' + script.src = scriptUrl + script.onload = () => console.log('Homepage script loaded successfully') + script.onerror = (e) => console.error('Failed to load homepage script:', e) + document.head.appendChild(script) + } else { + console.error('Could not find any asset script to infer base URL') + console.log('Available scripts:', Array.from(document.querySelectorAll('script[src]')).map(s => s.src)) + } + }, []) + + return null // Don't render anything visible +}
- + + -
-
+

Guides to get started

+
+

Blockchain basics

+

Get started by learning how to connect your app to Ethereum using Alchemy's JSON-RPC API.

Get started

@@ -68,10 +115,12 @@ import { AlchemyFooter } from "../components/Footer.tsx";
+

Onboard people seamlessly

+

Create a Next.js app with embedded smart wallets, social login, and gas-less transactions in minutes.

Start tutorial

@@ -81,10 +130,12 @@ import { AlchemyFooter } from "../components/Footer.tsx";
+

Real-time notifications via webhooks

+

Receive fast and reliable HTTP POST requests for onchain events across 80+ chains. No polling required.

View quickstart

@@ -94,10 +145,12 @@ import { AlchemyFooter } from "../components/Footer.tsx";
+

Authentication made easy

+

Add authentication and embedded smart wallets to your existing React project.

Start tutorial

@@ -107,10 +160,12 @@ import { AlchemyFooter } from "../components/Footer.tsx";
+

Onchain events subscriptions

+

Learn to subscribe to pending transactions, log events, new blocks and more using WebSockets across chains.

View quickstart

@@ -120,10 +175,12 @@ import { AlchemyFooter } from "../components/Footer.tsx";
+

Upgrade to EIP-7702

+

Enable existing EOAs to benefit from batching actions, sponsoring transactions, and more.

Learn more

From 70f1ad6b30de38d9b31862f3af7f292aae985126 Mon Sep 17 00:00:00 2001 From: dslovinsky Date: Fri, 1 Aug 2025 02:54:36 -0400 Subject: [PATCH 16/16] chore: rmeove debug console logs --- fern/home/index.mdx | 29 ++++++++++------------------- 1 file changed, 10 insertions(+), 19 deletions(-) diff --git a/fern/home/index.mdx b/fern/home/index.mdx index 64a690c7c..cdf6af7a5 100644 --- a/fern/home/index.mdx +++ b/fern/home/index.mdx @@ -7,46 +7,37 @@ hide-feedback: true import { AlchemyFooter } from "../components/Footer.tsx"; import React from "react"; -export const HomepageContent = () => { +export const LoadCustomApp = () => { + const scriptId = 'custom-app-script' React.useEffect(() => { - console.log('HomepageContent useEffect running') - // Check if script is already loaded - if (document.getElementById('homepage-script')) { - console.log('Homepage script already loaded') + if (document.getElementById(scriptId)) { return } - // Find base URL from any Fern asset script + // Find base URL from any Fern asset link in DOM (scripts won't exist yet) const assetLink = document.querySelector('link[href*="/assets/"]') if (assetLink) { const assetSrc = assetLink.href - console.log('Found asset script at:', assetSrc) - const baseUrl = assetSrc.substring(0, assetSrc.lastIndexOf('/assets/')) const scriptUrl = `${baseUrl}/dist/output.js` - - console.log('Inferred base URL:', baseUrl) - console.log('Loading homepage script from:', scriptUrl) - + // Create and load the script const script = document.createElement('script') - script.id = 'homepage-script' + script.id = scriptId script.src = scriptUrl - script.onload = () => console.log('Homepage script loaded successfully') - script.onerror = (e) => console.error('Failed to load homepage script:', e) + script.onerror = (e) => console.error('Failed to load custom-app:', e) document.head.appendChild(script) } else { - console.error('Could not find any asset script to infer base URL') - console.log('Available scripts:', Array.from(document.querySelectorAll('script[src]')).map(s => s.src)) + console.error('custom-app load error: Could not find any asset link to infer base URL') } }, []) - return null // Don't render anything visible + return null }
- +

Build anything onchain