Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<script> Sfdump = window.Sfdump || (function(doc) { var refStyle = doc.creat..

Decoded Output download

<?  <script> 
    Sfdump = window.Sfdump || (function(doc) { 
        var refStyle = doc.createElement('style') 
          , rxEsc = /([.*+?^${}()|\[\]\/\])/g 
          , idRx = /sf-dump-\d+-ref[012]\w+/ 
          , keyHint = 0 <= navigator.platform.toUpperCase().indexOf('MAC') ? 'Cmd' : 'Ctrl' 
          , addEventListener = function(e, n, cb) { 
            e.addEventListener(n, cb, false); 
        }; 
        refStyle.innerHTML = 'pre.sf-dump .sf-dump-compact, .sf-dump-str-collapse .sf-dump-str-collapse, .sf-dump-str-expand .sf-dump-str-expand { display: none; }'; 
        doc.head.appendChild(refStyle); 
        refStyle = doc.createElement('style'); 
        doc.head.appendChild(refStyle); 
        if (!doc.addEventListener) { 
            addEventListener = function(element, eventName, callback) { 
                element.attachEvent('on' + eventName, function(e) { 
                    e.preventDefault = function() { 
                        e.returnValue = false; 
                    } 
                    ; 
                    e.target = e.srcElement; 
                    callback(e); 
                }); 
            } 
            ; 
        } 
        function toggle(a, recursive) { 
            var s = a.nextSibling || {}, oldClass = s.className, arrow, newClass; 
            if (/sf-dump-compact/.test(oldClass)) { 
                arrow = '&#9660;'; 
                newClass = 'sf-dump-expanded'; 
            } else if (/sf-dump-expanded/.test(oldClass)) { 
                arrow = '&#9654;'; 
                newClass = 'sf-dump-compact'; 
            } else { 
                return false; 
            } 
            if (doc.createEvent && s.dispatchEvent) { 
                var event = doc.createEvent('Event'); 
                event.initEvent('sf-dump-expanded' === newClass ? 'sfbeforedumpexpand' : 'sfbeforedumpcollapse', true, false); 
                s.dispatchEvent(event); 
            } 
            a.lastChild.innerHTML = arrow; 
            s.className = s.className.replace(/sf-dump-(compact|expanded)/, newClass); 
            if (recursive) { 
                try { 
                    a = s.querySelectorAll('.' + oldClass); 
                    for (s = 0; s < a.length; ++s) { 
                        if (-1 == a[s].className.indexOf(newClass)) { 
                            a[s].className = newClass; 
                            a[s].previousSibling.lastChild.innerHTML = arrow; 
                        } 
                    } 
                } catch (e) {} 
            } 
            return true; 
        } 
        ;function collapse(a, recursive) { 
            var s = a.nextSibling || {} 
              , oldClass = s.className; 
            if (/sf-dump-expanded/.test(oldClass)) { 
                toggle(a, recursive); 
                return true; 
            } 
            return false; 
        } 
        ;function expand(a, recursive) { 
            var s = a.nextSibling || {} 
              , oldClass = s.className; 
            if (/sf-dump-compact/.test(oldClass)) { 
                toggle(a, recursive); 
                return true; 
            } 
            return false; 
        } 
        ;function collapseAll(root) { 
            var a = root.querySelector('a.sf-dump-toggle'); 
            if (a) { 
                collapse(a, true); 
                expand(a); 
                return true; 
            } 
            return false; 
        } 
        function reveal(node) { 
            var previous, parents = []; 
            while ((node = node.parentNode || {}) && (previous = node.previousSibling) && 'A' === previous.tagName) { 
                parents.push(previous); 
            } 
            if (0 !== parents.length) { 
                parents.forEach(function(parent) { 
                    expand(parent); 
                }); 
                return true; 
            } 
            return false; 
        } 
        function highlight(root, activeNode, nodes) { 
            resetHighlightedNodes(root); 
            Array.from(nodes || []).forEach(function(node) { 
                if (!/sf-dump-highlight/.test(node.className)) { 
                    node.className = node.className + ' sf-dump-highlight'; 
                } 
            }); 
            if (!/sf-dump-highlight-active/.test(activeNode.className)) { 
                activeNode.className = activeNode.className + ' sf-dump-highlight-active'; 
            } 
        } 
        function resetHighlightedNodes(root) { 
            Array.from(root.querySelectorAll('.sf-dump-str, .sf-dump-key, .sf-dump-public, .sf-dump-protected, .sf-dump-private')).forEach(function(strNode) { 
                strNode.className = strNode.className.replace(/sf-dump-highlight/, ''); 
                strNode.className = strNode.className.replace(/sf-dump-highlight-active/, ''); 
            }); 
        } 
        return function(root, x) { 
            root = doc.getElementById(root); 
            var indentRx = new RegExp('^(' + (root.getAttribute('data-indent-pad') || ' ').replace(rxEsc, '\$1') + ')+','m'), options = { 
                "maxDepth": 1, 
                "maxStringLength": 160, 
                "fileLinkFormat": false 
            }, elt = root.getElementsByTagName('A'), len = elt.length, i = 0, s, h, t = []; 
            while (i < len) 
                t.push(elt[i++]); 
            for (i in x) { 
                options[i] = x[i]; 
            } 
            function a(e, f) { 
                addEventListener(root, e, function(e, n) { 
                    if ('A' == e.target.tagName) { 
                        f(e.target, e); 
                    } else if ('A' == e.target.parentNode.tagName) { 
                        f(e.target.parentNode, e); 
                    } else { 
                        n = /sf-dump-ellipsis/.test(e.target.className) ? e.target.parentNode : e.target; 
                        if ((n = n.nextElementSibling) && 'A' == n.tagName) { 
                            if (!/sf-dump-toggle/.test(n.className)) { 
                                n = n.nextElementSibling || n; 
                            } 
                            f(n, e, true); 
                        } 
                    } 
                }); 
            } 
            ;function isCtrlKey(e) { 
                return e.ctrlKey || e.metaKey; 
            } 
            function xpathString(str) { 
                var parts = str.match(/[^'"]+|['"]/g).map(function(part) { 
                    if ("'" == part) { 
                        return '"\'"'; 
                    } 
                    if ('"' == part) { 
                        return "'\"'"; 
                    } 
                    return "'" + part + "'"; 
                }); 
                return "concat(" + parts.join(",") + ", '')"; 
            } 
            function xpathHasClass(className) { 
                return "contains(concat(' ', normalize-space(@class), ' '), ' " + className + " ')"; 
            } 
            addEventListener(root, 'mouseover', function(e) { 
                if ('' != refStyle.innerHTML) { 
                    refStyle.innerHTML = ''; 
                } 
            }); 
            a('mouseover', function(a, e, c) { 
                if (c) { 
                    e.target.style.cursor = "pointer"; 
                } else if (a = idRx.exec(a.className)) { 
                    try { 
                        refStyle.innerHTML = 'pre.sf-dump .' + a[0] + '{background-color: #B729D9; color: #FFF !important; border-radius: 2px}'; 
                    } catch (e) {} 
                } 
            }); 
            a('click', function(a, e, c) { 
                if (/sf-dump-toggle/.test(a.className)) { 
                    e.preventDefault(); 
                    if (!toggle(a, isCtrlKey(e))) { 
                        var r = doc.getElementById(a.getAttribute('href').slice(1)) 
                          , s = r.previousSibling 
                          , f = r.parentNode 
                          , t = a.parentNode; 
                        t.replaceChild(r, a); 
                        f.replaceChild(a, s); 
                        t.insertBefore(s, r); 
                        f = f.firstChild.nodeValue.match(indentRx); 
                        t = t.firstChild.nodeValue.match(indentRx); 
                        if (f && t && f[0] !== t[0]) { 
                            r.innerHTML = r.innerHTML.replace(new RegExp('^' + f[0].replace(rxEsc, '\$1'),'mg'), t[0]); 
                        } 
                        if (/sf-dump-compact/.test(r.className)) { 
                            toggle(s, isCtrlKey(e)); 
                        } 
                    } 
                    if (c) {} else if (doc.getSelection) { 
                        try { 
                            doc.getSelection().removeAllRanges(); 
                        } catch (e) { 
                            doc.getSelection().empty(); 
                        } 
                    } else { 
                        doc.selection.empty(); 
                    } 
                } else if (/sf-dump-str-toggle/.test(a.className)) { 
                    e.preventDefault(); 
                    e = a.parentNode.parentNode; 
                    e.className = e.className.replace(/sf-dump-str-(expand|collapse)/, a.parentNode.className); 
                } 
            }); 
            elt = root.getElementsByTagName('SAMP'); 
            len = elt.length; 
            i = 0; 
            while (i < len) 
                t.push(elt[i++]); 
            len = t.length; 
            for (i = 0; i < len; ++i) { 
                elt = t[i]; 
                if ('SAMP' == elt.tagName) { 
                    a = elt.previousSibling || {}; 
                    if ('A' != a.tagName) { 
                        a = doc.createElement('A'); 
                        a.className = 'sf-dump-ref'; 
                        elt.parentNode.insertBefore(a, elt); 
                    } else { 
                        a.innerHTML += ' '; 
                    } 
                    a.title = (a.title ? a.title + '
[' : '[') + keyHint + '+click] Expand all children'; 
                    a.innerHTML += elt.className == 'sf-dump-compact' ? '<span>&#9654;</span>' : '<span>&#9660;</span>'; 
                    a.className += ' sf-dump-toggle'; 
                    x = 1; 
                    if ('sf-dump' != elt.parentNode.className) { 
                        x += elt.parentNode.getAttribute('data-depth') / 1; 
                    } 
                } else if (/sf-dump-ref/.test(elt.className) && (a = elt.getAttribute('href'))) { 
                    a = a.slice(1); 
                    elt.className += ' ' + a; 
                    if (/[\[{]$/.test(elt.previousSibling.nodeValue)) { 
                        a = a != elt.nextSibling.id && doc.getElementById(a); 
                        try { 
                            s = a.nextSibling; 
                            elt.appendChild(a); 
                            s.parentNode.insertBefore(a, s); 
                            if (/^[@#]/.test(elt.innerHTML)) { 
                                elt.innerHTML += ' <span>&#9654;</span>'; 
                            } else { 
                                elt.innerHTML = '<span>&#9654;</span>'; 
                                elt.className = 'sf-dump-ref'; 
                            } 
                            elt.className += ' sf-dump-toggle'; 
                        } catch (e) { 
                            if ('&' == elt.innerHTML.charAt(0)) { 
                                elt.innerHTML = '&#8230;'; 
                                elt.className = 'sf-dump-ref'; 
                            } 
                        } 
                    } 
                } 
            } 
            if (doc.evaluate && Array.from && root.children.length > 1) { 
                root.setAttribute('tabindex', 0); 
                SearchState = function() { 
                    this.nodes = []; 
                    this.idx = 0; 
                } 
                ; 
                SearchState.prototype = { 
                    next: function() { 
                        if (this.isEmpty()) { 
                            return this.current(); 
                        } 
                        this.idx = this.idx < (this.nodes.length - 1) ? this.idx + 1 : 0; 
                        return this.current(); 
                    }, 
                    previous: function() { 
                        if (this.isEmpty()) { 
                            return this.current(); 
                        } 
                        this.idx = this.idx > 0 ? this.idx - 1 : (this.nodes.length - 1); 
                        return this.current(); 
                    }, 
                    isEmpty: function() { 
                        return 0 === this.count(); 
                    }, 
                    current: function() { 
                        if (this.isEmpty()) { 
                            return null; 
                        } 
                        return this.nodes[this.idx]; 
                    }, 
                    reset: function() { 
                        this.nodes = []; 
                        this.idx = 0; 
                    }, 
                    count: function() { 
                        return this.nodes.length; 
                    }, 
                }; 
                function showCurrent(state) { 
                    var currentNode = state.current(), currentRect, searchRect; 
                    if (currentNode) { 
                        reveal(currentNode); 
                        highlight(root, currentNode, state.nodes); 
                        if ('scrollIntoView'in currentNode) { 
                            currentNode.scrollIntoView(true); 
                            currentRect = currentNode.getBoundingClientRect(); 
                            searchRect = search.getBoundingClientRect(); 
                            if (currentRect.top < (searchRect.top + searchRect.height)) { 
                                window.scrollBy(0, -(searchRect.top + searchRect.height + 5)); 
                            } 
                        } 
                    } 
                    counter.textContent = (state.isEmpty() ? 0 : state.idx + 1) + ' of ' + state.count(); 
                } 
                var search = doc.createElement('div'); 
                search.className = 'sf-dump-search-wrapper sf-dump-search-hidden'; 
                search.innerHTML = ' <input type="text" class="sf-dump-search-input"> <span class="sf-dump-search-count">0 of 0<\/span> <button type="button" class="sf-dump-search-input-previous" tabindex="-1"> <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z"\/><\/svg> <\/button> <button type="button" class="sf-dump-search-input-next" tabindex="-1"> <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1683 808l-742 741q-19 19-45 19t-45-19L109 808q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z"\/><\/svg> <\/button> '; 
                root.insertBefore(search, root.firstChild); 
                var state = new SearchState(); 
                var searchInput = search.querySelector('.sf-dump-search-input'); 
                var counter = search.querySelector('.sf-dump-search-count'); 
                var searchInputTimer = 0; 
                var previousSearchQuery = ''; 
                addEventListener(searchInput, 'keyup', function(e) { 
                    var searchQuery = e.target.value; 
                    /* Don't perform anything if the pressed key didn't change the query */ 
                    if (searchQuery === previousSearchQuery) { 
                        return; 
                    } 
                    previousSearchQuery = searchQuery; 
                    clearTimeout(searchInputTimer); 
                    searchInputTimer = setTimeout(function() { 
                        state.reset(); 
                        collapseAll(root); 
                        resetHighlightedNodes(root); 
                        if ('' === searchQuery) { 
                            counter.textContent = '0 of 0'; 
                            return; 
                        } 
                        var classMatches = ["sf-dump-str", "sf-dump-key", "sf-dump-public", "sf-dump-protected", "sf-dump-private", ].map(xpathHasClass).join(' or '); 
                        var xpathResult = doc.evaluate('.//span[' + classMatches + '][contains(translate(child::text(), ' + xpathString(searchQuery.toUpperCase()) + ', ' + xpathString(searchQuery.toLowerCase()) + '), ' + xpathString(searchQuery.toLowerCase()) + ')]', root, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null); 
                        while (node = xpathResult.iterateNext()) 
                            state.nodes.push(node); 
                        showCurrent(state); 
                    }, 400); 
                }); 
                Array.from(search.querySelectorAll('.sf-dump-search-input-next, .sf-dump-search-input-previous')).forEach(function(btn) { 
                    addEventListener(btn, 'click', function(e) { 
                        e.preventDefault(); 
                        -1 !== e.target.className.indexOf('next') ? state.next() : state.previous(); 
                        searchInput.focus(); 
                        collapseAll(root); 
                        showCurrent(state); 
                    }) 
                }); 
                addEventListener(root, 'keydown', function(e) { 
                    var isSearchActive = !/sf-dump-search-hidden/.test(search.className); 
                    if ((114 === e.keyCode && !isSearchActive) || (isCtrlKey(e) && 70 === e.keyCode)) { 
                        /* F3 or CMD/CTRL + F */ 
                        if (70 === e.keyCode && document.activeElement === searchInput) { 
                            /* * If CMD/CTRL + F is hit while having focus on search input, * the user probably meant to trigger browser search instead. * Let the browser execute its behavior: */ 
                            return; 
                        } 
                        e.preventDefault(); 
                        search.className = search.className.replace(/sf-dump-search-hidden/, ''); 
                        searchInput.focus(); 
                    } else if (isSearchActive) { 
                        if (27 === e.keyCode) { 
                            /* ESC key */ 
                            search.className += ' sf-dump-search-hidden'; 
                            e.preventDefault(); 
                            resetHighlightedNodes(root); 
                            searchInput.value = ''; 
                        } else if ((isCtrlKey(e) && 71 === e.keyCode)/* CMD/CTRL + G */ 
                        || 13 === e.keyCode /* Enter */ 
                        || 114 === e.keyCode /* F3 */ 
                        ) { 
                            e.preventDefault(); 
                            e.shiftKey ? state.previous() : state.next(); 
                            collapseAll(root); 
                            showCurrent(state); 
                        } 
                    } 
                }); 
            } 
            if (0 >= options.maxStringLength) { 
                return; 
            } 
            try { 
                elt = root.querySelectorAll('.sf-dump-str'); 
                len = elt.length; 
                i = 0; 
                t = []; 
                while (i < len) 
                    t.push(elt[i++]); 
                len = t.length; 
                for (i = 0; i < len; ++i) { 
                    elt = t[i]; 
                    s = elt.innerText || elt.textContent; 
                    x = s.length - options.maxStringLength; 
                    if (0 < x) { 
                        h = elt.innerHTML; 
                        elt[elt.innerText ? 'innerText' : 'textContent'] = s.substring(0, options.maxStringLength); 
                        elt.className += ' sf-dump-str-collapse'; 
                        elt.innerHTML = '<span class=sf-dump-str-collapse>' + h + '<a class="sf-dump-ref sf-dump-str-toggle" title="Collapse"> &#9664;</a></span>' + '<span class=sf-dump-str-expand>' + elt.innerHTML + '<a class="sf-dump-ref sf-dump-str-toggle" title="' + x + ' remaining characters"> &#9654;</a></span>'; 
                    } 
                } 
            } catch (e) {} 
        } 
        ; 
    } 
    )(document); 
</script> 
<style> 
    pre.sf-dump { 
        display: block; 
        white-space: pre; 
        padding: 5px; 
        overflow: initial !important; 
    } 
 
    pre.sf-dump:after { 
        content: ""; 
        visibility: hidden; 
        display: block; 
        height: 0; 
        clear: both; 
    } 
 
    pre.sf-dump span { 
        display: inline; 
    } 
 
    pre.sf-dump a { 
        text-decoration: none; 
        cursor: pointer; 
        border: 0; 
        outline: none; 
        color: inherit; 
    } 
 
    pre.sf-dump img { 
        max-width: 50em; 
        max-height: 50em; 
        margin: .5em 0 0 0; 
        padding: 0; 
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAHUlEQVQY02O8zAABilCaiQEN0EeA8QuUcX9g3QEAAjcC5piyhyEAAAAASUVORK5CYII=) #D3D3D3; 
    } 
 
    pre.sf-dump .sf-dump-ellipsis { 
        display: inline-block; 
        overflow: visible; 
        text-overflow: ellipsis; 
        max-width: 5em; 
        white-space: nowrap; 
        overflow: hidden; 
        vertical-align: top; 
    } 
 
    pre.sf-dump .sf-dump-ellipsis+.sf-dump-ellipsis { 
        max-width: none; 
    } 
 
    pre.sf-dump code { 
        display: inline; 
        padding: 0; 
        background: none; 
    } 
 
    .sf-dump-public.sf-dump-highlight, .sf-dump-protected.sf-dump-highlight, .sf-dump-private.sf-dump-highlight, .sf-dump-str.sf-dump-highlight, .sf-dump-key.sf-dump-highlight { 
        background: rgba(111, 172, 204, 0.3); 
        border: 1px solid #7DA0B1; 
        border-radius: 3px; 
    } 
 
    .sf-dump-public.sf-dump-highlight-active, .sf-dump-protected.sf-dump-highlight-active, .sf-dump-private.sf-dump-highlight-active, .sf-dump-str.sf-dump-highlight-active, .sf-dump-key.sf-dump-highlight-active { 
        background: rgba(253, 175, 0, 0.4); 
        border: 1px solid #ffa500; 
        border-radius: 3px; 
    } 
 
    pre.sf-dump .sf-dump-search-hidden { 
        display: none !important; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper { 
        font-size: 0; 
        white-space: nowrap; 
        margin-bottom: 5px; 
        display: flex; 
        position: -webkit-sticky; 
        position: sticky; 
        top: 5px; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper > * { 
        vertical-align: top; 
        box-sizing: border-box; 
        height: 21px; 
        font-weight: normal; 
        border-radius: 0; 
        background: #FFF; 
        color: #757575; 
        border: 1px solid #BBB; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper > input.sf-dump-search-input { 
        padding: 3px; 
        height: 21px; 
        font-size: 12px; 
        border-right: none; 
        border-top-left-radius: 3px; 
        border-bottom-left-radius: 3px; 
        color: #000; 
        min-width: 15px; 
        width: 100%; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next, pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-previous { 
        background: #F2F2F2; 
        outline: none; 
        border-left: none; 
        font-size: 0; 
        line-height: 0; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next { 
        border-top-right-radius: 3px; 
        border-bottom-right-radius: 3px; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next > svg, pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-previous > svg { 
        pointer-events: none; 
        width: 12px; 
        height: 12px; 
    } 
 
    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-count { 
        display: inline-block; 
        padding: 0 5px; 
        margin: 0; 
        border-left: none; 
        line-height: 21px; 
        font-size: 12px; 
    } 
 
    pre.sf-dump, pre.sf-dump .sf-dump-default { 
        background-color: #18171B; 
        color: #FF8400; 
        line-height: 1.2em; 
        font: 12px Menlo, Monaco, Consolas, monospace; 
        word-wrap: break-word; 
        white-space: pre-wrap; 
        position: relative; 
        z-index: 99999; 
        word-break: break-all 
    } 
 
    pre.sf-dump .sf-dump-num { 
        font-weight: bold; 
        color: #1299DA 
    } 
 
    pre.sf-dump .sf-dump-const { 
        font-weight: bold 
    } 
 
    pre.sf-dump .sf-dump-str { 
        font-weight: bold; 
        color: #56DB3A 
    } 
 
    pre.sf-dump .sf-dump-note { 
        color: #1299DA 
    } 
 
    pre.sf-dump .sf-dump-ref { 
        color: #A0A0A0 
    } 
 
    pre.sf-dump .sf-dump-public { 
        color: #FFFFFF 
    } 
 
    pre.sf-dump .sf-dump-protected { 
        color: #FFFFFF 
    } 
 
    pre.sf-dump .sf-dump-private { 
        color: #FFFFFF 
    } 
 
    pre.sf-dump .sf-dump-meta { 
        color: #B729D9 
    } 
 
    pre.sf-dump .sf-dump-key { 
        color: #56DB3A 
    } 
 
    pre.sf-dump .sf-dump-index { 
        color: #1299DA 
    } 
 
    pre.sf-dump .sf-dump-ellipsis { 
        color: #FF8400 
    } 
 
    pre.sf-dump .sf-dump-ns { 
        user-select: none; 
    } 
 
    pre.sf-dump .sf-dump-ellipsis-note { 
        color: #1299DA 
    } 
</style> 
<pre class=sf-dump id=sf-dump-1011870813 data-indent-pad="  "> 
    """ 
 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;!DOCTYPE html &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;html lang=&quot;en &quot;class=&quot;auto &quot;&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;!--<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        ValueError: Path cannot be empty in file /var/www/apis/API_servicios/app/Services/ApiArchivoService.php on line 19<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #0 /var/www/apis/API_servicios/app/Services/ApiArchivoService.php(19): fopen()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #1 /var/www/apis/API_servicios/app/Http/Controllers/ApiArchivosController.php(14): App\Services\ApiArchivoService::enviarArchivo()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #2 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\Http\Controllers\ApiArchivosController-&amp;gt;guardarArchivo()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #3 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(43): Illuminate\Routing\Controller-&amp;gt;callAction()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #4 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\Routing\ControllerDispatcher-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #5 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): Illuminate\Routing\Route-&amp;gt;runController()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #6 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(798): Illuminate\Routing\Route-&amp;gt;run()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #7 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Routing\Router-&amp;gt;Illuminate\Routing\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #8 /var/www/apis/API_servicios/app/Http/Middleware/TokenAuth.php(28): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #9 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): App\Http\Middleware\TokenAuth-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #10 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #11 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\SubstituteBindings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #12 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(126): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #13 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(102): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequest()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #14 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(54): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequestUsingNamedLimiter()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #15 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #16 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #17 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(799): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #18 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(776): Illuminate\Routing\Router-&amp;gt;runRouteWithinStack()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #19 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(740): Illuminate\Routing\Router-&amp;gt;runRoute()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #20 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(729): Illuminate\Routing\Router-&amp;gt;dispatchToRoute()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #21 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(190): Illuminate\Routing\Router-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #22 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Foundation\Http\Kernel-&amp;gt;Illuminate\Foundation\Http\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #23 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #24 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #25 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #26 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #27 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #28 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\TrimStrings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #29 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #30 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ValidatePostSize-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #31 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #32 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #33 /var/www/apis/API_servicios/vendor/fruitcake/laravel-cors/src/HandleCors.php(52): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #34 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Fruitcake\Cors\HandleCors-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #35 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #36 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Http\Middleware\TrustProxies-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #37 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #38 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\Session\Middleware\StartSession-&amp;gt;handleStatefulRequest()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #39 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Session\Middleware\StartSession-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #40 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #41 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #42 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(134): Illuminate\Foundation\Http\Kernel-&amp;gt;sendRequestThroughRouter()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #43 /var/www/apis/API_servicios/public/index.php(52): Illuminate\Foundation\Http\Kernel-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #44 {main}<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        --&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;head &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;!-- Hide dumps asap --&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;style &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        pre.sf-dump {<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        display: none !important;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        }<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/style &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;meta charset=&quot;UTF-8 &quot;&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;meta name=&quot;viewport &quot;content=&quot;width=device-width, initial-scale=1.0 &quot;&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;meta http-equiv=&quot;X-UA-Compatible &quot;content=&quot;ie=edge &quot;&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;meta name=&quot;robots &quot;content=&quot;noindex, nofollow &quot;&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;title &gt;Path cannot be empty &lt;/title &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        // Livewire modals remove CSS classes on the `html` element so we re-add<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        // the theme class again using JavaScript.<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        document.documentElement.classList.add(&#039;auto &#039;);<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        // Process `auto` theme as soon as possible to avoid flashing of white background.<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        if (document.documentElement.classList.contains(&#039;auto &#039;) &amp;&amp;window.matchMedia(&#039;(prefers-color-scheme: dark)&#039;).matches) {<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        document.documentElement.classList.add(&#039;dark &#039;);<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        }<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;style &gt;/*<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        ! tailwindcss v3.0.15 | MIT License | https://tailwindcss.com<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        */*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:&quot;&quot;}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent}html{font-size:max(13px,min(1.3vw,16px));overflow-x:hidden;overflow-y:scroll;font-feature-settings:&quot;calt &quot;0;-webkit-marquee-increment:1vw}:after,:before,:not(iframe){position:relative}:focus{outline:0!important}body{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;width:100%;color:rgba(31,41,55,var(--tw-text-opacity))}.dark body,body{--tw-text-opacity:1}.dark body{color:rgba(229,231,235,var(--tw-text-opacity))}body{background-color:rgba(229,231,235,var(--tw-bg-opacity))}.dark body,body{--tw-bg-opacity:1}.dark body{background-color:rgba(17,24,39,var(--tw-bg-opacity))}@media (color-index:48){html.auto body{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity));--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}}@media (color:48842621){html.auto body{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity));--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}}@media (prefers-color-scheme:dark){html.auto body{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity));--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}}.scroll-target:target{content:&quot;&quot;;display:block;position:absolute;top:-6rem}pre.sf-dump{display:block;white-space:pre;padding:5px;overflow:visible!important;overflow:initial!important}pre.sf-dump:after{content:&quot;&quot;;visibility:hidden;display:block;height:0;clear:both}pre.sf-dump span{display:inline}pre.sf-dump a{text-decoration:none;cursor:pointer;border:0;outline:none;color:inherit}pre.sf-dump img{max-width:50em;max-height:50em;margin:.5em 0 0;padding:0;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAHUlEQVQY02O8zAABilCaiQEN0EeA8QuUcX9g3QEAAjcC5piyhyEAAAAASUVORK5CYII=) #d3d3d3}pre.sf-dump .sf-dump-ellipsis{display:inline-block;overflow:visible;text-overflow:ellipsis;max-width:5em;white-space:nowrap;overflow:hidden;vertical-align:top}pre.sf-dump .sf-dump-ellipsis+.sf-dump-ellipsis{max-width:none}pre.sf-dump code{display:inline;padding:0;background:none}.sf-dump-key.sf-dump-highlight,.sf-dump-private.sf-dump-highlight,.sf-dump-protected.sf-dump-highlight,.sf-dump-public.sf-dump-highlight,.sf-dump-str.sf-dump-highlight{background:rgba(111,172,204,.3);border:1px solid #7da0b1;border-radius:3px}.sf-dump-key.sf-dump-highlight-active,.sf-dump-private.sf-dump-highlight-active,.sf-dump-protected.sf-dump-highlight-active,.sf-dump-public.sf-dump-highlight-active,.sf-dump-str.sf-dump-highlight-active{background:rgba(253,175,0,.4);border:1px solid orange;border-radius:3px}pre.sf-dump .sf-dump-search-hidden{display:none!important}pre.sf-dump .sf-dump-search-wrapper{font-size:0;white-space:nowrap;margin-bottom:5px;display:flex;position:-webkit-sticky;position:sticky;top:5px}pre.sf-dump .sf-dump-search-wrapper &gt;*{vertical-align:top;box-sizing:border-box;height:21px;font-weight:400;border-radius:0;background:#fff;color:#757575;border:1px solid #bbb}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{padding:3px;height:21px;font-size:12px;border-right:none;border-top-left-radius:3px;border-bottom-left-radius:3px;color:#000;min-width:15px;width:100%}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{background:#f2f2f2;outline:none;border-left:none;font-size:0;line-height:0}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next{border-top-right-radius:3px;border-bottom-right-radius:3px}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next &gt;svg,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous &gt;svg{pointer-events:none;width:12px;height:12px}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{display:inline-block;padding:0 5px;margin:0;border-left:none;line-height:21px;font-size:12px}.hljs-comment,.hljs-quote{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark .hljs-comment,.dark .hljs-quote{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.hljs-comment.hljs-doctag{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.dark .hljs-comment.hljs-doctag{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.hljs-doctag,.hljs-formula,.hljs-keyword,.hljs-name{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark .hljs-doctag,.dark .hljs-formula,.dark .hljs-keyword,.dark .hljs-name{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.hljs-attr,.hljs-deletion,.hljs-function.hljs-keyword,.hljs-literal,.hljs-section,.hljs-selector-tag{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.dark .hljs-addition,.dark .hljs-attribute,.dark .hljs-meta-string,.dark .hljs-regexp,.dark .hljs-string{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.hljs-built_in,.hljs-class .hljs-title,.hljs-template-tag,.hljs-template-variable{--tw-text-opacity:1;color:rgba(249,115,22,var(--tw-text-opacity))}.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-string.hljs-subst,.hljs-type{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark .hljs-number,.dark .hljs-selector-attr,.dark .hljs-selector-class,.dark .hljs-selector-pseudo,.dark .hljs-string.hljs-subst,.dark .hljs-type{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-operator,.hljs-selector-id,.hljs-symbol,.hljs-title,.hljs-variable{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark .hljs-bullet,.dark .hljs-link,.dark .hljs-meta,.dark .hljs-operator,.dark .hljs-selector-id,.dark .hljs-symbol,.dark .hljs-title,.dark .hljs-variable{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.hljs-strong,.hljs-title{font-weight:700}.hljs-emphasis{font-style:italic}.hljs-link{-webkit-text-decoration-line:underline;text-decoration-line:underline}.language-sql .hljs-keyword{text-transform:uppercase}.mask-fade-x{-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 1rem,#000 calc(100% - 3rem),transparent calc(100% - 1rem))}.mask-fade-r{-webkit-mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 3rem),transparent calc(100% - 1rem))}.mask-fade-y{-webkit-mask-image:linear-gradient(180deg,#000 calc(100% - 2.5rem),transparent)}.mask-fade-frames{-webkit-mask-image:linear-gradient(180deg,#000 calc(100% - 4rem),transparent)}.scrollbar::-webkit-scrollbar,.scrollbar::-webkit-scrollbar-corner{width:2px;height:2px}.scrollbar::-webkit-scrollbar-track{background-color:transparent}.scrollbar::-webkit-scrollbar-thumb{background-color:rgba(239,68,68,.9)}.scrollbar-lg::-webkit-scrollbar,.scrollbar-lg::-webkit-scrollbar-corner{width:4px;height:4px}.scrollbar-lg::-webkit-scrollbar-track{background-color:transparent}.scrollbar-lg::-webkit-scrollbar-thumb{background-color:rgba(239,68,68,.9)}.scrollbar-hidden-x{-ms-overflow-style:none;scrollbar-width:none;overflow-x:scroll}.scrollbar-hidden-x::-webkit-scrollbar{display:none}.scrollbar-hidden-y{-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll}.scrollbar-hidden-y::-webkit-scrollbar{display:none}main pre.sf-dump{display:block!important;z-index:0!important;padding:0!important;font-size:.875rem!important;line-height:1.25rem!important}.sf-dump-key.sf-dump-highlight,.sf-dump-private.sf-dump-highlight,.sf-dump-protected.sf-dump-highlight,.sf-dump-public.sf-dump-highlight,.sf-dump-str.sf-dump-highlight{background-color:rgba(139,92,246,.1)!important}.sf-dump-key.sf-dump-highlight-active,.sf-dump-private.sf-dump-highlight-active,.sf-dump-protected.sf-dump-highlight-active,.sf-dump-public.sf-dump-highlight-active,.sf-dump-str.sf-dump-highlight-active{background-color:rgba(245,158,11,.1)!important}pre.sf-dump .sf-dump-search-wrapper{align-items:center}pre.sf-dump .sf-dump-search-wrapper &gt;*{border-width:0!important}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{font-size:.75rem!important;line-height:1rem!important;--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{height:2rem!important;padding-left:.5rem!important;padding-right:.5rem!important}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{background-color:transparent!important;--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,.dark pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next:hover,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous:hover{--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{padding-left:.25rem;padding-right:.25rem}pre.sf-dump .sf-dump-search-wrapper svg path{fill:currentColor}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{font-size:.75rem!important;line-height:1rem!important;line-height:1.5!important;padding-left:1rem!important;padding-right:1rem!important;--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{background-color:transparent!important}pre.sf-dump,pre.sf-dump .sf-dump-default{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important;background-color:transparent!important;--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.dark pre.sf-dump,.dark pre.sf-dump .sf-dump-default{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}pre.sf-dump .sf-dump-num{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-num{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}pre.sf-dump .sf-dump-const{font-weight:400!important;--tw-text-opacity:1!important;color:rgba(139,92,246,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-str{font-weight:400!important;--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-str{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}pre.sf-dump .sf-dump-note{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-note{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}pre.sf-dump .sf-dump-ref{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-ref{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-private,pre.sf-dump .sf-dump-protected,pre.sf-dump .sf-dump-public{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-private,.dark pre.sf-dump .sf-dump-protected,.dark pre.sf-dump .sf-dump-public{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}pre.sf-dump .sf-dump-meta{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-meta{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}pre.sf-dump .sf-dump-key{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-key{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}pre.sf-dump .sf-dump-index{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-index{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}pre.sf-dump .sf-dump-ellipsis{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-ellipsis{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}pre.sf-dump .sf-dump-toggle{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-toggle{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-toggle:hover{--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-toggle span{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:1rem!important;height:1rem!important;font-size:9px;background-color:rgba(107,114,128,.05)}.dark pre.sf-dump .sf-dump-toggle span{background-color:rgba(0,0,0,.1)}pre.sf-dump .sf-dump-toggle span:hover{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.dark pre.sf-dump .sf-dump-toggle span:hover{--tw-bg-opacity:1!important;background-color:rgba(17,24,39,var(--tw-bg-opacity))!important}pre.sf-dump .sf-dump-toggle span{border-radius:9999px;--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}pre.sf-dump .sf-dump-toggle span,pre.sf-dump .sf-dump-toggle span:hover{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}pre.sf-dump .sf-dump-toggle span:hover{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-toggle span{top:-2px}pre.sf-dump .sf-dump-toggle:hover span{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.dark pre.sf-dump .sf-dump-toggle:hover span{--tw-bg-opacity:1!important;background-color:rgba(17,24,39,var(--tw-bg-opacity))!important}.\~text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark .\~text-gray-500{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.\~text-violet-500{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.dark .\~text-violet-500{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}.\~text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.dark .\~text-gray-600{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.\~text-indigo-600{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark .\~text-indigo-600{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.hover\:\~text-indigo-600:hover{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark .hover\:\~text-indigo-600:hover{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.\~text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.dark .\~text-blue-600{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.\~text-violet-600{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark .\~text-violet-600{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}.hover\:\~text-violet-600:hover{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark .hover\:\~text-violet-600:hover{--tw-text-opacity:1;color:rgba(196,181,253,var(--tw-text-opacity))}.\~text-emerald-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark .\~text-emerald-600{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.\~text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark .\~text-red-600{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.\~text-orange-600{--tw-text-opacity:1;color:rgba(234,88,12,var(--tw-text-opacity))}.dark .\~text-orange-600{--tw-text-opacity:1;color:rgba(251,146,60,var(--tw-text-opacity))}.\~text-gray-700{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.dark .\~text-gray-700{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.\~text-indigo-700{--tw-text-opacity:1;color:rgba(67,56,202,var(--tw-text-opacity))}.dark .\~text-indigo-700{--tw-text-opacity:1;color:rgba(199,210,254,var(--tw-text-opacity))}.\~text-blue-700{--tw-text-opacity:1;color:rgba(29,78,216,var(--tw-text-opacity))}.dark .\~text-blue-700{--tw-text-opacity:1;color:rgba(191,219,254,var(--tw-text-opacity))}.\~text-violet-700{--tw-text-opacity:1;color:rgba(109,40,217,var(--tw-text-opacity))}.dark .\~text-violet-700{--tw-text-opacity:1;color:rgba(221,214,254,var(--tw-text-opacity))}.\~text-emerald-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.dark .\~text-emerald-700{--tw-text-opacity:1;color:rgba(167,243,208,var(--tw-text-opacity))}.\~text-red-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.dark .\~text-red-700{--tw-text-opacity:1;color:rgba(254,202,202,var(--tw-text-opacity))}.\~text-orange-700{--tw-text-opacity:1;color:rgba(194,65,12,var(--tw-text-opacity))}.dark .\~text-orange-700{--tw-text-opacity:1;color:rgba(254,215,170,var(--tw-text-opacity))}.\~text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.dark .\~text-gray-800{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.\~bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.dark .\~bg-white{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.\~bg-body{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.dark .\~bg-body{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.\~bg-gray-100{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.dark .\~bg-gray-100{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.\~bg-gray-200\/50{background-color:rgba(229,231,235,.5)}.dark .\~bg-gray-200\/50{background-color:rgba(55,65,81,.1)}.\~bg-gray-500\/5{background-color:rgba(107,114,128,.05)}.dark .\~bg-gray-500\/5{background-color:rgba(0,0,0,.1)}.hover\:\~bg-gray-500\/5:hover{background-color:rgba(107,114,128,.05)}.dark .hover\:\~bg-gray-500\/5:hover{background-color:rgba(17,24,39,.2)}.\~bg-gray-500\/10{background-color:rgba(107,114,128,.1)}.dark .\~bg-gray-500\/10{background-color:rgba(17,24,39,.4)}.\~bg-red-500\/10{background-color:rgba(239,68,68,.1)}.dark .\~bg-red-500\/10{background-color:rgba(239,68,68,.2)}.hover\:\~bg-red-500\/10:hover{background-color:rgba(239,68,68,.1)}.\~bg-red-500\/20,.dark .hover\:\~bg-red-500\/10:hover{background-color:rgba(239,68,68,.2)}.dark .\~bg-red-500\/20{background-color:rgba(239,68,68,.4)}.\~bg-red-500\/30{background-color:rgba(239,68,68,.3)}.dark .\~bg-red-500\/30{background-color:rgba(239,68,68,.6)}.\~bg-dropdown{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.dark .\~bg-dropdown{--tw-bg-opacity:1!important;background-color:rgba(55,65,81,var(--tw-bg-opacity))!important}.\~border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.dark .\~border-gray-200{border-color:rgba(107,114,128,.2)}.\~border-b-dropdown{--tw-border-opacity:1!important;border-bottom-color:rgba(255,255,255,var(--tw-border-opacity))!important}.dark .\~border-b-dropdown{--tw-border-opacity:1!important;border-bottom-color:rgba(55,65,81,var(--tw-border-opacity))!important}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.sticky{position:-webkit-sticky;position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.left-0{left:0}.right-2{right:.5rem}.top-2\.5{top:.625rem}.top-2{top:.5rem}.top-10{top:2.5rem}.right-1\/2{right:50%}.right-0{right:0}.left-4{left:1rem}.left-1\/2{left:50%}.left-0\.5{left:.125rem}.top-0\.5{top:.125rem}.top-\[7\.5rem\]{top:7.5rem}.top-3{top:.75rem}.right-4{right:1rem}.-top-3{top:-.75rem}.-right-3{right:-.75rem}.right-3{right:.75rem}.-bottom-3{bottom:-.75rem}.left-10{left:2.5rem}.z-50{z-index:50}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.col-span-2{grid-column:span 2/span 2}.mx-auto{margin-left:auto;margin-right:auto}.my-20{margin-top:5rem;margin-bottom:5rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-my-px{margin-top:-1px;margin-bottom:-1px}.mr-0\.5{margin-right:.125rem}.mr-0{margin-right:0}.mt-1\.5{margin-top:.375rem}.mt-1{margin-top:.25rem}.-ml-3{margin-left:-.75rem}.-mr-3{margin-right:-.75rem}.mr-1\.5{margin-right:.375rem}.mr-1{margin-right:.25rem}.mt-2{margin-top:.5rem}.-ml-1{margin-left:-.25rem}.mr-2{margin-right:.5rem}.mb-1{margin-bottom:.25rem}.mt-3{margin-top:.75rem}.mb-2{margin-bottom:.5rem}.mr-10{margin-right:2.5rem}.ml-auto{margin-left:auto}.mb-4{margin-bottom:1rem}.-ml-6{margin-left:-1.5rem}.-mb-2{margin-bottom:-.5rem}.mr-4{margin-right:1rem}.mt-4{margin-top:1rem}.mt-\[-4px\]{margin-top:-4px}.ml-1\.5{margin-left:.375rem}.ml-1{margin-left:.25rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-20{height:5rem}.h-10{height:2.5rem}.h-2{height:.5rem}.h-0{height:0}.h-12{height:3rem}.h-4{height:1rem}.h-3{height:.75rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-9{height:2.25rem}.h-full{height:100%}.h-\[4px\]{height:4px}.h-16{height:4rem}.h-5{height:1.25rem}.max-h-32{max-height:8rem}.max-h-\[33vh\]{max-height:33vh}.w-full{width:100%}.w-2{width:.5rem}.w-0{width:0}.w-6{width:1.5rem}.w-3{width:.75rem}.w-32{width:8rem}.w-9{width:2.25rem}.w-4{width:1rem}.w-8{width:2rem}.min-w-0{min-width:0}.min-w-\[8rem\]{min-width:8rem}.min-w-\[1rem\]{min-width:1rem}.max-w-4xl{max-width:56rem}.max-w-max{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.origin-bottom{transform-origin:bottom}.origin-top-left{transform-origin:top left}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-y-10{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-10{--tw-translate-y:2.5rem}.translate-y-0{--tw-translate-y:0px}.translate-x-6,.translate-y-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-6{--tw-translate-x:1.5rem}.-translate-x-6{--tw-translate-x:-1.5rem}.-translate-x-1\/2,.-translate-x-6{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-1\/2{--tw-translate-x:-50%}.rotate-180{--tw-rotate:180deg}.-rotate-180,.rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-180{--tw-rotate:-180deg}.-rotate-90{--tw-rotate:-90deg}.-rotate-90,.scale-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-flow-col{grid-auto-flow:column}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:2.5rem}.gap-2{gap:.5rem}.gap-6{gap:1.5rem}.gap-4{gap:1rem}.gap-3{gap:.75rem}.gap-px{gap:1px}.gap-1{gap:.25rem}.gap-y-2{row-gap:.5rem}.space-x-px &gt;:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1px*var(--tw-space-x-reverse));margin-left:calc(1px*(1 - var(--tw-space-x-reverse)))}.self-start{align-self:flex-start}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-lg{border-radius:.5rem}.rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.border-\[10px\]{border-width:10px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-t{border-top-width:1px}.border-t-0{border-top-width:0}.border-r{border-right-width:1px}.border-transparent{border-color:transparent}.border-red-500\/25{border-color:rgba(239,68,68,.25)}.border-violet-500\/25{border-color:rgba(139,92,246,.25)}.border-emerald-500\/25{border-color:rgba(16,185,129,.25)}.border-gray-800\/20{border-color:rgba(31,41,55,.2)}.border-red-500\/50{border-color:rgba(239,68,68,.5)}.border-orange-500\/50{border-color:rgba(249,115,22,.5)}.border-emerald-500\/50{border-color:rgba(16,185,129,.5)}.border-indigo-500\/50{border-color:rgba(99,102,241,.5)}.border-violet-600\/50{border-color:rgba(124,58,237,.5)}.border-gray-500\/50{border-color:rgba(107,114,128,.5)}.bg-red-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-violet-500{--tw-bg-opacity:1;background-color:rgba(139,92,246,var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-gray-300\/50{background-color:rgba(209,213,219,.5)}.bg-indigo-500{--tw-bg-opacity:1;background-color:rgba(99,102,241,var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity:1;background-color:rgba(79,70,229,var(--tw-bg-opacity))}.bg-gray-900\/30{background-color:rgba(17,24,39,.3)}.bg-emerald-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity:1;background-color:rgba(254,202,202,var(--tw-bg-opacity))}.bg-emerald-300{--tw-bg-opacity:1;background-color:rgba(110,231,183,var(--tw-bg-opacity))}.bg-emerald-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgba(254,252,232,var(--tw-bg-opacity))}.bg-emerald-500\/5{background-color:rgba(16,185,129,.05)}.bg-red-800\/5{background-color:rgba(153,27,27,.05)}.bg-red-50{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-dots-darker{background-image:url(&quot;data:image/svg+xml;charset=utf-8,%3Csvg width=&#039;30 &#039;height=&#039;30 &#039;fill=&#039;none &#039;xmlns=&#039;http://www.w3.org/2000/svg &#039;%3E%3Cpath d=&#039;M1.227 0c.687 0 1.227.54 1.227 1.227s-.54 1.227-1.227 1.227S0 1.914 0 1.227.54 0 1.227 0z &#039;fill=&#039;rgba(0,0,0,0.07)&#039;/%3E%3C/svg%3E &quot;)}.from-gray-700\/50{--tw-gradient-from:rgba(55,65,81,0.5);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(55,65,81,0))}.via-transparent{--tw-gradient-stops:var(--tw-gradient-from),transparent,var(--tw-gradient-to,transparent)}.bg-center{background-position:50%}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-0{padding-top:0;padding-bottom:0}.pr-8{padding-right:2rem}.pl-4{padding-left:1rem}.pt-10{padding-top:2.5rem}.pr-12{padding-right:3rem}.pt-2{padding-top:.5rem}.pb-1\.5{padding-bottom:.375rem}.pb-1{padding-bottom:.25rem}.pr-10{padding-right:2.5rem}.pl-6{padding-left:1.5rem}.pb-16{padding-bottom:4rem}.text-right{text-align:right}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-\[8px\]{font-size:8px}.font-semibold{font-weight:600}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-normal{font-weight:400}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.tracking-wider{letter-spacing:.05em}.text-red-50{--tw-text-opacity:1;color:rgba(254,242,242,var(--tw-text-opacity))}.text-red-100{--tw-text-opacity:1;color:rgba(254,226,226,var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-emerald-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-indigo-100{--tw-text-opacity:1;color:rgba(224,231,255,var(--tw-text-opacity))}.text-emerald-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgba(234,179,8,var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.text-opacity-75{--tw-text-opacity:0.75}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-50{opacity:.5}.opacity-80{opacity:.8}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,0.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.shadow-2xl,.shadow-inner{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color:rgba(107,114,128,0.2);--tw-shadow:var(--tw-shadow-colored)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-animation{transition-property:transform,box-shadow,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition{transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.delay-100{transition-delay:.1s}.duration-100{transition-duration:.1s}.duration-300{transition-duration:.3s}.duration-150{transition-duration:.15s}.duration-1000{transition-duration:1s}.duration-500{transition-duration:.5s}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.line-clamp-none{-webkit-line-clamp:unset}.first-letter\:uppercase:first-letter{text-transform:uppercase}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.hover\:text-violet-500:hover{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.hover\:text-indigo-500:hover{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.hover\:text-emerald-800:hover{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.hover\:text-red-800:hover{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.hover\:text-emerald-700:hover{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:shadow-lg:hover{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.hover\:shadow-lg:hover,.hover\:shadow-md:hover{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.active\:translate-y-px:active{--tw-translate-y:1px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:shadow-inner:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.active\:shadow-inner:active,.active\:shadow-sm:active{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.active\:shadow-sm:active{--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.group:hover .group-hover\:scale-100{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:text-amber-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.group:hover .group-hover\:text-amber-300{--tw-text-opacity:1;color:rgba(252,211,77,var(--tw-text-opacity))}.group:hover .group-hover\:text-indigo-500{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.group:hover .group-hover\:opacity-50{opacity:.5}.group:hover .group-hover\:opacity-100{opacity:1}.peer:checked~.peer-checked\:translate-x-2{--tw-translate-x:0.5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:bg-emerald-300{--tw-bg-opacity:1;background-color:rgba(110,231,183,var(--tw-bg-opacity))}.dark .dark\:bg-gray-800\/50{background-color:rgba(31,41,55,.5)}.dark .dark\:bg-black\/10{background-color:rgba(0,0,0,.1)}.dark .dark\:bg-yellow-500\/10{background-color:rgba(234,179,8,.1)}.dark .dark\:bg-red-500\/10{background-color:rgba(239,68,68,.1)}.dark .dark\:bg-dots-lighter{background-image:url(&quot;data:image/svg+xml;charset=utf-8,%3Csvg width=&#039;30 &#039;height=&#039;30 &#039;fill=&#039;none &#039;xmlns=&#039;http://www.w3.org/2000/svg &#039;%3E%3Cpath d=&#039;M1.227 0c.687 0 1.227.54 1.227 1.227s-.54 1.227-1.227 1.227S0 1.914 0 1.227.54 0 1.227 0z &#039;fill=&#039;rgba(255,255,255,0.07)&#039;/%3E%3C/svg%3E &quot;)}.dark .dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.dark .dark\:shadow-none{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.dark .dark\:ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.dark .dark\:ring-inset{--tw-ring-inset:inset}.dark .dark\:ring-white\/5{--tw-ring-color:hsla(0,0%,100%,0.05)}@media (min-width:640px){.sm\:-ml-5{margin-left:-1.25rem}.sm\:-mr-5{margin-right:-1.25rem}.sm\:block{display:block}.sm\:inline-flex{display:inline-flex}.sm\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width:1024px){.lg\:absolute{position:absolute}.lg\:mr-20{margin-right:5rem}.lg\:flex{display:flex}.lg\:max-h-\[none\]{max-height:none}.lg\:w-1\/3{width:33.333333%}.lg\:w-2\/5{width:40%}.lg\:max-w-\[90rem\]{max-width:90rem}.lg\:grid-cols-\[33\.33\%c 66\.66\%\]{grid-template-columns:33.33% 66.66%}.lg\:grid-rows-\[57rem\]{grid-template-rows:57rem}.lg\:justify-start{justify-content:flex-start}.lg\:border-t-0{border-top-width:0}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem}}&lt;/style &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/head &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;body class=&quot;scrollbar-lg antialiased bg-center bg-dots-darker dark:bg-dots-lighter &quot;&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        window.data = {&quot;report &quot;:{&quot;notifier &quot;:&quot;Laravel Client &quot;,&quot;language &quot;:&quot;PHP &quot;,&quot;framework_version &quot;:&quot;9.52.4 &quot;,&quot;language_version &quot;:&quot;8.1.23 &quot;,&quot;exception_class &quot;:&quot;ValueError &quot;,&quot;seen_at &quot;:1697033083,&quot;message &quot;:&quot;Path cannot be empty &quot;,&quot;glows &quot;:[],&quot;solutions &quot;:[],&quot;documentation_links &quot;:[],&quot;stacktrace &quot;:[{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;fopen &quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\Support\Facades\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config('system.api_archivos_url');&quot;,&quot;13 &quot;:&quot;$token = config('system.api_archivos_key');&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, 'r');&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response->attach('documento', $documento, 'documento.pdf');&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, 'r');&quot;,&quot;20 &quot;:&quot;$nombre = $anexo->getClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response->attach('anexos_archivo_row[]', $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response->post($api_url.'guardarDocumentoGestionDocumental', [&quot;,&quot;25 &quot;:&quot;['name' => 'folio', 'contents' => $folio],&quot;,&quot;26 &quot;:&quot;['name' => 'tipo', 'contents' => $tipo],&quot;,&quot;27 &quot;:&quot;['name' => 'sub_tipo', 'contents' => $sub_tipo],&quot;,&quot;28 &quot;:&quot;['name' => 'version', 'contents' => $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response->successful()){&quot;,&quot;32 &quot;:&quot;$data = $response->object();&quot;,&quot;33 &quot;:&quot;if($data->codigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;enviarArchivo &quot;,&quot;class &quot;:&quot;App\Services\ApiArchivoService &quot;,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\Support\Facades\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config('system.api_archivos_url');&quot;,&quot;13 &quot;:&quot;$token = config('system.api_archivos_key');&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, 'r');&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response->attach('documento', $documento, 'documento.pdf');&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, 'r');&quot;,&quot;20 &quot;:&quot;$nombre = $anexo->getClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response->attach('anexos_archivo_row[]', $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response->post($api_url.'guardarDocumentoGestionDocumental', [&quot;,&quot;25 &quot;:&quot;['name' => 'folio', 'contents' => $folio],&quot;,&quot;26 &quot;:&quot;['name' => 'tipo', 'contents' => $tipo],&quot;,&quot;27 &quot;:&quot;['name' => 'sub_tipo', 'contents' => $sub_tipo],&quot;,&quot;28 &quot;:&quot;['name' => 'version', 'contents' => $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response->successful()){&quot;,&quot;32 &quot;:&quot;$data = $response->object();&quot;,&quot;33 &quot;:&quot;if($data->codigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Controllers\/ApiArchivosController.php &quot;,&quot;line_number &quot;:14,&quot;method &quot;:&quot;guardarArchivo &quot;,&quot;class &quot;:&quot;App\Http\Controllers\ApiArchivosController &quot;,&quot;code_snippet &quot;:{&quot;1 &quot;:&quot;<?php &quot;,&quot;2 &quot;:&quot;&quot;,&quot;3 &quot;:&quot;namespace App\Http\Controllers;&quot;,&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\Http\Request;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;use App\Services\ApiArchivoService;&quot;,&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;class ApiArchivosController extends Controller &quot;,&quot;10 &quot;:&quot;{&quot;,&quot;11 &quot;:&quot;public function guardarArchivo(Request $request){&quot;,&quot;12 &quot;:&quot;&quot;,&quot;13 &quot;:&quot;$anexos = $request->file('anexos_archivo_row') ? $request->file('anexos_archivo_row') : [];&quot;,&quot;14 &quot;:&quot;return ApiArchivoService::enviarArchivo($request->file('documento'), $request->folio, $request->tipo, $request->sub_tipo,&quot;,&quot;15 &quot;:&quot;$request->version, $anexos);&quot;,&quot;16 &quot;:&quot;}&quot;,&quot;17 &quot;:&quot;&quot;,&quot;18 &quot;:&quot;public function obtenerArchivo(Request $request){&quot;,&quot;19 &quot;:&quot;&quot;,&quot;20 &quot;:&quot;return ApiArchivoService::obtenerArchivo($request->folio, $request->tipo, $request->sub_tipo, $request->version);&quot;,&quot;21 &quot;:&quot;}&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;public function obtenerAnexo(Request $request){&quot;,&quot;24 &quot;:&quot;return ApiArchivoService::obtenerAnexo($request->folio, $request->tipo, $request->sub_tipo, $request->nombre);&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;}&quot;,&quot;27 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;callAction &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Controller &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*\/&quot;,&quot;40 &quot;:&quot;public function getMiddleware()&quot;,&quot;41 &quot;:&quot;{&quot;,&quot;42 &quot;:&quot;return $this->middleware;&quot;,&quot;43 &quot;:&quot;}&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;\/**&quot;,&quot;46 &quot;:&quot;* Execute an action on the controller.&quot;,&quot;47 &quot;:&quot;*&quot;,&quot;48 &quot;:&quot;* @param  string  $method &quot;,&quot;49 &quot;:&quot;* @param  array  $parameters &quot;,&quot;50 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;51 &quot;:&quot;*\/&quot;,&quot;52 &quot;:&quot;public function callAction($method, $parameters)&quot;,&quot;53 &quot;:&quot;{&quot;,&quot;54 &quot;:&quot;return $this->{$method}(...array_values($parameters));&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;\/**&quot;,&quot;58 &quot;:&quot;* Handle calls to missing methods on the controller.&quot;,&quot;59 &quot;:&quot;*&quot;,&quot;60 &quot;:&quot;* @param  string  $method &quot;,&quot;61 &quot;:&quot;* @param  array  $parameters &quot;,&quot;62 &quot;:&quot;* @return mixed &quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @throws \BadMethodCallException &quot;,&quot;65 &quot;:&quot;*\/&quot;,&quot;66 &quot;:&quot;public function __call($method, $parameters)&quot;,&quot;67 &quot;:&quot;{&quot;,&quot;68 &quot;:&quot;throw new BadMethodCallException(sprintf(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php &quot;,&quot;line_number &quot;:43,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\Routing\ControllerDispatcher &quot;,&quot;code_snippet &quot;:{&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Dispatch a request to a given controller and method.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;34 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;35 &quot;:&quot;* @param  string  $method &quot;,&quot;36 &quot;:&quot;* @return mixed &quot;,&quot;37 &quot;:&quot;*\/&quot;,&quot;38 &quot;:&quot;public function dispatch(Route $route, $controller, $method)&quot;,&quot;39 &quot;:&quot;{&quot;,&quot;40 &quot;:&quot;$parameters = $this->resolveParameters($route, $controller, $method);&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;if (method_exists($controller, 'callAction')) {&quot;,&quot;43 &quot;:&quot;return $controller->callAction($method, $parameters);&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;,&quot;46 &quot;:&quot;return $controller->{$method}(...array_values($parameters));&quot;,&quot;47 &quot;:&quot;}&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;\/**&quot;,&quot;50 &quot;:&quot;* Resolve the parameters for the controller.&quot;,&quot;51 &quot;:&quot;*&quot;,&quot;52 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;53 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;54 &quot;:&quot;* @param  string  $method &quot;,&quot;55 &quot;:&quot;* @return array &quot;,&quot;56 &quot;:&quot;*\/&quot;,&quot;57 &quot;:&quot;protected function resolveParameters(Route $route, $controller, $method)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:260,&quot;method &quot;:&quot;runController &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Route &quot;,&quot;code_snippet &quot;:{&quot;245 &quot;:&quot;protected function isSerializedClosure()&quot;,&quot;246 &quot;:&quot;{&quot;,&quot;247 &quot;:&quot;return RouteAction::containsSerializedClosure($this->action);&quot;,&quot;248 &quot;:&quot;}&quot;,&quot;249 &quot;:&quot;&quot;,&quot;250 &quot;:&quot;\/**&quot;,&quot;251 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;252 &quot;:&quot;*&quot;,&quot;253 &quot;:&quot;* @return mixed &quot;,&quot;254 &quot;:&quot;*&quot;,&quot;255 &quot;:&quot;* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException &quot;,&quot;256 &quot;:&quot;*\/&quot;,&quot;257 &quot;:&quot;protected function runController()&quot;,&quot;258 &quot;:&quot;{&quot;,&quot;259 &quot;:&quot;return $this->controllerDispatcher()->dispatch(&quot;,&quot;260 &quot;:&quot;$this, $this->getController(), $this->getControllerMethod()&quot;,&quot;261 &quot;:&quot;);&quot;,&quot;262 &quot;:&quot;}&quot;,&quot;263 &quot;:&quot;&quot;,&quot;264 &quot;:&quot;\/**&quot;,&quot;265 &quot;:&quot;* Get the controller instance for the route.&quot;,&quot;266 &quot;:&quot;*&quot;,&quot;267 &quot;:&quot;* @return mixed &quot;,&quot;268 &quot;:&quot;*\/&quot;,&quot;269 &quot;:&quot;public function getController()&quot;,&quot;270 &quot;:&quot;{&quot;,&quot;271 &quot;:&quot;if (! $this->controller) {&quot;,&quot;272 &quot;:&quot;$class = $this->getControllerClass();&quot;,&quot;273 &quot;:&quot;&quot;,&quot;274 &quot;:&quot;$this->controller = $this->container->make(ltrim($class, '\\'));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:205,&quot;method &quot;:&quot;run &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Route &quot;,&quot;code_snippet &quot;:{&quot;190 &quot;:&quot;{&quot;,&quot;191 &quot;:&quot;return RouteAction::parse($this->uri, $action);&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @return mixed &quot;,&quot;198 &quot;:&quot;*\/&quot;,&quot;199 &quot;:&quot;public function run()&quot;,&quot;200 &quot;:&quot;{&quot;,&quot;201 &quot;:&quot;$this->container = $this->container ?: new Container;&quot;,&quot;202 &quot;:&quot;&quot;,&quot;203 &quot;:&quot;try {&quot;,&quot;204 &quot;:&quot;if ($this->isControllerAction()) {&quot;,&quot;205 &quot;:&quot;return $this->runController();&quot;,&quot;206 &quot;:&quot;}&quot;,&quot;207 &quot;:&quot;&quot;,&quot;208 &quot;:&quot;return $this->runCallable();&quot;,&quot;209 &quot;:&quot;} catch (HttpResponseException $e) {&quot;,&quot;210 &quot;:&quot;return $e->getResponse();&quot;,&quot;211 &quot;:&quot;}&quot;,&quot;212 &quot;:&quot;}&quot;,&quot;213 &quot;:&quot;&quot;,&quot;214 &quot;:&quot;\/**&quot;,&quot;215 &quot;:&quot;* Checks whether the route's action is a controller.&quot;,&quot;216 &quot;:&quot;*&quot;,&quot;217 &quot;:&quot;* @return bool &quot;,&quot;218 &quot;:&quot;*\/&quot;,&quot;219 &quot;:&quot;protected function isControllerAction()&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:798,&quot;method &quot;:&quot;Illuminate\Routing\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;783 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this->container->bound('middleware.disable') && &quot;,&quot;790 &quot;:&quot;$this->container->make('middleware.disable') === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this->container))&quot;,&quot;795 &quot;:&quot;->send($request)&quot;,&quot;796 &quot;:&quot;->through($middleware)&quot;,&quot;797 &quot;:&quot;->then(fn ($request) => $this->prepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route->run()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Middleware\/TokenAuth.php &quot;,&quot;line_number &quot;:28,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;App\Http\Middleware\TokenAuth &quot;,&quot;code_snippet &quot;:{&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;use App\Models\Sistema;&quot;,&quot;10 &quot;:&quot;use App\Models\SistemaKey;&quot;,&quot;11 &quot;:&quot;&quot;,&quot;12 &quot;:&quot;class TokenAuth &quot;,&quot;13 &quot;:&quot;{&quot;,&quot;14 &quot;:&quot;\/**&quot;,&quot;15 &quot;:&quot;* Handle an incoming request.&quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;18 &quot;:&quot;* @param  \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse)  $next &quot;,&quot;19 &quot;:&quot;* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse &quot;,&quot;20 &quot;:&quot;*\/&quot;,&quot;21 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;22 &quot;:&quot;{&quot;,&quot;23 &quot;:&quot;$sistema_key = SistemaKey::where('sis_key_valor', $request->bearerToken())->first();&quot;,&quot;24 &quot;:&quot;if($sistema_key){&quot;,&quot;25 &quot;:&quot;$sistema = Sistema::where('sis_id', $sistema_key->sis_id)->first();&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;if($sistema_key->sis_key_fecha_expiracion > Carbon::now() && $sistema){&quot;,&quot;28 &quot;:&quot;return $next($request);&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;else{&quot;,&quot;31 &quot;:&quot;return response()->json(['codigo' => 4002, 'mensaje' => 'Token no valida']);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;}&quot;,&quot;34 &quot;:&quot;return response()->json(['codigo' => 4001, 'mensaje' => 'Sin autorizacion']);&quot;,&quot;35 &quot;:&quot;}&quot;,&quot;36 &quot;:&quot;}&quot;,&quot;37 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/SubstituteBindings.php &quot;,&quot;line_number &quot;:50,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\SubstituteBindings &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;public function __construct(Registrar $router)&quot;,&quot;25 &quot;:&quot;{&quot;,&quot;26 &quot;:&quot;$this->router = $router;&quot;,&quot;27 &quot;:&quot;}&quot;,&quot;28 &quot;:&quot;&quot;,&quot;29 &quot;:&quot;\/**&quot;,&quot;30 &quot;:&quot;* Handle an incoming request.&quot;,&quot;31 &quot;:&quot;*&quot;,&quot;32 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;33 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;34 &quot;:&quot;* @return mixed &quot;,&quot;35 &quot;:&quot;*\/&quot;,&quot;36 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;37 &quot;:&quot;{&quot;,&quot;38 &quot;:&quot;try {&quot;,&quot;39 &quot;:&quot;$this->router->substituteBindings($route = $request->route());&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$this->router->substituteImplicitBindings($route);&quot;,&quot;42 &quot;:&quot;} catch (ModelNotFoundException $exception) {&quot;,&quot;43 &quot;:&quot;if ($route->getMissing()) {&quot;,&quot;44 &quot;:&quot;return $route->getMissing()($request, $exception);&quot;,&quot;45 &quot;:&quot;}&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;throw $exception;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;return $next($request);&quot;,&quot;51 &quot;:&quot;}&quot;,&quot;52 &quot;:&quot;}&quot;,&quot;53 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:126,&quot;method &quot;:&quot;handleRequest &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;,&quot;117 &quot;:&quot;{&quot;,&quot;118 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;119 &quot;:&quot;if ($this->limiter->tooManyAttempts($limit->key, $limit->maxAttempts)) {&quot;,&quot;120 &quot;:&quot;throw $this->buildException($request, $limit->key, $limit->maxAttempts, $limit->responseCallback);&quot;,&quot;121 &quot;:&quot;}&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this->limiter->hit($limit->key, $limit->decayMinutes * 60);&quot;,&quot;124 &quot;:&quot;}&quot;,&quot;125 &quot;:&quot;&quot;,&quot;126 &quot;:&quot;$response = $next($request);&quot;,&quot;127 &quot;:&quot;&quot;,&quot;128 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;129 &quot;:&quot;$response = $this->addHeaders(&quot;,&quot;130 &quot;:&quot;$response,&quot;,&quot;131 &quot;:&quot;$limit->maxAttempts,&quot;,&quot;132 &quot;:&quot;$this->calculateRemainingAttempts($limit->key, $limit->maxAttempts)&quot;,&quot;133 &quot;:&quot;);&quot;,&quot;134 &quot;:&quot;}&quot;,&quot;135 &quot;:&quot;&quot;,&quot;136 &quot;:&quot;return $response;&quot;,&quot;137 &quot;:&quot;}&quot;,&quot;138 &quot;:&quot;&quot;,&quot;139 &quot;:&quot;\/**&quot;,&quot;140 &quot;:&quot;* Resolve the number of attempts if the user is authenticated or not.&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:102,&quot;method &quot;:&quot;handleRequestUsingNamedLimiter &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;87 &quot;:&quot;return $limiterResponse;&quot;,&quot;88 &quot;:&quot;} elseif ($limiterResponse instanceof Unlimited) {&quot;,&quot;89 &quot;:&quot;return $next($request);&quot;,&quot;90 &quot;:&quot;}&quot;,&quot;91 &quot;:&quot;&quot;,&quot;92 &quot;:&quot;return $this->handleRequest(&quot;,&quot;93 &quot;:&quot;$request,&quot;,&quot;94 &quot;:&quot;$next,&quot;,&quot;95 &quot;:&quot;collect(Arr::wrap($limiterResponse))->map(function ($limit) use ($limiterName) {&quot;,&quot;96 &quot;:&quot;return (object) [&quot;,&quot;97 &quot;:&quot;'key' => md5($limiterName.$limit->key),&quot;,&quot;98 &quot;:&quot;'maxAttempts' => $limit->maxAttempts,&quot;,&quot;99 &quot;:&quot;'decayMinutes' => $limit->decayMinutes,&quot;,&quot;100 &quot;:&quot;'responseCallback' => $limit->responseCallback,&quot;,&quot;101 &quot;:&quot;];&quot;,&quot;102 &quot;:&quot;})->all()&quot;,&quot;103 &quot;:&quot;);&quot;,&quot;104 &quot;:&quot;}&quot;,&quot;105 &quot;:&quot;&quot;,&quot;106 &quot;:&quot;\/**&quot;,&quot;107 &quot;:&quot;* Handle an incoming request.&quot;,&quot;108 &quot;:&quot;*&quot;,&quot;109 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;110 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*&quot;,&quot;40 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;41 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;42 &quot;:&quot;* @param  int|string  $maxAttempts &quot;,&quot;43 &quot;:&quot;* @param  float|int  $decayMinutes &quot;,&quot;44 &quot;:&quot;* @param  string  $prefix &quot;,&quot;45 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;46 &quot;:&quot;*&quot;,&quot;47 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\ThrottleRequestsException &quot;,&quot;48 &quot;:&quot;*\/&quot;,&quot;49 &quot;:&quot;public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = '')&quot;,&quot;50 &quot;:&quot;{&quot;,&quot;51 &quot;:&quot;if (is_string($maxAttempts)&quot;,&quot;52 &quot;:&quot;&& func_num_args() === 3 &quot;,&quot;53 &quot;:&quot;&& ! is_null($limiter = $this->limiter->limiter($maxAttempts))) {&quot;,&quot;54 &quot;:&quot;return $this->handleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;return $this->handleRequest(&quot;,&quot;58 &quot;:&quot;$request,&quot;,&quot;59 &quot;:&quot;$next,&quot;,&quot;60 &quot;:&quot;[&quot;,&quot;61 &quot;:&quot;(object) [&quot;,&quot;62 &quot;:&quot;'key' => $prefix.$this->resolveRequestSignature($request),&quot;,&quot;63 &quot;:&quot;'maxAttempts' => $this->resolveMaxAttempts($request, $maxAttempts),&quot;,&quot;64 &quot;:&quot;'decayMinutes' => $decayMinutes,&quot;,&quot;65 &quot;:&quot;'responseCallback' => null,&quot;,&quot;66 &quot;:&quot;],&quot;,&quot;67 &quot;:&quot;]&quot;,&quot;68 &quot;:&quot;);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this->passable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:799,&quot;method &quot;:&quot;runRouteWithinStack &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;784 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this->container->bound('middleware.disable') && &quot;,&quot;790 &quot;:&quot;$this->container->make('middleware.disable') === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this->container))&quot;,&quot;795 &quot;:&quot;->send($request)&quot;,&quot;796 &quot;:&quot;->through($middleware)&quot;,&quot;797 &quot;:&quot;->then(fn ($request) => $this->prepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route->run()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;,&quot;813 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:776,&quot;method &quot;:&quot;runRoute &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;761 &quot;:&quot;&quot;,&quot;762 &quot;:&quot;\/**&quot;,&quot;763 &quot;:&quot;* Return the response for the given route.&quot;,&quot;764 &quot;:&quot;*&quot;,&quot;765 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;766 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;767 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;768 &quot;:&quot;*\/&quot;,&quot;769 &quot;:&quot;protected function runRoute(Request $request, Route $route)&quot;,&quot;770 &quot;:&quot;{&quot;,&quot;771 &quot;:&quot;$request->setRouteResolver(fn () => $route);&quot;,&quot;772 &quot;:&quot;&quot;,&quot;773 &quot;:&quot;$this->events->dispatch(new RouteMatched($route, $request));&quot;,&quot;774 &quot;:&quot;&quot;,&quot;775 &quot;:&quot;return $this->prepareResponse($request,&quot;,&quot;776 &quot;:&quot;$this->runRouteWithinStack($route, $request)&quot;,&quot;777 &quot;:&quot;);&quot;,&quot;778 &quot;:&quot;}&quot;,&quot;779 &quot;:&quot;&quot;,&quot;780 &quot;:&quot;\/**&quot;,&quot;781 &quot;:&quot;* Run the given route within a Stack "onion" instance.&quot;,&quot;782 &quot;:&quot;*&quot;,&quot;783 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this->container->bound('middleware.disable') && &quot;,&quot;790 &quot;:&quot;$this->container->make('middleware.disable') === true;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:740,&quot;method &quot;:&quot;dispatchToRoute &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this->currentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this->dispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this->runRoute($request, $this->findRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;,&quot;744 &quot;:&quot;* Find the route matching a given request.&quot;,&quot;745 &quot;:&quot;*&quot;,&quot;746 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;747 &quot;:&quot;* @return \Illuminate\Routing\Route &quot;,&quot;748 &quot;:&quot;*\/&quot;,&quot;749 &quot;:&quot;protected function findRoute($request)&quot;,&quot;750 &quot;:&quot;{&quot;,&quot;751 &quot;:&quot;$this->events->dispatch(new Routing($request));&quot;,&quot;752 &quot;:&quot;&quot;,&quot;753 &quot;:&quot;$this->current = $route = $this->routes->match($request);&quot;,&quot;754 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:729,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;714 &quot;:&quot;$route = tap($this->routes->getByName($name))->bind($this->currentRequest);&quot;,&quot;715 &quot;:&quot;&quot;,&quot;716 &quot;:&quot;return $this->runRoute($this->currentRequest, $route);&quot;,&quot;717 &quot;:&quot;}&quot;,&quot;718 &quot;:&quot;&quot;,&quot;719 &quot;:&quot;\/**&quot;,&quot;720 &quot;:&quot;* Dispatch the request to the application.&quot;,&quot;721 &quot;:&quot;*&quot;,&quot;722 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;723 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;724 &quot;:&quot;*\/&quot;,&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this->currentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this->dispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this->runRoute($request, $this->findRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:190,&quot;method &quot;:&quot;Illuminate\Foundation\Http\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Kernel &quot;,&quot;code_snippet &quot;:{&quot;175 &quot;:&quot;if (! $this->app->hasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this->app->bootstrapWith($this->bootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;,&quot;180 &quot;:&quot;\/**&quot;,&quot;181 &quot;:&quot;* Get the route dispatcher callback.&quot;,&quot;182 &quot;:&quot;*&quot;,&quot;183 &quot;:&quot;* @return \Closure &quot;,&quot;184 &quot;:&quot;*\/&quot;,&quot;185 &quot;:&quot;protected function dispatchToRouter()&quot;,&quot;186 &quot;:&quot;{&quot;,&quot;187 &quot;:&quot;return function ($request) {&quot;,&quot;188 &quot;:&quot;$this->app->instance('request', $request);&quot;,&quot;189 &quot;:&quot;&quot;,&quot;190 &quot;:&quot;return $this->router->dispatch($request);&quot;,&quot;191 &quot;:&quot;};&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Call the terminate method on any terminable middleware.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;198 &quot;:&quot;* @param  \Illuminate\Http\Response  $response &quot;,&quot;199 &quot;:&quot;* @return void &quot;,&quot;200 &quot;:&quot;*\/&quot;,&quot;201 &quot;:&quot;public function terminate($request, $response)&quot;,&quot;202 &quot;:&quot;{&quot;,&quot;203 &quot;:&quot;$this->terminateMiddleware($request, $response);&quot;,&quot;204 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\Component\HttpFoundation\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this->clean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request's data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this->cleanParameterBag($request->query);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request->isJson()) {&quot;,&quot;35 &quot;:&quot;$this->cleanParameterBag($request->json());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ConvertEmptyStringsToNull.php &quot;,&quot;line_number &quot;:31,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull &quot;,&quot;code_snippet &quot;:{&quot;16 &quot;:&quot;\/**&quot;,&quot;17 &quot;:&quot;* Handle an incoming request.&quot;,&quot;18 &quot;:&quot;*&quot;,&quot;19 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;20 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;21 &quot;:&quot;* @return mixed &quot;,&quot;22 &quot;:&quot;*\/&quot;,&quot;23 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;24 &quot;:&quot;{&quot;,&quot;25 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;26 &quot;:&quot;if ($callback($request)) {&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;\/**&quot;,&quot;35 &quot;:&quot;* Transform the given value.&quot;,&quot;36 &quot;:&quot;*&quot;,&quot;37 &quot;:&quot;* @param  string  $key &quot;,&quot;38 &quot;:&quot;* @param  mixed  $value &quot;,&quot;39 &quot;:&quot;* @return mixed &quot;,&quot;40 &quot;:&quot;*\/&quot;,&quot;41 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;42 &quot;:&quot;{&quot;,&quot;43 &quot;:&quot;return $value === '' ? null : $value;&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\Component\HttpFoundation\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this->clean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request's data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this->cleanParameterBag($request->query);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request->isJson()) {&quot;,&quot;35 &quot;:&quot;$this->cleanParameterBag($request->json());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TrimStrings.php &quot;,&quot;line_number &quot;:40,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\TrimStrings &quot;,&quot;code_snippet &quot;:{&quot;25 &quot;:&quot;\/**&quot;,&quot;26 &quot;:&quot;* Handle an incoming request.&quot;,&quot;27 &quot;:&quot;*&quot;,&quot;28 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;29 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;30 &quot;:&quot;* @return mixed &quot;,&quot;31 &quot;:&quot;*\/&quot;,&quot;32 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;33 &quot;:&quot;{&quot;,&quot;34 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;35 &quot;:&quot;if ($callback($request)) {&quot;,&quot;36 &quot;:&quot;return $next($request);&quot;,&quot;37 &quot;:&quot;}&quot;,&quot;38 &quot;:&quot;}&quot;,&quot;39 &quot;:&quot;&quot;,&quot;40 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;41 &quot;:&quot;}&quot;,&quot;42 &quot;:&quot;&quot;,&quot;43 &quot;:&quot;\/**&quot;,&quot;44 &quot;:&quot;* Transform the given value.&quot;,&quot;45 &quot;:&quot;*&quot;,&quot;46 &quot;:&quot;* @param  string  $key &quot;,&quot;47 &quot;:&quot;* @param  mixed  $value &quot;,&quot;48 &quot;:&quot;* @return mixed &quot;,&quot;49 &quot;:&quot;*\/&quot;,&quot;50 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;51 &quot;:&quot;{&quot;,&quot;52 &quot;:&quot;if (in_array($key, $this->except, true) || ! is_string($value)) {&quot;,&quot;53 &quot;:&quot;return $value;&quot;,&quot;54 &quot;:&quot;}&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ValidatePostSize.php &quot;,&quot;line_number &quot;:27,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\ValidatePostSize &quot;,&quot;code_snippet &quot;:{&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\PostTooLargeException &quot;,&quot;18 &quot;:&quot;*\/&quot;,&quot;19 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;20 &quot;:&quot;{&quot;,&quot;21 &quot;:&quot;$max = $this->getPostMaxSize();&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {&quot;,&quot;24 &quot;:&quot;throw new PostTooLargeException;&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Determine the server 'post_max_size' as bytes.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @return int &quot;,&quot;34 &quot;:&quot;*\/&quot;,&quot;35 &quot;:&quot;protected function getPostMaxSize()&quot;,&quot;36 &quot;:&quot;{&quot;,&quot;37 &quot;:&quot;if (is_numeric($postMaxSize = ini_get('post_max_size'))) {&quot;,&quot;38 &quot;:&quot;return (int) $postMaxSize;&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$metric = strtoupper(substr($postMaxSize, -1));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/PreventRequestsDuringMaintenance.php &quot;,&quot;line_number &quot;:86,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance &quot;,&quot;code_snippet &quot;:{&quot;71 &quot;:&quot;return response(&quot;,&quot;72 &quot;:&quot;$data['template'],&quot;,&quot;73 &quot;:&quot;$data['status'] ?? 503,&quot;,&quot;74 &quot;:&quot;$this->getHeaders($data)&quot;,&quot;75 &quot;:&quot;);&quot;,&quot;76 &quot;:&quot;}&quot;,&quot;77 &quot;:&quot;&quot;,&quot;78 &quot;:&quot;throw new HttpException(&quot;,&quot;79 &quot;:&quot;$data['status'] ?? 503,&quot;,&quot;80 &quot;:&quot;'Service Unavailable',&quot;,&quot;81 &quot;:&quot;null,&quot;,&quot;82 &quot;:&quot;$this->getHeaders($data)&quot;,&quot;83 &quot;:&quot;);&quot;,&quot;84 &quot;:&quot;}&quot;,&quot;85 &quot;:&quot;&quot;,&quot;86 &quot;:&quot;return $next($request);&quot;,&quot;87 &quot;:&quot;}&quot;,&quot;88 &quot;:&quot;&quot;,&quot;89 &quot;:&quot;\/**&quot;,&quot;90 &quot;:&quot;* Determine if the incoming request has a maintenance mode bypass cookie.&quot;,&quot;91 &quot;:&quot;*&quot;,&quot;92 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;93 &quot;:&quot;* @param  array  $data &quot;,&quot;94 &quot;:&quot;* @return bool &quot;,&quot;95 &quot;:&quot;*\/&quot;,&quot;96 &quot;:&quot;protected function hasValidBypassCookie($request, array $data)&quot;,&quot;97 &quot;:&quot;{&quot;,&quot;98 &quot;:&quot;return isset($data['secret']) && &quot;,&quot;99 &quot;:&quot;$request->cookie('laravel_maintenance') && &quot;,&quot;100 &quot;:&quot;MaintenanceModeBypassCookie::isValid(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/fruitcake\/laravel-cors\/src\/HandleCors.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Fruitcake\Cors\HandleCors &quot;,&quot;code_snippet &quot;:{&quot;37 &quot;:&quot;if (! $this->shouldRun($request)) {&quot;,&quot;38 &quot;:&quot;return $next($request);&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;\/\/ For Preflight, return the Preflight response &quot;,&quot;42 &quot;:&quot;if ($this->cors->isPreflightRequest($request)) {&quot;,&quot;43 &quot;:&quot;$response = $this->cors->handlePreflightRequest($request);&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;$this->cors->varyHeader($response, 'Access-Control-Request-Method');&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;return $response;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;\/\/ Handle the request &quot;,&quot;52 &quot;:&quot;$response = $next($request);&quot;,&quot;53 &quot;:&quot;&quot;,&quot;54 &quot;:&quot;if ($request->getMethod() === 'OPTIONS') {&quot;,&quot;55 &quot;:&quot;$this->cors->varyHeader($response, 'Access-Control-Request-Method');&quot;,&quot;56 &quot;:&quot;}&quot;,&quot;57 &quot;:&quot;&quot;,&quot;58 &quot;:&quot;return $this->addHeaders($request, $response);&quot;,&quot;59 &quot;:&quot;}&quot;,&quot;60 &quot;:&quot;&quot;,&quot;61 &quot;:&quot;\/**&quot;,&quot;62 &quot;:&quot;* Add the headers to the Response, if they don't exist yet.&quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @param Request $request &quot;,&quot;65 &quot;:&quot;* @param Response $response &quot;,&quot;66 &quot;:&quot;* @return Response &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Http\/Middleware\/TrustProxies.php &quot;,&quot;line_number &quot;:39,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Http\Middleware\TrustProxies &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Handle an incoming request.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;28 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;29 &quot;:&quot;* @return mixed &quot;,&quot;30 &quot;:&quot;*&quot;,&quot;31 &quot;:&quot;* @throws \Symfony\Component\HttpKernel\Exception\HttpException &quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;34 &quot;:&quot;{&quot;,&quot;35 &quot;:&quot;$request::setTrustedProxies([], $this->getTrustedHeaderNames());&quot;,&quot;36 &quot;:&quot;&quot;,&quot;37 &quot;:&quot;$this->setTrustedProxyIpAddresses($request);&quot;,&quot;38 &quot;:&quot;&quot;,&quot;39 &quot;:&quot;return $next($request);&quot;,&quot;40 &quot;:&quot;}&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;\/**&quot;,&quot;43 &quot;:&quot;* Sets the trusted proxies on the request.&quot;,&quot;44 &quot;:&quot;*&quot;,&quot;45 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;46 &quot;:&quot;* @return void &quot;,&quot;47 &quot;:&quot;*\/&quot;,&quot;48 &quot;:&quot;protected function setTrustedProxyIpAddresses(Request $request)&quot;,&quot;49 &quot;:&quot;{&quot;,&quot;50 &quot;:&quot;$trustedIps = $this->proxies() ?: config('trustedproxy.proxies');&quot;,&quot;51 &quot;:&quot;&quot;,&quot;52 &quot;:&quot;if ($trustedIps === '*' || $trustedIps === '**') {&quot;,&quot;53 &quot;:&quot;return $this->setTrustedProxyIpAddressesToTheCallingIp($request);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:121,&quot;method &quot;:&quot;handleStatefulRequest &quot;,&quot;class &quot;:&quot;Illuminate\Session\Middleware\StartSession &quot;,&quot;code_snippet &quot;:{&quot;106 &quot;:&quot;* @param  \Illuminate\Contracts\Session\Session  $session &quot;,&quot;107 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;protected function handleStatefulRequest(Request $request, $session, Closure $next)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;\/\/ If a session driver has been configured, we will need to start the session here &quot;,&quot;113 &quot;:&quot;\/\/ so that the data is ready for an application. Note that the Laravel sessions &quot;,&quot;114 &quot;:&quot;\/\/ do not make use of PHP "native" sessions in any way since they are crappy.&quot;,&quot;115 &quot;:&quot;$request->setLaravelSession(&quot;,&quot;116 &quot;:&quot;$this->startSession($request, $session)&quot;,&quot;117 &quot;:&quot;);&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;$this->collectGarbage($session);&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;$response = $next($request);&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this->storeCurrentUrl($request, $session);&quot;,&quot;124 &quot;:&quot;&quot;,&quot;125 &quot;:&quot;$this->addCookieToResponse($response, $session);&quot;,&quot;126 &quot;:&quot;&quot;,&quot;127 &quot;:&quot;\/\/ Again, if the session has been configured we will need to close out the session &quot;,&quot;128 &quot;:&quot;\/\/ so that the attributes may be persisted to some storage medium. We will also &quot;,&quot;129 &quot;:&quot;\/\/ add the session identifier cookie to the application response headers now.&quot;,&quot;130 &quot;:&quot;$this->saveSession($request);&quot;,&quot;131 &quot;:&quot;&quot;,&quot;132 &quot;:&quot;return $response;&quot;,&quot;133 &quot;:&quot;}&quot;,&quot;134 &quot;:&quot;&quot;,&quot;135 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:64,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Session\Middleware\StartSession &quot;,&quot;code_snippet &quot;:{&quot;49 &quot;:&quot;* @return mixed &quot;,&quot;50 &quot;:&quot;*\/&quot;,&quot;51 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;52 &quot;:&quot;{&quot;,&quot;53 &quot;:&quot;if (! $this->sessionConfigured()) {&quot;,&quot;54 &quot;:&quot;return $next($request);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;$session = $this->getSession($request);&quot;,&quot;58 &quot;:&quot;&quot;,&quot;59 &quot;:&quot;if ($this->manager->shouldBlock() ||&quot;,&quot;60 &quot;:&quot;($request->route() instanceof Route && $request->route()->locksFor())) {&quot;,&quot;61 &quot;:&quot;return $this->handleRequestWhileBlocking($request, $session, $next);&quot;,&quot;62 &quot;:&quot;}&quot;,&quot;63 &quot;:&quot;&quot;,&quot;64 &quot;:&quot;return $this->handleStatefulRequest($request, $session, $next);&quot;,&quot;65 &quot;:&quot;}&quot;,&quot;66 &quot;:&quot;&quot;,&quot;67 &quot;:&quot;\/**&quot;,&quot;68 &quot;:&quot;* Handle the given request within session state.&quot;,&quot;69 &quot;:&quot;*&quot;,&quot;70 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;71 &quot;:&quot;* @param  \Illuminate\Contracts\Session\Session  $session &quot;,&quot;72 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;73 &quot;:&quot;* @return mixed &quot;,&quot;74 &quot;:&quot;*\/&quot;,&quot;75 &quot;:&quot;protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)&quot;,&quot;76 &quot;:&quot;{&quot;,&quot;77 &quot;:&quot;if (! $request->route() instanceof Route) {&quot;,&quot;78 &quot;:&quot;return;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this->passable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:165,&quot;method &quot;:&quot;sendRequestThroughRouter &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Kernel &quot;,&quot;code_snippet &quot;:{&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;152 &quot;:&quot;* @return \Illuminate\Http\Response &quot;,&quot;153 &quot;:&quot;*\/&quot;,&quot;154 &quot;:&quot;protected function sendRequestThroughRouter($request)&quot;,&quot;155 &quot;:&quot;{&quot;,&quot;156 &quot;:&quot;$this->app->instance('request', $request);&quot;,&quot;157 &quot;:&quot;&quot;,&quot;158 &quot;:&quot;Facade::clearResolvedInstance('request');&quot;,&quot;159 &quot;:&quot;&quot;,&quot;160 &quot;:&quot;$this->bootstrap();&quot;,&quot;161 &quot;:&quot;&quot;,&quot;162 &quot;:&quot;return (new Pipeline($this->app))&quot;,&quot;163 &quot;:&quot;->send($request)&quot;,&quot;164 &quot;:&quot;->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)&quot;,&quot;165 &quot;:&quot;->then($this->dispatchToRouter());&quot;,&quot;166 &quot;:&quot;}&quot;,&quot;167 &quot;:&quot;&quot;,&quot;168 &quot;:&quot;\/**&quot;,&quot;169 &quot;:&quot;* Bootstrap the application for HTTP requests.&quot;,&quot;170 &quot;:&quot;*&quot;,&quot;171 &quot;:&quot;* @return void &quot;,&quot;172 &quot;:&quot;*\/&quot;,&quot;173 &quot;:&quot;public function bootstrap()&quot;,&quot;174 &quot;:&quot;{&quot;,&quot;175 &quot;:&quot;if (! $this->app->hasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this->app->bootstrapWith($this->bootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:134,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Kernel &quot;,&quot;code_snippet &quot;:{&quot;119 &quot;:&quot;}&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;\/**&quot;,&quot;122 &quot;:&quot;* Handle an incoming HTTP request.&quot;,&quot;123 &quot;:&quot;*&quot;,&quot;124 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;125 &quot;:&quot;* @return \Illuminate\Http\Response &quot;,&quot;126 &quot;:&quot;*\/&quot;,&quot;127 &quot;:&quot;public function handle($request)&quot;,&quot;128 &quot;:&quot;{&quot;,&quot;129 &quot;:&quot;$this->requestStartedAt = Carbon::now();&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;try {&quot;,&quot;132 &quot;:&quot;$request->enableHttpMethodParameterOverride();&quot;,&quot;133 &quot;:&quot;&quot;,&quot;134 &quot;:&quot;$response = $this->sendRequestThroughRouter($request);&quot;,&quot;135 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;136 &quot;:&quot;$this->reportException($e);&quot;,&quot;137 &quot;:&quot;&quot;,&quot;138 &quot;:&quot;$response = $this->renderException($request, $e);&quot;,&quot;139 &quot;:&quot;}&quot;,&quot;140 &quot;:&quot;&quot;,&quot;141 &quot;:&quot;$this->app['events']->dispatch(&quot;,&quot;142 &quot;:&quot;new RequestHandled($request, $response)&quot;,&quot;143 &quot;:&quot;);&quot;,&quot;144 &quot;:&quot;&quot;,&quot;145 &quot;:&quot;return $response;&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/public\/index.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;[top]&quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;27 &quot;:&quot;|&quot;,&quot;28 &quot;:&quot;| Composer provides a convenient, automatically generated class loader for &quot;,&quot;29 &quot;:&quot;| this application. We just need to utilize it! We'll simply require it &quot;,&quot;30 &quot;:&quot;| into the script here so we don't need to manually load our classes.&quot;,&quot;31 &quot;:&quot;|&quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;require __DIR__.'\/..\/vendor\/autoload.php';&quot;,&quot;35 &quot;:&quot;&quot;,&quot;36 &quot;:&quot;\/*&quot;,&quot;37 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;38 &quot;:&quot;| Run The Application &quot;,&quot;39 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;40 &quot;:&quot;|&quot;,&quot;41 &quot;:&quot;| Once we have the application, we can handle the incoming request using &quot;,&quot;42 &quot;:&quot;| the application's HTTP kernel. Then, we will send the response back &quot;,&quot;43 &quot;:&quot;| to this client's browser, allowing them to enjoy our application.&quot;,&quot;44 &quot;:&quot;|&quot;,&quot;45 &quot;:&quot;*\/&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;$app = require_once __DIR__.'\/..\/bootstrap\/app.php';&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;$kernel = $app->make(Kernel::class);&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;$response = $kernel->handle(&quot;,&quot;52 &quot;:&quot;$request = Request::capture()&quot;,&quot;53 &quot;:&quot;)->send();&quot;,&quot;54 &quot;:&quot;&quot;,&quot;55 &quot;:&quot;$kernel->terminate($request, $response);&quot;,&quot;56 &quot;:&quot;&quot;},&quot;application_frame &quot;:false}],&quot;context &quot;:{&quot;request &quot;:{&quot;url &quot;:&quot;http:\/\/api-test.losangeles.cl\/api\/apiArchivos\/guardarArchivo &quot;,&quot;ip &quot;:null,&quot;method &quot;:&quot;POST &quot;,&quot;useragent &quot;:&quot;GuzzleHttp\/7 &quot;},&quot;request_data &quot;:{&quot;queryString &quot;:[],&quot;body &quot;:{&quot;folio &quot;:&quot;3-2023 &quot;,&quot;tipo &quot;:&quot;PER &quot;,&quot;sub_tipo &quot;:&quot;PERGOCE &quot;,&quot;version &quot;:&quot;v1 &quot;},&quot;files &quot;:{&quot;documento &quot;:{&quot;pathname &quot;:&quot;\/tmp\/phpE3eCur &quot;,&quot;size &quot;:89939,&quot;mimeType &quot;:&quot;application\/pdf &quot;},&quot;anexos_archivo_row &quot;:[{&quot;pathname &quot;:&quot;&quot;,&quot;size &quot;:false,&quot;mimeType &quot;:&quot;undefined &quot;}]}},&quot;headers &quot;:{&quot;content-length &quot;:&quot;6271485 &quot;,&quot;content-type &quot;:&quot;multipart\/form-data; boundary=90694109046113b3d33c1977f3c4b522f03df5a6 &quot;,&quot;user-agent &quot;:&quot;GuzzleHttp\/7 &quot;,&quot;expect &quot;:&quot;100-Continue &quot;,&quot;host &quot;:&quot;api-test.losangeles.cl &quot;,&quot;authorization &quot;:&quot;Bearer M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;},&quot;cookies &quot;:[],&quot;session &quot;:{&quot;_token &quot;:&quot;9oVcgGtqn3oyubgvd0yjycN64pPJvjWfNmlqDYKx &quot;},&quot;route &quot;:{&quot;route &quot;:&quot;guardarArchivo &quot;,&quot;routeParameters &quot;:[],&quot;controllerAction &quot;:&quot;App\Http\Controllers\ApiArchivosController@guardarArchivo &quot;,&quot;middleware &quot;:[&quot;api &quot;,&quot;App\Http\Middleware\TokenAuth &quot;]},&quot;env &quot;:{&quot;php_version &quot;:&quot;8.1.23 &quot;,&quot;laravel_version &quot;:&quot;9.52.4 &quot;,&quot;laravel_locale &quot;:&quot;es &quot;,&quot;laravel_config_cached &quot;:true,&quot;app_debug &quot;:true,&quot;app_env &quot;:&quot;local &quot;},&quot;dumps &quot;:[],&quot;logs &quot;:[],&quot;queries &quot;:[{&quot;sql &quot;:&quot;select * from `muni_sistemas_keys` where `sis_key_valor` = ? limit 1 &quot;,&quot;time &quot;:3.13,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[&quot;M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;],&quot;microtime &quot;:1697033082.999872},{&quot;sql &quot;:&quot;select * from `muni_sistemas` where `sis_id` = ? limit 1 &quot;,&quot;time &quot;:1.11,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[56],&quot;microtime &quot;:1697033083.001531}]},&quot;stage &quot;:&quot;local &quot;,&quot;message_level &quot;:null,&quot;open_frame_index &quot;:null,&quot;application_path &quot;:&quot;\/var\/www\/apis\/API_servicios &quot;,&quot;application_version &quot;:null,&quot;tracking_uuid &quot;:&quot;433cb1b2-da47-4ba2-a595-9978d47d4ac5 &quot;},&quot;shareableReport &quot;:{&quot;notifier &quot;:&quot;Laravel Client &quot;,&quot;language &quot;:&quot;PHP &quot;,&quot;framework_version &quot;:&quot;9.52.4 &quot;,&quot;language_version &quot;:&quot;8.1.23 &quot;,&quot;exception_class &quot;:&quot;ValueError &quot;,&quot;seen_at &quot;:1697033083,&quot;message &quot;:&quot;Path cannot be empty &quot;,&quot;glows &quot;:[],&quot;solutions &quot;:[],&quot;documentation_links &quot;:[],&quot;stacktrace &quot;:[{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;fopen &quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\Support\Facades\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config('system.api_archivos_url');&quot;,&quot;13 &quot;:&quot;$token = config('system.api_archivos_key');&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, 'r');&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response->attach('documento', $documento, 'documento.pdf');&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, 'r');&quot;,&quot;20 &quot;:&quot;$nombre = $anexo->getClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response->attach('anexos_archivo_row[]', $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response->post($api_url.'guardarDocumentoGestionDocumental', [&quot;,&quot;25 &quot;:&quot;['name' => 'folio', 'contents' => $folio],&quot;,&quot;26 &quot;:&quot;['name' => 'tipo', 'contents' => $tipo],&quot;,&quot;27 &quot;:&quot;['name' => 'sub_tipo', 'contents' => $sub_tipo],&quot;,&quot;28 &quot;:&quot;['name' => 'version', 'contents' => $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response->successful()){&quot;,&quot;32 &quot;:&quot;$data = $response->object();&quot;,&quot;33 &quot;:&quot;if($data->codigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;enviarArchivo &quot;,&quot;class &quot;:&quot;App\Services\ApiArchivoService &quot;,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\Support\Facades\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config('system.api_archivos_url');&quot;,&quot;13 &quot;:&quot;$token = config('system.api_archivos_key');&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, 'r');&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response->attach('documento', $documento, 'documento.pdf');&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, 'r');&quot;,&quot;20 &quot;:&quot;$nombre = $anexo->getClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response->attach('anexos_archivo_row[]', $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response->post($api_url.'guardarDocumentoGestionDocumental', [&quot;,&quot;25 &quot;:&quot;['name' => 'folio', 'contents' => $folio],&quot;,&quot;26 &quot;:&quot;['name' => 'tipo', 'contents' => $tipo],&quot;,&quot;27 &quot;:&quot;['name' => 'sub_tipo', 'contents' => $sub_tipo],&quot;,&quot;28 &quot;:&quot;['name' => 'version', 'contents' => $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response->successful()){&quot;,&quot;32 &quot;:&quot;$data = $response->object();&quot;,&quot;33 &quot;:&quot;if($data->codigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Controllers\/ApiArchivosController.php &quot;,&quot;line_number &quot;:14,&quot;method &quot;:&quot;guardarArchivo &quot;,&quot;class &quot;:&quot;App\Http\Controllers\ApiArchivosController &quot;,&quot;code_snippet &quot;:{&quot;1 &quot;:&quot;<?php &quot;,&quot;2 &quot;:&quot;&quot;,&quot;3 &quot;:&quot;namespace App\Http\Controllers;&quot;,&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\Http\Request;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;use App\Services\ApiArchivoService;&quot;,&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;class ApiArchivosController extends Controller &quot;,&quot;10 &quot;:&quot;{&quot;,&quot;11 &quot;:&quot;public function guardarArchivo(Request $request){&quot;,&quot;12 &quot;:&quot;&quot;,&quot;13 &quot;:&quot;$anexos = $request->file('anexos_archivo_row') ? $request->file('anexos_archivo_row') : [];&quot;,&quot;14 &quot;:&quot;return ApiArchivoService::enviarArchivo($request->file('documento'), $request->folio, $request->tipo, $request->sub_tipo,&quot;,&quot;15 &quot;:&quot;$request->version, $anexos);&quot;,&quot;16 &quot;:&quot;}&quot;,&quot;17 &quot;:&quot;&quot;,&quot;18 &quot;:&quot;public function obtenerArchivo(Request $request){&quot;,&quot;19 &quot;:&quot;&quot;,&quot;20 &quot;:&quot;return ApiArchivoService::obtenerArchivo($request->folio, $request->tipo, $request->sub_tipo, $request->version);&quot;,&quot;21 &quot;:&quot;}&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;public function obtenerAnexo(Request $request){&quot;,&quot;24 &quot;:&quot;return ApiArchivoService::obtenerAnexo($request->folio, $request->tipo, $request->sub_tipo, $request->nombre);&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;}&quot;,&quot;27 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;callAction &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Controller &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*\/&quot;,&quot;40 &quot;:&quot;public function getMiddleware()&quot;,&quot;41 &quot;:&quot;{&quot;,&quot;42 &quot;:&quot;return $this->middleware;&quot;,&quot;43 &quot;:&quot;}&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;\/**&quot;,&quot;46 &quot;:&quot;* Execute an action on the controller.&quot;,&quot;47 &quot;:&quot;*&quot;,&quot;48 &quot;:&quot;* @param  string  $method &quot;,&quot;49 &quot;:&quot;* @param  array  $parameters &quot;,&quot;50 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;51 &quot;:&quot;*\/&quot;,&quot;52 &quot;:&quot;public function callAction($method, $parameters)&quot;,&quot;53 &quot;:&quot;{&quot;,&quot;54 &quot;:&quot;return $this->{$method}(...array_values($parameters));&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;\/**&quot;,&quot;58 &quot;:&quot;* Handle calls to missing methods on the controller.&quot;,&quot;59 &quot;:&quot;*&quot;,&quot;60 &quot;:&quot;* @param  string  $method &quot;,&quot;61 &quot;:&quot;* @param  array  $parameters &quot;,&quot;62 &quot;:&quot;* @return mixed &quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @throws \BadMethodCallException &quot;,&quot;65 &quot;:&quot;*\/&quot;,&quot;66 &quot;:&quot;public function __call($method, $parameters)&quot;,&quot;67 &quot;:&quot;{&quot;,&quot;68 &quot;:&quot;throw new BadMethodCallException(sprintf(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php &quot;,&quot;line_number &quot;:43,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\Routing\ControllerDispatcher &quot;,&quot;code_snippet &quot;:{&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Dispatch a request to a given controller and method.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;34 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;35 &quot;:&quot;* @param  string  $method &quot;,&quot;36 &quot;:&quot;* @return mixed &quot;,&quot;37 &quot;:&quot;*\/&quot;,&quot;38 &quot;:&quot;public function dispatch(Route $route, $controller, $method)&quot;,&quot;39 &quot;:&quot;{&quot;,&quot;40 &quot;:&quot;$parameters = $this->resolveParameters($route, $controller, $method);&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;if (method_exists($controller, 'callAction')) {&quot;,&quot;43 &quot;:&quot;return $controller->callAction($method, $parameters);&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;,&quot;46 &quot;:&quot;return $controller->{$method}(...array_values($parameters));&quot;,&quot;47 &quot;:&quot;}&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;\/**&quot;,&quot;50 &quot;:&quot;* Resolve the parameters for the controller.&quot;,&quot;51 &quot;:&quot;*&quot;,&quot;52 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;53 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;54 &quot;:&quot;* @param  string  $method &quot;,&quot;55 &quot;:&quot;* @return array &quot;,&quot;56 &quot;:&quot;*\/&quot;,&quot;57 &quot;:&quot;protected function resolveParameters(Route $route, $controller, $method)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:260,&quot;method &quot;:&quot;runController &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Route &quot;,&quot;code_snippet &quot;:{&quot;245 &quot;:&quot;protected function isSerializedClosure()&quot;,&quot;246 &quot;:&quot;{&quot;,&quot;247 &quot;:&quot;return RouteAction::containsSerializedClosure($this->action);&quot;,&quot;248 &quot;:&quot;}&quot;,&quot;249 &quot;:&quot;&quot;,&quot;250 &quot;:&quot;\/**&quot;,&quot;251 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;252 &quot;:&quot;*&quot;,&quot;253 &quot;:&quot;* @return mixed &quot;,&quot;254 &quot;:&quot;*&quot;,&quot;255 &quot;:&quot;* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException &quot;,&quot;256 &quot;:&quot;*\/&quot;,&quot;257 &quot;:&quot;protected function runController()&quot;,&quot;258 &quot;:&quot;{&quot;,&quot;259 &quot;:&quot;return $this->controllerDispatcher()->dispatch(&quot;,&quot;260 &quot;:&quot;$this, $this->getController(), $this->getControllerMethod()&quot;,&quot;261 &quot;:&quot;);&quot;,&quot;262 &quot;:&quot;}&quot;,&quot;263 &quot;:&quot;&quot;,&quot;264 &quot;:&quot;\/**&quot;,&quot;265 &quot;:&quot;* Get the controller instance for the route.&quot;,&quot;266 &quot;:&quot;*&quot;,&quot;267 &quot;:&quot;* @return mixed &quot;,&quot;268 &quot;:&quot;*\/&quot;,&quot;269 &quot;:&quot;public function getController()&quot;,&quot;270 &quot;:&quot;{&quot;,&quot;271 &quot;:&quot;if (! $this->controller) {&quot;,&quot;272 &quot;:&quot;$class = $this->getControllerClass();&quot;,&quot;273 &quot;:&quot;&quot;,&quot;274 &quot;:&quot;$this->controller = $this->container->make(ltrim($class, '\\'));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:205,&quot;method &quot;:&quot;run &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Route &quot;,&quot;code_snippet &quot;:{&quot;190 &quot;:&quot;{&quot;,&quot;191 &quot;:&quot;return RouteAction::parse($this->uri, $action);&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @return mixed &quot;,&quot;198 &quot;:&quot;*\/&quot;,&quot;199 &quot;:&quot;public function run()&quot;,&quot;200 &quot;:&quot;{&quot;,&quot;201 &quot;:&quot;$this->container = $this->container ?: new Container;&quot;,&quot;202 &quot;:&quot;&quot;,&quot;203 &quot;:&quot;try {&quot;,&quot;204 &quot;:&quot;if ($this->isControllerAction()) {&quot;,&quot;205 &quot;:&quot;return $this->runController();&quot;,&quot;206 &quot;:&quot;}&quot;,&quot;207 &quot;:&quot;&quot;,&quot;208 &quot;:&quot;return $this->runCallable();&quot;,&quot;209 &quot;:&quot;} catch (HttpResponseException $e) {&quot;,&quot;210 &quot;:&quot;return $e->getResponse();&quot;,&quot;211 &quot;:&quot;}&quot;,&quot;212 &quot;:&quot;}&quot;,&quot;213 &quot;:&quot;&quot;,&quot;214 &quot;:&quot;\/**&quot;,&quot;215 &quot;:&quot;* Checks whether the route's action is a controller.&quot;,&quot;216 &quot;:&quot;*&quot;,&quot;217 &quot;:&quot;* @return bool &quot;,&quot;218 &quot;:&quot;*\/&quot;,&quot;219 &quot;:&quot;protected function isControllerAction()&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:798,&quot;method &quot;:&quot;Illuminate\Routing\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;783 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this->container->bound('middleware.disable') && &quot;,&quot;790 &quot;:&quot;$this->container->make('middleware.disable') === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this->container))&quot;,&quot;795 &quot;:&quot;->send($request)&quot;,&quot;796 &quot;:&quot;->through($middleware)&quot;,&quot;797 &quot;:&quot;->then(fn ($request) => $this->prepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route->run()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Middleware\/TokenAuth.php &quot;,&quot;line_number &quot;:28,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;App\Http\Middleware\TokenAuth &quot;,&quot;code_snippet &quot;:{&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;use App\Models\Sistema;&quot;,&quot;10 &quot;:&quot;use App\Models\SistemaKey;&quot;,&quot;11 &quot;:&quot;&quot;,&quot;12 &quot;:&quot;class TokenAuth &quot;,&quot;13 &quot;:&quot;{&quot;,&quot;14 &quot;:&quot;\/**&quot;,&quot;15 &quot;:&quot;* Handle an incoming request.&quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;18 &quot;:&quot;* @param  \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse)  $next &quot;,&quot;19 &quot;:&quot;* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse &quot;,&quot;20 &quot;:&quot;*\/&quot;,&quot;21 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;22 &quot;:&quot;{&quot;,&quot;23 &quot;:&quot;$sistema_key = SistemaKey::where('sis_key_valor', $request->bearerToken())->first();&quot;,&quot;24 &quot;:&quot;if($sistema_key){&quot;,&quot;25 &quot;:&quot;$sistema = Sistema::where('sis_id', $sistema_key->sis_id)->first();&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;if($sistema_key->sis_key_fecha_expiracion > Carbon::now() && $sistema){&quot;,&quot;28 &quot;:&quot;return $next($request);&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;else{&quot;,&quot;31 &quot;:&quot;return response()->json(['codigo' => 4002, 'mensaje' => 'Token no valida']);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;}&quot;,&quot;34 &quot;:&quot;return response()->json(['codigo' => 4001, 'mensaje' => 'Sin autorizacion']);&quot;,&quot;35 &quot;:&quot;}&quot;,&quot;36 &quot;:&quot;}&quot;,&quot;37 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/SubstituteBindings.php &quot;,&quot;line_number &quot;:50,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\SubstituteBindings &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;public function __construct(Registrar $router)&quot;,&quot;25 &quot;:&quot;{&quot;,&quot;26 &quot;:&quot;$this->router = $router;&quot;,&quot;27 &quot;:&quot;}&quot;,&quot;28 &quot;:&quot;&quot;,&quot;29 &quot;:&quot;\/**&quot;,&quot;30 &quot;:&quot;* Handle an incoming request.&quot;,&quot;31 &quot;:&quot;*&quot;,&quot;32 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;33 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;34 &quot;:&quot;* @return mixed &quot;,&quot;35 &quot;:&quot;*\/&quot;,&quot;36 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;37 &quot;:&quot;{&quot;,&quot;38 &quot;:&quot;try {&quot;,&quot;39 &quot;:&quot;$this->router->substituteBindings($route = $request->route());&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$this->router->substituteImplicitBindings($route);&quot;,&quot;42 &quot;:&quot;} catch (ModelNotFoundException $exception) {&quot;,&quot;43 &quot;:&quot;if ($route->getMissing()) {&quot;,&quot;44 &quot;:&quot;return $route->getMissing()($request, $exception);&quot;,&quot;45 &quot;:&quot;}&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;throw $exception;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;return $next($request);&quot;,&quot;51 &quot;:&quot;}&quot;,&quot;52 &quot;:&quot;}&quot;,&quot;53 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:126,&quot;method &quot;:&quot;handleRequest &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;,&quot;117 &quot;:&quot;{&quot;,&quot;118 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;119 &quot;:&quot;if ($this->limiter->tooManyAttempts($limit->key, $limit->maxAttempts)) {&quot;,&quot;120 &quot;:&quot;throw $this->buildException($request, $limit->key, $limit->maxAttempts, $limit->responseCallback);&quot;,&quot;121 &quot;:&quot;}&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this->limiter->hit($limit->key, $limit->decayMinutes * 60);&quot;,&quot;124 &quot;:&quot;}&quot;,&quot;125 &quot;:&quot;&quot;,&quot;126 &quot;:&quot;$response = $next($request);&quot;,&quot;127 &quot;:&quot;&quot;,&quot;128 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;129 &quot;:&quot;$response = $this->addHeaders(&quot;,&quot;130 &quot;:&quot;$response,&quot;,&quot;131 &quot;:&quot;$limit->maxAttempts,&quot;,&quot;132 &quot;:&quot;$this->calculateRemainingAttempts($limit->key, $limit->maxAttempts)&quot;,&quot;133 &quot;:&quot;);&quot;,&quot;134 &quot;:&quot;}&quot;,&quot;135 &quot;:&quot;&quot;,&quot;136 &quot;:&quot;return $response;&quot;,&quot;137 &quot;:&quot;}&quot;,&quot;138 &quot;:&quot;&quot;,&quot;139 &quot;:&quot;\/**&quot;,&quot;140 &quot;:&quot;* Resolve the number of attempts if the user is authenticated or not.&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:102,&quot;method &quot;:&quot;handleRequestUsingNamedLimiter &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;87 &quot;:&quot;return $limiterResponse;&quot;,&quot;88 &quot;:&quot;} elseif ($limiterResponse instanceof Unlimited) {&quot;,&quot;89 &quot;:&quot;return $next($request);&quot;,&quot;90 &quot;:&quot;}&quot;,&quot;91 &quot;:&quot;&quot;,&quot;92 &quot;:&quot;return $this->handleRequest(&quot;,&quot;93 &quot;:&quot;$request,&quot;,&quot;94 &quot;:&quot;$next,&quot;,&quot;95 &quot;:&quot;collect(Arr::wrap($limiterResponse))->map(function ($limit) use ($limiterName) {&quot;,&quot;96 &quot;:&quot;return (object) [&quot;,&quot;97 &quot;:&quot;'key' => md5($limiterName.$limit->key),&quot;,&quot;98 &quot;:&quot;'maxAttempts' => $limit->maxAttempts,&quot;,&quot;99 &quot;:&quot;'decayMinutes' => $limit->decayMinutes,&quot;,&quot;100 &quot;:&quot;'responseCallback' => $limit->responseCallback,&quot;,&quot;101 &quot;:&quot;];&quot;,&quot;102 &quot;:&quot;})->all()&quot;,&quot;103 &quot;:&quot;);&quot;,&quot;104 &quot;:&quot;}&quot;,&quot;105 &quot;:&quot;&quot;,&quot;106 &quot;:&quot;\/**&quot;,&quot;107 &quot;:&quot;* Handle an incoming request.&quot;,&quot;108 &quot;:&quot;*&quot;,&quot;109 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;110 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Middleware\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*&quot;,&quot;40 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;41 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;42 &quot;:&quot;* @param  int|string  $maxAttempts &quot;,&quot;43 &quot;:&quot;* @param  float|int  $decayMinutes &quot;,&quot;44 &quot;:&quot;* @param  string  $prefix &quot;,&quot;45 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;46 &quot;:&quot;*&quot;,&quot;47 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\ThrottleRequestsException &quot;,&quot;48 &quot;:&quot;*\/&quot;,&quot;49 &quot;:&quot;public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = '')&quot;,&quot;50 &quot;:&quot;{&quot;,&quot;51 &quot;:&quot;if (is_string($maxAttempts)&quot;,&quot;52 &quot;:&quot;&& func_num_args() === 3 &quot;,&quot;53 &quot;:&quot;&& ! is_null($limiter = $this->limiter->limiter($maxAttempts))) {&quot;,&quot;54 &quot;:&quot;return $this->handleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;return $this->handleRequest(&quot;,&quot;58 &quot;:&quot;$request,&quot;,&quot;59 &quot;:&quot;$next,&quot;,&quot;60 &quot;:&quot;[&quot;,&quot;61 &quot;:&quot;(object) [&quot;,&quot;62 &quot;:&quot;'key' => $prefix.$this->resolveRequestSignature($request),&quot;,&quot;63 &quot;:&quot;'maxAttempts' => $this->resolveMaxAttempts($request, $maxAttempts),&quot;,&quot;64 &quot;:&quot;'decayMinutes' => $decayMinutes,&quot;,&quot;65 &quot;:&quot;'responseCallback' => null,&quot;,&quot;66 &quot;:&quot;],&quot;,&quot;67 &quot;:&quot;]&quot;,&quot;68 &quot;:&quot;);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this->passable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:799,&quot;method &quot;:&quot;runRouteWithinStack &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;784 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this->container->bound('middleware.disable') && &quot;,&quot;790 &quot;:&quot;$this->container->make('middleware.disable') === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this->container))&quot;,&quot;795 &quot;:&quot;->send($request)&quot;,&quot;796 &quot;:&quot;->through($middleware)&quot;,&quot;797 &quot;:&quot;->then(fn ($request) => $this->prepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route->run()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this->resolveMiddleware($route->gatherMiddleware(), $route->excludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;,&quot;813 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:776,&quot;method &quot;:&quot;runRoute &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;761 &quot;:&quot;&quot;,&quot;762 &quot;:&quot;\/**&quot;,&quot;763 &quot;:&quot;* Return the response for the given route.&quot;,&quot;764 &quot;:&quot;*&quot;,&quot;765 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;766 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;767 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;768 &quot;:&quot;*\/&quot;,&quot;769 &quot;:&quot;protected function runRoute(Request $request, Route $route)&quot;,&quot;770 &quot;:&quot;{&quot;,&quot;771 &quot;:&quot;$request->setRouteResolver(fn () => $route);&quot;,&quot;772 &quot;:&quot;&quot;,&quot;773 &quot;:&quot;$this->events->dispatch(new RouteMatched($route, $request));&quot;,&quot;774 &quot;:&quot;&quot;,&quot;775 &quot;:&quot;return $this->prepareResponse($request,&quot;,&quot;776 &quot;:&quot;$this->runRouteWithinStack($route, $request)&quot;,&quot;777 &quot;:&quot;);&quot;,&quot;778 &quot;:&quot;}&quot;,&quot;779 &quot;:&quot;&quot;,&quot;780 &quot;:&quot;\/**&quot;,&quot;781 &quot;:&quot;* Run the given route within a Stack "onion" instance.&quot;,&quot;782 &quot;:&quot;*&quot;,&quot;783 &quot;:&quot;* @param  \Illuminate\Routing\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this->container->bound('middleware.disable') && &quot;,&quot;790 &quot;:&quot;$this->container->make('middleware.disable') === true;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:740,&quot;method &quot;:&quot;dispatchToRoute &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this->currentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this->dispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this->runRoute($request, $this->findRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;,&quot;744 &quot;:&quot;* Find the route matching a given request.&quot;,&quot;745 &quot;:&quot;*&quot;,&quot;746 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;747 &quot;:&quot;* @return \Illuminate\Routing\Route &quot;,&quot;748 &quot;:&quot;*\/&quot;,&quot;749 &quot;:&quot;protected function findRoute($request)&quot;,&quot;750 &quot;:&quot;{&quot;,&quot;751 &quot;:&quot;$this->events->dispatch(new Routing($request));&quot;,&quot;752 &quot;:&quot;&quot;,&quot;753 &quot;:&quot;$this->current = $route = $this->routes->match($request);&quot;,&quot;754 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:729,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\Routing\Router &quot;,&quot;code_snippet &quot;:{&quot;714 &quot;:&quot;$route = tap($this->routes->getByName($name))->bind($this->currentRequest);&quot;,&quot;715 &quot;:&quot;&quot;,&quot;716 &quot;:&quot;return $this->runRoute($this->currentRequest, $route);&quot;,&quot;717 &quot;:&quot;}&quot;,&quot;718 &quot;:&quot;&quot;,&quot;719 &quot;:&quot;\/**&quot;,&quot;720 &quot;:&quot;* Dispatch the request to the application.&quot;,&quot;721 &quot;:&quot;*&quot;,&quot;722 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;723 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;724 &quot;:&quot;*\/&quot;,&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this->currentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this->dispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \Symfony\Component\HttpFoundation\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this->runRoute($request, $this->findRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:190,&quot;method &quot;:&quot;Illuminate\Foundation\Http\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Kernel &quot;,&quot;code_snippet &quot;:{&quot;175 &quot;:&quot;if (! $this->app->hasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this->app->bootstrapWith($this->bootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;,&quot;180 &quot;:&quot;\/**&quot;,&quot;181 &quot;:&quot;* Get the route dispatcher callback.&quot;,&quot;182 &quot;:&quot;*&quot;,&quot;183 &quot;:&quot;* @return \Closure &quot;,&quot;184 &quot;:&quot;*\/&quot;,&quot;185 &quot;:&quot;protected function dispatchToRouter()&quot;,&quot;186 &quot;:&quot;{&quot;,&quot;187 &quot;:&quot;return function ($request) {&quot;,&quot;188 &quot;:&quot;$this->app->instance('request', $request);&quot;,&quot;189 &quot;:&quot;&quot;,&quot;190 &quot;:&quot;return $this->router->dispatch($request);&quot;,&quot;191 &quot;:&quot;};&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Call the terminate method on any terminable middleware.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;198 &quot;:&quot;* @param  \Illuminate\Http\Response  $response &quot;,&quot;199 &quot;:&quot;* @return void &quot;,&quot;200 &quot;:&quot;*\/&quot;,&quot;201 &quot;:&quot;public function terminate($request, $response)&quot;,&quot;202 &quot;:&quot;{&quot;,&quot;203 &quot;:&quot;$this->terminateMiddleware($request, $response);&quot;,&quot;204 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\Component\HttpFoundation\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this->clean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request's data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this->cleanParameterBag($request->query);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request->isJson()) {&quot;,&quot;35 &quot;:&quot;$this->cleanParameterBag($request->json());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ConvertEmptyStringsToNull.php &quot;,&quot;line_number &quot;:31,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull &quot;,&quot;code_snippet &quot;:{&quot;16 &quot;:&quot;\/**&quot;,&quot;17 &quot;:&quot;* Handle an incoming request.&quot;,&quot;18 &quot;:&quot;*&quot;,&quot;19 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;20 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;21 &quot;:&quot;* @return mixed &quot;,&quot;22 &quot;:&quot;*\/&quot;,&quot;23 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;24 &quot;:&quot;{&quot;,&quot;25 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;26 &quot;:&quot;if ($callback($request)) {&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;\/**&quot;,&quot;35 &quot;:&quot;* Transform the given value.&quot;,&quot;36 &quot;:&quot;*&quot;,&quot;37 &quot;:&quot;* @param  string  $key &quot;,&quot;38 &quot;:&quot;* @param  mixed  $value &quot;,&quot;39 &quot;:&quot;* @return mixed &quot;,&quot;40 &quot;:&quot;*\/&quot;,&quot;41 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;42 &quot;:&quot;{&quot;,&quot;43 &quot;:&quot;return $value === '' ? null : $value;&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\Component\HttpFoundation\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this->clean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request's data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this->cleanParameterBag($request->query);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request->isJson()) {&quot;,&quot;35 &quot;:&quot;$this->cleanParameterBag($request->json());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TrimStrings.php &quot;,&quot;line_number &quot;:40,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\TrimStrings &quot;,&quot;code_snippet &quot;:{&quot;25 &quot;:&quot;\/**&quot;,&quot;26 &quot;:&quot;* Handle an incoming request.&quot;,&quot;27 &quot;:&quot;*&quot;,&quot;28 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;29 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;30 &quot;:&quot;* @return mixed &quot;,&quot;31 &quot;:&quot;*\/&quot;,&quot;32 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;33 &quot;:&quot;{&quot;,&quot;34 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;35 &quot;:&quot;if ($callback($request)) {&quot;,&quot;36 &quot;:&quot;return $next($request);&quot;,&quot;37 &quot;:&quot;}&quot;,&quot;38 &quot;:&quot;}&quot;,&quot;39 &quot;:&quot;&quot;,&quot;40 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;41 &quot;:&quot;}&quot;,&quot;42 &quot;:&quot;&quot;,&quot;43 &quot;:&quot;\/**&quot;,&quot;44 &quot;:&quot;* Transform the given value.&quot;,&quot;45 &quot;:&quot;*&quot;,&quot;46 &quot;:&quot;* @param  string  $key &quot;,&quot;47 &quot;:&quot;* @param  mixed  $value &quot;,&quot;48 &quot;:&quot;* @return mixed &quot;,&quot;49 &quot;:&quot;*\/&quot;,&quot;50 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;51 &quot;:&quot;{&quot;,&quot;52 &quot;:&quot;if (in_array($key, $this->except, true) || ! is_string($value)) {&quot;,&quot;53 &quot;:&quot;return $value;&quot;,&quot;54 &quot;:&quot;}&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ValidatePostSize.php &quot;,&quot;line_number &quot;:27,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\ValidatePostSize &quot;,&quot;code_snippet &quot;:{&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @throws \Illuminate\Http\Exceptions\PostTooLargeException &quot;,&quot;18 &quot;:&quot;*\/&quot;,&quot;19 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;20 &quot;:&quot;{&quot;,&quot;21 &quot;:&quot;$max = $this->getPostMaxSize();&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {&quot;,&quot;24 &quot;:&quot;throw new PostTooLargeException;&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Determine the server 'post_max_size' as bytes.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @return int &quot;,&quot;34 &quot;:&quot;*\/&quot;,&quot;35 &quot;:&quot;protected function getPostMaxSize()&quot;,&quot;36 &quot;:&quot;{&quot;,&quot;37 &quot;:&quot;if (is_numeric($postMaxSize = ini_get('post_max_size'))) {&quot;,&quot;38 &quot;:&quot;return (int) $postMaxSize;&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$metric = strtoupper(substr($postMaxSize, -1));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/PreventRequestsDuringMaintenance.php &quot;,&quot;line_number &quot;:86,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance &quot;,&quot;code_snippet &quot;:{&quot;71 &quot;:&quot;return response(&quot;,&quot;72 &quot;:&quot;$data['template'],&quot;,&quot;73 &quot;:&quot;$data['status'] ?? 503,&quot;,&quot;74 &quot;:&quot;$this->getHeaders($data)&quot;,&quot;75 &quot;:&quot;);&quot;,&quot;76 &quot;:&quot;}&quot;,&quot;77 &quot;:&quot;&quot;,&quot;78 &quot;:&quot;throw new HttpException(&quot;,&quot;79 &quot;:&quot;$data['status'] ?? 503,&quot;,&quot;80 &quot;:&quot;'Service Unavailable',&quot;,&quot;81 &quot;:&quot;null,&quot;,&quot;82 &quot;:&quot;$this->getHeaders($data)&quot;,&quot;83 &quot;:&quot;);&quot;,&quot;84 &quot;:&quot;}&quot;,&quot;85 &quot;:&quot;&quot;,&quot;86 &quot;:&quot;return $next($request);&quot;,&quot;87 &quot;:&quot;}&quot;,&quot;88 &quot;:&quot;&quot;,&quot;89 &quot;:&quot;\/**&quot;,&quot;90 &quot;:&quot;* Determine if the incoming request has a maintenance mode bypass cookie.&quot;,&quot;91 &quot;:&quot;*&quot;,&quot;92 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;93 &quot;:&quot;* @param  array  $data &quot;,&quot;94 &quot;:&quot;* @return bool &quot;,&quot;95 &quot;:&quot;*\/&quot;,&quot;96 &quot;:&quot;protected function hasValidBypassCookie($request, array $data)&quot;,&quot;97 &quot;:&quot;{&quot;,&quot;98 &quot;:&quot;return isset($data['secret']) && &quot;,&quot;99 &quot;:&quot;$request->cookie('laravel_maintenance') && &quot;,&quot;100 &quot;:&quot;MaintenanceModeBypassCookie::isValid(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/fruitcake\/laravel-cors\/src\/HandleCors.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Fruitcake\Cors\HandleCors &quot;,&quot;code_snippet &quot;:{&quot;37 &quot;:&quot;if (! $this->shouldRun($request)) {&quot;,&quot;38 &quot;:&quot;return $next($request);&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;\/\/ For Preflight, return the Preflight response &quot;,&quot;42 &quot;:&quot;if ($this->cors->isPreflightRequest($request)) {&quot;,&quot;43 &quot;:&quot;$response = $this->cors->handlePreflightRequest($request);&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;$this->cors->varyHeader($response, 'Access-Control-Request-Method');&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;return $response;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;\/\/ Handle the request &quot;,&quot;52 &quot;:&quot;$response = $next($request);&quot;,&quot;53 &quot;:&quot;&quot;,&quot;54 &quot;:&quot;if ($request->getMethod() === 'OPTIONS') {&quot;,&quot;55 &quot;:&quot;$this->cors->varyHeader($response, 'Access-Control-Request-Method');&quot;,&quot;56 &quot;:&quot;}&quot;,&quot;57 &quot;:&quot;&quot;,&quot;58 &quot;:&quot;return $this->addHeaders($request, $response);&quot;,&quot;59 &quot;:&quot;}&quot;,&quot;60 &quot;:&quot;&quot;,&quot;61 &quot;:&quot;\/**&quot;,&quot;62 &quot;:&quot;* Add the headers to the Response, if they don't exist yet.&quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @param Request $request &quot;,&quot;65 &quot;:&quot;* @param Response $response &quot;,&quot;66 &quot;:&quot;* @return Response &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Http\/Middleware\/TrustProxies.php &quot;,&quot;line_number &quot;:39,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Http\Middleware\TrustProxies &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Handle an incoming request.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;28 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;29 &quot;:&quot;* @return mixed &quot;,&quot;30 &quot;:&quot;*&quot;,&quot;31 &quot;:&quot;* @throws \Symfony\Component\HttpKernel\Exception\HttpException &quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;34 &quot;:&quot;{&quot;,&quot;35 &quot;:&quot;$request::setTrustedProxies([], $this->getTrustedHeaderNames());&quot;,&quot;36 &quot;:&quot;&quot;,&quot;37 &quot;:&quot;$this->setTrustedProxyIpAddresses($request);&quot;,&quot;38 &quot;:&quot;&quot;,&quot;39 &quot;:&quot;return $next($request);&quot;,&quot;40 &quot;:&quot;}&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;\/**&quot;,&quot;43 &quot;:&quot;* Sets the trusted proxies on the request.&quot;,&quot;44 &quot;:&quot;*&quot;,&quot;45 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;46 &quot;:&quot;* @return void &quot;,&quot;47 &quot;:&quot;*\/&quot;,&quot;48 &quot;:&quot;protected function setTrustedProxyIpAddresses(Request $request)&quot;,&quot;49 &quot;:&quot;{&quot;,&quot;50 &quot;:&quot;$trustedIps = $this->proxies() ?: config('trustedproxy.proxies');&quot;,&quot;51 &quot;:&quot;&quot;,&quot;52 &quot;:&quot;if ($trustedIps === '*' || $trustedIps === '**') {&quot;,&quot;53 &quot;:&quot;return $this->setTrustedProxyIpAddressesToTheCallingIp($request);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:121,&quot;method &quot;:&quot;handleStatefulRequest &quot;,&quot;class &quot;:&quot;Illuminate\Session\Middleware\StartSession &quot;,&quot;code_snippet &quot;:{&quot;106 &quot;:&quot;* @param  \Illuminate\Contracts\Session\Session  $session &quot;,&quot;107 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;protected function handleStatefulRequest(Request $request, $session, Closure $next)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;\/\/ If a session driver has been configured, we will need to start the session here &quot;,&quot;113 &quot;:&quot;\/\/ so that the data is ready for an application. Note that the Laravel sessions &quot;,&quot;114 &quot;:&quot;\/\/ do not make use of PHP "native" sessions in any way since they are crappy.&quot;,&quot;115 &quot;:&quot;$request->setLaravelSession(&quot;,&quot;116 &quot;:&quot;$this->startSession($request, $session)&quot;,&quot;117 &quot;:&quot;);&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;$this->collectGarbage($session);&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;$response = $next($request);&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this->storeCurrentUrl($request, $session);&quot;,&quot;124 &quot;:&quot;&quot;,&quot;125 &quot;:&quot;$this->addCookieToResponse($response, $session);&quot;,&quot;126 &quot;:&quot;&quot;,&quot;127 &quot;:&quot;\/\/ Again, if the session has been configured we will need to close out the session &quot;,&quot;128 &quot;:&quot;\/\/ so that the attributes may be persisted to some storage medium. We will also &quot;,&quot;129 &quot;:&quot;\/\/ add the session identifier cookie to the application response headers now.&quot;,&quot;130 &quot;:&quot;$this->saveSession($request);&quot;,&quot;131 &quot;:&quot;&quot;,&quot;132 &quot;:&quot;return $response;&quot;,&quot;133 &quot;:&quot;}&quot;,&quot;134 &quot;:&quot;&quot;,&quot;135 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:64,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Session\Middleware\StartSession &quot;,&quot;code_snippet &quot;:{&quot;49 &quot;:&quot;* @return mixed &quot;,&quot;50 &quot;:&quot;*\/&quot;,&quot;51 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;52 &quot;:&quot;{&quot;,&quot;53 &quot;:&quot;if (! $this->sessionConfigured()) {&quot;,&quot;54 &quot;:&quot;return $next($request);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;$session = $this->getSession($request);&quot;,&quot;58 &quot;:&quot;&quot;,&quot;59 &quot;:&quot;if ($this->manager->shouldBlock() ||&quot;,&quot;60 &quot;:&quot;($request->route() instanceof Route && $request->route()->locksFor())) {&quot;,&quot;61 &quot;:&quot;return $this->handleRequestWhileBlocking($request, $session, $next);&quot;,&quot;62 &quot;:&quot;}&quot;,&quot;63 &quot;:&quot;&quot;,&quot;64 &quot;:&quot;return $this->handleStatefulRequest($request, $session, $next);&quot;,&quot;65 &quot;:&quot;}&quot;,&quot;66 &quot;:&quot;&quot;,&quot;67 &quot;:&quot;\/**&quot;,&quot;68 &quot;:&quot;* Handle the given request within session state.&quot;,&quot;69 &quot;:&quot;*&quot;,&quot;70 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;71 &quot;:&quot;* @param  \Illuminate\Contracts\Session\Session  $session &quot;,&quot;72 &quot;:&quot;* @param  \Closure  $next &quot;,&quot;73 &quot;:&quot;* @return mixed &quot;,&quot;74 &quot;:&quot;*\/&quot;,&quot;75 &quot;:&quot;protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)&quot;,&quot;76 &quot;:&quot;{&quot;,&quot;77 &quot;:&quot;if (! $request->route() instanceof Route) {&quot;,&quot;78 &quot;:&quot;return;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\Pipeline\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this->getContainer()->make($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we'll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we're given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this->method)&quot;,&quot;180 &quot;:&quot;? $pipe->{$this->method}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this->handleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this->handleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\Pipeline\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this->passable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this->then(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:165,&quot;method &quot;:&quot;sendRequestThroughRouter &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Kernel &quot;,&quot;code_snippet &quot;:{&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;152 &quot;:&quot;* @return \Illuminate\Http\Response &quot;,&quot;153 &quot;:&quot;*\/&quot;,&quot;154 &quot;:&quot;protected function sendRequestThroughRouter($request)&quot;,&quot;155 &quot;:&quot;{&quot;,&quot;156 &quot;:&quot;$this->app->instance('request', $request);&quot;,&quot;157 &quot;:&quot;&quot;,&quot;158 &quot;:&quot;Facade::clearResolvedInstance('request');&quot;,&quot;159 &quot;:&quot;&quot;,&quot;160 &quot;:&quot;$this->bootstrap();&quot;,&quot;161 &quot;:&quot;&quot;,&quot;162 &quot;:&quot;return (new Pipeline($this->app))&quot;,&quot;163 &quot;:&quot;->send($request)&quot;,&quot;164 &quot;:&quot;->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)&quot;,&quot;165 &quot;:&quot;->then($this->dispatchToRouter());&quot;,&quot;166 &quot;:&quot;}&quot;,&quot;167 &quot;:&quot;&quot;,&quot;168 &quot;:&quot;\/**&quot;,&quot;169 &quot;:&quot;* Bootstrap the application for HTTP requests.&quot;,&quot;170 &quot;:&quot;*&quot;,&quot;171 &quot;:&quot;* @return void &quot;,&quot;172 &quot;:&quot;*\/&quot;,&quot;173 &quot;:&quot;public function bootstrap()&quot;,&quot;174 &quot;:&quot;{&quot;,&quot;175 &quot;:&quot;if (! $this->app->hasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this->app->bootstrapWith($this->bootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:134,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\Foundation\Http\Kernel &quot;,&quot;code_snippet &quot;:{&quot;119 &quot;:&quot;}&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;\/**&quot;,&quot;122 &quot;:&quot;* Handle an incoming HTTP request.&quot;,&quot;123 &quot;:&quot;*&quot;,&quot;124 &quot;:&quot;* @param  \Illuminate\Http\Request  $request &quot;,&quot;125 &quot;:&quot;* @return \Illuminate\Http\Response &quot;,&quot;126 &quot;:&quot;*\/&quot;,&quot;127 &quot;:&quot;public function handle($request)&quot;,&quot;128 &quot;:&quot;{&quot;,&quot;129 &quot;:&quot;$this->requestStartedAt = Carbon::now();&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;try {&quot;,&quot;132 &quot;:&quot;$request->enableHttpMethodParameterOverride();&quot;,&quot;133 &quot;:&quot;&quot;,&quot;134 &quot;:&quot;$response = $this->sendRequestThroughRouter($request);&quot;,&quot;135 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;136 &quot;:&quot;$this->reportException($e);&quot;,&quot;137 &quot;:&quot;&quot;,&quot;138 &quot;:&quot;$response = $this->renderException($request, $e);&quot;,&quot;139 &quot;:&quot;}&quot;,&quot;140 &quot;:&quot;&quot;,&quot;141 &quot;:&quot;$this->app['events']->dispatch(&quot;,&quot;142 &quot;:&quot;new RequestHandled($request, $response)&quot;,&quot;143 &quot;:&quot;);&quot;,&quot;144 &quot;:&quot;&quot;,&quot;145 &quot;:&quot;return $response;&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/public\/index.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;[top]&quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;27 &quot;:&quot;|&quot;,&quot;28 &quot;:&quot;| Composer provides a convenient, automatically generated class loader for &quot;,&quot;29 &quot;:&quot;| this application. We just need to utilize it! We'll simply require it &quot;,&quot;30 &quot;:&quot;| into the script here so we don't need to manually load our classes.&quot;,&quot;31 &quot;:&quot;|&quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;require __DIR__.'\/..\/vendor\/autoload.php';&quot;,&quot;35 &quot;:&quot;&quot;,&quot;36 &quot;:&quot;\/*&quot;,&quot;37 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;38 &quot;:&quot;| Run The Application &quot;,&quot;39 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;40 &quot;:&quot;|&quot;,&quot;41 &quot;:&quot;| Once we have the application, we can handle the incoming request using &quot;,&quot;42 &quot;:&quot;| the application's HTTP kernel. Then, we will send the response back &quot;,&quot;43 &quot;:&quot;| to this client's browser, allowing them to enjoy our application.&quot;,&quot;44 &quot;:&quot;|&quot;,&quot;45 &quot;:&quot;*\/&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;$app = require_once __DIR__.'\/..\/bootstrap\/app.php';&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;$kernel = $app->make(Kernel::class);&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;$response = $kernel->handle(&quot;,&quot;52 &quot;:&quot;$request = Request::capture()&quot;,&quot;53 &quot;:&quot;)->send();&quot;,&quot;54 &quot;:&quot;&quot;,&quot;55 &quot;:&quot;$kernel->terminate($request, $response);&quot;,&quot;56 &quot;:&quot;&quot;},&quot;application_frame &quot;:false}],&quot;context &quot;:{&quot;request &quot;:{&quot;url &quot;:&quot;http:\/\/api-test.losangeles.cl\/api\/apiArchivos\/guardarArchivo &quot;,&quot;ip &quot;:null,&quot;method &quot;:&quot;POST &quot;,&quot;useragent &quot;:&quot;GuzzleHttp\/7 &quot;},&quot;request_data &quot;:{&quot;queryString &quot;:[],&quot;body &quot;:{&quot;folio &quot;:&quot;3-2023 &quot;,&quot;tipo &quot;:&quot;PER &quot;,&quot;sub_tipo &quot;:&quot;PERGOCE &quot;,&quot;version &quot;:&quot;v1 &quot;},&quot;files &quot;:{&quot;documento &quot;:{&quot;pathname &quot;:&quot;\/tmp\/phpE3eCur &quot;,&quot;size &quot;:89939,&quot;mimeType &quot;:&quot;application\/pdf &quot;},&quot;anexos_archivo_row &quot;:[{&quot;pathname &quot;:&quot;&quot;,&quot;size &quot;:false,&quot;mimeType &quot;:&quot;undefined &quot;}]}},&quot;headers &quot;:{&quot;content-length &quot;:&quot;6271485 &quot;,&quot;content-type &quot;:&quot;multipart\/form-data; boundary=90694109046113b3d33c1977f3c4b522f03df5a6 &quot;,&quot;user-agent &quot;:&quot;GuzzleHttp\/7 &quot;,&quot;expect &quot;:&quot;100-Continue &quot;,&quot;host &quot;:&quot;api-test.losangeles.cl &quot;,&quot;authorization &quot;:&quot;Bearer M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;},&quot;cookies &quot;:[],&quot;session &quot;:{&quot;_token &quot;:&quot;9oVcgGtqn3oyubgvd0yjycN64pPJvjWfNmlqDYKx &quot;},&quot;route &quot;:{&quot;route &quot;:&quot;guardarArchivo &quot;,&quot;routeParameters &quot;:[],&quot;controllerAction &quot;:&quot;App\Http\Controllers\ApiArchivosController@guardarArchivo &quot;,&quot;middleware &quot;:[&quot;api &quot;,&quot;App\Http\Middleware\TokenAuth &quot;]},&quot;env &quot;:{&quot;php_version &quot;:&quot;8.1.23 &quot;,&quot;laravel_version &quot;:&quot;9.52.4 &quot;,&quot;laravel_locale &quot;:&quot;es &quot;,&quot;laravel_config_cached &quot;:true,&quot;app_debug &quot;:true,&quot;app_env &quot;:&quot;local &quot;},&quot;dumps &quot;:[],&quot;logs &quot;:[],&quot;queries &quot;:[{&quot;sql &quot;:&quot;select * from `muni_sistemas_keys` where `sis_key_valor` = ? limit 1 &quot;,&quot;time &quot;:3.13,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[&quot;M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;],&quot;microtime &quot;:1697033082.999872},{&quot;sql &quot;:&quot;select * from `muni_sistemas` where `sis_id` = ? limit 1 &quot;,&quot;time &quot;:1.11,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[56],&quot;microtime &quot;:1697033083.001531}]},&quot;stage &quot;:&quot;local &quot;,&quot;message_level &quot;:null,&quot;open_frame_index &quot;:null,&quot;application_path &quot;:&quot;\/var\/www\/apis\/API_servicios &quot;,&quot;application_version &quot;:null,&quot;tracking_uuid &quot;:&quot;433cb1b2-da47-4ba2-a595-9978d47d4ac5 &quot;},&quot;config &quot;:{&quot;editor &quot;:&quot;phpstorm &quot;,&quot;theme &quot;:&quot;auto &quot;,&quot;hideSolutions &quot;:false,&quot;remoteSitesPath &quot;:&quot;\/var\/www\/apis\/API_servicios &quot;,&quot;localSitesPath &quot;:&quot;&quot;,&quot;enableShareButton &quot;:true,&quot;enableRunnableSolutions &quot;:false,&quot;directorySeparator &quot;:&quot;\/&quot;,&quot;editorOptions &quot;:{&quot;sublime &quot;:{&quot;label &quot;:&quot;Sublime &quot;,&quot;url &quot;:&quot;subl:\/\/open?url=file:\/\/%path&line=%line &quot;},&quot;textmate &quot;:{&quot;label &quot;:&quot;TextMate &quot;,&quot;url &quot;:&quot;txmt:\/\/open?url=file:\/\/%path&line=%line &quot;},&quot;emacs &quot;:{&quot;label &quot;:&quot;Emacs &quot;,&quot;url &quot;:&quot;emacs:\/\/open?url=file:\/\/%path&line=%line &quot;},&quot;macvim &quot;:{&quot;label &quot;:&quot;MacVim &quot;,&quot;url &quot;:&quot;mvim:\/\/open\/?url=file:\/\/%path&line=%line &quot;},&quot;phpstorm &quot;:{&quot;label &quot;:&quot;PhpStorm &quot;,&quot;url &quot;:&quot;phpstorm:\/\/open?file=%path&line=%line &quot;},&quot;idea &quot;:{&quot;label &quot;:&quot;Idea &quot;,&quot;url &quot;:&quot;idea:\/\/open?file=%path&line=%line &quot;},&quot;vscode &quot;:{&quot;label &quot;:&quot;VS Code &quot;,&quot;url &quot;:&quot;vscode:\/\/file\/%path:%line &quot;},&quot;vscode-insiders &quot;:{&quot;label &quot;:&quot;VS Code Insiders &quot;,&quot;url &quot;:&quot;vscode-insiders:\/\/file\/%path:%line &quot;},&quot;vscode-remote &quot;:{&quot;label &quot;:&quot;VS Code Remote &quot;,&quot;url &quot;:&quot;vscode:\/\/vscode-remote\/%path:%line &quot;},&quot;vscode-insiders-remote &quot;:{&quot;label &quot;:&quot;VS Code Insiders Remote &quot;,&quot;url &quot;:&quot;vscode-insiders:\/\/vscode-remote\/%path:%line &quot;},&quot;vscodium &quot;:{&quot;label &quot;:&quot;VS Codium &quot;,&quot;url &quot;:&quot;vscodium:\/\/file\/%path:%line &quot;},&quot;atom &quot;:{&quot;label &quot;:&quot;Atom &quot;,&quot;url &quot;:&quot;atom:\/\/core\/open\/file?filename=%path&line=%line &quot;},&quot;nova &quot;:{&quot;label &quot;:&quot;Nova &quot;,&quot;url &quot;:&quot;nova:\/\/core\/open\/file?filename=%path&line=%line &quot;},&quot;netbeans &quot;:{&quot;label &quot;:&quot;NetBeans &quot;,&quot;url &quot;:&quot;netbeans:\/\/open\/?f=%path:%line &quot;},&quot;xdebug &quot;:{&quot;label &quot;:&quot;Xdebug &quot;,&quot;url &quot;:&quot;xdebug:\/\/%path@%line &quot;}},&quot;shareEndpoint &quot;:&quot;https:\/\/flareapp.io\/api\/public-reports &quot;},&quot;solutions &quot;:[],&quot;updateConfigEndpoint &quot;:&quot;\/_ignition\/update-config &quot;};<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;!-- The noscript representation is for HTTP client like Postman that have JS disabled. --&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;noscript &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;pre &gt;ValueError: Path cannot be empty in file /var/www/apis/API_servicios/app/Services/ApiArchivoService.php on line 19<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #0 /var/www/apis/API_servicios/app/Services/ApiArchivoService.php(19): fopen()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #1 /var/www/apis/API_servicios/app/Http/Controllers/ApiArchivosController.php(14): App\Services\ApiArchivoService::enviarArchivo()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #2 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\Http\Controllers\ApiArchivosController-&amp;gt;guardarArchivo()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #3 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(43): Illuminate\Routing\Controller-&amp;gt;callAction()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #4 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\Routing\ControllerDispatcher-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #5 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): Illuminate\Routing\Route-&amp;gt;runController()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #6 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(798): Illuminate\Routing\Route-&amp;gt;run()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #7 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Routing\Router-&amp;gt;Illuminate\Routing\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #8 /var/www/apis/API_servicios/app/Http/Middleware/TokenAuth.php(28): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #9 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): App\Http\Middleware\TokenAuth-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #10 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #11 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\SubstituteBindings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #12 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(126): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #13 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(102): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequest()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #14 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(54): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequestUsingNamedLimiter()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #15 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #16 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #17 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(799): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #18 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(776): Illuminate\Routing\Router-&amp;gt;runRouteWithinStack()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #19 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(740): Illuminate\Routing\Router-&amp;gt;runRoute()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #20 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(729): Illuminate\Routing\Router-&amp;gt;dispatchToRoute()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #21 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(190): Illuminate\Routing\Router-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #22 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Foundation\Http\Kernel-&amp;gt;Illuminate\Foundation\Http\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #23 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #24 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #25 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #26 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #27 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #28 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\TrimStrings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #29 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #30 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ValidatePostSize-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #31 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #32 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #33 /var/www/apis/API_servicios/vendor/fruitcake/laravel-cors/src/HandleCors.php(52): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #34 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Fruitcake\Cors\HandleCors-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #35 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #36 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Http\Middleware\TrustProxies-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #37 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #38 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\Session\Middleware\StartSession-&amp;gt;handleStatefulRequest()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #39 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Session\Middleware\StartSession-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #40 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #41 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #42 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(134): Illuminate\Foundation\Http\Kernel-&amp;gt;sendRequestThroughRouter()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #43 /var/www/apis/API_servicios/public/index.php(52): Illuminate\Foundation\Http\Kernel-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #44 {main}<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/pre &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/noscript &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;div id=&quot;app &quot;&gt;&lt;/div &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;!--<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        function e(){return(e=Object.assign||function(e){for(var t=1;t &lt;arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&amp;&amp;(e[r]=n[r])}return e}).apply(this,arguments)}var t=&quot;undefined &quot;!=typeof globalThis?globalThis:&quot;undefined &quot;!=typeof window?window:&quot;undefined &quot;!=typeof global?global:&quot;undefined &quot;!=typeof self?self:{};function n(e){var t={exports:{}};return e(t,t.exports),t.exports}var r=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError(&quot;Object.assign cannot be called with null or undefined &quot;);return Object(e)}var l=function(){try{if(!Object.assign)return!1;var e=new String(&quot;abc &quot;);if(e[5]=&quot;de &quot;,&quot;5 &quot;===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n &lt;10;n++)t[&quot;_ &quot;+String.fromCharCode(n)]=n;if(&quot;0123456789 &quot;!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(&quot;&quot;))return!1;var r={};return &quot;abcdefghijklmnopqrst &quot;.split(&quot;&quot;).forEach(function(e){r[e]=e}),&quot;abcdefghijklmnopqrst &quot;===Object.keys(Object.assign({},r)).join(&quot;&quot;)}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,l,s=i(e),c=1;c &lt;arguments.length;c++){for(var u in n=Object(arguments[c]))a.call(n,u)&amp;&amp;(s[u]=n[u]);if(r){l=r(n);for(var f=0;f &lt;l.length;f++)o.call(n,l[f])&amp;&amp;(s[l[f]]=n[l[f]])}}return s};n(function(e,t){var n=60103,r=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var a=60109,o=60110,i=60112;t.Suspense=60113;var s=60115,c=60116;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var u=Symbol.for;n=u(&quot;react.element &quot;),r=u(&quot;react.portal &quot;),t.Fragment=u(&quot;react.fragment &quot;),t.StrictMode=u(&quot;react.strict_mode &quot;),t.Profiler=u(&quot;react.profiler &quot;),a=u(&quot;react.provider &quot;),o=u(&quot;react.context &quot;),i=u(&quot;react.forward_ref &quot;),t.Suspense=u(&quot;react.suspense &quot;),s=u(&quot;react.memo &quot;),c=u(&quot;react.lazy &quot;)}var f=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator;function d(e){for(var t=&quot;https://reactjs.org/docs/error-decoder.html?invariant=&quot;+e,n=1;n &lt;arguments.length;n++)t+=&quot;&amp;args[]=&quot;+encodeURIComponent(arguments[n]);return &quot;Minified React error #&quot;+e+&quot;; visit &quot;+t+&quot;for the full message or use the non-minified dev environment for full errors and additional helpful warnings.&quot;}var p={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m={};function h(e,t,n){this.props=e,this.context=t,this.refs=m,this.updater=n||p}function g(){}function v(e,t,n){this.props=e,this.context=t,this.refs=m,this.updater=n||p}h.prototype.isReactComponent={},h.prototype.setState=function(e,t){if(&quot;object &quot;!=typeof e &amp;&amp;&quot;function &quot;!=typeof e &amp;&amp;null!=e)throw Error(d(85));this.updater.enqueueSetState(this,e,t,&quot;setState &quot;)},h.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,&quot;forceUpdate &quot;)},g.prototype=h.prototype;var y=v.prototype=new g;y.constructor=v,l(y,h.prototype),y.isPureReactComponent=!0;var E={current:null},b=Object.prototype.hasOwnProperty,T={key:!0,ref:!0,__self:!0,__source:!0};function N(e,t,r){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref &amp;&amp;(l=t.ref),void 0!==t.key &amp;&amp;(i=&quot;&quot;+t.key),t)b.call(t,a)&amp;&amp;!T.hasOwnProperty(a)&amp;&amp;(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=r;else if(1 &lt;s){for(var c=Array(s),u=0;u &lt;s;u++)c[u]=arguments[u+2];o.children=c}if(e &amp;&amp;e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&amp;&amp;(o[a]=s[a]);return{$$typeof:n,type:e,key:i,ref:l,props:o,_owner:E.current}}function R(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===n}var S=/\/+/g;function w(e,t){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;null!=e.key?function(e){var t={&quot;=&quot;:&quot;=0 &quot;,&quot;:&quot;:&quot;=2 &quot;};return &quot;$ &quot;+e.replace(/[=:]/g,function(e){return t[e]})}(&quot;&quot;+e.key):t.toString(36)}function O(e,t,a,o,i){var l=typeof e;&quot;undefined &quot;!==l &amp;&amp;&quot;boolean &quot;!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case &quot;string &quot;:case &quot;number &quot;:s=!0;break;case &quot;object &quot;:switch(e.$$typeof){case n:case r:s=!0}}if(s)return i=i(s=e),e=&quot;&quot;===o?&quot;.&quot;+w(s,0):o,Array.isArray(i)?(a=&quot;&quot;,null!=e &amp;&amp;(a=e.replace(S,&quot;$ &amp;/&quot;)+&quot;/&quot;),O(i,t,a,&quot;&quot;,function(e){return e})):null!=i &amp;&amp;(R(i)&amp;&amp;(i=function(e,t){return{$$typeof:n,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,a+(!i.key||s &amp;&amp;s.key===i.key?&quot;&quot;:(&quot;&quot;+i.key).replace(S,&quot;$ &amp;/&quot;)+&quot;/&quot;)+e)),t.push(i)),1;if(s=0,o=&quot;&quot;===o?&quot;.&quot;:o+&quot;:&quot;,Array.isArray(e))for(var c=0;c &lt;e.length;c++){var u=o+w(l=e[c],c);s+=O(l,t,a,u,i)}else if(&quot;function &quot;==typeof(u=function(e){return null===e||&quot;object &quot;!=typeof e?null:&quot;function &quot;==typeof(e=f &amp;&amp;e[f]||e[&quot;@@iterator &quot;])?e:null}(e)))for(e=u.call(e),c=0;!(l=e.next()).done;)s+=O(l=l.value,t,a,u=o+w(l,c++),i);else if(&quot;object &quot;===l)throw t=&quot;&quot;+e,Error(d(31,&quot;[object Object]&quot;===t?&quot;object with keys {&quot;+Object.keys(e).join(&quot;, &quot;)+&quot;}&quot;:t));return s}function C(e,t,n){if(null==e)return e;var r=[],a=0;return O(e,r,&quot;&quot;,&quot;&quot;,function(e){return t.call(n,e,a++)}),r}function A(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then(function(t){0===e._status &amp;&amp;(t=t.default,e._status=1,e._result=t)},function(t){0===e._status &amp;&amp;(e._status=2,e._result=t)})}if(1===e._status)return e._result;throw e._result}var I={current:null};function k(){var e=I.current;if(null===e)throw Error(d(321));return e}var x={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:E,IsSomeRendererActing:{current:!1},assign:l};t.Children={map:C,forEach:function(e,t,n){C(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return C(e,function(){t++}),t},toArray:function(e){return C(e,function(e){return e})||[]},only:function(e){if(!R(e))throw Error(d(143));return e}},t.Component=h,t.PureComponent=v,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=x,t.cloneElement=function(e,t,r){if(null==e)throw Error(d(267,e));var a=l({},e.props),o=e.key,i=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref &amp;&amp;(i=t.ref,s=E.current),void 0!==t.key &amp;&amp;(o=&quot;&quot;+t.key),e.type &amp;&amp;e.type.defaultProps)var c=e.type.defaultProps;for(u in t)b.call(t,u)&amp;&amp;!T.hasOwnProperty(u)&amp;&amp;(a[u]=void 0===t[u]&amp;&amp;void 0!==c?c[u]:t[u])}var u=arguments.length-2;if(1===u)a.children=r;else if(1 &lt;u){c=Array(u);for(var f=0;f &lt;u;f++)c[f]=arguments[f+2];a.children=c}return{$$typeof:n,type:e.type,key:o,ref:i,props:a,_owner:s}},t.createContext=function(e,t){return void 0===t &amp;&amp;(t=null),(e={$$typeof:o,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:a,_context:e},e.Consumer=e},t.createElement=N,t.createFactory=function(e){var t=N.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:i,render:e}},t.isValidElement=R,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:A}},t.memo=function(e,t){return{$$typeof:s,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return k().useCallback(e,t)},t.useContext=function(e,t){return k().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return k().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return k().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return k().useLayoutEffect(e,t)},t.useMemo=function(e,t){return k().useMemo(e,t)},t.useReducer=function(e,t,n){return k().useReducer(e,t,n)},t.useRef=function(e){return k().useRef(e)},t.useState=function(e){return k().useState(e)},t.version=&quot;17.0.2 &quot;});var s=n(function(e,t){!function(){var e=l,n=60103,r=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var a=60109,o=60110,i=60112;t.Suspense=60113;var s=60120,c=60115,u=60116,f=60121,d=60122,p=60117,m=60129,h=60131;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var g=Symbol.for;n=g(&quot;react.element &quot;),r=g(&quot;react.portal &quot;),t.Fragment=g(&quot;react.fragment &quot;),t.StrictMode=g(&quot;react.strict_mode &quot;),t.Profiler=g(&quot;react.profiler &quot;),a=g(&quot;react.provider &quot;),o=g(&quot;react.context &quot;),i=g(&quot;react.forward_ref &quot;),t.Suspense=g(&quot;react.suspense &quot;),s=g(&quot;react.suspense_list &quot;),c=g(&quot;react.memo &quot;),u=g(&quot;react.lazy &quot;),f=g(&quot;react.block &quot;),d=g(&quot;react.server.block &quot;),p=g(&quot;react.fundamental &quot;),g(&quot;react.scope &quot;),g(&quot;react.opaque.id &quot;),m=g(&quot;react.debug_trace_mode &quot;),g(&quot;react.offscreen &quot;),h=g(&quot;react.legacy_hidden &quot;)}var v=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator;function y(e){if(null===e||&quot;object &quot;!=typeof e)return null;var t=v &amp;&amp;e[v]||e[&quot;@@iterator &quot;];return &quot;function &quot;==typeof t?t:null}var E={current:null},b={current:null},T={},N=null;function R(e){N=e}T.setExtraStackFrame=function(e){N=e},T.getCurrentStack=null,T.getStackAddendum=function(){var e=&quot;&quot;;N &amp;&amp;(e+=N);var t=T.getCurrentStack;return t &amp;&amp;(e+=t()||&quot;&quot;),e};var S={ReactCurrentDispatcher:E,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:e};function w(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];C(&quot;warn &quot;,e,n)}function O(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];C(&quot;error &quot;,e,n)}function C(e,t,n){var r=S.ReactDebugCurrentFrame.getStackAddendum();&quot;&quot;!==r &amp;&amp;(t+=&quot;%s &quot;,n=n.concat([r]));var a=n.map(function(e){return &quot;&quot;+e});a.unshift(&quot;Warning: &quot;+t),Function.prototype.apply.call(console[e],console,a)}S.ReactDebugCurrentFrame=T;var A={};function I(e,t){var n=e.constructor,r=n &amp;&amp;(n.displayName||n.name)||&quot;ReactClass &quot;,a=r+&quot;.&quot;+t;A[a]||(O(&quot;Can &#039;t call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.&quot;,t,r),A[a]=!0)}var k={isMounted:function(e){return!1},enqueueForceUpdate:function(e,t,n){I(e,&quot;forceUpdate &quot;)},enqueueReplaceState:function(e,t,n,r){I(e,&quot;replaceState &quot;)},enqueueSetState:function(e,t,n,r){I(e,&quot;setState &quot;)}},x={};function _(e,t,n){this.props=e,this.context=t,this.refs=x,this.updater=n||k}Object.freeze(x),_.prototype.isReactComponent={},_.prototype.setState=function(e,t){if(&quot;object &quot;!=typeof e &amp;&amp;&quot;function &quot;!=typeof e &amp;&amp;null!=e)throw Error(&quot;setState(...): takes an object of state variables to update or a function which returns an object of state variables.&quot;);this.updater.enqueueSetState(this,e,t,&quot;setState &quot;)},_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,&quot;forceUpdate &quot;)};var L={isMounted:[&quot;isMounted &quot;,&quot;Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.&quot;],replaceState:[&quot;replaceState &quot;,&quot;Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236).&quot;]},P=function(e,t){Object.defineProperty(_.prototype,e,{get:function(){w(&quot;%s(...) is deprecated in plain JavaScript React classes. %s &quot;,t[0],t[1])}})};for(var M in L)L.hasOwnProperty(M)&amp;&amp;P(M,L[M]);function D(){}function U(e,t,n){this.props=e,this.context=t,this.refs=x,this.updater=n||k}D.prototype=_.prototype;var j=U.prototype=new D;function F(e){return e.displayName||&quot;Context &quot;}function z(e){if(null==e)return null;if(&quot;number &quot;==typeof e.tag &amp;&amp;O(&quot;Received an unexpected object in getComponentName(). This is likely a bug in React. Please file an issue.&quot;),&quot;function &quot;==typeof e)return e.displayName||e.name||null;if(&quot;string &quot;==typeof e)return e;switch(e){case t.Fragment:return &quot;Fragment &quot;;case r:return &quot;Portal &quot;;case t.Profiler:return &quot;Profiler &quot;;case t.StrictMode:return &quot;StrictMode &quot;;case t.Suspense:return &quot;Suspense &quot;;case s:return &quot;SuspenseList &quot;}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case o:return F(e)+&quot;.Consumer &quot;;case a:return F(e._context)+&quot;.Provider &quot;;case i:return p=(d=e.render).displayName||d.name||&quot;&quot;,e.displayName||(&quot;&quot;!==p?&quot;ForwardRef(&quot;+p+&quot;)&quot;:&quot;ForwardRef &quot;);case c:return z(e.type);case f:return z(e._render);case u:var n=e._payload,l=e._init;try{return z(l(n))}catch(e){return null}}var d,p;return null}j.constructor=U,e(j,_.prototype),j.isPureReactComponent=!0;var H,B,V,W=Object.prototype.hasOwnProperty,G={key:!0,ref:!0,__self:!0,__source:!0};function Y(e){if(W.call(e,&quot;ref &quot;)){var t=Object.getOwnPropertyDescriptor(e,&quot;ref &quot;).get;if(t &amp;&amp;t.isReactWarning)return!1}return void 0!==e.ref}function $(e){if(W.call(e,&quot;key &quot;)){var t=Object.getOwnPropertyDescriptor(e,&quot;key &quot;).get;if(t &amp;&amp;t.isReactWarning)return!1}return void 0!==e.key}function X(e,t){var n=function(){H||(H=!0,O(&quot;%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)&quot;,t))};n.isReactWarning=!0,Object.defineProperty(e,&quot;key &quot;,{get:n,configurable:!0})}function K(e,t){var n=function(){B||(B=!0,O(&quot;%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)&quot;,t))};n.isReactWarning=!0,Object.defineProperty(e,&quot;ref &quot;,{get:n,configurable:!0})}function q(e){if(&quot;string &quot;==typeof e.ref &amp;&amp;b.current &amp;&amp;e.__self &amp;&amp;b.current.stateNode!==e.__self){var t=z(b.current.type);V[t]||(O(&#039;Component &quot;%s &quot;contains the string ref &quot;%s &quot;. Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref &#039;,t,e.ref),V[t]=!0)}}V={};var J=function(e,t,r,a,o,i,l){var s={$$typeof:n,type:e,key:t,ref:r,props:l,_owner:i,_store:{}};return Object.defineProperty(s._store,&quot;validated &quot;,{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(s,&quot;_self &quot;,{configurable:!1,enumerable:!1,writable:!1,value:a}),Object.defineProperty(s,&quot;_source &quot;,{configurable:!1,enumerable:!1,writable:!1,value:o}),Object.freeze &amp;&amp;(Object.freeze(s.props),Object.freeze(s)),s};function Q(e,t,n){var r,a={},o=null,i=null,l=null,s=null;if(null!=t)for(r in Y(t)&amp;&amp;(i=t.ref,q(t)),$(t)&amp;&amp;(o=&quot;&quot;+t.key),l=void 0===t.__self?null:t.__self,s=void 0===t.__source?null:t.__source,t)W.call(t,r)&amp;&amp;!G.hasOwnProperty(r)&amp;&amp;(a[r]=t[r]);var c=arguments.length-2;if(1===c)a.children=n;else if(c &gt;1){for(var u=Array(c),f=0;f &lt;c;f++)u[f]=arguments[f+2];Object.freeze &amp;&amp;Object.freeze(u),a.children=u}if(e &amp;&amp;e.defaultProps){var d=e.defaultProps;for(r in d)void 0===a[r]&amp;&amp;(a[r]=d[r])}if(o||i){var p=&quot;function &quot;==typeof e?e.displayName||e.name||&quot;Unknown &quot;:e;o &amp;&amp;X(a,p),i &amp;&amp;K(a,p)}return J(e,o,i,l,s,b.current,a)}function Z(t,n,r){if(null==t)throw Error(&quot;React.cloneElement(...): The argument must be a React element, but you passed &quot;+t+&quot;.&quot;);var a,o,i=e({},t.props),l=t.key,s=t.ref,c=t._self,u=t._source,f=t._owner;if(null!=n)for(a in Y(n)&amp;&amp;(s=n.ref,f=b.current),$(n)&amp;&amp;(l=&quot;&quot;+n.key),t.type &amp;&amp;t.type.defaultProps &amp;&amp;(o=t.type.defaultProps),n)W.call(n,a)&amp;&amp;!G.hasOwnProperty(a)&amp;&amp;(i[a]=void 0===n[a]&amp;&amp;void 0!==o?o[a]:n[a]);var d=arguments.length-2;if(1===d)i.children=r;else if(d &gt;1){for(var p=Array(d),m=0;m &lt;d;m++)p[m]=arguments[m+2];i.children=p}return J(t.type,l,s,c,u,f,i)}function ee(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===n}var te=!1,ne=/\/+/g;function re(e){return e.replace(ne,&quot;$ &amp;/&quot;)}function ae(e,t){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;null!=e.key?(n={&quot;=&quot;:&quot;=0 &quot;,&quot;:&quot;:&quot;=2 &quot;},&quot;$ &quot;+(&quot;&quot;+e.key).replace(/[=:]/g,function(e){return n[e]})):t.toString(36);var n}function oe(e,t,a,o,i){var l=typeof e;&quot;undefined &quot;!==l &amp;&amp;&quot;boolean &quot;!==l||(e=null);var s,c,u,f=!1;if(null===e)f=!0;else switch(l){case &quot;string &quot;:case &quot;number &quot;:f=!0;break;case &quot;object &quot;:switch(e.$$typeof){case n:case r:f=!0}}if(f){var d=e,p=i(d),m=&quot;&quot;===o?&quot;.&quot;+ae(d,0):o;if(Array.isArray(p)){var h=&quot;&quot;;null!=m &amp;&amp;(h=re(m)+&quot;/&quot;),oe(p,t,h,&quot;&quot;,function(e){return e})}else null!=p &amp;&amp;(ee(p)&amp;&amp;(s=p,c=a+(!p.key||d &amp;&amp;d.key===p.key?&quot;&quot;:re(&quot;&quot;+p.key)+&quot;/&quot;)+m,p=J(s.type,c,s.ref,s._self,s._source,s._owner,s.props)),t.push(p));return 1}var g=0,v=&quot;&quot;===o?&quot;.&quot;:o+&quot;:&quot;;if(Array.isArray(e))for(var E=0;E &lt;e.length;E++)g+=oe(u=e[E],t,a,v+ae(u,E),i);else{var b=y(e);if(&quot;function &quot;==typeof b){var T=e;b===T.entries &amp;&amp;(te||w(&quot;Using Maps as children is not supported. Use an array of keyed ReactElements instead.&quot;),te=!0);for(var N,R=b.call(T),S=0;!(N=R.next()).done;)g+=oe(u=N.value,t,a,v+ae(u,S++),i)}else if(&quot;object &quot;===l){var O=&quot;&quot;+e;throw Error(&quot;Objects are not valid as a React child (found: &quot;+(&quot;[object Object]&quot;===O?&quot;object with keys {&quot;+Object.keys(e).join(&quot;, &quot;)+&quot;}&quot;:O)+&quot;). If you meant to render a collection of children, use an array instead.&quot;)}}return g}function ie(e,t,n){if(null==e)return e;var r=[],a=0;return oe(e,r,&quot;&quot;,&quot;&quot;,function(e){return t.call(n,e,a++)}),r}function le(e){if(-1===e._status){var t=(0,e._result)(),n=e;n._status=0,n._result=t,t.then(function(t){if(0===e._status){var n=t.default;void 0===n &amp;&amp;O(&quot;lazy: Expected the result of a dynamic import() call. Instead received: %s

Your code should look like: 
  const MyComponent = lazy(() =&gt;import(&#039;./MyComponent &#039;))&quot;,t);var r=e;r._status=1,r._result=n}},function(t){if(0===e._status){var n=e;n._status=2,n._result=t}})}if(1===e._status)return e._result;throw e._result}function se(e){return &quot;string &quot;==typeof e||&quot;function &quot;==typeof e||e===t.Fragment||e===t.Profiler||e===m||e===t.StrictMode||e===t.Suspense||e===s||e===h||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;(e.$$typeof===u||e.$$typeof===c||e.$$typeof===a||e.$$typeof===o||e.$$typeof===i||e.$$typeof===p||e.$$typeof===f||e[0]===d)}function ce(){var e=E.current;if(null===e)throw Error(&quot;Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.&quot;);return e}var ue,fe,de,pe,me,he,ge,ve=0;function ye(){}ye.__reactDisabledLog=!0;var Ee,be=S.ReactCurrentDispatcher;function Te(e,t,n){if(void 0===Ee)try{throw Error()}catch(e){var r=e.stack.trim().match(/
( *(at )?)/);Ee=r &amp;&amp;r[1]||&quot;&quot;}return &quot;
 &quot;+Ee+e}var Ne,Re=!1,Se=&quot;function &quot;==typeof WeakMap?WeakMap:Map;function we(t,n){if(!t||Re)return &quot;&quot;;var r,a=Ne.get(t);if(void 0!==a)return a;Re=!0;var o,i=Error.prepareStackTrace;Error.prepareStackTrace=void 0,o=be.current,be.current=null,function(){if(0===ve){ue=console.log,fe=console.info,de=console.warn,pe=console.error,me=console.group,he=console.groupCollapsed,ge=console.groupEnd;var e={configurable:!0,enumerable:!0,value:ye,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}ve++}();try{if(n){var l=function(){throw Error()};if(Object.defineProperty(l.prototype,&quot;props &quot;,{set:function(){throw Error()}}),&quot;object &quot;==typeof Reflect &amp;&amp;Reflect.construct){try{Reflect.construct(l,[])}catch(e){r=e}Reflect.construct(t,[],l)}else{try{l.call()}catch(e){r=e}t.call(l.prototype)}}else{try{throw Error()}catch(e){r=e}t()}}catch(e){if(e &amp;&amp;r &amp;&amp;&quot;string &quot;==typeof e.stack){for(var s=e.stack.split(&quot;
 &quot;),c=r.stack.split(&quot;
 &quot;),u=s.length-1,f=c.length-1;u &gt;=1 &amp;&amp;f &gt;=0 &amp;&amp;s[u]!==c[f];)f--;for(;u &gt;=1 &amp;&amp;f &gt;=0;u--,f--)if(s[u]!==c[f]){if(1!==u||1!==f)do{if(u--,--f &lt;0||s[u]!==c[f]){var d=&quot;
 &quot;+s[u].replace(&quot;at new &quot;,&quot;at &quot;);return &quot;function &quot;==typeof t &amp;&amp;Ne.set(t,d),d}}while(u &gt;=1 &amp;&amp;f &gt;=0);break}}}finally{Re=!1,be.current=o,function(){if(0==--ve){var t={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:e({},t,{value:ue}),info:e({},t,{value:fe}),warn:e({},t,{value:de}),error:e({},t,{value:pe}),group:e({},t,{value:me}),groupCollapsed:e({},t,{value:he}),groupEnd:e({},t,{value:ge})})}ve &lt;0 &amp;&amp;O(&quot;disabledDepth fell below zero. This is a bug in React. Please file an issue.&quot;)}(),Error.prepareStackTrace=i}var p=t?t.displayName||t.name:&quot;&quot;,m=p?Te(p):&quot;&quot;;return &quot;function &quot;==typeof t &amp;&amp;Ne.set(t,m),m}function Oe(e,t,n){return we(e,!1)}function Ce(e,n,r){if(null==e)return &quot;&quot;;if(&quot;function &quot;==typeof e)return we(e,function(e){var t=e.prototype;return!(!t||!t.isReactComponent)}(e));if(&quot;string &quot;==typeof e)return Te(e);switch(e){case t.Suspense:return Te(&quot;Suspense &quot;);case s:return Te(&quot;SuspenseList &quot;)}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case i:return Oe(e.render);case c:return Ce(e.type,n,r);case f:return Oe(e._render);case u:var a=e._payload,o=e._init;try{return Ce(o(a),n,r)}catch(e){}}return &quot;&quot;}Ne=new Se;var Ae,Ie={},ke=S.ReactDebugCurrentFrame;function xe(e){if(e){var t=e._owner,n=Ce(e.type,e._source,t?t.type:null);ke.setExtraStackFrame(n)}else ke.setExtraStackFrame(null)}function _e(e){if(e){var t=e._owner;R(Ce(e.type,e._source,t?t.type:null))}else R(null)}function Le(){if(b.current){var e=z(b.current.type);if(e)return &quot;

Check the render method of `&quot;+e+&quot;`.&quot;}return &quot;&quot;}function Pe(e){return null!=e?function(e){return void 0!==e?&quot;

Check your code at &quot;+e.fileName.replace(/^.*[\\/]/,&quot;&quot;)+&quot;:&quot;+e.lineNumber+&quot;.&quot;:&quot;&quot;}(e.__source):&quot;&quot;}Ae=!1;var Me={};function De(e,t){if(e._store &amp;&amp;!e._store.validated &amp;&amp;null==e.key){e._store.validated=!0;var n=function(e){var t=Le();if(!t){var n=&quot;string &quot;==typeof e?e:e.displayName||e.name;n &amp;&amp;(t=&quot;

Check the top-level render call using &lt;&quot;+n+&quot;&gt;.&quot;)}return t}(t);if(!Me[n]){Me[n]=!0;var r=&quot;&quot;;e &amp;&amp;e._owner &amp;&amp;e._owner!==b.current &amp;&amp;(r=&quot;It was passed a child from &quot;+z(e._owner.type)+&quot;.&quot;),_e(e),O(&#039;Each child in a list should have a unique &quot;key &quot;prop.%s%s See https://reactjs.org/link/warning-keys for more information.&#039;,n,r),_e(null)}}}function Ue(e,t){if(&quot;object &quot;==typeof e)if(Array.isArray(e))for(var n=0;n &lt;e.length;n++){var r=e[n];ee(r)&amp;&amp;De(r,t)}else if(ee(e))e._store &amp;&amp;(e._store.validated=!0);else if(e){var a=y(e);if(&quot;function &quot;==typeof a &amp;&amp;a!==e.entries)for(var o,i=a.call(e);!(o=i.next()).done;)ee(o.value)&amp;&amp;De(o.value,t)}}function je(e){var t,n=e.type;if(null!=n &amp;&amp;&quot;string &quot;!=typeof n){if(&quot;function &quot;==typeof n)t=n.propTypes;else{if(&quot;object &quot;!=typeof n||n.$$typeof!==i &amp;&amp;n.$$typeof!==c)return;t=n.propTypes}if(t){var r=z(n);!function(e,t,n,r,a){var o=Function.call.bind(Object.prototype.hasOwnProperty);for(var i in e)if(o(e,i)){var l=void 0;try{if(&quot;function &quot;!=typeof e[i]){var s=Error((r||&quot;React class &quot;)+&quot;: prop type `&quot;+i+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+typeof e[i]+&quot;`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.&quot;);throw s.name=&quot;Invariant Violation &quot;,s}l=e[i](t,i,r,n,null,&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;)}catch(e){l=e}!l||l instanceof Error||(xe(a),O(&quot;%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).&quot;,r||&quot;React class &quot;,n,i,typeof l),xe(null)),l instanceof Error &amp;&amp;!(l.message in Ie)&amp;&amp;(Ie[l.message]=!0,xe(a),O(&quot;Failed %s type: %s &quot;,n,l.message),xe(null))}}(t,e.props,&quot;prop &quot;,r,e)}else void 0===n.PropTypes||Ae||(Ae=!0,O(&quot;Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?&quot;,z(n)||&quot;Unknown &quot;));&quot;function &quot;!=typeof n.getDefaultProps||n.getDefaultProps.isReactClassApproved||O(&quot;getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.&quot;)}}function Fe(e){for(var t=Object.keys(e.props),n=0;n &lt;t.length;n++){var r=t[n];if(&quot;children &quot;!==r &amp;&amp;&quot;key &quot;!==r){_e(e),O(&quot;Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.&quot;,r),_e(null);break}}null!==e.ref &amp;&amp;(_e(e),O(&quot;Invalid attribute `ref` supplied to `React.Fragment`.&quot;),_e(null))}function ze(e,r,a){var o=se(e);if(!o){var i=&quot;&quot;;(void 0===e||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;0===Object.keys(e).length)&amp;&amp;(i+=&quot;You likely forgot to export your component from the file it &#039;s defined in, or you might have mixed up default and named imports.&quot;);var l,s=Pe(r);i+=s||Le(),null===e?l=&quot;null &quot;:Array.isArray(e)?l=&quot;array &quot;:void 0!==e &amp;&amp;e.$$typeof===n?(l=&quot;&lt;&quot;+(z(e.type)||&quot;Unknown &quot;)+&quot;/&gt;&quot;,i=&quot;Did you accidentally export a JSX literal instead of a component?&quot;):l=typeof e,O(&quot;React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s &quot;,l,i)}var c=Q.apply(this,arguments);if(null==c)return c;if(o)for(var u=2;u &lt;arguments.length;u++)Ue(arguments[u],e);return e===t.Fragment?Fe(c):je(c),c}var He=!1;try{var Be=Object.freeze({});new Map([[Be,null]]),new Set([Be])}catch(e){}var Ve=ze;t.Children={map:ie,forEach:function(e,t,n){ie(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return ie(e,function(){t++}),t},toArray:function(e){return ie(e,function(e){return e})||[]},only:function(e){if(!ee(e))throw Error(&quot;React.Children.only expected to receive a single React element child.&quot;);return e}},t.Component=_,t.PureComponent=U,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=S,t.cloneElement=function(e,t,n){for(var r=Z.apply(this,arguments),a=2;a &lt;arguments.length;a++)Ue(arguments[a],r.type);return je(r),r},t.createContext=function(e,t){void 0===t?t=null:null!==t &amp;&amp;&quot;function &quot;!=typeof t &amp;&amp;O(&quot;createContext: Expected the optional second argument to be a function. Instead received: %s &quot;,t);var n={$$typeof:o,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null};n.Provider={$$typeof:a,_context:n};var r=!1,i=!1,l=!1,s={$$typeof:o,_context:n,_calculateChangedBits:n._calculateChangedBits};return Object.defineProperties(s,{Provider:{get:function(){return i||(i=!0,O(&quot;Rendering &lt;Context.Consumer.Provider &gt;is not supported and will be removed in a future major release. Did you mean to render &lt;Context.Provider &gt;instead?&quot;)),n.Provider},set:function(e){n.Provider=e}},_currentValue:{get:function(){return n._currentValue},set:function(e){n._currentValue=e}},_currentValue2:{get:function(){return n._currentValue2},set:function(e){n._currentValue2=e}},_threadCount:{get:function(){return n._threadCount},set:function(e){n._threadCount=e}},Consumer:{get:function(){return r||(r=!0,O(&quot;Rendering &lt;Context.Consumer.Consumer &gt;is not supported and will be removed in a future major release. Did you mean to render &lt;Context.Consumer &gt;instead?&quot;)),n.Consumer}},displayName:{get:function(){return n.displayName},set:function(e){l||(w(&quot;Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = &#039;%s &#039;.&quot;,e),l=!0)}}}),n.Consumer=s,n._currentRenderer=null,n._currentRenderer2=null,n},t.createElement=Ve,t.createFactory=function(e){var t=ze.bind(null,e);return t.type=e,He||(He=!0,w(&quot;React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.&quot;)),Object.defineProperty(t,&quot;type &quot;,{enumerable:!1,get:function(){return w(&quot;Factory.type is deprecated. Access the class directly before passing it to createFactory.&quot;),Object.defineProperty(this,&quot;type &quot;,{value:e}),e}}),t},t.createRef=function(){var e={current:null};return Object.seal(e),e},t.forwardRef=function(e){null!=e &amp;&amp;e.$$typeof===c?O(&quot;forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).&quot;):&quot;function &quot;!=typeof e?O(&quot;forwardRef requires a render function but was given %s.&quot;,null===e?&quot;null &quot;:typeof e):0!==e.length &amp;&amp;2!==e.length &amp;&amp;O(&quot;forwardRef render functions accept exactly two parameters: props and ref. %s &quot;,1===e.length?&quot;Did you forget to use the ref parameter?&quot;:&quot;Any additional parameter will be undefined.&quot;),null!=e &amp;&amp;(null==e.defaultProps &amp;&amp;null==e.propTypes||O(&quot;forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?&quot;));var t,n={$$typeof:i,render:e};return Object.defineProperty(n,&quot;displayName &quot;,{enumerable:!1,configurable:!0,get:function(){return t},set:function(n){t=n,null==e.displayName &amp;&amp;(e.displayName=n)}}),n},t.isValidElement=ee,t.lazy=function(e){var t,n,r={$$typeof:u,_payload:{_status:-1,_result:e},_init:le};return Object.defineProperties(r,{defaultProps:{configurable:!0,get:function(){return t},set:function(e){O(&quot;React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.&quot;),t=e,Object.defineProperty(r,&quot;defaultProps &quot;,{enumerable:!0})}},propTypes:{configurable:!0,get:function(){return n},set:function(e){O(&quot;React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.&quot;),n=e,Object.defineProperty(r,&quot;propTypes &quot;,{enumerable:!0})}}}),r},t.memo=function(e,t){se(e)||O(&quot;memo: The first argument must be a component. Instead received: %s &quot;,null===e?&quot;null &quot;:typeof e);var n,r={$$typeof:c,type:e,compare:void 0===t?null:t};return Object.defineProperty(r,&quot;displayName &quot;,{enumerable:!1,configurable:!0,get:function(){return n},set:function(t){n=t,null==e.displayName &amp;&amp;(e.displayName=t)}}),r},t.useCallback=function(e,t){return ce().useCallback(e,t)},t.useContext=function(e,t){var n=ce();if(void 0!==t &amp;&amp;O(&quot;useContext() second argument is reserved for future use in React. Passing it is not supported. You passed: %s.%s &quot;,t,&quot;number &quot;==typeof t &amp;&amp;Array.isArray(arguments[2])?&quot;

Did you call array.map(useContext)? Calling Hooks inside a loop is not supported. Learn more at https://reactjs.org/link/rules-of-hooks &quot;:&quot;&quot;),void 0!==e._context){var r=e._context;r.Consumer===e?O(&quot;Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?&quot;):r.Provider===e &amp;&amp;O(&quot;Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?&quot;)}return n.useContext(e,t)},t.useDebugValue=function(e,t){return ce().useDebugValue(e,t)},t.useEffect=function(e,t){return ce().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return ce().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return ce().useLayoutEffect(e,t)},t.useMemo=function(e,t){return ce().useMemo(e,t)},t.useReducer=function(e,t,n){return ce().useReducer(e,t,n)},t.useRef=function(e){return ce().useRef(e)},t.useState=function(e){return ce().useState(e)},t.version=&quot;17.0.2 &quot;}()}),c=n(function(e){e.exports=s});n(function(e,t){var n,r,a,o;if(&quot;object &quot;==typeof performance &amp;&amp;&quot;function &quot;==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if(&quot;undefined &quot;==typeof window||&quot;function &quot;!=typeof MessageChannel){var c=null,u=null,f=function(){if(null!==c)try{var e=t.unstable_now();c(!0,e),c=null}catch(e){throw setTimeout(f,0),e}};n=function(e){null!==c?setTimeout(n,0,e):(c=e,setTimeout(f,0))},r=function(e,t){u=setTimeout(e,t)},a=function(){clearTimeout(u)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var d=window.setTimeout,p=window.clearTimeout;if(&quot;undefined &quot;!=typeof console){var m=window.cancelAnimationFrame;&quot;function &quot;!=typeof window.requestAnimationFrame &amp;&amp;console.error(&quot;This browser doesn &#039;t support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;),&quot;function &quot;!=typeof m &amp;&amp;console.error(&quot;This browser doesn &#039;t support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;)}var h=!1,g=null,v=-1,y=5,E=0;t.unstable_shouldYield=function(){return t.unstable_now()&gt;=E},o=function(){},t.unstable_forceFrameRate=function(e){0 &gt;e||125 &lt;e?console.error(&quot;forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported &quot;):y=0 &lt;e?Math.floor(1e3/e):5};var b=new MessageChannel,T=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();E=e+y;try{g(!0,e)?T.postMessage(null):(h=!1,g=null)}catch(e){throw T.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,T.postMessage(null))},r=function(e,n){v=d(function(){e(t.unstable_now())},n)},a=function(){p(v),v=-1}}function N(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1 &gt;&gt;&gt;1,a=e[r];if(!(void 0!==a &amp;&amp;0 &lt;w(a,t)))break e;e[r]=t,e[n]=a,n=r}}function R(e){return void 0===(e=e[0])?null:e}function S(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,a=e.length;r &lt;a;){var o=2*(r+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i &amp;&amp;0 &gt;w(i,n))void 0!==s &amp;&amp;0 &gt;w(s,i)?(e[r]=s,e[l]=n,r=l):(e[r]=i,e[o]=n,r=o);else{if(!(void 0!==s &amp;&amp;0 &gt;w(s,n)))break e;e[r]=s,e[l]=n,r=l}}}return t}return null}function w(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var O=[],C=[],A=1,I=null,k=3,x=!1,_=!1,L=!1;function P(e){for(var t=R(C);null!==t;){if(null===t.callback)S(C);else{if(!(t.startTime &lt;=e))break;S(C),t.sortIndex=t.expirationTime,N(O,t)}t=R(C)}}function M(e){if(L=!1,P(e),!_)if(null!==R(O))_=!0,n(D);else{var t=R(C);null!==t &amp;&amp;r(M,t.startTime-e)}}function D(e,n){_=!1,L &amp;&amp;(L=!1,a()),x=!0;var o=k;try{for(P(n),I=R(O);null!==I &amp;&amp;(!(I.expirationTime &gt;n)||e &amp;&amp;!t.unstable_shouldYield());){var i=I.callback;if(&quot;function &quot;==typeof i){I.callback=null,k=I.priorityLevel;var l=i(I.expirationTime &lt;=n);n=t.unstable_now(),&quot;function &quot;==typeof l?I.callback=l:I===R(O)&amp;&amp;S(O),P(n)}else S(O);I=R(O)}if(null!==I)var s=!0;else{var c=R(C);null!==c &amp;&amp;r(M,c.startTime-n),s=!1}return s}finally{I=null,k=o,x=!1}}var U=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){_||x||(_=!0,n(D))},t.unstable_getCurrentPriorityLevel=function(){return k},t.unstable_getFirstCallbackNode=function(){return R(O)},t.unstable_next=function(e){switch(k){case 1:case 2:case 3:var t=3;break;default:t=k}var n=k;k=t;try{return e()}finally{k=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=U,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=k;k=e;try{return t()}finally{k=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i=&quot;object &quot;==typeof i &amp;&amp;null!==i &amp;&amp;&quot;number &quot;==typeof(i=i.delay)&amp;&amp;0 &lt;i?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:A++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i &gt;l?(e.sortIndex=i,N(C,e),null===R(O)&amp;&amp;e===R(C)&amp;&amp;(L?a():L=!0,r(M,i-l))):(e.sortIndex=s,N(O,e),_||x||(_=!0,n(D))),e},t.unstable_wrapCallback=function(e){var t=k;return function(){var n=k;k=t;try{return e.apply(this,arguments)}finally{k=n}}}});var u=n(function(e,t){!function(){var e,n,r,a;if(&quot;object &quot;==typeof performance &amp;&amp;&quot;function &quot;==typeof performance.now){var o=performance;t.unstable_now=function(){return o.now()}}else{var i=Date,l=i.now();t.unstable_now=function(){return i.now()-l}}if(&quot;undefined &quot;==typeof window||&quot;function &quot;!=typeof MessageChannel){var s=null,c=null,u=function(){if(null!==s)try{var e=t.unstable_now();s(!0,e),s=null}catch(e){throw setTimeout(u,0),e}};e=function(t){null!==s?setTimeout(e,0,t):(s=t,setTimeout(u,0))},n=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},a=t.unstable_forceFrameRate=function(){}}else{var f=window.setTimeout,d=window.clearTimeout;if(&quot;undefined &quot;!=typeof console){var p=window.requestAnimationFrame,m=window.cancelAnimationFrame;&quot;function &quot;!=typeof p &amp;&amp;console.error(&quot;This browser doesn &#039;t support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;),&quot;function &quot;!=typeof m &amp;&amp;console.error(&quot;This browser doesn &#039;t support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;)}var h=!1,g=null,v=-1,y=5,E=0;t.unstable_shouldYield=function(){return t.unstable_now()&gt;=E},a=function(){},t.unstable_forceFrameRate=function(e){e &lt;0||e &gt;125?console.error(&quot;forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported &quot;):y=e &gt;0?Math.floor(1e3/e):5};var b=new MessageChannel,T=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();E=e+y;try{g(!0,e)?T.postMessage(null):(h=!1,g=null)}catch(e){throw T.postMessage(null),e}}else h=!1},e=function(e){g=e,h||(h=!0,T.postMessage(null))},n=function(e,n){v=f(function(){e(t.unstable_now())},n)},r=function(){d(v),v=-1}}function N(e,t){var n=e.length;e.push(t),function(e,t,n){for(var r=n;;){var a=r-1 &gt;&gt;&gt;1,o=e[a];if(!(void 0!==o &amp;&amp;w(o,t)&gt;0))return;e[a]=t,e[r]=o,r=a}}(e,t,n)}function R(e){var t=e[0];return void 0===t?null:t}function S(e){var t=e[0];if(void 0!==t){var n=e.pop();return n!==t &amp;&amp;(e[0]=n,function(e,t,n){for(var r=0,a=e.length;r &lt;a;){var o=2*(r+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i &amp;&amp;w(i,t)&lt;0)void 0!==s &amp;&amp;w(s,i)&lt;0?(e[r]=s,e[l]=t,r=l):(e[r]=i,e[o]=t,r=o);else{if(!(void 0!==s &amp;&amp;w(s,t)&lt;0))return;e[r]=s,e[l]=t,r=l}}}(e,n)),t}return null}function w(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var O=[],C=[],A=1,I=null,k=3,x=!1,_=!1,L=!1;function P(e){for(var t=R(C);null!==t;){if(null===t.callback)S(C);else{if(!(t.startTime &lt;=e))return;S(C),t.sortIndex=t.expirationTime,N(O,t)}t=R(C)}}function M(t){if(L=!1,P(t),!_)if(null!==R(O))_=!0,e(D);else{var r=R(C);null!==r &amp;&amp;n(M,r.startTime-t)}}function D(e,a){_=!1,L &amp;&amp;(L=!1,r()),x=!0;var o=k;try{return function(e,r){var a=r;for(P(a),I=R(O);null!==I &amp;&amp;(!(I.expirationTime &gt;a)||e &amp;&amp;!t.unstable_shouldYield());){var o=I.callback;if(&quot;function &quot;==typeof o){I.callback=null,k=I.priorityLevel;var i=o(I.expirationTime &lt;=a);a=t.unstable_now(),&quot;function &quot;==typeof i?I.callback=i:I===R(O)&amp;&amp;S(O),P(a)}else S(O);I=R(O)}if(null!==I)return!0;var l=R(C);return null!==l &amp;&amp;n(M,l.startTime-a),!1}(e,a)}finally{I=null,k=o,x=!1}}var U=a;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){_||x||(_=!0,e(D))},t.unstable_getCurrentPriorityLevel=function(){return k},t.unstable_getFirstCallbackNode=function(){return R(O)},t.unstable_next=function(e){var t;switch(k){case 1:case 2:case 3:t=3;break;default:t=k}var n=k;k=t;try{return e()}finally{k=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=U,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=k;k=e;try{return t()}finally{k=n}},t.unstable_scheduleCallback=function(a,o,i){var l,s,c=t.unstable_now();if(&quot;object &quot;==typeof i &amp;&amp;null!==i){var u=i.delay;l=&quot;number &quot;==typeof u &amp;&amp;u &gt;0?c+u:c}else l=c;switch(a){case 1:s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;case 3:default:s=5e3}var f=l+s,d={id:A++,callback:o,priorityLevel:a,startTime:l,expirationTime:f,sortIndex:-1};return l &gt;c?(d.sortIndex=l,N(C,d),null===R(O)&amp;&amp;d===R(C)&amp;&amp;(L?r():L=!0,n(M,l-c))):(d.sortIndex=f,N(O,d),_||x||(_=!0,e(D))),d},t.unstable_wrapCallback=function(e){var t=k;return function(){var n=k;k=t;try{return e.apply(this,arguments)}finally{k=n}}}}()}),f=n(function(e){e.exports=u});function d(e){for(var t=&quot;https://reactjs.org/docs/error-decoder.html?invariant=&quot;+e,n=1;n &lt;arguments.length;n++)t+=&quot;&amp;args[]=&quot;+encodeURIComponent(arguments[n]);return &quot;Minified React error #&quot;+e+&quot;; visit &quot;+t+&quot;for the full message or use the non-minified dev environment for full errors and additional helpful warnings.&quot;}if(!c)throw Error(d(227));var p=new Set;function m(e,t){h(e,t),h(e+&quot;Capture &quot;,t)}function h(e,t){for(e=0;e &lt;t.length;e++)p.add(t[e])}var g=!(&quot;undefined &quot;==typeof window||void 0===window.document||void 0===window.document.createElement);function v(e,t,n,r,a,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}[&quot;contentEditable &quot;,&quot;draggable &quot;,&quot;spellCheck &quot;,&quot;value &quot;].forEach(function(e){new v(e,2,!1,e.toLowerCase(),null,!1,!1)}),&quot;allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope &quot;.split(&quot;&quot;).forEach(function(e){new v(e,3,!1,e.toLowerCase(),null,!1,!1)}),[&quot;rowSpan &quot;,&quot;start &quot;].forEach(function(e){new v(e,5,!1,e.toLowerCase(),null,!1,!1)});var y=/[\-:]([a-z])/g;function E(e){return e[1].toUpperCase()}&quot;accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height &quot;.split(&quot;&quot;).forEach(function(e){e.replace(y,E)}),&quot;xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type &quot;.split(&quot;&quot;).forEach(function(e){e.replace(y,E)}),[&quot;xml:base &quot;,&quot;xml:lang &quot;,&quot;xml:space &quot;].forEach(function(e){e.replace(y,E)}),[&quot;tabIndex &quot;,&quot;crossOrigin &quot;].forEach(function(e){new v(e,1,!1,e.toLowerCase(),null,!1,!1)}),[&quot;src &quot;,&quot;href &quot;,&quot;action &quot;,&quot;formAction &quot;].forEach(function(e){new v(e,1,!1,e.toLowerCase(),null,!0,!0)});var b=c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var T=Symbol.for;T(&quot;react.element &quot;),T(&quot;react.portal &quot;),T(&quot;react.fragment &quot;),T(&quot;react.strict_mode &quot;),T(&quot;react.profiler &quot;),T(&quot;react.provider &quot;),T(&quot;react.context &quot;),T(&quot;react.forward_ref &quot;),T(&quot;react.suspense &quot;),T(&quot;react.suspense_list &quot;),T(&quot;react.memo &quot;),T(&quot;react.lazy &quot;),T(&quot;react.block &quot;),T(&quot;react.scope &quot;),T(&quot;react.opaque.id &quot;),T(&quot;react.debug_trace_mode &quot;),T(&quot;react.offscreen &quot;),T(&quot;react.legacy_hidden &quot;)}&quot;undefined &quot;!=typeof MSApp &amp;&amp;MSApp;var N={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},R=[&quot;Webkit &quot;,&quot;ms &quot;,&quot;Moz &quot;,&quot;O &quot;];if(Object.keys(N).forEach(function(e){R.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),N[t]=N[e]})}),l({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}),g)try{var S={};Object.defineProperty(S,&quot;passive &quot;,{get:function(){}}),window.addEventListener(&quot;test &quot;,S,S),window.removeEventListener(&quot;test &quot;,S,S)}catch(e){}function w(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026 &amp;(t=e).flags)&amp;&amp;(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function O(e){if(w(e)!==e)throw Error(d(188))}function C(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[&quot;Webkit &quot;+e]=&quot;webkit &quot;+t,n[&quot;Moz &quot;+e]=&quot;moz &quot;+t,n}var A={animationend:C(&quot;Animation &quot;,&quot;AnimationEnd &quot;),animationiteration:C(&quot;Animation &quot;,&quot;AnimationIteration &quot;),animationstart:C(&quot;Animation &quot;,&quot;AnimationStart &quot;),transitionend:C(&quot;Transition &quot;,&quot;TransitionEnd &quot;)},I={},k={};function x(e){if(I[e])return I[e];if(!A[e])return e;var t,n=A[e];for(t in n)if(n.hasOwnProperty(t)&amp;&amp;t in k)return I[e]=n[t];return e}g &amp;&amp;(k=document.createElement(&quot;div &quot;).style,&quot;AnimationEvent &quot;in window||(delete A.animationend.animation,delete A.animationiteration.animation,delete A.animationstart.animation),&quot;TransitionEvent &quot;in window||delete A.transitionend.transition);var _=x(&quot;animationend &quot;),L=x(&quot;animationiteration &quot;),P=x(&quot;animationstart &quot;),M=x(&quot;transitionend &quot;),D=new Map,U=new Map,j=[&quot;abort &quot;,&quot;abort &quot;,_,&quot;animationEnd &quot;,L,&quot;animationIteration &quot;,P,&quot;animationStart &quot;,&quot;canplay &quot;,&quot;canPlay &quot;,&quot;canplaythrough &quot;,&quot;canPlayThrough &quot;,&quot;durationchange &quot;,&quot;durationChange &quot;,&quot;emptied &quot;,&quot;emptied &quot;,&quot;encrypted &quot;,&quot;encrypted &quot;,&quot;ended &quot;,&quot;ended &quot;,&quot;error &quot;,&quot;error &quot;,&quot;gotpointercapture &quot;,&quot;gotPointerCapture &quot;,&quot;load &quot;,&quot;load &quot;,&quot;loadeddata &quot;,&quot;loadedData &quot;,&quot;loadedmetadata &quot;,&quot;loadedMetadata &quot;,&quot;loadstart &quot;,&quot;loadStart &quot;,&quot;lostpointercapture &quot;,&quot;lostPointerCapture &quot;,&quot;playing &quot;,&quot;playing &quot;,&quot;progress &quot;,&quot;progress &quot;,&quot;seeking &quot;,&quot;seeking &quot;,&quot;stalled &quot;,&quot;stalled &quot;,&quot;suspend &quot;,&quot;suspend &quot;,&quot;timeupdate &quot;,&quot;timeUpdate &quot;,M,&quot;transitionEnd &quot;,&quot;waiting &quot;,&quot;waiting &quot;];function F(e,t){for(var n=0;n &lt;e.length;n+=2){var r=e[n],a=e[n+1];a=&quot;on &quot;+(a[0].toUpperCase()+a.slice(1)),U.set(r,t),D.set(r,a),m(a,[r])}}function z(e){var t=e.keyCode;return &quot;charCode &quot;in e?0===(e=e.charCode)&amp;&amp;13===t &amp;&amp;(e=13):e=t,10===e &amp;&amp;(e=13),32 &lt;=e||13===e?e:0}function H(){return!0}function B(){return!1}function V(e){function t(t,n,r,a,o){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&amp;&amp;(this[i]=(t=e[i])?t(a):a[i]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?H:B,this.isPropagationStopped=B,this}return l(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e &amp;&amp;(e.preventDefault?e.preventDefault():&quot;unknown &quot;!=typeof e.returnValue &amp;&amp;(e.returnValue=!1),this.isDefaultPrevented=H)},stopPropagation:function(){var e=this.nativeEvent;e &amp;&amp;(e.stopPropagation?e.stopPropagation():&quot;unknown &quot;!=typeof e.cancelBubble &amp;&amp;(e.cancelBubble=!0),this.isPropagationStopped=H)},persist:function(){},isPersistent:H}),t}(0,f.unstable_now)();var W={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0};V(W);var G=l({},W,{view:0,detail:0});V(G);var Y,$,X,K=l({},G,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:ee,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return &quot;movementX &quot;in e?e.movementX:(e!==X &amp;&amp;(X &amp;&amp;&quot;mousemove &quot;===e.type?(Y=e.screenX-X.screenX,$=e.screenY-X.screenY):$=Y=0,X=e),Y)},movementY:function(e){return &quot;movementY &quot;in e?e.movementY:$}});V(K),V(l({},K,{dataTransfer:0})),V(l({},G,{relatedTarget:0})),V(l({},W,{animationName:0,elapsedTime:0,pseudoElement:0})),V(l({},W,{clipboardData:function(e){return &quot;clipboardData &quot;in e?e.clipboardData:window.clipboardData}})),V(l({},W,{data:0}));var q={Esc:&quot;Escape &quot;,Spacebar:&quot;&quot;,Left:&quot;ArrowLeft &quot;,Up:&quot;ArrowUp &quot;,Right:&quot;ArrowRight &quot;,Down:&quot;ArrowDown &quot;,Del:&quot;Delete &quot;,Win:&quot;OS &quot;,Menu:&quot;ContextMenu &quot;,Apps:&quot;ContextMenu &quot;,Scroll:&quot;ScrollLock &quot;,MozPrintableKey:&quot;Unidentified &quot;},J={8:&quot;Backspace &quot;,9:&quot;Tab &quot;,12:&quot;Clear &quot;,13:&quot;Enter &quot;,16:&quot;Shift &quot;,17:&quot;Control &quot;,18:&quot;Alt &quot;,19:&quot;Pause &quot;,20:&quot;CapsLock &quot;,27:&quot;Escape &quot;,32:&quot;&quot;,33:&quot;PageUp &quot;,34:&quot;PageDown &quot;,35:&quot;End &quot;,36:&quot;Home &quot;,37:&quot;ArrowLeft &quot;,38:&quot;ArrowUp &quot;,39:&quot;ArrowRight &quot;,40:&quot;ArrowDown &quot;,45:&quot;Insert &quot;,46:&quot;Delete &quot;,112:&quot;F1 &quot;,113:&quot;F2 &quot;,114:&quot;F3 &quot;,115:&quot;F4 &quot;,116:&quot;F5 &quot;,117:&quot;F6 &quot;,118:&quot;F7 &quot;,119:&quot;F8 &quot;,120:&quot;F9 &quot;,121:&quot;F10 &quot;,122:&quot;F11 &quot;,123:&quot;F12 &quot;,144:&quot;NumLock &quot;,145:&quot;ScrollLock &quot;,224:&quot;Meta &quot;},Q={Alt:&quot;altKey &quot;,Control:&quot;ctrlKey &quot;,Meta:&quot;metaKey &quot;,Shift:&quot;shiftKey &quot;};function Z(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Q[e])&amp;&amp;!!t[e]}function ee(){return Z}if(V(l({},G,{key:function(e){if(e.key){var t=q[e.key]||e.key;if(&quot;Unidentified &quot;!==t)return t}return &quot;keypress &quot;===e.type?13===(e=z(e))?&quot;Enter &quot;:String.fromCharCode(e):&quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?J[e.keyCode]||&quot;Unidentified &quot;:&quot;&quot;},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:ee,charCode:function(e){return &quot;keypress &quot;===e.type?z(e):0},keyCode:function(e){return &quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0},which:function(e){return &quot;keypress &quot;===e.type?z(e):&quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0}})),V(l({},K,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),V(l({},G,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:ee})),V(l({},W,{propertyName:0,elapsedTime:0,pseudoElement:0})),V(l({},K,{deltaX:function(e){return &quot;deltaX &quot;in e?e.deltaX:&quot;wheelDeltaX &quot;in e?-e.wheelDeltaX:0},deltaY:function(e){return &quot;deltaY &quot;in e?e.deltaY:&quot;wheelDeltaY &quot;in e?-e.wheelDeltaY:&quot;wheelDelta &quot;in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),g &amp;&amp;g){var te=&quot;oninput &quot;in document;if(!te){var ne=document.createElement(&quot;div &quot;);ne.setAttribute(&quot;oninput &quot;,&quot;return;&quot;),te=&quot;function &quot;==typeof ne.oninput}}F(&quot;cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange &quot;.split(&quot;&quot;),0),F(&quot;drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel &quot;.split(&quot;&quot;),1),F(j,2);for(var re=&quot;change selectionchange textInput compositionstart compositionend compositionupdate &quot;.split(&quot;&quot;),ae=0;ae &lt;re.length;ae++)U.set(re[ae],0);function oe(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(&quot;$ &quot;===n||&quot;$!&quot;===n||&quot;$?&quot;===n){if(0===t)return e;t--}else &quot;/$ &quot;===n &amp;&amp;t++}e=e.previousSibling}return null}h(&quot;onMouseEnter &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),h(&quot;onMouseLeave &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),h(&quot;onPointerEnter &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),h(&quot;onPointerLeave &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),m(&quot;onChange &quot;,&quot;change click focusin focusout input keydown keyup selectionchange &quot;.split(&quot;&quot;)),m(&quot;onSelect &quot;,&quot;focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange &quot;.split(&quot;&quot;)),m(&quot;onBeforeInput &quot;,[&quot;compositionend &quot;,&quot;keypress &quot;,&quot;textInput &quot;,&quot;paste &quot;]),m(&quot;onCompositionEnd &quot;,&quot;compositionend focusout keydown keypress keyup mousedown &quot;.split(&quot;&quot;)),m(&quot;onCompositionStart &quot;,&quot;compositionstart focusout keydown keypress keyup mousedown &quot;.split(&quot;&quot;)),m(&quot;onCompositionUpdate &quot;,&quot;compositionupdate focusout keydown keypress keyup mousedown &quot;.split(&quot;&quot;)),Math.random().toString(36).slice(2);var ie=Math.random().toString(36).slice(2),le=&quot;__reactFiber$ &quot;+ie,se=&quot;__reactContainer$ &quot;+ie;(0,f.unstable_now)(),new c.Component;var ce={findFiberByHostInstance:function(e){var t=e[le];if(t)return t;for(var n=e.parentNode;n;){if(t=n[se]||n[le]){if(n=t.alternate,null!==t.child||null!==n &amp;&amp;null!==n.child)for(e=oe(e);null!==e;){if(n=e[le])return n;e=oe(e)}return t}n=(e=n).parentNode}return null},bundleType:0,version:&quot;17.0.2 &quot;,rendererPackageName:&quot;react-dom &quot;},ue={bundleType:ce.bundleType,version:ce.version,rendererPackageName:ce.rendererPackageName,rendererConfig:ce.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:b.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=function(e){if(!(e=function(e){var t=e.alternate;if(!t){if(null===(t=w(e)))throw Error(d(188));return t!==e?null:e}for(var n=e,r=t;;){var a=n.return;if(null===a)break;var o=a.alternate;if(null===o){if(null!==(r=a.return)){n=r;continue}break}if(a.child===o.child){for(o=a.child;o;){if(o===n)return O(a),e;if(o===r)return O(a),t;o=o.sibling}throw Error(d(188))}if(n.return!==r.return)n=a,r=o;else{for(var i=!1,l=a.child;l;){if(l===n){i=!0,n=a,r=o;break}if(l===r){i=!0,r=a,n=o;break}l=l.sibling}if(!i){for(l=o.child;l;){if(l===n){i=!0,n=o,r=a;break}if(l===r){i=!0,r=o,n=a;break}l=l.sibling}if(!i)throw Error(d(189))}}if(n.alternate!==r)throw Error(d(190))}if(3!==n.tag)throw Error(d(188));return n.stateNode.current===n?e:t}(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}(e))?null:e.stateNode},findFiberByHostInstance:ce.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(&quot;undefined &quot;!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var fe=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!fe.isDisabled &amp;&amp;fe.supportsFiber)try{fe.inject(ue)}catch(e){}}var de=n(function(e,t){!function(){var e=0,n=0;t.__interactionsRef=null,t.__subscriberRef=null,t.__interactionsRef={current:new Set},t.__subscriberRef={current:null};var r=null;function a(e){var t=!1,n=null;if(r.forEach(function(r){try{r.onInteractionTraced(e)}catch(e){t||(t=!0,n=e)}}),t)throw n}function o(e){var t=!1,n=null;if(r.forEach(function(r){try{r.onInteractionScheduledWorkCompleted(e)}catch(e){t||(t=!0,n=e)}}),t)throw n}function i(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkScheduled(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}function l(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkStarted(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}function s(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkStopped(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}function c(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkCanceled(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}r=new Set,t.unstable_clear=function(e){var n=t.__interactionsRef.current;t.__interactionsRef.current=new Set;try{return e()}finally{t.__interactionsRef.current=n}},t.unstable_getCurrent=function(){return t.__interactionsRef.current},t.unstable_getThreadID=function(){return++n},t.unstable_subscribe=function(e){r.add(e),1===r.size &amp;&amp;(t.__subscriberRef.current={onInteractionScheduledWorkCompleted:o,onInteractionTraced:a,onWorkCanceled:c,onWorkScheduled:i,onWorkStarted:l,onWorkStopped:s})},t.unstable_trace=function(n,r,a){var o=arguments.length &gt;3 &amp;&amp;void 0!==arguments[3]?arguments[3]:0,i={__count:1,id:e++,name:n,timestamp:r},l=t.__interactionsRef.current,s=new Set(l);s.add(i),t.__interactionsRef.current=s;var c,u=t.__subscriberRef.current;try{null!==u &amp;&amp;u.onInteractionTraced(i)}finally{try{null!==u &amp;&amp;u.onWorkStarted(s,o)}finally{try{c=a()}finally{t.__interactionsRef.current=l;try{null!==u &amp;&amp;u.onWorkStopped(s,o)}finally{i.__count--,null!==u &amp;&amp;0===i.__count &amp;&amp;u.onInteractionScheduledWorkCompleted(i)}}}}return c},t.unstable_unsubscribe=function(e){r.delete(e),0===r.size &amp;&amp;(t.__subscriberRef.current=null)},t.unstable_wrap=function(e){var n=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:0,r=t.__interactionsRef.current,a=t.__subscriberRef.current;null!==a &amp;&amp;a.onWorkScheduled(r,n),r.forEach(function(e){e.__count++});var o=!1;function i(){var i=t.__interactionsRef.current;t.__interactionsRef.current=r,a=t.__subscriberRef.current;try{var l;try{null!==a &amp;&amp;a.onWorkStarted(r,n)}finally{try{l=e.apply(void 0,arguments)}finally{t.__interactionsRef.current=i,null!==a &amp;&amp;a.onWorkStopped(r,n)}}return l}finally{o||(o=!0,r.forEach(function(e){e.__count--,null!==a &amp;&amp;0===e.__count &amp;&amp;a.onInteractionScheduledWorkCompleted(e)}))}}return i.cancel=function(){a=t.__subscriberRef.current;try{null!==a &amp;&amp;a.onWorkCanceled(r,n)}finally{r.forEach(function(e){e.__count--,a &amp;&amp;0===e.__count &amp;&amp;a.onInteractionScheduledWorkCompleted(e)})}},i}}()}),pe=n(function(e){e.exports=de}),me=n(function(e,t){!function(){var e=c,n=l,r=f,a=pe,o=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function i(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];u(&quot;warn &quot;,e,n)}function s(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];u(&quot;error &quot;,e,n)}function u(e,t,n){var r=o.ReactDebugCurrentFrame.getStackAddendum();&quot;&quot;!==r &amp;&amp;(t+=&quot;%s &quot;,n=n.concat([r]));var a=n.map(function(e){return &quot;&quot;+e});a.unshift(&quot;Warning: &quot;+t),Function.prototype.apply.call(console[e],console,a)}if(!e)throw Error(&quot;ReactDOM was loaded before React. Make sure you load the React package before loading ReactDOM.&quot;);var d=10,p=11,m=12,h=13,g=14,v=15,y=17,E=19,b=20,T=22,N=23,R=24,S=!1,w=new Set,O={},C={};function A(e,t){I(e,t),I(e+&quot;Capture &quot;,t)}function I(e,t){O[e]&amp;&amp;s(&quot;EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.&quot;,e),O[e]=t;var n=e.toLowerCase();C[n]=e,&quot;onDoubleClick &quot;===e &amp;&amp;(C.ondblclick=e);for(var r=0;r &lt;t.length;r++)w.add(t[r])}var k=!(&quot;undefined &quot;==typeof window||void 0===window.document||void 0===window.document.createElement),x=&quot;:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD &quot;,_=x+&quot;\-.0-9\u00B7\u0300-\u036F\u203F-\u2040 &quot;,L=&quot;data-reactroot &quot;,P=new RegExp(&quot;^[&quot;+x+&quot;][&quot;+_+&quot;]*$ &quot;),M=Object.prototype.hasOwnProperty,D={},U={};function j(e){return!!M.call(U,e)||!M.call(D,e)&amp;&amp;(P.test(e)?(U[e]=!0,!0):(D[e]=!0,s(&quot;Invalid attribute name: `%s`&quot;,e),!1))}function F(e,t,n){return null!==t?0===t.type:!n &amp;&amp;e.length &gt;2 &amp;&amp;(&quot;o &quot;===e[0]||&quot;O &quot;===e[0])&amp;&amp;(&quot;n &quot;===e[1]||&quot;N &quot;===e[1])}function z(e,t,n,r){if(null!==n &amp;&amp;0===n.type)return!1;switch(typeof t){case &quot;function &quot;:case &quot;symbol &quot;:return!0;case &quot;boolean &quot;:if(r)return!1;if(null!==n)return!n.acceptsBooleans;var a=e.toLowerCase().slice(0,5);return &quot;data-&quot;!==a &amp;&amp;&quot;aria-&quot;!==a;default:return!1}}function H(e,t,n,r){if(null==t)return!0;if(z(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||t &lt;1}return!1}function B(e){return W.hasOwnProperty(e)?W[e]:null}function V(e,t,n,r,a,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var W={};[&quot;children &quot;,&quot;dangerouslySetInnerHTML &quot;,&quot;defaultValue &quot;,&quot;defaultChecked &quot;,&quot;innerHTML &quot;,&quot;suppressContentEditableWarning &quot;,&quot;suppressHydrationWarning &quot;,&quot;style &quot;].forEach(function(e){W[e]=new V(e,0,!1,e,null,!1,!1)}),[[&quot;acceptCharset &quot;,&quot;accept-charset &quot;],[&quot;className &quot;,&quot;class &quot;],[&quot;htmlFor &quot;,&quot;for &quot;],[&quot;httpEquiv &quot;,&quot;http-equiv &quot;]].forEach(function(e){var t=e[0];W[t]=new V(t,1,!1,e[1],null,!1,!1)}),[&quot;contentEditable &quot;,&quot;draggable &quot;,&quot;spellCheck &quot;,&quot;value &quot;].forEach(function(e){W[e]=new V(e,2,!1,e.toLowerCase(),null,!1,!1)}),[&quot;autoReverse &quot;,&quot;externalResourcesRequired &quot;,&quot;focusable &quot;,&quot;preserveAlpha &quot;].forEach(function(e){W[e]=new V(e,2,!1,e,null,!1,!1)}),[&quot;allowFullScreen &quot;,&quot;async &quot;,&quot;autoFocus &quot;,&quot;autoPlay &quot;,&quot;controls &quot;,&quot;default &quot;,&quot;defer &quot;,&quot;disabled &quot;,&quot;disablePictureInPicture &quot;,&quot;disableRemotePlayback &quot;,&quot;formNoValidate &quot;,&quot;hidden &quot;,&quot;loop &quot;,&quot;noModule &quot;,&quot;noValidate &quot;,&quot;open &quot;,&quot;playsInline &quot;,&quot;readOnly &quot;,&quot;required &quot;,&quot;reversed &quot;,&quot;scoped &quot;,&quot;seamless &quot;,&quot;itemScope &quot;].forEach(function(e){W[e]=new V(e,3,!1,e.toLowerCase(),null,!1,!1)}),[&quot;checked &quot;,&quot;multiple &quot;,&quot;muted &quot;,&quot;selected &quot;].forEach(function(e){W[e]=new V(e,3,!0,e,null,!1,!1)}),[&quot;capture &quot;,&quot;download &quot;].forEach(function(e){W[e]=new V(e,4,!1,e,null,!1,!1)}),[&quot;cols &quot;,&quot;rows &quot;,&quot;size &quot;,&quot;span &quot;].forEach(function(e){W[e]=new V(e,6,!1,e,null,!1,!1)}),[&quot;rowSpan &quot;,&quot;start &quot;].forEach(function(e){W[e]=new V(e,5,!1,e.toLowerCase(),null,!1,!1)});var G=/[\-\:]([a-z])/g,Y=function(e){return e[1].toUpperCase()};[&quot;accent-height &quot;,&quot;alignment-baseline &quot;,&quot;arabic-form &quot;,&quot;baseline-shift &quot;,&quot;cap-height &quot;,&quot;clip-path &quot;,&quot;clip-rule &quot;,&quot;color-interpolation &quot;,&quot;color-interpolation-filters &quot;,&quot;color-profile &quot;,&quot;color-rendering &quot;,&quot;dominant-baseline &quot;,&quot;enable-background &quot;,&quot;fill-opacity &quot;,&quot;fill-rule &quot;,&quot;flood-color &quot;,&quot;flood-opacity &quot;,&quot;font-family &quot;,&quot;font-size &quot;,&quot;font-size-adjust &quot;,&quot;font-stretch &quot;,&quot;font-style &quot;,&quot;font-variant &quot;,&quot;font-weight &quot;,&quot;glyph-name &quot;,&quot;glyph-orientation-horizontal &quot;,&quot;glyph-orientation-vertical &quot;,&quot;horiz-adv-x &quot;,&quot;horiz-origin-x &quot;,&quot;image-rendering &quot;,&quot;letter-spacing &quot;,&quot;lighting-color &quot;,&quot;marker-end &quot;,&quot;marker-mid &quot;,&quot;marker-start &quot;,&quot;overline-position &quot;,&quot;overline-thickness &quot;,&quot;paint-order &quot;,&quot;panose-1 &quot;,&quot;pointer-events &quot;,&quot;rendering-intent &quot;,&quot;shape-rendering &quot;,&quot;stop-color &quot;,&quot;stop-opacity &quot;,&quot;strikethrough-position &quot;,&quot;strikethrough-thickness &quot;,&quot;stroke-dasharray &quot;,&quot;stroke-dashoffset &quot;,&quot;stroke-linecap &quot;,&quot;stroke-linejoin &quot;,&quot;stroke-miterlimit &quot;,&quot;stroke-opacity &quot;,&quot;stroke-width &quot;,&quot;text-anchor &quot;,&quot;text-decoration &quot;,&quot;text-rendering &quot;,&quot;underline-position &quot;,&quot;underline-thickness &quot;,&quot;unicode-bidi &quot;,&quot;unicode-range &quot;,&quot;units-per-em &quot;,&quot;v-alphabetic &quot;,&quot;v-hanging &quot;,&quot;v-ideographic &quot;,&quot;v-mathematical &quot;,&quot;vector-effect &quot;,&quot;vert-adv-y &quot;,&quot;vert-origin-x &quot;,&quot;vert-origin-y &quot;,&quot;word-spacing &quot;,&quot;writing-mode &quot;,&quot;xmlns:xlink &quot;,&quot;x-height &quot;].forEach(function(e){var t=e.replace(G,Y);W[t]=new V(t,1,!1,e,null,!1,!1)}),[&quot;xlink:actuate &quot;,&quot;xlink:arcrole &quot;,&quot;xlink:role &quot;,&quot;xlink:show &quot;,&quot;xlink:title &quot;,&quot;xlink:type &quot;].forEach(function(e){var t=e.replace(G,Y);W[t]=new V(t,1,!1,e,&quot;http://www.w3.org/1999/xlink &quot;,!1,!1)}),[&quot;xml:base &quot;,&quot;xml:lang &quot;,&quot;xml:space &quot;].forEach(function(e){var t=e.replace(G,Y);W[t]=new V(t,1,!1,e,&quot;http://www.w3.org/XML/1998/namespace &quot;,!1,!1)}),[&quot;tabIndex &quot;,&quot;crossOrigin &quot;].forEach(function(e){W[e]=new V(e,1,!1,e.toLowerCase(),null,!1,!1)}),W.xlinkHref=new V(&quot;xlinkHref &quot;,1,!1,&quot;xlink:href &quot;,&quot;http://www.w3.org/1999/xlink &quot;,!0,!1),[&quot;src &quot;,&quot;href &quot;,&quot;action &quot;,&quot;formAction &quot;].forEach(function(e){W[e]=new V(e,1,!1,e.toLowerCase(),null,!0,!0)});var $=/^[- ]*j[
	]*a[
	]*v[
	]*a[
	]*s[
	]*c[
	]*r[
	]*i[
	]*p[
	]*t[
	]*\:/i,X=!1;function K(e){!X &amp;&amp;$.test(e)&amp;&amp;(X=!0,s(&quot;A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.&quot;,JSON.stringify(e)))}function q(e,t,n,r){if(r.mustUseProperty)return e[r.propertyName];r.sanitizeURL &amp;&amp;K(&quot;&quot;+n);var a=r.attributeName,o=null;if(4===r.type){if(e.hasAttribute(a)){var i=e.getAttribute(a);return &quot;&quot;===i||(H(t,n,r,!1)?i:i===&quot;&quot;+n?n:i)}}else if(e.hasAttribute(a)){if(H(t,n,r,!1))return e.getAttribute(a);if(3===r.type)return n;o=e.getAttribute(a)}return H(t,n,r,!1)?null===o?n:o:o===&quot;&quot;+n?n:o}function J(e,t,n){if(j(t)){if(function(e){return null!==e &amp;&amp;&quot;object &quot;==typeof e &amp;&amp;e.$$typeof===me}(n))return n;if(!e.hasAttribute(t))return void 0===n?void 0:null;var r=e.getAttribute(t);return r===&quot;&quot;+n?n:r}}function Q(e,t,n,r){var a=B(t);if(!F(t,a,r))if(H(t,n,a,r)&amp;&amp;(n=null),r||null===a){if(j(t)){var o=t;null===n?e.removeAttribute(o):e.setAttribute(o,&quot;&quot;+n)}}else if(a.mustUseProperty)e[a.propertyName]=null===n?3!==a.type &amp;&amp;&quot;&quot;:n;else{var i=a.attributeName,l=a.attributeNamespace;if(null===n)e.removeAttribute(i);else{var s,c=a.type;3===c||4===c &amp;&amp;!0===n?s=&quot;&quot;:(s=&quot;&quot;+n,a.sanitizeURL &amp;&amp;K(s.toString())),l?e.setAttributeNS(l,i,s):e.setAttribute(i,s)}}}var Z=60103,ee=60106,te=60107,ne=60108,re=60114,ae=60109,oe=60110,ie=60112,le=60113,se=60120,ce=60115,ue=60116,fe=60121,de=60119,me=60128,he=60129,ge=60130,ve=60131;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var ye=Symbol.for;Z=ye(&quot;react.element &quot;),ee=ye(&quot;react.portal &quot;),te=ye(&quot;react.fragment &quot;),ne=ye(&quot;react.strict_mode &quot;),re=ye(&quot;react.profiler &quot;),ae=ye(&quot;react.provider &quot;),oe=ye(&quot;react.context &quot;),ie=ye(&quot;react.forward_ref &quot;),le=ye(&quot;react.suspense &quot;),se=ye(&quot;react.suspense_list &quot;),ce=ye(&quot;react.memo &quot;),ue=ye(&quot;react.lazy &quot;),fe=ye(&quot;react.block &quot;),ye(&quot;react.server.block &quot;),ye(&quot;react.fundamental &quot;),de=ye(&quot;react.scope &quot;),me=ye(&quot;react.opaque.id &quot;),he=ye(&quot;react.debug_trace_mode &quot;),ge=ye(&quot;react.offscreen &quot;),ve=ye(&quot;react.legacy_hidden &quot;)}var Ee=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator;function be(e){if(null===e||&quot;object &quot;!=typeof e)return null;var t=Ee &amp;&amp;e[Ee]||e[&quot;@@iterator &quot;];return &quot;function &quot;==typeof t?t:null}var Te,Ne,Re,Se,we,Oe,Ce,Ae=0;function Ie(){}function ke(){if(0===Ae){Te=console.log,Ne=console.info,Re=console.warn,Se=console.error,we=console.group,Oe=console.groupCollapsed,Ce=console.groupEnd;var e={configurable:!0,enumerable:!0,value:Ie,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}Ae++}function xe(){if(0==--Ae){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:n({},e,{value:Te}),info:n({},e,{value:Ne}),warn:n({},e,{value:Re}),error:n({},e,{value:Se}),group:n({},e,{value:we}),groupCollapsed:n({},e,{value:Oe}),groupEnd:n({},e,{value:Ce})})}Ae &lt;0 &amp;&amp;s(&quot;disabledDepth fell below zero. This is a bug in React. Please file an issue.&quot;)}Ie.__reactDisabledLog=!0;var _e,Le=o.ReactCurrentDispatcher;function Pe(e,t,n){if(void 0===_e)try{throw Error()}catch(e){var r=e.stack.trim().match(/
( *(at )?)/);_e=r &amp;&amp;r[1]||&quot;&quot;}return &quot;
 &quot;+_e+e}var Me,De=!1,Ue=&quot;function &quot;==typeof WeakMap?WeakMap:Map;function je(e,t){if(!e||De)return &quot;&quot;;var n,r=Me.get(e);if(void 0!==r)return r;De=!0;var a,o=Error.prepareStackTrace;Error.prepareStackTrace=void 0,a=Le.current,Le.current=null,ke();try{if(t){var i=function(){throw Error()};if(Object.defineProperty(i.prototype,&quot;props &quot;,{set:function(){throw Error()}}),&quot;object &quot;==typeof Reflect &amp;&amp;Reflect.construct){try{Reflect.construct(i,[])}catch(e){n=e}Reflect.construct(e,[],i)}else{try{i.call()}catch(e){n=e}e.call(i.prototype)}}else{try{throw Error()}catch(e){n=e}e()}}catch(t){if(t &amp;&amp;n &amp;&amp;&quot;string &quot;==typeof t.stack){for(var l=t.stack.split(&quot;
 &quot;),s=n.stack.split(&quot;
 &quot;),c=l.length-1,u=s.length-1;c &gt;=1 &amp;&amp;u &gt;=0 &amp;&amp;l[c]!==s[u];)u--;for(;c &gt;=1 &amp;&amp;u &gt;=0;c--,u--)if(l[c]!==s[u]){if(1!==c||1!==u)do{if(c--,--u &lt;0||l[c]!==s[u]){var f=&quot;
 &quot;+l[c].replace(&quot;at new &quot;,&quot;at &quot;);return &quot;function &quot;==typeof e &amp;&amp;Me.set(e,f),f}}while(c &gt;=1 &amp;&amp;u &gt;=0);break}}}finally{De=!1,Le.current=a,xe(),Error.prepareStackTrace=o}var d=e?e.displayName||e.name:&quot;&quot;,p=d?Pe(d):&quot;&quot;;return &quot;function &quot;==typeof e &amp;&amp;Me.set(e,p),p}function Fe(e,t,n){return je(e,!1)}function ze(e,t,n){if(null==e)return &quot;&quot;;if(&quot;function &quot;==typeof e)return je(e,!(!(r=e.prototype)||!r.isReactComponent));var r;if(&quot;string &quot;==typeof e)return Pe(e);switch(e){case le:return Pe(&quot;Suspense &quot;);case se:return Pe(&quot;SuspenseList &quot;)}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case ie:return Fe(e.render);case ce:return ze(e.type,t,n);case fe:return Fe(e._render);case ue:var a=e._payload,o=e._init;try{return ze(o(a),t,n)}catch(e){}}return &quot;&quot;}function He(e){switch(e.tag){case 5:return Pe(e.type);case 16:return Pe(&quot;Lazy &quot;);case h:return Pe(&quot;Suspense &quot;);case E:return Pe(&quot;SuspenseList &quot;);case 0:case 2:case v:return Fe(e.type);case p:return Fe(e.type.render);case T:return Fe(e.type._render);case 1:return je(e.type,!0);default:return &quot;&quot;}}function Be(e){try{var t=&quot;&quot;,n=e;do{t+=He(n),n=n.return}while(n);return t}catch(e){return &quot;
Error generating stack: &quot;+e.message+&quot;
 &quot;+e.stack}}function Ve(e){return e.displayName||&quot;Context &quot;}function We(e){if(null==e)return null;if(&quot;number &quot;==typeof e.tag &amp;&amp;s(&quot;Received an unexpected object in getComponentName(). This is likely a bug in React. Please file an issue.&quot;),&quot;function &quot;==typeof e)return e.displayName||e.name||null;if(&quot;string &quot;==typeof e)return e;switch(e){case te:return &quot;Fragment &quot;;case ee:return &quot;Portal &quot;;case re:return &quot;Profiler &quot;;case ne:return &quot;StrictMode &quot;;case le:return &quot;Suspense &quot;;case se:return &quot;SuspenseList &quot;}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case oe:return Ve(e)+&quot;.Consumer &quot;;case ae:return Ve(e._context)+&quot;.Provider &quot;;case ie:return a=(r=e.render).displayName||r.name||&quot;&quot;,e.displayName||(&quot;&quot;!==a?&quot;ForwardRef(&quot;+a+&quot;)&quot;:&quot;ForwardRef &quot;);case ce:return We(e.type);case fe:return We(e._render);case ue:var t=e._payload,n=e._init;try{return We(n(t))}catch(e){return null}}var r,a;return null}Me=new Ue;var Ge=o.ReactDebugCurrentFrame,Ye=null,$e=!1;function Xe(){if(null===Ye)return null;var e=Ye._debugOwner;return null!=e?We(e.type):null}function Ke(){return null===Ye?&quot;&quot;:Be(Ye)}function qe(){Ge.getCurrentStack=null,Ye=null,$e=!1}function Je(e){Ge.getCurrentStack=Ke,Ye=e,$e=!1}function Qe(e){$e=e}function Ze(e){return &quot;&quot;+e}function et(e){switch(typeof e){case &quot;boolean &quot;:case &quot;number &quot;:case &quot;object &quot;:case &quot;string &quot;:case &quot;undefined &quot;:return e;default:return &quot;&quot;}}var tt={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0};function nt(e,t){tt[t.type]||t.onChange||t.onInput||t.readOnly||t.disabled||null==t.value||s(&quot;You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.&quot;),t.onChange||t.readOnly||t.disabled||null==t.checked||s(&quot;You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.&quot;)}function rt(e){var t=e.type,n=e.nodeName;return n &amp;&amp;&quot;input &quot;===n.toLowerCase()&amp;&amp;(&quot;checkbox &quot;===t||&quot;radio &quot;===t)}function at(e){return e._valueTracker}function ot(e){at(e)||(e._valueTracker=function(e){var t=rt(e)?&quot;checked &quot;:&quot;value &quot;,n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=&quot;&quot;+e[t];if(!e.hasOwnProperty(t)&amp;&amp;void 0!==n &amp;&amp;&quot;function &quot;==typeof n.get &amp;&amp;&quot;function &quot;==typeof n.set){var a=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return a.call(this)},set:function(e){r=&quot;&quot;+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=&quot;&quot;+e},stopTracking:function(){!function(e){e._valueTracker=null}(e),delete e[t]}}}}(e))}function it(e){if(!e)return!1;var t=at(e);if(!t)return!0;var n=t.getValue(),r=function(e){var t=&quot;&quot;;return e?t=rt(e)?e.checked?&quot;true &quot;:&quot;false &quot;:e.value:t}(e);return r!==n &amp;&amp;(t.setValue(r),!0)}function lt(e){if(void 0===(e=e||(&quot;undefined &quot;!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}var st=!1,ct=!1,ut=!1,ft=!1;function dt(e){return &quot;checkbox &quot;===e.type||&quot;radio &quot;===e.type?null!=e.checked:null!=e.value}function pt(e,t){var r=t.checked;return n({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=r?r:e._wrapperState.initialChecked})}function mt(e,t){nt(0,t),void 0===t.checked||void 0===t.defaultChecked||ct||(s(&quot;%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;,Xe()||&quot;A component &quot;,t.type),ct=!0),void 0===t.value||void 0===t.defaultValue||st||(s(&quot;%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;,Xe()||&quot;A component &quot;,t.type),st=!0),e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:et(null!=t.value?t.value:null==t.defaultValue?&quot;&quot;:t.defaultValue),controlled:dt(t)}}function ht(e,t){var n=t.checked;null!=n &amp;&amp;Q(e,&quot;checked &quot;,n,!1)}function gt(e,t){var n=e,r=dt(t);n._wrapperState.controlled||!r||ft||(s(&quot;A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components &quot;),ft=!0),!n._wrapperState.controlled||r||ut||(s(&quot;A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components &quot;),ut=!0),ht(e,t);var a=et(t.value),o=t.type;if(null!=a)&quot;number &quot;===o?(0===a &amp;&amp;&quot;&quot;===n.value||n.value!=a)&amp;&amp;(n.value=Ze(a)):n.value!==Ze(a)&amp;&amp;(n.value=Ze(a));else if(&quot;submit &quot;===o||&quot;reset &quot;===o)return void n.removeAttribute(&quot;value &quot;);t.hasOwnProperty(&quot;value &quot;)?yt(n,t.type,a):t.hasOwnProperty(&quot;defaultValue &quot;)&amp;&amp;yt(n,t.type,et(t.defaultValue)),null==t.checked &amp;&amp;null!=t.defaultChecked &amp;&amp;(n.defaultChecked=!!t.defaultChecked)}function vt(e,t,n){var r=e;if(t.hasOwnProperty(&quot;value &quot;)||t.hasOwnProperty(&quot;defaultValue &quot;)){var a=t.type;if((&quot;submit &quot;===a||&quot;reset &quot;===a)&amp;&amp;null==t.value)return;var o=Ze(r._wrapperState.initialValue);n||o!==r.value &amp;&amp;(r.value=o),r.defaultValue=o}var i=r.name;&quot;&quot;!==i &amp;&amp;(r.name=&quot;&quot;),r.defaultChecked=!r.defaultChecked,r.defaultChecked=!!r._wrapperState.initialChecked,&quot;&quot;!==i &amp;&amp;(r.name=i)}function yt(e,t,n){&quot;number &quot;===t &amp;&amp;lt(e.ownerDocument)===e||(null==n?e.defaultValue=Ze(e._wrapperState.initialValue):e.defaultValue!==Ze(n)&amp;&amp;(e.defaultValue=Ze(n)))}var Et,bt=!1,Tt=!1;function Nt(t,n){&quot;object &quot;==typeof n.children &amp;&amp;null!==n.children &amp;&amp;e.Children.forEach(n.children,function(e){null!=e &amp;&amp;&quot;string &quot;!=typeof e &amp;&amp;&quot;number &quot;!=typeof e &amp;&amp;&quot;string &quot;==typeof e.type &amp;&amp;(Tt||(Tt=!0,s(&quot;Only strings and numbers are supported as &lt;option &gt;children.&quot;)))}),null==n.selected||bt||(s(&quot;Use the `defaultValue` or `value` props on &lt;select &gt;instead of setting `selected` on &lt;option &gt;.&quot;),bt=!0)}function Rt(t,r){var a=n({children:void 0},r),o=function(t){var n=&quot;&quot;;return e.Children.forEach(t,function(e){null!=e &amp;&amp;(n+=e)}),n}(r.children);return o &amp;&amp;(a.children=o),a}function St(){var e=Xe();return e?&quot;

Check the render method of `&quot;+e+&quot;`.&quot;:&quot;&quot;}Et=!1;var wt=[&quot;value &quot;,&quot;defaultValue &quot;];function Ot(e,t,n,r){var a=e.options;if(t){for(var o=n,i={},l=0;l &lt;o.length;l++)i[&quot;$ &quot;+o[l]]=!0;for(var s=0;s &lt;a.length;s++){var c=i.hasOwnProperty(&quot;$ &quot;+a[s].value);a[s].selected!==c &amp;&amp;(a[s].selected=c),c &amp;&amp;r &amp;&amp;(a[s].defaultSelected=!0)}}else{for(var u=Ze(et(n)),f=null,d=0;d &lt;a.length;d++){if(a[d].value===u)return a[d].selected=!0,void(r &amp;&amp;(a[d].defaultSelected=!0));null!==f||a[d].disabled||(f=a[d])}null!==f &amp;&amp;(f.selected=!0)}}function Ct(e,t){return n({},t,{value:void 0})}function At(e,t){var n=e;!function(e){nt(0,e);for(var t=0;t &lt;wt.length;t++){var n=wt[t];if(null!=e[n]){var r=Array.isArray(e[n]);e.multiple &amp;&amp;!r?s(&quot;The `%s` prop supplied to &lt;select &gt;must be an array if `multiple` is true.%s &quot;,n,St()):!e.multiple &amp;&amp;r &amp;&amp;s(&quot;The `%s` prop supplied to &lt;select &gt;must be a scalar value if `multiple` is false.%s &quot;,n,St())}}}(t),n._wrapperState={wasMultiple:!!t.multiple},void 0===t.value||void 0===t.defaultValue||Et||(s(&quot;Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;),Et=!0)}var It=!1;function kt(e,t){var r=e;if(null!=t.dangerouslySetInnerHTML)throw Error(&quot;`dangerouslySetInnerHTML` does not make sense on &lt;textarea &gt;.&quot;);return n({},t,{value:void 0,defaultValue:void 0,children:Ze(r._wrapperState.initialValue)})}function xt(e,t){var n=e;nt(0,t),void 0===t.value||void 0===t.defaultValue||It||(s(&quot;%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;,Xe()||&quot;A component &quot;),It=!0);var r=t.value;if(null==r){var a=t.children,o=t.defaultValue;if(null!=a){if(s(&quot;Use the `defaultValue` or `value` props instead of setting children on &lt;textarea &gt;.&quot;),null!=o)throw Error(&quot;If you supply `defaultValue` on a &lt;textarea &gt;, do not pass children.&quot;);if(Array.isArray(a)){if(!(a.length &lt;=1))throw Error(&quot;&lt;textarea &gt;can only have at most one child.&quot;);a=a[0]}o=a}null==o &amp;&amp;(o=&quot;&quot;),r=o}n._wrapperState={initialValue:et(r)}}function _t(e,t){var n=e,r=et(t.value),a=et(t.defaultValue);if(null!=r){var o=Ze(r);o!==n.value &amp;&amp;(n.value=o),null==t.defaultValue &amp;&amp;n.defaultValue!==o &amp;&amp;(n.defaultValue=o)}null!=a &amp;&amp;(n.defaultValue=Ze(a))}function Lt(e,t){var n=e.textContent;n===e._wrapperState.initialValue &amp;&amp;&quot;&quot;!==n &amp;&amp;null!==n &amp;&amp;(e.value=n)}var Pt=&quot;http://www.w3.org/1999/xhtml &quot;,Mt=&quot;http://www.w3.org/2000/svg &quot;;function Dt(e){switch(e){case &quot;svg &quot;:return Mt;case &quot;math &quot;:return &quot;http://www.w3.org/1998/Math/MathML &quot;;default:return Pt}}function Ut(e,t){return null==e||e===Pt?Dt(t):e===Mt &amp;&amp;&quot;foreignObject &quot;===t?Pt:e}var jt,Ft,zt=(Ft=function(e,t){if(&quot;http://www.w3.org/2000/svg &quot;!==e.namespaceURI||&quot;innerHTML &quot;in e)e.innerHTML=t;else{(jt=jt||document.createElement(&quot;div &quot;)).innerHTML=&quot;&lt;svg &gt;&quot;+t.valueOf().toString()+&quot;&lt;/svg &gt;&quot;;for(var n=jt.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;n.firstChild;)e.appendChild(n.firstChild)}},&quot;undefined &quot;!=typeof MSApp &amp;&amp;MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction(function(){return Ft(e,t)})}:Ft),Ht=function(e,t){if(t){var n=e.firstChild;if(n &amp;&amp;n===e.lastChild &amp;&amp;3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t},Bt={animation:[&quot;animationDelay &quot;,&quot;animationDirection &quot;,&quot;animationDuration &quot;,&quot;animationFillMode &quot;,&quot;animationIterationCount &quot;,&quot;animationName &quot;,&quot;animationPlayState &quot;,&quot;animationTimingFunction &quot;],background:[&quot;backgroundAttachment &quot;,&quot;backgroundClip &quot;,&quot;backgroundColor &quot;,&quot;backgroundImage &quot;,&quot;backgroundOrigin &quot;,&quot;backgroundPositionX &quot;,&quot;backgroundPositionY &quot;,&quot;backgroundRepeat &quot;,&quot;backgroundSize &quot;],backgroundPosition:[&quot;backgroundPositionX &quot;,&quot;backgroundPositionY &quot;],border:[&quot;borderBottomColor &quot;,&quot;borderBottomStyle &quot;,&quot;borderBottomWidth &quot;,&quot;borderImageOutset &quot;,&quot;borderImageRepeat &quot;,&quot;borderImageSlice &quot;,&quot;borderImageSource &quot;,&quot;borderImageWidth &quot;,&quot;borderLeftColor &quot;,&quot;borderLeftStyle &quot;,&quot;borderLeftWidth &quot;,&quot;borderRightColor &quot;,&quot;borderRightStyle &quot;,&quot;borderRightWidth &quot;,&quot;borderTopColor &quot;,&quot;borderTopStyle &quot;,&quot;borderTopWidth &quot;],borderBlockEnd:[&quot;borderBlockEndColor &quot;,&quot;borderBlockEndStyle &quot;,&quot;borderBlockEndWidth &quot;],borderBlockStart:[&quot;borderBlockStartColor &quot;,&quot;borderBlockStartStyle &quot;,&quot;borderBlockStartWidth &quot;],borderBottom:[&quot;borderBottomColor &quot;,&quot;borderBottomStyle &quot;,&quot;borderBottomWidth &quot;],borderColor:[&quot;borderBottomColor &quot;,&quot;borderLeftColor &quot;,&quot;borderRightColor &quot;,&quot;borderTopColor &quot;],borderImage:[&quot;borderImageOutset &quot;,&quot;borderImageRepeat &quot;,&quot;borderImageSlice &quot;,&quot;borderImageSource &quot;,&quot;borderImageWidth &quot;],borderInlineEnd:[&quot;borderInlineEndColor &quot;,&quot;borderInlineEndStyle &quot;,&quot;borderInlineEndWidth &quot;],borderInlineStart:[&quot;borderInlineStartColor &quot;,&quot;borderInlineStartStyle &quot;,&quot;borderInlineStartWidth &quot;],borderLeft:[&quot;borderLeftColor &quot;,&quot;borderLeftStyle &quot;,&quot;borderLeftWidth &quot;],borderRadius:[&quot;borderBottomLeftRadius &quot;,&quot;borderBottomRightRadius &quot;,&quot;borderTopLeftRadius &quot;,&quot;borderTopRightRadius &quot;],borderRight:[&quot;borderRightColor &quot;,&quot;borderRightStyle &quot;,&quot;borderRightWidth &quot;],borderStyle:[&quot;borderBottomStyle &quot;,&quot;borderLeftStyle &quot;,&quot;borderRightStyle &quot;,&quot;borderTopStyle &quot;],borderTop:[&quot;borderTopColor &quot;,&quot;borderTopStyle &quot;,&quot;borderTopWidth &quot;],borderWidth:[&quot;borderBottomWidth &quot;,&quot;borderLeftWidth &quot;,&quot;borderRightWidth &quot;,&quot;borderTopWidth &quot;],columnRule:[&quot;columnRuleColor &quot;,&quot;columnRuleStyle &quot;,&quot;columnRuleWidth &quot;],columns:[&quot;columnCount &quot;,&quot;columnWidth &quot;],flex:[&quot;flexBasis &quot;,&quot;flexGrow &quot;,&quot;flexShrink &quot;],flexFlow:[&quot;flexDirection &quot;,&quot;flexWrap &quot;],font:[&quot;fontFamily &quot;,&quot;fontFeatureSettings &quot;,&quot;fontKerning &quot;,&quot;fontLanguageOverride &quot;,&quot;fontSize &quot;,&quot;fontSizeAdjust &quot;,&quot;fontStretch &quot;,&quot;fontStyle &quot;,&quot;fontVariant &quot;,&quot;fontVariantAlternates &quot;,&quot;fontVariantCaps &quot;,&quot;fontVariantEastAsian &quot;,&quot;fontVariantLigatures &quot;,&quot;fontVariantNumeric &quot;,&quot;fontVariantPosition &quot;,&quot;fontWeight &quot;,&quot;lineHeight &quot;],fontVariant:[&quot;fontVariantAlternates &quot;,&quot;fontVariantCaps &quot;,&quot;fontVariantEastAsian &quot;,&quot;fontVariantLigatures &quot;,&quot;fontVariantNumeric &quot;,&quot;fontVariantPosition &quot;],gap:[&quot;columnGap &quot;,&quot;rowGap &quot;],grid:[&quot;gridAutoColumns &quot;,&quot;gridAutoFlow &quot;,&quot;gridAutoRows &quot;,&quot;gridTemplateAreas &quot;,&quot;gridTemplateColumns &quot;,&quot;gridTemplateRows &quot;],gridArea:[&quot;gridColumnEnd &quot;,&quot;gridColumnStart &quot;,&quot;gridRowEnd &quot;,&quot;gridRowStart &quot;],gridColumn:[&quot;gridColumnEnd &quot;,&quot;gridColumnStart &quot;],gridColumnGap:[&quot;columnGap &quot;],gridGap:[&quot;columnGap &quot;,&quot;rowGap &quot;],gridRow:[&quot;gridRowEnd &quot;,&quot;gridRowStart &quot;],gridRowGap:[&quot;rowGap &quot;],gridTemplate:[&quot;gridTemplateAreas &quot;,&quot;gridTemplateColumns &quot;,&quot;gridTemplateRows &quot;],listStyle:[&quot;listStyleImage &quot;,&quot;listStylePosition &quot;,&quot;listStyleType &quot;],margin:[&quot;marginBottom &quot;,&quot;marginLeft &quot;,&quot;marginRight &quot;,&quot;marginTop &quot;],marker:[&quot;markerEnd &quot;,&quot;markerMid &quot;,&quot;markerStart &quot;],mask:[&quot;maskClip &quot;,&quot;maskComposite &quot;,&quot;maskImage &quot;,&quot;maskMode &quot;,&quot;maskOrigin &quot;,&quot;maskPositionX &quot;,&quot;maskPositionY &quot;,&quot;maskRepeat &quot;,&quot;maskSize &quot;],maskPosition:[&quot;maskPositionX &quot;,&quot;maskPositionY &quot;],outline:[&quot;outlineColor &quot;,&quot;outlineStyle &quot;,&quot;outlineWidth &quot;],overflow:[&quot;overflowX &quot;,&quot;overflowY &quot;],padding:[&quot;paddingBottom &quot;,&quot;paddingLeft &quot;,&quot;paddingRight &quot;,&quot;paddingTop &quot;],placeContent:[&quot;alignContent &quot;,&quot;justifyContent &quot;],placeItems:[&quot;alignItems &quot;,&quot;justifyItems &quot;],placeSelf:[&quot;alignSelf &quot;,&quot;justifySelf &quot;],textDecoration:[&quot;textDecorationColor &quot;,&quot;textDecorationLine &quot;,&quot;textDecorationStyle &quot;],textEmphasis:[&quot;textEmphasisColor &quot;,&quot;textEmphasisStyle &quot;],transition:[&quot;transitionDelay &quot;,&quot;transitionDuration &quot;,&quot;transitionProperty &quot;,&quot;transitionTimingFunction &quot;],wordWrap:[&quot;overflowWrap &quot;]},Vt={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Wt=[&quot;Webkit &quot;,&quot;ms &quot;,&quot;Moz &quot;,&quot;O &quot;];function Gt(e,t,n){return null==t||&quot;boolean &quot;==typeof t||&quot;&quot;===t?&quot;&quot;:n||&quot;number &quot;!=typeof t||0===t||Vt.hasOwnProperty(e)&amp;&amp;Vt[e]?(&quot;&quot;+t).trim():t+&quot;px &quot;}Object.keys(Vt).forEach(function(e){Wt.forEach(function(t){Vt[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(t,e)]=Vt[e]})});var Yt=/([A-Z])/g,$t=/^ms-/,Xt=/^(?:webkit|moz|o)[A-Z]/,Kt=/^-ms-/,qt=/-(.)/g,Jt=/;\s*$/,Qt={},Zt={},en=!1,tn=!1;function nn(e){var t=&quot;&quot;,n=&quot;&quot;;for(var r in e)if(e.hasOwnProperty(r)){var a=e[r];if(null!=a){var o=0===r.indexOf(&quot;--&quot;);t+=n+(o?r:r.replace(Yt,&quot;-$1 &quot;).toLowerCase().replace($t,&quot;-ms-&quot;))+&quot;:&quot;,t+=Gt(r,a,o),n=&quot;;&quot;}}return t||null}function rn(e,t){var n,r,a=e.style;for(var o in t)if(t.hasOwnProperty(o)){var i=0===o.indexOf(&quot;--&quot;);i||(r=t[o],(n=o).indexOf(&quot;-&quot;)&gt;-1?function(e){Qt.hasOwnProperty(e)&amp;&amp;Qt[e]||(Qt[e]=!0,s(&quot;Unsupported style property %s. Did you mean %s?&quot;,e,e.replace(Kt,&quot;ms-&quot;).replace(qt,function(e,t){return t.toUpperCase()})))}(n):Xt.test(n)?function(e){Qt.hasOwnProperty(e)&amp;&amp;Qt[e]||(Qt[e]=!0,s(&quot;Unsupported vendor-prefixed style property %s. Did you mean %s?&quot;,e,e.charAt(0).toUpperCase()+e.slice(1)))}(n):Jt.test(r)&amp;&amp;function(e,t){Zt.hasOwnProperty(t)&amp;&amp;Zt[t]||(Zt[t]=!0,s(&#039;Style property values shouldn\&#039;t contain a semicolon. Try &quot;%s: %s &quot;instead.&#039;,e,t.replace(Jt,&quot;&quot;)))}(n,r),&quot;number &quot;==typeof r &amp;&amp;(isNaN(r)?function(e,t){en||(en=!0,s(&quot;`NaN` is an invalid value for the `%s` css style property.&quot;,e))}(n):isFinite(r)||function(e,t){tn||(tn=!0,s(&quot;`Infinity` is an invalid value for the `%s` css style property.&quot;,e))}(n)));var l=Gt(o,t[o],i);&quot;float &quot;===o &amp;&amp;(o=&quot;cssFloat &quot;),i?a.setProperty(o,l):a[o]=l}}function an(e){var t={};for(var n in e)for(var r=Bt[n]||[n],a=0;a &lt;r.length;a++)t[r[a]]=n;return t}var on=n({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ln(e,t){if(t){if(on[e]&amp;&amp;(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(e+&quot;is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.&quot;);if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(&quot;Can only set one of `children` or `props.dangerouslySetInnerHTML`.&quot;);if(&quot;object &quot;!=typeof t.dangerouslySetInnerHTML||!(&quot;__html &quot;in t.dangerouslySetInnerHTML))throw Error(&quot;`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://reactjs.org/link/dangerously-set-inner-html for more information.&quot;)}if(!t.suppressContentEditableWarning &amp;&amp;t.contentEditable &amp;&amp;null!=t.children &amp;&amp;s(&quot;A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.&quot;),null!=t.style &amp;&amp;&quot;object &quot;!=typeof t.style)throw Error(&quot;The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + &#039;em &#039;}} when using JSX.&quot;)}}function sn(e,t){if(-1===e.indexOf(&quot;-&quot;))return &quot;string &quot;==typeof t.is;switch(e){case &quot;annotation-xml &quot;:case &quot;color-profile &quot;:case &quot;font-face &quot;:case &quot;font-face-src &quot;:case &quot;font-face-uri &quot;:case &quot;font-face-format &quot;:case &quot;font-face-name &quot;:case &quot;missing-glyph &quot;:return!1;default:return!0}}var cn={accept:&quot;accept &quot;,acceptcharset:&quot;acceptCharset &quot;,&quot;accept-charset &quot;:&quot;acceptCharset &quot;,accesskey:&quot;accessKey &quot;,action:&quot;action &quot;,allowfullscreen:&quot;allowFullScreen &quot;,alt:&quot;alt &quot;,as:&quot;as &quot;,async:&quot;async &quot;,autocapitalize:&quot;autoCapitalize &quot;,autocomplete:&quot;autoComplete &quot;,autocorrect:&quot;autoCorrect &quot;,autofocus:&quot;autoFocus &quot;,autoplay:&quot;autoPlay &quot;,autosave:&quot;autoSave &quot;,capture:&quot;capture &quot;,cellpadding:&quot;cellPadding &quot;,cellspacing:&quot;cellSpacing &quot;,challenge:&quot;challenge &quot;,charset:&quot;charSet &quot;,checked:&quot;checked &quot;,children:&quot;children &quot;,cite:&quot;cite &quot;,class:&quot;className &quot;,classid:&quot;classID &quot;,classname:&quot;className &quot;,cols:&quot;cols &quot;,colspan:&quot;colSpan &quot;,content:&quot;content &quot;,contenteditable:&quot;contentEditable &quot;,contextmenu:&quot;contextMenu &quot;,controls:&quot;controls &quot;,controlslist:&quot;controlsList &quot;,coords:&quot;coords &quot;,crossorigin:&quot;crossOrigin &quot;,dangerouslysetinnerhtml:&quot;dangerouslySetInnerHTML &quot;,data:&quot;data &quot;,datetime:&quot;dateTime &quot;,default:&quot;default &quot;,defaultchecked:&quot;defaultChecked &quot;,defaultvalue:&quot;defaultValue &quot;,defer:&quot;defer &quot;,dir:&quot;dir &quot;,disabled:&quot;disabled &quot;,disablepictureinpicture:&quot;disablePictureInPicture &quot;,disableremoteplayback:&quot;disableRemotePlayback &quot;,download:&quot;download &quot;,draggable:&quot;draggable &quot;,enctype:&quot;encType &quot;,enterkeyhint:&quot;enterKeyHint &quot;,for:&quot;htmlFor &quot;,form:&quot;form &quot;,formmethod:&quot;formMethod &quot;,formaction:&quot;formAction &quot;,formenctype:&quot;formEncType &quot;,formnovalidate:&quot;formNoValidate &quot;,formtarget:&quot;formTarget &quot;,frameborder:&quot;frameBorder &quot;,headers:&quot;headers &quot;,height:&quot;height &quot;,hidden:&quot;hidden &quot;,high:&quot;high &quot;,href:&quot;href &quot;,hreflang:&quot;hrefLang &quot;,htmlfor:&quot;htmlFor &quot;,httpequiv:&quot;httpEquiv &quot;,&quot;http-equiv &quot;:&quot;httpEquiv &quot;,icon:&quot;icon &quot;,id:&quot;id &quot;,innerhtml:&quot;innerHTML &quot;,inputmode:&quot;inputMode &quot;,integrity:&quot;integrity &quot;,is:&quot;is &quot;,itemid:&quot;itemID &quot;,itemprop:&quot;itemProp &quot;,itemref:&quot;itemRef &quot;,itemscope:&quot;itemScope &quot;,itemtype:&quot;itemType &quot;,keyparams:&quot;keyParams &quot;,keytype:&quot;keyType &quot;,kind:&quot;kind &quot;,label:&quot;label &quot;,lang:&quot;lang &quot;,list:&quot;list &quot;,loop:&quot;loop &quot;,low:&quot;low &quot;,manifest:&quot;manifest &quot;,marginwidth:&quot;marginWidth &quot;,marginheight:&quot;marginHeight &quot;,max:&quot;max &quot;,maxlength:&quot;maxLength &quot;,media:&quot;media &quot;,mediagroup:&quot;mediaGroup &quot;,method:&quot;method &quot;,min:&quot;min &quot;,minlength:&quot;minLength &quot;,multiple:&quot;multiple &quot;,muted:&quot;muted &quot;,name:&quot;name &quot;,nomodule:&quot;noModule &quot;,nonce:&quot;nonce &quot;,novalidate:&quot;noValidate &quot;,open:&quot;open &quot;,optimum:&quot;optimum &quot;,pattern:&quot;pattern &quot;,placeholder:&quot;placeholder &quot;,playsinline:&quot;playsInline &quot;,poster:&quot;poster &quot;,preload:&quot;preload &quot;,profile:&quot;profile &quot;,radiogroup:&quot;radioGroup &quot;,readonly:&quot;readOnly &quot;,referrerpolicy:&quot;referrerPolicy &quot;,rel:&quot;rel &quot;,required:&quot;required &quot;,reversed:&quot;reversed &quot;,role:&quot;role &quot;,rows:&quot;rows &quot;,rowspan:&quot;rowSpan &quot;,sandbox:&quot;sandbox &quot;,scope:&quot;scope &quot;,scoped:&quot;scoped &quot;,scrolling:&quot;scrolling &quot;,seamless:&quot;seamless &quot;,selected:&quot;selected &quot;,shape:&quot;shape &quot;,size:&quot;size &quot;,sizes:&quot;sizes &quot;,span:&quot;span &quot;,spellcheck:&quot;spellCheck &quot;,src:&quot;src &quot;,srcdoc:&quot;srcDoc &quot;,srclang:&quot;srcLang &quot;,srcset:&quot;srcSet &quot;,start:&quot;start &quot;,step:&quot;step &quot;,style:&quot;style &quot;,summary:&quot;summary &quot;,tabindex:&quot;tabIndex &quot;,target:&quot;target &quot;,title:&quot;title &quot;,type:&quot;type &quot;,usemap:&quot;useMap &quot;,value:&quot;value &quot;,width:&quot;width &quot;,wmode:&quot;wmode &quot;,wrap:&quot;wrap &quot;,about:&quot;about &quot;,accentheight:&quot;accentHeight &quot;,&quot;accent-height &quot;:&quot;accentHeight &quot;,accumulate:&quot;accumulate &quot;,additive:&quot;additive &quot;,alignmentbaseline:&quot;alignmentBaseline &quot;,&quot;alignment-baseline &quot;:&quot;alignmentBaseline &quot;,allowreorder:&quot;allowReorder &quot;,alphabetic:&quot;alphabetic &quot;,amplitude:&quot;amplitude &quot;,arabicform:&quot;arabicForm &quot;,&quot;arabic-form &quot;:&quot;arabicForm &quot;,ascent:&quot;ascent &quot;,attributename:&quot;attributeName &quot;,attributetype:&quot;attributeType &quot;,autoreverse:&quot;autoReverse &quot;,azimuth:&quot;azimuth &quot;,basefrequency:&quot;baseFrequency &quot;,baselineshift:&quot;baselineShift &quot;,&quot;baseline-shift &quot;:&quot;baselineShift &quot;,baseprofile:&quot;baseProfile &quot;,bbox:&quot;bbox &quot;,begin:&quot;begin &quot;,bias:&quot;bias &quot;,by:&quot;by &quot;,calcmode:&quot;calcMode &quot;,capheight:&quot;capHeight &quot;,&quot;cap-height &quot;:&quot;capHeight &quot;,clip:&quot;clip &quot;,clippath:&quot;clipPath &quot;,&quot;clip-path &quot;:&quot;clipPath &quot;,clippathunits:&quot;clipPathUnits &quot;,cliprule:&quot;clipRule &quot;,&quot;clip-rule &quot;:&quot;clipRule &quot;,color:&quot;color &quot;,colorinterpolation:&quot;colorInterpolation &quot;,&quot;color-interpolation &quot;:&quot;colorInterpolation &quot;,colorinterpolationfilters:&quot;colorInterpolationFilters &quot;,&quot;color-interpolation-filters &quot;:&quot;colorInterpolationFilters &quot;,colorprofile:&quot;colorProfile &quot;,&quot;color-profile &quot;:&quot;colorProfile &quot;,colorrendering:&quot;colorRendering &quot;,&quot;color-rendering &quot;:&quot;colorRendering &quot;,contentscripttype:&quot;contentScriptType &quot;,contentstyletype:&quot;contentStyleType &quot;,cursor:&quot;cursor &quot;,cx:&quot;cx &quot;,cy:&quot;cy &quot;,d:&quot;d &quot;,datatype:&quot;datatype &quot;,decelerate:&quot;decelerate &quot;,descent:&quot;descent &quot;,diffuseconstant:&quot;diffuseConstant &quot;,direction:&quot;direction &quot;,display:&quot;display &quot;,divisor:&quot;divisor &quot;,dominantbaseline:&quot;dominantBaseline &quot;,&quot;dominant-baseline &quot;:&quot;dominantBaseline &quot;,dur:&quot;dur &quot;,dx:&quot;dx &quot;,dy:&quot;dy &quot;,edgemode:&quot;edgeMode &quot;,elevation:&quot;elevation &quot;,enablebackground:&quot;enableBackground &quot;,&quot;enable-background &quot;:&quot;enableBackground &quot;,end:&quot;end &quot;,exponent:&quot;exponent &quot;,externalresourcesrequired:&quot;externalResourcesRequired &quot;,fill:&quot;fill &quot;,fillopacity:&quot;fillOpacity &quot;,&quot;fill-opacity &quot;:&quot;fillOpacity &quot;,fillrule:&quot;fillRule &quot;,&quot;fill-rule &quot;:&quot;fillRule &quot;,filter:&quot;filter &quot;,filterres:&quot;filterRes &quot;,filterunits:&quot;filterUnits &quot;,floodopacity:&quot;floodOpacity &quot;,&quot;flood-opacity &quot;:&quot;floodOpacity &quot;,floodcolor:&quot;floodColor &quot;,&quot;flood-color &quot;:&quot;floodColor &quot;,focusable:&quot;focusable &quot;,fontfamily:&quot;fontFamily &quot;,&quot;font-family &quot;:&quot;fontFamily &quot;,fontsize:&quot;fontSize &quot;,&quot;font-size &quot;:&quot;fontSize &quot;,fontsizeadjust:&quot;fontSizeAdjust &quot;,&quot;font-size-adjust &quot;:&quot;fontSizeAdjust &quot;,fontstretch:&quot;fontStretch &quot;,&quot;font-stretch &quot;:&quot;fontStretch &quot;,fontstyle:&quot;fontStyle &quot;,&quot;font-style &quot;:&quot;fontStyle &quot;,fontvariant:&quot;fontVariant &quot;,&quot;font-variant &quot;:&quot;fontVariant &quot;,fontweight:&quot;fontWeight &quot;,&quot;font-weight &quot;:&quot;fontWeight &quot;,format:&quot;format &quot;,from:&quot;from &quot;,fx:&quot;fx &quot;,fy:&quot;fy &quot;,g1:&quot;g1 &quot;,g2:&quot;g2 &quot;,glyphname:&quot;glyphName &quot;,&quot;glyph-name &quot;:&quot;glyphName &quot;,glyphorientationhorizontal:&quot;glyphOrientationHorizontal &quot;,&quot;glyph-orientation-horizontal &quot;:&quot;glyphOrientationHorizontal &quot;,glyphorientationvertical:&quot;glyphOrientationVertical &quot;,&quot;glyph-orientation-vertical &quot;:&quot;glyphOrientationVertical &quot;,glyphref:&quot;glyphRef &quot;,gradienttransform:&quot;gradientTransform &quot;,gradientunits:&quot;gradientUnits &quot;,hanging:&quot;hanging &quot;,horizadvx:&quot;horizAdvX &quot;,&quot;horiz-adv-x &quot;:&quot;horizAdvX &quot;,horizoriginx:&quot;horizOriginX &quot;,&quot;horiz-origin-x &quot;:&quot;horizOriginX &quot;,ideographic:&quot;ideographic &quot;,imagerendering:&quot;imageRendering &quot;,&quot;image-rendering &quot;:&quot;imageRendering &quot;,in2:&quot;in2 &quot;,in:&quot;in &quot;,inlist:&quot;inlist &quot;,intercept:&quot;intercept &quot;,k1:&quot;k1 &quot;,k2:&quot;k2 &quot;,k3:&quot;k3 &quot;,k4:&quot;k4 &quot;,k:&quot;k &quot;,kernelmatrix:&quot;kernelMatrix &quot;,kernelunitlength:&quot;kernelUnitLength &quot;,kerning:&quot;kerning &quot;,keypoints:&quot;keyPoints &quot;,keysplines:&quot;keySplines &quot;,keytimes:&quot;keyTimes &quot;,lengthadjust:&quot;lengthAdjust &quot;,letterspacing:&quot;letterSpacing &quot;,&quot;letter-spacing &quot;:&quot;letterSpacing &quot;,lightingcolor:&quot;lightingColor &quot;,&quot;lighting-color &quot;:&quot;lightingColor &quot;,limitingconeangle:&quot;limitingConeAngle &quot;,local:&quot;local &quot;,markerend:&quot;markerEnd &quot;,&quot;marker-end &quot;:&quot;markerEnd &quot;,markerheight:&quot;markerHeight &quot;,markermid:&quot;markerMid &quot;,&quot;marker-mid &quot;:&quot;markerMid &quot;,markerstart:&quot;markerStart &quot;,&quot;marker-start &quot;:&quot;markerStart &quot;,markerunits:&quot;markerUnits &quot;,markerwidth:&quot;markerWidth &quot;,mask:&quot;mask &quot;,maskcontentunits:&quot;maskContentUnits &quot;,maskunits:&quot;maskUnits &quot;,mathematical:&quot;mathematical &quot;,mode:&quot;mode &quot;,numoctaves:&quot;numOctaves &quot;,offset:&quot;offset &quot;,opacity:&quot;opacity &quot;,operator:&quot;operator &quot;,order:&quot;order &quot;,orient:&quot;orient &quot;,orientation:&quot;orientation &quot;,origin:&quot;origin &quot;,overflow:&quot;overflow &quot;,overlineposition:&quot;overlinePosition &quot;,&quot;overline-position &quot;:&quot;overlinePosition &quot;,overlinethickness:&quot;overlineThickness &quot;,&quot;overline-thickness &quot;:&quot;overlineThickness &quot;,paintorder:&quot;paintOrder &quot;,&quot;paint-order &quot;:&quot;paintOrder &quot;,panose1:&quot;panose1 &quot;,&quot;panose-1 &quot;:&quot;panose1 &quot;,pathlength:&quot;pathLength &quot;,patterncontentunits:&quot;patternContentUnits &quot;,patterntransform:&quot;patternTransform &quot;,patternunits:&quot;patternUnits &quot;,pointerevents:&quot;pointerEvents &quot;,&quot;pointer-events &quot;:&quot;pointerEvents &quot;,points:&quot;points &quot;,pointsatx:&quot;pointsAtX &quot;,pointsaty:&quot;pointsAtY &quot;,pointsatz:&quot;pointsAtZ &quot;,prefix:&quot;prefix &quot;,preservealpha:&quot;preserveAlpha &quot;,preserveaspectratio:&quot;preserveAspectRatio &quot;,primitiveunits:&quot;primitiveUnits &quot;,property:&quot;property &quot;,r:&quot;r &quot;,radius:&quot;radius &quot;,refx:&quot;refX &quot;,refy:&quot;refY &quot;,renderingintent:&quot;renderingIntent &quot;,&quot;rendering-intent &quot;:&quot;renderingIntent &quot;,repeatcount:&quot;repeatCount &quot;,repeatdur:&quot;repeatDur &quot;,requiredextensions:&quot;requiredExtensions &quot;,requiredfeatures:&quot;requiredFeatures &quot;,resource:&quot;resource &quot;,restart:&quot;restart &quot;,result:&quot;result &quot;,results:&quot;results &quot;,rotate:&quot;rotate &quot;,rx:&quot;rx &quot;,ry:&quot;ry &quot;,scale:&quot;scale &quot;,security:&quot;security &quot;,seed:&quot;seed &quot;,shaperendering:&quot;shapeRendering &quot;,&quot;shape-rendering &quot;:&quot;shapeRendering &quot;,slope:&quot;slope &quot;,spacing:&quot;spacing &quot;,specularconstant:&quot;specularConstant &quot;,specularexponent:&quot;specularExponent &quot;,speed:&quot;speed &quot;,spreadmethod:&quot;spreadMethod &quot;,startoffset:&quot;startOffset &quot;,stddeviation:&quot;stdDeviation &quot;,stemh:&quot;stemh &quot;,stemv:&quot;stemv &quot;,stitchtiles:&quot;stitchTiles &quot;,stopcolor:&quot;stopColor &quot;,&quot;stop-color &quot;:&quot;stopColor &quot;,stopopacity:&quot;stopOpacity &quot;,&quot;stop-opacity &quot;:&quot;stopOpacity &quot;,strikethroughposition:&quot;strikethroughPosition &quot;,&quot;strikethrough-position &quot;:&quot;strikethroughPosition &quot;,strikethroughthickness:&quot;strikethroughThickness &quot;,&quot;strikethrough-thickness &quot;:&quot;strikethroughThickness &quot;,string:&quot;string &quot;,stroke:&quot;stroke &quot;,strokedasharray:&quot;strokeDasharray &quot;,&quot;stroke-dasharray &quot;:&quot;strokeDasharray &quot;,strokedashoffset:&quot;strokeDashoffset &quot;,&quot;stroke-dashoffset &quot;:&quot;strokeDashoffset &quot;,strokelinecap:&quot;strokeLinecap &quot;,&quot;stroke-linecap &quot;:&quot;strokeLinecap &quot;,strokelinejoin:&quot;strokeLinejoin &quot;,&quot;stroke-linejoin &quot;:&quot;strokeLinejoin &quot;,strokemiterlimit:&quot;strokeMiterlimit &quot;,&quot;stroke-miterlimit &quot;:&quot;strokeMiterlimit &quot;,strokewidth:&quot;strokeWidth &quot;,&quot;stroke-width &quot;:&quot;strokeWidth &quot;,strokeopacity:&quot;strokeOpacity &quot;,&quot;stroke-opacity &quot;:&quot;strokeOpacity &quot;,suppresscontenteditablewarning:&quot;suppressContentEditableWarning &quot;,suppresshydrationwarning:&quot;suppressHydrationWarning &quot;,surfacescale:&quot;surfaceScale &quot;,systemlanguage:&quot;systemLanguage &quot;,tablevalues:&quot;tableValues &quot;,targetx:&quot;targetX &quot;,targety:&quot;targetY &quot;,textanchor:&quot;textAnchor &quot;,&quot;text-anchor &quot;:&quot;textAnchor &quot;,textdecoration:&quot;textDecoration &quot;,&quot;text-decoration &quot;:&quot;textDecoration &quot;,textlength:&quot;textLength &quot;,textrendering:&quot;textRendering &quot;,&quot;text-rendering &quot;:&quot;textRendering &quot;,to:&quot;to &quot;,transform:&quot;transform &quot;,typeof:&quot;typeof &quot;,u1:&quot;u1 &quot;,u2:&quot;u2 &quot;,underlineposition:&quot;underlinePosition &quot;,&quot;underline-position &quot;:&quot;underlinePosition &quot;,underlinethickness:&quot;underlineThickness &quot;,&quot;underline-thickness &quot;:&quot;underlineThickness &quot;,unicode:&quot;unicode &quot;,unicodebidi:&quot;unicodeBidi &quot;,&quot;unicode-bidi &quot;:&quot;unicodeBidi &quot;,unicoderange:&quot;unicodeRange &quot;,&quot;unicode-range &quot;:&quot;unicodeRange &quot;,unitsperem:&quot;unitsPerEm &quot;,&quot;units-per-em &quot;:&quot;unitsPerEm &quot;,unselectable:&quot;unselectable &quot;,valphabetic:&quot;vAlphabetic &quot;,&quot;v-alphabetic &quot;:&quot;vAlphabetic &quot;,values:&quot;values &quot;,vectoreffect:&quot;vectorEffect &quot;,&quot;vector-effect &quot;:&quot;vectorEffect &quot;,version:&quot;version &quot;,vertadvy:&quot;vertAdvY &quot;,&quot;vert-adv-y &quot;:&quot;vertAdvY &quot;,vertoriginx:&quot;vertOriginX &quot;,&quot;vert-origin-x &quot;:&quot;vertOriginX &quot;,vertoriginy:&quot;vertOriginY &quot;,&quot;vert-origin-y &quot;:&quot;vertOriginY &quot;,vhanging:&quot;vHanging &quot;,&quot;v-hanging &quot;:&quot;vHanging &quot;,videographic:&quot;vIdeographic &quot;,&quot;v-ideographic &quot;:&quot;vIdeographic &quot;,viewbox:&quot;viewBox &quot;,viewtarget:&quot;viewTarget &quot;,visibility:&quot;visibility &quot;,vmathematical:&quot;vMathematical &quot;,&quot;v-mathematical &quot;:&quot;vMathematical &quot;,vocab:&quot;vocab &quot;,widths:&quot;widths &quot;,wordspacing:&quot;wordSpacing &quot;,&quot;word-spacing &quot;:&quot;wordSpacing &quot;,writingmode:&quot;writingMode &quot;,&quot;writing-mode &quot;:&quot;writingMode &quot;,x1:&quot;x1 &quot;,x2:&quot;x2 &quot;,x:&quot;x &quot;,xchannelselector:&quot;xChannelSelector &quot;,xheight:&quot;xHeight &quot;,&quot;x-height &quot;:&quot;xHeight &quot;,xlinkactuate:&quot;xlinkActuate &quot;,&quot;xlink:actuate &quot;:&quot;xlinkActuate &quot;,xlinkarcrole:&quot;xlinkArcrole &quot;,&quot;xlink:arcrole &quot;:&quot;xlinkArcrole &quot;,xlinkhref:&quot;xlinkHref &quot;,&quot;xlink:href &quot;:&quot;xlinkHref &quot;,xlinkrole:&quot;xlinkRole &quot;,&quot;xlink:role &quot;:&quot;xlinkRole &quot;,xlinkshow:&quot;xlinkShow &quot;,&quot;xlink:show &quot;:&quot;xlinkShow &quot;,xlinktitle:&quot;xlinkTitle &quot;,&quot;xlink:title &quot;:&quot;xlinkTitle &quot;,xlinktype:&quot;xlinkType &quot;,&quot;xlink:type &quot;:&quot;xlinkType &quot;,xmlbase:&quot;xmlBase &quot;,&quot;xml:base &quot;:&quot;xmlBase &quot;,xmllang:&quot;xmlLang &quot;,&quot;xml:lang &quot;:&quot;xmlLang &quot;,xmlns:&quot;xmlns &quot;,&quot;xml:space &quot;:&quot;xmlSpace &quot;,xmlnsxlink:&quot;xmlnsXlink &quot;,&quot;xmlns:xlink &quot;:&quot;xmlnsXlink &quot;,xmlspace:&quot;xmlSpace &quot;,y1:&quot;y1 &quot;,y2:&quot;y2 &quot;,y:&quot;y &quot;,ychannelselector:&quot;yChannelSelector &quot;,z:&quot;z &quot;,zoomandpan:&quot;zoomAndPan &quot;},un={&quot;aria-current &quot;:0,&quot;aria-details &quot;:0,&quot;aria-disabled &quot;:0,&quot;aria-hidden &quot;:0,&quot;aria-invalid &quot;:0,&quot;aria-keyshortcuts &quot;:0,&quot;aria-label &quot;:0,&quot;aria-roledescription &quot;:0,&quot;aria-autocomplete &quot;:0,&quot;aria-checked &quot;:0,&quot;aria-expanded &quot;:0,&quot;aria-haspopup &quot;:0,&quot;aria-level &quot;:0,&quot;aria-modal &quot;:0,&quot;aria-multiline &quot;:0,&quot;aria-multiselectable &quot;:0,&quot;aria-orientation &quot;:0,&quot;aria-placeholder &quot;:0,&quot;aria-pressed &quot;:0,&quot;aria-readonly &quot;:0,&quot;aria-required &quot;:0,&quot;aria-selected &quot;:0,&quot;aria-sort &quot;:0,&quot;aria-valuemax &quot;:0,&quot;aria-valuemin &quot;:0,&quot;aria-valuenow &quot;:0,&quot;aria-valuetext &quot;:0,&quot;aria-atomic &quot;:0,&quot;aria-busy &quot;:0,&quot;aria-live &quot;:0,&quot;aria-relevant &quot;:0,&quot;aria-dropeffect &quot;:0,&quot;aria-grabbed &quot;:0,&quot;aria-activedescendant &quot;:0,&quot;aria-colcount &quot;:0,&quot;aria-colindex &quot;:0,&quot;aria-colspan &quot;:0,&quot;aria-controls &quot;:0,&quot;aria-describedby &quot;:0,&quot;aria-errormessage &quot;:0,&quot;aria-flowto &quot;:0,&quot;aria-labelledby &quot;:0,&quot;aria-owns &quot;:0,&quot;aria-posinset &quot;:0,&quot;aria-rowcount &quot;:0,&quot;aria-rowindex &quot;:0,&quot;aria-rowspan &quot;:0,&quot;aria-setsize &quot;:0},fn={},dn=new RegExp(&quot;^(aria)-[&quot;+_+&quot;]*$ &quot;),pn=new RegExp(&quot;^(aria)[A-Z][&quot;+_+&quot;]*$ &quot;),mn=Object.prototype.hasOwnProperty;function hn(e,t){if(mn.call(fn,t)&amp;&amp;fn[t])return!0;if(pn.test(t)){var n=&quot;aria-&quot;+t.slice(4).toLowerCase(),r=un.hasOwnProperty(n)?n:null;if(null==r)return s(&quot;Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.&quot;,t),fn[t]=!0,!0;if(t!==r)return s(&quot;Invalid ARIA attribute `%s`. Did you mean `%s`?&quot;,t,r),fn[t]=!0,!0}if(dn.test(t)){var a=t.toLowerCase(),o=un.hasOwnProperty(a)?a:null;if(null==o)return fn[t]=!0,!1;if(t!==o)return s(&quot;Unknown ARIA attribute `%s`. Did you mean `%s`?&quot;,t,o),fn[t]=!0,!0}return!0}var gn,vn=!1,yn={},En=Object.prototype.hasOwnProperty,bn=/^on./,Tn=/^on[^A-Z]/,Nn=new RegExp(&quot;^(aria)-[&quot;+_+&quot;]*$ &quot;),Rn=new RegExp(&quot;^(aria)[A-Z][&quot;+_+&quot;]*$ &quot;);function Sn(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement &amp;&amp;(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}gn=function(e,t,n,r){if(En.call(yn,t)&amp;&amp;yn[t])return!0;var a=t.toLowerCase();if(&quot;onfocusin &quot;===a||&quot;onfocusout &quot;===a)return s(&quot;React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React.&quot;),yn[t]=!0,!0;if(null!=r){var o=r.possibleRegistrationNames;if(r.registrationNameDependencies.hasOwnProperty(t))return!0;var i=o.hasOwnProperty(a)?o[a]:null;if(null!=i)return s(&quot;Invalid event handler property `%s`. Did you mean `%s`?&quot;,t,i),yn[t]=!0,!0;if(bn.test(t))return s(&quot;Unknown event handler property `%s`. It will be ignored.&quot;,t),yn[t]=!0,!0}else if(bn.test(t))return Tn.test(t)&amp;&amp;s(&quot;Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.&quot;,t),yn[t]=!0,!0;if(Nn.test(t)||Rn.test(t))return!0;if(&quot;innerhtml &quot;===a)return s(&quot;Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`.&quot;),yn[t]=!0,!0;if(&quot;aria &quot;===a)return s(&quot;The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead.&quot;),yn[t]=!0,!0;if(&quot;is &quot;===a &amp;&amp;null!=n &amp;&amp;&quot;string &quot;!=typeof n)return s(&quot;Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.&quot;,typeof n),yn[t]=!0,!0;if(&quot;number &quot;==typeof n &amp;&amp;isNaN(n))return s(&quot;Received NaN for the `%s` attribute. If this is expected, cast the value to a string.&quot;,t),yn[t]=!0,!0;var l=B(t),c=null!==l &amp;&amp;0===l.type;if(cn.hasOwnProperty(a)){var u=cn[a];if(u!==t)return s(&quot;Invalid DOM property `%s`. Did you mean `%s`?&quot;,t,u),yn[t]=!0,!0}else if(!c &amp;&amp;t!==a)return s(&quot;React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.&quot;,t,a),yn[t]=!0,!0;return &quot;boolean &quot;==typeof n &amp;&amp;z(t,n,l,!1)?(n?s(&#039;Received `%s` for a non-boolean attribute `%s`.

If you want to write it to the DOM, pass a string instead: %s=&quot;%s &quot;or %s={value.toString()}.&#039;,n,t,t,n,t):s(&#039;Received `%s` for a non-boolean attribute `%s`.

If you want to write it to the DOM, pass a string instead: %s=&quot;%s &quot;or %s={value.toString()}.

If you used to conditionally omit it with %s={condition &amp;&amp;value}, pass %s={condition ? value : undefined} instead.&#039;,n,t,t,n,t,t,t),yn[t]=!0,!0):!!c||(z(t,n,l,!1)?(yn[t]=!0,!1):(&quot;false &quot;!==n &amp;&amp;&quot;true &quot;!==n||null===l||3!==l.type||(s(&quot;Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?&quot;,n,t,&quot;false &quot;===n?&quot;The browser will interpret it as a truthy value.&quot;:&#039;Although this works, it will not work as expected if you pass the string &quot;false &quot;.&#039;,t,n),yn[t]=!0),!0))};var wn=null,On=null,Cn=null;function An(e){var t=Ul(e);if(t){if(&quot;function &quot;!=typeof wn)throw Error(&quot;setRestoreImplementation() needs to be called to handle a target for controlled events. This error is likely caused by a bug in React. Please file an issue.&quot;);var n=t.stateNode;if(n){var r=Fl(n);wn(t.stateNode,t.type,r)}}}function In(e){On?Cn?Cn.push(e):Cn=[e]:On=e}function kn(){if(On){var e=On,t=Cn;if(On=null,Cn=null,An(e),t)for(var n=0;n &lt;t.length;n++)An(t[n])}}var xn=function(e,t){return e(t)},_n=function(e,t,n,r,a){return e(t,n,r,a)},Ln=function(){},Pn=xn,Mn=!1,Dn=!1;function Un(){(null!==On||null!==Cn)&amp;&amp;(Ln(),kn())}function jn(e,t){var n=e.stateNode;if(null===n)return null;var r=Fl(n);if(null===r)return null;var a=r[t];if(function(e,t,n){switch(e){case &quot;onClick &quot;:case &quot;onClickCapture &quot;:case &quot;onDoubleClick &quot;:case &quot;onDoubleClickCapture &quot;:case &quot;onMouseDown &quot;:case &quot;onMouseDownCapture &quot;:case &quot;onMouseMove &quot;:case &quot;onMouseMoveCapture &quot;:case &quot;onMouseUp &quot;:case &quot;onMouseUpCapture &quot;:case &quot;onMouseEnter &quot;:return!(!n.disabled||!function(e){return &quot;button &quot;===e||&quot;input &quot;===e||&quot;select &quot;===e||&quot;textarea &quot;===e}(t));default:return!1}}(t,e.type,r))return null;if(a &amp;&amp;&quot;function &quot;!=typeof a)throw Error(&quot;Expected `&quot;+t+&quot;` listener to be a function, instead got a value of `&quot;+typeof a+&quot;` type.&quot;);return a}var Fn=!1;if(k)try{var zn={};Object.defineProperty(zn,&quot;passive &quot;,{get:function(){Fn=!0}}),window.addEventListener(&quot;test &quot;,zn,zn),window.removeEventListener(&quot;test &quot;,zn,zn)}catch(e){Fn=!1}function Hn(e,t,n,r,a,o,i,l,s){var c=Array.prototype.slice.call(arguments,3);try{t.apply(n,c)}catch(e){this.onError(e)}}var Bn=Hn;if(&quot;undefined &quot;!=typeof window &amp;&amp;&quot;function &quot;==typeof window.dispatchEvent &amp;&amp;&quot;undefined &quot;!=typeof document &amp;&amp;&quot;function &quot;==typeof document.createEvent){var Vn=document.createElement(&quot;react &quot;);Bn=function(e,t,n,r,a,o,i,l,s){if(&quot;undefined &quot;==typeof document)throw Error(&quot;The `document` global was defined when React was initialized, but is not defined anymore. This can happen in a test environment if a component schedules an update from an asynchronous callback, but the test has already finished running. To solve this, you can either unmount the component at the end of your test (and ensure that any asynchronous operations get canceled in `componentWillUnmount`), or you can change the test itself to be asynchronous.&quot;);var c=document.createEvent(&quot;Event &quot;),u=!1,f=!0,d=window.event,p=Object.getOwnPropertyDescriptor(window,&quot;event &quot;);function m(){Vn.removeEventListener(T,v,!1),void 0!==window.event &amp;&amp;window.hasOwnProperty(&quot;event &quot;)&amp;&amp;(window.event=d)}var h,g=Array.prototype.slice.call(arguments,3);function v(){u=!0,m(),t.apply(n,g),f=!1}var y=!1,E=!1;function b(e){if(y=!0,null===(h=e.error)&amp;&amp;0===e.colno &amp;&amp;0===e.lineno &amp;&amp;(E=!0),e.defaultPrevented &amp;&amp;null!=h &amp;&amp;&quot;object &quot;==typeof h)try{h._suppressLogging=!0}catch(e){}}var T=&quot;react-&quot;+(e||&quot;invokeguardedcallback &quot;);if(window.addEventListener(&quot;error &quot;,b),Vn.addEventListener(T,v,!1),c.initEvent(T,!1,!1),Vn.dispatchEvent(c),p &amp;&amp;Object.defineProperty(window,&quot;event &quot;,p),u &amp;&amp;f &amp;&amp;(y?E &amp;&amp;(h=new Error(&quot;A cross-origin error was thrown. React doesn &#039;t have access to the actual error object in development. See https://reactjs.org/link/crossorigin-error for more information.&quot;)):h=new Error(&quot;An error was thrown inside one of your components, but React doesn &#039;t know what it was. This is likely due to browser flakiness. React does its best to preserve the \&quot;Pause on exceptions\&quot;behavior of the DevTools, which requires some DEV-mode only tricks. It &#039;s possible that these don &#039;t work in your browser. Try triggering the error in production mode, or switching to a modern browser. If you suspect that this is actually an issue with React, please file an issue.&quot;),this.onError(h)),window.removeEventListener(&quot;error &quot;,b),!u)return m(),Hn.apply(this,arguments)}}var Wn=Bn,Gn=!1,Yn=null,$n=!1,Xn=null,Kn={onError:function(e){Gn=!0,Yn=e}};function qn(e,t,n,r,a,o,i,l,s){Gn=!1,Yn=null,Wn.apply(Kn,arguments)}function Jn(){return Gn}function Qn(){if(Gn){var e=Yn;return Gn=!1,Yn=null,e}throw Error(&quot;clearCaughtError was called but no error was captured. This error is likely caused by a bug in React. Please file an issue.&quot;)}function Zn(e){return e._reactInternals}var er,tr,nr,rr,ar=64,or=128,ir=256,lr=8192,sr=2048,cr=4096,ur=16384,fr=o.ReactCurrentOwner;function dr(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{var r=t;do{0!=(1026 &amp;(t=r).flags)&amp;&amp;(n=t.return),r=t.return}while(r)}return 3===t.tag?n:null}function pr(e){if(e.tag===h){var t=e.memoizedState;if(null===t){var n=e.alternate;null!==n &amp;&amp;(t=n.memoizedState)}if(null!==t)return t.dehydrated}return null}function mr(e){return 3===e.tag?e.stateNode.containerInfo:null}function hr(e){if(dr(e)!==e)throw Error(&quot;Unable to find node on an unmounted component.&quot;)}function gr(e){var t=e.alternate;if(!t){var n=dr(e);if(null===n)throw Error(&quot;Unable to find node on an unmounted component.&quot;);return n!==e?null:e}for(var r=e,a=t;;){var o=r.return;if(null===o)break;var i=o.alternate;if(null===i){var l=o.return;if(null!==l){r=a=l;continue}break}if(o.child===i.child){for(var s=o.child;s;){if(s===r)return hr(o),e;if(s===a)return hr(o),t;s=s.sibling}throw Error(&quot;Unable to find node on an unmounted component.&quot;)}if(r.return!==a.return)r=o,a=i;else{for(var c=!1,u=o.child;u;){if(u===r){c=!0,r=o,a=i;break}if(u===a){c=!0,a=o,r=i;break}u=u.sibling}if(!c){for(u=i.child;u;){if(u===r){c=!0,r=i,a=o;break}if(u===a){c=!0,a=i,r=o;break}u=u.sibling}if(!c)throw Error(&quot;Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.&quot;)}}if(r.alternate!==a)throw Error(&quot;Return fibers should always be each others &#039;alternates. This error is likely caused by a bug in React. Please file an issue.&quot;)}if(3!==r.tag)throw Error(&quot;Unable to find node on an unmounted component.&quot;);return r.stateNode.current===r?e:t}function vr(e){var t=gr(e);if(!t)return null;for(var n=t;;){if(5===n.tag||6===n.tag)return n;if(n.child)n.child.return=n,n=n.child;else{if(n===t)return null;for(;!n.sibling;){if(!n.return||n.return===t)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}}return null}var yr=!1,Er=[],br=null,Tr=null,Nr=null,Rr=new Map,Sr=new Map,wr=[],Or=[&quot;mousedown &quot;,&quot;mouseup &quot;,&quot;touchcancel &quot;,&quot;touchend &quot;,&quot;touchstart &quot;,&quot;auxclick &quot;,&quot;dblclick &quot;,&quot;pointercancel &quot;,&quot;pointerdown &quot;,&quot;pointerup &quot;,&quot;dragend &quot;,&quot;dragstart &quot;,&quot;drop &quot;,&quot;compositionend &quot;,&quot;compositionstart &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;input &quot;,&quot;textInput &quot;,&quot;copy &quot;,&quot;cut &quot;,&quot;paste &quot;,&quot;click &quot;,&quot;change &quot;,&quot;contextmenu &quot;,&quot;reset &quot;,&quot;submit &quot;];function Cr(e){return Or.indexOf(e)&gt;-1}function Ar(e,t,n,r,a){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:a,targetContainers:[r]}}function Ir(e,t,n,r,a){var o=Ar(e,t,n,r,a);Er.push(o)}function kr(e,t){switch(e){case &quot;focusin &quot;:case &quot;focusout &quot;:br=null;break;case &quot;dragenter &quot;:case &quot;dragleave &quot;:Tr=null;break;case &quot;mouseover &quot;:case &quot;mouseout &quot;:Nr=null;break;case &quot;pointerover &quot;:case &quot;pointerout &quot;:Rr.delete(t.pointerId);break;case &quot;gotpointercapture &quot;:case &quot;lostpointercapture &quot;:Sr.delete(t.pointerId)}}function xr(e,t,n,r,a,o){if(null===e||e.nativeEvent!==o){var i=Ar(t,n,r,a,o);if(null!==t){var l=Ul(t);null!==l &amp;&amp;tr(l)}return i}e.eventSystemFlags|=r;var s=e.targetContainers;return null!==a &amp;&amp;-1===s.indexOf(a)&amp;&amp;s.push(a),e}function _r(e){var t=Dl(e.target);if(null!==t){var n=dr(t);if(null!==n){var a=n.tag;if(a===h){var o=pr(n);if(null!==o)return e.blockedOn=o,void rr(e.lanePriority,function(){r.unstable_runWithPriority(e.priority,function(){nr(n)})})}else if(3===a &amp;&amp;n.stateNode.hydrate)return void(e.blockedOn=mr(n))}}e.blockedOn=null}function Lr(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;t.length &gt;0;){var n=ja(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){var r=Ul(n);return null!==r &amp;&amp;tr(r),e.blockedOn=n,!1}t.shift()}return!0}function Pr(e,t,n){Lr(e)&amp;&amp;n.delete(t)}function Mr(){for(yr=!1;Er.length &gt;0;){var e=Er[0];if(null!==e.blockedOn){var t=Ul(e.blockedOn);null!==t &amp;&amp;er(t);break}for(var n=e.targetContainers;n.length &gt;0;){var r=ja(e.domEventName,e.eventSystemFlags,n[0],e.nativeEvent);if(null!==r){e.blockedOn=r;break}n.shift()}null===e.blockedOn &amp;&amp;Er.shift()}null!==br &amp;&amp;Lr(br)&amp;&amp;(br=null),null!==Tr &amp;&amp;Lr(Tr)&amp;&amp;(Tr=null),null!==Nr &amp;&amp;Lr(Nr)&amp;&amp;(Nr=null),Rr.forEach(Pr),Sr.forEach(Pr)}function Dr(e,t){e.blockedOn===t &amp;&amp;(e.blockedOn=null,yr||(yr=!0,r.unstable_scheduleCallback(r.unstable_NormalPriority,Mr)))}function Ur(e){if(Er.length &gt;0){Dr(Er[0],e);for(var t=1;t &lt;Er.length;t++){var n=Er[t];n.blockedOn===e &amp;&amp;(n.blockedOn=null)}}null!==br &amp;&amp;Dr(br,e),null!==Tr &amp;&amp;Dr(Tr,e),null!==Nr &amp;&amp;Dr(Nr,e);var r=function(t){return Dr(t,e)};Rr.forEach(r),Sr.forEach(r);for(var a=0;a &lt;wr.length;a++){var o=wr[a];o.blockedOn===e &amp;&amp;(o.blockedOn=null)}for(;wr.length &gt;0;){var i=wr[0];if(null!==i.blockedOn)break;_r(i),null===i.blockedOn &amp;&amp;wr.shift()}}function jr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[&quot;Webkit &quot;+e]=&quot;webkit &quot;+t,n[&quot;Moz &quot;+e]=&quot;moz &quot;+t,n}var Fr={animationend:jr(&quot;Animation &quot;,&quot;AnimationEnd &quot;),animationiteration:jr(&quot;Animation &quot;,&quot;AnimationIteration &quot;),animationstart:jr(&quot;Animation &quot;,&quot;AnimationStart &quot;),transitionend:jr(&quot;Transition &quot;,&quot;TransitionEnd &quot;)},zr={},Hr={};function Br(e){if(zr[e])return zr[e];if(!Fr[e])return e;var t=Fr[e];for(var n in t)if(t.hasOwnProperty(n)&amp;&amp;n in Hr)return zr[e]=t[n];return e}k &amp;&amp;(Hr=document.createElement(&quot;div &quot;).style,&quot;AnimationEvent &quot;in window||(delete Fr.animationend.animation,delete Fr.animationiteration.animation,delete Fr.animationstart.animation),&quot;TransitionEvent &quot;in window||delete Fr.transitionend.transition);var Vr=Br(&quot;animationend &quot;),Wr=Br(&quot;animationiteration &quot;),Gr=Br(&quot;animationstart &quot;),Yr=Br(&quot;transitionend &quot;),$r=new Map,Xr=new Map,Kr=[&quot;abort &quot;,&quot;abort &quot;,Vr,&quot;animationEnd &quot;,Wr,&quot;animationIteration &quot;,Gr,&quot;animationStart &quot;,&quot;canplay &quot;,&quot;canPlay &quot;,&quot;canplaythrough &quot;,&quot;canPlayThrough &quot;,&quot;durationchange &quot;,&quot;durationChange &quot;,&quot;emptied &quot;,&quot;emptied &quot;,&quot;encrypted &quot;,&quot;encrypted &quot;,&quot;ended &quot;,&quot;ended &quot;,&quot;error &quot;,&quot;error &quot;,&quot;gotpointercapture &quot;,&quot;gotPointerCapture &quot;,&quot;load &quot;,&quot;load &quot;,&quot;loadeddata &quot;,&quot;loadedData &quot;,&quot;loadedmetadata &quot;,&quot;loadedMetadata &quot;,&quot;loadstart &quot;,&quot;loadStart &quot;,&quot;lostpointercapture &quot;,&quot;lostPointerCapture &quot;,&quot;playing &quot;,&quot;playing &quot;,&quot;progress &quot;,&quot;progress &quot;,&quot;seeking &quot;,&quot;seeking &quot;,&quot;stalled &quot;,&quot;stalled &quot;,&quot;suspend &quot;,&quot;suspend &quot;,&quot;timeupdate &quot;,&quot;timeUpdate &quot;,Yr,&quot;transitionEnd &quot;,&quot;waiting &quot;,&quot;waiting &quot;];function qr(e,t){for(var n=0;n &lt;e.length;n+=2){var r=e[n],a=e[n+1],o=&quot;on &quot;+(a[0].toUpperCase()+a.slice(1));Xr.set(r,t),$r.set(r,o),A(o,[r])}}var Jr=r.unstable_now;if(null==a.__interactionsRef||null==a.__interactionsRef.current)throw Error(&quot;It is not supported to run the profiling version of a renderer (for example, `react-dom/profiling`) without also replacing the `scheduler/tracing` module with `scheduler/tracing-profiling`. Your bundler might have a setting for aliasing both modules. Learn more at https://reactjs.org/link/profiling &quot;);Jr();var Qr=15,Zr=10,ea=3584,ta=4186112,na=62914560,ra=33554432,aa=67108864,oa=134217727,ia=134217728,la=805306368,sa=1073741824,ca=-1,ua=8;function fa(e){if(0!=(1 &amp;e))return ua=Qr,1;if(0!=(2 &amp;e))return ua=14,2;if(0!=(4 &amp;e))return ua=13,4;var t=24 &amp;e;if(0!==t)return ua=12,t;if(0!=(32 &amp;e))return ua=11,32;var n=192 &amp;e;if(0!==n)return ua=Zr,n;if(0!=(256 &amp;e))return ua=9,256;var r=ea &amp;e;if(0!==r)return ua=8,r;if(0!=(4096 &amp;e))return ua=7,4096;var a=ta &amp;e;if(0!==a)return ua=6,a;var o=na &amp;e;if(0!==o)return ua=5,o;if(e &amp;aa)return ua=4,aa;if(0!=(e &amp;ia))return ua=3,ia;var i=la &amp;e;return 0!==i?(ua=2,i):0!=(sa &amp;e)?(ua=1,sa):(s(&quot;Should have found matching lanes. This is a bug in React.&quot;),ua=8,e)}function da(e,t){var n=e.pendingLanes;if(0===n)return ua=0,0;var r=0,a=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)r=o,a=ua=Qr;else{var s=n &amp;oa;if(0!==s){var c=s &amp;~i;if(0!==c)r=fa(c),a=ua;else{var u=s &amp;l;0!==u &amp;&amp;(r=fa(u),a=ua)}}else{var f=n &amp;~i;0!==f?(r=fa(f),a=ua):0!==l &amp;&amp;(r=fa(l),a=ua)}}if(0===r)return 0;if(r=n &amp;function(e){return(function(e){var t=31-Aa(e);return t &lt;0?0:1 &lt;&lt;t}(e)&lt;&lt;1)-1}(r),0!==t &amp;&amp;t!==r &amp;&amp;0==(t &amp;i)){if(fa(t),a &lt;=ua)return t;ua=a}var d=e.entangledLanes;if(0!==d)for(var p=e.entanglements,m=r &amp;d;m &gt;0;){var h=Ea(m);r|=p[h],m &amp;=~(1 &lt;&lt;h)}return r}function pa(e,t){return fa(e),ua &gt;=Zr?t+250:ua &gt;=6?t+5e3:ca}function ma(e){var t=-1073741825 &amp;e.pendingLanes;return 0!==t?t:t &amp;sa?sa:0}function ha(e){return 0!=(e &amp;oa)}function ga(e){return(e &amp;na)===e}function va(e,t){switch(e){case 0:break;case Qr:return 1;case 14:return 2;case 12:var n=ya(24 &amp;~t);return 0===n?va(Zr,t):n;case Zr:var r=ya(192 &amp;~t);return 0===r?va(8,t):r;case 8:var a=ya(ea &amp;~t);return 0===a &amp;&amp;0===(a=ya(ta &amp;~t))&amp;&amp;(a=ya(ea)),a;case 6:case 5:break;case 2:var o=ya(la &amp;~t);return 0===o &amp;&amp;(o=ya(la)),o}throw Error(&quot;Invalid update priority: &quot;+e+&quot;. This is a bug in React.&quot;)}function ya(e){return function(e){return e &amp;-e}(e)}function Ea(e){return 31-Aa(e)}function ba(e,t){return 0!=(e &amp;t)}function Ta(e,t){return(e &amp;t)===t}function Na(e,t){return e|t}function Ra(e,t){return e &amp;~t}function Sa(e){for(var t=[],n=0;n &lt;31;n++)t.push(e);return t}function wa(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes &amp;=r,e.pingedLanes &amp;=r,e.eventTimes[Ea(t)]=n}function Oa(e,t,n){e.pingedLanes|=e.suspendedLanes &amp;t}function Ca(e,t){e.mutableReadLanes|=t &amp;e.pendingLanes}var Aa=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(Ia(e)/ka|0)|0},Ia=Math.log,ka=Math.LN2,xa=r.unstable_UserBlockingPriority,_a=r.unstable_runWithPriority,La=!0;function Pa(e){La=!!e}function Ma(e,t,n,r){Mn||Ln(),function(e,t,n,r,a){var o=Mn;Mn=!0;try{_n(e,t,n,r,a)}finally{(Mn=o)||Un()}}(Ua,e,t,n,r)}function Da(e,t,n,r){_a(xa,Ua.bind(null,e,t,n,r))}function Ua(e,t,n,r){var a;if(La)if((a=0==(4 &amp;t))&amp;&amp;Er.length &gt;0 &amp;&amp;Cr(e))Ir(null,e,t,n,r);else{var o=ja(e,t,n,r);if(null!==o){if(a){if(Cr(e))return void Ir(o,e,t,n,r);if(function(e,t,n,r,a){switch(t){case &quot;focusin &quot;:return br=xr(br,e,t,n,r,a),!0;case &quot;dragenter &quot;:return Tr=xr(Tr,e,t,n,r,a),!0;case &quot;mouseover &quot;:return Nr=xr(Nr,e,t,n,r,a),!0;case &quot;pointerover &quot;:var o=a,i=o.pointerId;return Rr.set(i,xr(Rr.get(i)||null,e,t,n,r,o)),!0;case &quot;gotpointercapture &quot;:var l=a,s=l.pointerId;return Sr.set(s,xr(Sr.get(s)||null,e,t,n,r,l)),!0}return!1}(o,e,t,n,r))return;kr(e,r)}Ti(e,t,r,null,n)}else a &amp;&amp;kr(e,r)}}function ja(e,t,n,r){var a=Dl(Sn(r));if(null!==a){var o=dr(a);if(null===o)a=null;else{var i=o.tag;if(i===h){var l=pr(o);if(null!==l)return l;a=null}else if(3===i){if(o.stateNode.hydrate)return mr(o);a=null}else o!==a &amp;&amp;(a=null)}}return Ti(e,t,r,a,n),null}var Fa=null,za=null,Ha=null;function Ba(){if(Ha)return Ha;var e,t,n=za,r=n.length,a=Va(),o=a.length;for(e=0;e &lt;r &amp;&amp;n[e]===a[e];e++);var i=r-e;for(t=1;t &lt;=i &amp;&amp;n[r-t]===a[o-t];t++);return Ha=a.slice(e,t &gt;1?1-t:void 0)}function Va(){return &quot;value &quot;in Fa?Fa.value:Fa.textContent}function Wa(e){var t,n=e.keyCode;return &quot;charCode &quot;in e?0===(t=e.charCode)&amp;&amp;13===n &amp;&amp;(t=13):t=n,10===t &amp;&amp;(t=13),t &gt;=32||13===t?t:0}function Ga(){return!0}function Ya(){return!1}function $a(e){function t(t,n,r,a,o){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)if(e.hasOwnProperty(i)){var l=e[i];this[i]=l?l(a):a[i]}return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?Ga:Ya,this.isPropagationStopped=Ya,this}return n(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e &amp;&amp;(e.preventDefault?e.preventDefault():&quot;unknown &quot;!=typeof e.returnValue &amp;&amp;(e.returnValue=!1),this.isDefaultPrevented=Ga)},stopPropagation:function(){var e=this.nativeEvent;e &amp;&amp;(e.stopPropagation?e.stopPropagation():&quot;unknown &quot;!=typeof e.cancelBubble &amp;&amp;(e.cancelBubble=!0),this.isPropagationStopped=Ga)},persist:function(){},isPersistent:Ga}),t}var Xa,Ka,qa,Ja={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Qa=$a(Ja),Za=n({},Ja,{view:0,detail:0}),eo=$a(Za),to=n({},Za,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:mo,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return &quot;movementX &quot;in e?e.movementX:(function(e){e!==qa &amp;&amp;(qa &amp;&amp;&quot;mousemove &quot;===e.type?(Xa=e.screenX-qa.screenX,Ka=e.screenY-qa.screenY):(Xa=0,Ka=0),qa=e)}(e),Xa)},movementY:function(e){return &quot;movementY &quot;in e?e.movementY:Ka}}),no=$a(to),ro=$a(n({},to,{dataTransfer:0})),ao=$a(n({},Za,{relatedTarget:0})),oo=$a(n({},Ja,{animationName:0,elapsedTime:0,pseudoElement:0})),io=$a(n({},Ja,{clipboardData:function(e){return &quot;clipboardData &quot;in e?e.clipboardData:window.clipboardData}})),lo=$a(n({},Ja,{data:0})),so=lo,co={Esc:&quot;Escape &quot;,Spacebar:&quot;&quot;,Left:&quot;ArrowLeft &quot;,Up:&quot;ArrowUp &quot;,Right:&quot;ArrowRight &quot;,Down:&quot;ArrowDown &quot;,Del:&quot;Delete &quot;,Win:&quot;OS &quot;,Menu:&quot;ContextMenu &quot;,Apps:&quot;ContextMenu &quot;,Scroll:&quot;ScrollLock &quot;,MozPrintableKey:&quot;Unidentified &quot;},uo={8:&quot;Backspace &quot;,9:&quot;Tab &quot;,12:&quot;Clear &quot;,13:&quot;Enter &quot;,16:&quot;Shift &quot;,17:&quot;Control &quot;,18:&quot;Alt &quot;,19:&quot;Pause &quot;,20:&quot;CapsLock &quot;,27:&quot;Escape &quot;,32:&quot;&quot;,33:&quot;PageUp &quot;,34:&quot;PageDown &quot;,35:&quot;End &quot;,36:&quot;Home &quot;,37:&quot;ArrowLeft &quot;,38:&quot;ArrowUp &quot;,39:&quot;ArrowRight &quot;,40:&quot;ArrowDown &quot;,45:&quot;Insert &quot;,46:&quot;Delete &quot;,112:&quot;F1 &quot;,113:&quot;F2 &quot;,114:&quot;F3 &quot;,115:&quot;F4 &quot;,116:&quot;F5 &quot;,117:&quot;F6 &quot;,118:&quot;F7 &quot;,119:&quot;F8 &quot;,120:&quot;F9 &quot;,121:&quot;F10 &quot;,122:&quot;F11 &quot;,123:&quot;F12 &quot;,144:&quot;NumLock &quot;,145:&quot;ScrollLock &quot;,224:&quot;Meta &quot;},fo={Alt:&quot;altKey &quot;,Control:&quot;ctrlKey &quot;,Meta:&quot;metaKey &quot;,Shift:&quot;shiftKey &quot;};function po(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(e);var n=fo[e];return!!n &amp;&amp;!!t[n]}function mo(e){return po}var ho=$a(n({},Za,{key:function(e){if(e.key){var t=co[e.key]||e.key;if(&quot;Unidentified &quot;!==t)return t}if(&quot;keypress &quot;===e.type){var n=Wa(e);return 13===n?&quot;Enter &quot;:String.fromCharCode(n)}return &quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?uo[e.keyCode]||&quot;Unidentified &quot;:&quot;&quot;},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:mo,charCode:function(e){return &quot;keypress &quot;===e.type?Wa(e):0},keyCode:function(e){return &quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0},which:function(e){return &quot;keypress &quot;===e.type?Wa(e):&quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0}})),go=$a(n({},to,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),vo=$a(n({},Za,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:mo})),yo=$a(n({},Ja,{propertyName:0,elapsedTime:0,pseudoElement:0})),Eo=$a(n({},to,{deltaX:function(e){return &quot;deltaX &quot;in e?e.deltaX:&quot;wheelDeltaX &quot;in e?-e.wheelDeltaX:0},deltaY:function(e){return &quot;deltaY &quot;in e?e.deltaY:&quot;wheelDeltaY &quot;in e?-e.wheelDeltaY:&quot;wheelDelta &quot;in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),bo=[9,13,27,32],To=k &amp;&amp;&quot;CompositionEvent &quot;in window,No=null;k &amp;&amp;&quot;documentMode &quot;in document &amp;&amp;(No=document.documentMode);var Ro=k &amp;&amp;&quot;TextEvent &quot;in window &amp;&amp;!No,So=k &amp;&amp;(!To||No &amp;&amp;No &gt;8 &amp;&amp;No &lt;=11),wo=String.fromCharCode(32),Oo=!1;function Co(e,t){switch(e){case &quot;keyup &quot;:return-1!==bo.indexOf(t.keyCode);case &quot;keydown &quot;:return 229!==t.keyCode;case &quot;keypress &quot;:case &quot;mousedown &quot;:case &quot;focusout &quot;:return!0;default:return!1}}function Ao(e){var t=e.detail;return &quot;object &quot;==typeof t &amp;&amp;&quot;data &quot;in t?t.data:null}function Io(e){return &quot;ko &quot;===e.locale}var ko=!1,xo={color:!0,date:!0,datetime:!0,&quot;datetime-local &quot;:!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function _o(e){var t=e &amp;&amp;e.nodeName &amp;&amp;e.nodeName.toLowerCase();return &quot;input &quot;===t?!!xo[e.type]:&quot;textarea &quot;===t}function Lo(e,t,n,r){In(r);var a=Ri(t,&quot;onChange &quot;);if(a.length &gt;0){var o=new Qa(&quot;onChange &quot;,&quot;change &quot;,null,n,r);e.push({event:o,listeners:a})}}var Po=null,Mo=null;function Do(e){mi(e,0)}function Uo(e){if(it(jl(e)))return e}function jo(e,t){if(&quot;change &quot;===e)return t}var Fo=!1;function zo(){Po &amp;&amp;(Po.detachEvent(&quot;onpropertychange &quot;,Ho),Po=null,Mo=null)}function Ho(e){&quot;value &quot;===e.propertyName &amp;&amp;Uo(Mo)&amp;&amp;function(e){var t=[];Lo(t,Mo,e,Sn(e)),function(e,t){if(Mn)return e(t);Mn=!0;try{xn(e,t)}finally{Mn=!1,Un()}}(Do,t)}(e)}function Bo(e,t,n){&quot;focusin &quot;===e?(zo(),function(e,t){Mo=t,(Po=e).attachEvent(&quot;onpropertychange &quot;,Ho)}(t,n)):&quot;focusout &quot;===e &amp;&amp;zo()}function Vo(e,t){if(&quot;selectionchange &quot;===e||&quot;keyup &quot;===e||&quot;keydown &quot;===e)return Uo(Mo)}function Wo(e,t){if(&quot;click &quot;===e)return Uo(t)}function Go(e,t){if(&quot;input &quot;===e||&quot;change &quot;===e)return Uo(t)}k &amp;&amp;(Fo=function(e){if(!k)return!1;var t=&quot;oninput &quot;,n=t in document;if(!n){var r=document.createElement(&quot;div &quot;);r.setAttribute(t,&quot;return;&quot;),n=&quot;function &quot;==typeof r.oninput}return n}()&amp;&amp;(!document.documentMode||document.documentMode &gt;9));var Yo=&quot;function &quot;==typeof Object.is?Object.is:function(e,t){return e===t &amp;&amp;(0!==e||1/e==1/t)||e!=e &amp;&amp;t!=t},$o=Object.prototype.hasOwnProperty;function Xo(e,t){if(Yo(e,t))return!0;if(&quot;object &quot;!=typeof e||null===e||&quot;object &quot;!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(var a=0;a &lt;n.length;a++)if(!$o.call(t,n[a])||!Yo(e[n[a]],t[n[a]]))return!1;return!0}function Ko(e){for(;e &amp;&amp;e.firstChild;)e=e.firstChild;return e}function qo(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}function Jo(e,t){for(var n=Ko(e),r=0,a=0;n;){if(3===n.nodeType){if(a=r+n.textContent.length,r &lt;=t &amp;&amp;a &gt;=t)return{node:n,offset:t-r};r=a}n=Ko(qo(n))}}function Qo(e){return e &amp;&amp;3===e.nodeType}function Zo(e,t){return!(!e||!t)&amp;&amp;(e===t||!Qo(e)&amp;&amp;(Qo(t)?Zo(e,t.parentNode):&quot;contains &quot;in e?e.contains(t):!!e.compareDocumentPosition &amp;&amp;!!(16 &amp;e.compareDocumentPosition(t))))}function ei(e){return e &amp;&amp;e.ownerDocument &amp;&amp;Zo(e.ownerDocument.documentElement,e)}function ti(e){try{return &quot;string &quot;==typeof e.contentWindow.location.href}catch(e){return!1}}function ni(){for(var e=window,t=lt();t instanceof e.HTMLIFrameElement;){if(!ti(t))return t;t=lt((e=t.contentWindow).document)}return t}function ri(e){var t=e &amp;&amp;e.nodeName &amp;&amp;e.nodeName.toLowerCase();return t &amp;&amp;(&quot;input &quot;===t &amp;&amp;(&quot;text &quot;===e.type||&quot;search &quot;===e.type||&quot;tel &quot;===e.type||&quot;url &quot;===e.type||&quot;password &quot;===e.type)||&quot;textarea &quot;===t||&quot;true &quot;===e.contentEditable)}var ai=k &amp;&amp;&quot;documentMode &quot;in document &amp;&amp;document.documentMode &lt;=11,oi=null,ii=null,li=null,si=!1;function ci(e,t,n){var r,a=(r=n).window===r?r.document:9===r.nodeType?r:r.ownerDocument;if(!si &amp;&amp;null!=oi &amp;&amp;oi===lt(a)){var o=function(e){if(&quot;selectionStart &quot;in e &amp;&amp;ri(e))return{start:e.selectionStart,end:e.selectionEnd};var t=(e.ownerDocument &amp;&amp;e.ownerDocument.defaultView||window).getSelection();return{anchorNode:t.anchorNode,anchorOffset:t.anchorOffset,focusNode:t.focusNode,focusOffset:t.focusOffset}}(oi);if(!li||!Xo(li,o)){li=o;var i=Ri(ii,&quot;onSelect &quot;);if(i.length &gt;0){var l=new Qa(&quot;onSelect &quot;,&quot;select &quot;,null,t,n);e.push({event:l,listeners:i}),l.target=oi}}}}qr([&quot;cancel &quot;,&quot;cancel &quot;,&quot;click &quot;,&quot;click &quot;,&quot;close &quot;,&quot;close &quot;,&quot;contextmenu &quot;,&quot;contextMenu &quot;,&quot;copy &quot;,&quot;copy &quot;,&quot;cut &quot;,&quot;cut &quot;,&quot;auxclick &quot;,&quot;auxClick &quot;,&quot;dblclick &quot;,&quot;doubleClick &quot;,&quot;dragend &quot;,&quot;dragEnd &quot;,&quot;dragstart &quot;,&quot;dragStart &quot;,&quot;drop &quot;,&quot;drop &quot;,&quot;focusin &quot;,&quot;focus &quot;,&quot;focusout &quot;,&quot;blur &quot;,&quot;input &quot;,&quot;input &quot;,&quot;invalid &quot;,&quot;invalid &quot;,&quot;keydown &quot;,&quot;keyDown &quot;,&quot;keypress &quot;,&quot;keyPress &quot;,&quot;keyup &quot;,&quot;keyUp &quot;,&quot;mousedown &quot;,&quot;mouseDown &quot;,&quot;mouseup &quot;,&quot;mouseUp &quot;,&quot;paste &quot;,&quot;paste &quot;,&quot;pause &quot;,&quot;pause &quot;,&quot;play &quot;,&quot;play &quot;,&quot;pointercancel &quot;,&quot;pointerCancel &quot;,&quot;pointerdown &quot;,&quot;pointerDown &quot;,&quot;pointerup &quot;,&quot;pointerUp &quot;,&quot;ratechange &quot;,&quot;rateChange &quot;,&quot;reset &quot;,&quot;reset &quot;,&quot;seeked &quot;,&quot;seeked &quot;,&quot;submit &quot;,&quot;submit &quot;,&quot;touchcancel &quot;,&quot;touchCancel &quot;,&quot;touchend &quot;,&quot;touchEnd &quot;,&quot;touchstart &quot;,&quot;touchStart &quot;,&quot;volumechange &quot;,&quot;volumeChange &quot;],0),qr([&quot;drag &quot;,&quot;drag &quot;,&quot;dragenter &quot;,&quot;dragEnter &quot;,&quot;dragexit &quot;,&quot;dragExit &quot;,&quot;dragleave &quot;,&quot;dragLeave &quot;,&quot;dragover &quot;,&quot;dragOver &quot;,&quot;mousemove &quot;,&quot;mouseMove &quot;,&quot;mouseout &quot;,&quot;mouseOut &quot;,&quot;mouseover &quot;,&quot;mouseOver &quot;,&quot;pointermove &quot;,&quot;pointerMove &quot;,&quot;pointerout &quot;,&quot;pointerOut &quot;,&quot;pointerover &quot;,&quot;pointerOver &quot;,&quot;scroll &quot;,&quot;scroll &quot;,&quot;toggle &quot;,&quot;toggle &quot;,&quot;touchmove &quot;,&quot;touchMove &quot;,&quot;wheel &quot;,&quot;wheel &quot;],1),qr(Kr,2),function(e,t){for(var n=0;n &lt;e.length;n++)Xr.set(e[n],0)}([&quot;change &quot;,&quot;selectionchange &quot;,&quot;textInput &quot;,&quot;compositionstart &quot;,&quot;compositionend &quot;,&quot;compositionupdate &quot;]),I(&quot;onMouseEnter &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),I(&quot;onMouseLeave &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),I(&quot;onPointerEnter &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),I(&quot;onPointerLeave &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),A(&quot;onChange &quot;,[&quot;change &quot;,&quot;click &quot;,&quot;focusin &quot;,&quot;focusout &quot;,&quot;input &quot;,&quot;keydown &quot;,&quot;keyup &quot;,&quot;selectionchange &quot;]),A(&quot;onSelect &quot;,[&quot;focusout &quot;,&quot;contextmenu &quot;,&quot;dragend &quot;,&quot;focusin &quot;,&quot;keydown &quot;,&quot;keyup &quot;,&quot;mousedown &quot;,&quot;mouseup &quot;,&quot;selectionchange &quot;]),A(&quot;onBeforeInput &quot;,[&quot;compositionend &quot;,&quot;keypress &quot;,&quot;textInput &quot;,&quot;paste &quot;]),A(&quot;onCompositionEnd &quot;,[&quot;compositionend &quot;,&quot;focusout &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;mousedown &quot;]),A(&quot;onCompositionStart &quot;,[&quot;compositionstart &quot;,&quot;focusout &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;mousedown &quot;]),A(&quot;onCompositionUpdate &quot;,[&quot;compositionupdate &quot;,&quot;focusout &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;mousedown &quot;]);var ui=[&quot;abort &quot;,&quot;canplay &quot;,&quot;canplaythrough &quot;,&quot;durationchange &quot;,&quot;emptied &quot;,&quot;encrypted &quot;,&quot;ended &quot;,&quot;error &quot;,&quot;loadeddata &quot;,&quot;loadedmetadata &quot;,&quot;loadstart &quot;,&quot;pause &quot;,&quot;play &quot;,&quot;playing &quot;,&quot;progress &quot;,&quot;ratechange &quot;,&quot;seeked &quot;,&quot;seeking &quot;,&quot;stalled &quot;,&quot;suspend &quot;,&quot;timeupdate &quot;,&quot;volumechange &quot;,&quot;waiting &quot;],fi=new Set([&quot;cancel &quot;,&quot;close &quot;,&quot;invalid &quot;,&quot;load &quot;,&quot;scroll &quot;,&quot;toggle &quot;].concat(ui));function di(e,t,n){var r=e.type||&quot;unknown-event &quot;;e.currentTarget=n,function(e,t,n,r,a,o,i,l,s){if(qn.apply(this,arguments),Gn){var c=Qn();$n||($n=!0,Xn=c)}}(r,t,void 0,e),e.currentTarget=null}function pi(e,t,n){var r;if(n)for(var a=t.length-1;a &gt;=0;a--){var o=t[a],i=o.instance,l=o.currentTarget,s=o.listener;if(i!==r &amp;&amp;e.isPropagationStopped())return;di(e,s,l),r=i}else for(var c=0;c &lt;t.length;c++){var u=t[c],f=u.instance,d=u.currentTarget,p=u.listener;if(f!==r &amp;&amp;e.isPropagationStopped())return;di(e,p,d),r=f}}function mi(e,t){for(var n=0!=(4 &amp;t),r=0;r &lt;e.length;r++){var a=e[r];pi(a.event,a.listeners,n)}!function(){if($n){var e=Xn;throw $n=!1,Xn=null,e}}()}function hi(e,t){var n=Hl(t),r=Oi(e,!1);n.has(r)||(Ei(t,e,2,!1),n.add(r))}var gi=&quot;_reactListening &quot;+Math.random().toString(36).slice(2);function vi(e){e[gi]||(e[gi]=!0,w.forEach(function(t){fi.has(t)||yi(t,!1,e,null),yi(t,!0,e,null)}))}function yi(e,t,n,r){var a=arguments.length &gt;4 &amp;&amp;void 0!==arguments[4]?arguments[4]:0,o=n;if(&quot;selectionchange &quot;===e &amp;&amp;9!==n.nodeType &amp;&amp;(o=n.ownerDocument),null!==r &amp;&amp;!t &amp;&amp;fi.has(e)){if(&quot;scroll &quot;!==e)return;a|=2,o=r}var i=Hl(o),l=Oi(e,t);i.has(l)||(t &amp;&amp;(a|=4),Ei(o,e,a,t),i.add(l))}function Ei(e,t,n,r,a){var o=function(e,t,n){var r;switch(function(e){var t=Xr.get(e);return void 0===t?2:t}(t)){case 0:r=Ma;break;case 1:r=Da;break;case 2:default:r=Ua}return r.bind(null,t,n,e)}(e,t,n),i=void 0;Fn &amp;&amp;(&quot;touchstart &quot;!==t &amp;&amp;&quot;touchmove &quot;!==t &amp;&amp;&quot;wheel &quot;!==t||(i=!0)),e=e,r?void 0!==i?function(e,t,n,r){e.addEventListener(t,n,{capture:!0,passive:r})}(e,t,o,i):function(e,t,n){e.addEventListener(t,n,!0)}(e,t,o):void 0!==i?function(e,t,n,r){e.addEventListener(t,n,{passive:r})}(e,t,o,i):function(e,t,n){e.addEventListener(t,n,!1)}(e,t,o)}function bi(e,t){return e===t||8===e.nodeType &amp;&amp;e.parentNode===t}function Ti(e,t,n,r,a){var o=r;if(0==(1 &amp;t)&amp;&amp;0==(2 &amp;t)){var i=a;if(null!==r){var l=r;e:for(;;){if(null===l)return;var s=l.tag;if(3===s||4===s){var c=l.stateNode.containerInfo;if(bi(c,i))break;if(4===s)for(var u=l.return;null!==u;){var f=u.tag;if((3===f||4===f)&amp;&amp;bi(u.stateNode.containerInfo,i))return;u=u.return}for(;null!==c;){var d=Dl(c);if(null===d)return;var p=d.tag;if(5===p||6===p){l=o=d;continue e}c=c.parentNode}}l=l.return}}}!function(e,t,n){if(Dn)return e();Dn=!0;try{Pn(e,void 0,void 0)}finally{Dn=!1,Un()}}(function(){return function(e,t,n,r,a){var o=[];(function(e,t,n,r,a,o,i){(function(e,t,n,r,a,o,i){var l=$r.get(t);if(void 0!==l){var s=Qa,c=t;switch(t){case &quot;keypress &quot;:if(0===Wa(r))return;case &quot;keydown &quot;:case &quot;keyup &quot;:s=ho;break;case &quot;focusin &quot;:c=&quot;focus &quot;,s=ao;break;case &quot;focusout &quot;:c=&quot;blur &quot;,s=ao;break;case &quot;beforeblur &quot;:case &quot;afterblur &quot;:s=ao;break;case &quot;click &quot;:if(2===r.button)return;case &quot;auxclick &quot;:case &quot;dblclick &quot;:case &quot;mousedown &quot;:case &quot;mousemove &quot;:case &quot;mouseup &quot;:case &quot;mouseout &quot;:case &quot;mouseover &quot;:case &quot;contextmenu &quot;:s=no;break;case &quot;drag &quot;:case &quot;dragend &quot;:case &quot;dragenter &quot;:case &quot;dragexit &quot;:case &quot;dragleave &quot;:case &quot;dragover &quot;:case &quot;dragstart &quot;:case &quot;drop &quot;:s=ro;break;case &quot;touchcancel &quot;:case &quot;touchend &quot;:case &quot;touchmove &quot;:case &quot;touchstart &quot;:s=vo;break;case Vr:case Wr:case Gr:s=oo;break;case Yr:s=yo;break;case &quot;scroll &quot;:s=eo;break;case &quot;wheel &quot;:s=Eo;break;case &quot;copy &quot;:case &quot;cut &quot;:case &quot;paste &quot;:s=io;break;case &quot;gotpointercapture &quot;:case &quot;lostpointercapture &quot;:case &quot;pointercancel &quot;:case &quot;pointerdown &quot;:case &quot;pointermove &quot;:case &quot;pointerout &quot;:case &quot;pointerover &quot;:case &quot;pointerup &quot;:s=go}var u=0!=(4 &amp;o),f=function(e,t,n,r,a){for(var o=r?null!==t?t+&quot;Capture &quot;:null:t,i=[],l=e,s=null;null!==l;){var c=l.stateNode;if(5===l.tag &amp;&amp;null!==c &amp;&amp;(s=c,null!==o)){var u=jn(l,o);null!=u &amp;&amp;i.push(Ni(l,u,s))}if(a)break;l=l.return}return i}(n,l,0,u,!u &amp;&amp;&quot;scroll &quot;===t);if(f.length &gt;0){var d=new s(l,c,null,r,a);e.push({event:d,listeners:f})}}})(e,t,n,r,a,o),0==(7 &amp;o)&amp;&amp;(function(e,t,n,r,a,o,i){var l=&quot;mouseover &quot;===t||&quot;pointerover &quot;===t,s=&quot;mouseout &quot;===t||&quot;pointerout &quot;===t;if(l &amp;&amp;0==(16 &amp;o)){var c=r.relatedTarget||r.fromElement;if(c &amp;&amp;(Dl(c)||Ml(c)))return}if(s||l){var u,f,d;if(a.window===a)u=a;else{var p=a.ownerDocument;u=p?p.defaultView||p.parentWindow:window}if(s){var m=r.relatedTarget||r.toElement;f=n,null!==(d=m?Dl(m):null)&amp;&amp;(d!==dr(d)||5!==d.tag &amp;&amp;6!==d.tag)&amp;&amp;(d=null)}else f=null,d=n;if(f!==d){var h=no,g=&quot;onMouseLeave &quot;,v=&quot;onMouseEnter &quot;,y=&quot;mouse &quot;;&quot;pointerout &quot;!==t &amp;&amp;&quot;pointerover &quot;!==t||(h=go,g=&quot;onPointerLeave &quot;,v=&quot;onPointerEnter &quot;,y=&quot;pointer &quot;);var E=null==f?u:jl(f),b=null==d?u:jl(d),T=new h(g,y+&quot;leave &quot;,f,r,a);T.target=E,T.relatedTarget=b;var N=null;if(Dl(a)===n){var R=new h(v,y+&quot;enter &quot;,d,r,a);R.target=b,R.relatedTarget=E,N=R}!function(e,t,n,r,a){var o=r &amp;&amp;a?function(e,t){for(var n=e,r=t,a=0,o=n;o;o=Si(o))a++;for(var i=0,l=r;l;l=Si(l))i++;for(;a-i &gt;0;)n=Si(n),a--;for(;i-a &gt;0;)r=Si(r),i--;for(var s=a;s--;){if(n===r||null!==r &amp;&amp;n===r.alternate)return n;n=Si(n),r=Si(r)}return null}(r,a):null;null!==r &amp;&amp;wi(e,t,r,o,!1),null!==a &amp;&amp;null!==n &amp;&amp;wi(e,n,a,o,!0)}(e,T,N,f,d)}}}(e,t,n,r,a,o),function(e,t,n,r,a,o,i){var l,s,c,u,f=n?jl(n):window;if(&quot;select &quot;===(u=(c=f).nodeName &amp;&amp;c.nodeName.toLowerCase())||&quot;input &quot;===u &amp;&amp;&quot;file &quot;===c.type?l=jo:_o(f)?Fo?l=Go:(l=Vo,s=Bo):function(e){var t=e.nodeName;return t &amp;&amp;&quot;input &quot;===t.toLowerCase()&amp;&amp;(&quot;checkbox &quot;===e.type||&quot;radio &quot;===e.type)}(f)&amp;&amp;(l=Wo),l){var d=l(t,n);if(d)return void Lo(e,d,r,a)}s &amp;&amp;s(t,f,n),&quot;focusout &quot;===t &amp;&amp;function(e){var t=e._wrapperState;t &amp;&amp;t.controlled &amp;&amp;&quot;number &quot;===e.type &amp;&amp;yt(e,&quot;number &quot;,e.value)}(f)}(e,t,n,r,a),function(e,t,n,r,a,o,i){var l=n?jl(n):window;switch(t){case &quot;focusin &quot;:(_o(l)||&quot;true &quot;===l.contentEditable)&amp;&amp;(oi=l,ii=n,li=null);break;case &quot;focusout &quot;:oi=null,ii=null,li=null;break;case &quot;mousedown &quot;:si=!0;break;case &quot;contextmenu &quot;:case &quot;mouseup &quot;:case &quot;dragend &quot;:si=!1,ci(e,r,a);break;case &quot;selectionchange &quot;:if(ai)break;case &quot;keydown &quot;:case &quot;keyup &quot;:ci(e,r,a)}}(e,t,n,r,a),function(e,t,n,r,a,o,i){(function(e,t,n,r,a){var o,i;if(To?o=function(e){switch(e){case &quot;compositionstart &quot;:return &quot;onCompositionStart &quot;;case &quot;compositionend &quot;:return &quot;onCompositionEnd &quot;;case &quot;compositionupdate &quot;:return &quot;onCompositionUpdate &quot;}}(t):ko?Co(t,r)&amp;&amp;(o=&quot;onCompositionEnd &quot;):function(e,t){return &quot;keydown &quot;===e &amp;&amp;229===t.keyCode}(t,r)&amp;&amp;(o=&quot;onCompositionStart &quot;),!o)return null;So &amp;&amp;!Io(r)&amp;&amp;(ko||&quot;onCompositionStart &quot;!==o?&quot;onCompositionEnd &quot;===o &amp;&amp;ko &amp;&amp;(i=Ba()):ko=function(e){return Fa=e,za=Va(),!0}(a));var l=Ri(n,o);if(l.length &gt;0){var s=new lo(o,t,null,r,a);if(e.push({event:s,listeners:l}),i)s.data=i;else{var c=Ao(r);null!==c &amp;&amp;(s.data=c)}}})(e,t,n,r,a),function(e,t,n,r,a){var o;if(!(o=Ro?function(e,t){switch(e){case &quot;compositionend &quot;:return Ao(t);case &quot;keypress &quot;:return 32!==t.which?null:(Oo=!0,wo);case &quot;textInput &quot;:var n=t.data;return n===wo &amp;&amp;Oo?null:n;default:return null}}(t,r):function(e,t){if(ko){if(&quot;compositionend &quot;===e||!To &amp;&amp;Co(e,t)){var n=Ba();return Fa=null,za=null,Ha=null,ko=!1,n}return null}switch(e){case &quot;paste &quot;:return null;case &quot;keypress &quot;:if(!function(e){return(e.ctrlKey||e.altKey||e.metaKey)&amp;&amp;!(e.ctrlKey &amp;&amp;e.altKey)}(t)){if(t.char &amp;&amp;t.char.length &gt;1)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case &quot;compositionend &quot;:return So &amp;&amp;!Io(t)?null:t.data;default:return null}}(t,r)))return null;var i=Ri(n,&quot;onBeforeInput &quot;);if(i.length &gt;0){var l=new so(&quot;onBeforeInput &quot;,&quot;beforeinput &quot;,null,r,a);e.push({event:l,listeners:i}),l.data=o}}(e,t,n,r,a)}(e,t,n,r,a))})(o,e,r,n,Sn(n),t),mi(o,t)}(e,t,n,o)})}function Ni(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ri(e,t){for(var n=t+&quot;Capture &quot;,r=[],a=e;null!==a;){var o=a.stateNode;if(5===a.tag &amp;&amp;null!==o){var i=o,l=jn(a,n);null!=l &amp;&amp;r.unshift(Ni(a,l,i));var s=jn(a,t);null!=s &amp;&amp;r.push(Ni(a,s,i))}a=a.return}return r}function Si(e){if(null===e)return null;do{e=e.return}while(e &amp;&amp;5!==e.tag);return e||null}function wi(e,t,n,r,a){for(var o=t._reactName,i=[],l=n;null!==l &amp;&amp;l!==r;){var s=l.alternate,c=l.stateNode,u=l.tag;if(null!==s &amp;&amp;s===r)break;if(5===u &amp;&amp;null!==c){var f=c;if(a){var d=jn(l,o);null!=d &amp;&amp;i.unshift(Ni(l,d,f))}else if(!a){var p=jn(l,o);null!=p &amp;&amp;i.push(Ni(l,p,f))}}l=l.return}0!==i.length &amp;&amp;e.push({event:t,listeners:i})}function Oi(e,t){return e+&quot;__ &quot;+(t?&quot;capture &quot;:&quot;bubble &quot;)}var Ci,Ai,Ii,ki,xi,_i,Li,Pi,Mi,Di,Ui=!1,ji=&quot;dangerouslySetInnerHTML &quot;,Fi=&quot;suppressContentEditableWarning &quot;,zi=&quot;suppressHydrationWarning &quot;,Hi=&quot;autoFocus &quot;,Bi=&quot;children &quot;,Vi=&quot;style &quot;,Wi=&quot;http://www.w3.org/1999/xhtml &quot;;Ci={dialog:!0,webview:!0},Ii=function(e,t){(function(e,t){sn(e,t)||function(e,t){var n=[];for(var r in t)hn(0,r)||n.push(r);var a=n.map(function(e){return &quot;`&quot;+e+&quot;`&quot;}).join(&quot;, &quot;);1===n.length?s(&quot;Invalid aria prop %s on &lt;%s &gt;tag. For details, see https://reactjs.org/link/invalid-aria-props &quot;,a,e):n.length &gt;1 &amp;&amp;s(&quot;Invalid aria props %s on &lt;%s &gt;tag. For details, see https://reactjs.org/link/invalid-aria-props &quot;,a,e)}(e,t)})(e,t),function(e,t){&quot;input &quot;!==e &amp;&amp;&quot;textarea &quot;!==e &amp;&amp;&quot;select &quot;!==e||null==t||null!==t.value||vn||(vn=!0,s(&quot;select &quot;===e &amp;&amp;t.multiple?&quot;`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.&quot;:&quot;`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.&quot;,e))}(e,t),function(e,t,n){sn(e,t)||function(e,t,n){var r=[];for(var a in t)gn(0,a,t[a],n)||r.push(a);var o=r.map(function(e){return &quot;`&quot;+e+&quot;`&quot;}).join(&quot;, &quot;);1===r.length?s(&quot;Invalid value for prop %s on &lt;%s &gt;tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://reactjs.org/link/attribute-behavior &quot;,o,e):r.length &gt;1 &amp;&amp;s(&quot;Invalid values for props %s on &lt;%s &gt;tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://reactjs.org/link/attribute-behavior &quot;,o,e)}(e,t,n)}(e,t,{registrationNameDependencies:O,possibleRegistrationNames:C})},Pi=k &amp;&amp;!document.documentMode;var Gi=/
?/g,Yi=/|/g;function $i(e){return 9===e.nodeType?e:e.ownerDocument}function Xi(){}function Ki(e){e.onclick=Xi}function qi(e,t){ki(e.nodeValue,t)}function Ji(e,t){Ui||(Ui=!0,s(&quot;Did not expect server HTML to contain a &lt;%s &gt;in &lt;%s &gt;.&quot;,t.nodeName.toLowerCase(),e.nodeName.toLowerCase()))}function Qi(e,t){Ui||(Ui=!0,s(&#039;Did not expect server HTML to contain the text node &quot;%s &quot;in &lt;%s &gt;.&#039;,t.nodeValue,e.nodeName.toLowerCase()))}function Zi(e,t,n){Ui||(Ui=!0,s(&quot;Expected server HTML to contain a matching &lt;%s &gt;in &lt;%s &gt;.&quot;,t,e.nodeName.toLowerCase()))}function el(e,t){&quot;&quot;!==t &amp;&amp;(Ui||(Ui=!0,s(&#039;Expected server HTML to contain a matching text node for &quot;%s &quot;in &lt;%s &gt;.&#039;,t,e.nodeName.toLowerCase())))}Mi=function(e){return(&quot;string &quot;==typeof e?e:&quot;&quot;+e).replace(Gi,&quot;
 &quot;).replace(Yi,&quot;&quot;)},ki=function(e,t){if(!Ui){var n=Mi(t),r=Mi(e);r!==n &amp;&amp;(Ui=!0,s(&#039;Text content did not match. Server: &quot;%s &quot;Client: &quot;%s &quot;&#039;,r,n))}},xi=function(e,t,n){if(!Ui){var r=Mi(n),a=Mi(t);a!==r &amp;&amp;(Ui=!0,s(&quot;Prop `%s` did not match. Server: %s Client: %s &quot;,e,JSON.stringify(a),JSON.stringify(r)))}},_i=function(e){if(!Ui){Ui=!0;var t=[];e.forEach(function(e){t.push(e)}),s(&quot;Extra attributes from the server: %s &quot;,t)}},Li=function(e,t){!1===t?s(&quot;Expected `%s` listener to be a function, instead got `false`.

If you used to conditionally omit it with %s={condition &amp;&amp;value}, pass %s={condition ? value : undefined} instead.&quot;,e,e,e):s(&quot;Expected `%s` listener to be a function, instead got a value of `%s` type.&quot;,e,typeof t)},Di=function(e,t){var n=e.namespaceURI===Wi?e.ownerDocument.createElement(e.tagName):e.ownerDocument.createElementNS(e.namespaceURI,e.tagName);return n.innerHTML=t,n.innerHTML};var tl,nl,rl=[&quot;address &quot;,&quot;applet &quot;,&quot;area &quot;,&quot;article &quot;,&quot;aside &quot;,&quot;base &quot;,&quot;basefont &quot;,&quot;bgsound &quot;,&quot;blockquote &quot;,&quot;body &quot;,&quot;br &quot;,&quot;button &quot;,&quot;caption &quot;,&quot;center &quot;,&quot;col &quot;,&quot;colgroup &quot;,&quot;dd &quot;,&quot;details &quot;,&quot;dir &quot;,&quot;div &quot;,&quot;dl &quot;,&quot;dt &quot;,&quot;embed &quot;,&quot;fieldset &quot;,&quot;figcaption &quot;,&quot;figure &quot;,&quot;footer &quot;,&quot;form &quot;,&quot;frame &quot;,&quot;frameset &quot;,&quot;h1 &quot;,&quot;h2 &quot;,&quot;h3 &quot;,&quot;h4 &quot;,&quot;h5 &quot;,&quot;h6 &quot;,&quot;head &quot;,&quot;header &quot;,&quot;hgroup &quot;,&quot;hr &quot;,&quot;html &quot;,&quot;iframe &quot;,&quot;img &quot;,&quot;input &quot;,&quot;isindex &quot;,&quot;li &quot;,&quot;link &quot;,&quot;listing &quot;,&quot;main &quot;,&quot;marquee &quot;,&quot;menu &quot;,&quot;menuitem &quot;,&quot;meta &quot;,&quot;nav &quot;,&quot;noembed &quot;,&quot;noframes &quot;,&quot;noscript &quot;,&quot;object &quot;,&quot;ol &quot;,&quot;p &quot;,&quot;param &quot;,&quot;plaintext &quot;,&quot;pre &quot;,&quot;script &quot;,&quot;section &quot;,&quot;select &quot;,&quot;source &quot;,&quot;style &quot;,&quot;summary &quot;,&quot;table &quot;,&quot;tbody &quot;,&quot;td &quot;,&quot;template &quot;,&quot;textarea &quot;,&quot;tfoot &quot;,&quot;th &quot;,&quot;thead &quot;,&quot;title &quot;,&quot;tr &quot;,&quot;track &quot;,&quot;ul &quot;,&quot;wbr &quot;,&quot;xmp &quot;],al=[&quot;applet &quot;,&quot;caption &quot;,&quot;html &quot;,&quot;table &quot;,&quot;td &quot;,&quot;th &quot;,&quot;marquee &quot;,&quot;object &quot;,&quot;template &quot;,&quot;foreignObject &quot;,&quot;desc &quot;,&quot;title &quot;],ol=al.concat([&quot;button &quot;]),il=[&quot;dd &quot;,&quot;dt &quot;,&quot;li &quot;,&quot;option &quot;,&quot;optgroup &quot;,&quot;p &quot;,&quot;rp &quot;,&quot;rt &quot;],ll={current:null,formTag:null,aTagInScope:null,buttonTagInScope:null,nobrTagInScope:null,pTagInButtonScope:null,listItemTagAutoclosing:null,dlItemTagAutoclosing:null};nl=function(e,t){var r=n({},e||ll),a={tag:t};return-1!==al.indexOf(t)&amp;&amp;(r.aTagInScope=null,r.buttonTagInScope=null,r.nobrTagInScope=null),-1!==ol.indexOf(t)&amp;&amp;(r.pTagInButtonScope=null),-1!==rl.indexOf(t)&amp;&amp;&quot;address &quot;!==t &amp;&amp;&quot;div &quot;!==t &amp;&amp;&quot;p &quot;!==t &amp;&amp;(r.listItemTagAutoclosing=null,r.dlItemTagAutoclosing=null),r.current=a,&quot;form &quot;===t &amp;&amp;(r.formTag=a),&quot;a &quot;===t &amp;&amp;(r.aTagInScope=a),&quot;button &quot;===t &amp;&amp;(r.buttonTagInScope=a),&quot;nobr &quot;===t &amp;&amp;(r.nobrTagInScope=a),&quot;p &quot;===t &amp;&amp;(r.pTagInButtonScope=a),&quot;li &quot;===t &amp;&amp;(r.listItemTagAutoclosing=a),&quot;dd &quot;!==t &amp;&amp;&quot;dt &quot;!==t||(r.dlItemTagAutoclosing=a),r};var sl={};tl=function(e,t,n){var r=(n=n||ll).current,a=r &amp;&amp;r.tag;null!=t &amp;&amp;(null!=e &amp;&amp;s(&quot;validateDOMNesting: when childText is passed, childTag should be null &quot;),e=&quot;#text &quot;);var o=function(e,t){switch(t){case &quot;select &quot;:return &quot;option &quot;===e||&quot;optgroup &quot;===e||&quot;#text &quot;===e;case &quot;optgroup &quot;:return &quot;option &quot;===e||&quot;#text &quot;===e;case &quot;option &quot;:return &quot;#text &quot;===e;case &quot;tr &quot;:return &quot;th &quot;===e||&quot;td &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;tbody &quot;:case &quot;thead &quot;:case &quot;tfoot &quot;:return &quot;tr &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;colgroup &quot;:return &quot;col &quot;===e||&quot;template &quot;===e;case &quot;table &quot;:return &quot;caption &quot;===e||&quot;colgroup &quot;===e||&quot;tbody &quot;===e||&quot;tfoot &quot;===e||&quot;thead &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;head &quot;:return &quot;base &quot;===e||&quot;basefont &quot;===e||&quot;bgsound &quot;===e||&quot;link &quot;===e||&quot;meta &quot;===e||&quot;title &quot;===e||&quot;noscript &quot;===e||&quot;noframes &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;html &quot;:return &quot;head &quot;===e||&quot;body &quot;===e||&quot;frameset &quot;===e;case &quot;frameset &quot;:return &quot;frame &quot;===e;case &quot;#document &quot;:return &quot;html &quot;===e}switch(e){case &quot;h1 &quot;:case &quot;h2 &quot;:case &quot;h3 &quot;:case &quot;h4 &quot;:case &quot;h5 &quot;:case &quot;h6 &quot;:return &quot;h1 &quot;!==t &amp;&amp;&quot;h2 &quot;!==t &amp;&amp;&quot;h3 &quot;!==t &amp;&amp;&quot;h4 &quot;!==t &amp;&amp;&quot;h5 &quot;!==t &amp;&amp;&quot;h6 &quot;!==t;case &quot;rp &quot;:case &quot;rt &quot;:return-1===il.indexOf(t);case &quot;body &quot;:case &quot;caption &quot;:case &quot;col &quot;:case &quot;colgroup &quot;:case &quot;frameset &quot;:case &quot;frame &quot;:case &quot;head &quot;:case &quot;html &quot;:case &quot;tbody &quot;:case &quot;td &quot;:case &quot;tfoot &quot;:case &quot;th &quot;:case &quot;thead &quot;:case &quot;tr &quot;:return null==t}return!0}(e,a)?null:r,i=o?null:function(e,t){switch(e){case &quot;address &quot;:case &quot;article &quot;:case &quot;aside &quot;:case &quot;blockquote &quot;:case &quot;center &quot;:case &quot;details &quot;:case &quot;dialog &quot;:case &quot;dir &quot;:case &quot;div &quot;:case &quot;dl &quot;:case &quot;fieldset &quot;:case &quot;figcaption &quot;:case &quot;figure &quot;:case &quot;footer &quot;:case &quot;header &quot;:case &quot;hgroup &quot;:case &quot;main &quot;:case &quot;menu &quot;:case &quot;nav &quot;:case &quot;ol &quot;:case &quot;p &quot;:case &quot;section &quot;:case &quot;summary &quot;:case &quot;ul &quot;:case &quot;pre &quot;:case &quot;listing &quot;:case &quot;table &quot;:case &quot;hr &quot;:case &quot;xmp &quot;:case &quot;h1 &quot;:case &quot;h2 &quot;:case &quot;h3 &quot;:case &quot;h4 &quot;:case &quot;h5 &quot;:case &quot;h6 &quot;:return t.pTagInButtonScope;case &quot;form &quot;:return t.formTag||t.pTagInButtonScope;case &quot;li &quot;:return t.listItemTagAutoclosing;case &quot;dd &quot;:case &quot;dt &quot;:return t.dlItemTagAutoclosing;case &quot;button &quot;:return t.buttonTagInScope;case &quot;a &quot;:return t.aTagInScope;case &quot;nobr &quot;:return t.nobrTagInScope}return null}(e,n),l=o||i;if(l){var c=l.tag,u=!!o+&quot;|&quot;+e+&quot;|&quot;+c;if(!sl[u]){sl[u]=!0;var f=e,d=&quot;&quot;;if(&quot;#text &quot;===e?/\S/.test(t)?f=&quot;Text nodes &quot;:(f=&quot;Whitespace text nodes &quot;,d=&quot;Make sure you don &#039;t have any extra whitespace between tags on each line of your source code.&quot;):f=&quot;&lt;&quot;+e+&quot;&gt;&quot;,o){var p=&quot;&quot;;&quot;table &quot;===c &amp;&amp;&quot;tr &quot;===e &amp;&amp;(p+=&quot;Add a &lt;tbody &gt;, &lt;thead &gt;or &lt;tfoot &gt;to your code to match the DOM tree generated by the browser.&quot;),s(&quot;validateDOMNesting(...): %s cannot appear as a child of &lt;%s &gt;.%s%s &quot;,f,c,d,p)}else s(&quot;validateDOMNesting(...): %s cannot appear as a descendant of &lt;%s &gt;.&quot;,f,c)}}};var cl=&quot;$?&quot;,ul=&quot;$!&quot;,fl=null,dl=null;function pl(e,t){switch(e){case &quot;button &quot;:case &quot;input &quot;:case &quot;select &quot;:case &quot;textarea &quot;:return!!t.autoFocus}return!1}function ml(e,t){return &quot;textarea &quot;===e||&quot;option &quot;===e||&quot;noscript &quot;===e||&quot;string &quot;==typeof t.children||&quot;number &quot;==typeof t.children||&quot;object &quot;==typeof t.dangerouslySetInnerHTML &amp;&amp;null!==t.dangerouslySetInnerHTML &amp;&amp;null!=t.dangerouslySetInnerHTML.__html}var hl=&quot;function &quot;==typeof setTimeout?setTimeout:void 0,gl=&quot;function &quot;==typeof clearTimeout?clearTimeout:void 0;function vl(e){Ht(e,&quot;&quot;)}function yl(e,t){e.removeChild(t)}function El(e){var t=(e=e).style;&quot;function &quot;==typeof t.setProperty?t.setProperty(&quot;display &quot;,&quot;none &quot;,&quot;important &quot;):t.display=&quot;none &quot;}function bl(e,t){e=e;var n=t.style,r=null!=n &amp;&amp;n.hasOwnProperty(&quot;display &quot;)?n.display:null;e.style.display=Gt(&quot;display &quot;,r)}function Tl(e){if(1===e.nodeType)e.textContent=&quot;&quot;;else if(9===e.nodeType){var t=e.body;null!=t &amp;&amp;(t.textContent=&quot;&quot;)}}function Nl(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Rl(e){return Nl(e.nextSibling)}function Sl(e){return Nl(e.firstChild)}function wl(e){for(var t=e.previousSibling,n=0;t;){if(8===t.nodeType){var r=t.data;if(&quot;$ &quot;===r||r===ul||r===cl){if(0===n)return t;n--}else &quot;/$ &quot;===r &amp;&amp;n++}t=t.previousSibling}return null}var Ol=0;function Cl(e){var t=&quot;r:&quot;+(Ol++).toString(36);return{toString:function(){return e(),t},valueOf:function(){return e(),t}}}var Al=Math.random().toString(36).slice(2),Il=&quot;__reactFiber$ &quot;+Al,kl=&quot;__reactProps$ &quot;+Al,xl=&quot;__reactContainer$ &quot;+Al,_l=&quot;__reactEvents$ &quot;+Al;function Ll(e,t){t[Il]=e}function Pl(e){e[xl]=null}function Ml(e){return!!e[xl]}function Dl(e){var t=e[Il];if(t)return t;for(var n=e.parentNode;n;){if(t=n[xl]||n[Il]){var r=t.alternate;if(null!==t.child||null!==r &amp;&amp;null!==r.child)for(var a=wl(e);null!==a;){var o=a[Il];if(o)return o;a=wl(a)}return t}n=(e=n).parentNode}return null}function Ul(e){var t=e[Il]||e[xl];return!t||5!==t.tag &amp;&amp;6!==t.tag &amp;&amp;t.tag!==h &amp;&amp;3!==t.tag?null:t}function jl(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(&quot;getNodeFromInstance: Invalid argument.&quot;)}function Fl(e){return e[kl]||null}function zl(e,t){e[kl]=t}function Hl(e){var t=e[_l];return void 0===t &amp;&amp;(t=e[_l]=new Set),t}var Bl={},Vl=o.ReactDebugCurrentFrame;function Wl(e){if(e){var t=e._owner,n=ze(e.type,e._source,t?t.type:null);Vl.setExtraStackFrame(n)}else Vl.setExtraStackFrame(null)}function Gl(e,t,n,r,a){var o=Function.call.bind(Object.prototype.hasOwnProperty);for(var i in e)if(o(e,i)){var l=void 0;try{if(&quot;function &quot;!=typeof e[i]){var c=Error((r||&quot;React class &quot;)+&quot;: &quot;+n+&quot;type `&quot;+i+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+typeof e[i]+&quot;`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.&quot;);throw c.name=&quot;Invariant Violation &quot;,c}l=e[i](t,i,r,n,null,&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;)}catch(e){l=e}!l||l instanceof Error||(Wl(a),s(&quot;%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).&quot;,r||&quot;React class &quot;,n,i,typeof l),Wl(null)),l instanceof Error &amp;&amp;!(l.message in Bl)&amp;&amp;(Bl[l.message]=!0,Wl(a),s(&quot;Failed %s type: %s &quot;,n,l.message),Wl(null))}}var Yl,$l=[];Yl=[];var Xl,Kl=-1;function ql(e){return{current:e}}function Jl(e,t){Kl &lt;0?s(&quot;Unexpected pop.&quot;):(t!==Yl[Kl]&amp;&amp;s(&quot;Unexpected Fiber popped.&quot;),e.current=$l[Kl],$l[Kl]=null,Yl[Kl]=null,Kl--)}function Ql(e,t,n){Kl++,$l[Kl]=e.current,Yl[Kl]=n,e.current=t}Xl={};var Zl={};Object.freeze(Zl);var es=ql(Zl),ts=ql(!1),ns=Zl;function rs(e,t,n){return n &amp;&amp;ls(t)?ns:es.current}function as(e,t,n){var r=e.stateNode;r.__reactInternalMemoizedUnmaskedChildContext=t,r.__reactInternalMemoizedMaskedChildContext=n}function os(e,t){var n=e.type,r=n.contextTypes;if(!r)return Zl;var a=e.stateNode;if(a &amp;&amp;a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var o={};for(var i in r)o[i]=t[i];return Gl(r,o,&quot;context &quot;,We(n)||&quot;Unknown &quot;),a &amp;&amp;as(e,t,o),o}function is(){return ts.current}function ls(e){return null!=e.childContextTypes}function ss(e){Jl(ts,e),Jl(es,e)}function cs(e){Jl(ts,e),Jl(es,e)}function us(e,t,n){if(es.current!==Zl)throw Error(&quot;Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.&quot;);Ql(es,t,e),Ql(ts,n,e)}function fs(e,t,r){var a=e.stateNode,o=t.childContextTypes;if(&quot;function &quot;!=typeof a.getChildContext){var i=We(t)||&quot;Unknown &quot;;return Xl[i]||(Xl[i]=!0,s(&quot;%s.childContextTypes is specified but there is no getChildContext() method on the instance. You can either define getChildContext() on %s or remove childContextTypes from it.&quot;,i,i)),r}var l=a.getChildContext();for(var c in l)if(!(c in o))throw Error((We(t)||&quot;Unknown &quot;)+&#039;.getChildContext(): key &quot;&#039;+c+&#039;&quot;is not defined in childContextTypes.&#039;);return Gl(o,l,&quot;child context &quot;,We(t)||&quot;Unknown &quot;),n({},r,l)}function ds(e){var t=e.stateNode;return ns=es.current,Ql(es,t &amp;&amp;t.__reactInternalMemoizedMergedChildContext||Zl,e),Ql(ts,ts.current,e),!0}function ps(e,t,n){var r=e.stateNode;if(!r)throw Error(&quot;Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.&quot;);if(n){var a=fs(e,t,ns);r.__reactInternalMemoizedMergedChildContext=a,Jl(ts,e),Jl(es,e),Ql(es,a,e),Ql(ts,n,e)}else Jl(ts,e),Ql(ts,n,e)}var ms=null,hs=null,gs=!1,vs=&quot;undefined &quot;!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__;function ys(e,t){if(hs &amp;&amp;&quot;function &quot;==typeof hs.onCommitFiberRoot)try{hs.onCommitFiberRoot(ms,e,t,(e.current.flags &amp;ar)===ar)}catch(e){gs||(gs=!0,s(&quot;React instrumentation encountered an error: %s &quot;,e))}}var Es=r.unstable_runWithPriority,bs=r.unstable_scheduleCallback,Ts=r.unstable_cancelCallback,Ns=r.unstable_shouldYield,Rs=r.unstable_requestPaint,Ss=r.unstable_now,ws=r.unstable_getCurrentPriorityLevel,Os=r.unstable_ImmediatePriority,Cs=r.unstable_UserBlockingPriority,As=r.unstable_NormalPriority,Is=r.unstable_LowPriority,ks=r.unstable_IdlePriority;if(null==a.__interactionsRef||null==a.__interactionsRef.current)throw Error(&quot;It is not supported to run the profiling version of a renderer (for example, `react-dom/profiling`) without also replacing the `scheduler/tracing` module with `scheduler/tracing-profiling`. Your bundler might have a setting for aliasing both modules. Learn more at https://reactjs.org/link/profiling &quot;);var xs={},_s=99,Ls=98,Ps=97,Ms=Ns,Ds=void 0!==Rs?Rs:function(){},Us=null,js=null,Fs=!1,zs=Ss(),Hs=zs &lt;1e4?Ss:function(){return Ss()-zs};function Bs(){switch(ws()){case Os:return _s;case Cs:return Ls;case As:return Ps;case Is:return 96;case ks:return 95;default:throw Error(&quot;Unknown priority level.&quot;)}}function Vs(e){switch(e){case _s:return Os;case Ls:return Cs;case Ps:return As;case 96:return Is;case 95:return ks;default:throw Error(&quot;Unknown priority level.&quot;)}}function Ws(e,t){var n=Vs(e);return Es(n,t)}function Gs(e,t,n){var r=Vs(e);return bs(r,t,n)}function Ys(e){e!==xs &amp;&amp;Ts(e)}function $s(){if(null!==js){var e=js;js=null,Ts(e)}Xs()}function Xs(){if(!Fs &amp;&amp;null!==Us){Fs=!0;var e=0;try{var t=Us;Ws(_s,function(){for(;e &lt;t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}}),Us=null}catch(t){throw null!==Us &amp;&amp;(Us=Us.slice(e+1)),bs(Os,$s),t}finally{Fs=!1}}}var Ks=&quot;17.0.2 &quot;,qs=o.ReactCurrentBatchConfig,Js={recordUnsafeLifecycleWarnings:function(e,t){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(e,t){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},Qs=function(e){var t=[];return e.forEach(function(e){t.push(e)}),t.sort().join(&quot;, &quot;)},Zs=[],ec=[],tc=[],nc=[],rc=[],ac=[],oc=new Set;Js.recordUnsafeLifecycleWarnings=function(e,t){oc.has(e.type)||(&quot;function &quot;==typeof t.componentWillMount &amp;&amp;!0!==t.componentWillMount.__suppressDeprecationWarning &amp;&amp;Zs.push(e),1 &amp;e.mode &amp;&amp;&quot;function &quot;==typeof t.UNSAFE_componentWillMount &amp;&amp;ec.push(e),&quot;function &quot;==typeof t.componentWillReceiveProps &amp;&amp;!0!==t.componentWillReceiveProps.__suppressDeprecationWarning &amp;&amp;tc.push(e),1 &amp;e.mode &amp;&amp;&quot;function &quot;==typeof t.UNSAFE_componentWillReceiveProps &amp;&amp;nc.push(e),&quot;function &quot;==typeof t.componentWillUpdate &amp;&amp;!0!==t.componentWillUpdate.__suppressDeprecationWarning &amp;&amp;rc.push(e),1 &amp;e.mode &amp;&amp;&quot;function &quot;==typeof t.UNSAFE_componentWillUpdate &amp;&amp;ac.push(e))},Js.flushPendingUnsafeLifecycleWarnings=function(){var e=new Set;Zs.length &gt;0 &amp;&amp;(Zs.forEach(function(t){e.add(We(t.type)||&quot;Component &quot;),oc.add(t.type)}),Zs=[]);var t=new Set;ec.length &gt;0 &amp;&amp;(ec.forEach(function(e){t.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),ec=[]);var n=new Set;tc.length &gt;0 &amp;&amp;(tc.forEach(function(e){n.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),tc=[]);var r=new Set;nc.length &gt;0 &amp;&amp;(nc.forEach(function(e){r.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),nc=[]);var a=new Set;rc.length &gt;0 &amp;&amp;(rc.forEach(function(e){a.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),rc=[]);var o=new Set;ac.length &gt;0 &amp;&amp;(ac.forEach(function(e){o.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),ac=[]),t.size &gt;0 &amp;&amp;s(&quot;Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move code with side effects to componentDidMount, and set initial state in the constructor.

Please update the following components: %s &quot;,Qs(t)),r.size &gt;0 &amp;&amp;s(&quot;Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you &#039;re updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state

Please update the following components: %s &quot;,Qs(r)),o.size &gt;0 &amp;&amp;s(&quot;Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.

Please update the following components: %s &quot;,Qs(o)),e.size &gt;0 &amp;&amp;i(&quot;componentWillMount has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move code with side effects to componentDidMount, and set initial state in the constructor.
* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: %s &quot;,Qs(e)),n.size &gt;0 &amp;&amp;i(&quot;componentWillReceiveProps has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you &#039;re updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: %s &quot;,Qs(n)),a.size &gt;0 &amp;&amp;i(&quot;componentWillUpdate has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: %s &quot;,Qs(a))};var ic=new Map,lc=new Set;function sc(e,t){if(e &amp;&amp;e.defaultProps){var r=n({},t),a=e.defaultProps;for(var o in a)void 0===r[o]&amp;&amp;(r[o]=a[o]);return r}return t}Js.recordLegacyContextWarning=function(e,t){var n=function(e){for(var t=null,n=e;null!==n;)1 &amp;n.mode &amp;&amp;(t=n),n=n.return;return t}(e);if(null!==n){if(!lc.has(e.type)){var r=ic.get(n);(null!=e.type.contextTypes||null!=e.type.childContextTypes||null!==t &amp;&amp;&quot;function &quot;==typeof t.getChildContext)&amp;&amp;(void 0===r &amp;&amp;ic.set(n,r=[]),r.push(e))}}else s(&quot;Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.&quot;)},Js.flushLegacyContextWarning=function(){ic.forEach(function(e,t){if(0!==e.length){var n=e[0],r=new Set;e.forEach(function(e){r.add(We(e.type)||&quot;Component &quot;),lc.add(e.type)});var a=Qs(r);try{Je(n),s(&quot;Legacy context API has been detected within a strict-mode tree.

The old API will be supported in all 16.x releases, but applications using it should migrate to the new version.

Please update the following components: %s

Learn more about this warning here: https://reactjs.org/link/legacy-context &quot;,a)}finally{qe()}}})},Js.discardPendingWarnings=function(){Zs=[],ec=[],tc=[],nc=[],rc=[],ac=[],ic=new Map};var cc,uc=1073741823,fc=ql(null);cc={};var dc=null,pc=null,mc=null,hc=!1;function gc(){dc=null,pc=null,mc=null,hc=!1}function vc(){hc=!0}function yc(){hc=!1}function Ec(e,t){var n=e.type._context;Ql(fc,n._currentValue,e),n._currentValue=t,null!=n._currentRenderer &amp;&amp;n._currentRenderer!==cc &amp;&amp;s(&quot;Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported.&quot;),n._currentRenderer=cc}function bc(e){var t=fc.current;Jl(fc,e),e.type._context._currentValue=t}function Tc(e,t){for(var n=e;null!==n;){var r=n.alternate;if(Ta(n.childLanes,t)){if(null===r||Ta(r.childLanes,t))break;r.childLanes=Na(r.childLanes,t)}else n.childLanes=Na(n.childLanes,t),null!==r &amp;&amp;(r.childLanes=Na(r.childLanes,t));n=n.return}}function Nc(e,t){dc=e,pc=null,mc=null;var n=e.dependencies;null!==n &amp;&amp;null!==n.firstContext &amp;&amp;(ba(n.lanes,t)&amp;&amp;hp(),n.firstContext=null)}function Rc(e,t){if(hc &amp;&amp;s(&quot;Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().&quot;),mc===e);else if(!1===t||0===t);else{var n;&quot;number &quot;!=typeof t||t===uc?(mc=e,n=uc):n=t;var r={context:e,observedBits:n,next:null};if(null===pc){if(null===dc)throw Error(&quot;Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().&quot;);pc=r,dc.dependencies={lanes:0,firstContext:r,responders:null}}else pc=pc.next=r}return e._currentValue}var Sc,wc,Oc=!1;function Cc(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function Ac(e,t){var n=e.updateQueue;t.updateQueue===n &amp;&amp;(t.updateQueue={baseState:n.baseState,firstBaseUpdate:n.firstBaseUpdate,lastBaseUpdate:n.lastBaseUpdate,shared:n.shared,effects:n.effects})}function Ic(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function kc(e,t){var n=e.updateQueue;if(null!==n){var r=n.shared,a=r.pending;null===a?t.next=t:(t.next=a.next,a.next=t),r.pending=t,wc!==r||Sc||(s(&quot;An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.&quot;),Sc=!0)}}function xc(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r){var a=r.updateQueue;if(n===a){var o=null,i=null,l=n.firstBaseUpdate;if(null!==l){var s=l;do{var c={eventTime:s.eventTime,lane:s.lane,tag:s.tag,payload:s.payload,callback:s.callback,next:null};null===i?o=i=c:(i.next=c,i=c),s=s.next}while(null!==s);null===i?o=i=t:(i.next=t,i=t)}else o=i=t;return void(e.updateQueue=n={baseState:a.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:a.shared,effects:a.effects})}}var u=n.lastBaseUpdate;null===u?n.firstBaseUpdate=t:u.next=t,n.lastBaseUpdate=t}function _c(e,t,r,a,o,i){switch(r.tag){case 1:var l=r.payload;if(&quot;function &quot;==typeof l){vc();var s=l.call(i,a,o);if(1 &amp;e.mode){ke();try{l.call(i,a,o)}finally{xe()}}return yc(),s}return l;case 3:e.flags=-4097 &amp;e.flags|ar;case 0:var c,u=r.payload;if(&quot;function &quot;==typeof u){if(vc(),c=u.call(i,a,o),1 &amp;e.mode){ke();try{u.call(i,a,o)}finally{xe()}}yc()}else c=u;return null==c?a:n({},a,c);case 2:return Oc=!0,a}return a}function Lc(e,t,n,r){var a=e.updateQueue;Oc=!1,wc=a.shared;var o=a.firstBaseUpdate,i=a.lastBaseUpdate,l=a.shared.pending;if(null!==l){a.shared.pending=null;var s=l,c=s.next;s.next=null,null===i?o=c:i.next=c,i=s;var u=e.alternate;if(null!==u){var f=u.updateQueue,d=f.lastBaseUpdate;d!==i &amp;&amp;(null===d?f.firstBaseUpdate=c:d.next=c,f.lastBaseUpdate=s)}}if(null!==o){for(var p=a.baseState,m=0,h=null,g=null,v=null,y=o;;){var E=y.lane,b=y.eventTime;if(Ta(r,E)){if(null!==v &amp;&amp;(v=v.next={eventTime:b,lane:0,tag:y.tag,payload:y.payload,callback:y.callback,next:null}),p=_c(e,0,y,p,t,n),null!==y.callback){e.flags|=32;var T=a.effects;null===T?a.effects=[y]:T.push(y)}}else{var N={eventTime:b,lane:E,tag:y.tag,payload:y.payload,callback:y.callback,next:null};null===v?(g=v=N,h=p):v=v.next=N,m=Na(m,E)}if(null===(y=y.next)){if(null===(l=a.shared.pending))break;var R=l,S=R.next;R.next=null,y=S,a.lastBaseUpdate=R,a.shared.pending=null}}null===v &amp;&amp;(h=p),a.baseState=h,a.firstBaseUpdate=g,a.lastBaseUpdate=v,ih(m),e.lanes=m,e.memoizedState=p}wc=null}function Pc(e,t){if(&quot;function &quot;!=typeof e)throw Error(&quot;Invalid argument passed as callback. Expected a function. Instead received: &quot;+e);e.call(t)}function Mc(){Oc=!1}function Dc(){return Oc}function Uc(e,t,n){var r=t.effects;if(t.effects=null,null!==r)for(var a=0;a &lt;r.length;a++){var o=r[a],i=o.callback;null!==i &amp;&amp;(o.callback=null,Pc(i,n))}}Sc=!1,wc=null;var jc,Fc,zc,Hc,Bc,Vc,Wc,Gc,Yc,$c,Xc={},Kc=Array.isArray,qc=(new e.Component).refs;jc=new Set,Fc=new Set,zc=new Set,Hc=new Set,Gc=new Set,Bc=new Set,Yc=new Set,$c=new Set;var Jc=new Set;function Qc(e,t,r,a){var o=e.memoizedState;if(1 &amp;e.mode){ke();try{r(a,o)}finally{xe()}}var i=r(a,o);Vc(t,i);var l=null==i?o:n({},o,i);e.memoizedState=l,0===e.lanes &amp;&amp;(e.updateQueue.baseState=l)}Wc=function(e,t){if(null!==e &amp;&amp;&quot;function &quot;!=typeof e){var n=t+&quot;_ &quot;+e;Jc.has(n)||(Jc.add(n),s(&quot;%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.&quot;,t,e))}},Vc=function(e,t){if(void 0===t){var n=We(e)||&quot;Component &quot;;Bc.has(n)||(Bc.add(n),s(&quot;%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.&quot;,n))}},Object.defineProperty(Xc,&quot;_processChildContext &quot;,{enumerable:!1,value:function(){throw Error(&quot;_processChildContext is not available in React 16+. This likely means you have multiple copies of React and are attempting to nest a React 15 tree inside a React 16 tree using unstable_renderSubtreeIntoContainer, which isn &#039;t supported. Try to make sure you have only one copy of React (and ideally, switch to ReactDOM.createPortal).&quot;)}}),Object.freeze(Xc);var Zc,eu,tu,nu,ru,au,ou={isMounted:function(e){var t=fr.current;if(null!==t &amp;&amp;1===t.tag){var n=t.stateNode;n._warnedAboutRefsInRender||s(&quot;%s is accessing isMounted inside its render() function. render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.&quot;,We(t.type)||&quot;A component &quot;),n._warnedAboutRefsInRender=!0}var r=Zn(e);return!!r &amp;&amp;dr(r)===r},enqueueSetState:function(e,t,n){var r=Zn(e),a=Hm(),o=Bm(r),i=Ic(a,o);i.payload=t,null!=n &amp;&amp;(Wc(n,&quot;setState &quot;),i.callback=n),kc(r,i),Vm(r,o,a)},enqueueReplaceState:function(e,t,n){var r=Zn(e),a=Hm(),o=Bm(r),i=Ic(a,o);i.tag=1,i.payload=t,null!=n &amp;&amp;(Wc(n,&quot;replaceState &quot;),i.callback=n),kc(r,i),Vm(r,o,a)},enqueueForceUpdate:function(e,t){var n=Zn(e),r=Hm(),a=Bm(n),o=Ic(r,a);o.tag=2,null!=t &amp;&amp;(Wc(t,&quot;forceUpdate &quot;),o.callback=t),kc(n,o),Vm(n,a,r)}};function iu(e,t,n,r,a,o,i){var l=e.stateNode;if(&quot;function &quot;==typeof l.shouldComponentUpdate){if(1 &amp;e.mode){ke();try{l.shouldComponentUpdate(r,o,i)}finally{xe()}}var c=l.shouldComponentUpdate(r,o,i);return void 0===c &amp;&amp;s(&quot;%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.&quot;,We(t)||&quot;Component &quot;),c}return!(t.prototype &amp;&amp;t.prototype.isPureReactComponent &amp;&amp;Xo(n,r)&amp;&amp;Xo(a,o))}function lu(e,t){t.updater=ou,e.stateNode=t,t._reactInternals=e,t._reactInternalInstance=Xc}function su(e,t,n){var r,a=!1,o=Zl,i=Zl,l=t.contextType;if(!(&quot;contextType &quot;in t)||null===l||void 0!==l &amp;&amp;l.$$typeof===oe &amp;&amp;void 0===l._context||$c.has(t)||($c.add(t),r=void 0===l?&quot;However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.&quot;:&quot;object &quot;!=typeof l?&quot;However, it is set to a &quot;+typeof l+&quot;.&quot;:l.$$typeof===ae?&quot;Did you accidentally pass the Context.Provider instead?&quot;:void 0!==l._context?&quot;Did you accidentally pass the Context.Consumer instead?&quot;:&quot;However, it is set to an object with keys {&quot;+Object.keys(l).join(&quot;, &quot;)+&quot;}.&quot;,s(&quot;%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s &quot;,We(t)||&quot;Component &quot;,r)),&quot;object &quot;==typeof l &amp;&amp;null!==l?i=Rc(l):(o=rs(0,t,!0),i=(a=null!=t.contextTypes)?os(e,o):Zl),1 &amp;e.mode){ke();try{new t(n,i)}finally{xe()}}var c=new t(n,i),u=e.memoizedState=null!=c.state?c.state:null;if(lu(e,c),&quot;function &quot;==typeof t.getDerivedStateFromProps &amp;&amp;null===u){var f=We(t)||&quot;Component &quot;;Fc.has(f)||(Fc.add(f),s(&quot;`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.&quot;,f,null===c.state?&quot;null &quot;:&quot;undefined &quot;,f))}if(&quot;function &quot;==typeof t.getDerivedStateFromProps||&quot;function &quot;==typeof c.getSnapshotBeforeUpdate){var d=null,p=null,m=null;if(&quot;function &quot;==typeof c.componentWillMount &amp;&amp;!0!==c.componentWillMount.__suppressDeprecationWarning?d=&quot;componentWillMount &quot;:&quot;function &quot;==typeof c.UNSAFE_componentWillMount &amp;&amp;(d=&quot;UNSAFE_componentWillMount &quot;),&quot;function &quot;==typeof c.componentWillReceiveProps &amp;&amp;!0!==c.componentWillReceiveProps.__suppressDeprecationWarning?p=&quot;componentWillReceiveProps &quot;:&quot;function &quot;==typeof c.UNSAFE_componentWillReceiveProps &amp;&amp;(p=&quot;UNSAFE_componentWillReceiveProps &quot;),&quot;function &quot;==typeof c.componentWillUpdate &amp;&amp;!0!==c.componentWillUpdate.__suppressDeprecationWarning?m=&quot;componentWillUpdate &quot;:&quot;function &quot;==typeof c.UNSAFE_componentWillUpdate &amp;&amp;(m=&quot;UNSAFE_componentWillUpdate &quot;),null!==d||null!==p||null!==m){var h=We(t)||&quot;Component &quot;,g=&quot;function &quot;==typeof t.getDerivedStateFromProps?&quot;getDerivedStateFromProps()&quot;:&quot;getSnapshotBeforeUpdate()&quot;;Hc.has(h)||(Hc.add(h),s(&quot;Unsafe legacy lifecycles will not be called for components using new component APIs.

%s uses %s but also contains the following legacy lifecycles:%s%s%s

The above lifecycles should be removed. Learn more about this warning here:
https://reactjs.org/link/unsafe-component-lifecycles &quot;,h,g,null!==d?&quot;
  &quot;+d:&quot;&quot;,null!==p?&quot;
  &quot;+p:&quot;&quot;,null!==m?&quot;
  &quot;+m:&quot;&quot;))}}return a &amp;&amp;as(e,o,i),c}function cu(e,t,n,r){var a=t.state;if(&quot;function &quot;==typeof t.componentWillReceiveProps &amp;&amp;t.componentWillReceiveProps(n,r),&quot;function &quot;==typeof t.UNSAFE_componentWillReceiveProps &amp;&amp;t.UNSAFE_componentWillReceiveProps(n,r),t.state!==a){var o=We(e.type)||&quot;Component &quot;;jc.has(o)||(jc.add(o),s(&quot;%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component &#039;s constructor). Use setState instead.&quot;,o)),ou.enqueueReplaceState(t,t.state,null)}}function uu(e,t,n,r){!function(e,t,n){var r=e.stateNode,a=We(t)||&quot;Component &quot;;r.render||s(t.prototype &amp;&amp;&quot;function &quot;==typeof t.prototype.render?&quot;%s(...): No `render` method found on the returned component instance: did you accidentally return an object from the constructor?&quot;:&quot;%s(...): No `render` method found on the returned component instance: you may have forgotten to define `render`.&quot;,a),!r.getInitialState||r.getInitialState.isReactClassApproved||r.state||s(&quot;getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?&quot;,a),r.getDefaultProps &amp;&amp;!r.getDefaultProps.isReactClassApproved &amp;&amp;s(&quot;getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.&quot;,a),r.propTypes &amp;&amp;s(&quot;propTypes was defined as an instance property on %s. Use a static property to define propTypes instead.&quot;,a),r.contextType &amp;&amp;s(&quot;contextType was defined as an instance property on %s. Use a static property to define contextType instead.&quot;,a),r.contextTypes &amp;&amp;s(&quot;contextTypes was defined as an instance property on %s. Use a static property to define contextTypes instead.&quot;,a),t.contextType &amp;&amp;t.contextTypes &amp;&amp;!Yc.has(t)&amp;&amp;(Yc.add(t),s(&quot;%s declares both contextTypes and contextType static properties. The legacy contextTypes property will be ignored.&quot;,a)),&quot;function &quot;==typeof r.componentShouldUpdate &amp;&amp;s(&quot;%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.&quot;,a),t.prototype &amp;&amp;t.prototype.isPureReactComponent &amp;&amp;void 0!==r.shouldComponentUpdate &amp;&amp;s(&quot;%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.&quot;,We(t)||&quot;A pure component &quot;),&quot;function &quot;==typeof r.componentDidUnmount &amp;&amp;s(&quot;%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?&quot;,a),&quot;function &quot;==typeof r.componentDidReceiveProps &amp;&amp;s(&quot;%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().&quot;,a),&quot;function &quot;==typeof r.componentWillRecieveProps &amp;&amp;s(&quot;%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?&quot;,a),&quot;function &quot;==typeof r.UNSAFE_componentWillRecieveProps &amp;&amp;s(&quot;%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?&quot;,a),void 0!==r.props &amp;&amp;r.props!==n &amp;&amp;s(&quot;%s(...): When calling super() in `%s`, make sure to pass up the same props that your component &#039;s constructor was passed.&quot;,a,a),r.defaultProps &amp;&amp;s(&quot;Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.&quot;,a,a),&quot;function &quot;!=typeof r.getSnapshotBeforeUpdate||&quot;function &quot;==typeof r.componentDidUpdate||zc.has(t)||(zc.add(t),s(&quot;%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.&quot;,We(t))),&quot;function &quot;==typeof r.getDerivedStateFromProps &amp;&amp;s(&quot;%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.&quot;,a),&quot;function &quot;==typeof r.getDerivedStateFromError &amp;&amp;s(&quot;%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.&quot;,a),&quot;function &quot;==typeof t.getSnapshotBeforeUpdate &amp;&amp;s(&quot;%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.&quot;,a);var o=r.state;o &amp;&amp;(&quot;object &quot;!=typeof o||Kc(o))&amp;&amp;s(&quot;%s.state: must be set to an object or null &quot;,a),&quot;function &quot;==typeof r.getChildContext &amp;&amp;&quot;object &quot;!=typeof t.childContextTypes &amp;&amp;s(&quot;%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().&quot;,a)}(e,t,n);var a=e.stateNode;a.props=n,a.state=e.memoizedState,a.refs=qc,Cc(e);var o=t.contextType;if(&quot;object &quot;==typeof o &amp;&amp;null!==o)a.context=Rc(o);else{var i=rs(0,t,!0);a.context=os(e,i)}if(a.state===n){var l=We(t)||&quot;Component &quot;;Gc.has(l)||(Gc.add(l),s(&quot;%s: It is not recommended to assign props directly to state because updates to props won &#039;t be reflected in state. In most cases, it is better to use props directly.&quot;,l))}1 &amp;e.mode &amp;&amp;Js.recordLegacyContextWarning(e,a),Js.recordUnsafeLifecycleWarnings(e,a),Lc(e,n,a,r),a.state=e.memoizedState;var c=t.getDerivedStateFromProps;&quot;function &quot;==typeof c &amp;&amp;(Qc(e,t,c,n),a.state=e.memoizedState),&quot;function &quot;==typeof t.getDerivedStateFromProps||&quot;function &quot;==typeof a.getSnapshotBeforeUpdate||&quot;function &quot;!=typeof a.UNSAFE_componentWillMount &amp;&amp;&quot;function &quot;!=typeof a.componentWillMount||(function(e,t){var n=t.state;&quot;function &quot;==typeof t.componentWillMount &amp;&amp;t.componentWillMount(),&quot;function &quot;==typeof t.UNSAFE_componentWillMount &amp;&amp;t.UNSAFE_componentWillMount(),n!==t.state &amp;&amp;(s(&quot;%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component &#039;s constructor). Use setState instead.&quot;,We(e.type)||&quot;Component &quot;),ou.enqueueReplaceState(t,t.state,null))}(e,a),Lc(e,n,a,r),a.state=e.memoizedState),&quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4)}Zc=!1,eu=!1,tu={},nu={},ru={},au=function(e,t){if(null!==e &amp;&amp;&quot;object &quot;==typeof e &amp;&amp;e._store &amp;&amp;!e._store.validated &amp;&amp;null==e.key){if(&quot;object &quot;!=typeof e._store)throw Error(&quot;React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.&quot;);e._store.validated=!0;var n=We(t.type)||&quot;Component &quot;;nu[n]||(nu[n]=!0,s(&#039;Each child in a list should have a unique &quot;key &quot;prop. See https://reactjs.org/link/warning-keys for more information.&#039;))}};var fu=Array.isArray;function du(e,t,n){var r=n.ref;if(null!==r &amp;&amp;&quot;function &quot;!=typeof r &amp;&amp;&quot;object &quot;!=typeof r){if(1 &amp;e.mode &amp;&amp;(!n._owner||!n._self||n._owner.stateNode===n._self)){var a=We(e.type)||&quot;Component &quot;;tu[a]||(s(&#039;A string ref, &quot;%s &quot;, has been found within a strict mode tree. String refs are a source of potential bugs and should be avoided. We recommend using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref &#039;,r),tu[a]=!0)}if(n._owner){var o,i=n._owner;if(i){var l=i;if(1!==l.tag)throw Error(&quot;Function components cannot have string refs. We recommend using useRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref &quot;);o=l.stateNode}if(!o)throw Error(&quot;Missing owner for string ref &quot;+r+&quot;. This error is likely caused by a bug in React. Please file an issue.&quot;);var c=&quot;&quot;+r;if(null!==t &amp;&amp;null!==t.ref &amp;&amp;&quot;function &quot;==typeof t.ref &amp;&amp;t.ref._stringRef===c)return t.ref;var u=function(e){var t=o.refs;t===qc &amp;&amp;(t=o.refs={}),null===e?delete t[c]:t[c]=e};return u._stringRef=c,u}if(&quot;string &quot;!=typeof r)throw Error(&quot;Expected ref to be a function, a string, an object returned by React.createRef(), or null.&quot;);if(!n._owner)throw Error(&quot;Element ref was specified as a string (&quot;+r+&quot;) but no owner was set. This could happen for one of the following reasons:
1. You may be adding a ref to a function component
2. You may be adding a ref to a component that was not created inside a component &#039;s render method
3. You have multiple copies of React loaded
See https://reactjs.org/link/refs-must-have-owner for more information.&quot;)}return r}function pu(e,t){if(&quot;textarea &quot;!==e.type)throw Error(&quot;Objects are not valid as a React child (found: &quot;+(&quot;[object Object]&quot;===Object.prototype.toString.call(t)?&quot;object with keys {&quot;+Object.keys(t).join(&quot;, &quot;)+&quot;}&quot;:t)+&quot;). If you meant to render a collection of children, use an array instead.&quot;)}function mu(e){var t=We(e.type)||&quot;Component &quot;;ru[t]||(ru[t]=!0,s(&quot;Functions are not valid as a React child. This may happen if you return a Component instead of &lt;Component /&gt;from render. Or maybe you meant to call this function rather than return it.&quot;))}function hu(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,r){if(!e)return null;for(var a=r;null!==a;)t(n,a),a=a.sibling;return null}function r(e,t){for(var n=new Map,r=t;null!==r;)n.set(null!==r.key?r.key:r.index,r),r=r.sibling;return n}function a(e,t){var n=fg(e,t);return n.index=0,n.sibling=null,n}function o(t,n,r){if(t.index=r,!e)return n;var a=t.alternate;if(null!==a){var o=a.index;return o &lt;n?(t.flags=2,n):o}return t.flags=2,n}function i(t){return e &amp;&amp;null===t.alternate &amp;&amp;(t.flags=2),t}function l(e,t,n,r){if(null===t||6!==t.tag){var o=vg(n,e.mode,r);return o.return=e,o}var i=a(t,n);return i.return=e,i}function c(e,t,n,r){if(null!==t &amp;&amp;(t.elementType===n.type||eg(t,n))){var o=a(t,n.props);return o.ref=du(e,t,n),o.return=e,o._debugSource=n._source,o._debugOwner=n._owner,o}var i=mg(n,e.mode,r);return i.ref=du(e,t,n),i.return=e,i}function u(e,t,n,r){if(null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation){var o=yg(n,e.mode,r);return o.return=e,o}var i=a(t,n.children||[]);return i.return=e,i}function f(e,t,n,r,o){if(null===t||7!==t.tag){var i=hg(n,e.mode,r,o);return i.return=e,i}var l=a(t,n);return l.return=e,l}function d(e,t,n){if(&quot;string &quot;==typeof t||&quot;number &quot;==typeof t){var r=vg(&quot;&quot;+t,e.mode,n);return r.return=e,r}if(&quot;object &quot;==typeof t &amp;&amp;null!==t){switch(t.$$typeof){case Z:var a=mg(t,e.mode,n);return a.ref=du(e,null,t),a.return=e,a;case ee:var o=yg(t,e.mode,n);return o.return=e,o}if(fu(t)||be(t)){var i=hg(t,e.mode,n,null);return i.return=e,i}pu(e,t)}return &quot;function &quot;==typeof t &amp;&amp;mu(e),null}function m(e,t,n,r){var a=null!==t?t.key:null;if(&quot;string &quot;==typeof n||&quot;number &quot;==typeof n)return null!==a?null:l(e,t,&quot;&quot;+n,r);if(&quot;object &quot;==typeof n &amp;&amp;null!==n){switch(n.$$typeof){case Z:return n.key===a?n.type===te?f(e,t,n.props.children,r,a):c(e,t,n,r):null;case ee:return n.key===a?u(e,t,n,r):null}if(fu(n)||be(n))return null!==a?null:f(e,t,n,r,null);pu(e,n)}return &quot;function &quot;==typeof n &amp;&amp;mu(e),null}function h(e,t,n,r,a){if(&quot;string &quot;==typeof r||&quot;number &quot;==typeof r)return l(t,e.get(n)||null,&quot;&quot;+r,a);if(&quot;object &quot;==typeof r &amp;&amp;null!==r){switch(r.$$typeof){case Z:var o=e.get(null===r.key?n:r.key)||null;return r.type===te?f(t,o,r.props.children,a,r.key):c(t,o,r,a);case ee:return u(t,e.get(null===r.key?n:r.key)||null,r,a)}if(fu(r)||be(r))return f(t,e.get(n)||null,r,a,null);pu(t,r)}return &quot;function &quot;==typeof r &amp;&amp;mu(t),null}function g(e,t,n){if(&quot;object &quot;!=typeof e||null===e)return t;switch(e.$$typeof){case Z:case ee:au(e,n);var r=e.key;if(&quot;string &quot;!=typeof r)break;if(null===t){(t=new Set).add(r);break}if(!t.has(r)){t.add(r);break}s(&quot;Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted &#8212;the behavior is unsupported and could change in a future version.&quot;,r)}return t}return function(l,c,u,f){var y=&quot;object &quot;==typeof u &amp;&amp;null!==u &amp;&amp;u.type===te &amp;&amp;null===u.key;y &amp;&amp;(u=u.props.children);var E=&quot;object &quot;==typeof u &amp;&amp;null!==u;if(E)switch(u.$$typeof){case Z:return i(function(e,r,o,i){for(var l=o.key,s=r;null!==s;){if(s.key===l){switch(s.tag){case 7:if(o.type===te){n(e,s.sibling);var c=a(s,o.props.children);return c.return=e,c._debugSource=o._source,c._debugOwner=o._owner,c}break;case T:default:if(s.elementType===o.type||eg(s,o)){n(e,s.sibling);var u=a(s,o.props);return u.ref=du(e,s,o),u.return=e,u._debugSource=o._source,u._debugOwner=o._owner,u}}n(e,s);break}t(e,s),s=s.sibling}if(o.type===te){var f=hg(o.props.children,e.mode,i,o.key);return f.return=e,f}var d=mg(o,e.mode,i);return d.ref=du(e,r,o),d.return=e,d}(l,c,u,f));case ee:return i(function(e,r,o,i){for(var l=o.key,s=r;null!==s;){if(s.key===l){if(4===s.tag &amp;&amp;s.stateNode.containerInfo===o.containerInfo &amp;&amp;s.stateNode.implementation===o.implementation){n(e,s.sibling);var c=a(s,o.children||[]);return c.return=e,c}n(e,s);break}t(e,s),s=s.sibling}var u=yg(o,e.mode,i);return u.return=e,u}(l,c,u,f))}if(&quot;string &quot;==typeof u||&quot;number &quot;==typeof u)return i(function(e,t,r,o){if(null!==t &amp;&amp;6===t.tag){n(e,t.sibling);var i=a(t,r);return i.return=e,i}n(e,t);var l=vg(r,e.mode,o);return l.return=e,l}(l,c,&quot;&quot;+u,f));if(fu(u))return function(a,i,l,s){for(var c=null,u=0;u &lt;l.length;u++)c=g(l[u],c,a);for(var f=null,p=null,v=i,y=0,E=0,b=null;null!==v &amp;&amp;E &lt;l.length;E++){v.index &gt;E?(b=v,v=null):b=v.sibling;var T=m(a,v,l[E],s);if(null===T){null===v &amp;&amp;(v=b);break}e &amp;&amp;v &amp;&amp;null===T.alternate &amp;&amp;t(a,v),y=o(T,y,E),null===p?f=T:p.sibling=T,p=T,v=b}if(E===l.length)return n(a,v),f;if(null===v){for(;E &lt;l.length;E++){var N=d(a,l[E],s);null!==N &amp;&amp;(y=o(N,y,E),null===p?f=N:p.sibling=N,p=N)}return f}for(var R=r(0,v);E &lt;l.length;E++){var S=h(R,a,E,l[E],s);null!==S &amp;&amp;(e &amp;&amp;null!==S.alternate &amp;&amp;R.delete(null===S.key?E:S.key),y=o(S,y,E),null===p?f=S:p.sibling=S,p=S)}return e &amp;&amp;R.forEach(function(e){return t(a,e)}),f}(l,c,u,f);if(be(u))return function(a,i,l,c){var u=be(l);if(&quot;function &quot;!=typeof u)throw Error(&quot;An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.&quot;);&quot;function &quot;==typeof Symbol &amp;&amp;&quot;Generator &quot;===l[Symbol.toStringTag]&amp;&amp;(eu||s(&quot;Using Generators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. Keep in mind you might need to polyfill these features for older browsers.&quot;),eu=!0),l.entries===u &amp;&amp;(Zc||s(&quot;Using Maps as children is not supported. Use an array of keyed ReactElements instead.&quot;),Zc=!0);var f=u.call(l);if(f)for(var p=null,v=f.next();!v.done;v=f.next())p=g(v.value,p,a);var y=u.call(l);if(null==y)throw Error(&quot;An iterable object provided no iterator.&quot;);for(var E=null,b=null,T=i,N=0,R=0,S=null,w=y.next();null!==T &amp;&amp;!w.done;R++,w=y.next()){T.index &gt;R?(S=T,T=null):S=T.sibling;var O=m(a,T,w.value,c);if(null===O){null===T &amp;&amp;(T=S);break}e &amp;&amp;T &amp;&amp;null===O.alternate &amp;&amp;t(a,T),N=o(O,N,R),null===b?E=O:b.sibling=O,b=O,T=S}if(w.done)return n(a,T),E;if(null===T){for(;!w.done;R++,w=y.next()){var C=d(a,w.value,c);null!==C &amp;&amp;(N=o(C,N,R),null===b?E=C:b.sibling=C,b=C)}return E}for(var A=r(0,T);!w.done;R++,w=y.next()){var I=h(A,a,R,w.value,c);null!==I &amp;&amp;(e &amp;&amp;null!==I.alternate &amp;&amp;A.delete(null===I.key?R:I.key),N=o(I,N,R),null===b?E=I:b.sibling=I,b=I)}return e &amp;&amp;A.forEach(function(e){return t(a,e)}),E}(l,c,u,f);if(E &amp;&amp;pu(l,u),&quot;function &quot;==typeof u &amp;&amp;mu(l),void 0===u &amp;&amp;!y)switch(l.tag){case 1:if(l.stateNode.render._isMockFunction)break;case T:case 0:case p:case v:throw Error((We(l.type)||&quot;Component &quot;)+&quot;(...): Nothing was returned from render. This usually means a return statement is missing. Or, to render nothing, return null.&quot;)}return n(l,c)}}var gu=hu(!0),vu=hu(!1);function yu(e,t){for(var n=e.child;null!==n;)dg(n,t),n=n.sibling}var Eu={},bu=ql(Eu),Tu=ql(Eu),Nu=ql(Eu);function Ru(e){if(e===Eu)throw Error(&quot;Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.&quot;);return e}function Su(){return Ru(Nu.current)}function wu(e,t){Ql(Nu,t,e),Ql(Tu,e,e),Ql(bu,Eu,e);var n=function(e){var t,n,r=e.nodeType;switch(r){case 9:case 11:t=9===r?&quot;#document &quot;:&quot;#fragment &quot;;var a=e.documentElement;n=a?a.namespaceURI:Ut(null,&quot;&quot;);break;default:var o=8===r?e.parentNode:e;n=Ut(o.namespaceURI||null,t=o.tagName)}var i=t.toLowerCase();return{namespace:n,ancestorInfo:nl(null,i)}}(t);Jl(bu,e),Ql(bu,n,e)}function Ou(e){Jl(bu,e),Jl(Tu,e),Jl(Nu,e)}function Cu(){return Ru(bu.current)}function Au(e){Ru(Nu.current);var t,n,r=Ru(bu.current),a={namespace:Ut((n=r).namespace,t=e.type),ancestorInfo:nl(n.ancestorInfo,t)};r!==a &amp;&amp;(Ql(Tu,e,e),Ql(bu,a,e))}function Iu(e){Tu.current===e &amp;&amp;(Jl(bu,e),Jl(Tu,e))}var ku=ql(0);function xu(e,t){return 0!=(e &amp;t)}function _u(e){return 1 &amp;e}function Lu(e,t){return 1 &amp;e|t}function Pu(e,t){Ql(ku,t,e)}function Mu(e){Jl(ku,e)}function Du(e,t){var n=e.memoizedState;if(null!==n)return null!==n.dehydrated;var r=e.memoizedProps;return void 0!==r.fallback &amp;&amp;(!0!==r.unstable_avoidThisFallback||!t)}function Uu(e){for(var t=e;null!==t;){if(t.tag===h){var n=t.memoizedState;if(null!==n){var r=n.dehydrated;if(null===r||r.data===cl||r.data===ul)return t}}else if(t.tag===E &amp;&amp;void 0!==t.memoizedProps.revealOrder){if(0!=(t.flags &amp;ar))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)return null;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var ju=null,Fu=null,zu=!1;function Hu(e,t){switch(e.tag){case 3:!function(e,t){1===t.nodeType?Ji(e,t):8===t.nodeType||Qi(e,t)}(e.stateNode.containerInfo,t);break;case 5:!function(e,t,n,r){!0!==t.suppressHydrationWarning &amp;&amp;(1===r.nodeType?Ji(n,r):8===r.nodeType||Qi(n,r))}(0,e.memoizedProps,e.stateNode,t)}var n,r=((n=cg(5,null,null,0)).elementType=&quot;DELETED &quot;,n.type=&quot;DELETED &quot;,n);r.stateNode=t,r.return=e,r.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=r,e.lastEffect=r):e.firstEffect=e.lastEffect=r}function Bu(e,t){switch(t.flags=-1025 &amp;t.flags|2,e.tag){case 3:var n=e.stateNode.containerInfo;switch(t.tag){case 5:!function(e,t,n){Zi(e,t)}(n,t.type);break;case 6:!function(e,t){el(e,t)}(n,t.pendingProps)}break;case 5:var r=e.memoizedProps,a=e.stateNode;switch(t.tag){case 5:!function(e,t,n,r,a){!0!==t.suppressHydrationWarning &amp;&amp;Zi(n,r)}(0,r,a,t.type);break;case 6:!function(e,t,n,r){!0!==t.suppressHydrationWarning &amp;&amp;el(n,r)}(0,r,a,t.pendingProps)}break;default:return}}function Vu(e,t){switch(e.tag){case 5:var n=function(e,t,n){return 1!==e.nodeType||t.toLowerCase()!==e.nodeName.toLowerCase()?null:e}(t,e.type);return null!==n &amp;&amp;(e.stateNode=n,!0);case 6:var r=function(e,t){return &quot;&quot;===t||3!==e.nodeType?null:e}(t,e.pendingProps);return null!==r &amp;&amp;(e.stateNode=r,!0);case h:default:return!1}}function Wu(e){if(zu){var t=Fu;if(!t)return Bu(ju,e),zu=!1,void(ju=e);var n=t;if(!Vu(e,t)){if(!(t=Rl(n))||!Vu(e,t))return Bu(ju,e),zu=!1,void(ju=e);Hu(ju,n)}ju=e,Fu=Sl(t)}}function Gu(e){for(var t=e.return;null!==t &amp;&amp;5!==t.tag &amp;&amp;3!==t.tag &amp;&amp;t.tag!==h;)t=t.return;ju=t}function Yu(e){if(e!==ju)return!1;if(!zu)return Gu(e),zu=!0,!1;var t=e.type;if(5!==e.tag||&quot;head &quot;!==t &amp;&amp;&quot;body &quot;!==t &amp;&amp;!ml(t,e.memoizedProps))for(var n=Fu;n;)Hu(e,n),n=Rl(n);return Gu(e),Fu=e.tag===h?function(e){var t=e.memoizedState,n=null!==t?t.dehydrated:null;if(!n)throw Error(&quot;Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.&quot;);return function(e){for(var t=e.nextSibling,n=0;t;){if(8===t.nodeType){var r=t.data;if(&quot;/$ &quot;===r){if(0===n)return Rl(t);n--}else &quot;$ &quot;!==r &amp;&amp;r!==ul &amp;&amp;r!==cl||n++}t=t.nextSibling}return null}(n)}(e):ju?Rl(e.stateNode):null,!0}function $u(){ju=null,Fu=null,zu=!1}function Xu(){return zu}var Ku,qu=[];function Ju(){for(var e=0;e &lt;qu.length;e++)qu[e]._workInProgressVersionPrimary=null;qu.length=0}function Qu(e,t){e._workInProgressVersionPrimary=t,qu.push(e)}Ku={};var Zu,ef,tf=o.ReactCurrentDispatcher,nf=o.ReactCurrentBatchConfig;ef={},Zu=new Set;var rf=0,af=null,of=null,lf=null,sf=!1,cf=!1,uf=null,ff=null,df=-1,pf=!1;function mf(){null===ff?ff=[uf]:ff.push(uf)}function hf(){null!==ff &amp;&amp;(df++,ff[df]!==uf &amp;&amp;function(e){var t=We(af.type);if(!Zu.has(t)&amp;&amp;(Zu.add(t),null!==ff)){for(var n=&quot;&quot;,r=0;r &lt;=df;r++){for(var a=ff[r],o=r===df?e:a,i=r+1+&quot;. &quot;+a;i.length &lt;30;)i+=&quot;&quot;;n+=i+=o+&quot;
 &quot;}s(&quot;React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://reactjs.org/link/rules-of-hooks

   Previous render            Next render
   ------------------------------------------------------
%s   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 &quot;,t,n)}}(uf))}function gf(e){null==e||Array.isArray(e)||s(&quot;%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.&quot;,uf,typeof e)}function vf(){throw Error(&quot;Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.&quot;)}function yf(e,t){if(pf)return!1;if(null===t)return s(&quot;%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.&quot;,uf),!1;e.length!==t.length &amp;&amp;s(&quot;The final argument passed to %s changed size between renders. The order and size of this array must remain constant.

Previous: %s
Incoming: %s &quot;,uf,&quot;[&quot;+t.join(&quot;, &quot;)+&quot;]&quot;,&quot;[&quot;+e.join(&quot;, &quot;)+&quot;]&quot;);for(var n=0;n &lt;t.length &amp;&amp;n &lt;e.length;n++)if(!Yo(e[n],t[n]))return!1;return!0}function Ef(e,t,n,r,a,o){rf=o,af=t,ff=null!==e?e._debugHookTypes:null,df=-1,pf=null!==e &amp;&amp;e.type!==t.type,t.memoizedState=null,t.updateQueue=null,t.lanes=0,tf.current=null!==e &amp;&amp;null!==e.memoizedState?pd:null!==ff?dd:fd;var i=n(r,a);if(cf){var l=0;do{if(cf=!1,!(l &lt;25))throw Error(&quot;Too many re-renders. React limits the number of renders to prevent an infinite loop.&quot;);l+=1,pf=!1,of=null,lf=null,t.updateQueue=null,df=-1,tf.current=md,i=n(r,a)}while(cf)}tf.current=ud,t._debugHookTypes=ff;var s=null!==of &amp;&amp;null!==of.next;if(rf=0,af=null,of=null,lf=null,uf=null,ff=null,df=-1,sf=!1,s)throw Error(&quot;Rendered fewer hooks than expected. This may be caused by an accidental early return statement.&quot;);return i}function bf(e,t,n){t.updateQueue=e.updateQueue,t.flags &amp;=-517,e.lanes=Ra(e.lanes,n)}function Tf(){if(tf.current=ud,sf){for(var e=af.memoizedState;null!==e;){var t=e.queue;null!==t &amp;&amp;(t.pending=null),e=e.next}sf=!1}rf=0,af=null,of=null,lf=null,ff=null,df=-1,uf=null,ad=!1,cf=!1}function Nf(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===lf?af.memoizedState=lf=e:lf=lf.next=e,lf}function Rf(){var e,t;if(null===of){var n=af.alternate;e=null!==n?n.memoizedState:null}else e=of.next;if(null!==(t=null===lf?af.memoizedState:lf.next))t=(lf=t).next,of=e;else{if(null===e)throw Error(&quot;Rendered more hooks than during the previous render.&quot;);var r={memoizedState:(of=e).memoizedState,baseState:of.baseState,baseQueue:of.baseQueue,queue:of.queue,next:null};null===lf?af.memoizedState=lf=r:lf=lf.next=r}return lf}function Sf(e,t){return &quot;function &quot;==typeof t?t(e):t}function wf(e,t,n){var r,a=Nf();r=void 0!==n?n(t):t,a.memoizedState=a.baseState=r;var o=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:r},i=o.dispatch=cd.bind(null,af,o);return[a.memoizedState,i]}function Of(e,t,n){var r=Rf(),a=r.queue;if(null===a)throw Error(&quot;Should have a queue. This is likely a bug in React. Please file an issue.&quot;);a.lastRenderedReducer=e;var o=of,i=o.baseQueue,l=a.pending;if(null!==l){if(null!==i){var c=i.next;i.next=l.next,l.next=c}o.baseQueue!==i &amp;&amp;s(&quot;Internal error: Expected work-in-progress queue to be a clone. This is a bug in React.&quot;),o.baseQueue=i=l,a.pending=null}if(null!==i){var u=i.next,f=o.baseState,d=null,p=null,m=null,h=u;do{var g=h.lane;if(Ta(rf,g))null!==m &amp;&amp;(m=m.next={lane:0,action:h.action,eagerReducer:h.eagerReducer,eagerState:h.eagerState,next:null}),f=h.eagerReducer===e?h.eagerState:e(f,h.action);else{var v={lane:g,action:h.action,eagerReducer:h.eagerReducer,eagerState:h.eagerState,next:null};null===m?(p=m=v,d=f):m=m.next=v,af.lanes=Na(af.lanes,g),ih(g)}h=h.next}while(null!==h &amp;&amp;h!==u);null===m?d=f:m.next=p,Yo(f,r.memoizedState)||hp(),r.memoizedState=f,r.baseState=d,r.baseQueue=m,a.lastRenderedState=f}return[r.memoizedState,a.dispatch]}function Cf(e,t,n){var r=Rf(),a=r.queue;if(null===a)throw Error(&quot;Should have a queue. This is likely a bug in React. Please file an issue.&quot;);a.lastRenderedReducer=e;var o=a.dispatch,i=a.pending,l=r.memoizedState;if(null!==i){a.pending=null;var s=i.next,c=s;do{l=e(l,c.action),c=c.next}while(c!==s);Yo(l,r.memoizedState)||hp(),r.memoizedState=l,null===r.baseQueue &amp;&amp;(r.baseState=l),a.lastRenderedState=l}return[l,o]}function Af(e,t,n){var r;null==(r=t)._currentPrimaryRenderer?r._currentPrimaryRenderer=Ku:r._currentPrimaryRenderer!==Ku &amp;&amp;s(&quot;Detected multiple renderers concurrently rendering the same mutable source. This is currently unsupported.&quot;);var a=(0,t._getVersion)(t._source),o=!1,i=function(e){return e._workInProgressVersionPrimary}(t);if(null!==i?o=i===a:(o=Ta(rf,e.mutableReadLanes))&amp;&amp;Qu(t,a),o){var l=n(t._source);return &quot;function &quot;==typeof l &amp;&amp;s(&quot;Mutable source should not return a function as the snapshot value. Functions may close over mutable values and cause tearing.&quot;),l}throw function(e){qu.push(e)}(t),Error(&quot;Cannot read from mutable source during the current render without tearing. This is a bug in React. Please file an issue.&quot;)}function If(e,t,n,r){var a=im;if(null===a)throw Error(&quot;Expected a work-in-progress root. This is a bug in React. Please file an issue.&quot;);var o=t._getVersion,i=o(t._source),l=tf.current,c=l.useState(function(){return Af(a,t,n)}),u=c[1],f=c[0],d=lf,p=e.memoizedState,m=p.refs,h=m.getSnapshot,g=p.source,v=p.subscribe,y=af;if(e.memoizedState={refs:m,source:t,subscribe:r},l.useEffect(function(){m.getSnapshot=n,m.setSnapshot=u;var e=o(t._source);if(!Yo(i,e)){var r=n(t._source);if(&quot;function &quot;==typeof r &amp;&amp;s(&quot;Mutable source should not return a function as the snapshot value. Functions may close over mutable values and cause tearing.&quot;),!Yo(f,r)){u(r);var l=Bm(y);Ca(a,l)}!function(e,t){e.entangledLanes|=t;for(var n=e.entanglements,r=t;r &gt;0;){var a=Ea(r),o=1 &lt;&lt;a;n[a]|=t,r &amp;=~o}}(a,a.mutableReadLanes)}},[n,t,r]),l.useEffect(function(){var e=r(t._source,function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var r=Bm(y);Ca(a,r)}catch(e){n(function(){throw e})}});return &quot;function &quot;!=typeof e &amp;&amp;s(&quot;Mutable source subscribe function must return an unsubscribe function.&quot;),e},[t,r]),!Yo(h,n)||!Yo(g,t)||!Yo(v,r)){var E={pending:null,dispatch:null,lastRenderedReducer:Sf,lastRenderedState:f};E.dispatch=u=cd.bind(null,af,E),d.queue=E,d.baseQueue=null,f=Af(a,t,n),d.memoizedState=d.baseState=f}return f}function kf(e,t,n){var r=Nf();return r.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},If(r,e,t,n)}function xf(e,t,n){return If(Rf(),e,t,n)}function _f(e){var t=Nf();&quot;function &quot;==typeof e &amp;&amp;(e=e()),t.memoizedState=t.baseState=e;var n=t.queue={pending:null,dispatch:null,lastRenderedReducer:Sf,lastRenderedState:e},r=n.dispatch=cd.bind(null,af,n);return[t.memoizedState,r]}function Lf(e){return Of(Sf)}function Pf(e){return Cf(Sf)}function Mf(e,t,n,r){var a={tag:e,create:t,destroy:n,deps:r,next:null},o=af.updateQueue;if(null===o)af.updateQueue=o={lastEffect:null},o.lastEffect=a.next=a;else{var i=o.lastEffect;if(null===i)o.lastEffect=a.next=a;else{var l=i.next;i.next=a,a.next=l,o.lastEffect=a}}return a}function Df(e){var t=Nf(),n={current:e};return Object.seal(n),t.memoizedState=n,n}function Uf(e){return Rf().memoizedState}function jf(e,t,n,r){var a=Nf(),o=void 0===r?null:r;af.flags|=e,a.memoizedState=Mf(1|t,n,void 0,o)}function Ff(e,t,n,r){var a=Rf(),o=void 0===r?null:r,i=void 0;if(null!==of){var l=of.memoizedState;if(i=l.destroy,null!==o &amp;&amp;yf(o,l.deps))return void Mf(t,n,i,o)}af.flags|=e,a.memoizedState=Mf(1|t,n,i,o)}function zf(e,t){return &quot;undefined &quot;!=typeof jest &amp;&amp;Uh(af),jf(516,4,e,t)}function Hf(e,t){return &quot;undefined &quot;!=typeof jest &amp;&amp;Uh(af),Ff(516,4,e,t)}function Bf(e,t){return jf(4,2,e,t)}function Vf(e,t){return Ff(4,2,e,t)}function Wf(e,t){if(&quot;function &quot;==typeof t){var n=t,r=e();return n(r),function(){n(null)}}if(null!=t){var a=t;a.hasOwnProperty(&quot;current &quot;)||s(&quot;Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.&quot;,&quot;an object with keys {&quot;+Object.keys(a).join(&quot;, &quot;)+&quot;}&quot;);var o=e();return a.current=o,function(){a.current=null}}}function Gf(e,t,n){&quot;function &quot;!=typeof t &amp;&amp;s(&quot;Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.&quot;,null!==t?typeof t:&quot;null &quot;);var r=null!=n?n.concat([e]):null;return jf(4,2,Wf.bind(null,t,e),r)}function Yf(e,t,n){&quot;function &quot;!=typeof t &amp;&amp;s(&quot;Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.&quot;,null!==t?typeof t:&quot;null &quot;);var r=null!=n?n.concat([e]):null;return Ff(4,2,Wf.bind(null,t,e),r)}function $f(e,t){return Nf().memoizedState=[e,void 0===t?null:t],e}function Xf(e,t){var n=Rf(),r=void 0===t?null:t,a=n.memoizedState;return null!==a &amp;&amp;null!==r &amp;&amp;yf(r,a[1])?a[0]:(n.memoizedState=[e,r],e)}function Kf(e,t){var n=Nf(),r=void 0===t?null:t,a=e();return n.memoizedState=[a,r],a}function qf(e,t){var n=Rf(),r=void 0===t?null:t,a=n.memoizedState;if(null!==a &amp;&amp;null!==r &amp;&amp;yf(r,a[1]))return a[0];var o=e();return n.memoizedState=[o,r],o}function Jf(e){var t=_f(e),n=t[0],r=t[1];return zf(function(){var t=nf.transition;nf.transition=1;try{r(e)}finally{nf.transition=t}},[e]),n}function Qf(e){var t=Lf(),n=t[0],r=t[1];return Hf(function(){var t=nf.transition;nf.transition=1;try{r(e)}finally{nf.transition=t}},[e]),n}function Zf(e){var t=Pf(),n=t[0],r=t[1];return Hf(function(){var t=nf.transition;nf.transition=1;try{r(e)}finally{nf.transition=t}},[e]),n}function ed(e,t){var n=Bs();Ws(n &lt;Ls?Ls:n,function(){e(!0)}),Ws(n &gt;Ps?Ps:n,function(){var n=nf.transition;nf.transition=1;try{e(!1),t()}finally{nf.transition=n}})}function td(){var e=_f(!1),t=e[0],n=ed.bind(null,e[1]);return Df(n),[n,t]}function nd(){var e=Lf()[0];return[Uf().current,e]}function rd(){var e=Pf()[0];return[Uf().current,e]}var ad=!1;function od(e){var t=We(e.type)||&quot;Unknown &quot;;$e &amp;&amp;!ef[t]&amp;&amp;(s(&quot;The object passed back from useOpaqueIdentifier is meant to be passed through to attributes only. Do not read the value directly.&quot;),ef[t]=!0)}function id(){var e=Cl.bind(null,od.bind(null,af));if(Xu()){var t=!1,n=af,r={$$typeof:me,toString:o=function(){throw t||(t=!0,ad=!0,a(e()),ad=!1,od(n)),Error(&quot;The object passed back from useOpaqueIdentifier is meant to be passed through to attributes only. Do not read the value directly.&quot;)},valueOf:o},a=_f(r)[1];return 0==(2 &amp;af.mode)&amp;&amp;(af.flags|=516,Mf(5,function(){a(e())},void 0,null)),r}var o,i=e();return _f(i),i}function ld(){return Lf()[0]}function sd(){return Pf()[0]}function cd(e,t,n){&quot;function &quot;==typeof arguments[3]&amp;&amp;s(&quot;State updates from the useState() and useReducer() Hooks don &#039;t support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().&quot;);var r=Hm(),a=Bm(e),o={lane:a,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o;var l=e.alternate;if(e===af||null!==l &amp;&amp;l===af)cf=sf=!0;else{if(0===e.lanes &amp;&amp;(null===l||0===l.lanes)){var c=t.lastRenderedReducer;if(null!==c){var u;u=tf.current,tf.current=gd;try{var f=t.lastRenderedState,d=c(f,n);if(o.eagerReducer=c,o.eagerState=d,Yo(d,f))return}catch(e){}finally{tf.current=u}}}&quot;undefined &quot;!=typeof jest &amp;&amp;(Dh(e),jh(e)),Vm(e,a,r)}}var ud={readContext:Rc,useCallback:vf,useContext:vf,useEffect:vf,useImperativeHandle:vf,useLayoutEffect:vf,useMemo:vf,useReducer:vf,useRef:vf,useState:vf,useDebugValue:vf,useDeferredValue:vf,useTransition:vf,useMutableSource:vf,useOpaqueIdentifier:vf,unstable_isNewReconciler:S},fd=null,dd=null,pd=null,md=null,hd=null,gd=null,vd=null,yd=function(){s(&quot;Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().&quot;)},Ed=function(){s(&quot;Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://reactjs.org/link/rules-of-hooks &quot;)};fd={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,mf(),gf(t),$f(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,mf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,mf(),gf(t),zf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,mf(),gf(n),Gf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,mf(),gf(t),Bf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,mf(),gf(t);var n=tf.current;tf.current=hd;try{return Kf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,mf();var r=tf.current;tf.current=hd;try{return wf(e,t,n)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,mf(),Df(e)},useState:function(e){uf=&quot;useState &quot;,mf();var t=tf.current;tf.current=hd;try{return _f(e)}finally{tf.current=t}},useDebugValue:function(e,t){uf=&quot;useDebugValue &quot;,mf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,mf(),Jf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,mf(),td()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,mf(),kf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,mf(),id()},unstable_isNewReconciler:S},dd={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,hf(),$f(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,hf(),zf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,hf(),Gf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,hf(),Bf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,hf();var n=tf.current;tf.current=hd;try{return Kf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,hf();var r=tf.current;tf.current=hd;try{return wf(e,t,n)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,hf(),Df(e)},useState:function(e){uf=&quot;useState &quot;,hf();var t=tf.current;tf.current=hd;try{return _f(e)}finally{tf.current=t}},useDebugValue:function(e,t){uf=&quot;useDebugValue &quot;,hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,hf(),Jf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,hf(),td()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,hf(),kf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,hf(),id()},unstable_isNewReconciler:S},pd={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,hf();var n=tf.current;tf.current=gd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,hf();var r=tf.current;tf.current=gd;try{return Of(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,hf();var t=tf.current;tf.current=gd;try{return Lf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,hf(),Qf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,hf(),nd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,hf(),ld()},unstable_isNewReconciler:S},md={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,hf();var n=tf.current;tf.current=vd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,hf();var r=tf.current;tf.current=vd;try{return Cf(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,hf();var t=tf.current;tf.current=vd;try{return Pf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,hf(),Zf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,hf(),rd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,hf(),sd()},unstable_isNewReconciler:S},hd={readContext:function(e,t){return yd(),Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,Ed(),mf(),$f(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,Ed(),mf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,Ed(),mf(),zf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,Ed(),mf(),Gf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,Ed(),mf(),Bf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,Ed(),mf();var n=tf.current;tf.current=hd;try{return Kf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,Ed(),mf();var r=tf.current;tf.current=hd;try{return wf(e,t,n)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,Ed(),mf(),Df(e)},useState:function(e){uf=&quot;useState &quot;,Ed(),mf();var t=tf.current;tf.current=hd;try{return _f(e)}finally{tf.current=t}},useDebugValue:function(e,t){uf=&quot;useDebugValue &quot;,Ed(),mf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,Ed(),mf(),Jf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,Ed(),mf(),td()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,Ed(),mf(),kf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,Ed(),mf(),id()},unstable_isNewReconciler:S},gd={readContext:function(e,t){return yd(),Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,Ed(),hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,Ed(),hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,Ed(),hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,Ed(),hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,Ed(),hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,Ed(),hf();var n=tf.current;tf.current=gd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,Ed(),hf();var r=tf.current;tf.current=gd;try{return Of(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,Ed(),hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,Ed(),hf();var t=tf.current;tf.current=gd;try{return Lf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,Ed(),void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,Ed(),hf(),Qf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,Ed(),hf(),nd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,Ed(),hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,Ed(),hf(),ld()},unstable_isNewReconciler:S},vd={readContext:function(e,t){return yd(),Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,Ed(),hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,Ed(),hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,Ed(),hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,Ed(),hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,Ed(),hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,Ed(),hf();var n=tf.current;tf.current=gd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,Ed(),hf();var r=tf.current;tf.current=gd;try{return Cf(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,Ed(),hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,Ed(),hf();var t=tf.current;tf.current=gd;try{return Pf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,Ed(),void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,Ed(),hf(),Zf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,Ed(),hf(),rd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,Ed(),hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,Ed(),hf(),sd()},unstable_isNewReconciler:S};var bd=r.unstable_now,Td=0,Nd=-1;function Rd(){return Td}function Sd(){Td=bd()}function wd(e){Nd=bd(),e.actualStartTime &lt;0 &amp;&amp;(e.actualStartTime=bd())}function Od(e){Nd=-1}function Cd(e,t){if(Nd &gt;=0){var n=bd()-Nd;e.actualDuration+=n,t &amp;&amp;(e.selfBaseDuration=n),Nd=-1}}function Ad(e){for(var t=e.child;t;)e.actualDuration+=t.actualDuration,t=t.sibling}var Id,kd,xd,_d,Ld,Pd,Md,Dd,Ud=o.ReactCurrentOwner,jd=!1;function Fd(e,t,n,r){t.child=null===e?vu(t,null,n,r):gu(t,e.child,n,r)}function zd(e,t,n,r,a){if(t.type!==t.elementType){var o=n.propTypes;o &amp;&amp;Gl(o,r,&quot;prop &quot;,We(n))}var i,l=n.render,s=t.ref;if(Nc(t,a),Ud.current=t,Qe(!0),i=Ef(e,t,l,r,s,a),1 &amp;t.mode){ke();try{i=Ef(e,t,l,r,s,a)}finally{xe()}}return Qe(!1),null===e||jd?(t.flags|=1,Fd(e,t,i,a),t.child):(bf(e,t,a),gp(e,t,a))}function Hd(e,t,n,r,a,o){if(null===e){var i,l=n.type;if(function(e){return &quot;function &quot;==typeof e &amp;&amp;!ug(e)&amp;&amp;void 0===e.defaultProps}(l)&amp;&amp;null===n.compare &amp;&amp;void 0===n.defaultProps)return i=Jh(l),t.tag=v,t.type=i,qd(t,l),Bd(e,t,i,r,a,o);var s=l.propTypes;s &amp;&amp;Gl(s,r,&quot;prop &quot;,We(l));var c=pg(n.type,null,r,t,t.mode,o);return c.ref=t.ref,c.return=t,t.child=c,c}var u=n.type,f=u.propTypes;f &amp;&amp;Gl(f,r,&quot;prop &quot;,We(u));var d=e.child;if(!ba(a,o)){var p=n.compare;if((p=null!==p?p:Xo)(d.memoizedProps,r)&amp;&amp;e.ref===t.ref)return gp(e,t,o)}t.flags|=1;var m=fg(d,r);return m.ref=t.ref,m.return=t,t.child=m,m}function Bd(e,t,n,r,a,o){if(t.type!==t.elementType){var i=t.elementType;if(i.$$typeof===ue){var l=i._payload,s=i._init;try{i=s(l)}catch(e){i=null}var c=i &amp;&amp;i.propTypes;c &amp;&amp;Gl(c,r,&quot;prop &quot;,We(i))}}if(null!==e &amp;&amp;Xo(e.memoizedProps,r)&amp;&amp;e.ref===t.ref &amp;&amp;t.type===e.type){if(jd=!1,!ba(o,a))return t.lanes=e.lanes,gp(e,t,o);0!=(e.flags &amp;ur)&amp;&amp;(jd=!0)}return Yd(e,t,n,r,o)}function Vd(e,t,n){var r,a=t.pendingProps,o=a.children,i=null!==e?e.memoizedState:null;if(&quot;hidden &quot;===a.mode||&quot;unstable-defer-without-hiding &quot;===a.mode)if(0==(4 &amp;t.mode))t.memoizedState={baseLanes:0},Qm(t,n);else{var l;if(!ba(n,sa))return l=null!==i?Na(i.baseLanes,n):n,Hh(sa),t.lanes=t.childLanes=sa,t.memoizedState={baseLanes:l},Qm(t,l),null;t.memoizedState={baseLanes:0},Qm(t,null!==i?i.baseLanes:n)}else null!==i?(r=Na(i.baseLanes,n),t.memoizedState=null):r=n,Qm(t,r);return Fd(e,t,o,n),t.child}Id={},kd={},xd={},_d={},Ld={},Pd=!1,Md={},Dd={};var Wd=Vd;function Gd(e,t){var n=t.ref;(null===e &amp;&amp;null!==n||null!==e &amp;&amp;e.ref!==n)&amp;&amp;(t.flags|=or)}function Yd(e,t,n,r,a){if(t.type!==t.elementType){var o=n.propTypes;o &amp;&amp;Gl(o,r,&quot;prop &quot;,We(n))}var i,l;if(i=os(t,rs(0,n,!0)),Nc(t,a),Ud.current=t,Qe(!0),l=Ef(e,t,n,r,i,a),1 &amp;t.mode){ke();try{l=Ef(e,t,n,r,i,a)}finally{xe()}}return Qe(!1),null===e||jd?(t.flags|=1,Fd(e,t,l,a),t.child):(bf(e,t,a),gp(e,t,a))}function $d(e,t,n,r,a){if(t.type!==t.elementType){var o=n.propTypes;o &amp;&amp;Gl(o,r,&quot;prop &quot;,We(n))}var i,l;ls(n)?(i=!0,ds(t)):i=!1,Nc(t,a),null===t.stateNode?(null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2),su(t,n,r),uu(t,n,r,a),l=!0):l=null===e?function(e,t,n,r){var a=e.stateNode,o=e.memoizedProps;a.props=o;var i,l=a.context,s=t.contextType;i=&quot;object &quot;==typeof s &amp;&amp;null!==s?Rc(s):os(e,rs(0,t,!0));var c=t.getDerivedStateFromProps,u=&quot;function &quot;==typeof c||&quot;function &quot;==typeof a.getSnapshotBeforeUpdate;u||&quot;function &quot;!=typeof a.UNSAFE_componentWillReceiveProps &amp;&amp;&quot;function &quot;!=typeof a.componentWillReceiveProps||o===n &amp;&amp;l===i||cu(e,a,n,i),Mc();var f=e.memoizedState,d=a.state=f;if(Lc(e,n,a,r),d=e.memoizedState,o===n &amp;&amp;f===d &amp;&amp;!is()&amp;&amp;!Dc())return &quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4),!1;&quot;function &quot;==typeof c &amp;&amp;(Qc(e,t,c,n),d=e.memoizedState);var p=Dc()||iu(e,t,o,n,f,d,i);return p?(u||&quot;function &quot;!=typeof a.UNSAFE_componentWillMount &amp;&amp;&quot;function &quot;!=typeof a.componentWillMount||(&quot;function &quot;==typeof a.componentWillMount &amp;&amp;a.componentWillMount(),&quot;function &quot;==typeof a.UNSAFE_componentWillMount &amp;&amp;a.UNSAFE_componentWillMount()),&quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4)):(&quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4),e.memoizedProps=n,e.memoizedState=d),a.props=n,a.state=d,a.context=i,p}(t,n,r,a):function(e,t,n,r,a){var o=t.stateNode;Ac(e,t);var i=t.memoizedProps,l=t.type===t.elementType?i:sc(t.type,i);o.props=l;var s,c=t.pendingProps,u=o.context,f=n.contextType;s=&quot;object &quot;==typeof f &amp;&amp;null!==f?Rc(f):os(t,rs(0,n,!0));var d=n.getDerivedStateFromProps,p=&quot;function &quot;==typeof d||&quot;function &quot;==typeof o.getSnapshotBeforeUpdate;p||&quot;function &quot;!=typeof o.UNSAFE_componentWillReceiveProps &amp;&amp;&quot;function &quot;!=typeof o.componentWillReceiveProps||i===c &amp;&amp;u===s||cu(t,o,r,s),Mc();var m=t.memoizedState,h=o.state=m;if(Lc(t,r,o,a),h=t.memoizedState,i===c &amp;&amp;m===h &amp;&amp;!is()&amp;&amp;!Dc())return &quot;function &quot;==typeof o.componentDidUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=4)),&quot;function &quot;==typeof o.getSnapshotBeforeUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=ir)),!1;&quot;function &quot;==typeof d &amp;&amp;(Qc(t,n,d,r),h=t.memoizedState);var g=Dc()||iu(t,n,l,r,m,h,s);return g?(p||&quot;function &quot;!=typeof o.UNSAFE_componentWillUpdate &amp;&amp;&quot;function &quot;!=typeof o.componentWillUpdate||(&quot;function &quot;==typeof o.componentWillUpdate &amp;&amp;o.componentWillUpdate(r,h,s),&quot;function &quot;==typeof o.UNSAFE_componentWillUpdate &amp;&amp;o.UNSAFE_componentWillUpdate(r,h,s)),&quot;function &quot;==typeof o.componentDidUpdate &amp;&amp;(t.flags|=4),&quot;function &quot;==typeof o.getSnapshotBeforeUpdate &amp;&amp;(t.flags|=ir)):(&quot;function &quot;==typeof o.componentDidUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=4)),&quot;function &quot;==typeof o.getSnapshotBeforeUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=ir)),t.memoizedProps=r,t.memoizedState=h),o.props=r,o.state=h,o.context=s,g}(e,t,n,r,a);var c=Xd(e,t,n,l,i,a);return l &amp;&amp;t.stateNode.props!==r &amp;&amp;(Pd||s(&quot;It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.&quot;,We(t.type)||&quot;a component &quot;),Pd=!0),c}function Xd(e,t,n,r,a,o){Gd(e,t);var i=0!=(t.flags &amp;ar);if(!r &amp;&amp;!i)return a &amp;&amp;ps(t,n,!1),gp(e,t,o);var l,s=t.stateNode;if(Ud.current=t,i &amp;&amp;&quot;function &quot;!=typeof n.getDerivedStateFromError)l=null,Od();else{if(Qe(!0),l=s.render(),1 &amp;t.mode){ke();try{s.render()}finally{xe()}}Qe(!1)}return t.flags|=1,null!==e &amp;&amp;i?function(e,t,n,r){t.child=gu(t,e.child,null,r),t.child=gu(t,null,n,r)}(e,t,l,o):Fd(e,t,l,o),t.memoizedState=s.state,a &amp;&amp;ps(t,n,!0),t.child}function Kd(e){var t=e.stateNode;t.pendingContext?us(e,t.pendingContext,t.pendingContext!==t.context):t.context &amp;&amp;us(e,t.context,!1),wu(e,t.containerInfo)}function qd(e,t){if(t &amp;&amp;t.childContextTypes &amp;&amp;s(&quot;%s(...): childContextTypes cannot be defined on a function component.&quot;,t.displayName||t.name||&quot;Component &quot;),null!==e.ref){var n=&quot;&quot;,r=Xe();r &amp;&amp;(n+=&quot;

Check the render method of `&quot;+r+&quot;`.&quot;);var a=r||e._debugID||&quot;&quot;,o=e._debugSource;o &amp;&amp;(a=o.fileName+&quot;:&quot;+o.lineNumber),Ld[a]||(Ld[a]=!0,s(&quot;Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?%s &quot;,n))}if(&quot;function &quot;==typeof t.getDerivedStateFromProps){var i=We(t)||&quot;Unknown &quot;;_d[i]||(s(&quot;%s: Function components do not support getDerivedStateFromProps.&quot;,i),_d[i]=!0)}if(&quot;object &quot;==typeof t.contextType &amp;&amp;null!==t.contextType){var l=We(t)||&quot;Unknown &quot;;xd[l]||(s(&quot;%s: Function components do not support contextType.&quot;,l),xd[l]=!0)}}var Jd={dehydrated:null,retryLane:0};function Qd(e){return{baseLanes:e}}function Zd(e,t){return{baseLanes:Na(e.baseLanes,t)}}function ep(e,t){return Ra(e.childLanes,t)}function tp(e,t,n){var r=t.pendingProps;Dg(t)&amp;&amp;(t.flags|=ar);var a=ku.current,o=!1;if(0!=(t.flags &amp;ar)||function(e,t,n,r){return(null===t||null!==t.memoizedState)&amp;&amp;xu(e,2)}(a,e)?(o=!0,t.flags &amp;=-65):null!==e &amp;&amp;null===e.memoizedState||void 0!==r.fallback &amp;&amp;!0!==r.unstable_avoidThisFallback &amp;&amp;(a|=1),Pu(t,a=_u(a)),null===e){void 0!==r.fallback &amp;&amp;Wu(t);var i=r.children,l=r.fallback;if(o){var s=np(t,i,l,n);return t.child.memoizedState=Qd(n),t.memoizedState=Jd,s}if(&quot;number &quot;==typeof r.unstable_expectedLoadTime){var c=np(t,i,l,n);return t.child.memoizedState=Qd(n),t.memoizedState=Jd,t.lanes=ra,Hh(ra),c}return function(e,t,n){var r=gg({mode:&quot;visible &quot;,children:t},e.mode,n,null);return r.return=e,e.child=r,r}(t,i,n)}if(null!==e.memoizedState){if(o){var u=op(e,t,r.children,r.fallback,n),f=t.child,d=e.child.memoizedState;return f.memoizedState=null===d?Qd(n):Zd(d,n),f.childLanes=ep(e,n),t.memoizedState=Jd,u}var p=ap(e,t,r.children,n);return t.memoizedState=null,p}if(o){var m=op(e,t,r.children,r.fallback,n),h=t.child,g=e.child.memoizedState;return h.memoizedState=null===g?Qd(n):Zd(g,n),h.childLanes=ep(e,n),t.memoizedState=Jd,m}var v=ap(e,t,r.children,n);return t.memoizedState=null,v}function np(e,t,n,r){var a,o,i=e.mode,l=e.child,s={mode:&quot;hidden &quot;,children:t};return 0==(2 &amp;i)&amp;&amp;null!==l?((a=l).childLanes=0,a.pendingProps=s,8 &amp;e.mode &amp;&amp;(a.actualDuration=0,a.actualStartTime=-1,a.selfBaseDuration=0,a.treeBaseDuration=0),o=hg(n,i,r,null)):(a=gg(s,i,0,null),o=hg(n,i,r,null)),a.return=e,o.return=e,a.sibling=o,e.child=a,o}function rp(e,t){return fg(e,t)}function ap(e,t,n,r){var a=e.child,o=a.sibling,i=rp(a,{mode:&quot;visible &quot;,children:n});return 0==(2 &amp;t.mode)&amp;&amp;(i.lanes=r),i.return=t,i.sibling=null,null!==o &amp;&amp;(o.nextEffect=null,o.flags=8,t.firstEffect=t.lastEffect=o),t.child=i,i}function op(e,t,n,r,a){var o,i,l=t.mode,s=e.child,c=s.sibling,u={mode:&quot;hidden &quot;,children:n};if(0==(2 &amp;l)&amp;&amp;t.child!==s){(o=t.child).childLanes=0,o.pendingProps=u,8 &amp;t.mode &amp;&amp;(o.actualDuration=0,o.actualStartTime=-1,o.selfBaseDuration=s.selfBaseDuration,o.treeBaseDuration=s.treeBaseDuration);var f=o.lastEffect;null!==f?(t.firstEffect=o.firstEffect,t.lastEffect=f,f.nextEffect=null):t.firstEffect=t.lastEffect=null}else o=rp(s,u);return null!==c?i=fg(c,r):(i=hg(r,l,a,null)).flags|=2,i.return=t,o.return=t,o.sibling=i,t.child=o,i}function ip(e,t){e.lanes=Na(e.lanes,t);var n=e.alternate;null!==n &amp;&amp;(n.lanes=Na(n.lanes,t)),Tc(e.return,t)}function lp(e,t){var n=Array.isArray(e),r=!n &amp;&amp;&quot;function &quot;==typeof be(e);if(n||r){var a=n?&quot;array &quot;:&quot;iterable &quot;;return s(&quot;A nested %s was passed to row #%s in &lt;SuspenseList /&gt;. Wrap it in an additional SuspenseList to configure its revealOrder: &lt;SuspenseList revealOrder=...&gt;... &lt;SuspenseList revealOrder=...&gt;{%s}&lt;/SuspenseList &gt;... &lt;/SuspenseList &gt;&quot;,a,t,a),!1}return!0}function sp(e,t,n,r,a,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:a,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=a,i.lastEffect=o)}function cp(e,t,n){var r=t.pendingProps,a=r.revealOrder,o=r.tail,i=r.children;!function(e){if(void 0!==e &amp;&amp;&quot;forwards &quot;!==e &amp;&amp;&quot;backwards &quot;!==e &amp;&amp;&quot;together &quot;!==e &amp;&amp;!Md[e])if(Md[e]=!0,&quot;string &quot;==typeof e)switch(e.toLowerCase()){case &quot;together &quot;:case &quot;forwards &quot;:case &quot;backwards &quot;:s(&#039;&quot;%s &quot;is not a valid value for revealOrder on &lt;SuspenseList /&gt;. Use lowercase &quot;%s &quot;instead.&#039;,e,e.toLowerCase());break;case &quot;forward &quot;:case &quot;backward &quot;:s(&#039;&quot;%s &quot;is not a valid value for revealOrder on &lt;SuspenseList /&gt;. React uses the -s suffix in the spelling. Use &quot;%ss &quot;instead.&#039;,e,e.toLowerCase());break;default:s(&#039;&quot;%s &quot;is not a supported revealOrder on &lt;SuspenseList /&gt;. Did you mean &quot;together &quot;, &quot;forwards &quot;or &quot;backwards &quot;?&#039;,e)}else s(&#039;%s is not a supported value for revealOrder on &lt;SuspenseList /&gt;. Did you mean &quot;together &quot;, &quot;forwards &quot;or &quot;backwards &quot;?&#039;,e)}(a),function(e,t){void 0===e||Dd[e]||(&quot;collapsed &quot;!==e &amp;&amp;&quot;hidden &quot;!==e?(Dd[e]=!0,s(&#039;&quot;%s &quot;is not a supported value for tail on &lt;SuspenseList /&gt;. Did you mean &quot;collapsed &quot;or &quot;hidden &quot;?&#039;,e)):&quot;forwards &quot;!==t &amp;&amp;&quot;backwards &quot;!==t &amp;&amp;(Dd[e]=!0,s(&#039;&lt;SuspenseList tail=&quot;%s &quot;/&gt;is only valid if revealOrder is &quot;forwards &quot;or &quot;backwards &quot;. Did you mean to specify revealOrder=&quot;forwards &quot;?&#039;,e)))}(o,a),function(e,t){if((&quot;forwards &quot;===t||&quot;backwards &quot;===t)&amp;&amp;null!=e &amp;&amp;!1!==e)if(Array.isArray(e)){for(var n=0;n &lt;e.length;n++)if(!lp(e[n],n))return}else{var r=be(e);if(&quot;function &quot;==typeof r){var a=r.call(e);if(a)for(var o=a.next(),i=0;!o.done;o=a.next()){if(!lp(o.value,i))return;i++}}else s(&#039;A single row was passed to a &lt;SuspenseList revealOrder=&quot;%s &quot;/&gt;. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?&#039;,t)}}(i,a),Fd(e,t,i,n);var l=ku.current;if(xu(l,2)?(l=Lu(l,2),t.flags|=ar):(null!==e &amp;&amp;0!=(e.flags &amp;ar)&amp;&amp;function(e,t,n){for(var r=t;null!==r;){if(r.tag===h)null!==r.memoizedState &amp;&amp;ip(r,n);else if(r.tag===E)ip(r,n);else if(null!==r.child){r.child.return=r,r=r.child;continue}if(r===e)return;for(;null===r.sibling;){if(null===r.return||r.return===e)return;r=r.return}r.sibling.return=r.return,r=r.sibling}}(t,t.child,n),l=_u(l)),Pu(t,l),0==(2 &amp;t.mode))t.memoizedState=null;else switch(a){case &quot;forwards &quot;:var c,u=function(e){for(var t=e,n=null;null!==t;){var r=t.alternate;null!==r &amp;&amp;null===Uu(r)&amp;&amp;(n=t),t=t.sibling}return n}(t.child);null===u?(c=t.child,t.child=null):(c=u.sibling,u.sibling=null),sp(t,!1,c,u,o,t.lastEffect);break;case &quot;backwards &quot;:var f=null,d=t.child;for(t.child=null;null!==d;){var p=d.alternate;if(null!==p &amp;&amp;null===Uu(p)){t.child=d;break}var m=d.sibling;d.sibling=f,f=d,d=m}sp(t,!0,f,null,o,t.lastEffect);break;case &quot;together &quot;:sp(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}var up,fp,dp,pp=!1,mp=!1;function hp(){jd=!0}function gp(e,t,n){return null!==e &amp;&amp;(t.dependencies=e.dependencies),Od(),ih(t.lanes),ba(n,t.childLanes)?(function(e,t){if(null!==e &amp;&amp;t.child!==e.child)throw Error(&quot;Resuming work not yet implemented.&quot;);if(null!==t.child){var n=t.child,r=fg(n,n.pendingProps);for(t.child=r,r.return=t;null!==n.sibling;)(r=r.sibling=fg(n=n.sibling,n.pendingProps)).return=t;r.sibling=null}}(e,t),t.child):null}function vp(e,t,n){var r=t.lanes;if(t._debugNeedsRemount &amp;&amp;null!==e)return function(e,t,n){var r=t.return;if(null===r)throw new Error(&quot;Cannot swap the root fiber.&quot;);if(e.alternate=null,t.alternate=null,n.index=t.index,n.sibling=t.sibling,n.return=t.return,n.ref=t.ref,t===r.child)r.child=n;else{var a=r.child;if(null===a)throw new Error(&quot;Expected parent to have a child.&quot;);for(;a.sibling!==t;)if(null===(a=a.sibling))throw new Error(&quot;Expected to find the previous sibling.&quot;);a.sibling=n}var o=r.lastEffect;return null!==o?(o.nextEffect=e,r.lastEffect=e):r.firstEffect=r.lastEffect=e,e.nextEffect=null,e.flags=8,n.flags|=2,n}(e,t,pg(t.type,t.key,t.pendingProps,t._debugOwner||null,t.mode,t.lanes));if(null!==e)if(e.memoizedProps!==t.pendingProps||is()||t.type!==e.type)jd=!0;else{if(!ba(n,r)){switch(jd=!1,t.tag){case 3:Kd(t),$u();break;case 5:Au(t);break;case 1:ls(t.type)&amp;&amp;ds(t);break;case 4:wu(t,t.stateNode.containerInfo);break;case d:Ec(t,t.memoizedProps.value);break;case m:ba(n,t.childLanes)&amp;&amp;(t.flags|=4);var a=t.stateNode;a.effectDuration=0,a.passiveEffectDuration=0;break;case h:if(null!==t.memoizedState){if(ba(n,t.child.childLanes))return tp(e,t,n);Pu(t,_u(ku.current));var o=gp(e,t,n);return null!==o?o.sibling:null}Pu(t,_u(ku.current));break;case E:var i=0!=(e.flags &amp;ar),l=ba(n,t.childLanes);if(i){if(l)return cp(e,t,n);t.flags|=ar}var c=t.memoizedState;if(null!==c &amp;&amp;(c.rendering=null,c.tail=null,c.lastEffect=null),Pu(t,ku.current),l)break;return null;case N:case R:return t.lanes=0,Vd(e,t,n)}return gp(e,t,n)}jd=0!=(e.flags &amp;ur)}else jd=!1;switch(t.lanes=0,t.tag){case 2:return function(e,t,n,r){null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2);var a,o,i=t.pendingProps;if(a=os(t,rs(0,n,!1)),Nc(t,r),n.prototype &amp;&amp;&quot;function &quot;==typeof n.prototype.render){var l=We(n)||&quot;Unknown &quot;;Id[l]||(s(&quot;The &lt;%s /&gt;component appears to have a render method, but doesn &#039;t extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.&quot;,l,l),Id[l]=!0)}if(1 &amp;t.mode &amp;&amp;Js.recordLegacyContextWarning(t,null),Qe(!0),Ud.current=t,o=Ef(null,t,n,i,a,r),Qe(!1),t.flags|=1,&quot;object &quot;==typeof o &amp;&amp;null!==o &amp;&amp;&quot;function &quot;==typeof o.render &amp;&amp;void 0===o.$$typeof){var c=We(n)||&quot;Unknown &quot;;kd[c]||(s(&quot;The &lt;%s /&gt;component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can &#039;t use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don &#039;t use an arrow function since it cannot be called with `new` by React.&quot;,c,c,c),kd[c]=!0)}if(&quot;object &quot;==typeof o &amp;&amp;null!==o &amp;&amp;&quot;function &quot;==typeof o.render &amp;&amp;void 0===o.$$typeof){var u=We(n)||&quot;Unknown &quot;;kd[u]||(s(&quot;The &lt;%s /&gt;component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can &#039;t use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don &#039;t use an arrow function since it cannot be called with `new` by React.&quot;,u,u,u),kd[u]=!0),t.tag=1,t.memoizedState=null,t.updateQueue=null;var f=!1;ls(n)?(f=!0,ds(t)):f=!1,t.memoizedState=null!=o.state?o.state:null,Cc(t);var d=n.getDerivedStateFromProps;return &quot;function &quot;==typeof d &amp;&amp;Qc(t,n,d,i),lu(t,o),uu(t,n,i,r),Xd(null,t,n,!0,f,r)}if(t.tag=0,1 &amp;t.mode){ke();try{o=Ef(null,t,n,i,a,r)}finally{xe()}}return Fd(null,t,o,r),qd(t,n),t.child}(e,t,t.type,n);case 16:return function(e,t,n,r,a){null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2);var o=t.pendingProps,i=(0,n._init)(n._payload);t.type=i;var l=t.tag=function(e){if(&quot;function &quot;==typeof e)return ug(e)?1:0;if(null!=e){var t=e.$$typeof;if(t===ie)return p;if(t===ce)return g}return 2}(i),s=sc(i,o);switch(l){case 0:return qd(t,i),t.type=i=Jh(i),Yd(null,t,i,s,a);case 1:return t.type=i=Qh(i),$d(null,t,i,s,a);case p:return t.type=i=Zh(i),zd(null,t,i,s,a);case g:if(t.type!==t.elementType){var c=i.propTypes;c &amp;&amp;Gl(c,s,&quot;prop &quot;,We(i))}return Hd(null,t,i,sc(i.type,s),r,a)}var u=&quot;&quot;;throw null!==i &amp;&amp;&quot;object &quot;==typeof i &amp;&amp;i.$$typeof===ue &amp;&amp;(u=&quot;Did you wrap a component in React.lazy() more than once?&quot;),Error(&quot;Element type is invalid. Received a promise that resolves to: &quot;+i+&quot;. Lazy element type must resolve to a class or function.&quot;+u)}(e,t,t.elementType,r,n);case 0:var u=t.type,f=t.pendingProps;return Yd(e,t,u,t.elementType===u?f:sc(u,f),n);case 1:var S=t.type,w=t.pendingProps;return $d(e,t,S,t.elementType===S?w:sc(S,w),n);case 3:return function(e,t,n){if(Kd(t),null===e||null===t.updateQueue)throw Error(&quot;If the root does not have an updateQueue, we should have already bailed out. This error is likely caused by a bug in React. Please file an issue.&quot;);var r=t.pendingProps,a=t.memoizedState,o=null!==a?a.element:null;Ac(e,t),Lc(t,r,null,n);var i=t.memoizedState.element;if(i===o)return $u(),gp(e,t,n);var l,s=t.stateNode;if(s.hydrate &amp;&amp;(Fu=Sl((l=t).stateNode.containerInfo),ju=l,zu=!0,1)){var c=s.mutableSourceEagerHydrationData;if(null!=c)for(var u=0;u &lt;c.length;u+=2)Qu(c[u],c[u+1]);var f=vu(t,null,i,n);t.child=f;for(var d=f;d;)d.flags=-3 &amp;d.flags|1024,d=d.sibling}else Fd(e,t,i,n),$u();return t.child}(e,t,n);case 5:return function(e,t,n){Au(t),null===e &amp;&amp;Wu(t);var r=t.type,a=t.pendingProps,o=null!==e?e.memoizedProps:null,i=a.children;return ml(r,a)?i=null:null!==o &amp;&amp;ml(r,o)&amp;&amp;(t.flags|=16),Gd(e,t),Fd(e,t,i,n),t.child}(e,t,n);case 6:return function(e,t){return null===e &amp;&amp;Wu(t),null}(e,t);case h:return tp(e,t,n);case 4:return function(e,t,n){wu(t,t.stateNode.containerInfo);var r=t.pendingProps;return null===e?t.child=gu(t,null,r,n):Fd(e,t,r,n),t.child}(e,t,n);case p:var O=t.type,C=t.pendingProps;return zd(e,t,O,t.elementType===O?C:sc(O,C),n);case 7:return function(e,t,n){return Fd(e,t,t.pendingProps,n),t.child}(e,t,n);case 8:return function(e,t,n){return Fd(e,t,t.pendingProps.children,n),t.child}(e,t,n);case m:return function(e,t,n){t.flags|=4;var r=t.stateNode;return r.effectDuration=0,r.passiveEffectDuration=0,Fd(e,t,t.pendingProps.children,n),t.child}(e,t,n);case d:return function(e,t,n){var r=t.type._context,a=t.pendingProps,o=t.memoizedProps,i=a.value;&quot;value &quot;in a||pp||(pp=!0,s(&quot;The `value` prop is required for the `&lt;Context.Provider &gt;`. Did you misspell it or forget to pass it?&quot;));var l=t.type.propTypes;if(l &amp;&amp;Gl(l,a,&quot;prop &quot;,&quot;Context.Provider &quot;),Ec(t,i),null!==o){var c=function(e,t,n){if(Yo(n,t))return 0;var r=&quot;function &quot;==typeof e._calculateChangedBits?e._calculateChangedBits(n,t):uc;return(r &amp;uc)!==r &amp;&amp;s(&quot;calculateChangedBits: Expected the return value to be a 31-bit integer. Instead received: %s &quot;,r),0|r}(r,i,o.value);if(0===c){if(o.children===a.children &amp;&amp;!is())return gp(e,t,n)}else!function(e,t,n,r){var a=e.child;for(null!==a &amp;&amp;(a.return=e);null!==a;){var o=void 0,i=a.dependencies;if(null!==i){o=a.child;for(var l=i.firstContext;null!==l;){if(l.context===t &amp;&amp;0!=(l.observedBits &amp;n)){if(1===a.tag){var s=Ic(ca,ya(r));s.tag=2,kc(a,s)}a.lanes=Na(a.lanes,r);var c=a.alternate;null!==c &amp;&amp;(c.lanes=Na(c.lanes,r)),Tc(a.return,r),i.lanes=Na(i.lanes,r);break}l=l.next}}else o=a.tag===d &amp;&amp;a.type===e.type?null:a.child;if(null!==o)o.return=a;else for(o=a;null!==o;){if(o===e){o=null;break}var u=o.sibling;if(null!==u){u.return=o.return,o=u;break}o=o.return}a=o}}(t,r,c,n)}return Fd(e,t,a.children,n),t.child}(e,t,n);case 9:return function(e,t,n){var r=t.type;void 0===r._context?r!==r.Consumer &amp;&amp;(mp||(mp=!0,s(&quot;Rendering &lt;Context &gt;directly is not supported and will be removed in a future major release. Did you mean to render &lt;Context.Consumer &gt;instead?&quot;))):r=r._context;var a=t.pendingProps,o=a.children;&quot;function &quot;!=typeof o &amp;&amp;s(&quot;A context consumer was rendered with multiple children, or a child that isn &#039;t a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it.&quot;),Nc(t,n);var i,l=Rc(r,a.unstable_observedBits);return Ud.current=t,Qe(!0),i=o(l),Qe(!1),t.flags|=1,Fd(e,t,i,n),t.child}(e,t,n);case g:var A=t.type,I=sc(A,t.pendingProps);if(t.type!==t.elementType){var k=A.propTypes;k &amp;&amp;Gl(k,I,&quot;prop &quot;,We(A))}return Hd(e,t,A,I=sc(A.type,I),r,n);case v:return Bd(e,t,t.type,t.pendingProps,r,n);case y:var x=t.type,_=t.pendingProps;return function(e,t,n,r,a){var o;return null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,ls(n)?(o=!0,ds(t)):o=!1,Nc(t,a),su(t,n,r),uu(t,n,r,a),Xd(null,t,n,!0,o,a)}(e,t,x,t.elementType===x?_:sc(x,_),n);case E:return cp(e,t,n);case b:case 21:case T:break;case N:return Vd(e,t,n);case R:return Wd(e,t,n)}throw Error(&quot;Unknown unit of work tag (&quot;+t.tag+&quot;). This error is likely caused by a bug in React. Please file an issue.&quot;)}function yp(e){e.flags|=4}function Ep(e){e.flags|=or}function bp(e,t){if(!Xu())switch(e.tailMode){case &quot;hidden &quot;:for(var n=e.tail,r=null;null!==n;)null!==n.alternate &amp;&amp;(r=n),n=n.sibling;null===r?e.tail=null:r.sibling=null;break;case &quot;collapsed &quot;:for(var a=e.tail,o=null;null!==a;)null!==a.alternate &amp;&amp;(o=a),a=a.sibling;null===o?t||null===e.tail?e.tail=null:e.tail.sibling=null:o.sibling=null}}function Tp(e,t,n){var r,a,o=t.pendingProps;switch(t.tag){case 2:case 16:case v:case 0:case p:case 7:case 8:case m:case 9:case g:return null;case 1:return ls(t.type)&amp;&amp;ss(t),null;case 3:Ou(t),cs(t),Ju();var i=t.stateNode;return i.pendingContext &amp;&amp;(i.context=i.pendingContext,i.pendingContext=null),(null===e||null===e.child)&amp;&amp;(Yu(t)?yp(t):i.hydrate||(t.flags|=ir)),null;case 5:Iu(t);var l=Su(),c=t.type;if(null!==e &amp;&amp;null!=t.stateNode)fp(e,t,c,o),e.ref!==t.ref &amp;&amp;Ep(t);else{if(!o){if(null===t.stateNode)throw Error(&quot;We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.&quot;);return null}var u=Cu();if(Yu(t))a=function(e,t,n,r,a,o){return Ll(o,e),zl(e,n),function(e,t,n,r,a){var o,i;switch(Ai=!0===n.suppressHydrationWarning,o=sn(t,n),Ii(t,n),t){case &quot;dialog &quot;:hi(&quot;cancel &quot;,e),hi(&quot;close &quot;,e);break;case &quot;iframe &quot;:case &quot;object &quot;:case &quot;embed &quot;:hi(&quot;load &quot;,e);break;case &quot;video &quot;:case &quot;audio &quot;:for(var l=0;l &lt;ui.length;l++)hi(ui[l],e);break;case &quot;source &quot;:hi(&quot;error &quot;,e);break;case &quot;img &quot;:case &quot;image &quot;:case &quot;link &quot;:hi(&quot;error &quot;,e),hi(&quot;load &quot;,e);break;case &quot;details &quot;:hi(&quot;toggle &quot;,e);break;case &quot;input &quot;:mt(e,n),hi(&quot;invalid &quot;,e);break;case &quot;option &quot;:Nt(0,n);break;case &quot;select &quot;:At(e,n),hi(&quot;invalid &quot;,e);break;case &quot;textarea &quot;:xt(e,n),hi(&quot;invalid &quot;,e)}ln(t,n),i=new Set;for(var s=e.attributes,c=0;c &lt;s.length;c++)switch(s[c].name.toLowerCase()){case &quot;data-reactroot &quot;:case &quot;value &quot;:case &quot;checked &quot;:case &quot;selected &quot;:break;default:i.add(s[c].name)}var u,f=null;for(var d in n)if(n.hasOwnProperty(d)){var p=n[d];if(d===Bi)&quot;string &quot;==typeof p?e.textContent!==p &amp;&amp;(Ai||ki(e.textContent,p),f=[Bi,p]):&quot;number &quot;==typeof p &amp;&amp;e.textContent!==&quot;&quot;+p &amp;&amp;(Ai||ki(e.textContent,p),f=[Bi,&quot;&quot;+p]);else if(O.hasOwnProperty(d))null!=p &amp;&amp;(&quot;function &quot;!=typeof p &amp;&amp;Li(d,p),&quot;onScroll &quot;===d &amp;&amp;hi(&quot;scroll &quot;,e));else if(&quot;boolean &quot;==typeof o){var m=void 0,h=B(d);if(Ai);else if(d===Fi||d===zi||&quot;value &quot;===d||&quot;checked &quot;===d||&quot;selected &quot;===d);else if(d===ji){var g=e.innerHTML,v=p?p.__html:void 0;if(null!=v){var y=Di(e,v);y!==g &amp;&amp;xi(d,g,y)}}else if(d===Vi){if(i.delete(d),Pi){var E=nn(p);E!==(m=e.getAttribute(&quot;style &quot;))&amp;&amp;xi(d,m,E)}}else if(o)i.delete(d.toLowerCase()),p!==(m=J(e,d,p))&amp;&amp;xi(d,m,p);else if(!F(d,h,o)&amp;&amp;!H(d,p,h,o)){var b=!1;if(null!==h)i.delete(h.attributeName),m=q(e,d,p,h);else{var T=r;if(T===Wi &amp;&amp;(T=Dt(t)),T===Wi)i.delete(d.toLowerCase());else{var N=(u=d.toLowerCase(),cn.hasOwnProperty(u)&amp;&amp;cn[u]||null);null!==N &amp;&amp;N!==d &amp;&amp;(b=!0,i.delete(N)),i.delete(d)}m=J(e,d,p)}p===m||b||xi(d,m,p)}}}switch(i.size &gt;0 &amp;&amp;!Ai &amp;&amp;_i(i),t){case &quot;input &quot;:ot(e),vt(e,n,!0);break;case &quot;textarea &quot;:ot(e),Lt(e);break;case &quot;select &quot;:case &quot;option &quot;:break;default:&quot;function &quot;==typeof n.onClick &amp;&amp;Ki(e)}return f}(e,t,n,a.namespace)}((r=t).stateNode,r.type,r.memoizedProps,0,u,r),r.updateQueue=a,null!==a &amp;&amp;yp(t);else{var f=function(e,t,n,r,a){var o=r;if(tl(e,null,o.ancestorInfo),&quot;string &quot;==typeof t.children||&quot;number &quot;==typeof t.children){var i=&quot;&quot;+t.children,l=nl(o.ancestorInfo,e);tl(null,i,l)}var c=function(e,t,n,r){var a,o,i=$i(n),l=r;if(l===Wi &amp;&amp;(l=Dt(e)),l===Wi){if((a=sn(e,t))||e===e.toLowerCase()||s(&quot;&lt;%s /&gt;is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.&quot;,e),&quot;script &quot;===e){var c=i.createElement(&quot;div &quot;);c.innerHTML=&quot;&lt;script &gt;&lt;\/script &gt;&quot;,o=c.removeChild(c.firstChild)}else if(&quot;string &quot;==typeof t.is)o=i.createElement(e,{is:t.is});else if(o=i.createElement(e),&quot;select &quot;===e){var u=o;t.multiple?u.multiple=!0:t.size &amp;&amp;(u.size=t.size)}}else o=i.createElementNS(l,e);return l===Wi &amp;&amp;(a||&quot;[object HTMLUnknownElement]&quot;!==Object.prototype.toString.call(o)||Object.prototype.hasOwnProperty.call(Ci,e)||(Ci[e]=!0,s(&quot;The tag &lt;%s &gt;is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.&quot;,e))),o}(e,t,n,o.namespace);return Ll(a,c),zl(c,t),c}(c,o,l,u,t);up(f,t),t.stateNode=f,function(e,t,n,r,a){return function(e,t,n,r){var a,o=sn(t,n);switch(Ii(t,n),t){case &quot;dialog &quot;:hi(&quot;cancel &quot;,e),hi(&quot;close &quot;,e),a=n;break;case &quot;iframe &quot;:case &quot;object &quot;:case &quot;embed &quot;:hi(&quot;load &quot;,e),a=n;break;case &quot;video &quot;:case &quot;audio &quot;:for(var i=0;i &lt;ui.length;i++)hi(ui[i],e);a=n;break;case &quot;source &quot;:hi(&quot;error &quot;,e),a=n;break;case &quot;img &quot;:case &quot;image &quot;:case &quot;link &quot;:hi(&quot;error &quot;,e),hi(&quot;load &quot;,e),a=n;break;case &quot;details &quot;:hi(&quot;toggle &quot;,e),a=n;break;case &quot;input &quot;:mt(e,n),a=pt(e,n),hi(&quot;invalid &quot;,e);break;case &quot;option &quot;:Nt(0,n),a=Rt(0,n);break;case &quot;select &quot;:At(e,n),a=Ct(0,n),hi(&quot;invalid &quot;,e);break;case &quot;textarea &quot;:xt(e,n),a=kt(e,n),hi(&quot;invalid &quot;,e);break;default:a=n}switch(ln(t,a),function(e,t,n,r,a){for(var o in r)if(r.hasOwnProperty(o)){var i=r[o];if(o===Vi)i &amp;&amp;Object.freeze(i),rn(t,i);else if(o===ji){var l=i?i.__html:void 0;null!=l &amp;&amp;zt(t,l)}else o===Bi?&quot;string &quot;==typeof i?(&quot;textarea &quot;!==e||&quot;&quot;!==i)&amp;&amp;Ht(t,i):&quot;number &quot;==typeof i &amp;&amp;Ht(t,&quot;&quot;+i):o===Fi||o===zi||o===Hi||(O.hasOwnProperty(o)?null!=i &amp;&amp;(&quot;function &quot;!=typeof i &amp;&amp;Li(o,i),&quot;onScroll &quot;===o &amp;&amp;hi(&quot;scroll &quot;,t)):null!=i &amp;&amp;Q(t,o,i,a))}}(t,e,0,a,o),t){case &quot;input &quot;:ot(e),vt(e,n,!1);break;case &quot;textarea &quot;:ot(e),Lt(e);break;case &quot;option &quot;:!function(e,t){null!=t.value &amp;&amp;e.setAttribute(&quot;value &quot;,Ze(et(t.value)))}(e,n);break;case &quot;select &quot;:!function(e,t){var n=e;n.multiple=!!t.multiple;var r=t.value;null!=r?Ot(n,!!t.multiple,r,!1):null!=t.defaultValue &amp;&amp;Ot(n,!!t.multiple,t.defaultValue,!0)}(e,n);break;default:&quot;function &quot;==typeof a.onClick &amp;&amp;Ki(e)}}(e,t,n),pl(t,n)}(f,c,o)&amp;&amp;yp(t)}null!==t.ref &amp;&amp;Ep(t)}return null;case 6:var S=o;if(e &amp;&amp;null!=t.stateNode)dp(0,t,e.memoizedProps,S);else{if(&quot;string &quot;!=typeof S &amp;&amp;null===t.stateNode)throw Error(&quot;We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.&quot;);var w=Su(),C=Cu();Yu(t)?function(e){var t=e.stateNode,n=e.memoizedProps,r=function(e,t,n){return Ll(n,e),function(e,t){return e.nodeValue!==t}(e,t)}(t,n,e);if(r){var a=ju;if(null!==a)switch(a.tag){case 3:!function(e,t,n){qi(t,n)}(0,t,n);break;case 5:!function(e,t,n,r,a){!0!==t.suppressHydrationWarning &amp;&amp;qi(r,a)}(0,a.memoizedProps,0,t,n)}}return r}(t)&amp;&amp;yp(t):t.stateNode=function(e,t,n,r){tl(null,e,n.ancestorInfo);var a=function(e,t){return $i(t).createTextNode(e)}(e,t);return Ll(r,a),a}(S,w,C,t)}return null;case h:Mu(t);var A=t.memoizedState;if(0!=(t.flags &amp;ar))return t.lanes=n,0!=(8 &amp;t.mode)&amp;&amp;Ad(t),t;var I=null!==A,k=!1;return null===e?void 0!==t.memoizedProps.fallback &amp;&amp;Yu(t):k=null!==e.memoizedState,I &amp;&amp;!k &amp;&amp;0!=(2 &amp;t.mode)&amp;&amp;(null===e &amp;&amp;!0!==t.memoizedProps.unstable_avoidThisFallback||xu(ku.current,1)?0===fm &amp;&amp;(fm=3):(0!==fm &amp;&amp;3!==fm||(fm=4),null!==im &amp;&amp;(ha(mm)||ha(hm))&amp;&amp;$m(im,sm))),(I||k)&amp;&amp;(t.flags|=4),null;case 4:return Ou(t),null===e &amp;&amp;vi(t.stateNode.containerInfo),null;case d:return bc(t),null;case y:return ls(t.type)&amp;&amp;ss(t),null;case E:Mu(t);var x=t.memoizedState;if(null===x)return null;var _=0!=(t.flags &amp;ar),L=x.rendering;if(null===L)if(_)bp(x,!1);else{if(0!==fm||null!==e &amp;&amp;0!=(e.flags &amp;ar))for(var P=t.child;null!==P;){var M=Uu(P);if(null!==M){_=!0,t.flags|=ar,bp(x,!1);var D=M.updateQueue;return null!==D &amp;&amp;(t.updateQueue=D,t.flags|=4),null===x.lastEffect &amp;&amp;(t.firstEffect=null),t.lastEffect=x.lastEffect,yu(t,n),Pu(t,Lu(ku.current,2)),t.child}P=P.sibling}null!==x.tail &amp;&amp;Hs()&gt;Tm()&amp;&amp;(t.flags|=ar,_=!0,bp(x,!1),t.lanes=ra,Hh(ra))}else{if(!_){var U=Uu(L);if(null!==U){t.flags|=ar,_=!0;var j=U.updateQueue;if(null!==j &amp;&amp;(t.updateQueue=j,t.flags|=4),bp(x,!0),null===x.tail &amp;&amp;&quot;hidden &quot;===x.tailMode &amp;&amp;!L.alternate &amp;&amp;!Xu()){var z=t.lastEffect=x.lastEffect;return null!==z &amp;&amp;(z.nextEffect=null),null}}else 2*Hs()-x.renderingStartTime &gt;Tm()&amp;&amp;n!==sa &amp;&amp;(t.flags|=ar,_=!0,bp(x,!1),t.lanes=ra,Hh(ra))}if(x.isBackwards)L.sibling=t.child,t.child=L;else{var V=x.last;null!==V?V.sibling=L:t.child=L,x.last=L}}if(null!==x.tail){var W=x.tail;x.rendering=W,x.tail=W.sibling,x.lastEffect=t.lastEffect,x.renderingStartTime=Hs(),W.sibling=null;var G=ku.current;return Pu(t,G=_?Lu(G,2):_u(G)),W}return null;case b:case 21:case T:break;case N:case R:return Zm(t),null!==e &amp;&amp;null!==e.memoizedState!=(null!==t.memoizedState)&amp;&amp;&quot;unstable-defer-without-hiding &quot;!==o.mode &amp;&amp;(t.flags|=4),null}throw Error(&quot;Unknown unit of work tag (&quot;+t.tag+&quot;). This error is likely caused by a bug in React. Please file an issue.&quot;)}function Np(e,t){switch(e.tag){case 1:ls(e.type)&amp;&amp;ss(e);var n=e.flags;return n &amp;cr?(e.flags=-4097 &amp;n|ar,0!=(8 &amp;e.mode)&amp;&amp;Ad(e),e):null;case 3:Ou(e),cs(e),Ju();var r=e.flags;if(0!=(r &amp;ar))throw Error(&quot;The root failed to unmount after an error. This is likely a bug in React. Please file an issue.&quot;);return e.flags=-4097 &amp;r|ar,e;case 5:return Iu(e),null;case h:Mu(e);var a=e.flags;return a &amp;cr?(e.flags=-4097 &amp;a|ar,0!=(8 &amp;e.mode)&amp;&amp;Ad(e),e):null;case E:return Mu(e),null;case 4:return Ou(e),null;case d:return bc(e),null;case N:case R:return Zm(e),null;default:return null}}function Rp(e){switch(e.tag){case 1:null!=e.type.childContextTypes &amp;&amp;ss(e);break;case 3:Ou(e),cs(e),Ju();break;case 5:Iu(e);break;case 4:Ou(e);break;case h:case E:Mu(e);break;case d:bc(e);break;case N:case R:Zm(e)}}function Sp(e,t){return{value:e,source:t,stack:Be(t)}}function wp(e,t){try{var n=t.value,r=t.source,a=t.stack,o=null!==a?a:&quot;&quot;;if(null!=n &amp;&amp;n._suppressLogging){if(1===e.tag)return;console.error(n)}var i=r?We(r.type):null,l=i?&quot;The above error occurred in the &lt;&quot;+i+&quot;&gt;component:&quot;:&quot;The above error occurred in one of your React components:&quot;,s=We(e.type);console.error(l+&quot;
 &quot;+o+&quot;

 &quot;+(s?&quot;React will try to recreate this component tree from scratch using the error boundary you provided, &quot;+s+&quot;.&quot;:&quot;Consider adding an error boundary to your tree to customize error handling behavior.
Visit https://reactjs.org/link/error-boundaries to learn more about error boundaries.&quot;))}catch(e){setTimeout(function(){throw e})}}up=function(e,t,n,r){for(var a=t.child;null!==a;){if(5===a.tag||6===a.tag)e.appendChild(a.stateNode);else if(4===a.tag);else if(null!==a.child){a.child.return=a,a=a.child;continue}if(a===t)return;for(;null===a.sibling;){if(null===a.return||a.return===t)return;a=a.return}a.sibling.return=a.return,a=a.sibling}},fp=function(e,t,n,r,a){var o=e.memoizedProps;if(o!==r){var i=function(e,t,n,r,a,o){if(typeof r.children!=typeof n.children &amp;&amp;(&quot;string &quot;==typeof r.children||&quot;number &quot;==typeof r.children)){var i=&quot;&quot;+r.children,l=nl(o.ancestorInfo,t);tl(null,i,l)}return function(e,t,n,r,a){Ii(t,r);var o,i,l,c,u=null;switch(t){case &quot;input &quot;:o=pt(e,n),i=pt(e,r),u=[];break;case &quot;option &quot;:o=Rt(0,n),i=Rt(0,r),u=[];break;case &quot;select &quot;:o=Ct(0,n),i=Ct(0,r),u=[];break;case &quot;textarea &quot;:o=kt(e,n),i=kt(e,r),u=[];break;default:i=r,&quot;function &quot;!=typeof(o=n).onClick &amp;&amp;&quot;function &quot;==typeof i.onClick &amp;&amp;Ki(e)}ln(t,i);var f=null;for(l in o)if(!i.hasOwnProperty(l)&amp;&amp;o.hasOwnProperty(l)&amp;&amp;null!=o[l])if(l===Vi){var d=o[l];for(c in d)d.hasOwnProperty(c)&amp;&amp;(f||(f={}),f[c]=&quot;&quot;)}else l===ji||l===Bi||l===Fi||l===zi||l===Hi||(O.hasOwnProperty(l)?u||(u=[]):(u=u||[]).push(l,null));for(l in i){var p=i[l],m=null!=o?o[l]:void 0;if(i.hasOwnProperty(l)&amp;&amp;p!==m &amp;&amp;(null!=p||null!=m))if(l===Vi)if(p &amp;&amp;Object.freeze(p),m){for(c in m)!m.hasOwnProperty(c)||p &amp;&amp;p.hasOwnProperty(c)||(f||(f={}),f[c]=&quot;&quot;);for(c in p)p.hasOwnProperty(c)&amp;&amp;m[c]!==p[c]&amp;&amp;(f||(f={}),f[c]=p[c])}else f||(u||(u=[]),u.push(l,f)),f=p;else if(l===ji){var h=p?p.__html:void 0;null!=h &amp;&amp;(m?m.__html:void 0)!==h &amp;&amp;(u=u||[]).push(l,h)}else l===Bi?&quot;string &quot;!=typeof p &amp;&amp;&quot;number &quot;!=typeof p||(u=u||[]).push(l,&quot;&quot;+p):l===Fi||l===zi||(O.hasOwnProperty(l)?(null!=p &amp;&amp;(&quot;function &quot;!=typeof p &amp;&amp;Li(l,p),&quot;onScroll &quot;===l &amp;&amp;hi(&quot;scroll &quot;,e)),u||m===p||(u=[])):&quot;object &quot;==typeof p &amp;&amp;null!==p &amp;&amp;p.$$typeof===me?p.toString():(u=u||[]).push(l,p))}return f &amp;&amp;(function(e,t){if(t){var n,r=an(e),a=an(t),o={};for(var i in r){var l=r[i],c=a[i];if(c &amp;&amp;l!==c){var u=l+&quot;,&quot;+c;if(o[u])continue;o[u]=!0,s(&quot;%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don &#039;t mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.&quot;,null==(n=e[l])||&quot;boolean &quot;==typeof n||&quot;&quot;===n?&quot;Removing &quot;:&quot;Updating &quot;,l,c)}}}}(f,i.style),(u=u||[]).push(Vi,f)),u}(e,t,n,r)}(t.stateNode,n,o,r,0,Cu());t.updateQueue=i,i &amp;&amp;yp(t)}},dp=function(e,t,n,r){n!==r &amp;&amp;yp(t)};var Op,Cp=&quot;function &quot;==typeof WeakMap?WeakMap:Map;function Ap(e,t,n){var r=Ic(ca,n);r.tag=3,r.payload={element:null};var a=t.value;return r.callback=function(){Sh(a),wp(e,t)},r}function Ip(e,t,n){var r=Ic(ca,n);r.tag=3;var a=e.type.getDerivedStateFromError;if(&quot;function &quot;==typeof a){var o=t.value;r.payload=function(){return wp(e,t),a(o)}}var i=e.stateNode;return r.callback=null!==i &amp;&amp;&quot;function &quot;==typeof i.componentDidCatch?function(){tg(e),&quot;function &quot;!=typeof a &amp;&amp;(null===wm?wm=new Set([this]):wm.add(this),wp(e,t));var n=t.stack;this.componentDidCatch(t.value,{componentStack:null!==n?n:&quot;&quot;}),&quot;function &quot;!=typeof a &amp;&amp;(ba(e.lanes,1)||s(&quot;%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.&quot;,We(e.type)||&quot;Unknown &quot;))}:function(){tg(e)},r}function kp(e,t,n){var r,a=e.pingCache;if(null===a?(a=e.pingCache=new Cp,r=new Set,a.set(t,r)):void 0===(r=a.get(t))&amp;&amp;(r=new Set,a.set(t,r)),!r.has(n)){r.add(n);var o=Ch.bind(null,e,t,n);t.then(o,o)}}function xp(e,t,n,r,a){if(n.flags|=sr,n.firstEffect=n.lastEffect=null,null!==r &amp;&amp;&quot;object &quot;==typeof r &amp;&amp;&quot;function &quot;==typeof r.then){var o=r;if(0==(2 &amp;n.mode)){var i=n.alternate;i?(n.updateQueue=i.updateQueue,n.memoizedState=i.memoizedState,n.lanes=i.lanes):(n.updateQueue=null,n.memoizedState=null)}var l=xu(ku.current,1),s=t;do{if(s.tag===h &amp;&amp;Du(s,l)){var c=s.updateQueue;if(null===c){var u=new Set;u.add(o),s.updateQueue=u}else c.add(o);if(0==(2 &amp;s.mode)){if(s.flags|=ar,n.flags|=ur,n.flags &amp;=-2981,1===n.tag)if(null===n.alternate)n.tag=y;else{var f=Ic(ca,1);f.tag=2,kc(n,f)}return void(n.lanes=Na(n.lanes,1))}return kp(e,o,a),s.flags|=cr,void(s.lanes=a)}s=s.return}while(null!==s);r=new Error((We(n.type)||&quot;A React component &quot;)+&quot;suspended while rendering, but no fallback UI was specified.

Add a &lt;Suspense fallback=...&gt;component higher in the tree to provide a loading indicator or placeholder to display.&quot;)}5!==fm &amp;&amp;(fm=2),r=Sp(r,n);var d=t;do{switch(d.tag){case 3:var p=r;d.flags|=cr;var m=ya(a);return d.lanes=Na(d.lanes,m),void xc(d,Ap(d,p,m));case 1:var g=r,v=d.stateNode;if(0==(d.flags &amp;ar)&amp;&amp;(&quot;function &quot;==typeof d.type.getDerivedStateFromError||null!==v &amp;&amp;&quot;function &quot;==typeof v.componentDidCatch &amp;&amp;!Rh(v))){d.flags|=cr;var E=ya(a);return d.lanes=Na(d.lanes,E),void xc(d,Ip(d,g,E))}}d=d.return}while(null!==d)}Op=new Set;var _p=&quot;function &quot;==typeof WeakSet?WeakSet:Set,Lp=function(e,t){t.props=e.memoizedProps,t.state=e.memoizedState,t.componentWillUnmount()};function Pp(e){var t=e.ref;null!==t &amp;&amp;(&quot;function &quot;==typeof t?(qn(null,t,null,null),Jn()&amp;&amp;Oh(e,Qn())):t.current=null)}function Mp(e,t){qn(null,t,null),Jn()&amp;&amp;Oh(e,Qn())}function Dp(e,t){switch(t.tag){case 0:case p:case v:case T:return;case 1:if(t.flags &amp;ir &amp;&amp;null!==e){var n=e.memoizedProps,r=e.memoizedState,a=t.stateNode;t.type!==t.elementType||Pd||(a.props!==t.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(t.type)||&quot;instance &quot;),a.state!==t.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(t.type)||&quot;instance &quot;));var o=a.getSnapshotBeforeUpdate(t.elementType===t.type?n:sc(t.type,n),r),i=Op;void 0!==o||i.has(t.type)||(i.add(t.type),s(&quot;%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.&quot;,We(t.type))),a.__reactInternalSnapshotBeforeUpdate=o}return;case 3:return void(t.flags &amp;ir &amp;&amp;Tl(t.stateNode.containerInfo));case 5:case 6:case 4:case y:return}throw Error(&quot;This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.&quot;)}function Up(e,t,n,r){switch(n.tag){case 0:case p:case v:case T:return function(e,t){var n=t.updateQueue,r=null!==n?n.lastEffect:null;if(null!==r){var a=r.next,o=a;do{if(3==(3 &amp;o.tag)){o.destroy=(0,o.create)();var i=o.destroy;void 0!==i &amp;&amp;&quot;function &quot;!=typeof i &amp;&amp;s(&quot;An effect function must not return anything besides a function, which is used for clean-up.%s &quot;,null===i?&quot;You returned null. If your effect does not require clean up, return undefined (or nothing).&quot;:&quot;function &quot;==typeof i.then?&quot;

It looks like you wrote useEffect(async () =&gt;...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:

useEffect(() =&gt;{
  async function fetchData() {
    // You can await here
    const response = await MyAPI.getData(someId);
    // ...
  }
  fetchData();
}, [someId]); // Or [] if effect doesn &#039;t need props or state

Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-fetching &quot;:&quot;You returned: &quot;+i)}o=o.next}while(o!==a)}}(0,n),void function(e){var t=e.updateQueue,n=null!==t?t.lastEffect:null;if(null!==n){var r=n.next,a=r;do{var o=a.next,i=a.tag;0!=(4 &amp;i)&amp;&amp;0!=(1 &amp;i)&amp;&amp;(bh(e,a),Eh(e,a)),a=o}while(a!==r)}}(n);case 1:var a=n.stateNode;if(4 &amp;n.flags)if(null===t)n.type!==n.elementType||Pd||(a.props!==n.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;),a.state!==n.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;)),a.componentDidMount();else{var o=n.elementType===n.type?t.memoizedProps:sc(n.type,t.memoizedProps),i=t.memoizedState;n.type!==n.elementType||Pd||(a.props!==n.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;),a.state!==n.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;)),a.componentDidUpdate(o,i,a.__reactInternalSnapshotBeforeUpdate)}var l=n.updateQueue;return void(null!==l &amp;&amp;(n.type!==n.elementType||Pd||(a.props!==n.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;),a.state!==n.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;)),Uc(0,l,a)));case 3:var c=n.updateQueue;if(null!==c){var u=null;if(null!==n.child)switch(n.child.tag){case 5:case 1:u=n.child.stateNode}Uc(0,c,u)}return;case 5:return void(null===t &amp;&amp;4 &amp;n.flags &amp;&amp;(g=n.stateNode,S=n.type,w=n.memoizedProps,pl(S,w)&amp;&amp;g.focus()));case 6:case 4:return;case m:var f=n.memoizedProps.onRender,d=Rd();return void(&quot;function &quot;==typeof f &amp;&amp;f(n.memoizedProps.id,null===t?&quot;mount &quot;:&quot;update &quot;,n.actualDuration,n.treeBaseDuration,n.actualStartTime,d,e.memoizedInteractions));case h:return void function(e,t){if(null===t.memoizedState){var n=t.alternate;if(null!==n){var r=n.memoizedState;if(null!==r){var a=r.dehydrated;null!==a &amp;&amp;function(e){Ur(e)}(a)}}}}(0,n);case E:case y:case b:case 21:case N:case R:return}var g,S,w;throw Error(&quot;This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.&quot;)}function jp(e,t){for(var n=e;;){if(5===n.tag)t?El(n.stateNode):bl(n.stateNode,n.memoizedProps);else if(6===n.tag)n.stateNode.nodeValue=t?&quot;&quot;:n.memoizedProps;else if((n.tag!==N &amp;&amp;n.tag!==R||null===n.memoizedState||n===e)&amp;&amp;null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)return;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function Fp(e){var t=e.ref;if(null!==t){var n,r=e.stateNode;switch(e.tag){case 5:n=r;break;default:n=r}&quot;function &quot;==typeof t?t(n):(t.hasOwnProperty(&quot;current &quot;)||s(&quot;Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().&quot;,We(e.type)),t.current=n)}}function zp(e){var t=e.ref;null!==t &amp;&amp;(&quot;function &quot;==typeof t?t(null):t.current=null)}function Hp(e,t,n){switch(function(e){if(hs &amp;&amp;&quot;function &quot;==typeof hs.onCommitFiberUnmount)try{hs.onCommitFiberUnmount(ms,e)}catch(e){gs||(gs=!0,s(&quot;React instrumentation encountered an error: %s &quot;,e))}}(t),t.tag){case 0:case p:case g:case v:case T:var r=t.updateQueue;if(null!==r){var a=r.lastEffect;if(null!==a){var o=a.next,i=o;do{var l=i.destroy;void 0!==l &amp;&amp;(0!=(4 &amp;i.tag)?bh(t,i):Mp(t,l)),i=i.next}while(i!==o)}}return;case 1:Pp(t);var c=t.stateNode;return void(&quot;function &quot;==typeof c.componentWillUnmount &amp;&amp;function(e,t){qn(null,Lp,null,e,t),Jn()&amp;&amp;Oh(e,Qn())}(t,c));case 5:return void Pp(t);case 4:return void Xp(e,t);case b:case 18:case 21:return}}function Bp(e,t,n){for(var r=t;;)if(Hp(e,r),null===r.child||4===r.tag){if(r===t)return;for(;null===r.sibling;){if(null===r.return||r.return===t)return;r=r.return}r.sibling.return=r.return,r=r.sibling}else r.child.return=r,r=r.child}function Vp(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null,e._debugOwner=null}function Wp(e){return 5===e.tag||3===e.tag||4===e.tag}function Gp(e){var t,n,r=function(e){for(var t=e.return;null!==t;){if(Wp(t))return t;t=t.return}throw Error(&quot;Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.&quot;)}(e),a=r.stateNode;switch(r.tag){case 5:t=a,n=!1;break;case 3:case 4:t=a.containerInfo,n=!0;break;case b:default:throw Error(&quot;Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.&quot;)}16 &amp;r.flags &amp;&amp;(vl(t),r.flags &amp;=-17);var o=function(e){var t=e;e:for(;;){for(;null===t.sibling;){if(null===t.return||Wp(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;5!==t.tag &amp;&amp;6!==t.tag &amp;&amp;18!==t.tag;){if(2 &amp;t.flags)continue e;if(null===t.child||4===t.tag)continue e;t.child.return=t,t=t.child}if(!(2 &amp;t.flags))return t.stateNode}}(e);n?Yp(e,o,t):$p(e,o,t)}function Yp(e,t,n){var r=e.tag,a=5===r||6===r;if(a){var o=a?e.stateNode:e.stateNode.instance;t?function(e,t,n){8===e.nodeType?e.parentNode.insertBefore(t,n):e.insertBefore(t,n)}(n,o,t):function(e,t){var n;8===e.nodeType?(n=e.parentNode).insertBefore(t,e):(n=e).appendChild(t),null==e._reactRootContainer &amp;&amp;null===n.onclick &amp;&amp;Ki(n)}(n,o)}else if(4===r);else{var i=e.child;if(null!==i){Yp(i,t,n);for(var l=i.sibling;null!==l;)Yp(l,t,n),l=l.sibling}}}function $p(e,t,n){var r=e.tag,a=5===r||6===r;if(a){var o=a?e.stateNode:e.stateNode.instance;t?function(e,t,n){e.insertBefore(t,n)}(n,o,t):function(e,t){e.appendChild(t)}(n,o)}else if(4===r);else{var i=e.child;if(null!==i){$p(i,t,n);for(var l=i.sibling;null!==l;)$p(l,t,n),l=l.sibling}}}function Xp(e,t,n){for(var r,a,o,i,l=t,s=!1;;){if(!s){var c=l.return;e:for(;;){if(null===c)throw Error(&quot;Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.&quot;);var u=c.stateNode;switch(c.tag){case 5:r=u,a=!1;break e;case 3:case 4:r=u.containerInfo,a=!0;break e}c=c.return}s=!0}if(5===l.tag||6===l.tag)Bp(e,l),a?(i=l.stateNode,8===(o=r).nodeType?o.parentNode.removeChild(i):o.removeChild(i)):yl(r,l.stateNode);else if(4===l.tag){if(null!==l.child){r=l.stateNode.containerInfo,a=!0,l.child.return=l,l=l.child;continue}}else if(Hp(e,l),null!==l.child){l.child.return=l,l=l.child;continue}if(l===t)return;for(;null===l.sibling;){if(null===l.return||l.return===t)return;4===(l=l.return).tag &amp;&amp;(s=!1)}l.sibling.return=l.return,l=l.sibling}}function Kp(e,t,n){Xp(e,t);var r=t.alternate;Vp(t),null!==r &amp;&amp;Vp(r)}function qp(e,t){switch(t.tag){case 0:case p:case g:case v:case T:return void function(e,t){var n=t.updateQueue,r=null!==n?n.lastEffect:null;if(null!==r){var a=r.next,o=a;do{if(3==(3 &amp;o.tag)){var i=o.destroy;o.destroy=void 0,void 0!==i &amp;&amp;i()}o=o.next}while(o!==a)}}(0,t);case 1:return;case 5:var n=t.stateNode;if(null!=n){var r=t.memoizedProps,a=null!==e?e.memoizedProps:r,o=t.type,i=t.updateQueue;t.updateQueue=null,null!==i &amp;&amp;function(e,t,n,r,a,o){zl(e,a),function(e,t,n,r,a){switch(&quot;input &quot;===n &amp;&amp;&quot;radio &quot;===a.type &amp;&amp;null!=a.name &amp;&amp;ht(e,a),sn(n,r),function(e,t,n,r){for(var a=0;a &lt;t.length;a+=2){var o=t[a],i=t[a+1];o===Vi?rn(e,i):o===ji?zt(e,i):o===Bi?Ht(e,i):Q(e,o,i,r)}}(e,t,0,sn(n,a)),n){case &quot;input &quot;:gt(e,a);break;case &quot;textarea &quot;:_t(e,a);break;case &quot;select &quot;:!function(e,t){var n=e,r=n._wrapperState.wasMultiple;n._wrapperState.wasMultiple=!!t.multiple;var a=t.value;null!=a?Ot(n,!!t.multiple,a,!1):r!==!!t.multiple &amp;&amp;(null!=t.defaultValue?Ot(n,!!t.multiple,t.defaultValue,!0):Ot(n,!!t.multiple,t.multiple?[]:&quot;&quot;,!1))}(e,a)}}(e,t,n,r,a)}(n,i,o,a,r)}return;case 6:if(null===t.stateNode)throw Error(&quot;This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.&quot;);return void(t.stateNode.nodeValue=t.memoizedProps);case 3:var l=t.stateNode;return void(l.hydrate &amp;&amp;(l.hydrate=!1,Ur(l.containerInfo)));case m:return;case h:return function(e){null!==e.memoizedState &amp;&amp;(ym=Hs(),jp(e.child,!0))}(t),void Jp(t);case E:return void Jp(t);case y:return;case b:case 21:break;case N:case R:return void jp(t,null!==t.memoizedState)}throw Error(&quot;This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.&quot;)}function Jp(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n &amp;&amp;(n=e.stateNode=new _p),t.forEach(function(t){var r=Ah.bind(null,e,t);n.has(t)||(!0!==t.__reactDoNotTraceInteractions &amp;&amp;(r=a.unstable_wrap(r)),n.add(t),t.then(r,r))})}}function Qp(e){vl(e.stateNode)}if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var Zp=Symbol.for;Zp(&quot;selector.component &quot;),Zp(&quot;selector.has_pseudo_class &quot;),Zp(&quot;selector.role &quot;),Zp(&quot;selector.test_id &quot;),Zp(&quot;selector.text &quot;)}var em=[],tm=Math.ceil,nm=o.ReactCurrentDispatcher,rm=o.ReactCurrentOwner,am=o.IsSomeRendererActing,om=0,im=null,lm=null,sm=0,cm=0,um=ql(0),fm=0,dm=null,pm=0,mm=0,hm=0,gm=0,vm=null,ym=0,Em=Infinity;function bm(){Em=Hs()+500}function Tm(){return Em}var Nm=null,Rm=!1,Sm=null,wm=null,Om=!1,Cm=null,Am=90,Im=0,km=[],xm=[],_m=null,Lm=0,Pm=null,Mm=0,Dm=null,Um=ca,jm=0,Fm=0,zm=!1;function Hm(){return 0!=(48 &amp;om)?Hs():Um!==ca?Um:Um=Hs()}function Bm(e){var t,n,r=e.mode;if(0==(2 &amp;r))return 1;if(0==(4 &amp;r))return Bs()===_s?1:2;if(0===jm &amp;&amp;(jm=pm),0!==qs.transition)return 0!==Fm &amp;&amp;(Fm=null!==vm?vm.pendingLanes:0),t=jm,0===(n=ya(ta &amp;~Fm))&amp;&amp;0===(n=ya(ta &amp;~t))&amp;&amp;(n=ya(ta)),n;var a=Bs();return va(0!=(4 &amp;om)&amp;&amp;a===Ls?12:function(e){switch(e){case 99:return Qr;case 98:return Zr;case 97:case 96:return 8;case 95:return 2;default:return 0}}(a),jm)}function Vm(e,t,n){!function(){if(Lm &gt;50)throw Lm=0,Pm=null,Error(&quot;Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.&quot;);Mm &gt;50 &amp;&amp;(Mm=0,s(&quot;Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn &#039;t have a dependency array, or one of the dependencies changes on every render.&quot;))}(),function(e){if($e &amp;&amp;0!=(16 &amp;om)&amp;&amp;!ad)switch(e.tag){case 0:case p:case v:var t=lm &amp;&amp;We(lm.type)||&quot;Unknown &quot;,n=t;Lh.has(n)||(Lh.add(n),s(&quot;Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://reactjs.org/link/setstate-in-render &quot;,We(e.type)||&quot;Unknown &quot;,t,t));break;case 1:Ph||(s(&quot;Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state.&quot;),Ph=!0)}}(e);var r=Wm(e,t);if(null===r)return function(e){var t=e.tag;if((3===t||1===t||0===t||t===p||t===g||t===v||t===T)&amp;&amp;0==(e.flags &amp;lr)){var n=We(e.type)||&quot;ReactComponent &quot;;if(null!==_h){if(_h.has(n))return;_h.add(n)}else _h=new Set([n]);if(zm);else{var r=Ye;try{Je(e),s(&quot;Can &#039;t perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in %s.&quot;,1===t?&quot;the componentWillUnmount method &quot;:&quot;a useEffect cleanup function &quot;)}finally{r?Je(e):qe()}}}}(e),null;wa(r,t,n),r===im &amp;&amp;(hm=Na(hm,t),4===fm &amp;&amp;$m(r,sm));var a=Bs();1===t?0!=(8 &amp;om)&amp;&amp;0==(48 &amp;om)?(Vh(r,t),Xm(r)):(Gm(r,n),Vh(r,t),0===om &amp;&amp;(bm(),$s())):(0==(4 &amp;om)||a!==Ls &amp;&amp;a!==_s||(null===_m?_m=new Set([r]):_m.add(r)),Gm(r,n),Vh(r,t)),vm=r}function Wm(e,t){e.lanes=Na(e.lanes,t);var n=e.alternate;null!==n &amp;&amp;(n.lanes=Na(n.lanes,t)),null===n &amp;&amp;0!=(1026 &amp;e.flags)&amp;&amp;kh(e);for(var r=e,a=e.return;null!==a;)a.childLanes=Na(a.childLanes,t),null!==(n=a.alternate)?n.childLanes=Na(n.childLanes,t):0!=(1026 &amp;a.flags)&amp;&amp;kh(e),r=a,a=a.return;return 3===r.tag?r.stateNode:null}function Gm(e,t){var n=e.callbackNode;!function(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,a=e.expirationTimes,o=e.pendingLanes;o &gt;0;){var i=Ea(o),l=1 &lt;&lt;i,s=a[i];s===ca?0!=(l &amp;n)&amp;&amp;0==(l &amp;r)||(a[i]=pa(l,t)):s &lt;=t &amp;&amp;(e.expiredLanes|=l),o &amp;=~l}}(e,t);var r=da(e,e===im?sm:0),a=ua;if(0!==r){if(null!==n){if(e.callbackPriority===a)return;Ys(n)}var o,i;a===Qr?(i=Xm.bind(null,e),null===Us?(Us=[i],js=bs(Os,Xs)):Us.push(i),o=xs):o=14===a?Gs(_s,Xm.bind(null,e)):Gs(function(e){switch(e){case Qr:case 14:return 99;case 13:case 12:case 11:case Zr:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(&quot;Invalid update priority: &quot;+e+&quot;. This is a bug in React.&quot;)}}(a),Ym.bind(null,e)),e.callbackPriority=a,e.callbackNode=o}else null!==n &amp;&amp;(Ys(n),e.callbackNode=null,e.callbackPriority=0)}function Ym(e){if(Um=ca,jm=0,Fm=0,0!=(48 &amp;om))throw Error(&quot;Should not already be working.&quot;);var t=e.callbackNode;if(yh()&amp;&amp;e.callbackNode!==t)return null;var n=da(e,e===im?sm:0);if(0===n)return null;var r=function(e,t){var n=om;om|=16;var r=nh();im===e &amp;&amp;sm===t||(bm(),eh(e,t),Wh(e,t));for(var a=ah(e);;)try{ch();break}catch(t){th(e,t)}return gc(),oh(a),rh(r),om=n,null!==lm?0:(im=null,sm=0,fm)}(e,n);if(ba(pm,hm))eh(e,0);else if(0!==r){if(2===r &amp;&amp;(om|=64,e.hydrate &amp;&amp;(e.hydrate=!1,Tl(e.containerInfo)),0!==(n=ma(e))&amp;&amp;(r=lh(e,n))),1===r){var a=dm;throw eh(e,0),$m(e,n),Gm(e,Hs()),a}e.finishedWork=e.current.alternate,e.finishedLanes=n,function(e,t,n){switch(t){case 0:case 1:throw Error(&quot;Root did not complete. This is a bug in React.&quot;);case 2:ph(e);break;case 3:if($m(e,n),ga(n)&amp;&amp;!(Yh &gt;0)){var r=ym+500-Hs();if(r &gt;10){if(0!==da(e,0))break;var a=e.suspendedLanes;if(!Ta(a,n)){Hm(),Oa(e,a);break}e.timeoutHandle=hl(ph.bind(null,e),r);break}}ph(e);break;case 4:if($m(e,n),function(e){return(e &amp;ta)===e}(n))break;var o=function(e,t){for(var n=e.eventTimes,r=ca;t &gt;0;){var a=Ea(t),o=n[a];o &gt;r &amp;&amp;(r=o),t &amp;=~(1 &lt;&lt;a)}return r}(e,n),i=Hs()-o,l=((s=i)&lt;120?120:s &lt;480?480:s &lt;1080?1080:s &lt;1920?1920:s &lt;3e3?3e3:s &lt;4320?4320:1960*tm(s/1960))-i;if(l &gt;10){e.timeoutHandle=hl(ph.bind(null,e),l);break}ph(e);break;case 5:ph(e);break;default:throw Error(&quot;Unknown root exit status.&quot;)}var s}(e,r,n)}return Gm(e,Hs()),e.callbackNode===t?Ym.bind(null,e):null}function $m(e,t){t=Ra(t,gm),function(e,t){e.suspendedLanes|=t,e.pingedLanes &amp;=~t;for(var n=e.expirationTimes,r=t;r &gt;0;){var a=Ea(r),o=1 &lt;&lt;a;n[a]=ca,r &amp;=~o}}(e,t=Ra(t,hm))}function Xm(e){if(0!=(48 &amp;om))throw Error(&quot;Should not already be working.&quot;);var t,n;if(yh(),e===im &amp;&amp;ba(e.expiredLanes,sm)?(n=lh(e,t=sm),ba(pm,hm)&amp;&amp;(n=lh(e,t=da(e,t)))):n=lh(e,t=da(e,0)),0!==e.tag &amp;&amp;2===n &amp;&amp;(om|=64,e.hydrate &amp;&amp;(e.hydrate=!1,Tl(e.containerInfo)),0!==(t=ma(e))&amp;&amp;(n=lh(e,t))),1===n){var r=dm;throw eh(e,0),$m(e,t),Gm(e,Hs()),r}return e.finishedWork=e.current.alternate,e.finishedLanes=t,ph(e),Gm(e,Hs()),null}function Km(e,t){var n=om;om|=1;try{return e(t)}finally{0===(om=n)&amp;&amp;(bm(),$s())}}function qm(e,t){var n=om;om &amp;=-2,om|=8;try{return e(t)}finally{0===(om=n)&amp;&amp;(bm(),$s())}}function Jm(e,t){var n=om;if(0!=(48 &amp;n))return s(&quot;flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.&quot;),e(t);om|=1;try{return e?Ws(_s,e.bind(null,t)):void 0}finally{om=n,$s()}}function Qm(e,t){Ql(um,cm,e),cm=Na(cm,t),pm=Na(pm,t)}function Zm(e){cm=um.current,Jl(um,e)}function eh(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n &amp;&amp;(e.timeoutHandle=-1,gl(n)),null!==lm)for(var r=lm.return;null!==r;)Rp(r),r=r.return;im=e,lm=fg(e.current,null),sm=cm=pm=t,fm=0,dm=null,mm=0,hm=0,gm=0,Dm=null,Js.discardPendingWarnings()}function th(e,t){for(;;){var n=lm;try{if(gc(),Tf(),qe(),rm.current=null,null===n||null===n.return)return fm=1,dm=t,void(lm=null);8 &amp;n.mode &amp;&amp;Cd(n,!0),xp(e,n.return,n,t,sm),fh(n)}catch(e){t=e,lm===n &amp;&amp;null!==n?lm=n=n.return:n=lm;continue}return}}function nh(){var e=nm.current;return nm.current=ud,null===e?ud:e}function rh(e){nm.current=e}function ah(e){var t=a.__interactionsRef.current;return a.__interactionsRef.current=e.memoizedInteractions,t}function oh(e){a.__interactionsRef.current=e}function ih(e){mm=Na(e,mm)}function lh(e,t){var n=om;om|=16;var r=nh();im===e &amp;&amp;sm===t||(eh(e,t),Wh(e,t));for(var a=ah(e);;)try{sh();break}catch(t){th(e,t)}if(gc(),oh(a),om=n,rh(r),null!==lm)throw Error(&quot;Cannot commit an incomplete root. This error is likely caused by a bug in React. Please file an issue.&quot;);return im=null,sm=0,fm}function sh(){for(;null!==lm;)uh(lm)}function ch(){for(;null!==lm &amp;&amp;!Ms();)uh(lm)}function uh(e){var t,n=e.alternate;Je(e),0!=(8 &amp;e.mode)?(wd(e),t=xh(n,e,cm),Cd(e,!0)):t=xh(n,e,cm),qe(),e.memoizedProps=e.pendingProps,null===t?fh(e):lm=t,rm.current=null}function fh(e){var t=e;do{var n=t.alternate,r=t.return;if(0==(t.flags &amp;sr)){Je(t);var a=void 0;if(0==(8 &amp;t.mode)?a=Tp(n,t,cm):(wd(t),a=Tp(n,t,cm),Cd(t,!1)),qe(),null!==a)return void(lm=a);dh(t),null!==r &amp;&amp;0==(r.flags &amp;sr)&amp;&amp;(null===r.firstEffect &amp;&amp;(r.firstEffect=t.firstEffect),null!==t.lastEffect &amp;&amp;(null!==r.lastEffect &amp;&amp;(r.lastEffect.nextEffect=t.firstEffect),r.lastEffect=t.lastEffect),t.flags &gt;1 &amp;&amp;(null!==r.lastEffect?r.lastEffect.nextEffect=t:r.firstEffect=t,r.lastEffect=t))}else{var o=Np(t);if(null!==o)return o.flags &amp;=2047,void(lm=o);if(0!=(8 &amp;t.mode)){Cd(t,!1);for(var i=t.actualDuration,l=t.child;null!==l;)i+=l.actualDuration,l=l.sibling;t.actualDuration=i}null!==r &amp;&amp;(r.firstEffect=r.lastEffect=null,r.flags|=sr)}var s=t.sibling;if(null!==s)return void(lm=s);lm=t=r}while(null!==t);0===fm &amp;&amp;(fm=5)}function dh(e){if(e.tag!==R &amp;&amp;e.tag!==N||null===e.memoizedState||ba(cm,sa)||0==(4 &amp;e.mode)){var t=0;if(0!=(8 &amp;e.mode)){for(var n=e.actualDuration,r=e.selfBaseDuration,a=null===e.alternate||e.child!==e.alternate.child,o=e.child;null!==o;)t=Na(t,Na(o.lanes,o.childLanes)),a &amp;&amp;(n+=o.actualDuration),r+=o.treeBaseDuration,o=o.sibling;if(e.tag===h &amp;&amp;null!==e.memoizedState){var i=e.child;null!==i &amp;&amp;(r-=i.treeBaseDuration)}e.actualDuration=n,e.treeBaseDuration=r}else for(var l=e.child;null!==l;)t=Na(t,Na(l.lanes,l.childLanes)),l=l.sibling;e.childLanes=t}}function ph(e){var t=Bs();return Ws(_s,mh.bind(null,e,t)),null}function mh(e,t){do{yh()}while(null!==Cm);if(Js.flushLegacyContextWarning(),Js.flushPendingUnsafeLifecycleWarnings(),0!=(48 &amp;om))throw Error(&quot;Should not already be working.&quot;);var n=e.finishedWork,r=e.finishedLanes;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(&quot;Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.&quot;);e.callbackNode=null;var a,o,i,l,s,c,u,f=Na(n.lanes,n.childLanes);if(function(e,t){var n=e.pendingLanes &amp;~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes &amp;=t,e.mutableReadLanes &amp;=t,e.entangledLanes &amp;=t;for(var r=e.entanglements,a=e.eventTimes,o=e.expirationTimes,i=n;i &gt;0;){var l=Ea(i),s=1 &lt;&lt;l;r[l]=0,a[l]=ca,o[l]=ca,i &amp;=~s}}(e,f),null!==_m &amp;&amp;!function(e){return 0!=(24 &amp;e)}(f)&amp;&amp;_m.has(e)&amp;&amp;_m.delete(e),e===im &amp;&amp;(im=null,lm=null,sm=0),n.flags &gt;1?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){var d=om;om|=32;var p=ah(e);rm.current=null,fl=La,o=ni(),dl={focusedElem:o,selectionRange:ri(o)?(i=o,(&quot;selectionStart &quot;in i?{start:i.selectionStart,end:i.selectionEnd}:(u=(c=(s=(l=i).ownerDocument)&amp;&amp;s.defaultView||window).getSelection &amp;&amp;c.getSelection())&amp;&amp;0!==u.rangeCount?function(e,t,n,r,a){var o=0,i=-1,l=-1,s=0,c=0,u=e,f=null;e:for(;;){for(var d=null;u!==t||0!==n &amp;&amp;3!==u.nodeType||(i=o+n),u!==r||0!==a &amp;&amp;3!==u.nodeType||(l=o+a),3===u.nodeType &amp;&amp;(o+=u.nodeValue.length),null!==(d=u.firstChild);)f=u,u=d;for(;;){if(u===e)break e;if(f===t &amp;&amp;++s===n &amp;&amp;(i=o),f===r &amp;&amp;++c===a &amp;&amp;(l=o),null!==(d=u.nextSibling))break;f=(u=f).parentNode}u=d}return-1===i||-1===l?null:{start:i,end:l}}(l,u.anchorNode,u.anchorOffset,u.focusNode,u.focusOffset):null)||{start:0,end:0}):null},Pa(!1),Nm=a;do{if(qn(null,hh,null),Jn()){if(null===Nm)throw Error(&quot;Should be working on an effect.&quot;);var m=Qn();Oh(Nm,m),Nm=Nm.nextEffect}}while(null!==Nm);Sd(),Nm=a;do{if(qn(null,gh,null,e,t),Jn()){if(null===Nm)throw Error(&quot;Should be working on an effect.&quot;);var h=Qn();Oh(Nm,h),Nm=Nm.nextEffect}}while(null!==Nm);(function(e){var t=ni(),n=e.focusedElem,r=e.selectionRange;if(t!==n &amp;&amp;ei(n)){null!==r &amp;&amp;ri(n)&amp;&amp;function(e,t){var n=t.start,r=t.end;void 0===r &amp;&amp;(r=n),&quot;selectionStart &quot;in e?(e.selectionStart=n,e.selectionEnd=Math.min(r,e.value.length)):function(e,t){var n=e.ownerDocument||document,r=n &amp;&amp;n.defaultView||window;if(r.getSelection){var a=r.getSelection(),o=e.textContent.length,i=Math.min(t.start,o),l=void 0===t.end?i:Math.min(t.end,o);if(!a.extend &amp;&amp;i &gt;l){var s=l;l=i,i=s}var c=Jo(e,i),u=Jo(e,l);if(c &amp;&amp;u){if(1===a.rangeCount &amp;&amp;a.anchorNode===c.node &amp;&amp;a.anchorOffset===c.offset &amp;&amp;a.focusNode===u.node &amp;&amp;a.focusOffset===u.offset)return;var f=n.createRange();f.setStart(c.node,c.offset),a.removeAllRanges(),i &gt;l?(a.addRange(f),a.extend(u.node,u.offset)):(f.setEnd(u.node,u.offset),a.addRange(f))}}}(e,t)}(n,r);for(var a=[],o=n;o=o.parentNode;)1===o.nodeType &amp;&amp;a.push({element:o,left:o.scrollLeft,top:o.scrollTop});&quot;function &quot;==typeof n.focus &amp;&amp;n.focus();for(var i=0;i &lt;a.length;i++){var l=a[i];l.element.scrollLeft=l.left,l.element.scrollTop=l.top}}})(dl),Pa(fl),fl=null,dl=null,e.current=n,Nm=a;do{if(qn(null,vh,null,e,r),Jn()){if(null===Nm)throw Error(&quot;Should be working on an effect.&quot;);var g=Qn();Oh(Nm,g),Nm=Nm.nextEffect}}while(null!==Nm);Nm=null,Ds(),oh(p),om=d}else e.current=n,Sd();var v=Om;if(Om)Om=!1,Cm=e,Im=r,Am=t;else for(Nm=a;null!==Nm;){var y=Nm.nextEffect;Nm.nextEffect=null,8 &amp;Nm.flags &amp;&amp;$h(Nm),Nm=y}if(0!==(f=e.pendingLanes)){if(null!==Dm){var E=Dm;Dm=null;for(var b=0;b &lt;E.length;b++)Bh(e,E[b],e.memoizedInteractions)}Vh(e,f)}else wm=null;if(v||Gh(e,r),1===f?e===Pm?Lm++:(Lm=0,Pm=e):Lm=0,ys(n.stateNode,t),em.forEach(function(e){return e()}),Gm(e,Hs()),Rm){Rm=!1;var T=Sm;throw Sm=null,T}return 0!=(8 &amp;om)||$s(),null}function hh(){for(;null!==Nm;){var e=Nm.alternate,t=Nm.flags;0!=(t &amp;ir)&amp;&amp;(Je(Nm),Dp(e,Nm),qe()),0!=(512 &amp;t)&amp;&amp;(Om||(Om=!0,Gs(Ps,function(){return yh(),null}))),Nm=Nm.nextEffect}}function gh(e,t){for(;null!==Nm;){Je(Nm);var n=Nm.flags;if(16 &amp;n &amp;&amp;Qp(Nm),n &amp;or){var r=Nm.alternate;null!==r &amp;&amp;zp(r)}switch(1038 &amp;n){case 2:Gp(Nm),Nm.flags &amp;=-3;break;case 6:Gp(Nm),Nm.flags &amp;=-3,qp(Nm.alternate,Nm);break;case 1024:Nm.flags &amp;=-1025;break;case 1028:Nm.flags &amp;=-1025,qp(Nm.alternate,Nm);break;case 4:qp(Nm.alternate,Nm);break;case 8:Kp(e,Nm)}qe(),Nm=Nm.nextEffect}}function vh(e,t){for(;null!==Nm;){Je(Nm);var n=Nm.flags;36 &amp;n &amp;&amp;Up(e,Nm.alternate,Nm),n &amp;or &amp;&amp;Fp(Nm),qe(),Nm=Nm.nextEffect}}function yh(){if(90!==Am){var e=Am &gt;Ps?Ps:Am;return Am=90,Ws(e,Nh)}return!1}function Eh(e,t){km.push(t,e),Om||(Om=!0,Gs(Ps,function(){return yh(),null}))}function bh(e,t){xm.push(t,e),e.flags|=lr;var n=e.alternate;null!==n &amp;&amp;(n.flags|=lr),Om||(Om=!0,Gs(Ps,function(){return yh(),null}))}function Th(e){e.destroy=(0,e.create)()}function Nh(){if(null===Cm)return!1;var e=Cm,t=Im;if(Cm=null,Im=0,0!=(48 &amp;om))throw Error(&quot;Cannot flush passive effects while already rendering.&quot;);zm=!0;var n=om;om|=32;var r=ah(e),a=xm;xm=[];for(var o=0;o &lt;a.length;o+=2){var i=a[o],l=a[o+1],s=i.destroy;i.destroy=void 0,l.flags &amp;=-8193;var c=l.alternate;if(null!==c &amp;&amp;(c.flags &amp;=-8193),&quot;function &quot;==typeof s){if(Je(l),qn(null,s,null),Jn()){if(null===l)throw Error(&quot;Should be working on an effect.&quot;);Oh(l,Qn())}qe()}}var u=km;km=[];for(var f=0;f &lt;u.length;f+=2){var d=u[f],p=u[f+1];if(Je(p),qn(null,Th,null,d),Jn()){if(null===p)throw Error(&quot;Should be working on an effect.&quot;);Oh(p,Qn())}qe()}for(var m=e.current.firstEffect;null!==m;){var h=m.nextEffect;m.nextEffect=null,8 &amp;m.flags &amp;&amp;$h(m),m=h}return oh(r),Gh(e,t),zm=!1,om=n,$s(),Mm=null===Cm?0:Mm+1,!0}function Rh(e){return null!==wm &amp;&amp;wm.has(e)}var Sh=function(e){Rm||(Rm=!0,Sm=e)};function wh(e,t,n){kc(e,Ap(e,Sp(n,t),1));var r=Hm(),a=Wm(e,1);null!==a &amp;&amp;(wa(a,1,r),Gm(a,r),Vh(a,1))}function Oh(e,t){if(3!==e.tag)for(var n=e.return;null!==n;){if(3===n.tag)return void wh(n,e,t);if(1===n.tag){var r=n.stateNode;if(&quot;function &quot;==typeof n.type.getDerivedStateFromError||&quot;function &quot;==typeof r.componentDidCatch &amp;&amp;!Rh(r)){var a=Sp(t,e);kc(n,Ip(n,a,1));var o=Hm(),i=Wm(n,1);if(null!==i)wa(i,1,o),Gm(i,o),Vh(i,1);else if(&quot;function &quot;==typeof r.componentDidCatch &amp;&amp;!Rh(r))try{r.componentDidCatch(t,a)}catch(e){}return}}n=n.return}else wh(e,e,t)}function Ch(e,t,n){var r=e.pingCache;null!==r &amp;&amp;r.delete(t);var a=Hm();Oa(e,n),im===e &amp;&amp;Ta(sm,n)&amp;&amp;(4===fm||3===fm &amp;&amp;ga(sm)&amp;&amp;Hs()-ym &lt;500?eh(e,0):gm=Na(gm,n)),Gm(e,a),Vh(e,n)}function Ah(e,t){var n;null!==(n=e.stateNode)&amp;&amp;n.delete(t),function(e,t){var n,r;0===t &amp;&amp;(t=0==(2 &amp;(r=e.mode))?1:0==(4 &amp;r)?Bs()===_s?1:2:(0===jm &amp;&amp;(jm=pm),0===(n=ya(na &amp;~jm))&amp;&amp;(n=ya(na)),n));var a=Hm(),o=Wm(e,t);null!==o &amp;&amp;(wa(o,t,a),Gm(o,a),Vh(o,t))}(e,0)}var Ih=null;function kh(e){if(0==(16 &amp;om)&amp;&amp;6 &amp;e.mode){var t=e.tag;if(2===t||3===t||1===t||0===t||t===p||t===g||t===v||t===T){var n=We(e.type)||&quot;ReactComponent &quot;;if(null!==Ih){if(Ih.has(n))return;Ih.add(n)}else Ih=new Set([n]);var r=Ye;try{Je(e),s(&quot;Can &#039;t perform a React state update on a component that hasn &#039;t mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead.&quot;)}finally{r?Je(e):qe()}}}}var xh,_h=null;xh=function(e,t,n){var r=Eg(null,t);try{return vp(e,t,n)}catch(a){if(null!==a &amp;&amp;&quot;object &quot;==typeof a &amp;&amp;&quot;function &quot;==typeof a.then)throw a;if(gc(),Tf(),Rp(t),Eg(t,r),8 &amp;t.mode &amp;&amp;wd(t),qn(null,vp,null,e,t,n),Jn())throw Qn();throw a}};var Lh,Ph=!1;Lh=new Set;var Mh={current:!1};function Dh(e){if(!0===am.current &amp;&amp;!0!==Mh.current){var t=Ye;try{Je(e),s(&quot;It looks like you &#039;re using the wrong act() around your test interactions.
Be sure to use the matching version of act() corresponding to your renderer:

// for react-dom:
import {act} from &#039;react-dom/test-utils &#039;;
// ...
act(() =&gt;...);

// for react-test-renderer:
import TestRenderer from react-test-renderer &#039;;
const {act} = TestRenderer;
// ...
act(() =&gt;...);&quot;)}finally{t?Je(e):qe()}}}function Uh(e){0!=(1 &amp;e.mode)&amp;&amp;!1===am.current &amp;&amp;!1===Mh.current &amp;&amp;s(&quot;An update to %s ran an effect, but was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() =&gt;{
  /* fire events that update state */
});
/* assert on the output */

This ensures that you &#039;re testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act &quot;,We(e.type))}var jh=function(e){if(0===om &amp;&amp;!1===am.current &amp;&amp;!1===Mh.current){var t=Ye;try{Je(e),s(&quot;An update to %s inside a test was not wrapped in act(...).

When testing, code that causes React state updates should be wrapped into act(...):

act(() =&gt;{
  /* fire events that update state */
});
/* assert on the output */

This ensures that you &#039;re testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act &quot;,We(e.type))}finally{t?Je(e):qe()}}},Fh=!1;function zh(e,t){return 1e3*t+e.interactionThreadID}function Hh(e){null===Dm?Dm=[e]:Dm.push(e)}function Bh(e,t,n){if(n.size &gt;0){var r=e.pendingInteractionMap,o=r.get(t);null!=o?n.forEach(function(e){o.has(e)||e.__count++,o.add(e)}):(r.set(t,new Set(n)),n.forEach(function(e){e.__count++}));var i=a.__subscriberRef.current;if(null!==i){var l=zh(e,t);i.onWorkScheduled(n,l)}}}function Vh(e,t){Bh(e,t,a.__interactionsRef.current)}function Wh(e,t){var n=new Set;if(e.pendingInteractionMap.forEach(function(e,r){ba(t,r)&amp;&amp;e.forEach(function(e){return n.add(e)})}),e.memoizedInteractions=n,n.size &gt;0){var r=a.__subscriberRef.current;if(null!==r){var o=zh(e,t);try{r.onWorkStarted(n,o)}catch(e){Gs(_s,function(){throw e})}}}}function Gh(e,t){var n,r=e.pendingLanes;try{if(null!==(n=a.__subscriberRef.current)&amp;&amp;e.memoizedInteractions.size &gt;0){var o=zh(e,t);n.onWorkStopped(e.memoizedInteractions,o)}}catch(e){Gs(_s,function(){throw e})}finally{var i=e.pendingInteractionMap;i.forEach(function(e,t){ba(r,t)||(i.delete(t),e.forEach(function(e){if(e.__count--,null!==n &amp;&amp;0===e.__count)try{n.onInteractionScheduledWorkCompleted(e)}catch(e){Gs(_s,function(){throw e})}}))})}}var Yh=0;function $h(e){e.sibling=null,e.stateNode=null}var Xh,Kh=null,qh=null;function Jh(e){if(null===Kh)return e;var t=Kh(e);return void 0===t?e:t.current}function Qh(e){return Jh(e)}function Zh(e){if(null===Kh)return e;var t=Kh(e);if(void 0===t){if(null!=e &amp;&amp;&quot;function &quot;==typeof e.render){var n=Jh(e.render);if(e.render!==n){var r={$$typeof:ie,render:n};return void 0!==e.displayName &amp;&amp;(r.displayName=e.displayName),r}}return e}return t.current}function eg(e,t){if(null===Kh)return!1;var n=e.elementType,r=t.type,a=!1,o=&quot;object &quot;==typeof r &amp;&amp;null!==r?r.$$typeof:null;switch(e.tag){case 1:&quot;function &quot;==typeof r &amp;&amp;(a=!0);break;case 0:(&quot;function &quot;==typeof r||o===ue)&amp;&amp;(a=!0);break;case p:(o===ie||o===ue)&amp;&amp;(a=!0);break;case g:case v:(o===ce||o===ue)&amp;&amp;(a=!0);break;default:return!1}if(a){var i=Kh(n);if(void 0!==i &amp;&amp;i===Kh(r))return!0}return!1}function tg(e){null!==Kh &amp;&amp;&quot;function &quot;==typeof WeakSet &amp;&amp;(null===qh &amp;&amp;(qh=new WeakSet),qh.add(e))}function ng(e,t,n){var r=e.alternate,a=e.child,o=e.sibling,i=e.tag,l=e.type,s=null;switch(i){case 0:case v:case 1:s=l;break;case p:s=l.render}if(null===Kh)throw new Error(&quot;Expected resolveFamily to be set during hot reload.&quot;);var c=!1,u=!1;if(null!==s){var f=Kh(s);void 0!==f &amp;&amp;(n.has(f)?u=!0:t.has(f)&amp;&amp;(1===i?u=!0:c=!0))}null!==qh &amp;&amp;(qh.has(e)||null!==r &amp;&amp;qh.has(r))&amp;&amp;(u=!0),u &amp;&amp;(e._debugNeedsRemount=!0),(u||c)&amp;&amp;Vm(e,1,ca),null===a||u||ng(a,t,n),null!==o &amp;&amp;ng(o,t,n)}function rg(e,t,n){var r=e.child,a=e.sibling,o=e.type,i=null;switch(e.tag){case 0:case v:case 1:i=o;break;case p:i=o.render}var l=!1;null!==i &amp;&amp;t.has(i)&amp;&amp;(l=!0),l?function(e,t){if(!function(e,t){for(var n=e,r=!1;;){if(5===n.tag)r=!0,t.add(n.stateNode);else if(null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)return r;for(;null===n.sibling;){if(null===n.return||n.return===e)return r;n=n.return}n.sibling.return=n.return,n=n.sibling}return!1}(e,t))for(var n=e;;){switch(n.tag){case 5:return void t.add(n.stateNode);case 4:case 3:return void t.add(n.stateNode.containerInfo)}if(null===n.return)throw new Error(&quot;Expected to reach root first.&quot;);n=n.return}}(e,n):null!==r &amp;&amp;rg(r,t,n),null!==a &amp;&amp;rg(a,t,n)}Xh=!1;try{var ag=Object.preventExtensions({});new Map([[ag,null]]),new Set([ag])}catch(e){Xh=!0}var og=1;function ig(e,t,n,r){this.tag=e,this.key=n,this.elementType=null,this.type=null,this.stateNode=null,this.return=null,this.child=null,this.sibling=null,this.index=0,this.ref=null,this.pendingProps=t,this.memoizedProps=null,this.updateQueue=null,this.memoizedState=null,this.dependencies=null,this.mode=r,this.flags=0,this.nextEffect=null,this.firstEffect=null,this.lastEffect=null,this.lanes=0,this.childLanes=0,this.alternate=null,this.actualDuration=Number.NaN,this.actualStartTime=Number.NaN,this.selfBaseDuration=Number.NaN,this.treeBaseDuration=Number.NaN,this.actualDuration=0,this.actualStartTime=-1,this.selfBaseDuration=0,this.treeBaseDuration=0,this._debugID=og++,this._debugSource=null,this._debugOwner=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,Xh||&quot;function &quot;!=typeof Object.preventExtensions||Object.preventExtensions(this)}var lg,sg,cg=function(e,t,n,r){return new ig(e,t,n,r)};function ug(e){var t=e.prototype;return!(!t||!t.isReactComponent)}function fg(e,t){var n=e.alternate;null===n?((n=cg(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n._debugID=e._debugID,n._debugSource=e._debugSource,n._debugOwner=e._debugOwner,n._debugHookTypes=e._debugHookTypes,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null,n.actualDuration=0,n.actualStartTime=-1),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue;var r=e.dependencies;switch(n.dependencies=null===r?null:{lanes:r.lanes,firstContext:r.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.selfBaseDuration=e.selfBaseDuration,n.treeBaseDuration=e.treeBaseDuration,n._debugNeedsRemount=e._debugNeedsRemount,n.tag){case 2:case 0:case v:n.type=Jh(e.type);break;case 1:n.type=Qh(e.type);break;case p:n.type=Zh(e.type)}return n}function dg(e,t){e.flags &amp;=2,e.nextEffect=null,e.firstEffect=null,e.lastEffect=null;var n=e.alternate;if(null===n)e.childLanes=0,e.lanes=t,e.child=null,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null,e.selfBaseDuration=0,e.treeBaseDuration=0;else{e.childLanes=n.childLanes,e.lanes=n.lanes,e.child=n.child,e.memoizedProps=n.memoizedProps,e.memoizedState=n.memoizedState,e.updateQueue=n.updateQueue,e.type=n.type;var r=n.dependencies;e.dependencies=null===r?null:{lanes:r.lanes,firstContext:r.firstContext},e.selfBaseDuration=n.selfBaseDuration,e.treeBaseDuration=n.treeBaseDuration}return e}function pg(e,t,n,r,a,o){var i=2,l=e;if(&quot;function &quot;==typeof e)ug(e)?(i=1,l=Qh(l)):l=Jh(l);else if(&quot;string &quot;==typeof e)i=5;else e:switch(e){case te:return hg(n.children,a,o,t);case he:i=8,a|=16;break;case ne:i=8,a|=1;break;case re:return function(e,t,n,r){&quot;string &quot;!=typeof e.id &amp;&amp;s(&#039;Profiler must specify an &quot;id &quot;as a prop &#039;);var a=cg(m,e,r,8|t);return a.elementType=re,a.type=re,a.lanes=n,a.stateNode={effectDuration:0,passiveEffectDuration:0},a}(n,a,o,t);case le:return function(e,t,n,r){var a=cg(h,e,r,t);return a.type=le,a.elementType=le,a.lanes=n,a}(n,a,o,t);case se:return function(e,t,n,r){var a=cg(E,e,r,t);return a.type=se,a.elementType=se,a.lanes=n,a}(n,a,o,t);case ge:return gg(n,a,o,t);case ve:return function(e,t,n,r){var a=cg(R,e,r,t);return a.type=ve,a.elementType=ve,a.lanes=n,a}(n,a,o,t);case de:default:if(&quot;object &quot;==typeof e &amp;&amp;null!==e)switch(e.$$typeof){case ae:i=d;break e;case oe:i=9;break e;case ie:i=p,l=Zh(l);break e;case ce:i=g;break e;case ue:i=16,l=null;break e;case fe:i=T;break e}var c=&quot;&quot;;(void 0===e||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;0===Object.keys(e).length)&amp;&amp;(c+=&quot;You likely forgot to export your component from the file it &#039;s defined in, or you might have mixed up default and named imports.&quot;);var u=r?We(r.type):null;throw u &amp;&amp;(c+=&quot;

Check the render method of `&quot;+u+&quot;`.&quot;),Error(&quot;Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: &quot;+(null==e?e:typeof e)+&quot;.&quot;+c)}var f=cg(i,n,t,a);return f.elementType=e,f.type=l,f.lanes=o,f._debugOwner=r,f}function mg(e,t,n){var r=pg(e.type,e.key,e.props,e._owner,t,n);return r._debugSource=e._source,r._debugOwner=e._owner,r}function hg(e,t,n,r){var a=cg(7,e,r,t);return a.lanes=n,a}function gg(e,t,n,r){var a=cg(N,e,r,t);return a.type=ge,a.elementType=ge,a.lanes=n,a}function vg(e,t,n){var r=cg(6,e,null,t);return r.lanes=n,r}function yg(e,t,n){var r=cg(4,null!==e.children?e.children:[],e.key,t);return r.lanes=n,r.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},r}function Eg(e,t){return null===e &amp;&amp;(e=cg(2,null,null,0)),e.tag=t.tag,e.key=t.key,e.elementType=t.elementType,e.type=t.type,e.stateNode=t.stateNode,e.return=t.return,e.child=t.child,e.sibling=t.sibling,e.index=t.index,e.ref=t.ref,e.pendingProps=t.pendingProps,e.memoizedProps=t.memoizedProps,e.updateQueue=t.updateQueue,e.memoizedState=t.memoizedState,e.dependencies=t.dependencies,e.mode=t.mode,e.flags=t.flags,e.nextEffect=t.nextEffect,e.firstEffect=t.firstEffect,e.lastEffect=t.lastEffect,e.lanes=t.lanes,e.childLanes=t.childLanes,e.alternate=t.alternate,e.actualDuration=t.actualDuration,e.actualStartTime=t.actualStartTime,e.selfBaseDuration=t.selfBaseDuration,e.treeBaseDuration=t.treeBaseDuration,e._debugID=t._debugID,e._debugSource=t._debugSource,e._debugOwner=t._debugOwner,e._debugNeedsRemount=t._debugNeedsRemount,e._debugHookTypes=t._debugHookTypes,e}function bg(e,t,n){switch(this.tag=t,this.containerInfo=e,this.pendingChildren=null,this.current=null,this.pingCache=null,this.finishedWork=null,this.timeoutHandle=-1,this.context=null,this.pendingContext=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Sa(0),this.expirationTimes=Sa(ca),this.pendingLanes=0,this.suspendedLanes=0,this.pingedLanes=0,this.expiredLanes=0,this.mutableReadLanes=0,this.finishedLanes=0,this.entangledLanes=0,this.entanglements=Sa(0),this.mutableSourceEagerHydrationData=null,this.interactionThreadID=a.unstable_getThreadID(),this.memoizedInteractions=new Set,this.pendingInteractionMap=new Map,t){case 1:this._debugRootType=&quot;createBlockingRoot()&quot;;break;case 2:this._debugRootType=&quot;createRoot()&quot;;break;case 0:this._debugRootType=&quot;createLegacyRoot()&quot;}}function Tg(e,t){var n=(0,t._getVersion)(t._source);null==e.mutableSourceEagerHydrationData?e.mutableSourceEagerHydrationData=[t,n]:e.mutableSourceEagerHydrationData.push(t,n)}function Ng(e,t,n){var r=arguments.length &gt;3 &amp;&amp;void 0!==arguments[3]?arguments[3]:null;return{$$typeof:ee,key:null==r?null:&quot;&quot;+r,children:e,containerInfo:t,implementation:n}}function Rg(e,t,n,a){!function(e,t){if(hs &amp;&amp;&quot;function &quot;==typeof hs.onScheduleFiberRoot)try{hs.onScheduleFiberRoot(ms,e,t)}catch(e){gs||(gs=!0,s(&quot;React instrumentation encountered an error: %s &quot;,e))}}(t,e);var o,i=t.current,l=Hm();&quot;undefined &quot;!=typeof jest &amp;&amp;(o=i,!1===Fh &amp;&amp;void 0===r.unstable_flushAllWithoutAsserting &amp;&amp;(2 &amp;o.mode||4 &amp;o.mode)&amp;&amp;(Fh=!0,s(&quot;In Concurrent or Sync modes, the \&quot;scheduler\&quot;module needs to be mocked to guarantee consistent behaviour across tests and browsers. For example, with jest: 
jest.mock(&#039;scheduler &#039;, () =&gt;require(&#039;scheduler/unstable_mock &#039;));

For more info, visit https://reactjs.org/link/mock-scheduler &quot;)),Dh(i));var c=Bm(i),u=function(e){if(!e)return Zl;var t=Zn(e),n=function(e){if(!function(e){return dr(e)===e}(e)||1!==e.tag)throw Error(&quot;Expected subtree parent to be a mounted class component. This error is likely caused by a bug in React. Please file an issue.&quot;);var t=e;do{switch(t.tag){case 3:return t.stateNode.context;case 1:if(ls(t.type))return t.stateNode.__reactInternalMemoizedMergedChildContext}t=t.return}while(null!==t);throw Error(&quot;Found unexpected detached subtree parent. This error is likely caused by a bug in React. Please file an issue.&quot;)}(t);if(1===t.tag){var r=t.type;if(ls(r))return fs(t,r,n)}return n}(n);null===t.context?t.context=u:t.pendingContext=u,$e &amp;&amp;null!==Ye &amp;&amp;!lg &amp;&amp;(lg=!0,s(&quot;Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.

Check the render method of %s.&quot;,We(Ye.type)||&quot;Unknown &quot;));var f=Ic(l,c);return f.payload={element:e},null!==(a=void 0===a?null:a)&amp;&amp;(&quot;function &quot;!=typeof a &amp;&amp;s(&quot;render(...): Expected the last optional `callback` argument to be a function. Instead received: %s.&quot;,a),f.callback=a),kc(i,f),Vm(i,c,l),c}function Sg(e){var t=e.current;if(!t.child)return null;switch(t.child.tag){case 5:default:return t.child.stateNode}}function wg(e,t){var n=e.memoizedState;null!==n &amp;&amp;null!==n.dehydrated &amp;&amp;(n.retryLane=function(e,t){return 0!==e &amp;&amp;e &lt;t?e:t}(n.retryLane,t))}function Og(e,t){wg(e,t);var n=e.alternate;n &amp;&amp;wg(n,t)}function Cg(e){var t=function(e){var t=gr(e);if(!t)return null;for(var n=t;;){if(5===n.tag||6===n.tag)return n;if(n.child &amp;&amp;4!==n.tag)n.child.return=n,n=n.child;else{if(n===t)return null;for(;!n.sibling;){if(!n.return||n.return===t)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}}return null}(e);return null===t?null:t.tag===b?t.stateNode.instance:t.stateNode}lg=!1,sg={};var Ag,Ig,kg,xg,_g,Lg,Pg,Mg,Dg=function(e){return!1},Ug=function(e,t,r){var a=t[r],o=Array.isArray(e)?e.slice():n({},e);return r+1===t.length?(Array.isArray(o)?o.splice(a,1):delete o[a],o):(o[a]=Ug(e[a],t,r+1),o)},jg=function(e,t){return Ug(e,t,0)},Fg=function(e,t,r,a){var o=t[a],i=Array.isArray(e)?e.slice():n({},e);return a+1===t.length?(i[r[a]]=i[o],Array.isArray(i)?i.splice(o,1):delete i[o]):i[o]=Fg(e[o],t,r,a+1),i},zg=function(e,t,n){if(t.length===n.length){for(var r=0;r &lt;n.length-1;r++)if(t[r]!==n[r])return void i(&quot;copyWithRename() expects paths to be the same except for the deepest key &quot;);return Fg(e,t,n,0)}i(&quot;copyWithRename() expects paths of the same length &quot;)},Hg=function(e,t,r,a){if(r &gt;=t.length)return a;var o=t[r],i=Array.isArray(e)?e.slice():n({},e);return i[o]=Hg(e[o],t,r+1,a),i},Bg=function(e,t,n){return Hg(e,t,0,n)},Vg=function(e,t){for(var n=e.memoizedState;null!==n &amp;&amp;t &gt;0;)n=n.next,t--;return n};function Wg(e,t,n){this._internalRoot=function(e,t,n){var r=null!=n &amp;&amp;null!=n.hydrationOptions &amp;&amp;n.hydrationOptions.mutableSources||null,a=function(e,t,n,r){return function(e,t,n,r){var a=new bg(e,t,n),o=function(e){var t;return t=2===e?7:1===e?3:0,vs &amp;&amp;(t|=8),cg(3,null,null,t)}(t);return a.current=o,o.stateNode=a,Cc(o),a}(e,t,n)}(e,t,null!=n &amp;&amp;!0===n.hydrate);if(function(e,t){t[xl]=e}(a.current,e),vi(8===e.nodeType?e.parentNode:e),r)for(var o=0;o &lt;r.length;o++)Tg(a,r[o]);return a}(e,t,n)}function Gg(e){return!(!e||1!==e.nodeType &amp;&amp;9!==e.nodeType &amp;&amp;11!==e.nodeType &amp;&amp;(8!==e.nodeType||&quot;react-mount-point-unstable &quot;!==e.nodeValue))}Ag=function(e,t,r,a){var o=Vg(e,t);if(null!==o){var i=Bg(o.memoizedState,r,a);o.memoizedState=i,o.baseState=i,e.memoizedProps=n({},e.memoizedProps),Vm(e,1,ca)}},Ig=function(e,t,r){var a=Vg(e,t);if(null!==a){var o=jg(a.memoizedState,r);a.memoizedState=o,a.baseState=o,e.memoizedProps=n({},e.memoizedProps),Vm(e,1,ca)}},kg=function(e,t,r,a){var o=Vg(e,t);if(null!==o){var i=zg(o.memoizedState,r,a);o.memoizedState=i,o.baseState=i,e.memoizedProps=n({},e.memoizedProps),Vm(e,1,ca)}},xg=function(e,t,n){e.pendingProps=Bg(e.memoizedProps,t,n),e.alternate &amp;&amp;(e.alternate.pendingProps=e.pendingProps),Vm(e,1,ca)},_g=function(e,t){e.pendingProps=jg(e.memoizedProps,t),e.alternate &amp;&amp;(e.alternate.pendingProps=e.pendingProps),Vm(e,1,ca)},Lg=function(e,t,n){e.pendingProps=zg(e.memoizedProps,t,n),e.alternate &amp;&amp;(e.alternate.pendingProps=e.pendingProps),Vm(e,1,ca)},Pg=function(e){Vm(e,1,ca)},Mg=function(e){Dg=e},Wg.prototype.render=function(e){var t=this._internalRoot;&quot;function &quot;==typeof arguments[1]&amp;&amp;s(&quot;render(...): does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().&quot;);var n=t.containerInfo;if(8!==n.nodeType){var r=Cg(t.current);r &amp;&amp;r.parentNode!==n &amp;&amp;s(&quot;render(...): It looks like the React-rendered content of the root container was removed without using React. This is not supported and will cause errors. Instead, call root.unmount() to empty a root &#039;s container.&quot;)}Rg(e,t,null,null)},Wg.prototype.unmount=function(){&quot;function &quot;==typeof arguments[0]&amp;&amp;s(&quot;unmount(...): does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().&quot;);var e=this._internalRoot,t=e.containerInfo;Rg(null,e,null,function(){Pl(t)})};var Yg,$g=o.ReactCurrentOwner,Xg=!1;function Kg(e){return e?9===e.nodeType?e.documentElement:e.firstChild:null}function qg(e,t,n,r,a){Yg(n),function(e,t){null!==e &amp;&amp;&quot;function &quot;!=typeof e &amp;&amp;s(&quot;%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.&quot;,&quot;render &quot;,e)}(void 0===a?null:a);var o,l=n._reactRootContainer;if(l){if(&quot;function &quot;==typeof a){var c=a;a=function(){var e=Sg(o);c.call(e)}}Rg(t,o=l._internalRoot,e,a)}else{if(l=n._reactRootContainer=function(e,t){var n=t||function(e){var t=Kg(e);return!(!t||1!==t.nodeType||!t.hasAttribute(L))}(e);if(!n)for(var r,a=!1;r=e.lastChild;)!a &amp;&amp;1===r.nodeType &amp;&amp;r.hasAttribute(L)&amp;&amp;(a=!0,s(&quot;render(): Target node has markup rendered by React, but there are unrelated nodes as well. This is most commonly caused by white-space inserted around server-rendered markup.&quot;)),e.removeChild(r);return!n||t||Xg||(Xg=!0,i(&quot;render(): Calling ReactDOM.render() to hydrate server-rendered markup will stop working in React v18. Replace the ReactDOM.render() call with ReactDOM.hydrate() if you want React to attach to the server HTML.&quot;)),function(e,t){return new Wg(e,0,t)}(e,n?{hydrate:!0}:void 0)}(n,r),o=l._internalRoot,&quot;function &quot;==typeof a){var u=a;a=function(){var e=Sg(o);u.call(e)}}qm(function(){Rg(t,o,e,a)})}return Sg(o)}Yg=function(e){if(e._reactRootContainer &amp;&amp;8!==e.nodeType){var t=Cg(e._reactRootContainer._internalRoot.current);t &amp;&amp;t.parentNode!==e &amp;&amp;s(&quot;render(...): It looks like the React-rendered content of this container was removed without using React. This is not supported and will cause errors. Instead, call ReactDOM.unmountComponentAtNode to empty a container.&quot;)}var n=!!e._reactRootContainer,r=Kg(e);!(!r||!Ul(r))&amp;&amp;!n &amp;&amp;s(&quot;render(...): Replacing React-rendered children with a new root component. If you intended to update the children of this node, you should instead have the existing children update their state and render the new components instead of calling ReactDOM.render.&quot;),1===e.nodeType &amp;&amp;e.tagName &amp;&amp;&quot;BODY &quot;===e.tagName.toUpperCase()&amp;&amp;s(&quot;render(): Rendering components directly into document.body is discouraged, since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try rendering into a container element created for your app.&quot;)},er=function(e){e.tag===h &amp;&amp;(Vm(e,4,Hm()),Og(e,4))},tr=function(e){if(e.tag===h){var t=Hm(),n=aa;Vm(e,n,t),Og(e,n)}},nr=function(e){if(e.tag===h){var t=Hm(),n=Bm(e);Vm(e,n,t),Og(e,n)}},rr=function(e,t){try{return t()}finally{}};var Jg=!1;function Qg(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:null;if(!Gg(t))throw Error(&quot;Target container is not a DOM element.&quot;);return Ng(e,t,null,n)}&quot;function &quot;==typeof Map &amp;&amp;null!=Map.prototype &amp;&amp;&quot;function &quot;==typeof Map.prototype.forEach &amp;&amp;&quot;function &quot;==typeof Set &amp;&amp;null!=Set.prototype &amp;&amp;&quot;function &quot;==typeof Set.prototype.clear &amp;&amp;&quot;function &quot;==typeof Set.prototype.forEach||s(&quot;React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;),wn=function(e,t,n){switch(t){case &quot;input &quot;:return void function(e,t){var n=e;gt(n,t),function(e,t){var n=t.name;if(&quot;radio &quot;===t.type &amp;&amp;null!=n){for(var r=e;r.parentNode;)r=r.parentNode;for(var a=r.querySelectorAll(&quot;input[name=&quot;+JSON.stringify(&quot;&quot;+n)+&#039;][type=&quot;radio &quot;]&#039;),o=0;o &lt;a.length;o++){var i=a[o];if(i!==e &amp;&amp;i.form===e.form){var l=Fl(i);if(!l)throw Error(&quot;ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.&quot;);it(i),gt(i,l)}}}}(n,t)}(e,n);case &quot;textarea &quot;:return void function(e,t){_t(e,t)}(e,n);case &quot;select &quot;:return void function(e,t){var n=t.value;null!=n &amp;&amp;Ot(e,!!t.multiple,n,!1)}(e,n)}},xn=Km,_n=function(e,t,n,r,a){var o=om;om|=4;try{return Ws(Ls,e.bind(null,t,n,r,a))}finally{0===(om=o)&amp;&amp;(bm(),$s())}},Ln=function(){0==(49 &amp;om)?(function(){if(null!==_m){var e=_m;_m=null,e.forEach(function(e){!function(e){e.expiredLanes|=24 &amp;e.pendingLanes}(e),Gm(e,Hs())})}$s()}(),yh()):0!=(16 &amp;om)&amp;&amp;s(&quot;unstable_flushDiscreteUpdates: Cannot flush updates when React is already rendering.&quot;)},Pn=function(e,t){var n=om;om|=2;try{return e(t)}finally{0===(om=n)&amp;&amp;(bm(),$s())}};var Zg,ev={Events:[Ul,jl,Fl,In,kn,yh,Mh]};if(!function(e){if(&quot;undefined &quot;==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled)return!0;if(!t.supportsFiber)return s(&quot;The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://reactjs.org/link/react-devtools &quot;),!0;try{ms=t.inject(e),hs=t}catch(e){s(&quot;React instrumentation encountered an error: %s.&quot;,e)}return!0}({bundleType:(Zg={findFiberByHostInstance:Dl,bundleType:1,version:Ks,rendererPackageName:&quot;react-dom &quot;}).bundleType,version:Zg.version,rendererPackageName:Zg.rendererPackageName,rendererConfig:Zg.rendererConfig,overrideHookState:Ag,overrideHookStateDeletePath:Ig,overrideHookStateRenamePath:kg,overrideProps:xg,overridePropsDeletePath:_g,overridePropsRenamePath:Lg,setSuspenseHandler:Mg,scheduleUpdate:Pg,currentDispatcherRef:o.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){var t=vr(e);return null===t?null:t.stateNode},findFiberByHostInstance:Zg.findFiberByHostInstance||function(e){return null},findHostInstancesForRefresh:function(e,t){var n=new Set,r=new Set(t.map(function(e){return e.current}));return rg(e.current,r,n),n},scheduleRefresh:function(e,t){if(null!==Kh){var n=t.staleFamilies,r=t.updatedFamilies;yh(),Jm(function(){ng(e.current,r,n)})}},scheduleRoot:function(e,t){e.context===Zl &amp;&amp;(yh(),Jm(function(){Rg(t,e,null,null)}))},setRefreshHandler:function(e){Kh=e},getCurrentFiber:function(){return Ye}})&amp;&amp;k &amp;&amp;window.top===window.self &amp;&amp;(navigator.userAgent.indexOf(&quot;Chrome &quot;)&gt;-1 &amp;&amp;-1===navigator.userAgent.indexOf(&quot;Edge &quot;)||navigator.userAgent.indexOf(&quot;Firefox &quot;)&gt;-1)){var tv=window.location.protocol;/^(https?|file):$/.test(tv)&amp;&amp;console.info(&quot;%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools &quot;+(&quot;file:&quot;===tv?&quot;
You might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq &quot;:&quot;&quot;),&quot;font-weight:bold &quot;)}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ev,t.createPortal=Qg,t.findDOMNode=function(e){var t=$g.current;return null!==t &amp;&amp;null!==t.stateNode &amp;&amp;(t.stateNode._warnedAboutRefsInRender||s(&quot;%s is accessing findDOMNode inside its render(). render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.&quot;,We(t.type)||&quot;A component &quot;),t.stateNode._warnedAboutRefsInRender=!0),null==e?null:1===e.nodeType?e:function(e,t){var n=Zn(e);if(void 0===n)throw &quot;function &quot;==typeof e.render?Error(&quot;Unable to find node on an unmounted component.&quot;):Error(&quot;Argument appears to not be a ReactComponent. Keys: &quot;+Object.keys(e));var r=vr(n);if(null===r)return null;if(1 &amp;r.mode){var a=We(n.type)||&quot;Component &quot;;if(!sg[a]){sg[a]=!0;var o=Ye;try{Je(r),s(1 &amp;n.mode?&quot;%s is deprecated in StrictMode. %s was passed an instance of %s which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node &quot;:&quot;%s is deprecated in StrictMode. %s was passed an instance of %s which renders StrictMode children. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node &quot;,t,t,a)}finally{o?Je(o):qe()}}}return r.stateNode}(e,&quot;findDOMNode &quot;)},t.flushSync=Jm,t.hydrate=function(e,t,n){if(!Gg(t))throw Error(&quot;Target container is not a DOM element.&quot;);return Ml(t)&amp;&amp;void 0===t._reactRootContainer &amp;&amp;s(&quot;You are calling ReactDOM.hydrate() on a container that was previously passed to ReactDOM.createRoot(). This is not supported. Did you mean to call createRoot(container, {hydrate: true}).render(element)?&quot;),qg(null,e,t,!0,n)},t.render=function(e,t,n){if(!Gg(t))throw Error(&quot;Target container is not a DOM element.&quot;);return Ml(t)&amp;&amp;void 0===t._reactRootContainer &amp;&amp;s(&quot;You are calling ReactDOM.render() on a container that was previously passed to ReactDOM.createRoot(). This is not supported. Did you mean to call root.render(element)?&quot;),qg(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!Gg(e))throw Error(&quot;unmountComponentAtNode(...): Target container is not a DOM element.&quot;);if(Ml(e)&amp;&amp;void 0===e._reactRootContainer &amp;&amp;s(&quot;You are calling ReactDOM.unmountComponentAtNode() on a container that was previously passed to ReactDOM.createRoot(). This is not supported. Did you mean to call root.unmount()?&quot;),e._reactRootContainer){var t=Kg(e);return t &amp;&amp;!Ul(t)&amp;&amp;s(&quot;unmountComponentAtNode(): The node you &#039;re attempting to unmount was rendered by another copy of React.&quot;),qm(function(){qg(null,null,e,!1,function(){e._reactRootContainer=null,Pl(e)})}),!0}var n=Kg(e),r=!(!n||!Ul(n)),a=1===e.nodeType &amp;&amp;Gg(e.parentNode)&amp;&amp;!!e.parentNode._reactRootContainer;return r &amp;&amp;s(&quot;unmountComponentAtNode(): The node you &#039;re attempting to unmount was rendered by React and is not a top-level container. %s &quot;,a?&quot;You may have accidentally passed in a React root node instead of its container.&quot;:&quot;Instead, have the parent component update its state and rerender in order to remove this component.&quot;),!1},t.unstable_batchedUpdates=Km,t.unstable_createPortal=function(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:null;return Jg||(Jg=!0,i(&#039;The ReactDOM.unstable_createPortal() alias has been deprecated, and will be removed in React 18+. Update your code to use ReactDOM.createPortal() instead. It has the exact same API, but without the &quot;unstable_ &quot;prefix.&#039;)),Qg(e,t,n)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){return function(e,t,n,r){if(!Gg(n))throw Error(&quot;Target container is not a DOM element.&quot;);if(null==e||void 0===e._reactInternals)throw Error(&quot;parentComponent must be a valid React Component &quot;);return qg(e,t,n,!1,r)}(e,t,n,r)},t.version=Ks}()}),he=n(function(e){e.exports=me});Sfdump=window.Sfdump||function(e){var t=e.createElement(&quot;style &quot;),n=/([.*+?^${}()|\[\]\/\])/g,r=/sf-dump-\d+-ref[012]\w+/,a=0 &lt;=navigator.platform.toUpperCase().indexOf(&quot;MAC &quot;)?&quot;Cmd &quot;:&quot;Ctrl &quot;,o=function(e,t,n){e.addEventListener(t,n,!1)};function i(t,n){var r,a,o=t.nextSibling||{},i=o.className;if(/sf-dump-compact/.test(i))r=&quot;&#9660;&quot;,a=&quot;sf-dump-expanded &quot;;else{if(!/sf-dump-expanded/.test(i))return!1;r=&quot;&#9654;&quot;,a=&quot;sf-dump-compact &quot;}if(e.createEvent &amp;&amp;o.dispatchEvent){var l=e.createEvent(&quot;Event &quot;);l.initEvent(&quot;sf-dump-expanded &quot;===a?&quot;sfbeforedumpexpand &quot;:&quot;sfbeforedumpcollapse &quot;,!0,!1),o.dispatchEvent(l)}if(t.lastChild.innerHTML=r,o.className=o.className.replace(/sf-dump-(compact|expanded)/,a),n)try{for(t=o.querySelectorAll(&quot;.&quot;+i),o=0;o &lt;t.length;++o)-1==t[o].className.indexOf(a)&amp;&amp;(t[o].className=a,t[o].previousSibling.lastChild.innerHTML=r)}catch(e){}return!0}function l(e,t){return!!/sf-dump-compact/.test((e.nextSibling||{}).className)&amp;&amp;(i(e,t),!0)}function s(e){var t=e.querySelector(&quot;a.sf-dump-toggle &quot;);return!!t &amp;&amp;(function(e,t){/sf-dump-expanded/.test((e.nextSibling||{}).className)&amp;&amp;i(e,!0)}(t),l(t),!0)}function c(e){Array.from(e.querySelectorAll(&quot;.sf-dump-str, .sf-dump-key, .sf-dump-public, .sf-dump-protected, .sf-dump-private &quot;)).forEach(function(e){e.className=e.className.replace(/sf-dump-highlight/,&quot;&quot;),e.className=e.className.replace(/sf-dump-highlight-active/,&quot;&quot;)})}return t.innerHTML=&quot;pre.sf-dump .sf-dump-compact, .sf-dump-str-collapse .sf-dump-str-collapse, .sf-dump-str-expand .sf-dump-str-expand { display: none; }&quot;,(e.documentElement.firstElementChild||e.documentElement.children[0]).appendChild(t),t=e.createElement(&quot;style &quot;),(e.documentElement.firstElementChild||e.documentElement.children[0]).appendChild(t),e.addEventListener||(o=function(e,t,n){e.attachEvent(&quot;on &quot;+t,function(e){e.preventDefault=function(){e.returnValue=!1},e.target=e.srcElement,n(e)})}),function(u,f){u=e.getElementById(u);for(var d,p,m=new RegExp(&quot;^(&quot;+(u.getAttribute(&quot;data-indent-pad &quot;)||&quot;&quot;).replace(n,&quot;\$1 &quot;)+&quot;)+&quot;,&quot;m &quot;),h={maxDepth:1,maxStringLength:160,fileLinkFormat:null},g=u.getElementsByTagName(&quot;A &quot;),v=g.length,y=0,E=[];y &lt;v;)E.push(g[y++]);for(y in f)h[y]=f[y];function b(e,t){o(u,e,function(e,n){&quot;A &quot;==e.target.tagName?t(e.target,e):&quot;A &quot;==e.target.parentNode.tagName?t(e.target.parentNode,e):(n=(n=/sf-dump-ellipsis/.test(e.target.className)?e.target.parentNode:e.target).nextElementSibling)&amp;&amp;&quot;A &quot;==n.tagName &amp;&amp;(/sf-dump-toggle/.test(n.className)||(n=n.nextElementSibling||n),t(n,e,!0))})}function T(e){return e.ctrlKey||e.metaKey}function N(e){return &quot;concat(&quot;+e.match(/[^&#039;&quot;]+|[&#039;&quot;]/g).map(function(e){return &quot;&#039;&quot;==e?&#039;&quot;\&#039;&quot;&#039;:&#039;&quot;&#039;==e?&quot;&#039;\&quot;&#039;&quot;:&quot;&#039;&quot;+e+&quot;&#039;&quot;}).join(&quot;,&quot;)+&quot;, &#039;&#039;)&quot;}function R(e){return &quot;contains(concat(&#039;&#039;, normalize-space(@class), &#039;&#039;), &#039;&quot;+e+&quot;&#039;)&quot;}for(o(u,&quot;mouseover &quot;,function(e){&quot;&quot;!=t.innerHTML &amp;&amp;(t.innerHTML=&quot;&quot;)}),b(&quot;mouseover &quot;,function(e,n,a){if(a)n.target.style.cursor=&quot;pointer &quot;;else if(e=r.exec(e.className))try{t.innerHTML=&quot;pre.sf-dump .&quot;+e[0]+&quot;{background-color: #B729D9; color: #FFF !important; border-radius: 2px}&quot;}catch(n){}}),b(&quot;click &quot;,function(t,r,a){if(/sf-dump-toggle/.test(t.className)){if(r.preventDefault(),!i(t,T(r))){var o=e.getElementById(t.getAttribute(&quot;href &quot;).substr(1)),l=o.previousSibling,s=o.parentNode,c=t.parentNode;c.replaceChild(o,t),s.replaceChild(t,l),c.insertBefore(l,o),s=s.firstChild.nodeValue.match(m),c=c.firstChild.nodeValue.match(m),s &amp;&amp;c &amp;&amp;s[0]!==c[0]&amp;&amp;(o.innerHTML=o.innerHTML.replace(new RegExp(&quot;^&quot;+s[0].replace(n,&quot;\$1 &quot;),&quot;mg &quot;),c[0])),/sf-dump-compact/.test(o.className)&amp;&amp;i(l,T(r))}if(a);else if(e.getSelection)try{e.getSelection().removeAllRanges()}catch(r){e.getSelection().empty()}else e.selection.empty()}else/sf-dump-str-toggle/.test(t.className)&amp;&amp;(r.preventDefault(),(r=t.parentNode.parentNode).className=r.className.replace(/sf-dump-str-(expand|collapse)/,t.parentNode.className))}),v=(g=u.getElementsByTagName(&quot;SAMP &quot;)).length,y=0;y &lt;v;)E.push(g[y++]);for(v=E.length,y=0;y &lt;v;++y)if(&quot;SAMP &quot;==(g=E[y]).tagName)&quot;A &quot;!=(b=g.previousSibling||{}).tagName?((b=e.createElement(&quot;A &quot;)).className=&quot;sf-dump-ref &quot;,g.parentNode.insertBefore(b,g)):b.innerHTML+=&quot;&quot;,b.title=(b.title?b.title+&quot;
[&quot;:&quot;[&quot;)+a+&quot;+click] Expand all children &quot;,b.innerHTML+=&quot;sf-dump-compact &quot;==g.className?&quot;&lt;span &gt;&#9654;&lt;/span &gt;&quot;:&quot;&lt;span &gt;&#9660;&lt;/span &gt;&quot;,b.className+=&quot;sf-dump-toggle &quot;,f=1,&quot;sf-dump &quot;!=g.parentNode.className &amp;&amp;(f+=g.parentNode.getAttribute(&quot;data-depth &quot;)/1);else if(/sf-dump-ref/.test(g.className)&amp;&amp;(b=g.getAttribute(&quot;href &quot;))&amp;&amp;(b=b.substr(1),g.className+=&quot;&quot;+b,/[\[{]$/.test(g.previousSibling.nodeValue))){b=b!=g.nextSibling.id &amp;&amp;e.getElementById(b);try{d=b.nextSibling,g.appendChild(b),d.parentNode.insertBefore(b,d),/^[@#]/.test(g.innerHTML)?g.innerHTML+=&quot;&lt;span &gt;&#9654;&lt;/span &gt;&quot;:(g.innerHTML=&quot;&lt;span &gt;&#9654;&lt;/span &gt;&quot;,g.className=&quot;sf-dump-ref &quot;),g.className+=&quot;sf-dump-toggle &quot;}catch(e){&quot;&amp;&quot;==g.innerHTML.charAt(0)&amp;&amp;(g.innerHTML=&quot;&#8230;&quot;,g.className=&quot;sf-dump-ref &quot;)}}if(e.evaluate &amp;&amp;Array.from &amp;&amp;u.children.length &gt;1){var S=function(e){var t,n,r=e.current();r &amp;&amp;(function(e){for(var t,n=[];(e=e.parentNode||{})&amp;&amp;(t=e.previousSibling)&amp;&amp;&quot;A &quot;===t.tagName;)n.push(t);0!==n.length &amp;&amp;n.forEach(function(e){l(e)})}(r),function(e,t,n){c(e),Array.from(n||[]).forEach(function(e){/sf-dump-highlight/.test(e.className)||(e.className=e.className+&quot;sf-dump-highlight &quot;)}),/sf-dump-highlight-active/.test(t.className)||(t.className=t.className+&quot;sf-dump-highlight-active &quot;)}(u,r,e.nodes),&quot;scrollIntoView &quot;in r &amp;&amp;(r.scrollIntoView(!0),t=r.getBoundingClientRect(),n=w.getBoundingClientRect(),t.top &lt;n.top+n.height &amp;&amp;window.scrollBy(0,-(n.top+n.height+5)))),A.textContent=(e.isEmpty()?0:e.idx+1)+&quot;of &quot;+e.count()};u.setAttribute(&quot;tabindex &quot;,0),SearchState=function(){this.nodes=[],this.idx=0},SearchState.prototype={next:function(){return this.isEmpty()||(this.idx=this.idx &lt;this.nodes.length-1?this.idx+1:0),this.current()},previous:function(){return this.isEmpty()||(this.idx=this.idx &gt;0?this.idx-1:this.nodes.length-1),this.current()},isEmpty:function(){return 0===this.count()},current:function(){return this.isEmpty()?null:this.nodes[this.idx]},reset:function(){this.nodes=[],this.idx=0},count:function(){return this.nodes.length}};var w=e.createElement(&quot;div &quot;);w.className=&quot;sf-dump-search-wrapper sf-dump-search-hidden &quot;,w.innerHTML=&#039;
                    &lt;input type=&quot;text &quot;class=&quot;sf-dump-search-input &quot;&gt;
                    &lt;span class=&quot;sf-dump-search-count &quot;&gt;0 of 0 &lt;/span &gt;
                    &lt;button type=&quot;button &quot;class=&quot;sf-dump-search-input-previous &quot;tabindex=&quot;-1 &quot;&gt;
                        &lt;svg viewBox=&quot;0 0 1792 1792 &quot;xmlns=&quot;http://www.w3.org/2000/svg &quot;&gt;&lt;path d=&quot;M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z &quot;/&gt;&lt;/svg &gt;
                    &lt;/button &gt;
                    &lt;button type=&quot;button &quot;class=&quot;sf-dump-search-input-next &quot;tabindex=&quot;-1 &quot;&gt;
                        &lt;svg viewBox=&quot;0 0 1792 1792 &quot;xmlns=&quot;http://www.w3.org/2000/svg &quot;&gt;&lt;path d=&quot;M1683 808l-742 741q-19 19-45 19t-45-19L109 808q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z &quot;/&gt;&lt;/svg &gt;
                    &lt;/button &gt;
                &#039;,u.insertBefore(w,u.firstChild);var O=new SearchState,C=w.querySelector(&quot;.sf-dump-search-input &quot;),A=w.querySelector(&quot;.sf-dump-search-count &quot;),I=0,k=&quot;&quot;;o(C,&quot;keyup &quot;,function(t){var n=t.target.value;n!==k &amp;&amp;(k=n,clearTimeout(I),I=setTimeout(function(){if(O.reset(),s(u),c(u),&quot;&quot;!==n){for(var t=[&quot;sf-dump-str &quot;,&quot;sf-dump-key &quot;,&quot;sf-dump-public &quot;,&quot;sf-dump-protected &quot;,&quot;sf-dump-private &quot;].map(R).join(&quot;or &quot;),r=e.evaluate(&quot;.//span[&quot;+t+&quot;][contains(translate(child::text(), &quot;+N(n.toUpperCase())+&quot;, &quot;+N(n.toLowerCase())+&quot;), &quot;+N(n.toLowerCase())+&quot;)]&quot;,u,null,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null);node=r.iterateNext();)O.nodes.push(node);S(O)}else A.textContent=&quot;0 of 0 &quot;},400))}),Array.from(w.querySelectorAll(&quot;.sf-dump-search-input-next, .sf-dump-search-input-previous &quot;)).forEach(function(e){o(e,&quot;click &quot;,function(e){e.preventDefault(),-1!==e.target.className.indexOf(&quot;next &quot;)?O.next():O.previous(),C.focus(),s(u),S(O)})}),o(u,&quot;keydown &quot;,function(e){var t=!/sf-dump-search-hidden/.test(w.className);if(114===e.keyCode &amp;&amp;!t||T(e)&amp;&amp;70===e.keyCode){if(70===e.keyCode &amp;&amp;document.activeElement===C)return;e.preventDefault(),w.className=w.className.replace(/sf-dump-search-hidden/,&quot;&quot;),C.focus()}else t &amp;&amp;(27===e.keyCode?(w.className+=&quot;sf-dump-search-hidden &quot;,e.preventDefault(),c(u),C.value=&quot;&quot;):(T(e)&amp;&amp;71===e.keyCode||13===e.keyCode||114===e.keyCode)&amp;&amp;(e.preventDefault(),e.shiftKey?O.previous():O.next(),s(u),S(O)))})}if(!(0 &gt;=h.maxStringLength))try{for(v=(g=u.querySelectorAll(&quot;.sf-dump-str &quot;)).length,y=0,E=[];y &lt;v;)E.push(g[y++]);for(v=E.length,y=0;y &lt;v;++y)0 &lt;(f=(d=(g=E[y]).innerText||g.textContent).length-h.maxStringLength)&amp;&amp;(p=g.innerHTML,g[g.innerText?&quot;innerText &quot;:&quot;textContent &quot;]=d.substring(0,h.maxStringLength),g.className+=&quot;sf-dump-str-collapse &quot;,g.innerHTML=&#039;&lt;span class=&quot;sf-dump-str-collapse &quot;&gt;&#039;+p+&#039;&lt;a class=&quot;sf-dump-ref sf-dump-str-toggle &quot;title=&quot;Collapse &quot;&gt;&#9664;&lt;/a &gt;&lt;/span &gt;&lt;span class=&quot;sf-dump-str-expand &quot;&gt;&#039;+g.innerHTML+&#039;&lt;a class=&quot;sf-dump-ref sf-dump-str-toggle &quot;title=&quot;&#039;+f+&#039;remaining characters &quot;&gt;&#9654;&lt;/a &gt;&lt;/span &gt;&#039;)}catch(e){}}}(document);var ge=c.createContext({inView:[],setInView:function(){}});function ve(e){var t=e.children,n=c.useState([]);return c.createElement(ge.Provider,{value:{inView:n[0],setInView:n[1]}},t)}function ye(e){var t,n,r=e.name,a=e.href,o=void 0===a?null:a,i=e.icon,l=e.iconOpacity,s=void 0===l?&quot;opacity-50 &quot;:l,u=e.important,f=void 0!==u &amp;&amp;u,d=e.children,p=void 0===d?null:d,m=e.onClick,h=void 0===m?null:m,g=e.label,v=void 0===g||g,y=e.navRef,E=c.useContext(ge);return c.createElement(&quot;li &quot;,{ref:y},c.createElement(&quot;a &quot;,{href:o||&quot;#&quot;+r,target:o?&quot;_blank &quot;:&quot;_self &quot;,onClick:function(e){h &amp;&amp;(e.preventDefault(),h())}},c.createElement(&quot;button &quot;,{className:&quot;
                    group px-3 sm:px-5 h-10 uppercase tracking-wider text-xs font-medium
                    hover:text-red-500
                    &quot;+(t=E.inView,n=null==t?0:t.length,((n?t[n-1]:void 0)===r?&quot;text-red-500 &quot;:&quot;&quot;)+&quot;
                &quot;)},i &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;mr-1.5 &quot;+(null!=s?s:&quot;opacity-50 &quot;)},i),v &amp;&amp;c.createElement(&quot;span &quot;,null,r.charAt(0).toUpperCase()+r.slice(1)),f &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;right-2 top-2.5 absolute w-2 h-2 bg-red-500 rounded-full shadow &quot;}))),p)}var Ee=c.createContext(),be=function(){},Te=c.createContext({ignitionConfig:{},setIgnitionConfig:be});function Ne({children:e,ignitionConfig:t}){const[n,r]=c.useState(t),a=(()=&gt;{let[e,t]=c.useState(()=&gt;{if(&quot;function &quot;!=typeof window.matchMedia)return &quot;no-preference &quot;;let e=window.matchMedia(&quot;(prefers-color-scheme: dark)&quot;),t=window.matchMedia(&quot;(prefers-color-scheme: light)&quot;);return e.matches?&quot;dark &quot;:t.matches?&quot;light &quot;:&quot;no-preference &quot;});return c.useEffect(()=&gt;{if(&quot;function &quot;!=typeof window.matchMedia)return;let e=window.matchMedia(&quot;(prefers-color-scheme: dark)&quot;),n=window.matchMedia(&quot;(prefers-color-scheme: light)&quot;);if(&quot;function &quot;==typeof n.addEventListener){let r=({matches:e})=&gt;{e &amp;&amp;t(&quot;dark &quot;)},a=({matches:e})=&gt;{e &amp;&amp;t(&quot;light &quot;)};return e.addEventListener(&quot;change &quot;,r),n.addEventListener(&quot;change &quot;,a),()=&gt;{e.removeEventListener(&quot;change &quot;,r),n.removeEventListener(&quot;change &quot;,a)}}if(&quot;function &quot;==typeof n.addListener){let r=()=&gt;t(e.matches?&quot;dark &quot;:n.matches?&quot;light &quot;:&quot;no-preference &quot;);return e.addListener(r),n.addListener(r),()=&gt;{e.removeListener(r),n.removeListener(r)}}},[]),e})(),o=&quot;auto &quot;===n.theme?&quot;no-preference &quot;!==a?a:&quot;light &quot;:n.theme;return c.useEffect(()=&gt;{document.documentElement.classList.remove(&quot;light &quot;,&quot;dark &quot;,&quot;auto &quot;),document.documentElement.classList.add(o)},[o]),c.createElement(Te.Provider,{value:{ignitionConfig:n,setIgnitionConfig:r,theme:o}},e)}var Re=&quot;undefined &quot;!=typeof globalThis?globalThis:&quot;undefined &quot;!=typeof window?window:&quot;undefined &quot;!=typeof global?global:&quot;undefined &quot;!=typeof self?self:{};function Se(e){return e &amp;&amp;e.__esModule &amp;&amp;Object.prototype.hasOwnProperty.call(e,&quot;default &quot;)?e.default:e}function we(e){var t={exports:{}};return e(t,t.exports),t.exports}var Oe,Ce=&quot;object &quot;==typeof Re &amp;&amp;Re &amp;&amp;Re.Object===Object &amp;&amp;Re,Ae=&quot;object &quot;==typeof self &amp;&amp;self &amp;&amp;self.Object===Object &amp;&amp;self,Ie=Ce||Ae||Function(&quot;return this &quot;)(),ke=Ie.Symbol,xe=Object.prototype,_e=xe.hasOwnProperty,Le=xe.toString,Pe=ke?ke.toStringTag:void 0,Me=Object.prototype.toString,De=ke?ke.toStringTag:void 0,Ue=function(e){return null==e?void 0===e?&quot;[object Undefined]&quot;:&quot;[object Null]&quot;:De &amp;&amp;De in Object(e)?function(e){var t=_e.call(e,Pe),n=e[Pe];try{e[Pe]=void 0;var r=!0}catch(e){}var a=Le.call(e);return r &amp;&amp;(t?e[Pe]=n:delete e[Pe]),a}(e):function(e){return Me.call(e)}(e)},je=function(e){var t=typeof e;return null!=e &amp;&amp;(&quot;object &quot;==t||&quot;function &quot;==t)},Fe=function(e){if(!je(e))return!1;var t=Ue(e);return &quot;[object Function]&quot;==t||&quot;[object GeneratorFunction]&quot;==t||&quot;[object AsyncFunction]&quot;==t||&quot;[object Proxy]&quot;==t},ze=Ie[&quot;__core-js_shared__ &quot;],He=(Oe=/[^.]+$/.exec(ze &amp;&amp;ze.keys &amp;&amp;ze.keys.IE_PROTO||&quot;&quot;))?&quot;Symbol(src)_1.&quot;+Oe:&quot;&quot;,Be=Function.prototype.toString,Ve=function(e){if(null!=e){try{return Be.call(e)}catch(e){}try{return e+&quot;&quot;}catch(e){}}return &quot;&quot;},We=/^\[object .+?Constructor\]$/,Ge=RegExp(&quot;^&quot;+Function.prototype.toString.call(Object.prototype.hasOwnProperty).replace(/[\^$.*+?()[\]{}|]/g,&quot;\$ &amp;&quot;).replace(/hasOwnProperty|(function).*?(?=\\()| for .+?(?=\\])/g,&quot;$1.*?&quot;)+&quot;$ &quot;),Ye=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return function(e){return!(!je(e)||(t=e,He &amp;&amp;He in t))&amp;&amp;(Fe(e)?Ge:We).test(Ve(e));var t}(n)?n:void 0},$e=function(){try{var e=Ye(Object,&quot;defineProperty &quot;);return e({},&quot;&quot;,{}),e}catch(e){}}(),Xe=function(e,t,n){&quot;__proto__ &quot;==t &amp;&amp;$e?$e(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n},Ke=function(e){return null!=e &amp;&amp;&quot;object &quot;==typeof e},qe=function(e){return Ke(e)&amp;&amp;&quot;[object Arguments]&quot;==Ue(e)},Je=Object.prototype,Qe=Je.hasOwnProperty,Ze=Je.propertyIsEnumerable,et=qe(function(){return arguments}())?qe:function(e){return Ke(e)&amp;&amp;Qe.call(e,&quot;callee &quot;)&amp;&amp;!Ze.call(e,&quot;callee &quot;)},tt=Array.isArray,nt=function(){return!1},rt=we(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n?Ie.Buffer:void 0;e.exports=(a?a.isBuffer:void 0)||nt}),at=/^(?:0|[1-9]\d*)$/,ot=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&amp;&amp;(&quot;number &quot;==n||&quot;symbol &quot;!=n &amp;&amp;at.test(e))&amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;t},it=function(e){return &quot;number &quot;==typeof e &amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;=9007199254740991},lt={};lt[&quot;[object Float32Array]&quot;]=lt[&quot;[object Float64Array]&quot;]=lt[&quot;[object Int8Array]&quot;]=lt[&quot;[object Int16Array]&quot;]=lt[&quot;[object Int32Array]&quot;]=lt[&quot;[object Uint8Array]&quot;]=lt[&quot;[object Uint8ClampedArray]&quot;]=lt[&quot;[object Uint16Array]&quot;]=lt[&quot;[object Uint32Array]&quot;]=!0,lt[&quot;[object Arguments]&quot;]=lt[&quot;[object Array]&quot;]=lt[&quot;[object ArrayBuffer]&quot;]=lt[&quot;[object Boolean]&quot;]=lt[&quot;[object DataView]&quot;]=lt[&quot;[object Date]&quot;]=lt[&quot;[object Error]&quot;]=lt[&quot;[object Function]&quot;]=lt[&quot;[object Map]&quot;]=lt[&quot;[object Number]&quot;]=lt[&quot;[object Object]&quot;]=lt[&quot;[object RegExp]&quot;]=lt[&quot;[object Set]&quot;]=lt[&quot;[object String]&quot;]=lt[&quot;[object WeakMap]&quot;]=!1;var st,ct=we(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n &amp;&amp;Ce.process,o=function(){try{return r &amp;&amp;r.require &amp;&amp;r.require(&quot;util &quot;).types||a &amp;&amp;a.binding &amp;&amp;a.binding(&quot;util &quot;)}catch(e){}}();e.exports=o}),ut=ct &amp;&amp;ct.isTypedArray,ft=ut?(st=ut,function(e){return st(e)}):function(e){return Ke(e)&amp;&amp;it(e.length)&amp;&amp;!!lt[Ue(e)]},dt=Object.prototype.hasOwnProperty,pt=function(e,t){var n=tt(e),r=!n &amp;&amp;et(e),a=!n &amp;&amp;!r &amp;&amp;rt(e),o=!n &amp;&amp;!r &amp;&amp;!a &amp;&amp;ft(e),i=n||r||a||o,l=i?function(e,t){for(var n=-1,r=Array(e);++n &lt;e;)r[n]=t(n);return r}(e.length,String):[],s=l.length;for(var c in e)!t &amp;&amp;!dt.call(e,c)||i &amp;&amp;(&quot;length &quot;==c||a &amp;&amp;(&quot;offset &quot;==c||&quot;parent &quot;==c)||o &amp;&amp;(&quot;buffer &quot;==c||&quot;byteLength &quot;==c||&quot;byteOffset &quot;==c)||ot(c,s))||l.push(c);return l},mt=Object.prototype,ht=function(e){var t=e &amp;&amp;e.constructor;return e===(&quot;function &quot;==typeof t &amp;&amp;t.prototype||mt)},gt=function(e,t){return function(n){return e(t(n))}},vt=gt(Object.keys,Object),yt=Object.prototype.hasOwnProperty,Et=function(e){if(!ht(e))return vt(e);var t=[];for(var n in Object(e))yt.call(e,n)&amp;&amp;&quot;constructor &quot;!=n &amp;&amp;t.push(n);return t},bt=function(e){return null!=e &amp;&amp;it(e.length)&amp;&amp;!Fe(e)},Tt=function(e){return bt(e)?pt(e):Et(e)},Nt=function(e,t){return e===t||e!=e &amp;&amp;t!=t},Rt=function(e,t){for(var n=e.length;n--;)if(Nt(e[n][0],t))return n;return-1},St=Array.prototype.splice;function wt(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}wt.prototype.clear=function(){this.__data__=[],this.size=0},wt.prototype.delete=function(e){var t=this.__data__,n=Rt(t,e);return!(n &lt;0||(n==t.length-1?t.pop():St.call(t,n,1),--this.size,0))},wt.prototype.get=function(e){var t=this.__data__,n=Rt(t,e);return n &lt;0?void 0:t[n][1]},wt.prototype.has=function(e){return Rt(this.__data__,e)&gt;-1},wt.prototype.set=function(e,t){var n=this.__data__,r=Rt(n,e);return r &lt;0?(++this.size,n.push([e,t])):n[r][1]=t,this};var Ot=wt,Ct=Ye(Ie,&quot;Map &quot;),At=Ye(Object,&quot;create &quot;),It=Object.prototype.hasOwnProperty,kt=Object.prototype.hasOwnProperty;function xt(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}xt.prototype.clear=function(){this.__data__=At?At(null):{},this.size=0},xt.prototype.delete=function(e){var t=this.has(e)&amp;&amp;delete this.__data__[e];return this.size-=t?1:0,t},xt.prototype.get=function(e){var t=this.__data__;if(At){var n=t[e];return &quot;__lodash_hash_undefined__ &quot;===n?void 0:n}return It.call(t,e)?t[e]:void 0},xt.prototype.has=function(e){var t=this.__data__;return At?void 0!==t[e]:kt.call(t,e)},xt.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=At &amp;&amp;void 0===t?&quot;__lodash_hash_undefined__ &quot;:t,this};var _t=xt,Lt=function(e,t){var n,r,a=e.__data__;return(&quot;string &quot;==(r=typeof(n=t))||&quot;number &quot;==r||&quot;symbol &quot;==r||&quot;boolean &quot;==r?&quot;__proto__ &quot;!==n:null===n)?a[&quot;string &quot;==typeof t?&quot;string &quot;:&quot;hash &quot;]:a.map};function Pt(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}Pt.prototype.clear=function(){this.size=0,this.__data__={hash:new _t,map:new(Ct||Ot),string:new _t}},Pt.prototype.delete=function(e){var t=Lt(this,e).delete(e);return this.size-=t?1:0,t},Pt.prototype.get=function(e){return Lt(this,e).get(e)},Pt.prototype.has=function(e){return Lt(this,e).has(e)},Pt.prototype.set=function(e,t){var n=Lt(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};var Mt=Pt;function Dt(e){var t=this.__data__=new Ot(e);this.size=t.size}Dt.prototype.clear=function(){this.__data__=new Ot,this.size=0},Dt.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Dt.prototype.get=function(e){return this.__data__.get(e)},Dt.prototype.has=function(e){return this.__data__.has(e)},Dt.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Ot){var r=n.__data__;if(!Ct||r.length &lt;199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Mt(r)}return n.set(e,t),this.size=n.size,this};var Ut=Dt;function jt(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Mt;++t &lt;n;)this.add(e[t])}jt.prototype.add=jt.prototype.push=function(e){return this.__data__.set(e,&quot;__lodash_hash_undefined__ &quot;),this},jt.prototype.has=function(e){return this.__data__.has(e)};var Ft=jt,zt=function(e,t){for(var n=-1,r=null==e?0:e.length;++n &lt;r;)if(t(e[n],n,e))return!0;return!1},Ht=function(e,t){return e.has(t)},Bt=function(e,t,n,r,a,o){var i=1 &amp;n,l=e.length,s=t.length;if(l!=s &amp;&amp;!(i &amp;&amp;s &gt;l))return!1;var c=o.get(e),u=o.get(t);if(c &amp;&amp;u)return c==t &amp;&amp;u==e;var f=-1,d=!0,p=2 &amp;n?new Ft:void 0;for(o.set(e,t),o.set(t,e);++f &lt;l;){var m=e[f],h=t[f];if(r)var g=i?r(h,m,f,t,e,o):r(m,h,f,e,t,o);if(void 0!==g){if(g)continue;d=!1;break}if(p){if(!zt(t,function(e,t){if(!Ht(p,t)&amp;&amp;(m===e||a(m,e,n,r,o)))return p.push(t)})){d=!1;break}}else if(m!==h &amp;&amp;!a(m,h,n,r,o)){d=!1;break}}return o.delete(e),o.delete(t),d},Vt=Ie.Uint8Array,Wt=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n},Gt=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n},Yt=ke?ke.prototype:void 0,$t=Yt?Yt.valueOf:void 0,Xt=function(e,t){for(var n=-1,r=t.length,a=e.length;++n &lt;r;)e[a+n]=t[n];return e},Kt=function(e,t,n){var r=t(e);return tt(e)?r:Xt(r,n(e))},qt=function(){return[]},Jt=Object.prototype.propertyIsEnumerable,Qt=Object.getOwnPropertySymbols,Zt=Qt?function(e){return null==e?[]:(e=Object(e),function(t,n){for(var r=-1,a=null==t?0:t.length,o=0,i=[];++r &lt;a;){var l=t[r];Jt.call(e,l)&amp;&amp;(i[o++]=l)}return i}(Qt(e)))}:qt,en=function(e){return Kt(e,Tt,Zt)},tn=Object.prototype.hasOwnProperty,nn=Ye(Ie,&quot;DataView &quot;),rn=Ye(Ie,&quot;Promise &quot;),an=Ye(Ie,&quot;Set &quot;),on=Ye(Ie,&quot;WeakMap &quot;),ln=Ve(nn),sn=Ve(Ct),cn=Ve(rn),un=Ve(an),fn=Ve(on),dn=Ue;(nn &amp;&amp;&quot;[object DataView]&quot;!=dn(new nn(new ArrayBuffer(1)))||Ct &amp;&amp;&quot;[object Map]&quot;!=dn(new Ct)||rn &amp;&amp;&quot;[object Promise]&quot;!=dn(rn.resolve())||an &amp;&amp;&quot;[object Set]&quot;!=dn(new an)||on &amp;&amp;&quot;[object WeakMap]&quot;!=dn(new on))&amp;&amp;(dn=function(e){var t=Ue(e),n=&quot;[object Object]&quot;==t?e.constructor:void 0,r=n?Ve(n):&quot;&quot;;if(r)switch(r){case ln:return &quot;[object DataView]&quot;;case sn:return &quot;[object Map]&quot;;case cn:return &quot;[object Promise]&quot;;case un:return &quot;[object Set]&quot;;case fn:return &quot;[object WeakMap]&quot;}return t});var pn=dn,mn=Object.prototype.hasOwnProperty,hn=function e(t,n,r,a,o){return t===n||(null==t||null==n||!Ke(t)&amp;&amp;!Ke(n)?t!=t &amp;&amp;n!=n:function(e,t,n,r,a,o){var i=tt(e),l=tt(t),s=i?&quot;[object Array]&quot;:pn(e),c=l?&quot;[object Array]&quot;:pn(t),u=&quot;[object Object]&quot;==(s=&quot;[object Arguments]&quot;==s?&quot;[object Object]&quot;:s),f=&quot;[object Object]&quot;==(c=&quot;[object Arguments]&quot;==c?&quot;[object Object]&quot;:c),d=s==c;if(d &amp;&amp;rt(e)){if(!rt(t))return!1;i=!0,u=!1}if(d &amp;&amp;!u)return o||(o=new Ut),i||ft(e)?Bt(e,t,n,r,a,o):function(e,t,n,r,a,o,i){switch(n){case &quot;[object DataView]&quot;:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case &quot;[object ArrayBuffer]&quot;:return!(e.byteLength!=t.byteLength||!o(new Vt(e),new Vt(t)));case &quot;[object Boolean]&quot;:case &quot;[object Date]&quot;:case &quot;[object Number]&quot;:return Nt(+e,+t);case &quot;[object Error]&quot;:return e.name==t.name &amp;&amp;e.message==t.message;case &quot;[object RegExp]&quot;:case &quot;[object String]&quot;:return e==t+&quot;&quot;;case &quot;[object Map]&quot;:var l=Wt;case &quot;[object Set]&quot;:if(l||(l=Gt),e.size!=t.size &amp;&amp;!(1 &amp;r))return!1;var s=i.get(e);if(s)return s==t;r|=2,i.set(e,t);var c=Bt(l(e),l(t),r,a,o,i);return i.delete(e),c;case &quot;[object Symbol]&quot;:if($t)return $t.call(e)==$t.call(t)}return!1}(e,t,s,n,r,a,o);if(!(1 &amp;n)){var p=u &amp;&amp;mn.call(e,&quot;__wrapped__ &quot;),m=f &amp;&amp;mn.call(t,&quot;__wrapped__ &quot;);if(p||m){var h=p?e.value():e,g=m?t.value():t;return o||(o=new Ut),a(h,g,n,r,o)}}return!!d &amp;&amp;(o||(o=new Ut),function(e,t,n,r,a,o){var i=1 &amp;n,l=en(e),s=l.length;if(s!=en(t).length &amp;&amp;!i)return!1;for(var c=s;c--;){var u=l[c];if(!(i?u in t:tn.call(t,u)))return!1}var f=o.get(e),d=o.get(t);if(f &amp;&amp;d)return f==t &amp;&amp;d==e;var p=!0;o.set(e,t),o.set(t,e);for(var m=i;++c &lt;s;){var h=e[u=l[c]],g=t[u];if(r)var v=i?r(g,h,u,t,e,o):r(h,g,u,e,t,o);if(!(void 0===v?h===g||a(h,g,n,r,o):v)){p=!1;break}m||(m=&quot;constructor &quot;==u)}if(p &amp;&amp;!m){var y=e.constructor,E=t.constructor;y==E||!(&quot;constructor &quot;in e)||!(&quot;constructor &quot;in t)||&quot;function &quot;==typeof y &amp;&amp;y instanceof y &amp;&amp;&quot;function &quot;==typeof E &amp;&amp;E instanceof E||(p=!1)}return o.delete(e),o.delete(t),p}(e,t,n,r,a,o))}(t,n,r,a,e,o))},gn=function(e){return e==e &amp;&amp;!je(e)},vn=function(e,t){return function(n){return null!=n &amp;&amp;n[e]===t &amp;&amp;(void 0!==t||e in Object(n))}},yn=function(e){return &quot;symbol &quot;==typeof e||Ke(e)&amp;&amp;&quot;[object Symbol]&quot;==Ue(e)},En=/\.|\[(?:[^[\]]*|([&quot;&#039;])(?:(?!)[^\]|\.)*?)\]/,bn=/^\w*$/,Tn=function(e,t){if(tt(e))return!1;var n=typeof e;return!(&quot;number &quot;!=n &amp;&amp;&quot;symbol &quot;!=n &amp;&amp;&quot;boolean &quot;!=n &amp;&amp;null!=e &amp;&amp;!yn(e))||bn.test(e)||!En.test(e)||null!=t &amp;&amp;e in Object(t)};function Nn(e,t){if(&quot;function &quot;!=typeof e||null!=t &amp;&amp;&quot;function &quot;!=typeof t)throw new TypeError(&quot;Expected a function &quot;);var n=function n(){var r=arguments,a=t?t.apply(this,r):r[0],o=n.cache;if(o.has(a))return o.get(a);var i=e.apply(this,r);return n.cache=o.set(a,i)||o,i};return n.cache=new(Nn.Cache||Mt),n}Nn.Cache=Mt;var Rn,Sn,wn=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|([&quot;&#039;])((?:(?!)[^\]|\.)*?))\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,On=/\(\)?/g,Cn=(Rn=Nn(function(e){var t=[];return 46===e.charCodeAt(0)&amp;&amp;t.push(&quot;&quot;),e.replace(wn,function(e,n,r,a){t.push(r?a.replace(On,&quot;$1 &quot;):n||e)}),t},function(e){return 500===Sn.size &amp;&amp;Sn.clear(),e}),Sn=Rn.cache,Rn),An=function(e,t){for(var n=-1,r=null==e?0:e.length,a=Array(r);++n &lt;r;)a[n]=t(e[n],n,e);return a},In=ke?ke.prototype:void 0,kn=In?In.toString:void 0,xn=function e(t){if(&quot;string &quot;==typeof t)return t;if(tt(t))return An(t,e)+&quot;&quot;;if(yn(t))return kn?kn.call(t):&quot;&quot;;var n=t+&quot;&quot;;return &quot;0 &quot;==n &amp;&amp;1/t==-Infinity?&quot;-0 &quot;:n},_n=function(e){return null==e?&quot;&quot;:xn(e)},Ln=function(e,t){return tt(e)?e:Tn(e,t)?[e]:Cn(_n(e))},Pn=function(e){if(&quot;string &quot;==typeof e||yn(e))return e;var t=e+&quot;&quot;;return &quot;0 &quot;==t &amp;&amp;1/e==-Infinity?&quot;-0 &quot;:t},Mn=function(e,t){for(var n=0,r=(t=Ln(t,e)).length;null!=e &amp;&amp;n &lt;r;)e=e[Pn(t[n++])];return n &amp;&amp;n==r?e:void 0},Dn=function(e,t){return null!=e &amp;&amp;t in Object(e)},Un=function(e){return e},jn=function(e){return &quot;function &quot;==typeof e?e:null==e?Un:&quot;object &quot;==typeof e?tt(e)?function(e,t){return Tn(e)&amp;&amp;gn(t)?vn(Pn(e),t):function(n){var r=function(e,t,n){var r=null==e?void 0:Mn(e,t);return void 0===r?void 0:r}(n,e);return void 0===r &amp;&amp;r===t?function(e,t){return null!=e &amp;&amp;function(e,t,n){for(var r=-1,a=(t=Ln(t,e)).length,o=!1;++r &lt;a;){var i=Pn(t[r]);if(!(o=null!=e &amp;&amp;n(e,i)))break;e=e[i]}return o||++r!=a?o:!!(a=null==e?0:e.length)&amp;&amp;it(a)&amp;&amp;ot(i,a)&amp;&amp;(tt(e)||et(e))}(e,t,Dn)}(n,e):hn(t,r,3)}}(e[0],e[1]):function(e){var t=function(e){for(var t=Tt(e),n=t.length;n--;){var r=t[n],a=e[r];t[n]=[r,a,gn(a)]}return t}(e);return 1==t.length &amp;&amp;t[0][2]?vn(t[0][0],t[0][1]):function(n){return n===e||function(e,t,n,r){var a=n.length,o=a;if(null==e)return!o;for(e=Object(e);a--;){var i=n[a];if(i[2]?i[1]!==e[i[0]]:!(i[0]in e))return!1}for(;++a &lt;o;){var l=(i=n[a])[0],s=e[l],c=i[1];if(i[2]){if(void 0===s &amp;&amp;!(l in e))return!1}else{var u=new Ut;if(!hn(c,s,3,void 0,u))return!1}}return!0}(n,0,t)}}(e):Tn(t=e)?(n=Pn(t),function(e){return null==e?void 0:e[n]}):function(e){return function(t){return Mn(t,e)}}(t);var t,n};function Fn({file:e,lineNumber:t=1}){const{ignitionConfig:n}=c.useContext(Te),r=n.editor,a=function(e,t){var n={};return t=jn(t),function(e,t){e &amp;&amp;function(e,t,n){for(var r=-1,a=Object(e),o=n(e),i=o.length;i--;){var l=o[++r];if(!1===t(a[l],l,a))break}}(e,t,Tt)}(e,function(e,r,a){Xe(n,r,t(e,r,a))}),n}(n.editorOptions,e=&gt;e.url);return e=(n.remoteSitesPath||&quot;&quot;).length &gt;0 &amp;&amp;(n.localSitesPath||&quot;&quot;).length &gt;0?e.replace(n.remoteSitesPath,n.localSitesPath):e,Object.keys(a).includes(r)?a[r].replace(&quot;%path &quot;,encodeURIComponent(e)).replace(&quot;%line &quot;,encodeURIComponent(t)):(console.warn(`Editor &#039;${r}&#039;is not supported. Support editors are: ${Object.keys(a).join(&quot;, &quot;)}`),null)}function zn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Hn(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?zn(Object(n),!0).forEach(function(t){Vn(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):zn(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Bn(e){return(Bn=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Vn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Wn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:&quot;undefined &quot;!=typeof Symbol &amp;&amp;e[Symbol.iterator]||e[&quot;@@iterator &quot;];if(null!=n){var r,a,o=[],i=!0,l=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&amp;&amp;(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){l=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(l)throw a}}return o}}(e,t)||Yn(e,t)||function(){throw new TypeError(&quot;Invalid attempt to destructure non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Gn(e){return function(e){if(Array.isArray(e))return $n(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||Yn(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Yn(e,t){if(e){if(&quot;string &quot;==typeof e)return $n(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?$n(e,t):void 0}}function $n(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}var Xn=function(){},Kn={},qn={},Jn=null,Qn={mark:Xn,measure:Xn};try{&quot;undefined &quot;!=typeof window &amp;&amp;(Kn=window),&quot;undefined &quot;!=typeof document &amp;&amp;(qn=document),&quot;undefined &quot;!=typeof MutationObserver &amp;&amp;(Jn=MutationObserver),&quot;undefined &quot;!=typeof performance &amp;&amp;(Qn=performance)}catch(Ro){}var Zn=(Kn.navigator||{}).userAgent,er=void 0===Zn?&quot;&quot;:Zn,tr=Kn,nr=qn,rr=Jn,ar=Qn,or=!!nr.documentElement &amp;&amp;!!nr.head &amp;&amp;&quot;function &quot;==typeof nr.addEventListener &amp;&amp;&quot;function &quot;==typeof nr.createElement,ir=~er.indexOf(&quot;MSIE &quot;)||~er.indexOf(&quot;Trident/&quot;),lr=[&quot;HTML &quot;,&quot;HEAD &quot;,&quot;STYLE &quot;,&quot;SCRIPT &quot;],sr=function(){try{return!0}catch(e){return!1}}(),cr={fas:&quot;solid &quot;,&quot;fa-solid &quot;:&quot;solid &quot;,far:&quot;regular &quot;,&quot;fa-regular &quot;:&quot;regular &quot;,fal:&quot;light &quot;,&quot;fa-light &quot;:&quot;light &quot;,fat:&quot;thin &quot;,&quot;fa-thin &quot;:&quot;thin &quot;,fad:&quot;duotone &quot;,&quot;fa-duotone &quot;:&quot;duotone &quot;,fab:&quot;brands &quot;,&quot;fa-brands &quot;:&quot;brands &quot;,fak:&quot;kit &quot;,&quot;fa-kit &quot;:&quot;kit &quot;,fa:&quot;solid &quot;},ur={solid:&quot;fas &quot;,regular:&quot;far &quot;,light:&quot;fal &quot;,thin:&quot;fat &quot;,duotone:&quot;fad &quot;,brands:&quot;fab &quot;,kit:&quot;fak &quot;},fr={fab:&quot;fa-brands &quot;,fad:&quot;fa-duotone &quot;,fak:&quot;fa-kit &quot;,fal:&quot;fa-light &quot;,far:&quot;fa-regular &quot;,fas:&quot;fa-solid &quot;,fat:&quot;fa-thin &quot;},dr={&quot;fa-brands &quot;:&quot;fab &quot;,&quot;fa-duotone &quot;:&quot;fad &quot;,&quot;fa-kit &quot;:&quot;fak &quot;,&quot;fa-light &quot;:&quot;fal &quot;,&quot;fa-regular &quot;:&quot;far &quot;,&quot;fa-solid &quot;:&quot;fas &quot;,&quot;fa-thin &quot;:&quot;fat &quot;},pr=/fa[srltdbk\-\ ]/,mr=/Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Kit)?.*/i,hr={900:&quot;fas &quot;,400:&quot;far &quot;,normal:&quot;far &quot;,300:&quot;fal &quot;,100:&quot;fat &quot;},gr=[1,2,3,4,5,6,7,8,9,10],vr=gr.concat([11,12,13,14,15,16,17,18,19,20]),yr=[&quot;class &quot;,&quot;data-prefix &quot;,&quot;data-icon &quot;,&quot;data-fa-transform &quot;,&quot;data-fa-mask &quot;],Er=[].concat(Gn(Object.keys(ur)),[&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;beat &quot;,&quot;border &quot;,&quot;fade &quot;,&quot;beat-fade &quot;,&quot;bounce &quot;,&quot;flip-both &quot;,&quot;flip-horizontal &quot;,&quot;flip-vertical &quot;,&quot;flip &quot;,&quot;fw &quot;,&quot;inverse &quot;,&quot;layers-counter &quot;,&quot;layers-text &quot;,&quot;layers &quot;,&quot;li &quot;,&quot;pull-left &quot;,&quot;pull-right &quot;,&quot;pulse &quot;,&quot;rotate-180 &quot;,&quot;rotate-270 &quot;,&quot;rotate-90 &quot;,&quot;rotate-by &quot;,&quot;shake &quot;,&quot;spin-pulse &quot;,&quot;spin-reverse &quot;,&quot;spin &quot;,&quot;stack-1x &quot;,&quot;stack-2x &quot;,&quot;stack &quot;,&quot;ul &quot;,&quot;duotone-group &quot;,&quot;swap-opacity &quot;,&quot;primary &quot;,&quot;secondary &quot;]).concat(gr.map(function(e){return &quot;&quot;.concat(e,&quot;x &quot;)})).concat(vr.map(function(e){return &quot;w-&quot;.concat(e)})),br=tr.FontAwesomeConfig||{};nr &amp;&amp;&quot;function &quot;==typeof nr.querySelector &amp;&amp;[[&quot;data-family-prefix &quot;,&quot;familyPrefix &quot;],[&quot;data-style-default &quot;,&quot;styleDefault &quot;],[&quot;data-replacement-class &quot;,&quot;replacementClass &quot;],[&quot;data-auto-replace-svg &quot;,&quot;autoReplaceSvg &quot;],[&quot;data-auto-add-css &quot;,&quot;autoAddCss &quot;],[&quot;data-auto-a11y &quot;,&quot;autoA11y &quot;],[&quot;data-search-pseudo-elements &quot;,&quot;searchPseudoElements &quot;],[&quot;data-observe-mutations &quot;,&quot;observeMutations &quot;],[&quot;data-mutate-approach &quot;,&quot;mutateApproach &quot;],[&quot;data-keep-original-source &quot;,&quot;keepOriginalSource &quot;],[&quot;data-measure-performance &quot;,&quot;measurePerformance &quot;],[&quot;data-show-missing-icons &quot;,&quot;showMissingIcons &quot;]].forEach(function(e){var t=Wn(e,2),n=t[1],r=function(e){return &quot;&quot;===e||&quot;false &quot;!==e &amp;&amp;(&quot;true &quot;===e||e)}(function(e){var t=nr.querySelector(&quot;script[&quot;+e+&quot;]&quot;);if(t)return t.getAttribute(e)}(t[0]));null!=r &amp;&amp;(br[n]=r)});var Tr=Hn(Hn({},{familyPrefix:&quot;fa &quot;,styleDefault:&quot;solid &quot;,replacementClass:&quot;svg-inline--fa &quot;,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:&quot;async &quot;,keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0}),br);Tr.autoReplaceSvg||(Tr.observeMutations=!1);var Nr={};Object.keys(Tr).forEach(function(e){Object.defineProperty(Nr,e,{enumerable:!0,set:function(t){Tr[e]=t,Rr.forEach(function(e){return e(Nr)})},get:function(){return Tr[e]}})}),tr.FontAwesomeConfig=Nr;var Rr=[],Sr={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function wr(){for(var e=12,t=&quot;&quot;;e-- &gt;0;)t+=&quot;0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ &quot;[62*Math.random()|0];return t}function Or(e){for(var t=[],n=(e||[]).length &gt;&gt;&gt;0;n--;)t[n]=e[n];return t}function Cr(e){return e.classList?Or(e.classList):(e.getAttribute(&quot;class &quot;)||&quot;&quot;).split(&quot;&quot;).filter(function(e){return e})}function Ar(e){return &quot;&quot;.concat(e).replace(/&amp;/g,&quot;&amp;amp;&quot;).replace(/&quot;/g,&quot;&amp;quot;&quot;).replace(/&#039;/g,&quot;&amp;#39;&quot;).replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;)}function Ir(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&quot;: &quot;).concat(e[n].trim(),&quot;;&quot;)},&quot;&quot;)}function kr(e){return e.size!==Sr.size||e.x!==Sr.x||e.y!==Sr.y||e.rotate!==Sr.rotate||e.flipX||e.flipY}function xr(){var e=&quot;fa &quot;,t=&quot;svg-inline--fa &quot;,n=Nr.familyPrefix,r=Nr.replacementClass,a=&#039;:root, :host {
  --fa-font-solid: normal 900 1em/1 &quot;Font Awesome 6 Solid &quot;;
  --fa-font-regular: normal 400 1em/1 &quot;Font Awesome 6 Regular &quot;;
  --fa-font-light: normal 300 1em/1 &quot;Font Awesome 6 Light &quot;;
  --fa-font-thin: normal 100 1em/1 &quot;Font Awesome 6 Thin &quot;;
  --fa-font-duotone: normal 900 1em/1 &quot;Font Awesome 6 Duotone &quot;;
  --fa-font-brands: normal 400 1em/1 &quot;Font Awesome 6 Brands &quot;;
}

svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
  overflow: visible;
  box-sizing: content-box;
}

.svg-inline--fa {
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.svg-inline--fa.fa-2xs {
  vertical-align: 0.1em;
}
.svg-inline--fa.fa-xs {
  vertical-align: 0em;
}
.svg-inline--fa.fa-sm {
  vertical-align: -0.0714285705em;
}
.svg-inline--fa.fa-lg {
  vertical-align: -0.2em;
}
.svg-inline--fa.fa-xl {
  vertical-align: -0.25em;
}
.svg-inline--fa.fa-2xl {
  vertical-align: -0.3125em;
}
.svg-inline--fa.fa-pull-left {
  margin-right: var(--fa-pull-margin, 0.3em);
  width: auto;
}
.svg-inline--fa.fa-pull-right {
  margin-left: var(--fa-pull-margin, 0.3em);
  width: auto;
}
.svg-inline--fa.fa-li {
  width: var(--fa-li-width, 2em);
  top: 0.25em;
}
.svg-inline--fa.fa-fw {
  width: var(--fa-fw-width, 1.25em);
}

.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.fa-layers-counter, .fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}
.fa-layers svg.svg-inline--fa {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.fa-layers-text {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.fa-layers-counter {
  background-color: var(--fa-counter-background-color, #ff253a);
  border-radius: var(--fa-counter-border-radius, 1em);
  box-sizing: border-box;
  color: var(--fa-inverse, #fff);
  line-height: var(--fa-counter-line-height, 1);
  max-width: var(--fa-counter-max-width, 5em);
  min-width: var(--fa-counter-min-width, 1.5em);
  overflow: hidden;
  padding: var(--fa-counter-padding, 0.25em 0.5em);
  right: var(--fa-right, 0);
  text-overflow: ellipsis;
  top: var(--fa-top, 0);
  -webkit-transform: scale(var(--fa-counter-scale, 0.25));
          transform: scale(var(--fa-counter-scale, 0.25));
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.fa-layers-bottom-right {
  bottom: var(--fa-bottom, 0);
  right: var(--fa-right, 0);
  top: auto;
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: var(--fa-bottom, 0);
  left: var(--fa-left, 0);
  right: auto;
  top: auto;
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.fa-layers-top-right {
  top: var(--fa-top, 0);
  right: var(--fa-right, 0);
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.fa-layers-top-left {
  left: var(--fa-left, 0);
  right: auto;
  top: var(--fa-top, 0);
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul &gt;li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  -webkit-animation-name: fa-bounce;
          animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  -webkit-animation-name: fa-fade;
          animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
          animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  -webkit-animation-name: fa-flip;
          animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  -webkit-animation-name: fa-shake;
          animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
          animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
          animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
.fa-bounce,
.fa-fade,
.fa-beat-fade,
.fa-flip,
.fa-pulse,
.fa-shake,
.fa-spin,
.fa-spin-pulse {
    -webkit-animation-delay: -1ms;
            animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
            animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.fa-flip-horizontal {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.fa-flip-vertical {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, none));
          transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  vertical-align: middle;
  height: 2em;
  position: relative;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: var(--fa-stack-z-index, auto);
}

.svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em;
}
.svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill: black;
}

.fad.fa-inverse,
.fa-duotone.fa-inverse {
  color: var(--fa-inverse, #fff);
}&#039;;if(n!==e||r!==t){var o=new RegExp(&quot;\.&quot;.concat(e,&quot;\-&quot;),&quot;g &quot;),i=new RegExp(&quot;\--&quot;.concat(e,&quot;\-&quot;),&quot;g &quot;),l=new RegExp(&quot;\.&quot;.concat(t),&quot;g &quot;);a=a.replace(o,&quot;.&quot;.concat(n,&quot;-&quot;)).replace(i,&quot;--&quot;.concat(n,&quot;-&quot;)).replace(l,&quot;.&quot;.concat(r))}return a}var _r=!1;function Lr(){Nr.autoAddCss &amp;&amp;!_r &amp;&amp;(function(e){if(e &amp;&amp;or){var t=nr.createElement(&quot;style &quot;);t.setAttribute(&quot;type &quot;,&quot;text/css &quot;),t.innerHTML=e;for(var n=nr.head.childNodes,r=null,a=n.length-1;a &gt;-1;a--){var o=n[a],i=(o.tagName||&quot;&quot;).toUpperCase();[&quot;STYLE &quot;,&quot;LINK &quot;].indexOf(i)&gt;-1 &amp;&amp;(r=o)}nr.head.insertBefore(t,r)}}(xr()),_r=!0)}var Pr={mixout:function(){return{dom:{css:xr,insertCss:Lr}}},hooks:function(){return{beforeDOMElementCreation:function(){Lr()},beforeI2svg:function(){Lr()}}}},Mr=tr||{};Mr.___FONT_AWESOME___||(Mr.___FONT_AWESOME___={}),Mr.___FONT_AWESOME___.styles||(Mr.___FONT_AWESOME___.styles={}),Mr.___FONT_AWESOME___.hooks||(Mr.___FONT_AWESOME___.hooks={}),Mr.___FONT_AWESOME___.shims||(Mr.___FONT_AWESOME___.shims=[]);var Dr=Mr.___FONT_AWESOME___,Ur=[],jr=!1;function Fr(e){or &amp;&amp;(jr?setTimeout(e,0):Ur.push(e))}function zr(e){var t=e.tag,n=e.attributes,r=void 0===n?{}:n,a=e.children,o=void 0===a?[]:a;return &quot;string &quot;==typeof e?Ar(e):&quot;&lt;&quot;.concat(t,&quot;&quot;).concat(function(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&#039;=&quot;&#039;).concat(Ar(e[n]),&#039;&quot;&#039;)},&quot;&quot;).trim()}(r),&quot;&gt;&quot;).concat(o.map(zr).join(&quot;&quot;),&quot;&lt;/&quot;).concat(t,&quot;&gt;&quot;)}function Hr(e,t,n){if(e &amp;&amp;e[t]&amp;&amp;e[t][n])return{prefix:t,iconName:n,icon:e[t][n]}}or &amp;&amp;((jr=(nr.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(nr.readyState))||nr.addEventListener(&quot;DOMContentLoaded &quot;,function e(){nr.removeEventListener(&quot;DOMContentLoaded &quot;,e),jr=1,Ur.map(function(e){return e()})}));var Br=function(e,t,n,r){var a,o,i,l=Object.keys(e),s=l.length,c=void 0!==r?function(e,t){return function(n,r,a,o){return e.call(t,n,r,a,o)}}(t,r):t;for(void 0===n?(a=1,i=e[l[0]]):(a=0,i=n);a &lt;s;a++)i=c(i,e[o=l[a]],o,e);return i};function Vr(e){var t=function(e){for(var t=[],n=0,r=e.length;n &lt;r;){var a=e.charCodeAt(n++);if(a &gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;n &lt;r){var o=e.charCodeAt(n++);56320==(64512 &amp;o)?t.push(((1023 &amp;a)&lt;&lt;10)+(1023 &amp;o)+65536):(t.push(a),n--)}else t.push(a)}return t}(e);return 1===t.length?t[0].toString(16):null}function Wr(e){return Object.keys(e).reduce(function(t,n){var r=e[n];return r.icon?t[r.iconName]=r.icon:t[n]=r,t},{})}function Gr(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{},r=n.skipHooks,a=void 0!==r &amp;&amp;r,o=Wr(t);&quot;function &quot;!=typeof Dr.hooks.addPack||a?Dr.styles[e]=Hn(Hn({},Dr.styles[e]||{}),o):Dr.hooks.addPack(e,Wr(t)),&quot;fas &quot;===e &amp;&amp;Gr(&quot;fa &quot;,t)}var Yr=Dr.styles,$r=Dr.shims,Xr=Object.values(fr),Kr=null,qr={},Jr={},Qr={},Zr={},ea={},ta=Object.keys(cr);function na(e,t){var n=t.split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);return r!==e||&quot;&quot;===a||~Er.indexOf(a)?null:a}var ra=function(){var e=function(e){return Br(Yr,function(t,n,r){return t[r]=Br(n,e,{}),t},{})};qr=e(function(e,t,n){return t[3]&amp;&amp;(e[t[3]]=n),t[2]&amp;&amp;t[2].filter(function(e){return &quot;number &quot;==typeof e}).forEach(function(t){e[t.toString(16)]=n}),e}),Jr=e(function(e,t,n){return e[n]=n,t[2]&amp;&amp;t[2].filter(function(e){return &quot;string &quot;==typeof e}).forEach(function(t){e[t]=n}),e}),ea=e(function(e,t,n){var r=t[2];return e[n]=n,r.forEach(function(t){e[t]=n}),e});var t=&quot;far &quot;in Yr||Nr.autoFetchSvg,n=Br($r,function(e,n){var r=n[0],a=n[1],o=n[2];return &quot;far &quot;!==a||t||(a=&quot;fas &quot;),&quot;string &quot;==typeof r &amp;&amp;(e.names[r]={prefix:a,iconName:o}),&quot;number &quot;==typeof r &amp;&amp;(e.unicodes[r.toString(16)]={prefix:a,iconName:o}),e},{names:{},unicodes:{}});Qr=n.names,Zr=n.unicodes,Kr=sa(Nr.styleDefault)};function aa(e,t){return(qr[e]||{})[t]}function oa(e,t){return(ea[e]||{})[t]}function ia(e){return Qr[e]||{prefix:null,iconName:null}}function la(){return Kr}function sa(e){return ur[e]||ur[cr[e]]||(e in Dr.styles?e:null)||null}function ca(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.skipLookups,r=void 0!==n &amp;&amp;n,a=null,o=e.reduce(function(e,t){var n=na(Nr.familyPrefix,t);if(Yr[t]?(t=Xr.includes(t)?dr[t]:t,a=t,e.prefix=t):ta.indexOf(t)&gt;-1?(a=t,e.prefix=sa(t)):n?e.iconName=n:t!==Nr.replacementClass &amp;&amp;e.rest.push(t),!r &amp;&amp;e.prefix &amp;&amp;e.iconName){var o=&quot;fa &quot;===a?ia(e.iconName):{},i=oa(e.prefix,e.iconName);o.prefix &amp;&amp;(a=null),e.iconName=o.iconName||i||e.iconName,e.prefix=o.prefix||e.prefix,&quot;far &quot;!==e.prefix||Yr.far||!Yr.fas||Nr.autoFetchSvg||(e.prefix=&quot;fas &quot;)}return e},{prefix:null,iconName:null,rest:[]});return &quot;fa &quot;!==o.prefix &amp;&amp;&quot;fa &quot;!==a||(o.prefix=la()||&quot;fas &quot;),o}Rr.push(function(e){Kr=sa(e.styleDefault)}),ra();var ua=/*#__PURE__*/function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.definitions={}}var t,n;return t=e,(n=[{key:&quot;add &quot;,value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r &lt;t;r++)n[r]=arguments[r];var a=n.reduce(this._pullDefinitions,{});Object.keys(a).forEach(function(t){e.definitions[t]=Hn(Hn({},e.definitions[t]||{}),a[t]),Gr(t,a[t]);var n=fr[t];n &amp;&amp;Gr(n,a[t]),ra()})}},{key:&quot;reset &quot;,value:function(){this.definitions={}}},{key:&quot;_pullDefinitions &quot;,value:function(e,t){var n=t.prefix &amp;&amp;t.iconName &amp;&amp;t.icon?{0:t}:t;return Object.keys(n).map(function(t){var r=n[t],a=r.prefix,o=r.iconName,i=r.icon,l=i[2];e[a]||(e[a]={}),l.length &gt;0 &amp;&amp;l.forEach(function(t){&quot;string &quot;==typeof t &amp;&amp;(e[a][t]=i)}),e[a][o]=i}),e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(t.prototype,n),Object.defineProperty(t,&quot;prototype &quot;,{writable:!1}),e}(),fa=[],da={},pa={},ma=Object.keys(pa);function ha(e,t){for(var n=arguments.length,r=new Array(n &gt;2?n-2:0),a=2;a &lt;n;a++)r[a-2]=arguments[a];var o=da[e]||[];return o.forEach(function(e){t=e.apply(null,[t].concat(r))}),t}function ga(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];var a=da[e]||[];a.forEach(function(e){e.apply(null,n)})}function va(){var e=arguments[0],t=Array.prototype.slice.call(arguments,1);return pa[e]?pa[e].apply(null,t):void 0}function ya(e){&quot;fa &quot;===e.prefix &amp;&amp;(e.prefix=&quot;fas &quot;);var t=e.iconName,n=e.prefix||la();if(t)return t=oa(n,t)||t,Hr(Ea.definitions,n,t)||Hr(Dr.styles,n,t)}var Ea=new ua,ba={i2svg:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{};return or?(ga(&quot;beforeI2svg &quot;,e),va(&quot;pseudoElements2svg &quot;,e),va(&quot;i2svg &quot;,e)):Promise.reject(&quot;Operation requires a DOM of some kind.&quot;)},watch:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot;!1===Nr.autoReplaceSvg &amp;&amp;(Nr.autoReplaceSvg=!0),Nr.observeMutations=!0,Fr(function(){Na({autoReplaceSvgRoot:t}),ga(&quot;watch &quot;,e)})}},Ta={noAuto:function(){Nr.autoReplaceSvg=!1,Nr.observeMutations=!1,ga(&quot;noAuto &quot;)},config:Nr,dom:ba,parse:{icon:function(e){if(null===e)return null;if(&quot;object &quot;===Bn(e)&amp;&amp;e.prefix &amp;&amp;e.iconName)return{prefix:e.prefix,iconName:oa(e.prefix,e.iconName)||e.iconName};if(Array.isArray(e)&amp;&amp;2===e.length){var t=0===e[1].indexOf(&quot;fa-&quot;)?e[1].slice(3):e[1],n=sa(e[0]);return{prefix:n,iconName:oa(n,t)||t}}if(&quot;string &quot;==typeof e &amp;&amp;(e.indexOf(&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;))&gt;-1||e.match(pr))){var r=ca(e.split(&quot;&quot;),{skipLookups:!0});return{prefix:r.prefix||la(),iconName:oa(r.prefix,r.iconName)||r.iconName}}if(&quot;string &quot;==typeof e){var a=la();return{prefix:a,iconName:oa(a,e)||e}}}},library:Ea,findIconDefinition:ya,toHtml:zr},Na=function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot,n=void 0===t?nr:t;(Object.keys(Dr.styles).length &gt;0||Nr.autoFetchSvg)&amp;&amp;or &amp;&amp;Nr.autoReplaceSvg &amp;&amp;Ta.dom.i2svg({node:n})};function Ra(e,t){return Object.defineProperty(e,&quot;abstract &quot;,{get:t}),Object.defineProperty(e,&quot;html &quot;,{get:function(){return e.abstract.map(function(e){return zr(e)})}}),Object.defineProperty(e,&quot;node &quot;,{get:function(){if(or){var t=nr.createElement(&quot;div &quot;);return t.innerHTML=e.html,t.children}}}),e}function Sa(e){var t=e.icons,n=t.main,r=t.mask,a=e.prefix,o=e.iconName,i=e.transform,l=e.symbol,s=e.title,c=e.maskId,u=e.titleId,f=e.extra,d=e.watchable,p=void 0!==d &amp;&amp;d,m=r.found?r:n,h=m.width,g=m.height,v=&quot;fak &quot;===a,y=[Nr.replacementClass,o?&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(o):&quot;&quot;].filter(function(e){return-1===f.classes.indexOf(e)}).filter(function(e){return &quot;&quot;!==e||!!e}).concat(f.classes).join(&quot;&quot;),E={children:[],attributes:Hn(Hn({},f.attributes),{},{&quot;data-prefix &quot;:a,&quot;data-icon &quot;:o,class:y,role:f.attributes.role||&quot;img &quot;,xmlns:&quot;http://www.w3.org/2000/svg &quot;,viewBox:&quot;0 0 &quot;.concat(h,&quot;&quot;).concat(g)})},b=v &amp;&amp;!~f.classes.indexOf(&quot;fa-fw &quot;)?{width:&quot;&quot;.concat(h/g*16*.0625,&quot;em &quot;)}:{};p &amp;&amp;(E.attributes[&quot;data-fa-i2svg &quot;]=&quot;&quot;),s &amp;&amp;(E.children.push({tag:&quot;title &quot;,attributes:{id:E.attributes[&quot;aria-labelledby &quot;]||&quot;title-&quot;.concat(u||wr())},children:[s]}),delete E.attributes.title);var T=Hn(Hn({},E),{},{prefix:a,iconName:o,main:n,mask:r,maskId:c,transform:i,symbol:l,styles:Hn(Hn({},b),f.styles)}),N=r.found &amp;&amp;n.found?va(&quot;generateAbstractMask &quot;,T)||{children:[],attributes:{}}:va(&quot;generateAbstractIcon &quot;,T)||{children:[],attributes:{}},R=N.attributes;return T.children=N.children,T.attributes=R,l?function(e){var t=e.iconName,n=e.children,r=e.attributes,a=e.symbol,o=!0===a?&quot;&quot;.concat(e.prefix,&quot;-&quot;).concat(Nr.familyPrefix,&quot;-&quot;).concat(t):a;return[{tag:&quot;svg &quot;,attributes:{style:&quot;display: none;&quot;},children:[{tag:&quot;symbol &quot;,attributes:Hn(Hn({},r),{},{id:o}),children:n}]}]}(T):function(e){var t=e.children,n=e.main,r=e.mask,a=e.attributes,o=e.styles,i=e.transform;if(kr(i)&amp;&amp;n.found &amp;&amp;!r.found){var l={x:n.width/n.height/2,y:.5};a.style=Ir(Hn(Hn({},o),{},{&quot;transform-origin &quot;:&quot;&quot;.concat(l.x+i.x/16,&quot;em &quot;).concat(l.y+i.y/16,&quot;em &quot;)}))}return[{tag:&quot;svg &quot;,attributes:a,children:t}]}(T)}function wa(e){var t=e.content,n=e.width,r=e.height,a=e.transform,o=e.title,i=e.extra,l=e.watchable,s=void 0!==l &amp;&amp;l,c=Hn(Hn(Hn({},i.attributes),o?{title:o}:{}),{},{class:i.classes.join(&quot;&quot;)});s &amp;&amp;(c[&quot;data-fa-i2svg &quot;]=&quot;&quot;);var u=Hn({},i.styles);kr(a)&amp;&amp;(u.transform=function(e){var t=e.transform,n=e.width,r=e.height,a=void 0===r?16:r,o=e.startCentered,i=void 0!==o &amp;&amp;o,l=&quot;&quot;;return l+=i &amp;&amp;ir?&quot;translate(&quot;.concat(t.x/16-(void 0===n?16:n)/2,&quot;em, &quot;).concat(t.y/16-a/2,&quot;em) &quot;):i?&quot;translate(calc(-50% + &quot;.concat(t.x/16,&quot;em), calc(-50% + &quot;).concat(t.y/16,&quot;em)) &quot;):&quot;translate(&quot;.concat(t.x/16,&quot;em, &quot;).concat(t.y/16,&quot;em) &quot;),(l+=&quot;scale(&quot;.concat(t.size/16*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/16*(t.flipY?-1:1),&quot;) &quot;))+&quot;rotate(&quot;.concat(t.rotate,&quot;deg) &quot;)}({transform:a,startCentered:!0,width:n,height:r}),u[&quot;-webkit-transform &quot;]=u.transform);var f=Ir(u);f.length &gt;0 &amp;&amp;(c.style=f);var d=[];return d.push({tag:&quot;span &quot;,attributes:c,children:[t]}),o &amp;&amp;d.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[o]}),d}function Oa(e){var t=e.content,n=e.title,r=e.extra,a=Hn(Hn(Hn({},r.attributes),n?{title:n}:{}),{},{class:r.classes.join(&quot;&quot;)}),o=Ir(r.styles);o.length &gt;0 &amp;&amp;(a.style=o);var i=[];return i.push({tag:&quot;span &quot;,attributes:a,children:[t]}),n &amp;&amp;i.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[n]}),i}var Ca=Dr.styles;function Aa(e){var t=e[0],n=e[1],r=Wn(e.slice(4),1)[0];return{found:!0,width:t,height:n,icon:Array.isArray(r)?{tag:&quot;g &quot;,attributes:{class:&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(&quot;duotone-group &quot;)},children:[{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(&quot;secondary &quot;),fill:&quot;currentColor &quot;,d:r[0]}},{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(&quot;primary &quot;),fill:&quot;currentColor &quot;,d:r[1]}}]}:{tag:&quot;path &quot;,attributes:{fill:&quot;currentColor &quot;,d:r}}}}var Ia={found:!1,width:512,height:512};function ka(e,t){var n=t;return &quot;fa &quot;===t &amp;&amp;null!==Nr.styleDefault &amp;&amp;(t=la()),new Promise(function(r,a){if(va(&quot;missingIconAbstract &quot;),&quot;fa &quot;===n){var o=ia(e)||{};e=o.iconName||e,t=o.prefix||t}if(e &amp;&amp;t &amp;&amp;Ca[t]&amp;&amp;Ca[t][e])return r(Aa(Ca[t][e]));!function(e,t){sr||Nr.showMissingIcons||!e||console.error(&#039;Icon with name &quot;&#039;.concat(e,&#039;&quot;and prefix &quot;&#039;).concat(t,&#039;&quot;is missing.&#039;))}(e,t),r(Hn(Hn({},Ia),{},{icon:Nr.showMissingIcons &amp;&amp;e &amp;&amp;va(&quot;missingIconAbstract &quot;)||{}}))})}var xa=function(){},_a=Nr.measurePerformance &amp;&amp;ar &amp;&amp;ar.mark &amp;&amp;ar.measure?ar:{mark:xa,measure:xa},La=function(e){return _a.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;)),function(){return function(e){_a.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;)),_a.measure(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;))}(e)}},Pa=function(){};function Ma(e){return &quot;string &quot;==typeof(e.getAttribute?e.getAttribute(&quot;data-fa-i2svg &quot;):null)}function Da(e){return nr.createElementNS(&quot;http://www.w3.org/2000/svg &quot;,e)}function Ua(e){return nr.createElement(e)}function ja(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.ceFn,r=void 0===n?&quot;svg &quot;===e.tag?Da:Ua:n;if(&quot;string &quot;==typeof e)return nr.createTextNode(e);var a=r(e.tag);Object.keys(e.attributes||[]).forEach(function(t){a.setAttribute(t,e.attributes[t])});var o=e.children||[];return o.forEach(function(e){a.appendChild(ja(e,{ceFn:r}))}),a}var Fa={replace:function(e){var t=e[0];if(t.parentNode)if(e[1].forEach(function(e){t.parentNode.insertBefore(ja(e),t)}),null===t.getAttribute(&quot;data-fa-i2svg &quot;)&amp;&amp;Nr.keepOriginalSource){var n=nr.createComment(function(e){var t=&quot;&quot;.concat(e.outerHTML,&quot;&quot;);return &quot;&quot;.concat(t,&quot;Font Awesome fontawesome.com &quot;)}(t));t.parentNode.replaceChild(n,t)}else t.remove()},nest:function(e){var t=e[0],n=e[1];if(~Cr(t).indexOf(Nr.replacementClass))return Fa.replace(e);var r=new RegExp(&quot;&quot;.concat(Nr.familyPrefix,&quot;-.*&quot;));if(delete n[0].attributes.id,n[0].attributes.class){var a=n[0].attributes.class.split(&quot;&quot;).reduce(function(e,t){return t===Nr.replacementClass||t.match(r)?e.toSvg.push(t):e.toNode.push(t),e},{toNode:[],toSvg:[]});n[0].attributes.class=a.toSvg.join(&quot;&quot;),0===a.toNode.length?t.removeAttribute(&quot;class &quot;):t.setAttribute(&quot;class &quot;,a.toNode.join(&quot;&quot;))}var o=n.map(function(e){return zr(e)}).join(&quot;
 &quot;);t.setAttribute(&quot;data-fa-i2svg &quot;,&quot;&quot;),t.innerHTML=o}};function za(e){e()}function Ha(e,t){var n=&quot;function &quot;==typeof t?t:Pa;if(0===e.length)n();else{var r=za;&quot;async &quot;===Nr.mutateApproach &amp;&amp;(r=tr.requestAnimationFrame||za),r(function(){var t=!0===Nr.autoReplaceSvg?Fa.replace:Fa[Nr.autoReplaceSvg]||Fa.replace,r=La(&quot;mutate &quot;);e.map(t),r(),n()})}}var Ba=!1;function Va(){Ba=!0}function Wa(){Ba=!1}var Ga=null;function Ya(e){if(rr &amp;&amp;Nr.observeMutations){var t=e.treeCallback,n=void 0===t?Pa:t,r=e.nodeCallback,a=void 0===r?Pa:r,o=e.pseudoElementsCallback,i=void 0===o?Pa:o,l=e.observeMutationsRoot,s=void 0===l?nr:l;Ga=new rr(function(e){if(!Ba){var t=la();Or(e).forEach(function(e){if(&quot;childList &quot;===e.type &amp;&amp;e.addedNodes.length &gt;0 &amp;&amp;!Ma(e.addedNodes[0])&amp;&amp;(Nr.searchPseudoElements &amp;&amp;i(e.target),n(e.target)),&quot;attributes &quot;===e.type &amp;&amp;e.target.parentNode &amp;&amp;Nr.searchPseudoElements &amp;&amp;i(e.target.parentNode),&quot;attributes &quot;===e.type &amp;&amp;Ma(e.target)&amp;&amp;~yr.indexOf(e.attributeName))if(&quot;class &quot;===e.attributeName &amp;&amp;function(e){var t=e.getAttribute?e.getAttribute(&quot;data-prefix &quot;):null,n=e.getAttribute?e.getAttribute(&quot;data-icon &quot;):null;return t &amp;&amp;n}(e.target)){var r=ca(Cr(e.target)),o=r.iconName;e.target.setAttribute(&quot;data-prefix &quot;,r.prefix||t),o &amp;&amp;e.target.setAttribute(&quot;data-icon &quot;,o)}else(function(e){return e &amp;&amp;e.classList &amp;&amp;e.classList.contains &amp;&amp;e.classList.contains(Nr.replacementClass)})(e.target)&amp;&amp;a(e.target)})}}),or &amp;&amp;Ga.observe(s,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function $a(e){var t=e.getAttribute(&quot;style &quot;),n=[];return t &amp;&amp;(n=t.split(&quot;;&quot;).reduce(function(e,t){var n=t.split(&quot;:&quot;),r=n[0],a=n.slice(1);return r &amp;&amp;a.length &gt;0 &amp;&amp;(e[r]=a.join(&quot;:&quot;).trim()),e},{})),n}function Xa(e){var t=e.getAttribute(&quot;data-prefix &quot;),n=e.getAttribute(&quot;data-icon &quot;),r=void 0!==e.innerText?e.innerText.trim():&quot;&quot;,a=ca(Cr(e));return a.prefix||(a.prefix=la()),t &amp;&amp;n &amp;&amp;(a.prefix=t,a.iconName=n),a.iconName &amp;&amp;a.prefix||a.prefix &amp;&amp;r.length &gt;0 &amp;&amp;(a.iconName=(Jr[a.prefix]||{})[e.innerText]||aa(a.prefix,Vr(e.innerText))),a}function Ka(e){var t=Or(e.attributes).reduce(function(e,t){return &quot;class &quot;!==e.name &amp;&amp;&quot;style &quot;!==e.name &amp;&amp;(e[t.name]=t.value),e},{}),n=e.getAttribute(&quot;title &quot;),r=e.getAttribute(&quot;data-fa-title-id &quot;);return Nr.autoA11y &amp;&amp;(n?t[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(Nr.replacementClass,&quot;-title-&quot;).concat(r||wr()):(t[&quot;aria-hidden &quot;]=&quot;true &quot;,t.focusable=&quot;false &quot;)),t}function qa(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{styleParser:!0},n=Xa(e),r=n.iconName,a=n.prefix,o=n.rest,i=Ka(e),l=ha(&quot;parseNodeAttributes &quot;,{},e),s=t.styleParser?$a(e):[];return Hn({iconName:r,title:e.getAttribute(&quot;title &quot;),titleId:e.getAttribute(&quot;data-fa-title-id &quot;),prefix:a,transform:Sr,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:o,styles:s,attributes:i}},l)}var Ja=Dr.styles;function Qa(e){var t=&quot;nest &quot;===Nr.autoReplaceSvg?qa(e,{styleParser:!1}):qa(e);return~t.extra.classes.indexOf(&quot;fa-layers-text &quot;)?va(&quot;generateLayersText &quot;,e,t):va(&quot;generateSvgReplacementMutation &quot;,e,t)}function Za(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;if(!or)return Promise.resolve();var n=nr.documentElement.classList,r=function(e){return n.add(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},a=function(e){return n.remove(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},o=Object.keys(Nr.autoFetchSvg?cr:Ja),i=[&quot;.&quot;.concat(&quot;fa-layers-text &quot;,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)].concat(o.map(function(e){return &quot;.&quot;.concat(e,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)})).join(&quot;, &quot;);if(0===i.length)return Promise.resolve();var l=[];try{l=Or(e.querySelectorAll(i))}catch(e){}if(!(l.length &gt;0))return Promise.resolve();r(&quot;pending &quot;),a(&quot;complete &quot;);var s=La(&quot;onTree &quot;),c=l.reduce(function(e,t){try{var n=Qa(t);n &amp;&amp;e.push(n)}catch(e){sr||&quot;MissingIcon &quot;===e.name &amp;&amp;console.error(e)}return e},[]);return new Promise(function(e,n){Promise.all(c).then(function(n){Ha(n,function(){r(&quot;active &quot;),r(&quot;complete &quot;),a(&quot;pending &quot;),&quot;function &quot;==typeof t &amp;&amp;t(),s(),e()})}).catch(function(e){s(),n(e)})})}function eo(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;Qa(e).then(function(e){e &amp;&amp;Ha([e],t)})}var to=function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Sr:n,a=t.symbol,o=void 0!==a &amp;&amp;a,i=t.mask,l=void 0===i?null:i,s=t.maskId,c=void 0===s?null:s,u=t.title,f=void 0===u?null:u,d=t.titleId,p=void 0===d?null:d,m=t.classes,h=void 0===m?[]:m,g=t.attributes,v=void 0===g?{}:g,y=t.styles,E=void 0===y?{}:y;if(e){var b=e.prefix,T=e.iconName,N=e.icon;return Ra(Hn({type:&quot;icon &quot;},e),function(){return ga(&quot;beforeDOMElementCreation &quot;,{iconDefinition:e,params:t}),Nr.autoA11y &amp;&amp;(f?v[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(Nr.replacementClass,&quot;-title-&quot;).concat(p||wr()):(v[&quot;aria-hidden &quot;]=&quot;true &quot;,v.focusable=&quot;false &quot;)),Sa({icons:{main:Aa(N),mask:l?Aa(l.icon):{found:!1,width:null,height:null,icon:{}}},prefix:b,iconName:T,transform:Hn(Hn({},Sr),r),symbol:o,title:f,maskId:c,titleId:p,extra:{attributes:v,styles:E,classes:h}})})}},no={mixout:function(){return{icon:(e=to,function(t){var n=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},r=(t||{}).icon?t:ya(t||{}),a=n.mask;return a &amp;&amp;(a=(a||{}).icon?a:ya(a||{})),e(r,Hn(Hn({},n),{},{mask:a}))})};var e},hooks:function(){return{mutationObserverCallbacks:function(e){return e.treeCallback=Za,e.nodeCallback=eo,e}}},provides:function(e){e.i2svg=function(e){var t=e.node,n=e.callback;return Za(void 0===t?nr:t,void 0===n?function(){}:n)},e.generateSvgReplacementMutation=function(e,t){var n=t.iconName,r=t.title,a=t.titleId,o=t.prefix,i=t.transform,l=t.symbol,s=t.mask,c=t.maskId,u=t.extra;return new Promise(function(t,f){Promise.all([ka(n,o),s.iconName?ka(s.iconName,s.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(s){var f=Wn(s,2);t([e,Sa({icons:{main:f[0],mask:f[1]},prefix:o,iconName:n,transform:i,symbol:l,maskId:c,title:r,titleId:a,extra:u,watchable:!0})])}).catch(f)})},e.generateAbstractIcon=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.transform,i=Ir(e.styles);return i.length &gt;0 &amp;&amp;(r.style=i),kr(o)&amp;&amp;(t=va(&quot;generateAbstractTransformGrouping &quot;,{main:a,transform:o,containerWidth:a.width,iconWidth:a.width})),n.push(t||a.icon),{children:n,attributes:r}}}},ro={mixout:function(){return{layer:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.classes,r=void 0===n?[]:n;return Ra({type:&quot;layer &quot;},function(){ga(&quot;beforeDOMElementCreation &quot;,{assembler:e,params:t});var n=[];return e(function(e){Array.isArray(e)?e.map(function(e){n=n.concat(e.abstract)}):n=n.concat(e.abstract)}),[{tag:&quot;span &quot;,attributes:{class:[&quot;&quot;.concat(Nr.familyPrefix,&quot;-layers &quot;)].concat(Gn(r)).join(&quot;&quot;)},children:n}]})}}}},ao={mixout:function(){return{counter:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.title,r=void 0===n?null:n,a=t.classes,o=void 0===a?[]:a,i=t.attributes,l=void 0===i?{}:i,s=t.styles,c=void 0===s?{}:s;return Ra({type:&quot;counter &quot;,content:e},function(){return ga(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),Oa({content:e.toString(),title:r,extra:{attributes:l,styles:c,classes:[&quot;&quot;.concat(Nr.familyPrefix,&quot;-layers-counter &quot;)].concat(Gn(o))}})})}}}},oo={mixout:function(){return{text:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Sr:n,a=t.title,o=void 0===a?null:a,i=t.classes,l=void 0===i?[]:i,s=t.attributes,c=void 0===s?{}:s,u=t.styles,f=void 0===u?{}:u;return Ra({type:&quot;text &quot;,content:e},function(){return ga(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),wa({content:e,transform:Hn(Hn({},Sr),r),title:o,extra:{attributes:c,styles:f,classes:[&quot;&quot;.concat(Nr.familyPrefix,&quot;-layers-text &quot;)].concat(Gn(l))}})})}}},provides:function(e){e.generateLayersText=function(e,t){var n=t.title,r=t.transform,a=t.extra,o=null,i=null;if(ir){var l=parseInt(getComputedStyle(e).fontSize,10),s=e.getBoundingClientRect();o=s.width/l,i=s.height/l}return Nr.autoA11y &amp;&amp;!n &amp;&amp;(a.attributes[&quot;aria-hidden &quot;]=&quot;true &quot;),Promise.resolve([e,wa({content:e.innerHTML,width:o,height:i,transform:r,title:n,extra:a,watchable:!0})])}}},io=new RegExp(&#039;&quot;&#039;,&quot;ug &quot;),lo=[1105920,1112319];function so(e,t){var n=&quot;&quot;.concat(&quot;data-fa-pseudo-element-pending &quot;).concat(t.replace(&quot;:&quot;,&quot;-&quot;));return new Promise(function(r,a){if(null!==e.getAttribute(n))return r();var o,i,l,s=Or(e.children).filter(function(e){return e.getAttribute(&quot;data-fa-pseudo-element &quot;)===t})[0],c=tr.getComputedStyle(e,t),u=c.getPropertyValue(&quot;font-family &quot;).match(mr),f=c.getPropertyValue(&quot;font-weight &quot;),d=c.getPropertyValue(&quot;content &quot;);if(s &amp;&amp;!u)return e.removeChild(s),r();if(u &amp;&amp;&quot;none &quot;!==d &amp;&amp;&quot;&quot;!==d){var p=c.getPropertyValue(&quot;content &quot;),m=~[&quot;Solid &quot;,&quot;Regular &quot;,&quot;Light &quot;,&quot;Thin &quot;,&quot;Duotone &quot;,&quot;Brands &quot;,&quot;Kit &quot;].indexOf(u[2])?ur[u[2].toLowerCase()]:hr[f],h=function(e){var t,n,r,a,o=e.replace(io,&quot;&quot;),i=(r=(t=o).length,(a=t.charCodeAt(0))&gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;r &gt;1 &amp;&amp;(n=t.charCodeAt(1))&gt;=56320 &amp;&amp;n &lt;=57343?1024*(a-55296)+n-56320+65536:a),l=i &gt;=lo[0]&amp;&amp;i &lt;=lo[1],s=2===o.length &amp;&amp;o[0]===o[1];return{value:Vr(s?o[0]:o),isSecondary:l||s}}(p),g=h.value,v=h.isSecondary,y=u[0].startsWith(&quot;FontAwesome &quot;),E=aa(m,g),b=E;if(y){var T=(i=Zr[o=g],l=aa(&quot;fas &quot;,o),i||(l?{prefix:&quot;fas &quot;,iconName:l}:null)||{prefix:null,iconName:null});T.iconName &amp;&amp;T.prefix &amp;&amp;(E=T.iconName,m=T.prefix)}if(!E||v||s &amp;&amp;s.getAttribute(&quot;data-prefix &quot;)===m &amp;&amp;s.getAttribute(&quot;data-icon &quot;)===b)r();else{e.setAttribute(n,b),s &amp;&amp;e.removeChild(s);var N={iconName:null,title:null,titleId:null,prefix:null,transform:Sr,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}},R=N.extra;R.attributes[&quot;data-fa-pseudo-element &quot;]=t,ka(E,m).then(function(a){var o=Sa(Hn(Hn({},N),{},{icons:{main:a,mask:{prefix:null,iconName:null,rest:[]}},prefix:m,iconName:b,extra:R,watchable:!0})),i=nr.createElement(&quot;svg &quot;);&quot;::before &quot;===t?e.insertBefore(i,e.firstChild):e.appendChild(i),i.outerHTML=o.map(function(e){return zr(e)}).join(&quot;
 &quot;),e.removeAttribute(n),r()}).catch(a)}}else r()})}function co(e){return Promise.all([so(e,&quot;::before &quot;),so(e,&quot;::after &quot;)])}function uo(e){return!(e.parentNode===document.head||~lr.indexOf(e.tagName.toUpperCase())||e.getAttribute(&quot;data-fa-pseudo-element &quot;)||e.parentNode &amp;&amp;&quot;svg &quot;===e.parentNode.tagName)}function fo(e){if(or)return new Promise(function(t,n){var r=Or(e.querySelectorAll(&quot;*&quot;)).filter(uo).map(co),a=La(&quot;searchPseudoElements &quot;);Va(),Promise.all(r).then(function(){a(),Wa(),t()}).catch(function(){a(),Wa(),n()})})}var po,mo=!1,ho=function(e){return e.toLowerCase().split(&quot;&quot;).reduce(function(e,t){var n=t.toLowerCase().split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);if(r &amp;&amp;&quot;h &quot;===a)return e.flipX=!0,e;if(r &amp;&amp;&quot;v &quot;===a)return e.flipY=!0,e;if(a=parseFloat(a),isNaN(a))return e;switch(r){case &quot;grow &quot;:e.size=e.size+a;break;case &quot;shrink &quot;:e.size=e.size-a;break;case &quot;left &quot;:e.x=e.x-a;break;case &quot;right &quot;:e.x=e.x+a;break;case &quot;up &quot;:e.y=e.y-a;break;case &quot;down &quot;:e.y=e.y+a;break;case &quot;rotate &quot;:e.rotate=e.rotate+a}return e},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},go={x:0,y:0,width:&quot;100%&quot;,height:&quot;100%&quot;};function vo(e){var t=!(arguments.length &gt;1 &amp;&amp;void 0!==arguments[1])||arguments[1];return e.attributes &amp;&amp;(e.attributes.fill||t)&amp;&amp;(e.attributes.fill=&quot;black &quot;),e}po=Ta,fa=[Pr,no,ro,ao,oo,{hooks:function(){return{mutationObserverCallbacks:function(e){return e.pseudoElementsCallback=fo,e}}},provides:function(e){e.pseudoElements2svg=function(e){var t=e.node;Nr.searchPseudoElements &amp;&amp;fo(void 0===t?nr:t)}}},{mixout:function(){return{dom:{unwatch:function(){Va(),mo=!0}}}},hooks:function(){return{bootstrap:function(){Ya(ha(&quot;mutationObserverCallbacks &quot;,{}))},noAuto:function(){Ga &amp;&amp;Ga.disconnect()},watch:function(e){var t=e.observeMutationsRoot;mo?Wa():Ya(ha(&quot;mutationObserverCallbacks &quot;,{observeMutationsRoot:t}))}}}},{mixout:function(){return{parse:{transform:function(e){return ho(e)}}}},hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-transform &quot;);return n &amp;&amp;(e.transform=ho(n)),e}}},provides:function(e){e.generateAbstractTransformGrouping=function(e){var t=e.main,n=e.transform,r=e.iconWidth,a={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},o=&quot;translate(&quot;.concat(32*n.x,&quot;, &quot;).concat(32*n.y,&quot;) &quot;),i=&quot;scale(&quot;.concat(n.size/16*(n.flipX?-1:1),&quot;, &quot;).concat(n.size/16*(n.flipY?-1:1),&quot;) &quot;),l=&quot;rotate(&quot;.concat(n.rotate,&quot;0 0)&quot;),s={outer:a,inner:{transform:&quot;&quot;.concat(o,&quot;&quot;).concat(i,&quot;&quot;).concat(l)},path:{transform:&quot;translate(&quot;.concat(r/2*-1,&quot;-256)&quot;)}};return{tag:&quot;g &quot;,attributes:Hn({},s.outer),children:[{tag:&quot;g &quot;,attributes:Hn({},s.inner),children:[{tag:t.icon.tag,children:t.icon.children,attributes:Hn(Hn({},t.icon.attributes),s.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-mask &quot;),r=n?ca(n.split(&quot;&quot;).map(function(e){return e.trim()})):{prefix:null,iconName:null,rest:[]};return r.prefix||(r.prefix=la()),e.mask=r,e.maskId=t.getAttribute(&quot;data-fa-mask-id &quot;),e}}},provides:function(e){e.generateAbstractMask=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.mask,i=e.maskId,l=a.icon,s=o.icon,c=function(e){var t=e.transform,n=e.iconWidth,r={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},a=&quot;translate(&quot;.concat(32*t.x,&quot;, &quot;).concat(32*t.y,&quot;) &quot;),o=&quot;scale(&quot;.concat(t.size/16*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/16*(t.flipY?-1:1),&quot;) &quot;),i=&quot;rotate(&quot;.concat(t.rotate,&quot;0 0)&quot;);return{outer:r,inner:{transform:&quot;&quot;.concat(a,&quot;&quot;).concat(o,&quot;&quot;).concat(i)},path:{transform:&quot;translate(&quot;.concat(n/2*-1,&quot;-256)&quot;)}}}({transform:e.transform,containerWidth:o.width,iconWidth:a.width}),u={tag:&quot;rect &quot;,attributes:Hn(Hn({},go),{},{fill:&quot;white &quot;})},f=l.children?{children:l.children.map(vo)}:{},d={tag:&quot;g &quot;,attributes:Hn({},c.inner),children:[vo(Hn({tag:l.tag,attributes:Hn(Hn({},l.attributes),c.path)},f))]},p={tag:&quot;g &quot;,attributes:Hn({},c.outer),children:[d]},m=&quot;mask-&quot;.concat(i||wr()),h=&quot;clip-&quot;.concat(i||wr()),g={tag:&quot;mask &quot;,attributes:Hn(Hn({},go),{},{id:m,maskUnits:&quot;userSpaceOnUse &quot;,maskContentUnits:&quot;userSpaceOnUse &quot;}),children:[u,p]},v={tag:&quot;defs &quot;,children:[{tag:&quot;clipPath &quot;,attributes:{id:h},children:(t=s,&quot;g &quot;===t.tag?t.children:[t])},g]};return n.push(v,{tag:&quot;rect &quot;,attributes:Hn({fill:&quot;currentColor &quot;,&quot;clip-path &quot;:&quot;url(#&quot;.concat(h,&quot;)&quot;),mask:&quot;url(#&quot;.concat(m,&quot;)&quot;)},go)}),{children:n,attributes:r}}}},{provides:function(e){var t=!1;tr.matchMedia &amp;&amp;(t=tr.matchMedia(&quot;(prefers-reduced-motion: reduce)&quot;).matches),e.missingIconAbstract=function(){var e=[],n={fill:&quot;currentColor &quot;},r={attributeType:&quot;XML &quot;,repeatCount:&quot;indefinite &quot;,dur:&quot;2s &quot;};e.push({tag:&quot;path &quot;,attributes:Hn(Hn({},n),{},{d:&quot;M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z &quot;})});var a=Hn(Hn({},r),{},{attributeName:&quot;opacity &quot;}),o={tag:&quot;circle &quot;,attributes:Hn(Hn({},n),{},{cx:&quot;256 &quot;,cy:&quot;364 &quot;,r:&quot;28 &quot;}),children:[]};return t||o.children.push({tag:&quot;animate &quot;,attributes:Hn(Hn({},r),{},{attributeName:&quot;r &quot;,values:&quot;28;14;28;28;14;28;&quot;})},{tag:&quot;animate &quot;,attributes:Hn(Hn({},a),{},{values:&quot;1;0;1;1;0;1;&quot;})}),e.push(o),e.push({tag:&quot;path &quot;,attributes:Hn(Hn({},n),{},{opacity:&quot;1 &quot;,d:&quot;M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z &quot;}),children:t?[]:[{tag:&quot;animate &quot;,attributes:Hn(Hn({},a),{},{values:&quot;1;0;0;0;0;1;&quot;})}]}),t||e.push({tag:&quot;path &quot;,attributes:Hn(Hn({},n),{},{opacity:&quot;0 &quot;,d:&quot;M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z &quot;}),children:[{tag:&quot;animate &quot;,attributes:Hn(Hn({},a),{},{values:&quot;0;0;1;1;0;0;&quot;})}]}),{tag:&quot;g &quot;,attributes:{class:&quot;missing &quot;},children:e}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-symbol &quot;);return e.symbol=null!==n &amp;&amp;(&quot;&quot;===n||n),e}}}}],da={},Object.keys(pa).forEach(function(e){-1===ma.indexOf(e)&amp;&amp;delete pa[e]}),fa.forEach(function(e){var t=e.mixout?e.mixout():{};if(Object.keys(t).forEach(function(e){&quot;function &quot;==typeof t[e]&amp;&amp;(po[e]=t[e]),&quot;object &quot;===Bn(t[e])&amp;&amp;Object.keys(t[e]).forEach(function(n){po[e]||(po[e]={}),po[e][n]=t[e][n]})}),e.hooks){var n=e.hooks();Object.keys(n).forEach(function(e){da[e]||(da[e]=[]),da[e].push(n[e])})}e.provides &amp;&amp;e.provides(pa)});var yo=Ta.parse,Eo=Ta.icon,bo=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for,To=bo?Symbol.for(&quot;react.element &quot;):60103,No=bo?Symbol.for(&quot;react.portal &quot;):60106,Ro=bo?Symbol.for(&quot;react.fragment &quot;):60107,So=bo?Symbol.for(&quot;react.strict_mode &quot;):60108,wo=bo?Symbol.for(&quot;react.profiler &quot;):60114,Oo=bo?Symbol.for(&quot;react.provider &quot;):60109,Co=bo?Symbol.for(&quot;react.context &quot;):60110,Ao=bo?Symbol.for(&quot;react.async_mode &quot;):60111,Io=bo?Symbol.for(&quot;react.concurrent_mode &quot;):60111,ko=bo?Symbol.for(&quot;react.forward_ref &quot;):60112,xo=bo?Symbol.for(&quot;react.suspense &quot;):60113,_o=bo?Symbol.for(&quot;react.suspense_list &quot;):60120,Lo=bo?Symbol.for(&quot;react.memo &quot;):60115,Po=bo?Symbol.for(&quot;react.lazy &quot;):60116,Mo=bo?Symbol.for(&quot;react.block &quot;):60121,Do=bo?Symbol.for(&quot;react.fundamental &quot;):60117,Uo=bo?Symbol.for(&quot;react.responder &quot;):60118,jo=bo?Symbol.for(&quot;react.scope &quot;):60119;function Fo(e){if(&quot;object &quot;==typeof e &amp;&amp;null!==e){var t=e.$$typeof;switch(t){case To:switch(e=e.type){case Ao:case Io:case Ro:case wo:case So:case xo:return e;default:switch(e=e &amp;&amp;e.$$typeof){case Co:case ko:case Po:case Lo:case Oo:return e;default:return t}}case No:return t}}}function zo(e){return Fo(e)===Io}var Ho={AsyncMode:Ao,ConcurrentMode:Io,ContextConsumer:Co,ContextProvider:Oo,Element:To,ForwardRef:ko,Fragment:Ro,Lazy:Po,Memo:Lo,Portal:No,Profiler:wo,StrictMode:So,Suspense:xo,isAsyncMode:function(e){return zo(e)||Fo(e)===Ao},isConcurrentMode:zo,isContextConsumer:function(e){return Fo(e)===Co},isContextProvider:function(e){return Fo(e)===Oo},isElement:function(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===To},isForwardRef:function(e){return Fo(e)===ko},isFragment:function(e){return Fo(e)===Ro},isLazy:function(e){return Fo(e)===Po},isMemo:function(e){return Fo(e)===Lo},isPortal:function(e){return Fo(e)===No},isProfiler:function(e){return Fo(e)===wo},isStrictMode:function(e){return Fo(e)===So},isSuspense:function(e){return Fo(e)===xo},isValidElementType:function(e){return &quot;string &quot;==typeof e||&quot;function &quot;==typeof e||e===Ro||e===Io||e===wo||e===So||e===xo||e===_o||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;(e.$$typeof===Po||e.$$typeof===Lo||e.$$typeof===Oo||e.$$typeof===Co||e.$$typeof===ko||e.$$typeof===Do||e.$$typeof===Uo||e.$$typeof===jo||e.$$typeof===Mo)},typeOf:Fo};function Bo(){}function Vo(){}we(function(e,t){}),we(function(e){e.exports=Ho}),Vo.resetWarningCache=Bo;var Wo=we(function(e){e.exports=function(){function e(e,t,n,r,a,o){if(&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;!==o){var i=new Error(&quot;Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types &quot;);throw i.name=&quot;Invariant Violation &quot;,i}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:Vo,resetWarningCache:Bo};return n.PropTypes=n,n}()});function Go(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Yo(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Go(Object(n),!0).forEach(function(t){Xo(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Go(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function $o(e){return($o=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Xo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ko(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||Object.prototype.propertyIsEnumerable.call(e,n)&amp;&amp;(a[n]=e[n])}return a}function qo(e){return function(e){if(Array.isArray(e))return Jo(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return Jo(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Jo(e,t):void 0}}(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Jo(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}function Qo(e){return t=e,(t-=0)==t?e:(e=e.replace(/[\-_\s]+(.)?/g,function(e,t){return t?t.toUpperCase():&quot;&quot;})).substr(0,1).toLowerCase()+e.substr(1);var t}var Zo=[&quot;style &quot;];function ei(e){return e.split(&quot;;&quot;).map(function(e){return e.trim()}).filter(function(e){return e}).reduce(function(e,t){var n,r=t.indexOf(&quot;:&quot;),a=Qo(t.slice(0,r)),o=t.slice(r+1).trim();return a.startsWith(&quot;webkit &quot;)?e[(n=a,n.charAt(0).toUpperCase()+n.slice(1))]=o:e[a]=o,e},{})}var ti=!1;try{ti=!0}catch(Ro){}function ni(e){return e &amp;&amp;&quot;object &quot;===$o(e)&amp;&amp;e.prefix &amp;&amp;e.iconName &amp;&amp;e.icon?e:yo.icon?yo.icon(e):null===e?null:e &amp;&amp;&quot;object &quot;===$o(e)&amp;&amp;e.prefix &amp;&amp;e.iconName?e:Array.isArray(e)&amp;&amp;2===e.length?{prefix:e[0],iconName:e[1]}:&quot;string &quot;==typeof e?{prefix:&quot;fas &quot;,iconName:e}:void 0}function ri(e,t){return Array.isArray(t)&amp;&amp;t.length &gt;0||!Array.isArray(t)&amp;&amp;t?Xo({},e,t):{}}var ai=[&quot;forwardedRef &quot;];function oi(e){var t=e.forwardedRef,n=Ko(e,ai),r=n.mask,a=n.symbol,o=n.className,i=n.title,l=n.titleId,s=n.maskId,c=ni(n.icon),u=ri(&quot;classes &quot;,[].concat(qo(function(e){var t,n=e.flip,r=e.size,a=e.rotation,o=e.pull,i=(Xo(t={&quot;fa-beat &quot;:e.beat,&quot;fa-fade &quot;:e.fade,&quot;fa-beat-fade &quot;:e.beatFade,&quot;fa-bounce &quot;:e.bounce,&quot;fa-shake &quot;:e.shake,&quot;fa-flash &quot;:e.flash,&quot;fa-spin &quot;:e.spin,&quot;fa-spin-reverse &quot;:e.spinReverse,&quot;fa-spin-pulse &quot;:e.spinPulse,&quot;fa-pulse &quot;:e.pulse,&quot;fa-fw &quot;:e.fixedWidth,&quot;fa-inverse &quot;:e.inverse,&quot;fa-border &quot;:e.border,&quot;fa-li &quot;:e.listItem,&quot;fa-flip-horizontal &quot;:&quot;horizontal &quot;===n||&quot;both &quot;===n,&quot;fa-flip-vertical &quot;:&quot;vertical &quot;===n||&quot;both &quot;===n},&quot;fa-&quot;.concat(r),null!=r),Xo(t,&quot;fa-rotate-&quot;.concat(a),null!=a &amp;&amp;0!==a),Xo(t,&quot;fa-pull-&quot;.concat(o),null!=o),Xo(t,&quot;fa-swap-opacity &quot;,e.swapOpacity),t);return Object.keys(i).map(function(e){return i[e]?e:null}).filter(function(e){return e})}(n)),qo(o.split(&quot;&quot;)))),f=ri(&quot;transform &quot;,&quot;string &quot;==typeof n.transform?yo.transform(n.transform):n.transform),d=ri(&quot;mask &quot;,ni(r)),p=Eo(c,Yo(Yo(Yo(Yo({},u),f),d),{},{symbol:a,title:i,titleId:l,maskId:s}));if(!p)return function(){var e;!ti &amp;&amp;console &amp;&amp;&quot;function &quot;==typeof console.error &amp;&amp;(e=console).error.apply(e,arguments)}(&quot;Could not find icon &quot;,c),null;var m=p.abstract,h={ref:t};return Object.keys(n).forEach(function(e){oi.defaultProps.hasOwnProperty(e)||(h[e]=n[e])}),ii(m[0],h)}oi.displayName=&quot;FontAwesomeIcon &quot;,oi.propTypes={beat:Wo.bool,border:Wo.bool,bounce:Wo.bool,className:Wo.string,fade:Wo.bool,flash:Wo.bool,mask:Wo.oneOfType([Wo.object,Wo.array,Wo.string]),maskId:Wo.string,fixedWidth:Wo.bool,inverse:Wo.bool,flip:Wo.oneOf([&quot;horizontal &quot;,&quot;vertical &quot;,&quot;both &quot;]),icon:Wo.oneOfType([Wo.object,Wo.array,Wo.string]),listItem:Wo.bool,pull:Wo.oneOf([&quot;right &quot;,&quot;left &quot;]),pulse:Wo.bool,rotation:Wo.oneOf([0,90,180,270]),shake:Wo.bool,size:Wo.oneOf([&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;1x &quot;,&quot;2x &quot;,&quot;3x &quot;,&quot;4x &quot;,&quot;5x &quot;,&quot;6x &quot;,&quot;7x &quot;,&quot;8x &quot;,&quot;9x &quot;,&quot;10x &quot;]),spin:Wo.bool,spinPulse:Wo.bool,spinReverse:Wo.bool,symbol:Wo.oneOfType([Wo.bool,Wo.string]),title:Wo.string,titleId:Wo.string,transform:Wo.oneOfType([Wo.string,Wo.object]),swapOpacity:Wo.bool},oi.defaultProps={border:!1,className:&quot;&quot;,mask:null,maskId:null,fixedWidth:!1,inverse:!1,flip:null,icon:null,listItem:!1,pull:null,pulse:!1,rotation:null,size:null,spin:!1,beat:!1,fade:!1,beatFade:!1,bounce:!1,shake:!1,symbol:!1,title:&quot;&quot;,titleId:null,transform:null,swapOpacity:!1};var ii=function e(t,n){var r=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{};if(&quot;string &quot;==typeof n)return n;var a=(n.children||[]).map(function(n){return e(t,n)}),o=Object.keys(n.attributes||{}).reduce(function(e,t){var r=n.attributes[t];switch(t){case &quot;class &quot;:e.attrs.className=r,delete n.attributes.class;break;case &quot;style &quot;:e.attrs.style=ei(r);break;default:0===t.indexOf(&quot;aria-&quot;)||0===t.indexOf(&quot;data-&quot;)?e.attrs[t.toLowerCase()]=r:e.attrs[Qo(t)]=r}return e},{attrs:{}}),i=r.style,l=void 0===i?{}:i,s=Ko(r,Zo);return o.attrs.style=Yo(Yo({},o.attrs.style),l),t.apply(void 0,[n.tag,Yo(Yo({},o.attrs),s)].concat(qo(a)))}.bind(null,c.createElement),li={prefix:&quot;fas &quot;,iconName:&quot;angle-down &quot;,icon:[384,512,[8964],&quot;f107 &quot;,&quot;M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z &quot;]},si={prefix:&quot;fas &quot;,iconName:&quot;angle-up &quot;,icon:[384,512,[8963],&quot;f106 &quot;,&quot;M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z &quot;]},ci={prefix:&quot;fas &quot;,iconName:&quot;check &quot;,icon:[448,512,[10004,10003],&quot;f00c &quot;,&quot;M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z &quot;]},ui={prefix:&quot;fas &quot;,iconName:&quot;circle-question &quot;,icon:[512,512,[62108,&quot;question-circle &quot;],&quot;f059 &quot;,&quot;M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 400c-18 0-32-14-32-32s13.1-32 32-32c17.1 0 32 14 32 32S273.1 400 256 400zM325.1 258L280 286V288c0 13-11 24-24 24S232 301 232 288V272c0-8 4-16 12-21l57-34C308 213 312 206 312 198C312 186 301.1 176 289.1 176h-51.1C225.1 176 216 186 216 198c0 13-11 24-24 24s-24-11-24-24C168 159 199 128 237.1 128h51.1C329 128 360 159 360 198C360 222 347 245 325.1 258z &quot;]},fi={prefix:&quot;fas &quot;,iconName:&quot;code &quot;,icon:[640,512,[],&quot;f121 &quot;,&quot;M414.8 40.79L286.8 488.8C281.9 505.8 264.2 515.6 247.2 510.8C230.2 505.9 220.4 488.2 225.2 471.2L353.2 23.21C358.1 6.216 375.8-3.624 392.8 1.232C409.8 6.087 419.6 23.8 414.8 40.79H414.8zM518.6 121.4L630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L518.6 390.6C506.1 403.1 485.9 403.1 473.4 390.6C460.9 378.1 460.9 357.9 473.4 345.4L562.7 256L473.4 166.6C460.9 154.1 460.9 133.9 473.4 121.4C485.9 108.9 506.1 108.9 518.6 121.4V121.4zM166.6 166.6L77.25 256L166.6 345.4C179.1 357.9 179.1 378.1 166.6 390.6C154.1 403.1 133.9 403.1 121.4 390.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4L121.4 121.4C133.9 108.9 154.1 108.9 166.6 121.4C179.1 133.9 179.1 154.1 166.6 166.6V166.6z &quot;]},di={prefix:&quot;fas &quot;,iconName:&quot;code-branch &quot;,icon:[448,512,[],&quot;f126 &quot;,&quot;M160 80C160 112.8 140.3 140.1 112 153.3V241.1C130.8 230.2 152.7 224 176 224H272C307.3 224 336 195.3 336 160V153.3C307.7 140.1 288 112.8 288 80C288 35.82 323.8 0 368 0C412.2 0 448 35.82 448 80C448 112.8 428.3 140.1 400 153.3V160C400 230.7 342.7 288 272 288H176C140.7 288 112 316.7 112 352V358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 0 80 0C124.2 0 160 35.82 160 80V80zM80 104C93.25 104 104 93.25 104 80C104 66.75 93.25 56 80 56C66.75 56 56 66.75 56 80C56 93.25 66.75 104 80 104zM368 56C354.7 56 344 66.75 344 80C344 93.25 354.7 104 368 104C381.3 104 392 93.25 392 80C392 66.75 381.3 56 368 56zM80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408C66.75 408 56 418.7 56 432C56 445.3 66.75 456 80 456z &quot;]},pi={prefix:&quot;fas &quot;,iconName:&quot;cookie-bite &quot;,icon:[512,512,[],&quot;f564 &quot;,&quot;M494.6 255.9c-65.63-.8203-118.6-54.14-118.6-119.9c-65.74 0-119.1-52.97-119.8-118.6c-25.66-3.867-51.8 .2346-74.77 12.07L116.7 62.41C93.35 74.36 74.36 93.35 62.41 116.7L29.6 181.2c-11.95 23.44-16.17 49.92-12.07 75.94l11.37 71.48c4.102 25.9 16.29 49.8 34.81 68.32l51.36 51.39C133.6 466.9 157.3 479 183.2 483.1l71.84 11.37c25.9 4.101 52.27-.1172 75.59-11.95l64.81-33.05c23.32-11.84 42.31-30.82 54.14-54.14l32.93-64.57C494.3 307.7 498.5 281.4 494.6 255.9zM176 367.1c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S193.6 367.1 176 367.1zM208 208c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S225.6 208 208 208zM368 335.1c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S385.6 335.1 368 335.1z &quot;]},mi={prefix:&quot;fas &quot;,iconName:&quot;copy &quot;,icon:[512,512,[],&quot;f0c5 &quot;,&quot;M384 96L384 0h-112c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48H464c26.51 0 48-21.49 48-48V128h-95.1C398.4 128 384 113.6 384 96zM416 0v96h96L416 0zM192 352V128h-144c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h192c26.51 0 48-21.49 48-48L288 416h-32C220.7 416 192 387.3 192 352z &quot;]},hi={prefix:&quot;fas &quot;,iconName:&quot;database &quot;,icon:[448,512,[],&quot;f1c0 &quot;,&quot;M448 80V128C448 172.2 347.7 208 224 208C100.3 208 0 172.2 0 128V80C0 35.82 100.3 0 224 0C347.7 0 448 35.82 448 80zM393.2 214.7C413.1 207.3 433.1 197.8 448 186.1V288C448 332.2 347.7 368 224 368C100.3 368 0 332.2 0 288V186.1C14.93 197.8 34.02 207.3 54.85 214.7C99.66 230.7 159.5 240 224 240C288.5 240 348.3 230.7 393.2 214.7V214.7zM54.85 374.7C99.66 390.7 159.5 400 224 400C288.5 400 348.3 390.7 393.2 374.7C413.1 367.3 433.1 357.8 448 346.1V432C448 476.2 347.7 512 224 512C100.3 512 0 476.2 0 432V346.1C14.93 357.8 34.02 367.3 54.85 374.7z &quot;]},gi={prefix:&quot;fas &quot;,iconName:&quot;file &quot;,icon:[384,512,[128459,61462,128196],&quot;f15b &quot;,&quot;M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256z &quot;]},vi={prefix:&quot;fas &quot;,iconName:&quot;hourglass &quot;,icon:[384,512,[62032,9203,&quot;hourglass-2 &quot;,&quot;hourglass-half &quot;],&quot;f254 &quot;,&quot;M352 0C369.7 0 384 14.33 384 32C384 49.67 369.7 64 352 64V74.98C352 117.4 335.1 158.1 305.1 188.1L237.3 256L305.1 323.9C335.1 353.9 352 394.6 352 437V448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V437C32 394.6 48.86 353.9 78.86 323.9L146.7 256L78.86 188.1C48.86 158.1 32 117.4 32 74.98V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H352zM111.1 128H272C282.4 112.4 288 93.98 288 74.98V64H96V74.98C96 93.98 101.6 112.4 111.1 128zM111.1 384H272C268.5 378.7 264.5 373.7 259.9 369.1L192 301.3L124.1 369.1C119.5 373.7 115.5 378.7 111.1 384V384z &quot;]},yi={prefix:&quot;fas &quot;,iconName:&quot;lightbulb &quot;,icon:[384,512,[128161],&quot;f0eb &quot;,&quot;M112.1 454.3c0 6.297 1.816 12.44 5.284 17.69l17.14 25.69c5.25 7.875 17.17 14.28 26.64 14.28h61.67c9.438 0 21.36-6.401 26.61-14.28l17.08-25.68c2.938-4.438 5.348-12.37 5.348-17.7L272 415.1h-160L112.1 454.3zM191.4 .0132C89.44 .3257 16 82.97 16 175.1c0 44.38 16.44 84.84 43.56 115.8c16.53 18.84 42.34 58.23 52.22 91.45c.0313 .25 .0938 .5166 .125 .7823h160.2c.0313-.2656 .0938-.5166 .125-.7823c9.875-33.22 35.69-72.61 52.22-91.45C351.6 260.8 368 220.4 368 175.1C368 78.61 288.9-.2837 191.4 .0132zM192 96.01c-44.13 0-80 35.89-80 79.1C112 184.8 104.8 192 96 192S80 184.8 80 176c0-61.76 50.25-111.1 112-111.1c8.844 0 16 7.159 16 16S200.8 96.01 192 96.01z &quot;]},Ei={prefix:&quot;fas &quot;,iconName:&quot;list-ul &quot;,icon:[512,512,[&quot;list-dots &quot;],&quot;f0ca &quot;,&quot;M16 96C16 69.49 37.49 48 64 48C90.51 48 112 69.49 112 96C112 122.5 90.51 144 64 144C37.49 144 16 122.5 16 96zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H192C174.3 128 160 113.7 160 96C160 78.33 174.3 64 192 64H480zM480 224C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H192C174.3 288 160 273.7 160 256C160 238.3 174.3 224 192 224H480zM480 384C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416C160 398.3 174.3 384 192 384H480zM16 416C16 389.5 37.49 368 64 368C90.51 368 112 389.5 112 416C112 442.5 90.51 464 64 464C37.49 464 16 442.5 16 416zM112 256C112 282.5 90.51 304 64 304C37.49 304 16 282.5 16 256C16 229.5 37.49 208 64 208C90.51 208 112 229.5 112 256z &quot;]},bi={prefix:&quot;fas &quot;,iconName:&quot;paint-roller &quot;,icon:[512,512,[],&quot;f5aa &quot;,&quot;M0 64C0 28.65 28.65 0 64 0H352C387.3 0 416 28.65 416 64V128C416 163.3 387.3 192 352 192H64C28.65 192 0 163.3 0 128V64zM160 352C160 334.3 174.3 320 192 320V304C192 259.8 227.8 224 272 224H416C433.7 224 448 209.7 448 192V69.46C485.3 82.64 512 118.2 512 160V192C512 245 469 288 416 288H272C263.2 288 256 295.2 256 304V320C273.7 320 288 334.3 288 352V480C288 497.7 273.7 512 256 512H192C174.3 512 160 497.7 160 480V352z &quot;]},Ti={prefix:&quot;fas &quot;,iconName:&quot;pencil &quot;,icon:[512,512,[61504,9999,&quot;pencil-alt &quot;],&quot;f303 &quot;,&quot;M421.7 220.3L188.5 453.4L154.6 419.5L158.1 416H112C103.2 416 96 408.8 96 400V353.9L92.51 357.4C87.78 362.2 84.31 368 82.42 374.4L59.44 452.6L137.6 429.6C143.1 427.7 149.8 424.2 154.6 419.5L188.5 453.4C178.1 463.8 165.2 471.5 151.1 475.6L30.77 511C22.35 513.5 13.24 511.2 7.03 504.1C.8198 498.8-1.502 489.7 .976 481.2L36.37 360.9C40.53 346.8 48.16 333.9 58.57 323.5L291.7 90.34L421.7 220.3zM492.7 58.75C517.7 83.74 517.7 124.3 492.7 149.3L444.3 197.7L314.3 67.72L362.7 19.32C387.7-5.678 428.3-5.678 453.3 19.32L492.7 58.75z &quot;]},Ni={prefix:&quot;fas &quot;,iconName:&quot;right-left &quot;,icon:[512,512,[&quot;exchange-alt &quot;],&quot;f362 &quot;,&quot;M32 160h319.9l.0791 72c0 9.547 5.652 18.19 14.41 22c8.754 3.812 18.93 2.078 25.93-4.406l112-104c10.24-9.5 10.24-25.69 0-35.19l-112-104c-6.992-6.484-17.17-8.217-25.93-4.408c-8.758 3.816-14.41 12.46-14.41 22L351.9 96H32C14.31 96 0 110.3 0 127.1S14.31 160 32 160zM480 352H160.1L160 279.1c0-9.547-5.652-18.19-14.41-22C136.9 254.2 126.7 255.9 119.7 262.4l-112 104c-10.24 9.5-10.24 25.69 0 35.19l112 104c6.992 6.484 17.17 8.219 25.93 4.406C154.4 506.2 160 497.5 160 488L160.1 416H480c17.69 0 32-14.31 32-32S497.7 352 480 352z &quot;]},Ri={prefix:&quot;fas &quot;,iconName:&quot;rotate-right &quot;,icon:[512,512,[&quot;redo-alt &quot;,&quot;rotate-forward &quot;],&quot;f2f9 &quot;,&quot;M468.9 32.11c13.87 0 27.18 10.77 27.18 27.04v145.9c0 10.59-8.584 19.17-19.17 19.17h-145.7c-16.28 0-27.06-13.32-27.06-27.2c0-6.634 2.461-13.4 7.96-18.9l45.12-45.14c-28.22-23.14-63.85-36.64-101.3-36.64c-88.09 0-159.8 71.69-159.8 159.8S167.8 415.9 255.9 415.9c73.14 0 89.44-38.31 115.1-38.31c18.48 0 31.97 15.04 31.97 31.96c0 35.04-81.59 70.41-147 70.41c-123.4 0-223.9-100.5-223.9-223.9S132.6 32.44 256 32.44c54.6 0 106.2 20.39 146.4 55.26l47.6-47.63C455.5 34.57 462.3 32.11 468.9 32.11z &quot;]},Si={prefix:&quot;fas &quot;,iconName:&quot;satellite-dish &quot;,icon:[512,512,[128225],&quot;f7c0 &quot;,&quot;M216 104C202.8 104 192 114.8 192 128s10.75 24 24 24c79.41 0 144 64.59 144 144C360 309.3 370.8 320 384 320s24-10.75 24-24C408 190.1 321.9 104 216 104zM224 0C206.3 0 192 14.31 192 32s14.33 32 32 32c123.5 0 224 100.5 224 224c0 17.69 14.33 32 32 32s32-14.31 32-32C512 129.2 382.8 0 224 0zM188.9 346l27.37-27.37c2.625 .625 5.059 1.506 7.809 1.506c17.75 0 31.99-14.26 31.99-32c0-17.62-14.24-32.01-31.99-32.01c-17.62 0-31.99 14.38-31.99 32.01c0 2.875 .8099 5.25 1.56 7.875L166.2 323.4L49.37 206.5c-7.25-7.25-20.12-6-24.1 3c-41.75 77.88-29.88 176.7 35.75 242.4c65.62 65.62 164.6 77.5 242.4 35.75c9.125-5 10.38-17.75 3-25L188.9 346z &quot;]},wi={prefix:&quot;fas &quot;,iconName:&quot;shuffle &quot;,icon:[512,512,[128256,&quot;random &quot;],&quot;f074 &quot;,&quot;M424.1 287c-15.13-15.12-40.1-4.426-40.1 16.97V352H336L153.6 108.8C147.6 100.8 138.1 96 128 96H32C14.31 96 0 110.3 0 128s14.31 32 32 32h80l182.4 243.2C300.4 411.3 309.9 416 320 416h63.97v47.94c0 21.39 25.86 32.12 40.99 17l79.1-79.98c9.387-9.387 9.387-24.59 0-33.97L424.1 287zM336 160h47.97v48.03c0 21.39 25.87 32.09 40.1 16.97l79.1-79.98c9.387-9.391 9.385-24.59-.0013-33.97l-79.1-79.98c-15.13-15.12-40.99-4.391-40.99 17V96H320c-10.06 0-19.56 4.75-25.59 12.81L254 162.7L293.1 216L336 160zM112 352H32c-17.69 0-32 14.31-32 32s14.31 32 32 32h96c10.06 0 19.56-4.75 25.59-12.81l40.4-53.87L154 296L112 352z &quot;]},Oi={prefix:&quot;fas &quot;,iconName:&quot;sliders &quot;,icon:[512,512,[&quot;sliders-h &quot;],&quot;f1de &quot;,&quot;M0 416C0 398.3 14.33 384 32 384H86.66C99 355.7 127.2 336 160 336C192.8 336 220.1 355.7 233.3 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H233.3C220.1 476.3 192.8 496 160 496C127.2 496 99 476.3 86.66 448H32C14.33 448 0 433.7 0 416V416zM192 416C192 398.3 177.7 384 160 384C142.3 384 128 398.3 128 416C128 433.7 142.3 448 160 448C177.7 448 192 433.7 192 416zM352 176C384.8 176 412.1 195.7 425.3 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H425.3C412.1 316.3 384.8 336 352 336C319.2 336 291 316.3 278.7 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H278.7C291 195.7 319.2 176 352 176zM384 256C384 238.3 369.7 224 352 224C334.3 224 320 238.3 320 256C320 273.7 334.3 288 352 288C369.7 288 384 273.7 384 256zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H265.3C252.1 156.3 224.8 176 192 176C159.2 176 131 156.3 118.7 128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H118.7C131 35.75 159.2 16 192 16C224.8 16 252.1 35.75 265.3 64H480zM160 96C160 113.7 174.3 128 192 128C209.7 128 224 113.7 224 96C224 78.33 209.7 64 192 64C174.3 64 160 78.33 160 96z &quot;]},Ci={prefix:&quot;fas &quot;,iconName:&quot;stopwatch &quot;,icon:[448,512,[9201],&quot;f2f2 &quot;,&quot;M272 0C289.7 0 304 14.33 304 32C304 49.67 289.7 64 272 64H256V98.45C293.5 104.2 327.7 120 355.7 143L377.4 121.4C389.9 108.9 410.1 108.9 422.6 121.4C435.1 133.9 435.1 154.1 422.6 166.6L398.5 190.8C419.7 223.3 432 262.2 432 304C432 418.9 338.9 512 224 512C109.1 512 16 418.9 16 304C16 200 92.32 113.8 192 98.45V64H176C158.3 64 144 49.67 144 32C144 14.33 158.3 0 176 0L272 0zM248 192C248 178.7 237.3 168 224 168C210.7 168 200 178.7 200 192V320C200 333.3 210.7 344 224 344C237.3 344 248 333.3 248 320V192z &quot;]},Ai={prefix:&quot;fas &quot;,iconName:&quot;table-cells &quot;,icon:[512,512,[&quot;th &quot;],&quot;f00a &quot;,&quot;M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM152 96H64V160H152V96zM208 160H296V96H208V160zM448 96H360V160H448V96zM64 288H152V224H64V288zM296 224H208V288H296V224zM360 288H448V224H360V288zM152 352H64V416H152V352zM208 416H296V352H208V416zM448 352H360V416H448V352z &quot;]},Ii={prefix:&quot;fas &quot;,iconName:&quot;triangle-exclamation &quot;,icon:[512,512,[9888,&quot;exclamation-triangle &quot;,&quot;warning &quot;],&quot;f071 &quot;,&quot;M506.3 417l-213.3-364c-16.33-28-57.54-28-73.98 0l-213.2 364C-10.59 444.9 9.849 480 42.74 480h426.6C502.1 480 522.6 445 506.3 417zM232 168c0-13.25 10.75-24 24-24S280 154.8 280 168v128c0 13.25-10.75 24-23.1 24S232 309.3 232 296V168zM256 416c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 401.9 273.4 416 256 416z &quot;]},ki={prefix:&quot;fas &quot;,iconName:&quot;up-right-from-square &quot;,icon:[512,512,[&quot;external-link-alt &quot;],&quot;f35d &quot;,&quot;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z &quot;]},xi={prefix:&quot;fas &quot;,iconName:&quot;user &quot;,icon:[448,512,[62144,128100],&quot;f007 &quot;,&quot;M224 256c70.7 0 128-57.31 128-128s-57.3-128-128-128C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3C77.61 304 0 381.6 0 477.3c0 19.14 15.52 34.67 34.66 34.67h378.7C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304z &quot;]},_i={prefix:&quot;fas &quot;,iconName:&quot;wrench &quot;,icon:[512,512,[128295],&quot;f0ad &quot;,&quot;M507.6 122.8c-2.904-12.09-18.25-16.13-27.04-7.338l-76.55 76.56l-83.1-.0002l0-83.1l76.55-76.56c8.791-8.789 4.75-24.14-7.336-27.04c-23.69-5.693-49.34-6.111-75.92 .2484c-61.45 14.7-109.4 66.9-119.2 129.3C189.8 160.8 192.3 186.7 200.1 210.1l-178.1 178.1c-28.12 28.12-28.12 73.69 0 101.8C35.16 504.1 53.56 512 71.1 512s36.84-7.031 50.91-21.09l178.1-178.1c23.46 7.736 49.31 10.24 76.17 6.004c62.41-9.84 114.6-57.8 129.3-119.2C513.7 172.1 513.3 146.5 507.6 122.8zM80 456c-13.25 0-24-10.75-24-24c0-13.26 10.75-24 24-24s24 10.74 24 24C104 445.3 93.25 456 80 456z &quot;]},Li={prefix:&quot;fas &quot;,iconName:&quot;xmark &quot;,icon:[320,512,[128473,10005,10006,10060,215,&quot;close &quot;,&quot;multiply &quot;,&quot;remove &quot;,&quot;times &quot;],&quot;f00d &quot;,&quot;M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z &quot;]};function Pi(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}function Mi(e){return function(e){if(Array.isArray(e))return Pi(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return Pi(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Pi(e,t):void 0}}(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Di(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ui(){return(Ui=Object.assign||function(e){for(var t=1;t &lt;arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&amp;&amp;(e[r]=n[r])}return e}).apply(this,arguments)}function ji(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Fi(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ji(Object(n),!0).forEach(function(t){Di(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ji(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}var zi={};function Hi(e){if(0===e.length||1===e.length)return e;var t,n,r=e.join(&quot;.&quot;);return zi[r]||(zi[r]=0===(n=(t=e).length)||1===n?t:2===n?[t[0],t[1],&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0])]:3===n?[t[0],t[1],t[2],&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0])]:n &gt;=4?[t[0],t[1],t[2],t[3],&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0])]:void 0),zi[r]}function Bi(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=arguments.length &gt;2?arguments[2]:void 0,r=e.filter(function(e){return &quot;token &quot;!==e}),a=Hi(r);return a.reduce(function(e,t){return Fi(Fi({},e),n[t])},t)}function Vi(e){return e.join(&quot;&quot;)}function Wi(e){var t=e.node,n=e.stylesheet,r=e.style,a=void 0===r?{}:r,o=e.useInlineStyles,i=e.key,l=t.properties,s=t.tagName;if(&quot;text &quot;===t.type)return t.value;if(s){var u,f=function(e,t){var n=0;return function(r){return n+=1,r.map(function(r,a){return Wi({node:r,stylesheet:e,useInlineStyles:t,key:&quot;code-segment-&quot;.concat(n,&quot;-&quot;).concat(a)})})}}(n,o);if(o){var d=Object.keys(n).reduce(function(e,t){return t.split(&quot;.&quot;).forEach(function(t){e.includes(t)||e.push(t)}),e},[]),p=l.className &amp;&amp;l.className.includes(&quot;token &quot;)?[&quot;token &quot;]:[],m=l.className &amp;&amp;p.concat(l.className.filter(function(e){return!d.includes(e)}));u=Fi(Fi({},l),{},{className:Vi(m)||void 0,style:Bi(l.className,Object.assign({},l.style,a),n)})}else u=Fi(Fi({},l),{},{className:Vi(l.className)});var h=f(t.children);/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        return c.createElement(s,Ui({key:i},u),h)}}var Gi=[&quot;language &quot;,&quot;children &quot;,&quot;style &quot;,&quot;customStyle &quot;,&quot;codeTagProps &quot;,&quot;useInlineStyles &quot;,&quot;showLineNumbers &quot;,&quot;showInlineLineNumbers &quot;,&quot;startingLineNumber &quot;,&quot;lineNumberContainerStyle &quot;,&quot;lineNumberStyle &quot;,&quot;wrapLines &quot;,&quot;wrapLongLines &quot;,&quot;lineProps &quot;,&quot;renderer &quot;,&quot;PreTag &quot;,&quot;CodeTag &quot;,&quot;code &quot;,&quot;astGenerator &quot;];function Yi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function $i(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Yi(Object(n),!0).forEach(function(t){Di(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Yi(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}var Xi=/
/g;function Ki(e){var t=e.codeString,n=e.containerStyle,r=e.numberStyle,a=void 0===r?{}:r,o=e.startingLineNumber;/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        return c.createElement(&quot;code &quot;,{style:Object.assign({},e.codeStyle,void 0===n?{float:&quot;left &quot;,paddingRight:&quot;10px &quot;}:n)},function(e){var t=e.startingLineNumber,n=e.style;return e.lines.map(function(e,r){var a=r+t;/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        return c.createElement(&quot;span &quot;,{key:&quot;line-&quot;.concat(r),className:&quot;react-syntax-highlighter-line-number &quot;,style:&quot;function &quot;==typeof n?n(a):n},&quot;&quot;.concat(a,&quot;
 &quot;))})}({lines:t.replace(/
$/,&quot;&quot;).split(&quot;
 &quot;),style:a,startingLineNumber:o}))}function qi(e,t){return{type:&quot;element &quot;,tagName:&quot;span &quot;,properties:{key:&quot;line-number--&quot;.concat(e),className:[&quot;comment &quot;,&quot;linenumber &quot;,&quot;react-syntax-highlighter-line-number &quot;],style:t},children:[{type:&quot;text &quot;,value:e}]}}function Ji(e,t,n){var r,a={display:&quot;inline-block &quot;,minWidth:(r=n,&quot;&quot;.concat(r.toString().length,&quot;.25em &quot;)),paddingRight:&quot;1em &quot;,textAlign:&quot;right &quot;,userSelect:&quot;none &quot;},o=&quot;function &quot;==typeof e?e(t):e;return $i($i({},a),o)}function Qi(e){var t=e.children,n=e.lineNumber,r=e.lineNumberStyle,a=e.largestLineNumber,o=e.showInlineLineNumbers,i=e.lineProps,l=void 0===i?{}:i,s=e.className,c=void 0===s?[]:s,u=e.showLineNumbers,f=e.wrapLongLines,d=&quot;function &quot;==typeof l?l(n):l;if(d.className=c,n &amp;&amp;o){var p=Ji(r,n,a);t.unshift(qi(n,p))}return f &amp;u &amp;&amp;(d.style=$i($i({},d.style),{},{display:&quot;flex &quot;})),{type:&quot;element &quot;,tagName:&quot;span &quot;,properties:d,children:t}}function Zi(e){for(var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:[],n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:[],r=0;r &lt;e.length;r++){var a=e[r];if(&quot;text &quot;===a.type)n.push(Qi({children:[a],className:Mi(new Set(t))}));else if(a.children){var o=t.concat(a.properties.className);Zi(a.children,o).forEach(function(e){return n.push(e)})}}return n}function el(e,t,n,r,a,o,i,l,s){var c,u=Zi(e.value),f=[],d=-1,p=0;function m(e,t){var o=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:[];return Qi({children:e,lineNumber:t,lineNumberStyle:l,largestLineNumber:i,showInlineLineNumbers:a,lineProps:n,className:o,showLineNumbers:r,wrapLongLines:s})}function h(e,t){if(r &amp;&amp;t &amp;&amp;a){var n=Ji(l,t,i);e.unshift(qi(t,n))}return e}function g(e,n){var r=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:[];return t||r.length &gt;0?m(e,n,r):h(e,n)}for(var v=function(){var e=u[p],t=e.children[0].value;if(t.match(Xi)){var n=t.split(&quot;
 &quot;);n.forEach(function(t,a){var i=r &amp;&amp;f.length+o,l={type:&quot;text &quot;,value:&quot;&quot;.concat(t,&quot;
 &quot;)};if(0===a){var s=g(u.slice(d+1,p).concat(Qi({children:[l],className:e.properties.className})),i);f.push(s)}else if(a===n.length-1){var c=u[p+1]&amp;&amp;u[p+1].children &amp;&amp;u[p+1].children[0],m={type:&quot;text &quot;,value:&quot;&quot;.concat(t)};if(c){var h=Qi({children:[m],className:e.properties.className});u.splice(p+1,0,h)}else{var v=g([m],i,e.properties.className);f.push(v)}}else{var y=g([l],i,e.properties.className);f.push(y)}}),d=p}p++};p &lt;u.length;)v();if(d!==u.length-1){var y=u.slice(d+1,u.length);if(y &amp;&amp;y.length){var E=g(y,r &amp;&amp;f.length+o);f.push(E)}}return t?f:(c=[]).concat.apply(c,f)}function tl(e){var t=e.stylesheet,n=e.useInlineStyles;return e.rows.map(function(e,r){return Wi({node:e,stylesheet:t,useInlineStyles:n,key:&quot;code-segement &quot;.concat(r)})})}function nl(e){return e &amp;&amp;void 0!==e.highlightAuto}function rl(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error(&quot;map is read-only &quot;)}:e instanceof Set &amp;&amp;(e.add=e.clear=e.delete=function(){throw new Error(&quot;set is read-only &quot;)}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(function(t){var n=e[t];&quot;object &quot;!=typeof n||Object.isFrozen(n)||rl(n)}),e}var al=rl;al.default=rl;class ol{constructor(e){void 0===e.data &amp;&amp;(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function il(e){return e.replace(/&amp;/g,&quot;&amp;amp;&quot;).replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;).replace(/&quot;/g,&quot;&amp;quot;&quot;).replace(/&#039;/g,&quot;&amp;#x27;&quot;)}function ll(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t];return t.forEach(function(e){for(const t in e)n[t]=e[t]}),n}const sl=e=&gt;!!e.kind;class cl{constructor(e,t){this.buffer=&quot;&quot;,this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=il(e)}openNode(e){if(!sl(e))return;let t=e.kind;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){sl(e)&amp;&amp;(this.buffer+=&quot;&lt;/span &gt;&quot;)}value(){return this.buffer}span(e){this.buffer+=`&lt;span class=&quot;${e}&quot;&gt;`}}class ul{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length &gt;1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return &quot;string &quot;==typeof t?e.addText(t):t.children &amp;&amp;(e.openNode(t),t.children.forEach(t=&gt;this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){&quot;string &quot;!=typeof e &amp;&amp;e.children &amp;&amp;(e.children.every(e=&gt;&quot;string &quot;==typeof e)?e.children=[e.children.join(&quot;&quot;)]:e.children.forEach(e=&gt;{ul._collapse(e)}))}}class fl extends ul{constructor(e){super(),this.options=e}addKeyword(e,t){&quot;&quot;!==e &amp;&amp;(this.openNode(t),this.addText(e),this.closeNode())}addText(e){&quot;&quot;!==e &amp;&amp;this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){return new cl(this,this.options).value()}finalize(){return!0}}function dl(e){return e?&quot;string &quot;==typeof e?e:e.source:null}const pl=/\[(?:[^\\]]|\.)*\]|\(\??|\([1-9][0-9]*)|\./,ml=&quot;(-?)(\b0[xX][a-fA-F0-9]+|(\b\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)&quot;,hl={begin:&quot;\\[\s\S]&quot;,relevance:0},gl={className:&quot;string &quot;,begin:&quot;&#039;&quot;,end:&quot;&#039;&quot;,illegal:&quot;\n &quot;,contains:[hl]},vl={className:&quot;string &quot;,begin:&#039;&quot;&#039;,end:&#039;&quot;&#039;,illegal:&quot;\n &quot;,contains:[hl]},yl={begin:/(a|an|the|are|I &#039;m|isn &#039;t|don &#039;t|doesn &#039;t|won &#039;t|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)/},El=function(e,t,n={}){const r=ll({className:&quot;comment &quot;,begin:e,end:t,contains:[]},n);return r.contains.push(yl),r.contains.push({className:&quot;doctag &quot;,begin:&quot;(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):&quot;,relevance:0}),r},bl=El(&quot;//&quot;,&quot;$ &quot;),Tl=El(&quot;/\*&quot;,&quot;\*/&quot;),Nl=El(&quot;#&quot;,&quot;$ &quot;);var Rl=/*#__PURE__*/Object.freeze({__proto__:null,MATCH_NOTHING_RE:/\B/,IDENT_RE:&quot;[a-zA-Z]\w*&quot;,UNDERSCORE_IDENT_RE:&quot;[a-zA-Z_]\w*&quot;,NUMBER_RE:&quot;\b\d+(\.\d+)?&quot;,C_NUMBER_RE:ml,BINARY_NUMBER_RE:&quot;\b(0b[01]+)&quot;,RE_STARTERS_RE:&quot;!|!=|!==|%|%=|&amp;|&amp;&amp;|&amp;=|\*|\*=|\+|\+=|,|-|-=|/=|/|:|;|&lt;&lt;|&lt;&lt;=|&lt;=|&lt;|===|==|=|&gt;&gt;&gt;=|&gt;&gt;=|&gt;=|&gt;&gt;&gt;|&gt;&gt;|&gt;|\?|\[|\{|\(|\^|\^=|\||\|=|\|\||~&quot;,SHEBANG:(e={})=&gt;{const t=/^#![ ]*\//;return e.binary &amp;&amp;(e.begin=function(...e){return e.map(e=&gt;dl(e)).join(&quot;&quot;)}(t,/.*/,e.binary,/.*/)),ll({className:&quot;meta &quot;,begin:t,end:/$/,relevance:0,&quot;on:begin &quot;:(e,t)=&gt;{0!==e.index &amp;&amp;t.ignoreMatch()}},e)},BACKSLASH_ESCAPE:hl,APOS_STRING_MODE:gl,QUOTE_STRING_MODE:vl,PHRASAL_WORDS_MODE:yl,COMMENT:El,C_LINE_COMMENT_MODE:bl,C_BLOCK_COMMENT_MODE:Tl,HASH_COMMENT_MODE:Nl,NUMBER_MODE:{className:&quot;number &quot;,begin:&quot;\b\d+(\.\d+)?&quot;,relevance:0},C_NUMBER_MODE:{className:&quot;number &quot;,begin:ml,relevance:0},BINARY_NUMBER_MODE:{className:&quot;number &quot;,begin:&quot;\b(0b[01]+)&quot;,relevance:0},CSS_NUMBER_MODE:{className:&quot;number &quot;,begin:&quot;\b\d+(\.\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?&quot;,relevance:0},REGEXP_MODE:{begin:/(?=\/[^/
]*\/)/,contains:[{className:&quot;regexp &quot;,begin:/\//,end:/\/[gimuy]*/,illegal:/
/,contains:[hl,{begin:/\[/,end:/\]/,relevance:0,contains:[hl]}]}]},TITLE_MODE:{className:&quot;title &quot;,begin:&quot;[a-zA-Z]\w*&quot;,relevance:0},UNDERSCORE_TITLE_MODE:{className:&quot;title &quot;,begin:&quot;[a-zA-Z_]\w*&quot;,relevance:0},METHOD_GUARD:{begin:&quot;\.\s*[a-zA-Z_]\w*&quot;,relevance:0},END_SAME_AS_BEGIN:function(e){return Object.assign(e,{&quot;on:begin &quot;:(e,t)=&gt;{t.data._beginMatch=e[1]},&quot;on:end &quot;:(e,t)=&gt;{t.data._beginMatch!==e[1]&amp;&amp;t.ignoreMatch()}})}});function Sl(e,t){&quot;.&quot;===e.input[e.index-1]&amp;&amp;t.ignoreMatch()}function wl(e,t){t &amp;&amp;e.beginKeywords &amp;&amp;(e.begin=&quot;\b(&quot;+e.beginKeywords.split(&quot;&quot;).join(&quot;|&quot;)+&quot;)(?!\.)(?=\b|\s)&quot;,e.__beforeBegin=Sl,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance &amp;&amp;(e.relevance=0))}function Ol(e,t){Array.isArray(e.illegal)&amp;&amp;(e.illegal=function(...e){return &quot;(&quot;+e.map(e=&gt;dl(e)).join(&quot;|&quot;)+&quot;)&quot;}(...e.illegal))}function Cl(e,t){if(e.match){if(e.begin||e.end)throw new Error(&quot;begin &amp;end are not supported with match &quot;);e.begin=e.match,delete e.match}}function Al(e,t){void 0===e.relevance &amp;&amp;(e.relevance=1)}const Il=[&quot;of &quot;,&quot;and &quot;,&quot;for &quot;,&quot;in &quot;,&quot;not &quot;,&quot;or &quot;,&quot;if &quot;,&quot;then &quot;,&quot;parent &quot;,&quot;list &quot;,&quot;value &quot;];function kl(e,t,n=&quot;keyword &quot;){const r={};return &quot;string &quot;==typeof e?a(n,e.split(&quot;&quot;)):Array.isArray(e)?a(n,e):Object.keys(e).forEach(function(n){Object.assign(r,kl(e[n],t,n))}),r;function a(e,n){t &amp;&amp;(n=n.map(e=&gt;e.toLowerCase())),n.forEach(function(t){const n=t.split(&quot;|&quot;);r[n[0]]=[e,xl(n[0],n[1])]})}}function xl(e,t){return t?Number(t):function(e){return Il.includes(e.toLowerCase())}(e)?0:1}function _l(e,{}){function t(t,n){return new RegExp(dl(t),&quot;m &quot;+(e.case_insensitive?&quot;i &quot;:&quot;&quot;)+(n?&quot;g &quot;:&quot;&quot;))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=function(e){return new RegExp(e.toString()+&quot;|&quot;).exec(&quot;&quot;).length-1}(e)+1}compile(){0===this.regexes.length &amp;&amp;(this.exec=()=&gt;null);const e=this.regexes.map(e=&gt;e[1]);this.matcherRe=t(function(e,t=&quot;|&quot;){let n=0;return e.map(e=&gt;{n+=1;const t=n;let r=dl(e),a=&quot;&quot;;for(;r.length &gt;0;){const e=pl.exec(r);if(!e){a+=r;break}a+=r.substring(0,e.index),r=r.substring(e.index+e[0].length),&quot;\&quot;===e[0][0]&amp;&amp;e[1]?a+=&quot;\&quot;+String(Number(e[1])+t):(a+=e[0],&quot;(&quot;===e[0]&amp;&amp;n++)}return a}).map(e=&gt;`(${e})`).join(t)}(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=&gt;t &gt;0 &amp;&amp;void 0!==e),r=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,r)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=&gt;t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),&quot;begin &quot;===t.type &amp;&amp;this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n &amp;&amp;n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n &amp;&amp;(this.regexIndex+=n.position+1,this.regexIndex===this.count &amp;&amp;this.considerAll()),n}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains &amp;&amp;e.contains.includes(&quot;self &quot;))throw new Error(&quot;ERR: contains `self` is not supported at the top-level of a language.  See documentation.&quot;);return e.classNameAliases=ll(e.classNameAliases||{}),function n(a,o){const i=a;if(a.isCompiled)return i;[Cl].forEach(e=&gt;e(a,o)),e.compilerExtensions.forEach(e=&gt;e(a,o)),a.__beforeBegin=null,[wl,Ol,Al].forEach(e=&gt;e(a,o)),a.isCompiled=!0;let l=null;if(&quot;object &quot;==typeof a.keywords &amp;&amp;(l=a.keywords.$pattern,delete a.keywords.$pattern),a.keywords &amp;&amp;(a.keywords=kl(a.keywords,e.case_insensitive)),a.lexemes &amp;&amp;l)throw new Error(&quot;ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) &quot;);return l=l||a.lexemes||/\w+/,i.keywordPatternRe=t(l,!0),o &amp;&amp;(a.begin||(a.begin=/\B|/),i.beginRe=t(a.begin),a.endSameAsBegin &amp;&amp;(a.end=a.begin),a.end||a.endsWithParent||(a.end=/\B|/),a.end &amp;&amp;(i.endRe=t(a.end)),i.terminatorEnd=dl(a.end)||&quot;&quot;,a.endsWithParent &amp;&amp;o.terminatorEnd &amp;&amp;(i.terminatorEnd+=(a.end?&quot;|&quot;:&quot;&quot;)+o.terminatorEnd)),a.illegal &amp;&amp;(i.illegalRe=t(a.illegal)),a.contains||(a.contains=[]),a.contains=[].concat(...a.contains.map(function(e){return function(e){return e.variants &amp;&amp;!e.cachedVariants &amp;&amp;(e.cachedVariants=e.variants.map(function(t){return ll(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:Ll(e)?ll(e,{starts:e.starts?ll(e.starts):null}):Object.isFrozen(e)?ll(e):e}(&quot;self &quot;===e?a:e)})),a.contains.forEach(function(e){n(e,i)}),a.starts &amp;&amp;n(a.starts,o),i.matcher=function(e){const t=new r;return e.contains.forEach(e=&gt;t.addRule(e.begin,{rule:e,type:&quot;begin &quot;})),e.terminatorEnd &amp;&amp;t.addRule(e.terminatorEnd,{type:&quot;end &quot;}),e.illegal &amp;&amp;t.addRule(e.illegal,{type:&quot;illegal &quot;}),t}(i),i}(e)}function Ll(e){return!!e &amp;&amp;(e.endsWithParent||Ll(e.starts))}function Pl(e){const t={props:[&quot;language &quot;,&quot;code &quot;,&quot;autodetect &quot;],data:function(){return{detectedLanguage:&quot;&quot;,unknownLanguage:!1}},computed:{className(){return this.unknownLanguage?&quot;&quot;:&quot;hljs &quot;+this.detectedLanguage},highlighted(){if(!this.autoDetect &amp;&amp;!e.getLanguage(this.language))return console.warn(`The language &quot;${this.language}&quot;you specified could not be found.`),this.unknownLanguage=!0,il(this.code);let t={};return this.autoDetect?(t=e.highlightAuto(this.code),this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals),this.detectedLanguage=this.language),t.value},autoDetect(){return!this.language||(e=this.autodetect,Boolean(e||&quot;&quot;===e));var e},ignoreIllegals:()=&gt;!0},render(e){return e(&quot;pre &quot;,{},[e(&quot;code &quot;,{class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{Component:t,VuePlugin:{install(e){e.component(&quot;highlightjs &quot;,t)}}}}const Ml={&quot;after:highlightElement &quot;:({el:e,result:t,text:n})=&gt;{const r=Ul(e);if(!r.length)return;const a=document.createElement(&quot;div &quot;);a.innerHTML=t.value,t.value=function(e,t,n){let r=0,a=&quot;&quot;;const o=[];function i(){return e.length &amp;&amp;t.length?e[0].offset!==t[0].offset?e[0].offset &lt;t[0].offset?e:t:&quot;start &quot;===t[0].event?e:t:e.length?e:t}function l(e){a+=&quot;&lt;&quot;+Dl(e)+[].map.call(e.attributes,function(e){return &quot;&quot;+e.nodeName+&#039;=&quot;&#039;+il(e.value)+&#039;&quot;&#039;}).join(&quot;&quot;)+&quot;&gt;&quot;}function s(e){a+=&quot;&lt;/&quot;+Dl(e)+&quot;&gt;&quot;}function c(e){(&quot;start &quot;===e.event?l:s)(e.node)}for(;e.length||t.length;){let t=i();if(a+=il(n.substring(r,t[0].offset)),r=t[0].offset,t===e){o.reverse().forEach(s);do{c(t.splice(0,1)[0]),t=i()}while(t===e &amp;&amp;t.length &amp;&amp;t[0].offset===r);o.reverse().forEach(l)}else &quot;start &quot;===t[0].event?o.push(t[0].node):o.pop(),c(t.splice(0,1)[0])}return a+il(n.substr(r))}(r,Ul(a),n)}};function Dl(e){return e.nodeName.toLowerCase()}function Ul(e){const t=[];return function e(n,r){for(let a=n.firstChild;a;a=a.nextSibling)3===a.nodeType?r+=a.nodeValue.length:1===a.nodeType &amp;&amp;(t.push({event:&quot;start &quot;,offset:r,node:a}),r=e(a,r),Dl(a).match(/br|hr|img|input/)||t.push({event:&quot;stop &quot;,offset:r,node:a}));return r}(e,0),t}const jl={},Fl=e=&gt;{console.error(e)},zl=(e,...t)=&gt;{console.log(`WARN: ${e}`,...t)},Hl=(e,t)=&gt;{jl[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),jl[`${e}/${t}`]=!0)},Bl=il,Vl=ll,Wl=Symbol(&quot;nomatch &quot;);var Gl=function(e){const t=Object.create(null),n=Object.create(null),r=[];let a=!0;const o=/(^(&lt;[^&gt;]+&gt;|	|)+|
)/gm,i=&quot;Could not find the language &#039;{}&#039;, did you forget to load/include a language module?&quot;,l={disableAutodetect:!0,name:&quot;Plain text &quot;,contains:[]};let s={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/lang(?:uage)?-([\w-]+)/i,classPrefix:&quot;hljs-&quot;,tabReplace:null,useBR:!1,languages:null,__emitter:fl};function c(e){return s.noHighlightRe.test(e)}function u(e,t,n,r){let a=&quot;&quot;,o=&quot;&quot;;&quot;object &quot;==typeof t?(a=e,n=t.ignoreIllegals,o=t.language,r=void 0):(Hl(&quot;10.7.0 &quot;,&quot;highlight(lang, code, ...args) has been deprecated.&quot;),Hl(&quot;10.7.0 &quot;,&quot;Please use highlight(code, options) instead.
https://github.com/highlightjs/highlight.js/issues/2277 &quot;),o=e,a=t);const i={code:a,language:o};R(&quot;before:highlight &quot;,i);const l=i.result?i.result:f(i.language,i.code,n,r);return l.code=i.code,R(&quot;after:highlight &quot;,l),l}function f(e,n,o,l){function c(e,t){const n=E.case_insensitive?t[0].toLowerCase():t[0];return Object.prototype.hasOwnProperty.call(e.keywords,n)&amp;&amp;e.keywords[n]}function u(){null!=R.subLanguage?function(){if(&quot;&quot;===O)return;let e=null;if(&quot;string &quot;==typeof R.subLanguage){if(!t[R.subLanguage])return void w.addText(O);e=f(R.subLanguage,O,!0,S[R.subLanguage]),S[R.subLanguage]=e.top}else e=d(O,R.subLanguage.length?R.subLanguage:null);R.relevance &gt;0 &amp;&amp;(C+=e.relevance),w.addSublanguage(e.emitter,e.language)}():function(){if(!R.keywords)return void w.addText(O);let e=0;R.keywordPatternRe.lastIndex=0;let t=R.keywordPatternRe.exec(O),n=&quot;&quot;;for(;t;){n+=O.substring(e,t.index);const r=c(R,t);if(r){const[e,a]=r;w.addText(n),n=&quot;&quot;,C+=a,e.startsWith(&quot;_ &quot;)?n+=t[0]:w.addKeyword(t[0],E.classNameAliases[e]||e)}else n+=t[0];e=R.keywordPatternRe.lastIndex,t=R.keywordPatternRe.exec(O)}n+=O.substr(e),w.addText(n)}(),O=&quot;&quot;}function p(e){return e.className &amp;&amp;w.openNode(E.classNameAliases[e.className]||e.className),R=Object.create(e,{parent:{value:R}}),R}function m(e,t,n){let r=function(e,t){const n=e &amp;&amp;e.exec(t);return n &amp;&amp;0===n.index}(e.endRe,n);if(r){if(e[&quot;on:end &quot;]){const n=new ol(e);e[&quot;on:end &quot;](t,n),n.isMatchIgnored &amp;&amp;(r=!1)}if(r){for(;e.endsParent &amp;&amp;e.parent;)e=e.parent;return e}}if(e.endsWithParent)return m(e.parent,t,n)}function h(e){return 0===R.matcher.regexIndex?(O+=e[0],1):(k=!0,0)}function g(e){const t=e[0],r=n.substr(e.index),a=m(R,e,r);if(!a)return Wl;const o=R;o.skip?O+=t:(o.returnEnd||o.excludeEnd||(O+=t),u(),o.excludeEnd &amp;&amp;(O=t));do{R.className &amp;&amp;w.closeNode(),R.skip||R.subLanguage||(C+=R.relevance),R=R.parent}while(R!==a.parent);return a.starts &amp;&amp;(a.endSameAsBegin &amp;&amp;(a.starts.endRe=a.endRe),p(a.starts)),o.returnEnd?0:t.length}let v={};function y(t,r){const i=r &amp;&amp;r[0];if(O+=t,null==i)return u(),0;if(&quot;begin &quot;===v.type &amp;&amp;&quot;end &quot;===r.type &amp;&amp;v.index===r.index &amp;&amp;&quot;&quot;===i){if(O+=n.slice(r.index,r.index+1),!a){const t=new Error(&quot;0 width match regex &quot;);throw t.languageName=e,t.badRule=v.rule,t}return 1}if(v=r,&quot;begin &quot;===r.type)return function(e){const t=e[0],n=e.rule,r=new ol(n),a=[n.__beforeBegin,n[&quot;on:begin &quot;]];for(const n of a)if(n &amp;&amp;(n(e,r),r.isMatchIgnored))return h(t);return n &amp;&amp;n.endSameAsBegin &amp;&amp;(n.endRe=new RegExp(t.replace(/[-/\^$*+?.()|[\]{}]/g,&quot;\$ &amp;&quot;),&quot;m &quot;)),n.skip?O+=t:(n.excludeBegin &amp;&amp;(O+=t),u(),n.returnBegin||n.excludeBegin||(O=t)),p(n),n.returnBegin?0:t.length}(r);if(&quot;illegal &quot;===r.type &amp;&amp;!o){const e=new Error(&#039;Illegal lexeme &quot;&#039;+i+&#039;&quot;for mode &quot;&#039;+(R.className||&quot;&lt;unnamed &gt;&quot;)+&#039;&quot;&#039;);throw e.mode=R,e}if(&quot;end &quot;===r.type){const e=g(r);if(e!==Wl)return e}if(&quot;illegal &quot;===r.type &amp;&amp;&quot;&quot;===i)return 1;if(I &gt;1e5 &amp;&amp;I &gt;3*r.index)throw new Error(&quot;potential infinite loop, way more iterations than matches &quot;);return O+=i,i.length}const E=b(e);if(!E)throw Fl(i.replace(&quot;{}&quot;,e)),new Error(&#039;Unknown language: &quot;&#039;+e+&#039;&quot;&#039;);const T=_l(E,{plugins:r});let N=&quot;&quot;,R=l||T;const S={},w=new s.__emitter(s);!function(){const e=[];for(let t=R;t!==E;t=t.parent)t.className &amp;&amp;e.unshift(t.className);e.forEach(e=&gt;w.openNode(e))}();let O=&quot;&quot;,C=0,A=0,I=0,k=!1;try{for(R.matcher.considerAll();;){I++,k?k=!1:R.matcher.considerAll(),R.matcher.lastIndex=A;const e=R.matcher.exec(n);if(!e)break;const t=y(n.substring(A,e.index),e);A=e.index+t}return y(n.substr(A)),w.closeAllNodes(),w.finalize(),N=w.toHTML(),{relevance:Math.floor(C),value:N,language:e,illegal:!1,emitter:w,top:R}}catch(t){if(t.message &amp;&amp;t.message.includes(&quot;Illegal &quot;))return{illegal:!0,illegalBy:{msg:t.message,context:n.slice(A-100,A+100),mode:t.mode},sofar:N,relevance:0,value:Bl(n),emitter:w};if(a)return{illegal:!1,relevance:0,value:Bl(n),emitter:w,language:e,top:R,errorRaised:t};throw t}}function d(e,n){n=n||s.languages||Object.keys(t);const r=function(e){const t={relevance:0,emitter:new s.__emitter(s),value:Bl(e),illegal:!1,top:l};return t.emitter.addText(e),t}(e),a=n.filter(b).filter(N).map(t=&gt;f(t,e,!1));a.unshift(r);const o=a.sort((e,t)=&gt;{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language &amp;&amp;t.language){if(b(e.language).supersetOf===t.language)return 1;if(b(t.language).supersetOf===e.language)return-1}return 0}),[i,c]=o,u=i;return u.second_best=c,u}const p={&quot;before:highlightElement &quot;:({el:e})=&gt;{s.useBR &amp;&amp;(e.innerHTML=e.innerHTML.replace(/
/g,&quot;&quot;).replace(/&lt;br[ /]*&gt;/g,&quot;
 &quot;))},&quot;after:highlightElement &quot;:({result:e})=&gt;{s.useBR &amp;&amp;(e.value=e.value.replace(/
/g,&quot;&lt;br &gt;&quot;))}},m=/^(&lt;[^&gt;]+&gt;|	)+/gm,h={&quot;after:highlightElement &quot;:({result:e})=&gt;{s.tabReplace &amp;&amp;(e.value=e.value.replace(m,e=&gt;e.replace(/	/g,s.tabReplace)))}};function g(e){let t=null;const r=function(e){let t=e.className+&quot;&quot;;t+=e.parentNode?e.parentNode.className:&quot;&quot;;const n=s.languageDetectRe.exec(t);if(n){const t=b(n[1]);return t||(zl(i.replace(&quot;{}&quot;,n[1])),zl(&quot;Falling back to no-highlight mode for this block.&quot;,e)),t?n[1]:&quot;no-highlight &quot;}return t.split(/\s+/).find(e=&gt;c(e)||b(e))}(e);if(c(r))return;R(&quot;before:highlightElement &quot;,{el:e,language:r}),t=e;const a=t.textContent,o=r?u(a,{language:r,ignoreIllegals:!0}):d(a);R(&quot;after:highlightElement &quot;,{el:e,result:o,text:a}),e.innerHTML=o.value,function(e,t,r){const a=t?n[t]:r;e.classList.add(&quot;hljs &quot;),a &amp;&amp;e.classList.add(a)}(e,r,o.language),e.result={language:o.language,re:o.relevance,relavance:o.relevance},o.second_best &amp;&amp;(e.second_best={language:o.second_best.language,re:o.second_best.relevance,relavance:o.second_best.relevance})}const v=()=&gt;{v.called||(v.called=!0,Hl(&quot;10.6.0 &quot;,&quot;initHighlighting() is deprecated.  Use highlightAll() instead.&quot;),document.querySelectorAll(&quot;pre code &quot;).forEach(g))};let y=!1;function E(){&quot;loading &quot;!==document.readyState?document.querySelectorAll(&quot;pre code &quot;).forEach(g):y=!0}function b(e){return e=(e||&quot;&quot;).toLowerCase(),t[e]||t[n[e]]}function T(e,{languageName:t}){&quot;string &quot;==typeof e &amp;&amp;(e=[e]),e.forEach(e=&gt;{n[e.toLowerCase()]=t})}function N(e){const t=b(e);return t &amp;&amp;!t.disableAutodetect}function R(e,t){const n=e;r.forEach(function(e){e[n]&amp;&amp;e[n](t)})}&quot;undefined &quot;!=typeof window &amp;&amp;window.addEventListener &amp;&amp;window.addEventListener(&quot;DOMContentLoaded &quot;,function(){y &amp;&amp;E()},!1),Object.assign(e,{highlight:u,highlightAuto:d,highlightAll:E,fixMarkup:function(e){return Hl(&quot;10.2.0 &quot;,&quot;fixMarkup will be removed entirely in v11.0 &quot;),Hl(&quot;10.2.0 &quot;,&quot;Please see https://github.com/highlightjs/highlight.js/issues/2534 &quot;),t=e,s.tabReplace||s.useBR?t.replace(o,e=&gt;&quot;
 &quot;===e?s.useBR?&quot;&lt;br &gt;&quot;:e:s.tabReplace?e.replace(/	/g,s.tabReplace):e):t;var t},highlightElement:g,highlightBlock:function(e){return Hl(&quot;10.7.0 &quot;,&quot;highlightBlock will be removed entirely in v12.0 &quot;),Hl(&quot;10.7.0 &quot;,&quot;Please use highlightElement now.&quot;),g(e)},configure:function(e){e.useBR &amp;&amp;(Hl(&quot;10.3.0 &quot;,&quot;&#039;useBR &#039;will be removed entirely in v11.0 &quot;),Hl(&quot;10.3.0 &quot;,&quot;Please see https://github.com/highlightjs/highlight.js/issues/2559 &quot;)),s=Vl(s,e)},initHighlighting:v,initHighlightingOnLoad:function(){Hl(&quot;10.6.0 &quot;,&quot;initHighlightingOnLoad() is deprecated.  Use highlightAll() instead.&quot;),y=!0},registerLanguage:function(n,r){let o=null;try{o=r(e)}catch(e){if(Fl(&quot;Language definition for &#039;{}&#039;could not be registered.&quot;.replace(&quot;{}&quot;,n)),!a)throw e;Fl(e),o=l}o.name||(o.name=n),t[n]=o,o.rawDefinition=r.bind(null,e),o.aliases &amp;&amp;T(o.aliases,{languageName:n})},unregisterLanguage:function(e){delete t[e];for(const t of Object.keys(n))n[t]===e &amp;&amp;delete n[t]},listLanguages:function(){return Object.keys(t)},getLanguage:b,registerAliases:T,requireLanguage:function(e){Hl(&quot;10.4.0 &quot;,&quot;requireLanguage will be removed entirely in v11.&quot;),Hl(&quot;10.4.0 &quot;,&quot;Please see https://github.com/highlightjs/highlight.js/pull/2844 &quot;);const t=b(e);if(t)return t;throw new Error(&quot;The &#039;{}&#039;language is required, but not loaded.&quot;.replace(&quot;{}&quot;,e))},autoDetection:N,inherit:Vl,addPlugin:function(e){!function(e){e[&quot;before:highlightBlock &quot;]&amp;&amp;!e[&quot;before:highlightElement &quot;]&amp;&amp;(e[&quot;before:highlightElement &quot;]=t=&gt;{e[&quot;before:highlightBlock &quot;](Object.assign({block:t.el},t))}),e[&quot;after:highlightBlock &quot;]&amp;&amp;!e[&quot;after:highlightElement &quot;]&amp;&amp;(e[&quot;after:highlightElement &quot;]=t=&gt;{e[&quot;after:highlightBlock &quot;](Object.assign({block:t.el},t))})}(e),r.push(e)},vuePlugin:Pl(e).VuePlugin}),e.debugMode=function(){a=!1},e.safeMode=function(){a=!0},e.versionString=&quot;10.7.3 &quot;;for(const e in Rl)&quot;object &quot;==typeof Rl[e]&amp;&amp;al(Rl[e]);return Object.assign(e,Rl),e.addPlugin(p),e.addPlugin(Ml),e.addPlugin(h),e}({}),Yl=we(function(e){!function(){var t;function n(e){for(var t,n,r,a,o=1,i=[].slice.call(arguments),l=0,s=e.length,c=&quot;&quot;,u=!1,f=!1,d=function(){return i[o++]},p=function(){for(var n=&quot;&quot;;/\d/.test(e[l]);)n+=e[l++],t=e[l];return n.length &gt;0?parseInt(n):null};l &lt;s;++l)if(t=e[l],u)switch(u=!1,&quot;.&quot;==t?(f=!1,t=e[++l]):&quot;0 &quot;==t &amp;&amp;&quot;.&quot;==e[l+1]?(f=!0,t=e[l+=2]):f=!0,a=p(),t){case &quot;b &quot;:c+=parseInt(d(),10).toString(2);break;case &quot;c &quot;:c+=&quot;string &quot;==typeof(n=d())||n instanceof String?n:String.fromCharCode(parseInt(n,10));break;case &quot;d &quot;:c+=parseInt(d(),10);break;case &quot;f &quot;:r=String(parseFloat(d()).toFixed(a||6)),c+=f?r:r.replace(/^0/,&quot;&quot;);break;case &quot;j &quot;:c+=JSON.stringify(d());break;case &quot;o &quot;:c+=&quot;0 &quot;+parseInt(d(),10).toString(8);break;case &quot;s &quot;:c+=d();break;case &quot;x &quot;:c+=&quot;0x &quot;+parseInt(d(),10).toString(16);break;case &quot;X &quot;:c+=&quot;0x &quot;+parseInt(d(),10).toString(16).toUpperCase();break;default:c+=t}else &quot;%&quot;===t?u=!0:c+=t;return c}(t=e.exports=n).format=n,t.vsprintf=function(e,t){return n.apply(null,[e].concat(t))},&quot;undefined &quot;!=typeof console &amp;&amp;&quot;function &quot;==typeof console.log &amp;&amp;(t.printf=function(){console.log(n.apply(null,arguments))})}()}),$l=Kl(Error),Xl=$l;function Kl(e){return t.displayName=e.displayName||e.name,t;function t(t){return t &amp;&amp;(t=Yl.apply(null,arguments)),new e(t)}}$l.eval=Kl(EvalError),$l.range=Kl(RangeError),$l.reference=Kl(ReferenceError),$l.syntax=Kl(SyntaxError),$l.type=Kl(TypeError),$l.uri=Kl(URIError),$l.create=Kl;var ql=Jl;function Jl(e,t,n){var r,a=Gl.configure({}),o=(n||{}).prefix;if(&quot;string &quot;!=typeof e)throw Xl(&quot;Expected `string` for name, got `%s`&quot;,e);if(!Gl.getLanguage(e))throw Xl(&quot;Unknown language: `%s` is not registered &quot;,e);if(&quot;string &quot;!=typeof t)throw Xl(&quot;Expected `string` for value, got `%s`&quot;,t);if(null==o &amp;&amp;(o=&quot;hljs-&quot;),Gl.configure({__emitter:Ql,classPrefix:o}),r=Gl.highlight(t,{language:e,ignoreIllegals:!0}),Gl.configure(a||{}),r.errorRaised)throw r.errorRaised;return{relevance:r.relevance,language:r.language,value:r.emitter.rootNode.children}}function Ql(e){this.options=e,this.rootNode={children:[]},this.stack=[this.rootNode]}function Zl(){}Ql.prototype.addText=function(e){var t,n,r=this.stack;&quot;&quot;!==e &amp;&amp;((n=(t=r[r.length-1]).children[t.children.length-1])&amp;&amp;&quot;text &quot;===n.type?n.value+=e:t.children.push({type:&quot;text &quot;,value:e}))},Ql.prototype.addKeyword=function(e,t){this.openNode(t),this.addText(e),this.closeNode()},Ql.prototype.addSublanguage=function(e,t){var n=this.stack,r=n[n.length-1],a=e.rootNode.children;r.children=r.children.concat(t?{type:&quot;element &quot;,tagName:&quot;span &quot;,properties:{className:[t]},children:a}:a)},Ql.prototype.openNode=function(e){var t=this.stack,n={type:&quot;element &quot;,tagName:&quot;span &quot;,properties:{className:[this.options.classPrefix+e]},children:[]};t[t.length-1].children.push(n),t.push(n)},Ql.prototype.closeNode=function(){this.stack.pop()},Ql.prototype.closeAllNodes=Zl,Ql.prototype.finalize=Zl,Ql.prototype.toHTML=function(){return &quot;&quot;};var es={highlight:ql,highlightAuto:function(e,t){var n,r,a,o,i=(t||{}).subset||Gl.listLanguages(),l=i.length,s=-1;if(&quot;string &quot;!=typeof e)throw Xl(&quot;Expected `string` for value, got `%s`&quot;,e);for(r={relevance:0,language:null,value:[]},n={relevance:0,language:null,value:[]};++s &lt;l;)Gl.getLanguage(o=i[s])&amp;&amp;((a=Jl(o,e,t)).language=o,a.relevance &gt;r.relevance &amp;&amp;(r=a),a.relevance &gt;n.relevance &amp;&amp;(r=n,n=a));return r.language &amp;&amp;(n.secondBest=r),n},registerLanguage:function(e,t){Gl.registerLanguage(e,t)},listLanguages:function(){return Gl.listLanguages()},registerAlias:function(e,t){var n,r=e;for(n in t &amp;&amp;((r={})[e]=t),r)Gl.registerAliases(r[n],{languageName:n})}};function ts(e){return e?&quot;string &quot;==typeof e?e:e.source:null}function ns(e){return rs(&quot;(?=&quot;,e,&quot;)&quot;)}function rs(...e){return e.map(e=&gt;ts(e)).join(&quot;&quot;)}function as(...e){return &quot;(&quot;+e.map(e=&gt;ts(e)).join(&quot;|&quot;)+&quot;)&quot;}const os=[&quot;a &quot;,&quot;abbr &quot;,&quot;address &quot;,&quot;article &quot;,&quot;aside &quot;,&quot;audio &quot;,&quot;b &quot;,&quot;blockquote &quot;,&quot;body &quot;,&quot;button &quot;,&quot;canvas &quot;,&quot;caption &quot;,&quot;cite &quot;,&quot;code &quot;,&quot;dd &quot;,&quot;del &quot;,&quot;details &quot;,&quot;dfn &quot;,&quot;div &quot;,&quot;dl &quot;,&quot;dt &quot;,&quot;em &quot;,&quot;fieldset &quot;,&quot;figcaption &quot;,&quot;figure &quot;,&quot;footer &quot;,&quot;form &quot;,&quot;h1 &quot;,&quot;h2 &quot;,&quot;h3 &quot;,&quot;h4 &quot;,&quot;h5 &quot;,&quot;h6 &quot;,&quot;header &quot;,&quot;hgroup &quot;,&quot;html &quot;,&quot;i &quot;,&quot;iframe &quot;,&quot;img &quot;,&quot;input &quot;,&quot;ins &quot;,&quot;kbd &quot;,&quot;label &quot;,&quot;legend &quot;,&quot;li &quot;,&quot;main &quot;,&quot;mark &quot;,&quot;menu &quot;,&quot;nav &quot;,&quot;object &quot;,&quot;ol &quot;,&quot;p &quot;,&quot;q &quot;,&quot;quote &quot;,&quot;samp &quot;,&quot;section &quot;,&quot;span &quot;,&quot;strong &quot;,&quot;summary &quot;,&quot;sup &quot;,&quot;table &quot;,&quot;tbody &quot;,&quot;td &quot;,&quot;textarea &quot;,&quot;tfoot &quot;,&quot;th &quot;,&quot;thead &quot;,&quot;time &quot;,&quot;tr &quot;,&quot;ul &quot;,&quot;var &quot;,&quot;video &quot;],is=[&quot;any-hover &quot;,&quot;any-pointer &quot;,&quot;aspect-ratio &quot;,&quot;color &quot;,&quot;color-gamut &quot;,&quot;color-index &quot;,&quot;device-aspect-ratio &quot;,&quot;device-height &quot;,&quot;device-width &quot;,&quot;display-mode &quot;,&quot;forced-colors &quot;,&quot;grid &quot;,&quot;height &quot;,&quot;hover &quot;,&quot;inverted-colors &quot;,&quot;monochrome &quot;,&quot;orientation &quot;,&quot;overflow-block &quot;,&quot;overflow-inline &quot;,&quot;pointer &quot;,&quot;prefers-color-scheme &quot;,&quot;prefers-contrast &quot;,&quot;prefers-reduced-motion &quot;,&quot;prefers-reduced-transparency &quot;,&quot;resolution &quot;,&quot;scan &quot;,&quot;scripting &quot;,&quot;update &quot;,&quot;width &quot;,&quot;min-width &quot;,&quot;max-width &quot;,&quot;min-height &quot;,&quot;max-height &quot;],ls=[&quot;active &quot;,&quot;any-link &quot;,&quot;blank &quot;,&quot;checked &quot;,&quot;current &quot;,&quot;default &quot;,&quot;defined &quot;,&quot;dir &quot;,&quot;disabled &quot;,&quot;drop &quot;,&quot;empty &quot;,&quot;enabled &quot;,&quot;first &quot;,&quot;first-child &quot;,&quot;first-of-type &quot;,&quot;fullscreen &quot;,&quot;future &quot;,&quot;focus &quot;,&quot;focus-visible &quot;,&quot;focus-within &quot;,&quot;has &quot;,&quot;host &quot;,&quot;host-context &quot;,&quot;hover &quot;,&quot;indeterminate &quot;,&quot;in-range &quot;,&quot;invalid &quot;,&quot;is &quot;,&quot;lang &quot;,&quot;last-child &quot;,&quot;last-of-type &quot;,&quot;left &quot;,&quot;link &quot;,&quot;local-link &quot;,&quot;not &quot;,&quot;nth-child &quot;,&quot;nth-col &quot;,&quot;nth-last-child &quot;,&quot;nth-last-col &quot;,&quot;nth-last-of-type &quot;,&quot;nth-of-type &quot;,&quot;only-child &quot;,&quot;only-of-type &quot;,&quot;optional &quot;,&quot;out-of-range &quot;,&quot;past &quot;,&quot;placeholder-shown &quot;,&quot;read-only &quot;,&quot;read-write &quot;,&quot;required &quot;,&quot;right &quot;,&quot;root &quot;,&quot;scope &quot;,&quot;target &quot;,&quot;target-within &quot;,&quot;user-invalid &quot;,&quot;valid &quot;,&quot;visited &quot;,&quot;where &quot;],ss=[&quot;after &quot;,&quot;backdrop &quot;,&quot;before &quot;,&quot;cue &quot;,&quot;cue-region &quot;,&quot;first-letter &quot;,&quot;first-line &quot;,&quot;grammar-error &quot;,&quot;marker &quot;,&quot;part &quot;,&quot;placeholder &quot;,&quot;selection &quot;,&quot;slotted &quot;,&quot;spelling-error &quot;],cs=[&quot;align-content &quot;,&quot;align-items &quot;,&quot;align-self &quot;,&quot;animation &quot;,&quot;animation-delay &quot;,&quot;animation-direction &quot;,&quot;animation-duration &quot;,&quot;animation-fill-mode &quot;,&quot;animation-iteration-count &quot;,&quot;animation-name &quot;,&quot;animation-play-state &quot;,&quot;animation-timing-function &quot;,&quot;auto &quot;,&quot;backface-visibility &quot;,&quot;background &quot;,&quot;background-attachment &quot;,&quot;background-clip &quot;,&quot;background-color &quot;,&quot;background-image &quot;,&quot;background-origin &quot;,&quot;background-position &quot;,&quot;background-repeat &quot;,&quot;background-size &quot;,&quot;border &quot;,&quot;border-bottom &quot;,&quot;border-bottom-color &quot;,&quot;border-bottom-left-radius &quot;,&quot;border-bottom-right-radius &quot;,&quot;border-bottom-style &quot;,&quot;border-bottom-width &quot;,&quot;border-collapse &quot;,&quot;border-color &quot;,&quot;border-image &quot;,&quot;border-image-outset &quot;,&quot;border-image-repeat &quot;,&quot;border-image-slice &quot;,&quot;border-image-source &quot;,&quot;border-image-width &quot;,&quot;border-left &quot;,&quot;border-left-color &quot;,&quot;border-left-style &quot;,&quot;border-left-width &quot;,&quot;border-radius &quot;,&quot;border-right &quot;,&quot;border-right-color &quot;,&quot;border-right-style &quot;,&quot;border-right-width &quot;,&quot;border-spacing &quot;,&quot;border-style &quot;,&quot;border-top &quot;,&quot;border-top-color &quot;,&quot;border-top-left-radius &quot;,&quot;border-top-right-radius &quot;,&quot;border-top-style &quot;,&quot;border-top-width &quot;,&quot;border-width &quot;,&quot;bottom &quot;,&quot;box-decoration-break &quot;,&quot;box-shadow &quot;,&quot;box-sizing &quot;,&quot;break-after &quot;,&quot;break-before &quot;,&quot;break-inside &quot;,&quot;caption-side &quot;,&quot;clear &quot;,&quot;clip &quot;,&quot;clip-path &quot;,&quot;color &quot;,&quot;column-count &quot;,&quot;column-fill &quot;,&quot;column-gap &quot;,&quot;column-rule &quot;,&quot;column-rule-color &quot;,&quot;column-rule-style &quot;,&quot;column-rule-width &quot;,&quot;column-span &quot;,&quot;column-width &quot;,&quot;columns &quot;,&quot;content &quot;,&quot;counter-increment &quot;,&quot;counter-reset &quot;,&quot;cursor &quot;,&quot;direction &quot;,&quot;display &quot;,&quot;empty-cells &quot;,&quot;filter &quot;,&quot;flex &quot;,&quot;flex-basis &quot;,&quot;flex-direction &quot;,&quot;flex-flow &quot;,&quot;flex-grow &quot;,&quot;flex-shrink &quot;,&quot;flex-wrap &quot;,&quot;float &quot;,&quot;font &quot;,&quot;font-display &quot;,&quot;font-family &quot;,&quot;font-feature-settings &quot;,&quot;font-kerning &quot;,&quot;font-language-override &quot;,&quot;font-size &quot;,&quot;font-size-adjust &quot;,&quot;font-smoothing &quot;,&quot;font-stretch &quot;,&quot;font-style &quot;,&quot;font-variant &quot;,&quot;font-variant-ligatures &quot;,&quot;font-variation-settings &quot;,&quot;font-weight &quot;,&quot;height &quot;,&quot;hyphens &quot;,&quot;icon &quot;,&quot;image-orientation &quot;,&quot;image-rendering &quot;,&quot;image-resolution &quot;,&quot;ime-mode &quot;,&quot;inherit &quot;,&quot;initial &quot;,&quot;justify-content &quot;,&quot;left &quot;,&quot;letter-spacing &quot;,&quot;line-height &quot;,&quot;list-style &quot;,&quot;list-style-image &quot;,&quot;list-style-position &quot;,&quot;list-style-type &quot;,&quot;margin &quot;,&quot;margin-bottom &quot;,&quot;margin-left &quot;,&quot;margin-right &quot;,&quot;margin-top &quot;,&quot;marks &quot;,&quot;mask &quot;,&quot;max-height &quot;,&quot;max-width &quot;,&quot;min-height &quot;,&quot;min-width &quot;,&quot;nav-down &quot;,&quot;nav-index &quot;,&quot;nav-left &quot;,&quot;nav-right &quot;,&quot;nav-up &quot;,&quot;none &quot;,&quot;normal &quot;,&quot;object-fit &quot;,&quot;object-position &quot;,&quot;opacity &quot;,&quot;order &quot;,&quot;orphans &quot;,&quot;outline &quot;,&quot;outline-color &quot;,&quot;outline-offset &quot;,&quot;outline-style &quot;,&quot;outline-width &quot;,&quot;overflow &quot;,&quot;overflow-wrap &quot;,&quot;overflow-x &quot;,&quot;overflow-y &quot;,&quot;padding &quot;,&quot;padding-bottom &quot;,&quot;padding-left &quot;,&quot;padding-right &quot;,&quot;padding-top &quot;,&quot;page-break-after &quot;,&quot;page-break-before &quot;,&quot;page-break-inside &quot;,&quot;perspective &quot;,&quot;perspective-origin &quot;,&quot;pointer-events &quot;,&quot;position &quot;,&quot;quotes &quot;,&quot;resize &quot;,&quot;right &quot;,&quot;src &quot;,&quot;tab-size &quot;,&quot;table-layout &quot;,&quot;text-align &quot;,&quot;text-align-last &quot;,&quot;text-decoration &quot;,&quot;text-decoration-color &quot;,&quot;text-decoration-line &quot;,&quot;text-decoration-style &quot;,&quot;text-indent &quot;,&quot;text-overflow &quot;,&quot;text-rendering &quot;,&quot;text-shadow &quot;,&quot;text-transform &quot;,&quot;text-underline-position &quot;,&quot;top &quot;,&quot;transform &quot;,&quot;transform-origin &quot;,&quot;transform-style &quot;,&quot;transition &quot;,&quot;transition-delay &quot;,&quot;transition-duration &quot;,&quot;transition-property &quot;,&quot;transition-timing-function &quot;,&quot;unicode-bidi &quot;,&quot;vertical-align &quot;,&quot;visibility &quot;,&quot;white-space &quot;,&quot;widows &quot;,&quot;width &quot;,&quot;word-break &quot;,&quot;word-spacing &quot;,&quot;word-wrap &quot;,&quot;z-index &quot;].reverse();function us(e){return e?&quot;string &quot;==typeof e?e:e.source:null}function fs(...e){return e.map(e=&gt;us(e)).join(&quot;&quot;)}const ds=[&quot;as &quot;,&quot;in &quot;,&quot;of &quot;,&quot;if &quot;,&quot;for &quot;,&quot;while &quot;,&quot;finally &quot;,&quot;var &quot;,&quot;new &quot;,&quot;function &quot;,&quot;do &quot;,&quot;return &quot;,&quot;void &quot;,&quot;else &quot;,&quot;break &quot;,&quot;catch &quot;,&quot;instanceof &quot;,&quot;with &quot;,&quot;throw &quot;,&quot;case &quot;,&quot;default &quot;,&quot;try &quot;,&quot;switch &quot;,&quot;continue &quot;,&quot;typeof &quot;,&quot;delete &quot;,&quot;let &quot;,&quot;yield &quot;,&quot;const &quot;,&quot;class &quot;,&quot;debugger &quot;,&quot;async &quot;,&quot;await &quot;,&quot;static &quot;,&quot;import &quot;,&quot;from &quot;,&quot;export &quot;,&quot;extends &quot;],ps=[&quot;true &quot;,&quot;false &quot;,&quot;null &quot;,&quot;undefined &quot;,&quot;NaN &quot;,&quot;Infinity &quot;],ms=[].concat([&quot;setInterval &quot;,&quot;setTimeout &quot;,&quot;clearInterval &quot;,&quot;clearTimeout &quot;,&quot;require &quot;,&quot;exports &quot;,&quot;eval &quot;,&quot;isFinite &quot;,&quot;isNaN &quot;,&quot;parseFloat &quot;,&quot;parseInt &quot;,&quot;decodeURI &quot;,&quot;decodeURIComponent &quot;,&quot;encodeURI &quot;,&quot;encodeURIComponent &quot;,&quot;escape &quot;,&quot;unescape &quot;],[&quot;arguments &quot;,&quot;this &quot;,&quot;super &quot;,&quot;console &quot;,&quot;window &quot;,&quot;document &quot;,&quot;localStorage &quot;,&quot;module &quot;,&quot;global &quot;],[&quot;Intl &quot;,&quot;DataView &quot;,&quot;Number &quot;,&quot;Math &quot;,&quot;Date &quot;,&quot;String &quot;,&quot;RegExp &quot;,&quot;Object &quot;,&quot;Function &quot;,&quot;Boolean &quot;,&quot;Error &quot;,&quot;Symbol &quot;,&quot;Set &quot;,&quot;Map &quot;,&quot;WeakSet &quot;,&quot;WeakMap &quot;,&quot;Proxy &quot;,&quot;Reflect &quot;,&quot;JSON &quot;,&quot;Promise &quot;,&quot;Float64Array &quot;,&quot;Int16Array &quot;,&quot;Int32Array &quot;,&quot;Int8Array &quot;,&quot;Uint16Array &quot;,&quot;Uint32Array &quot;,&quot;Float32Array &quot;,&quot;Array &quot;,&quot;Uint8Array &quot;,&quot;Uint8ClampedArray &quot;,&quot;ArrayBuffer &quot;,&quot;BigInt64Array &quot;,&quot;BigUint64Array &quot;,&quot;BigInt &quot;],[&quot;EvalError &quot;,&quot;InternalError &quot;,&quot;RangeError &quot;,&quot;ReferenceError &quot;,&quot;SyntaxError &quot;,&quot;TypeError &quot;,&quot;URIError &quot;]);function hs(e){return gs(&quot;(?=&quot;,e,&quot;)&quot;)}function gs(...e){return e.map(e=&gt;{return(t=e)?&quot;string &quot;==typeof t?t:t.source:null;var t}).join(&quot;&quot;)}function vs(e){return e?&quot;string &quot;==typeof e?e:e.source:null}function ys(...e){return e.map(e=&gt;vs(e)).join(&quot;&quot;)}function Es(...e){return &quot;(&quot;+e.map(e=&gt;vs(e)).join(&quot;|&quot;)+&quot;)&quot;}var bs,Ts,Ns=(bs=es,Ts={},function(e){var t=e.language,n=e.children,r=e.style,a=void 0===r?Ts:r,o=e.customStyle,i=void 0===o?{}:o,l=e.codeTagProps,s=void 0===l?{className:t?&quot;language-&quot;.concat(t):void 0,style:$i($i({},a[&#039;code[class*=&quot;language-&quot;]&#039;]),a[&#039;code[class*=&quot;language-&#039;.concat(t,&#039;&quot;]&#039;)])}:l,u=e.useInlineStyles,f=void 0===u||u,d=e.showLineNumbers,p=void 0!==d &amp;&amp;d,m=e.showInlineLineNumbers,h=void 0===m||m,g=e.startingLineNumber,v=void 0===g?1:g,y=e.lineNumberContainerStyle,E=e.lineNumberStyle,b=void 0===E?{}:E,T=e.wrapLines,N=e.wrapLongLines,R=void 0!==N &amp;&amp;N,S=e.lineProps,w=void 0===S?{}:S,O=e.renderer,C=e.PreTag,A=void 0===C?&quot;pre &quot;:C,I=e.CodeTag,k=void 0===I?&quot;code &quot;:I,x=e.code,_=void 0===x?(Array.isArray(n)?n[0]:n)||&quot;&quot;:x,L=e.astGenerator,P=function(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||Object.prototype.propertyIsEnumerable.call(e,n)&amp;&amp;(a[n]=e[n])}return a}(e,Gi);L=L||bs;var M=p?/*#__PURE__*/c.createElement(Ki,{containerStyle:y,codeStyle:s.style||{},numberStyle:b,startingLineNumber:v,codeString:_}):null,D=a.hljs||a[&#039;pre[class*=&quot;language-&quot;]&#039;]||{backgroundColor:&quot;#fff &quot;},U=nl(L)?&quot;hljs &quot;:&quot;prismjs &quot;,j=Object.assign({},P,f?{style:Object.assign({},D,i)}:{className:P.className?&quot;&quot;.concat(U,&quot;&quot;).concat(P.className):U,style:Object.assign({},i)});if(s.style=$i($i({},s.style),{},R?{whiteSpace:&quot;pre-wrap &quot;}:{whiteSpace:&quot;pre &quot;}),!L)/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        return c.createElement(A,j,M,/*#__PURE__*/c.createElement(k,s,_));(void 0===T &amp;&amp;O||R)&amp;&amp;(T=!0),O=O||tl;var F=[{type:&quot;text &quot;,value:_}],z=function(e){var t=e.astGenerator,n=e.language,r=e.code,a=e.defaultCodeValue;if(nl(t)){var o=function(e,t){return-1!==e.listLanguages().indexOf(t)}(t,n);return &quot;text &quot;===n?{value:a,language:&quot;text &quot;}:o?t.highlight(n,r):t.highlightAuto(r)}try{return n &amp;&amp;&quot;text &quot;!==n?{value:t.highlight(r,n)}:{value:a}}catch(e){return{value:a}}}({astGenerator:L,language:t,code:_,defaultCodeValue:F});null===z.language &amp;&amp;(z.value=F);var H=el(z,T,w,p,h,v,z.value.length+v,b,R);/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        return c.createElement(A,j,/*#__PURE__*/c.createElement(k,s,!h &amp;&amp;M,O({rows:H,stylesheet:a,useInlineStyles:f})))});Ns.registerLanguage=es.registerLanguage;var Rs=Ns;function Ss(){Ss=function(e,t){return new n(e,void 0,t)};var e=RegExp.prototype,t=new WeakMap;function n(e,r,a){var o=new RegExp(e,r);return t.set(o,a||t.get(e)),Cs(o,n.prototype)}function r(e,n){var r=t.get(n);return Object.keys(r).reduce(function(t,n){return t[n]=e[r[n]],t},Object.create(null))}return Os(n,RegExp),n.prototype.exec=function(t){var n=e.exec.call(this,t);return n &amp;&amp;(n.groups=r(n,this)),n},n.prototype[Symbol.replace]=function(n,a){if(&quot;string &quot;==typeof a){var o=t.get(this);return e[Symbol.replace].call(this,n,a.replace(/\$ &lt;([^&gt;]+)&gt;/g,function(e,t){return &quot;$ &quot;+o[t]}))}if(&quot;function &quot;==typeof a){var i=this;return e[Symbol.replace].call(this,n,function(){var e=arguments;return &quot;object &quot;!=typeof e[e.length-1]&amp;&amp;(e=[].slice.call(e)).push(r(e,i)),a.apply(this,e)})}return e[Symbol.replace].call(this,n,a)},Ss.apply(this,arguments)}function ws(){return(ws=Object.assign||function(e){for(var t=1;t &lt;arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&amp;&amp;(e[r]=n[r])}return e}).apply(this,arguments)}function Os(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,&quot;prototype &quot;,{writable:!1}),t &amp;&amp;Cs(e,t)}function Cs(e,t){return(Cs=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function As(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}const Is=[&quot;children &quot;,&quot;className &quot;];function ks(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,Is);return c.createElement(&quot;button &quot;,ws({type:r.type||&quot;button &quot;,className:`w-6 h-6 rounded-full flex items-center justify-center
            text-xs ~bg-white text-indigo-500 hover:~text-indigo-600 
            transform transition-animation shadow-md hover:shadow-lg
            active:shadow-sm active:translate-y-px &quot;
                ${n}
            `},r),t)}function xs({highlight:e,row:t,frame:n,lineNumber:r}){const a=Fn({file:n.file,lineNumber:r});return c.createElement(&quot;span &quot;,{className:`
                flex group leading-loose hover:~bg-red-500/10
                ${e?&quot;~bg-red-500/20 &quot;:&quot;&quot;}
            `},a &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;z-30 opacity-0 group-hover:opacity-100 sticky left-10 w-0 h-full &quot;},c.createElement(&quot;a &quot;,{href:a,className:&quot;-ml-3 block &quot;},c.createElement(ks,null,c.createElement(oi,{className:&quot;text-xs &quot;,icon:Ti})))),c.createElement(&quot;span &quot;,{className:&quot;pl-6 &quot;},Wi({node:t,useInlineStyles:!1,key:`code-segement-${r}`})))}function _s({frame:e}){const t=Object.values(e.code_snippet).join(&quot;
 &quot;),n=Object.keys(e.code_snippet).map(e=&gt;Number(e)),r=n.indexOf(e.line_number),a=c.useMemo(()=&gt;({rows:t})=&gt;t.map((t,a)=&gt;c.createElement(xs,{key:n[a],frame:e,highlight:a===r,row:t,lineNumber:n[a]})),[e]);return c.createElement(&quot;main &quot;,{className:&quot;flex items-stretch flex-grow overflow-x-auto overflow-y-hidden scrollbar-hidden-x mask-fade-r text-sm &quot;},c.createElement(&quot;nav &quot;,{className:&quot;sticky left-0 flex flex-none z-20 ~bg-white &quot;},c.createElement(&quot;div &quot;,{className:&quot;select-none text-right &quot;},n.map(t=&gt;c.createElement(&quot;p &quot;,{key:t,className:`
                                px-2 font-mono leading-loose select-none
                                ${Number(t)===e.line_number?&quot;text-opacity-75 ~text-red-700 ~bg-red-500/30 &quot;:&quot;&quot;}
                            `},c.createElement(&quot;span &quot;,{className:&quot;~text-gray-500 &quot;},t))))),c.createElement(&quot;div &quot;,{className:&quot;flex-grow pr-10 &quot;},c.createElement(Rs,{language:(o=e.relative_file,o.endsWith(&quot;.blade.php &quot;)?&quot;blade &quot;:o.match(/^resources\/views\//)?&quot;php-template &quot;:&quot;php &quot;),renderer:a,customStyle:{background:&quot;transparent &quot;}},t)));var o}function Ls(e,t){c.useEffect(()=&gt;{function n(n){document.activeElement &amp;&amp;&quot;INPUT &quot;===document.activeElement.tagName||n.key===e &amp;&amp;t(n)}return window.addEventListener(&quot;keyup &quot;,n),()=&gt;{window.removeEventListener(&quot;keyup &quot;,n)}},[e,t])}function Ps(e){return e.map((t,n)=&gt;ws({},t,{frame_number:e.length-n}))}function Ms(e){return e.relative_file.startsWith(&quot;vendor/&quot;)?&quot;vendor &quot;:&quot;unknown &quot;===e.relative_file?&quot;unknown &quot;:&quot;application &quot;}Rs.registerLanguage(&quot;php &quot;,function(e){const t={className:&quot;variable &quot;,begin:&quot;\$+[a-zA-Z_<span class="sf-dump-default"></span> 
        -&#255;][a-zA-Z0-9_<span class="sf-dump-default"></span> 
        -&#255;]*(?![A-Za-z0-9])(?![$])&quot;},n={className:&quot;meta &quot;,variants:[{begin:/&lt;\?php/,relevance:10},{begin:/&lt;\?[=]?/},{begin:/\?&gt;/}]},r={className:&quot;subst &quot;,variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},a=e.inherit(e.APOS_STRING_MODE,{illegal:null}),o=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(r)}),i=e.END_SAME_AS_BEGIN({begin:/&lt;&lt;&lt;[ 	]*(\w+)
/,end:/[ 	]*(\w+)/,contains:e.QUOTE_STRING_MODE.contains.concat(r)}),l={className:&quot;string &quot;,contains:[e.BACKSLASH_ESCAPE,n],variants:[e.inherit(a,{begin:&quot;b &#039;&quot;,end:&quot;&#039;&quot;}),e.inherit(o,{begin:&#039;b &quot;&#039;,end:&#039;&quot;&#039;}),o,a,i]},s={className:&quot;number &quot;,variants:[{begin:&quot;\b0b[01]+(?:_[01]+)*\b &quot;},{begin:&quot;\b0o[0-7]+(?:_[0-7]+)*\b &quot;},{begin:&quot;\b0x[\da-f]+(?:_[\da-f]+)*\b &quot;},{begin:&quot;(?:\b\d+(?:_\d+)*(\.(?:\d+(?:_\d+)*))?|\B\.\d+)(?:e[+-]?\d+)?&quot;}],relevance:0},c={keyword:&quot;__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield &quot;,literal:&quot;false null true &quot;,built_in:&quot;Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass &quot;};return{aliases:[&quot;php3 &quot;,&quot;php4 &quot;,&quot;php5 &quot;,&quot;php6 &quot;,&quot;php7 &quot;,&quot;php8 &quot;],case_insensitive:!0,keywords:c,contains:[e.HASH_COMMENT_MODE,e.COMMENT(&quot;//&quot;,&quot;$ &quot;,{contains:[n]}),e.COMMENT(&quot;/\*&quot;,&quot;\*/&quot;,{contains:[{className:&quot;doctag &quot;,begin:&quot;@[A-Za-z]+&quot;}]}),e.COMMENT(&quot;__halt_compiler.+?;&quot;,!1,{endsWithParent:!0,keywords:&quot;__halt_compiler &quot;}),n,{className:&quot;keyword &quot;,begin:/\$this/},t,{begin:/(::|-&gt;)+[a-zA-Z_-][a-zA-Z0-9_-]*/},{className:&quot;function &quot;,relevance:0,beginKeywords:&quot;fn function &quot;,end:/[;{]/,excludeEnd:!0,illegal:&quot;[$%\[]&quot;,contains:[{beginKeywords:&quot;use &quot;},e.UNDERSCORE_TITLE_MODE,{begin:&quot;=&gt;&quot;,endsParent:!0},{className:&quot;params &quot;,begin:&quot;\(&quot;,end:&quot;\)&quot;,excludeBegin:!0,excludeEnd:!0,keywords:c,contains:[&quot;self &quot;,t,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className:&quot;class &quot;,variants:[{beginKeywords:&quot;enum &quot;,illegal:/[($ &quot;]/},{beginKeywords:&quot;class interface trait &quot;,illegal:/[:($ &quot;]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:&quot;extends implements &quot;},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:&quot;namespace &quot;,relevance:0,end:&quot;;&quot;,illegal:/[.&#039;]/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:&quot;use &quot;,relevance:0,end:&quot;;&quot;,contains:[e.UNDERSCORE_TITLE_MODE]},l,s]}}),Rs.registerLanguage(&quot;php-template &quot;,function(e){return{name:&quot;PHP template &quot;,subLanguage:&quot;xml &quot;,contains:[{begin:/&lt;\?(php|=)?/,end:/\?&gt;/,subLanguage:&quot;php &quot;,contains:[{begin:&quot;/\*&quot;,end:&quot;\*/&quot;,skip:!0},{begin:&#039;b &quot;&#039;,end:&#039;&quot;&#039;,skip:!0},{begin:&quot;b &#039;&quot;,end:&quot;&#039;&quot;,skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}),Rs.registerLanguage(&quot;blade &quot;,function(e){return{name:&quot;Blade &quot;,case_insensitive:!0,subLanguage:&quot;php-template &quot;,contains:[e.COMMENT(/\{\{--/,/--\}\}/),{className:&quot;template-variable &quot;,begin:/\{\{/,starts:{end:/\}\}/,returnEnd:!0,subLanguage:&quot;php &quot;}},{className:&quot;template-variable &quot;,begin:/\}\}/},{className:&quot;template-variable &quot;,begin:/\{\{\{/,starts:{end:/\}\}\}/,returnEnd:!0,subLanguage:&quot;php &quot;}},{className:&quot;template-variable &quot;,begin:/\}\}\}/},{className:&quot;template-variable &quot;,begin:/\{!!/,starts:{end:/!!\}/,returnEnd:!0,subLanguage:&quot;php &quot;}},{className:&quot;template-variable &quot;,begin:/!!\}/},{className:&quot;template-tag &quot;,begin:/@php\(/,starts:{end:/\)/,returnEnd:!0,subLanguage:&quot;php &quot;},relevance:15},{className:&quot;template-tag &quot;,begin:/@php/,starts:{end:/@endphp/,returnEnd:!0,subLanguage:&quot;php &quot;},relevance:10},{className:&quot;attr &quot;,begin:/:[\w-]+=&quot;/,starts:{end:/&quot;(?=\s|
|\/)/,returnEnd:!0,subLanguage:&quot;php &quot;}},{begin:/@\w+/,end:/\W/,excludeEnd:!0,className:&quot;template-tag &quot;}]}}),Rs.registerLanguage(&quot;xml &quot;,function(e){const t=rs(/[A-Z_]/,rs(&quot;(&quot;,/[A-Z0-9_.-]*:/,&quot;)?&quot;),/[A-Z0-9_.-]*/),n={className:&quot;symbol &quot;,begin:/&amp;[a-z]+;|&amp;#[0-9]+;|&amp;#x[a-f0-9]+;/},r={begin:/\s/,contains:[{className:&quot;meta-keyword &quot;,begin:/#?[a-z_][a-z1-9_-]+/,illegal:/
/}]},a=e.inherit(r,{begin:/\(/,end:/\)/}),o=e.inherit(e.APOS_STRING_MODE,{className:&quot;meta-string &quot;}),i=e.inherit(e.QUOTE_STRING_MODE,{className:&quot;meta-string &quot;}),l={endsWithParent:!0,illegal:/&lt;/,relevance:0,contains:[{className:&quot;attr &quot;,begin:/[A-Za-z0-9._:-]+/,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:&quot;string &quot;,endsParent:!0,variants:[{begin:/&quot;/,end:/&quot;/,contains:[n]},{begin:/&#039;/,end:/&#039;/,contains:[n]},{begin:/[^\s &quot;&#039;=&lt;&gt;`]+/}]}]}]};return{name:&quot;HTML, XML &quot;,aliases:[&quot;html &quot;,&quot;xhtml &quot;,&quot;rss &quot;,&quot;atom &quot;,&quot;xjb &quot;,&quot;xsd &quot;,&quot;xsl &quot;,&quot;plist &quot;,&quot;wsf &quot;,&quot;svg &quot;],case_insensitive:!0,contains:[{className:&quot;meta &quot;,begin:/&lt;![a-z]/,end:/&gt;/,relevance:10,contains:[r,i,o,a,{begin:/\[/,end:/\]/,contains:[{className:&quot;meta &quot;,begin:/&lt;![a-z]/,end:/&gt;/,contains:[r,a,i,o]}]}]},e.COMMENT(/&lt;!--/,/--&gt;/,{relevance:10}),{begin:/&lt;!\[CDATA\[/,end:/\]\]&gt;/,relevance:10},n,{className:&quot;meta &quot;,begin:/&lt;\?xml/,end:/\?&gt;/,relevance:10},{className:&quot;tag &quot;,begin:/&lt;style(?=\s|&gt;)/,end:/&gt;/,keywords:{name:&quot;style &quot;},contains:[l],starts:{end:/&lt;\/style &gt;/,returnEnd:!0,subLanguage:[&quot;css &quot;,&quot;xml &quot;]}},{className:&quot;tag &quot;,begin:/&lt;script(?=\s|&gt;)/,end:/&gt;/,keywords:{name:&quot;script &quot;},contains:[l],starts:{end:/&lt;\/script &gt;/,returnEnd:!0,subLanguage:[&quot;javascript &quot;,&quot;handlebars &quot;,&quot;xml &quot;]}},{className:&quot;tag &quot;,begin:/&lt;&gt;|&lt;\/&gt;/},{className:&quot;tag &quot;,begin:rs(/&lt;/,ns(rs(t,as(/\/&gt;/,/&gt;/,/\s/)))),end:/\/?&gt;/,contains:[{className:&quot;name &quot;,begin:t,relevance:0,starts:l}]},{className:&quot;tag &quot;,begin:rs(/&lt;\//,ns(rs(t,/&gt;/))),contains:[{className:&quot;name &quot;,begin:t,relevance:0},{begin:/&gt;/,relevance:0,endsParent:!0}]}]}}),Rs.registerLanguage(&quot;css &quot;,function(e){const t=(e=&gt;({IMPORTANT:{className:&quot;meta &quot;,begin:&quot;!important &quot;},HEXCOLOR:{className:&quot;number &quot;,begin:&quot;#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})&quot;},ATTRIBUTE_SELECTOR_MODE:{className:&quot;selector-attr &quot;,begin:/\[/,end:/\]/,illegal:&quot;$ &quot;,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}))(e),n=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:&quot;CSS &quot;,case_insensitive:!0,illegal:/[=|&#039;\$]/,keywords:{keyframePosition:&quot;from to &quot;},classNameAliases:{keyframePosition:&quot;selector-tag &quot;},contains:[e.C_BLOCK_COMMENT_MODE,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/},e.CSS_NUMBER_MODE,{className:&quot;selector-id &quot;,begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:&quot;selector-class &quot;,begin:&quot;\.[a-zA-Z-][a-zA-Z0-9_-]*&quot;,relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:&quot;selector-pseudo &quot;,variants:[{begin:&quot;:(&quot;+ls.join(&quot;|&quot;)+&quot;)&quot;},{begin:&quot;::(&quot;+ss.join(&quot;|&quot;)+&quot;)&quot;}]},{className:&quot;attribute &quot;,begin:&quot;\b(&quot;+cs.join(&quot;|&quot;)+&quot;)\b &quot;},{begin:&quot;:&quot;,end:&quot;[;}]&quot;,contains:[t.HEXCOLOR,t.IMPORTANT,e.CSS_NUMBER_MODE,...n,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:&quot;url data-uri &quot;},contains:[{className:&quot;string &quot;,begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},{className:&quot;built_in &quot;,begin:/[\w-]+(?=\()/}]},{begin:(r=/@/,function(...e){return e.map(e=&gt;function(e){return e?&quot;string &quot;==typeof e?e:e.source:null}(e)).join(&quot;&quot;)}(&quot;(?=&quot;,r,&quot;)&quot;)),end:&quot;[{;]&quot;,relevance:0,illegal:/:/,contains:[{className:&quot;keyword &quot;,begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:&quot;and or not only &quot;,attribute:is.join(&quot;&quot;)},contains:[{begin:/[a-z-]+(?=:)/,className:&quot;attribute &quot;},...n,e.CSS_NUMBER_MODE]}]},{className:&quot;selector-tag &quot;,begin:&quot;\b(&quot;+os.join(&quot;|&quot;)+&quot;)\b &quot;}]};var r}),Rs.registerLanguage(&quot;javascript &quot;,function(e){const t=&quot;[A-Za-z$_][0-9A-Za-z$_]*&quot;,n={begin:/&lt;[A-Za-z0-9\._:-]+/,end:/\/[A-Za-z0-9\._:-]+&gt;|\/&gt;/,isTrulyOpeningTag:(e,t)=&gt;{const n=e[0].length+e.index,r=e.input[n];&quot;&lt;&quot;!==r?&quot;&gt;&quot;===r &amp;&amp;(((e,{after:t})=&gt;{const n=&quot;&lt;/&quot;+e[0].slice(1);return-1!==e.input.indexOf(n,t)})(e,{after:n})||t.ignoreMatch()):t.ignoreMatch()}},r={$pattern:&quot;[A-Za-z$_][0-9A-Za-z$_]*&quot;,keyword:ds,literal:ps,built_in:ms},a=&quot;\.([0-9](_?[0-9])*)&quot;,o=&quot;0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*&quot;,i={className:&quot;number &quot;,variants:[{begin:`(\b(${o})((${a})|\.)?|(${a}))[eE][+-]?([0-9](_?[0-9])*)\b`},{begin:`\b(${o})\b((${a})\b|\.)?|(${a})\b`},{begin:&quot;\b(0|[1-9](_?[0-9])*)n\b &quot;},{begin:&quot;\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\b &quot;},{begin:&quot;\b0[bB][0-1](_?[0-1])*n?\b &quot;},{begin:&quot;\b0[oO][0-7](_?[0-7])*n?\b &quot;},{begin:&quot;\b0[0-7]+n?\b &quot;}],relevance:0},l={className:&quot;subst &quot;,begin:&quot;\$\{&quot;,end:&quot;\}&quot;,keywords:r,contains:[]},s={begin:&quot;html`&quot;,end:&quot;&quot;,starts:{end:&quot;`&quot;,returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,l],subLanguage:&quot;xml &quot;}},c={begin:&quot;css`&quot;,end:&quot;&quot;,starts:{end:&quot;`&quot;,returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,l],subLanguage:&quot;css &quot;}},u={className:&quot;string &quot;,begin:&quot;`&quot;,end:&quot;`&quot;,contains:[e.BACKSLASH_ESCAPE,l]},f={className:&quot;comment &quot;,variants:[e.COMMENT(/\/\*\*(?!\/)/,&quot;\*/&quot;,{relevance:0,contains:[{className:&quot;doctag &quot;,begin:&quot;@[A-Za-z]+&quot;,contains:[{className:&quot;type &quot;,begin:&quot;\{&quot;,end:&quot;\}&quot;,relevance:0},{className:&quot;variable &quot;,begin:t+&quot;(?=\s*(-)|$)&quot;,endsParent:!0,relevance:0},{begin:/(?=[^
])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},d=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,s,c,u,i,e.REGEXP_MODE];l.contains=d.concat({begin:/\{/,end:/\}/,keywords:r,contains:[&quot;self &quot;].concat(d)});const p=[].concat(f,l.contains),m=p.concat([{begin:/\(/,end:/\)/,keywords:r,contains:[&quot;self &quot;].concat(p)}]),h={className:&quot;params &quot;,begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:m};return{name:&quot;Javascript &quot;,aliases:[&quot;js &quot;,&quot;jsx &quot;,&quot;mjs &quot;,&quot;cjs &quot;],keywords:r,exports:{PARAMS_CONTAINS:m},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:&quot;shebang &quot;,binary:&quot;node &quot;,relevance:5}),{label:&quot;use_strict &quot;,className:&quot;meta &quot;,relevance:10,begin:/^\s*[&#039;&quot;]use (strict|asm)[&#039;&quot;]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,s,c,u,f,i,{begin:gs(/[{,
]\s*/,hs(gs(/(((\/\/.*$)|(\/\*(\*[^/]|[^*])*\*\/))\s*)*/,t+&quot;\s*:&quot;))),relevance:0,contains:[{className:&quot;attr &quot;,begin:t+hs(&quot;\s*:&quot;),relevance:0}]},{begin:&quot;(&quot;+e.RE_STARTERS_RE+&quot;|\b(case|return|throw)\b)\s*&quot;,keywords:&quot;return throw case &quot;,contains:[f,e.REGEXP_MODE,{className:&quot;function &quot;,begin:&quot;(\([^()]*(\([^()]*(\([^()]*\)[^()]*)*\)[^()]*)*\)|&quot;+e.UNDERSCORE_IDENT_RE+&quot;)\s*=&gt;&quot;,returnBegin:!0,end:&quot;\s*=&gt;&quot;,contains:[{className:&quot;params &quot;,variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:m}]}]},{begin:/,/,relevance:0},{className:&quot;&quot;,begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:&quot;&lt;&gt;&quot;,end:&quot;&lt;/&gt;&quot;},{begin:n.begin,&quot;on:begin &quot;:n.isTrulyOpeningTag,end:n.end}],subLanguage:&quot;xml &quot;,contains:[{begin:n.begin,end:n.end,skip:!0,contains:[&quot;self &quot;]}]}],relevance:0},{className:&quot;function &quot;,beginKeywords:&quot;function &quot;,end:/[{;]/,excludeEnd:!0,keywords:r,contains:[&quot;self &quot;,e.inherit(e.TITLE_MODE,{begin:t}),h],illegal:/%/},{beginKeywords:&quot;while if switch catch for &quot;},{className:&quot;function &quot;,begin:e.UNDERSCORE_IDENT_RE+&quot;\([^()]*(\([^()]*(\([^()]*\)[^()]*)*\)[^()]*)*\)\s*\{&quot;,returnBegin:!0,contains:[h,e.inherit(e.TITLE_MODE,{begin:t})]},{variants:[{begin:&quot;\.&quot;+t},{begin:&quot;\$ &quot;+t}],relevance:0},{className:&quot;class &quot;,beginKeywords:&quot;class &quot;,end:/[{;=]/,excludeEnd:!0,illegal:/[:&quot;[\]]/,contains:[{beginKeywords:&quot;extends &quot;},e.UNDERSCORE_TITLE_MODE]},{begin:/(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:t}),&quot;self &quot;,h]},{begin:&quot;(get|set)\s+(?=&quot;+t+&quot;\()&quot;,end:/\{/,keywords:&quot;get set &quot;,contains:[e.inherit(e.TITLE_MODE,{begin:t}),{begin:/\(\)/},h]},{begin:/\$[(.]/}]}}),Rs.registerLanguage(&quot;handlebars &quot;,function(e){const t={&quot;builtin-name &quot;:[&quot;action &quot;,&quot;bindattr &quot;,&quot;collection &quot;,&quot;component &quot;,&quot;concat &quot;,&quot;debugger &quot;,&quot;each &quot;,&quot;each-in &quot;,&quot;get &quot;,&quot;hash &quot;,&quot;if &quot;,&quot;in &quot;,&quot;input &quot;,&quot;link-to &quot;,&quot;loc &quot;,&quot;log &quot;,&quot;lookup &quot;,&quot;mut &quot;,&quot;outlet &quot;,&quot;partial &quot;,&quot;query-params &quot;,&quot;render &quot;,&quot;template &quot;,&quot;textarea &quot;,&quot;unbound &quot;,&quot;unless &quot;,&quot;view &quot;,&quot;with &quot;,&quot;yield &quot;]},n=/\[\]|\[[^\]]+\]/,r=/[^\s!&quot;#%&amp;&#039;()*+,.\/;&lt;=&gt;@\[\\]^`{|}~]+/,a=function(...e){return &quot;(&quot;+e.map(e=&gt;us(e)).join(&quot;|&quot;)+&quot;)&quot;}(/&quot;&quot;|&quot;[^&quot;]+&quot;/,/&#039;&#039;|&#039;[^&#039;]+&#039;/,n,r),o=fs(fs(&quot;(&quot;,/\.|\.\/|\//,&quot;)?&quot;),a,(d=fs(/(\.|\/)/,a),fs(&quot;(&quot;,d,&quot;)*&quot;))),i=fs(&quot;(&quot;,n,&quot;|&quot;,r,&quot;)(?==)&quot;),l={begin:o,lexemes:/[\w.\/]+/},s=e.inherit(l,{keywords:{literal:[&quot;true &quot;,&quot;false &quot;,&quot;undefined &quot;,&quot;null &quot;]}}),c={begin:/\(/,end:/\)/},u={contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:/as\s+\|/,keywords:{keyword:&quot;as &quot;},end:/\|/,contains:[{begin:/\w+/}]},{className:&quot;attr &quot;,begin:i,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,s,c]}}},s,c],returnEnd:!0},f=e.inherit(l,{className:&quot;name &quot;,keywords:t,starts:e.inherit(u,{end:/\)/})});var d;c.contains=[f];const p=e.inherit(l,{keywords:t,className:&quot;name &quot;,starts:e.inherit(u,{end:/\}\}/})}),m=e.inherit(l,{keywords:t,className:&quot;name &quot;}),h=e.inherit(l,{className:&quot;name &quot;,keywords:t,starts:e.inherit(u,{end:/\}\}/})});return{name:&quot;Handlebars &quot;,aliases:[&quot;hbs &quot;,&quot;html.hbs &quot;,&quot;html.handlebars &quot;,&quot;htmlbars &quot;],case_insensitive:!0,subLanguage:&quot;xml &quot;,contains:[{begin:/\\{\{/,skip:!0},{begin:/\\(?=\{\{)/,skip:!0},e.COMMENT(/\{\{!--/,/--\}\}/),e.COMMENT(/\{\{!/,/\}\}/),{className:&quot;template-tag &quot;,begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[p],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:&quot;xml &quot;}},{className:&quot;template-tag &quot;,begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[m]},{className:&quot;template-tag &quot;,begin:/\{\{#/,end:/\}\}/,contains:[p]},{className:&quot;template-tag &quot;,begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:&quot;else &quot;},{className:&quot;template-tag &quot;,begin:/\{\{(?=else if)/,end:/\}\}/,keywords:&quot;else if &quot;},{className:&quot;template-tag &quot;,begin:/\{\{\//,end:/\}\}/,contains:[m]},{className:&quot;template-variable &quot;,begin:/\{\{\{/,end:/\}\}\}/,contains:[h]},{className:&quot;template-variable &quot;,begin:/\{\{/,end:/\}\}/,contains:[h]}]}});var Ds=function(e,t,n,r){for(var a=e.length,o=n+(r?1:-1);r?o--:++o &lt;a;)if(t(e[o],o,e))return o;return-1},Us=function(e){return e!=e},js=function(e,t){return!(null==e||!e.length)&amp;&amp;function(e,t,n){return t==t?function(e,t,n){for(var r=-1,a=e.length;++r &lt;a;)if(e[r]===t)return r;return-1}(e,t):Ds(e,Us,0)}(e,t)&gt;-1},Fs=an &amp;&amp;1/Gt(new an([,-0]))[1]==1/0?function(e){return new an(e)}:be,zs=function(e){return e &amp;&amp;e.length?function(e,t,n){var r=-1,a=js,o=e.length,i=!0,l=[],s=l;if(o &gt;=200){var c=Fs(e);if(c)return Gt(c);i=!1,a=Ht,s=new Ft}else s=l;e:for(;++r &lt;o;){var u=e[r],f=u;if(u=0!==u?u:0,i &amp;&amp;f==f){for(var d=s.length;d--;)if(s[d]===f)continue e;l.push(u)}else a(s,f,void 0)||(s!==l &amp;&amp;s.push(f),l.push(u))}return l}(e):[]};function Hs(e,t){switch(t.type){case &quot;EXPAND_FRAMES &quot;:return ws({},e,{expanded:zs([...e.expanded,...t.frames])});case &quot;EXPAND_ALL_VENDOR_FRAMES &quot;:return ws({},e,{expanded:Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number)});case &quot;COLLAPSE_ALL_VENDOR_FRAMES &quot;:{const t=Ps(e.frames).filter(e=&gt;!e.relative_file.startsWith(&quot;vendor/&quot;)&amp;&amp;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number);return ws({},e,{expanded:zs([...t])})}case &quot;SELECT_FRAME &quot;:{const n=Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number).includes(t.frame)?t.frame:e.selected;return ws({},e,{expanded:zs([...e.expanded,n]),selected:n})}case &quot;SELECT_NEXT_FRAME &quot;:{const t=Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number),n=t.indexOf(e.selected),r=n===t.length-1?t[0]:t[n+1];return ws({},e,{expanded:zs([...e.expanded,r]),selected:r})}case &quot;SELECT_PREVIOUS_FRAME &quot;:{const t=Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number),n=t.indexOf(e.selected),r=0===n?t[t.length-1]:t[n-1];return ws({},e,{expanded:zs([...e.expanded,r]),selected:r})}default:return e}}const Bs={type:&quot;application &quot;,relative_file:&quot;&quot;,expanded:!0,frames:[]};function Vs({path:e,lineNumber:t=null}){const n=e.split(&quot;\&quot;),r=String.fromCharCode(8201);return c.createElement(&quot;span &quot;,{className:&quot;inline-flex flex-wrap items-baseline &quot;},n.map((e,t)=&gt;c.createElement(c.Fragment,{key:t},c.createElement(&quot;span &quot;,{key:t},e),t!==n.length-1 &amp;&amp;c.createElement(&quot;span &quot;,null,r,&quot;\&quot;,r))),t &amp;&amp;c.createElement(c.Fragment,null,r,c.createElement(&quot;span &quot;,{className:&quot;whitespace-nowrap &quot;},&quot;:&quot;,r,c.createElement(&quot;span &quot;,{className:&quot;font-mono text-xs &quot;},t))))}function Ws({path:e,lineNumber:t=null}){var n;const{application_path:r}=c.useContext(Ee),a=e.replace(r+&quot;/&quot;,&quot;&quot;).replace(/\/Users\/.*?\//,&quot;~/&quot;).split(&quot;/&quot;),o=(null==(n=a.pop())?void 0:n.split(&quot;.&quot;))||[],i=o.pop(),l=o.join(&quot;.&quot;),s=String.fromCharCode(8201);return c.createElement(&quot;span &quot;,{className:&quot;inline-flex flex-wrap items-baseline &quot;},a.map((e,t)=&gt;c.createElement(c.Fragment,{key:t},c.createElement(&quot;span &quot;,{key:t},e),c.createElement(&quot;span &quot;,null,s,&quot;/&quot;,s))),c.createElement(&quot;span &quot;,{className:&quot;font-semibold &quot;},l),c.createElement(&quot;span &quot;,null,&quot;.&quot;,i),t &amp;&amp;c.createElement(c.Fragment,null,s,c.createElement(&quot;span &quot;,{className:&quot;whitespace-nowrap &quot;},&quot;:&quot;,s,c.createElement(&quot;span &quot;,{className:&quot;font-mono text-xs &quot;},t))))}function Gs({frameGroup:e,onExpand:t,onSelect:n}){return &quot;vendor &quot;!==e.type||e.expanded?c.createElement(c.Fragment,null,e.frames.map((e,t)=&gt;c.createElement(c.Fragment,{key:t},c.createElement(&quot;li &quot;,{key:e.frame_number,className:`px-6 sm:px-10 py-4
                            ${e.selected?&quot;bg-red-500 text-white &quot;:&quot;cursor-pointer border-b ~border-gray-200 hover:~bg-red-500/10 &quot;}
                        `,onClick:()=&gt;n(e.frame_number)},c.createElement(&quot;div &quot;,{className:&quot;flex items-baseline &quot;},e.class?c.createElement(Vs,{path:e.class,lineNumber:e.line_number}):c.createElement(Ws,{path:e.file,lineNumber:e.line_number})),c.createElement(&quot;div &quot;,{className:&quot;font-semibold &quot;},e.method)),e.selected &amp;&amp;c.createElement(&quot;li &quot;,{className:&quot;z-10 mt-[-4px] sticky top-0 bg-red-500 h-[4px]&quot;})))):c.createElement(&quot;li &quot;,{className:&quot;group cursor-pointer px-6 sm:px-10 py-4 flex gap-2 lg:justify-start border-b ~border-gray-200 hover:~bg-gray-500/5 items-center &quot;,onClick:t},e.frames.length &gt;1?`${e.frames.length} vendor frames`:&quot;1 vendor frame &quot;,c.createElement(oi,{icon:li,className:&quot;~text-gray-500 group-hover:text-indigo-500 &quot;}))}function Ys({path:e,lineNumber:t,className:n}){const r=Fn({file:e,lineNumber:t});return c.createElement(&quot;a &quot;,{href:r||&quot;#&quot;,className:`hover:underline ${n}`},c.createElement(Ws,{path:e,lineNumber:t}))}parseInt;var $s=Math.max;const Xs=[&quot;children &quot;,&quot;className &quot;];function Ks(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,Xs);return c.createElement(&quot;button &quot;,ws({type:r.type||&quot;button &quot;,className:`group inline-flex gap-2 items-center h-6 px-2 rounded-sm ~bg-white shadow text-xs font-medium whitespace-nowrap
            transform
            transition-animation
            hover:shadow-md
            active:shadow-inner
            active:translate-y-px
                ${n}
            `},r),t)}function qs({openFrameIndex:e}){const{frames:t}=c.useContext(Ee),n=c.useMemo(()=&gt;{let n=1;const r=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var a=0;return a &lt;0 &amp;&amp;(a=$s(r+a,0)),Ds(e,jn(e=&gt;&quot;application &quot;===Ms(e)),a)}(t);return-1!==r &amp;&amp;(n=t.length-r),e &amp;&amp;(n=t.length-e),Hs({frames:t,expanded:[],selected:n},{type:&quot;COLLAPSE_ALL_VENDOR_FRAMES &quot;})},[t]),[r,a]=c.useReducer(Hs,n),o=c.useMemo(()=&gt;function(e){return Ps(e.frames).filter(e=&gt;&quot;vendor &quot;===Ms(e)).every(t=&gt;e.expanded.includes(t.frame_number))}(r),[r]),i=c.useMemo(()=&gt;function({frames:e,selected:t,expanded:n}){return e.reduce((r,a,o)=&gt;{const i={current:a,previous:r[r.length-1]||Bs,isFirstFrame:0===o,frameNumber:e.length-o,expanded:n,selected:t};return i.expanded.includes(i.frameNumber)?r.concat(function(e){return e.current.relative_file!==e.previous.relative_file?[{type:Ms(e.current),relative_file:e.current.relative_file,expanded:!0,frames:[ws({},e.current,{frame_number:e.frameNumber,selected:e.selected===e.frameNumber})]}]:(e.previous.frames.push(ws({},e.current,{frame_number:e.frameNumber,selected:e.selected===e.frameNumber})),[])}(i)):r.concat(function(e){const t=Ms(e.current);return e.previous.expanded||t!==e.previous.type?[{type:t,relative_file:e.current.relative_file,expanded:!1,frames:[ws({},e.current,{frame_number:e.frameNumber,selected:e.selected===e.frameNumber})]}]:(e.previous.frames.push(ws({},e.current,{selected:!1,frame_number:e.frameNumber})),[])}(i))},[])}(r),[r]),l=c.useMemo(()=&gt;function(e){const t=Ps(e.frames);return t.find(t=&gt;t.frame_number===e.selected)||t[0]||null}(r),[r]);return Ls(&quot;j &quot;,()=&gt;{a({type:&quot;SELECT_NEXT_FRAME &quot;})}),Ls(&quot;k &quot;,()=&gt;{a({type:&quot;SELECT_PREVIOUS_FRAME &quot;})}),c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 lg:grid-cols-[33.33%,66.66%] lg:grid-rows-[57rem] items-stretch bg-white dark:shadow-none dark:bg-gray-800/50 dark:bg-gradient-to-bl from-gray-700/50 via-transparent dark:ring-1 dark:ring-inset dark:ring-white/5 rounded-lg shadow-2xl shadow-gray-500/20 overflow-hidden &quot;},c.createElement(&quot;aside &quot;,{className:&quot;z-30 flex flex-col border-r ~border-gray-200 &quot;},c.createElement(&quot;div &quot;,{className:&quot;max-h-[33vh] lg:max-h-[none] lg:absolute inset-0 flex flex-col overflow-hidden ~bg-white &quot;},c.createElement(&quot;header &quot;,{className:&quot;flex-none px-6 sm:px-10 h-16 flex items-center justify-start ~bg-white border-b ~border-gray-200 &quot;},c.createElement(Ks,{onClick:()=&gt;a({type:o?&quot;COLLAPSE_ALL_VENDOR_FRAMES &quot;:&quot;EXPAND_ALL_VENDOR_FRAMES &quot;})},c.createElement(&quot;div &quot;,{className:&quot;flex &quot;+(o?&quot;flex-col-reverse &quot;:&quot;flex-col &quot;)},c.createElement(oi,{icon:si,className:&quot;-my-px text-[8px] ~text-gray-500 group-hover:text-indigo-500 &quot;}),c.createElement(oi,{icon:li,className:&quot;-my-px text-[8px] ~text-gray-500 group-hover:text-indigo-500 &quot;})),o?&quot;Collapse vendor frames &quot;:&quot;Expand vendor frames &quot;)),c.createElement(&quot;div &quot;,{id:&quot;frames &quot;,className:&quot;flex-grow overflow-auto scrollbar-hidden-y mask-fade-frames &quot;},c.createElement(&quot;ol &quot;,{className:&quot;text-sm pb-16 &quot;},i.map((e,t)=&gt;c.createElement(Gs,{key:t,frameGroup:e,onExpand:()=&gt;a({type:&quot;EXPAND_FRAMES &quot;,frames:e.frames.map(e=&gt;e.frame_number)}),onSelect:e=&gt;{a({type:&quot;SELECT_FRAME &quot;,frame:e})}})))))),c.createElement(&quot;section &quot;,{className:&quot;flex flex-col border-t lg:border-t-0 ~border-gray-200 &quot;},l &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;header &quot;,{className:&quot;~text-gray-500 flex-none z-30 h-16 px-6 sm:px-10 flex items-center justify-end &quot;},c.createElement(Ys,{path:l.file,lineNumber:l.line_number,className:&quot;flex items-center text-sm &quot;})),c.createElement(_s,{frame:l}))))}function Js({message:e,className:t=&quot;&quot;}){const[n,r]=c.useState(!1);return c.createElement(&quot;div &quot;,{className:`
                my-4 font-semibold leading-snug text-xl
                ${t}
            `,onClick:function(){var e;n &amp;&amp;null!=(e=window.getSelection())&amp;&amp;e.toString().length||r(!n)}},c.createElement(&quot;div &quot;,{className:n?&quot;line-clamp-none &quot;:&quot;line-clamp-2 &quot;},e))}var Qs=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0,t.default={WORD:&quot;word &quot;,STRING:&quot;string &quot;,RESERVED:&quot;reserved &quot;,RESERVED_TOP_LEVEL:&quot;reserved-top-level &quot;,RESERVED_TOP_LEVEL_NO_INDENT:&quot;reserved-top-level-no-indent &quot;,RESERVED_NEWLINE:&quot;reserved-newline &quot;,OPERATOR:&quot;operator &quot;,OPEN_PAREN:&quot;open-paren &quot;,CLOSE_PAREN:&quot;close-paren &quot;,LINE_COMMENT:&quot;line-comment &quot;,BLOCK_COMMENT:&quot;block-comment &quot;,NUMBER:&quot;number &quot;,PLACEHOLDER:&quot;placeholder &quot;},e.exports=t.default}),Zs=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.sortByLengthDesc=t.escapeRegExp=t.isEmpty=t.last=t.trimSpacesEnd=void 0,t.trimSpacesEnd=function(e){return e.replace(/[	 ]+$/,&quot;&quot;)},t.last=function(e){return e[e.length-1]},t.isEmpty=function(e){return!Array.isArray(e)||0===e.length},t.escapeRegExp=function(e){return e.replace(/[\$\(-\+\.\?\[-\^\{-\}]/g,&quot;\$ &amp;&quot;)},t.sortByLengthDesc=function(e){return e.sort(function(e,t){return t.length-e.length||e.localeCompare(t)})}}),ec=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var n=&quot;top-level &quot;;t.default=/*#__PURE__*/function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.indent=t||&quot;&quot;,this.indentTypes=[]}var t;return(t=[{key:&quot;getIndent &quot;,value:function(){return this.indent.repeat(this.indentTypes.length)}},{key:&quot;increaseTopLevel &quot;,value:function(){this.indentTypes.push(n)}},{key:&quot;increaseBlockLevel &quot;,value:function(){this.indentTypes.push(&quot;block-level &quot;)}},{key:&quot;decreaseTopLevel &quot;,value:function(){this.indentTypes.length &gt;0 &amp;&amp;(0,Zs.last)(this.indentTypes)===n &amp;&amp;this.indentTypes.pop()}},{key:&quot;decreaseBlockLevel &quot;,value:function(){for(;this.indentTypes.length &gt;0 &amp;&amp;this.indentTypes.pop()===n;);}},{key:&quot;resetIndentation &quot;,value:function(){this.indentTypes=[]}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),tc=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var n,r=(n=Qs)&amp;&amp;n.__esModule?n:{default:n};t.default=/*#__PURE__*/function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.level=0}var t;return(t=[{key:&quot;beginIfPossible &quot;,value:function(e,t){0===this.level &amp;&amp;this.isInlineBlock(e,t)?this.level=1:this.level &gt;0?this.level++:this.level=0}},{key:&quot;end &quot;,value:function(){this.level--}},{key:&quot;isActive &quot;,value:function(){return this.level &gt;0}},{key:&quot;isInlineBlock &quot;,value:function(e,t){for(var n=0,a=0,o=t;o &lt;e.length;o++){var i=e[o];if((n+=i.value.length)&gt;50)return!1;if(i.type===r.default.OPEN_PAREN)a++;else if(i.type===r.default.CLOSE_PAREN &amp;&amp;0==--a)return!0;if(this.isForbiddenToken(i))return!1}return!1}},{key:&quot;isForbiddenToken &quot;,value:function(e){var t=e.type;return t===r.default.RESERVED_TOP_LEVEL||t===r.default.RESERVED_NEWLINE||t===r.default.COMMENT||t===r.default.BLOCK_COMMENT||&quot;;&quot;===e.value}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),nc=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0,t.default=/*#__PURE__*/function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.params=t,this.index=0}var t;return(t=[{key:&quot;get &quot;,value:function(e){var t=e.key,n=e.value;return this.params?t?this.params[t]:this.params[this.index++]:n}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),rc=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.isEnd=t.isWindow=t.isBy=t.isSet=t.isLimit=t.isBetween=t.isAnd=void 0;var n,r=(n=Qs)&amp;&amp;n.__esModule?n:{default:n},a=function(e,t){return function(n){return(null==n?void 0:n.type)===e &amp;&amp;t.test(null==n?void 0:n.value)}},o=a(r.default.RESERVED_NEWLINE,/^AND$/i);t.isAnd=o;var i=a(r.default.RESERVED,/^BETWEEN$/i);t.isBetween=i;var l=a(r.default.RESERVED_TOP_LEVEL,/^LIMIT$/i);t.isLimit=l;var s=a(r.default.RESERVED_TOP_LEVEL,/^[S]ET$/i);t.isSet=s;var c=a(r.default.RESERVED,/^BY$/i);t.isBy=c;var u=a(r.default.RESERVED_TOP_LEVEL,/^WINDOW$/i);t.isWindow=u;var f=a(r.default.CLOSE_PAREN,/^END$/i);t.isEnd=f}),ac=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var n=i(Qs),r=i(ec),a=i(tc),o=i(nc);function i(e){return e &amp;&amp;e.__esModule?e:{default:e}}function l(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}t.default=/*#__PURE__*/function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.cfg=t,this.indentation=new r.default(this.cfg.indent),this.inlineBlock=new a.default,this.params=new o.default(this.cfg.params),this.previousReservedToken={},this.tokens=[],this.index=0}var t;return(t=[{key:&quot;tokenizer &quot;,value:function(){throw new Error(&quot;tokenizer() not implemented by subclass &quot;)}},{key:&quot;tokenOverride &quot;,value:function(e){return e}},{key:&quot;format &quot;,value:function(e){return this.tokens=this.tokenizer().tokenize(e),this.getFormattedQueryFromTokens().trim()}},{key:&quot;getFormattedQueryFromTokens &quot;,value:function(){var e=this,t=&quot;&quot;;return this.tokens.forEach(function(r,a){e.index=a,(r=e.tokenOverride(r)).type===n.default.LINE_COMMENT?t=e.formatLineComment(r,t):r.type===n.default.BLOCK_COMMENT?t=e.formatBlockComment(r,t):r.type===n.default.RESERVED_TOP_LEVEL?(t=e.formatTopLevelReservedWord(r,t),e.previousReservedToken=r):r.type===n.default.RESERVED_TOP_LEVEL_NO_INDENT?(t=e.formatTopLevelReservedWordNoIndent(r,t),e.previousReservedToken=r):r.type===n.default.RESERVED_NEWLINE?(t=e.formatNewlineReservedWord(r,t),e.previousReservedToken=r):r.type===n.default.RESERVED?(t=e.formatWithSpaces(r,t),e.previousReservedToken=r):t=r.type===n.default.OPEN_PAREN?e.formatOpeningParentheses(r,t):r.type===n.default.CLOSE_PAREN?e.formatClosingParentheses(r,t):r.type===n.default.PLACEHOLDER?e.formatPlaceholder(r,t):&quot;,&quot;===r.value?e.formatComma(r,t):&quot;:&quot;===r.value?e.formatWithSpaceAfter(r,t):&quot;.&quot;===r.value?e.formatWithoutSpaces(r,t):&quot;;&quot;===r.value?e.formatQuerySeparator(r,t):e.formatWithSpaces(r,t)}),t}},{key:&quot;formatLineComment &quot;,value:function(e,t){return this.addNewline(t+this.show(e))}},{key:&quot;formatBlockComment &quot;,value:function(e,t){return this.addNewline(this.addNewline(t)+this.indentComment(e.value))}},{key:&quot;indentComment &quot;,value:function(e){return e.replace(/
[	 ]*/g,&quot;
 &quot;+this.indentation.getIndent()+&quot;&quot;)}},{key:&quot;formatTopLevelReservedWordNoIndent &quot;,value:function(e,t){return this.indentation.decreaseTopLevel(),t=this.addNewline(t)+this.equalizeWhitespace(this.show(e)),this.addNewline(t)}},{key:&quot;formatTopLevelReservedWord &quot;,value:function(e,t){return this.indentation.decreaseTopLevel(),t=this.addNewline(t),this.indentation.increaseTopLevel(),t+=this.equalizeWhitespace(this.show(e)),this.addNewline(t)}},{key:&quot;formatNewlineReservedWord &quot;,value:function(e,t){return(0,rc.isAnd)(e)&amp;&amp;(0,rc.isBetween)(this.tokenLookBehind(2))?this.formatWithSpaces(e,t):this.addNewline(t)+this.equalizeWhitespace(this.show(e))+&quot;&quot;}},{key:&quot;equalizeWhitespace &quot;,value:function(e){return e.replace(/[	-
 -]+/g,&quot;&quot;)}},{key:&quot;formatOpeningParentheses &quot;,value:function(e,t){var r,a,o=(l(r={},n.default.OPEN_PAREN,!0),l(r,n.default.LINE_COMMENT,!0),l(r,n.default.OPERATOR,!0),r);return 0!==e.whitespaceBefore.length||o[null===(a=this.tokenLookBehind())||void 0===a?void 0:a.type]||(t=(0,Zs.trimSpacesEnd)(t)),t+=this.show(e),this.inlineBlock.beginIfPossible(this.tokens,this.index),this.inlineBlock.isActive()||(this.indentation.increaseBlockLevel(),t=this.addNewline(t)),t}},{key:&quot;formatClosingParentheses &quot;,value:function(e,t){return this.inlineBlock.isActive()?(this.inlineBlock.end(),this.formatWithSpaceAfter(e,t)):(this.indentation.decreaseBlockLevel(),this.formatWithSpaces(e,this.addNewline(t)))}},{key:&quot;formatPlaceholder &quot;,value:function(e,t){return t+this.params.get(e)+&quot;&quot;}},{key:&quot;formatComma &quot;,value:function(e,t){return t=(0,Zs.trimSpacesEnd)(t)+this.show(e)+&quot;&quot;,this.inlineBlock.isActive()||(0,rc.isLimit)(this.previousReservedToken)?t:this.addNewline(t)}},{key:&quot;formatWithSpaceAfter &quot;,value:function(e,t){return(0,Zs.trimSpacesEnd)(t)+this.show(e)+&quot;&quot;}},{key:&quot;formatWithoutSpaces &quot;,value:function(e,t){return(0,Zs.trimSpacesEnd)(t)+this.show(e)}},{key:&quot;formatWithSpaces &quot;,value:function(e,t){return t+this.show(e)+&quot;&quot;}},{key:&quot;formatQuerySeparator &quot;,value:function(e,t){return this.indentation.resetIndentation(),(0,Zs.trimSpacesEnd)(t)+this.show(e)+&quot;
 &quot;.repeat(this.cfg.linesBetweenQueries||1)}},{key:&quot;show &quot;,value:function(e){var t=e.type,r=e.value;return!this.cfg.uppercase||t!==n.default.RESERVED &amp;&amp;t!==n.default.RESERVED_TOP_LEVEL &amp;&amp;t!==n.default.RESERVED_TOP_LEVEL_NO_INDENT &amp;&amp;t!==n.default.RESERVED_NEWLINE &amp;&amp;t!==n.default.OPEN_PAREN &amp;&amp;t!==n.default.CLOSE_PAREN?r:r.toUpperCase()}},{key:&quot;addNewline &quot;,value:function(e){return(e=(0,Zs.trimSpacesEnd)(e)).endsWith(&quot;
 &quot;)||(e+=&quot;
 &quot;),e+this.indentation.getIndent()}},{key:&quot;tokenLookBehind &quot;,value:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:1;return this.tokens[this.index-e]}},{key:&quot;tokenLookAhead &quot;,value:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:1;return this.tokens[this.index+e]}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default});function oc(e){var t={&quot;``&quot;:&quot;((`[^`]*($|`))+)&quot;,&quot;{}&quot;:&quot;((\{[^\}]*($|\}))+)&quot;,&quot;[]&quot;:&quot;((\[[^\]]*($|\]))(\][^\]]*($|\]))*)&quot;,&#039;&quot;&quot;&#039;:&#039;((&quot;[^&quot;\\]*(?:\\.[^&quot;\\]*)*(&quot;|$))+)&#039;,&quot;&#039;&#039;&quot;:&quot;((&#039;[^&#039;\\]*(?:\\.[^&#039;\\]*)*(&#039;|$))+)&quot;,&quot;N &#039;&#039;&quot;:&quot;((N &#039;[^&#039;\\]*(?:\\.[^&#039;\\]*)*(&#039;|$))+)&quot;,&quot;U &amp;&#039;&#039;&quot;:&quot;((U &amp;&#039;[^&#039;\\]*(?:\\.[^&#039;\\]*)*(&#039;|$))+)&quot;,&#039;U &amp;&quot;&quot;&#039;:&#039;((U &amp;&quot;[^&quot;\\]*(?:\\.[^&quot;\\]*)*(&quot;|$))+)&#039;,$$:&quot;((?&lt;tag &gt;\$\w*\$)[\s\S]*?(?:\k &lt;tag &gt;|$))&quot;};return e.map(function(e){return t[e]}).join(&quot;|&quot;)}function ic(e){return 1===e.length?(0,Zs.escapeRegExp)(e):&quot;\b &quot;+e+&quot;\b &quot;}var lc=/*#__PURE__*/Object.defineProperty({createOperatorRegex:function(e){return new RegExp(&quot;^(&quot;.concat((0,Zs.sortByLengthDesc)(e).map(Zs.escapeRegExp).join(&quot;|&quot;),&quot;|.)&quot;),&quot;u &quot;)},createLineCommentRegex:function(e){return new RegExp(&quot;^((?:&quot;.concat(e.map(function(e){return(0,Zs.escapeRegExp)(e)}).join(&quot;|&quot;),&quot;).*?)(?:
|
|
|$)&quot;),&quot;u &quot;)},createReservedWordRegex:function(e){if(0===e.length)return new RegExp(&quot;^$ &quot;,&quot;u &quot;);var t=(0,Zs.sortByLengthDesc)(e).join(&quot;|&quot;).replace(/ /g,&quot;\s+&quot;);return new RegExp(&quot;^(&quot;.concat(t,&quot;)\b &quot;),&quot;iu &quot;)},createWordRegex:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:[];return new RegExp(&quot;^([\p{Alphabetic}\p{Mark}\p{Decimal_Number}\p{Connector_Punctuation}\p{Join_Control}&quot;.concat(e.join(&quot;&quot;),&quot;]+)&quot;),&quot;u &quot;)},createStringRegex:function(e){return new RegExp(&quot;^(&quot;+oc(e)+&quot;)&quot;,&quot;u &quot;)},createStringPattern:oc,createParenRegex:function(e){return new RegExp(&quot;^(&quot;+e.map(ic).join(&quot;|&quot;)+&quot;)&quot;,&quot;iu &quot;)},createPlaceholderRegex:function(e,t){if((0,Zs.isEmpty)(e))return!1;var n=e.map(Zs.escapeRegExp).join(&quot;|&quot;);return new RegExp(&quot;^((?:&quot;.concat(n,&quot;)(?:&quot;).concat(t,&quot;))&quot;),&quot;u &quot;)}},&quot;__esModule &quot;,{value:!0}),sc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r,a=(r=Qs)&amp;&amp;r.__esModule?r:{default:r},o=function(e){if(e &amp;&amp;e.__esModule)return e;if(null===e||&quot;object &quot;!==n(e)&amp;&amp;&quot;function &quot;!=typeof e)return{default:e};var t=i();if(t &amp;&amp;t.has(e))return t.get(e);var r={},a=Object.defineProperty &amp;&amp;Object.getOwnPropertyDescriptor;for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){var l=a?Object.getOwnPropertyDescriptor(e,o):null;l &amp;&amp;(l.get||l.set)?Object.defineProperty(r,o,l):r[o]=e[o]}return r.default=e,t &amp;&amp;t.set(e,r),r}(lc);function i(){if(&quot;function &quot;!=typeof WeakMap)return null;var e=new WeakMap;return i=function(){return e},e}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?l(Object(n),!0).forEach(function(t){c(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function c(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function u(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}t.default=/*#__PURE__*/function(){function e(t){var n;!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.WHITESPACE_REGEX=/^([	-
 -]+)/,this.NUMBER_REGEX=/^((-[	-
 -]*)?[0-9]+(\.[0-9]+)?([Ee]-?[0-9]+(\.[0-9]+)?)?|0x[0-9A-Fa-f]+|0b[01]+)/,this.OPERATOR_REGEX=o.createOperatorRegex([&quot;&lt;&gt;&quot;,&quot;&lt;=&quot;,&quot;&gt;=&quot;].concat(function(e){if(Array.isArray(e))return u(e)}(n=t.operators||[])||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;Symbol.iterator in Object(e))return Array.from(e)}(n)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(e,t):void 0}}(n)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}())),this.BLOCK_COMMENT_REGEX=/^(\/\*(?:(?![])[\s\S])*?(?:\*\/|$))/,this.LINE_COMMENT_REGEX=o.createLineCommentRegex(t.lineCommentTypes),this.RESERVED_TOP_LEVEL_REGEX=o.createReservedWordRegex(t.reservedTopLevelWords),this.RESERVED_TOP_LEVEL_NO_INDENT_REGEX=o.createReservedWordRegex(t.reservedTopLevelWordsNoIndent),this.RESERVED_NEWLINE_REGEX=o.createReservedWordRegex(t.reservedNewlineWords),this.RESERVED_PLAIN_REGEX=o.createReservedWordRegex(t.reservedWords),this.WORD_REGEX=o.createWordRegex(t.specialWordChars),this.STRING_REGEX=o.createStringRegex(t.stringTypes),this.OPEN_PAREN_REGEX=o.createParenRegex(t.openParens),this.CLOSE_PAREN_REGEX=o.createParenRegex(t.closeParens),this.INDEXED_PLACEHOLDER_REGEX=o.createPlaceholderRegex(t.indexedPlaceholderTypes,&quot;[0-9]*&quot;),this.IDENT_NAMED_PLACEHOLDER_REGEX=o.createPlaceholderRegex(t.namedPlaceholderTypes,&quot;[a-zA-Z0-9._$]+&quot;),this.STRING_NAMED_PLACEHOLDER_REGEX=o.createPlaceholderRegex(t.namedPlaceholderTypes,o.createStringPattern(t.stringTypes))}var t;return(t=[{key:&quot;tokenize &quot;,value:function(e){for(var t,n=[];e.length;){var r=this.getWhitespace(e);(e=e.substring(r.length)).length &amp;&amp;(t=this.getNextToken(e,t),e=e.substring(t.value.length),n.push(s(s({},t),{},{whitespaceBefore:r})))}return n}},{key:&quot;getWhitespace &quot;,value:function(e){var t=e.match(this.WHITESPACE_REGEX);return t?t[1]:&quot;&quot;}},{key:&quot;getNextToken &quot;,value:function(e,t){return this.getCommentToken(e)||this.getStringToken(e)||this.getOpenParenToken(e)||this.getCloseParenToken(e)||this.getPlaceholderToken(e)||this.getNumberToken(e)||this.getReservedWordToken(e,t)||this.getWordToken(e)||this.getOperatorToken(e)}},{key:&quot;getCommentToken &quot;,value:function(e){return this.getLineCommentToken(e)||this.getBlockCommentToken(e)}},{key:&quot;getLineCommentToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.LINE_COMMENT,regex:this.LINE_COMMENT_REGEX})}},{key:&quot;getBlockCommentToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.BLOCK_COMMENT,regex:this.BLOCK_COMMENT_REGEX})}},{key:&quot;getStringToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.STRING,regex:this.STRING_REGEX})}},{key:&quot;getOpenParenToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.OPEN_PAREN,regex:this.OPEN_PAREN_REGEX})}},{key:&quot;getCloseParenToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.CLOSE_PAREN,regex:this.CLOSE_PAREN_REGEX})}},{key:&quot;getPlaceholderToken &quot;,value:function(e){return this.getIdentNamedPlaceholderToken(e)||this.getStringNamedPlaceholderToken(e)||this.getIndexedPlaceholderToken(e)}},{key:&quot;getIdentNamedPlaceholderToken &quot;,value:function(e){return this.getPlaceholderTokenWithKey({input:e,regex:this.IDENT_NAMED_PLACEHOLDER_REGEX,parseKey:function(e){return e.slice(1)}})}},{key:&quot;getStringNamedPlaceholderToken &quot;,value:function(e){var t=this;return this.getPlaceholderTokenWithKey({input:e,regex:this.STRING_NAMED_PLACEHOLDER_REGEX,parseKey:function(e){return t.getEscapedPlaceholderKey({key:e.slice(2,-1),quoteChar:e.slice(-1)})}})}},{key:&quot;getIndexedPlaceholderToken &quot;,value:function(e){return this.getPlaceholderTokenWithKey({input:e,regex:this.INDEXED_PLACEHOLDER_REGEX,parseKey:function(e){return e.slice(1)}})}},{key:&quot;getPlaceholderTokenWithKey &quot;,value:function(e){var t=e.parseKey,n=this.getTokenOnFirstMatch({input:e.input,regex:e.regex,type:a.default.PLACEHOLDER});return n &amp;&amp;(n.key=t(n.value)),n}},{key:&quot;getEscapedPlaceholderKey &quot;,value:function(e){var t=e.quoteChar;return e.key.replace(new RegExp((0,Zs.escapeRegExp)(&quot;\&quot;+t),&quot;gu &quot;),t)}},{key:&quot;getNumberToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.NUMBER,regex:this.NUMBER_REGEX})}},{key:&quot;getOperatorToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.OPERATOR,regex:this.OPERATOR_REGEX})}},{key:&quot;getReservedWordToken &quot;,value:function(e,t){if(!t||!t.value||&quot;.&quot;!==t.value)return this.getTopLevelReservedToken(e)||this.getNewlineReservedToken(e)||this.getTopLevelReservedTokenNoIndent(e)||this.getPlainReservedToken(e)}},{key:&quot;getTopLevelReservedToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED_TOP_LEVEL,regex:this.RESERVED_TOP_LEVEL_REGEX})}},{key:&quot;getNewlineReservedToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED_NEWLINE,regex:this.RESERVED_NEWLINE_REGEX})}},{key:&quot;getTopLevelReservedTokenNoIndent &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED_TOP_LEVEL_NO_INDENT,regex:this.RESERVED_TOP_LEVEL_NO_INDENT_REGEX})}},{key:&quot;getPlainReservedToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED,regex:this.RESERVED_PLAIN_REGEX})}},{key:&quot;getWordToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.WORD,regex:this.WORD_REGEX})}},{key:&quot;getTokenOnFirstMatch &quot;,value:function(e){var t=e.type,n=e.input.match(e.regex);return n?{type:t,value:n[1]}:void 0}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),cc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ABS &quot;,&quot;ACTIVATE &quot;,&quot;ALIAS &quot;,&quot;ALL &quot;,&quot;ALLOCATE &quot;,&quot;ALLOW &quot;,&quot;ALTER &quot;,&quot;ANY &quot;,&quot;ARE &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASENSITIVE &quot;,&quot;ASSOCIATE &quot;,&quot;ASUTIME &quot;,&quot;ASYMMETRIC &quot;,&quot;AT &quot;,&quot;ATOMIC &quot;,&quot;ATTRIBUTES &quot;,&quot;AUDIT &quot;,&quot;AUTHORIZATION &quot;,&quot;AUX &quot;,&quot;AUXILIARY &quot;,&quot;AVG &quot;,&quot;BEFORE &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BUFFERPOOL &quot;,&quot;BY &quot;,&quot;CACHE &quot;,&quot;CALL &quot;,&quot;CALLED &quot;,&quot;CAPTURE &quot;,&quot;CARDINALITY &quot;,&quot;CASCADED &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CCSID &quot;,&quot;CEIL &quot;,&quot;CEILING &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHARACTER_LENGTH &quot;,&quot;CHAR_LENGTH &quot;,&quot;CHECK &quot;,&quot;CLOB &quot;,&quot;CLONE &quot;,&quot;CLOSE &quot;,&quot;CLUSTER &quot;,&quot;COALESCE &quot;,&quot;COLLATE &quot;,&quot;COLLECT &quot;,&quot;COLLECTION &quot;,&quot;COLLID &quot;,&quot;COLUMN &quot;,&quot;COMMENT &quot;,&quot;COMMIT &quot;,&quot;CONCAT &quot;,&quot;CONDITION &quot;,&quot;CONNECT &quot;,&quot;CONNECTION &quot;,&quot;CONSTRAINT &quot;,&quot;CONTAINS &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;CORR &quot;,&quot;CORRESPONDING &quot;,&quot;COUNT &quot;,&quot;COUNT_BIG &quot;,&quot;COVAR_POP &quot;,&quot;COVAR_SAMP &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CUBE &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_DEFAULT_TRANSFORM_GROUP &quot;,&quot;CURRENT_LC_CTYPE &quot;,&quot;CURRENT_PATH &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_SCHEMA &quot;,&quot;CURRENT_SERVER &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_TIMEZONE &quot;,&quot;CURRENT_TRANSFORM_GROUP_FOR_TYPE &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;CYCLE &quot;,&quot;DATA &quot;,&quot;DATABASE &quot;,&quot;DATAPARTITIONNAME &quot;,&quot;DATAPARTITIONNUM &quot;,&quot;DATE &quot;,&quot;DAY &quot;,&quot;DAYS &quot;,&quot;DB2GENERAL &quot;,&quot;DB2GENRL &quot;,&quot;DB2SQL &quot;,&quot;DBINFO &quot;,&quot;DBPARTITIONNAME &quot;,&quot;DBPARTITIONNUM &quot;,&quot;DEALLOCATE &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DEFAULTS &quot;,&quot;DEFINITION &quot;,&quot;DELETE &quot;,&quot;DENSERANK &quot;,&quot;DENSE_RANK &quot;,&quot;DEREF &quot;,&quot;DESCRIBE &quot;,&quot;DESCRIPTOR &quot;,&quot;DETERMINISTIC &quot;,&quot;DIAGNOSTICS &quot;,&quot;DISABLE &quot;,&quot;DISALLOW &quot;,&quot;DISCONNECT &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DOCUMENT &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DSSIZE &quot;,&quot;DYNAMIC &quot;,&quot;EACH &quot;,&quot;EDITPROC &quot;,&quot;ELEMENT &quot;,&quot;ELSE &quot;,&quot;ELSEIF &quot;,&quot;ENABLE &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTION &quot;,&quot;END &quot;,&quot;END-EXEC &quot;,&quot;ENDING &quot;,&quot;ERASE &quot;,&quot;ESCAPE &quot;,&quot;EVERY &quot;,&quot;EXCEPTION &quot;,&quot;EXCLUDING &quot;,&quot;EXCLUSIVE &quot;,&quot;EXEC &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXP &quot;,&quot;EXPLAIN &quot;,&quot;EXTENDED &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FENCED &quot;,&quot;FETCH &quot;,&quot;FIELDPROC &quot;,&quot;FILE &quot;,&quot;FILTER &quot;,&quot;FINAL &quot;,&quot;FIRST &quot;,&quot;FLOAT &quot;,&quot;FLOOR &quot;,&quot;FOR &quot;,&quot;FOREIGN &quot;,&quot;FREE &quot;,&quot;FULL &quot;,&quot;FUNCTION &quot;,&quot;FUSION &quot;,&quot;GENERAL &quot;,&quot;GENERATED &quot;,&quot;GET &quot;,&quot;GLOBAL &quot;,&quot;GOTO &quot;,&quot;GRANT &quot;,&quot;GRAPHIC &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;HANDLER &quot;,&quot;HASH &quot;,&quot;HASHED_VALUE &quot;,&quot;HINT &quot;,&quot;HOLD &quot;,&quot;HOUR &quot;,&quot;HOURS &quot;,&quot;IDENTITY &quot;,&quot;IF &quot;,&quot;IMMEDIATE &quot;,&quot;IN &quot;,&quot;INCLUDING &quot;,&quot;INCLUSIVE &quot;,&quot;INCREMENT &quot;,&quot;INDEX &quot;,&quot;INDICATOR &quot;,&quot;INDICATORS &quot;,&quot;INF &quot;,&quot;INFINITY &quot;,&quot;INHERIT &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTEGRITY &quot;,&quot;INTERSECTION &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;ISOBID &quot;,&quot;ISOLATION &quot;,&quot;ITERATE &quot;,&quot;JAR &quot;,&quot;JAVA &quot;,&quot;KEEP &quot;,&quot;KEY &quot;,&quot;LABEL &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LATERAL &quot;,&quot;LC_CTYPE &quot;,&quot;LEADING &quot;,&quot;LEAVE &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LINKTYPE &quot;,&quot;LN &quot;,&quot;LOCAL &quot;,&quot;LOCALDATE &quot;,&quot;LOCALE &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCATOR &quot;,&quot;LOCATORS &quot;,&quot;LOCK &quot;,&quot;LOCKMAX &quot;,&quot;LOCKSIZE &quot;,&quot;LONG &quot;,&quot;LOOP &quot;,&quot;LOWER &quot;,&quot;MAINTAINED &quot;,&quot;MATCH &quot;,&quot;MATERIALIZED &quot;,&quot;MAX &quot;,&quot;MAXVALUE &quot;,&quot;MEMBER &quot;,&quot;MERGE &quot;,&quot;METHOD &quot;,&quot;MICROSECOND &quot;,&quot;MICROSECONDS &quot;,&quot;MIN &quot;,&quot;MINUTE &quot;,&quot;MINUTES &quot;,&quot;MINVALUE &quot;,&quot;MOD &quot;,&quot;MODE &quot;,&quot;MODIFIES &quot;,&quot;MODULE &quot;,&quot;MONTH &quot;,&quot;MONTHS &quot;,&quot;MULTISET &quot;,&quot;NAN &quot;,&quot;NATIONAL &quot;,&quot;NATURAL &quot;,&quot;NCHAR &quot;,&quot;NCLOB &quot;,&quot;NEW &quot;,&quot;NEW_TABLE &quot;,&quot;NEXTVAL &quot;,&quot;NO &quot;,&quot;NOCACHE &quot;,&quot;NOCYCLE &quot;,&quot;NODENAME &quot;,&quot;NODENUMBER &quot;,&quot;NOMAXVALUE &quot;,&quot;NOMINVALUE &quot;,&quot;NONE &quot;,&quot;NOORDER &quot;,&quot;NORMALIZE &quot;,&quot;NORMALIZED &quot;,&quot;NOT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NULLS &quot;,&quot;NUMERIC &quot;,&quot;NUMPARTS &quot;,&quot;OBID &quot;,&quot;OCTET_LENGTH &quot;,&quot;OF &quot;,&quot;OFFSET &quot;,&quot;OLD &quot;,&quot;OLD_TABLE &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPEN &quot;,&quot;OPTIMIZATION &quot;,&quot;OPTIMIZE &quot;,&quot;OPTION &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;OVERLAPS &quot;,&quot;OVERLAY &quot;,&quot;OVERRIDING &quot;,&quot;PACKAGE &quot;,&quot;PADDED &quot;,&quot;PAGESIZE &quot;,&quot;PARAMETER &quot;,&quot;PART &quot;,&quot;PARTITION &quot;,&quot;PARTITIONED &quot;,&quot;PARTITIONING &quot;,&quot;PARTITIONS &quot;,&quot;PASSWORD &quot;,&quot;PATH &quot;,&quot;PERCENTILE_CONT &quot;,&quot;PERCENTILE_DISC &quot;,&quot;PERCENT_RANK &quot;,&quot;PIECESIZE &quot;,&quot;PLAN &quot;,&quot;POSITION &quot;,&quot;POWER &quot;,&quot;PRECISION &quot;,&quot;PREPARE &quot;,&quot;PREVVAL &quot;,&quot;PRIMARY &quot;,&quot;PRIQTY &quot;,&quot;PRIVILEGES &quot;,&quot;PROCEDURE &quot;,&quot;PROGRAM &quot;,&quot;PSID &quot;,&quot;PUBLIC &quot;,&quot;QUERY &quot;,&quot;QUERYNO &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;READ &quot;,&quot;READS &quot;,&quot;REAL &quot;,&quot;RECOVERY &quot;,&quot;RECURSIVE &quot;,&quot;REF &quot;,&quot;REFERENCES &quot;,&quot;REFERENCING &quot;,&quot;REFRESH &quot;,&quot;REGR_AVGX &quot;,&quot;REGR_AVGY &quot;,&quot;REGR_COUNT &quot;,&quot;REGR_INTERCEPT &quot;,&quot;REGR_R2 &quot;,&quot;REGR_SLOPE &quot;,&quot;REGR_SXX &quot;,&quot;REGR_SXY &quot;,&quot;REGR_SYY &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEAT &quot;,&quot;RESET &quot;,&quot;RESIGNAL &quot;,&quot;RESTART &quot;,&quot;RESTRICT &quot;,&quot;RESULT &quot;,&quot;RESULT_SET_LOCATOR &quot;,&quot;RETURN &quot;,&quot;RETURNS &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLE &quot;,&quot;ROLLBACK &quot;,&quot;ROLLUP &quot;,&quot;ROUND_CEILING &quot;,&quot;ROUND_DOWN &quot;,&quot;ROUND_FLOOR &quot;,&quot;ROUND_HALF_DOWN &quot;,&quot;ROUND_HALF_EVEN &quot;,&quot;ROUND_HALF_UP &quot;,&quot;ROUND_UP &quot;,&quot;ROUTINE &quot;,&quot;ROW &quot;,&quot;ROWNUMBER &quot;,&quot;ROWS &quot;,&quot;ROWSET &quot;,&quot;ROW_NUMBER &quot;,&quot;RRN &quot;,&quot;RUN &quot;,&quot;SAVEPOINT &quot;,&quot;SCHEMA &quot;,&quot;SCOPE &quot;,&quot;SCRATCHPAD &quot;,&quot;SCROLL &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SECONDS &quot;,&quot;SECQTY &quot;,&quot;SECURITY &quot;,&quot;SENSITIVE &quot;,&quot;SEQUENCE &quot;,&quot;SESSION &quot;,&quot;SESSION_USER &quot;,&quot;SIGNAL &quot;,&quot;SIMILAR &quot;,&quot;SIMPLE &quot;,&quot;SMALLINT &quot;,&quot;SNAN &quot;,&quot;SOME &quot;,&quot;SOURCE &quot;,&quot;SPECIFIC &quot;,&quot;SPECIFICTYPE &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLID &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQRT &quot;,&quot;STACKED &quot;,&quot;STANDARD &quot;,&quot;START &quot;,&quot;STARTING &quot;,&quot;STATEMENT &quot;,&quot;STATIC &quot;,&quot;STATMENT &quot;,&quot;STAY &quot;,&quot;STDDEV_POP &quot;,&quot;STDDEV_SAMP &quot;,&quot;STOGROUP &quot;,&quot;STORES &quot;,&quot;STYLE &quot;,&quot;SUBMULTISET &quot;,&quot;SUBSTRING &quot;,&quot;SUM &quot;,&quot;SUMMARY &quot;,&quot;SYMMETRIC &quot;,&quot;SYNONYM &quot;,&quot;SYSFUN &quot;,&quot;SYSIBM &quot;,&quot;SYSPROC &quot;,&quot;SYSTEM &quot;,&quot;SYSTEM_USER &quot;,&quot;TABLE &quot;,&quot;TABLESAMPLE &quot;,&quot;TABLESPACE &quot;,&quot;THEN &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TIMEZONE_HOUR &quot;,&quot;TIMEZONE_MINUTE &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSACTION &quot;,&quot;TRANSLATE &quot;,&quot;TRANSLATION &quot;,&quot;TREAT &quot;,&quot;TRIGGER &quot;,&quot;TRIM &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;TYPE &quot;,&quot;UESCAPE &quot;,&quot;UNDO &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNNEST &quot;,&quot;UNTIL &quot;,&quot;UPPER &quot;,&quot;USAGE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALIDPROC &quot;,&quot;VALUE &quot;,&quot;VARCHAR &quot;,&quot;VARIABLE &quot;,&quot;VARIANT &quot;,&quot;VARYING &quot;,&quot;VAR_POP &quot;,&quot;VAR_SAMP &quot;,&quot;VCAT &quot;,&quot;VERSION &quot;,&quot;VIEW &quot;,&quot;VOLATILE &quot;,&quot;VOLUMES &quot;,&quot;WHEN &quot;,&quot;WHENEVER &quot;,&quot;WHILE &quot;,&quot;WIDTH_BUCKET &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WITHOUT &quot;,&quot;WLM &quot;,&quot;WRITE &quot;,&quot;XMLELEMENT &quot;,&quot;XMLEXISTS &quot;,&quot;XMLNAMESPACES &quot;,&quot;YEAR &quot;,&quot;YEARS &quot;],f=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FETCH FIRST &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;GO &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INTERSECT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;OR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;,&quot;[]&quot;],openParens:[&quot;(&quot;],closeParens:[&quot;)&quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;:&quot;],lineCommentTypes:[&quot;--&quot;],specialWordChars:[&quot;#&quot;,&quot;@&quot;],operators:[&quot;**&quot;,&quot;!=&quot;,&quot;!&gt;&quot;,&quot;!&gt;&quot;,&quot;||&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),uc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ACCESSIBLE &quot;,&quot;ADD &quot;,&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASENSITIVE &quot;,&quot;BEFORE &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CHANGE &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHECK &quot;,&quot;COLLATE &quot;,&quot;COLUMN &quot;,&quot;CONDITION &quot;,&quot;CONSTRAINT &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;DATABASE &quot;,&quot;DATABASES &quot;,&quot;DAY_HOUR &quot;,&quot;DAY_MICROSECOND &quot;,&quot;DAY_MINUTE &quot;,&quot;DAY_SECOND &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DELAYED &quot;,&quot;DELETE &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DETERMINISTIC &quot;,&quot;DISTINCT &quot;,&quot;DISTINCTROW &quot;,&quot;DIV &quot;,&quot;DO_DOMAIN_IDS &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DUAL &quot;,&quot;EACH &quot;,&quot;ELSE &quot;,&quot;ELSEIF &quot;,&quot;ENCLOSED &quot;,&quot;ESCAPED &quot;,&quot;EXCEPT &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXPLAIN &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FLOAT &quot;,&quot;FLOAT4 &quot;,&quot;FLOAT8 &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FOREIGN &quot;,&quot;FROM &quot;,&quot;FULLTEXT &quot;,&quot;GENERAL &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;HAVING &quot;,&quot;HIGH_PRIORITY &quot;,&quot;HOUR_MICROSECOND &quot;,&quot;HOUR_MINUTE &quot;,&quot;HOUR_SECOND &quot;,&quot;IF &quot;,&quot;IGNORE &quot;,&quot;IGNORE_DOMAIN_IDS &quot;,&quot;IGNORE_SERVER_IDS &quot;,&quot;IN &quot;,&quot;INDEX &quot;,&quot;INFILE &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INT1 &quot;,&quot;INT2 &quot;,&quot;INT3 &quot;,&quot;INT4 &quot;,&quot;INT8 &quot;,&quot;INTEGER &quot;,&quot;INTERSECT &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;ITERATE &quot;,&quot;JOIN &quot;,&quot;KEY &quot;,&quot;KEYS &quot;,&quot;KILL &quot;,&quot;LEADING &quot;,&quot;LEAVE &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LINEAR &quot;,&quot;LINES &quot;,&quot;LOAD &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCK &quot;,&quot;LONG &quot;,&quot;LONGBLOB &quot;,&quot;LONGTEXT &quot;,&quot;LOOP &quot;,&quot;LOW_PRIORITY &quot;,&quot;MASTER_HEARTBEAT_PERIOD &quot;,&quot;MASTER_SSL_VERIFY_SERVER_CERT &quot;,&quot;MATCH &quot;,&quot;MAXVALUE &quot;,&quot;MEDIUMBLOB &quot;,&quot;MEDIUMINT &quot;,&quot;MEDIUMTEXT &quot;,&quot;MIDDLEINT &quot;,&quot;MINUTE_MICROSECOND &quot;,&quot;MINUTE_SECOND &quot;,&quot;MOD &quot;,&quot;MODIFIES &quot;,&quot;NATURAL &quot;,&quot;NOT &quot;,&quot;NO_WRITE_TO_BINLOG &quot;,&quot;NULL &quot;,&quot;NUMERIC &quot;,&quot;ON &quot;,&quot;OPTIMIZE &quot;,&quot;OPTION &quot;,&quot;OPTIONALLY &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OUTFILE &quot;,&quot;OVER &quot;,&quot;PAGE_CHECKSUM &quot;,&quot;PARSE_VCOL_EXPR &quot;,&quot;PARTITION &quot;,&quot;POSITION &quot;,&quot;PRECISION &quot;,&quot;PRIMARY &quot;,&quot;PROCEDURE &quot;,&quot;PURGE &quot;,&quot;RANGE &quot;,&quot;READ &quot;,&quot;READS &quot;,&quot;READ_WRITE &quot;,&quot;REAL &quot;,&quot;RECURSIVE &quot;,&quot;REF_SYSTEM_ID &quot;,&quot;REFERENCES &quot;,&quot;REGEXP &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEAT &quot;,&quot;REPLACE &quot;,&quot;REQUIRE &quot;,&quot;RESIGNAL &quot;,&quot;RESTRICT &quot;,&quot;RETURN &quot;,&quot;RETURNING &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;RLIKE &quot;,&quot;ROWS &quot;,&quot;SCHEMA &quot;,&quot;SCHEMAS &quot;,&quot;SECOND_MICROSECOND &quot;,&quot;SELECT &quot;,&quot;SENSITIVE &quot;,&quot;SEPARATOR &quot;,&quot;SET &quot;,&quot;SHOW &quot;,&quot;SIGNAL &quot;,&quot;SLOW &quot;,&quot;SMALLINT &quot;,&quot;SPATIAL &quot;,&quot;SPECIFIC &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQL_BIG_RESULT &quot;,&quot;SQL_CALC_FOUND_ROWS &quot;,&quot;SQL_SMALL_RESULT &quot;,&quot;SSL &quot;,&quot;STARTING &quot;,&quot;STATS_AUTO_RECALC &quot;,&quot;STATS_PERSISTENT &quot;,&quot;STATS_SAMPLE_PAGES &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;TABLE &quot;,&quot;TERMINATED &quot;,&quot;THEN &quot;,&quot;TINYBLOB &quot;,&quot;TINYINT &quot;,&quot;TINYTEXT &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;UNDO &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNLOCK &quot;,&quot;UNSIGNED &quot;,&quot;UPDATE &quot;,&quot;USAGE &quot;,&quot;USE &quot;,&quot;USING &quot;,&quot;UTC_DATE &quot;,&quot;UTC_TIME &quot;,&quot;UTC_TIMESTAMP &quot;,&quot;VALUES &quot;,&quot;VARBINARY &quot;,&quot;VARCHAR &quot;,&quot;VARCHARACTER &quot;,&quot;VARYING &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHILE &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WRITE &quot;,&quot;XOR &quot;,&quot;YEAR_MONTH &quot;,&quot;ZEROFILL &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;NATURAL LEFT JOIN &quot;,&quot;NATURAL LEFT OUTER JOIN &quot;,&quot;NATURAL RIGHT JOIN &quot;,&quot;NATURAL RIGHT OUTER JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&quot;``&quot;,&quot;&#039;&#039;&quot;,&#039;&quot;&quot;&#039;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[],lineCommentTypes:[&quot;--&quot;,&quot;#&quot;],specialWordChars:[&quot;@&quot;],operators:[&quot;:=&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;!=&quot;,&quot;&lt;&gt;&quot;,&quot;&lt;=&gt;&quot;,&quot;&amp;&amp;&quot;,&quot;||&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),fc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ACCESSIBLE &quot;,&quot;ADD &quot;,&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASENSITIVE &quot;,&quot;BEFORE &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CHANGE &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHECK &quot;,&quot;COLLATE &quot;,&quot;COLUMN &quot;,&quot;CONDITION &quot;,&quot;CONSTRAINT &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CUBE &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;DATABASE &quot;,&quot;DATABASES &quot;,&quot;DAY_HOUR &quot;,&quot;DAY_MICROSECOND &quot;,&quot;DAY_MINUTE &quot;,&quot;DAY_SECOND &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DELAYED &quot;,&quot;DELETE &quot;,&quot;DENSE_RANK &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DETERMINISTIC &quot;,&quot;DISTINCT &quot;,&quot;DISTINCTROW &quot;,&quot;DIV &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DUAL &quot;,&quot;EACH &quot;,&quot;ELSE &quot;,&quot;ELSEIF &quot;,&quot;EMPTY &quot;,&quot;ENCLOSED &quot;,&quot;ESCAPED &quot;,&quot;EXCEPT &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXPLAIN &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FIRST_VALUE &quot;,&quot;FLOAT &quot;,&quot;FLOAT4 &quot;,&quot;FLOAT8 &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FOREIGN &quot;,&quot;FROM &quot;,&quot;FULLTEXT &quot;,&quot;FUNCTION &quot;,&quot;GENERATED &quot;,&quot;GET &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;GROUPS &quot;,&quot;HAVING &quot;,&quot;HIGH_PRIORITY &quot;,&quot;HOUR_MICROSECOND &quot;,&quot;HOUR_MINUTE &quot;,&quot;HOUR_SECOND &quot;,&quot;IF &quot;,&quot;IGNORE &quot;,&quot;IN &quot;,&quot;INDEX &quot;,&quot;INFILE &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INT1 &quot;,&quot;INT2 &quot;,&quot;INT3 &quot;,&quot;INT4 &quot;,&quot;INT8 &quot;,&quot;INTEGER &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IO_AFTER_GTIDS &quot;,&quot;IO_BEFORE_GTIDS &quot;,&quot;IS &quot;,&quot;ITERATE &quot;,&quot;JOIN &quot;,&quot;JSON_TABLE &quot;,&quot;KEY &quot;,&quot;KEYS &quot;,&quot;KILL &quot;,&quot;LAG &quot;,&quot;LAST_VALUE &quot;,&quot;LATERAL &quot;,&quot;LEAD &quot;,&quot;LEADING &quot;,&quot;LEAVE &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LINEAR &quot;,&quot;LINES &quot;,&quot;LOAD &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCK &quot;,&quot;LONG &quot;,&quot;LONGBLOB &quot;,&quot;LONGTEXT &quot;,&quot;LOOP &quot;,&quot;LOW_PRIORITY &quot;,&quot;MASTER_BIND &quot;,&quot;MASTER_SSL_VERIFY_SERVER_CERT &quot;,&quot;MATCH &quot;,&quot;MAXVALUE &quot;,&quot;MEDIUMBLOB &quot;,&quot;MEDIUMINT &quot;,&quot;MEDIUMTEXT &quot;,&quot;MIDDLEINT &quot;,&quot;MINUTE_MICROSECOND &quot;,&quot;MINUTE_SECOND &quot;,&quot;MOD &quot;,&quot;MODIFIES &quot;,&quot;NATURAL &quot;,&quot;NOT &quot;,&quot;NO_WRITE_TO_BINLOG &quot;,&quot;NTH_VALUE &quot;,&quot;NTILE &quot;,&quot;NULL &quot;,&quot;NUMERIC &quot;,&quot;OF &quot;,&quot;ON &quot;,&quot;OPTIMIZE &quot;,&quot;OPTIMIZER_COSTS &quot;,&quot;OPTION &quot;,&quot;OPTIONALLY &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OUTFILE &quot;,&quot;OVER &quot;,&quot;PARTITION &quot;,&quot;PERCENT_RANK &quot;,&quot;PRECISION &quot;,&quot;PRIMARY &quot;,&quot;PROCEDURE &quot;,&quot;PURGE &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;READ &quot;,&quot;READS &quot;,&quot;READ_WRITE &quot;,&quot;REAL &quot;,&quot;RECURSIVE &quot;,&quot;REFERENCES &quot;,&quot;REGEXP &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEAT &quot;,&quot;REPLACE &quot;,&quot;REQUIRE &quot;,&quot;RESIGNAL &quot;,&quot;RESTRICT &quot;,&quot;RETURN &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;RLIKE &quot;,&quot;ROW &quot;,&quot;ROWS &quot;,&quot;ROW_NUMBER &quot;,&quot;SCHEMA &quot;,&quot;SCHEMAS &quot;,&quot;SECOND_MICROSECOND &quot;,&quot;SELECT &quot;,&quot;SENSITIVE &quot;,&quot;SEPARATOR &quot;,&quot;SET &quot;,&quot;SHOW &quot;,&quot;SIGNAL &quot;,&quot;SMALLINT &quot;,&quot;SPATIAL &quot;,&quot;SPECIFIC &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQL_BIG_RESULT &quot;,&quot;SQL_CALC_FOUND_ROWS &quot;,&quot;SQL_SMALL_RESULT &quot;,&quot;SSL &quot;,&quot;STARTING &quot;,&quot;STORED &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;SYSTEM &quot;,&quot;TABLE &quot;,&quot;TERMINATED &quot;,&quot;THEN &quot;,&quot;TINYBLOB &quot;,&quot;TINYINT &quot;,&quot;TINYTEXT &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;UNDO &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNLOCK &quot;,&quot;UNSIGNED &quot;,&quot;UPDATE &quot;,&quot;USAGE &quot;,&quot;USE &quot;,&quot;USING &quot;,&quot;UTC_DATE &quot;,&quot;UTC_TIME &quot;,&quot;UTC_TIMESTAMP &quot;,&quot;VALUES &quot;,&quot;VARBINARY &quot;,&quot;VARCHAR &quot;,&quot;VARCHARACTER &quot;,&quot;VARYING &quot;,&quot;VIRTUAL &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHILE &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WRITE &quot;,&quot;XOR &quot;,&quot;YEAR_MONTH &quot;,&quot;ZEROFILL &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;NATURAL LEFT JOIN &quot;,&quot;NATURAL LEFT OUTER JOIN &quot;,&quot;NATURAL RIGHT JOIN &quot;,&quot;NATURAL RIGHT OUTER JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&quot;``&quot;,&quot;&#039;&#039;&quot;,&#039;&quot;&quot;&#039;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[],lineCommentTypes:[&quot;--&quot;,&quot;#&quot;],specialWordChars:[&quot;@&quot;],operators:[&quot;:=&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;!=&quot;,&quot;&lt;&gt;&quot;,&quot;&lt;=&gt;&quot;,&quot;&amp;&amp;&quot;,&quot;||&quot;,&quot;-&gt;&quot;,&quot;-&gt;&gt;&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),dc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;ANY &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BINARY &quot;,&quot;BOOLEAN &quot;,&quot;BREAK &quot;,&quot;BUCKET &quot;,&quot;BUILD &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CLUSTER &quot;,&quot;COLLATE &quot;,&quot;COLLECTION &quot;,&quot;COMMIT &quot;,&quot;CONNECT &quot;,&quot;CONTINUE &quot;,&quot;CORRELATE &quot;,&quot;COVER &quot;,&quot;CREATE &quot;,&quot;DATABASE &quot;,&quot;DATASET &quot;,&quot;DATASTORE &quot;,&quot;DECLARE &quot;,&quot;DECREMENT &quot;,&quot;DELETE &quot;,&quot;DERIVED &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DROP &quot;,&quot;EACH &quot;,&quot;ELEMENT &quot;,&quot;ELSE &quot;,&quot;END &quot;,&quot;EVERY &quot;,&quot;EXCEPT &quot;,&quot;EXCLUDE &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXPLAIN &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FIRST &quot;,&quot;FLATTEN &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FROM &quot;,&quot;FUNCTION &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;GSI &quot;,&quot;HAVING &quot;,&quot;IF &quot;,&quot;IGNORE &quot;,&quot;ILIKE &quot;,&quot;IN &quot;,&quot;INCLUDE &quot;,&quot;INCREMENT &quot;,&quot;INDEX &quot;,&quot;INFER &quot;,&quot;INLINE &quot;,&quot;INNER &quot;,&quot;INSERT &quot;,&quot;INTERSECT &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;JOIN &quot;,&quot;KEY &quot;,&quot;KEYS &quot;,&quot;KEYSPACE &quot;,&quot;KNOWN &quot;,&quot;LAST &quot;,&quot;LEFT &quot;,&quot;LET &quot;,&quot;LETTING &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LSM &quot;,&quot;MAP &quot;,&quot;MAPPING &quot;,&quot;MATCHED &quot;,&quot;MATERIALIZED &quot;,&quot;MERGE &quot;,&quot;MISSING &quot;,&quot;NAMESPACE &quot;,&quot;NEST &quot;,&quot;NOT &quot;,&quot;NULL &quot;,&quot;NUMBER &quot;,&quot;OBJECT &quot;,&quot;OFFSET &quot;,&quot;ON &quot;,&quot;OPTION &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;PARSE &quot;,&quot;PARTITION &quot;,&quot;PASSWORD &quot;,&quot;PATH &quot;,&quot;POOL &quot;,&quot;PREPARE &quot;,&quot;PRIMARY &quot;,&quot;PRIVATE &quot;,&quot;PRIVILEGE &quot;,&quot;PROCEDURE &quot;,&quot;PUBLIC &quot;,&quot;RAW &quot;,&quot;REALM &quot;,&quot;REDUCE &quot;,&quot;RENAME &quot;,&quot;RETURN &quot;,&quot;RETURNING &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLE &quot;,&quot;ROLLBACK &quot;,&quot;SATISFIES &quot;,&quot;SCHEMA &quot;,&quot;SELECT &quot;,&quot;SELF &quot;,&quot;SEMI &quot;,&quot;SET &quot;,&quot;SHOW &quot;,&quot;SOME &quot;,&quot;START &quot;,&quot;STATISTICS &quot;,&quot;STRING &quot;,&quot;SYSTEM &quot;,&quot;THEN &quot;,&quot;TO &quot;,&quot;TRANSACTION &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;UNDER &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNNEST &quot;,&quot;UNSET &quot;,&quot;UPDATE &quot;,&quot;UPSERT &quot;,&quot;USE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALIDATE &quot;,&quot;VALUE &quot;,&quot;VALUED &quot;,&quot;VALUES &quot;,&quot;VIA &quot;,&quot;VIEW &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHILE &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WORK &quot;,&quot;XOR &quot;],f=[&quot;DELETE FROM &quot;,&quot;EXCEPT ALL &quot;,&quot;EXCEPT &quot;,&quot;EXPLAIN DELETE FROM &quot;,&quot;EXPLAIN UPDATE &quot;,&quot;EXPLAIN UPSERT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INFER &quot;,&quot;INSERT INTO &quot;,&quot;LET &quot;,&quot;LIMIT &quot;,&quot;MERGE &quot;,&quot;NEST &quot;,&quot;ORDER BY &quot;,&quot;PREPARE &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UNNEST &quot;,&quot;UPDATE &quot;,&quot;UPSERT &quot;,&quot;USE KEYS &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;OR &quot;,&quot;XOR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;],openParens:[&quot;(&quot;,&quot;[&quot;,&quot;{&quot;],closeParens:[&quot;)&quot;,&quot;]&quot;,&quot;}&quot;],namedPlaceholderTypes:[&quot;$ &quot;],lineCommentTypes:[&quot;#&quot;,&quot;--&quot;],operators:[&quot;==&quot;,&quot;!=&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),pc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=i(ac),a=i(sc),o=i(Qs);function i(e){return e &amp;&amp;e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function c(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function u(e){return(u=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var f=[&quot;A &quot;,&quot;ACCESSIBLE &quot;,&quot;AGENT &quot;,&quot;AGGREGATE &quot;,&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANY &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;AT &quot;,&quot;ATTRIBUTE &quot;,&quot;AUTHID &quot;,&quot;AVG &quot;,&quot;BETWEEN &quot;,&quot;BFILE_BASE &quot;,&quot;BINARY_INTEGER &quot;,&quot;BINARY &quot;,&quot;BLOB_BASE &quot;,&quot;BLOCK &quot;,&quot;BODY &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BOUND &quot;,&quot;BREADTH &quot;,&quot;BULK &quot;,&quot;BY &quot;,&quot;BYTE &quot;,&quot;C &quot;,&quot;CALL &quot;,&quot;CALLING &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CHAR_BASE &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHARSET &quot;,&quot;CHARSETFORM &quot;,&quot;CHARSETID &quot;,&quot;CHECK &quot;,&quot;CLOB_BASE &quot;,&quot;CLONE &quot;,&quot;CLOSE &quot;,&quot;CLUSTER &quot;,&quot;CLUSTERS &quot;,&quot;COALESCE &quot;,&quot;COLAUTH &quot;,&quot;COLLECT &quot;,&quot;COLUMNS &quot;,&quot;COMMENT &quot;,&quot;COMMIT &quot;,&quot;COMMITTED &quot;,&quot;COMPILED &quot;,&quot;COMPRESS &quot;,&quot;CONNECT &quot;,&quot;CONSTANT &quot;,&quot;CONSTRUCTOR &quot;,&quot;CONTEXT &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;COUNT &quot;,&quot;CRASH &quot;,&quot;CREATE &quot;,&quot;CREDENTIAL &quot;,&quot;CURRENT &quot;,&quot;CURRVAL &quot;,&quot;CURSOR &quot;,&quot;CUSTOMDATUM &quot;,&quot;DANGLING &quot;,&quot;DATA &quot;,&quot;DATE_BASE &quot;,&quot;DATE &quot;,&quot;DAY &quot;,&quot;DECIMAL &quot;,&quot;DEFAULT &quot;,&quot;DEFINE &quot;,&quot;DELETE &quot;,&quot;DEPTH &quot;,&quot;DESC &quot;,&quot;DETERMINISTIC &quot;,&quot;DIRECTORY &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DURATION &quot;,&quot;ELEMENT &quot;,&quot;ELSIF &quot;,&quot;EMPTY &quot;,&quot;END &quot;,&quot;ESCAPE &quot;,&quot;EXCEPTIONS &quot;,&quot;EXCLUSIVE &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXTENDS &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FINAL &quot;,&quot;FIRST &quot;,&quot;FIXED &quot;,&quot;FLOAT &quot;,&quot;FOR &quot;,&quot;FORALL &quot;,&quot;FORCE &quot;,&quot;FROM &quot;,&quot;FUNCTION &quot;,&quot;GENERAL &quot;,&quot;GOTO &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;HASH &quot;,&quot;HEAP &quot;,&quot;HIDDEN &quot;,&quot;HOUR &quot;,&quot;IDENTIFIED &quot;,&quot;IF &quot;,&quot;IMMEDIATE &quot;,&quot;IN &quot;,&quot;INCLUDING &quot;,&quot;INDEX &quot;,&quot;INDEXES &quot;,&quot;INDICATOR &quot;,&quot;INDICES &quot;,&quot;INFINITE &quot;,&quot;INSTANTIABLE &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTERFACE &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;INVALIDATE &quot;,&quot;IS &quot;,&quot;ISOLATION &quot;,&quot;JAVA &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LEADING &quot;,&quot;LENGTH &quot;,&quot;LEVEL &quot;,&quot;LIBRARY &quot;,&quot;LIKE &quot;,&quot;LIKE2 &quot;,&quot;LIKE4 &quot;,&quot;LIKEC &quot;,&quot;LIMITED &quot;,&quot;LOCAL &quot;,&quot;LOCK &quot;,&quot;LONG &quot;,&quot;MAP &quot;,&quot;MAX &quot;,&quot;MAXLEN &quot;,&quot;MEMBER &quot;,&quot;MERGE &quot;,&quot;MIN &quot;,&quot;MINUTE &quot;,&quot;MLSLABEL &quot;,&quot;MOD &quot;,&quot;MODE &quot;,&quot;MONTH &quot;,&quot;MULTISET &quot;,&quot;NAME &quot;,&quot;NAN &quot;,&quot;NATIONAL &quot;,&quot;NATIVE &quot;,&quot;NATURAL &quot;,&quot;NATURALN &quot;,&quot;NCHAR &quot;,&quot;NEW &quot;,&quot;NEXTVAL &quot;,&quot;NOCOMPRESS &quot;,&quot;NOCOPY &quot;,&quot;NOT &quot;,&quot;NOWAIT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NUMBER_BASE &quot;,&quot;NUMBER &quot;,&quot;OBJECT &quot;,&quot;OCICOLL &quot;,&quot;OCIDATE &quot;,&quot;OCIDATETIME &quot;,&quot;OCIDURATION &quot;,&quot;OCIINTERVAL &quot;,&quot;OCILOBLOCATOR &quot;,&quot;OCINUMBER &quot;,&quot;OCIRAW &quot;,&quot;OCIREF &quot;,&quot;OCIREFCURSOR &quot;,&quot;OCIROWID &quot;,&quot;OCISTRING &quot;,&quot;OCITYPE &quot;,&quot;OF &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPAQUE &quot;,&quot;OPEN &quot;,&quot;OPERATOR &quot;,&quot;OPTION &quot;,&quot;ORACLE &quot;,&quot;ORADATA &quot;,&quot;ORDER &quot;,&quot;ORGANIZATION &quot;,&quot;ORLANY &quot;,&quot;ORLVARY &quot;,&quot;OTHERS &quot;,&quot;OUT &quot;,&quot;OVERLAPS &quot;,&quot;OVERRIDING &quot;,&quot;PACKAGE &quot;,&quot;PARALLEL_ENABLE &quot;,&quot;PARAMETER &quot;,&quot;PARAMETERS &quot;,&quot;PARENT &quot;,&quot;PARTITION &quot;,&quot;PASCAL &quot;,&quot;PCTFREE &quot;,&quot;PIPE &quot;,&quot;PIPELINED &quot;,&quot;PLS_INTEGER &quot;,&quot;PLUGGABLE &quot;,&quot;POSITIVE &quot;,&quot;POSITIVEN &quot;,&quot;PRAGMA &quot;,&quot;PRECISION &quot;,&quot;PRIOR &quot;,&quot;PRIVATE &quot;,&quot;PROCEDURE &quot;,&quot;PUBLIC &quot;,&quot;RAISE &quot;,&quot;RANGE &quot;,&quot;RAW &quot;,&quot;READ &quot;,&quot;REAL &quot;,&quot;RECORD &quot;,&quot;REF &quot;,&quot;REFERENCE &quot;,&quot;RELEASE &quot;,&quot;RELIES_ON &quot;,&quot;REM &quot;,&quot;REMAINDER &quot;,&quot;RENAME &quot;,&quot;RESOURCE &quot;,&quot;RESULT_CACHE &quot;,&quot;RESULT &quot;,&quot;RETURN &quot;,&quot;RETURNING &quot;,&quot;REVERSE &quot;,&quot;REVOKE &quot;,&quot;ROLLBACK &quot;,&quot;ROW &quot;,&quot;ROWID &quot;,&quot;ROWNUM &quot;,&quot;ROWTYPE &quot;,&quot;SAMPLE &quot;,&quot;SAVE &quot;,&quot;SAVEPOINT &quot;,&quot;SB1 &quot;,&quot;SB2 &quot;,&quot;SB4 &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SEGMENT &quot;,&quot;SELF &quot;,&quot;SEPARATE &quot;,&quot;SEQUENCE &quot;,&quot;SERIALIZABLE &quot;,&quot;SHARE &quot;,&quot;SHORT &quot;,&quot;SIZE_T &quot;,&quot;SIZE &quot;,&quot;SMALLINT &quot;,&quot;SOME &quot;,&quot;SPACE &quot;,&quot;SPARSE &quot;,&quot;SQL &quot;,&quot;SQLCODE &quot;,&quot;SQLDATA &quot;,&quot;SQLERRM &quot;,&quot;SQLNAME &quot;,&quot;SQLSTATE &quot;,&quot;STANDARD &quot;,&quot;START &quot;,&quot;STATIC &quot;,&quot;STDDEV &quot;,&quot;STORED &quot;,&quot;STRING &quot;,&quot;STRUCT &quot;,&quot;STYLE &quot;,&quot;SUBMULTISET &quot;,&quot;SUBPARTITION &quot;,&quot;SUBSTITUTABLE &quot;,&quot;SUBTYPE &quot;,&quot;SUCCESSFUL &quot;,&quot;SUM &quot;,&quot;SYNONYM &quot;,&quot;SYSDATE &quot;,&quot;TABAUTH &quot;,&quot;TABLE &quot;,&quot;TDO &quot;,&quot;THE &quot;,&quot;THEN &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TIMEZONE_ABBR &quot;,&quot;TIMEZONE_HOUR &quot;,&quot;TIMEZONE_MINUTE &quot;,&quot;TIMEZONE_REGION &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSACTION &quot;,&quot;TRANSACTIONAL &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;TRUSTED &quot;,&quot;TYPE &quot;,&quot;UB1 &quot;,&quot;UB2 &quot;,&quot;UB4 &quot;,&quot;UID &quot;,&quot;UNDER &quot;,&quot;UNIQUE &quot;,&quot;UNPLUG &quot;,&quot;UNSIGNED &quot;,&quot;UNTRUSTED &quot;,&quot;USE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALIDATE &quot;,&quot;VALIST &quot;,&quot;VALUE &quot;,&quot;VARCHAR &quot;,&quot;VARCHAR2 &quot;,&quot;VARIABLE &quot;,&quot;VARIANCE &quot;,&quot;VARRAY &quot;,&quot;VARYING &quot;,&quot;VIEW &quot;,&quot;VIEWS &quot;,&quot;VOID &quot;,&quot;WHENEVER &quot;,&quot;WHILE &quot;,&quot;WITH &quot;,&quot;WORK &quot;,&quot;WRAPPED &quot;,&quot;WRITE &quot;,&quot;YEAR &quot;,&quot;ZONE &quot;],d=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;BEGIN &quot;,&quot;CONNECT BY &quot;,&quot;DECLARE &quot;,&quot;DELETE FROM &quot;,&quot;DELETE &quot;,&quot;END &quot;,&quot;EXCEPT &quot;,&quot;EXCEPTION &quot;,&quot;FETCH FIRST &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;LOOP &quot;,&quot;MODIFY &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;START WITH &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],p=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],m=[&quot;AND &quot;,&quot;CROSS APPLY &quot;,&quot;ELSE &quot;,&quot;END &quot;,&quot;OR &quot;,&quot;OUTER APPLY &quot;,&quot;WHEN &quot;,&quot;XOR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;s(e,t)}(h,e);var t,n,r,i=(n=h,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=u(n);if(r){var a=u(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return c(this,e)});function h(){return l(this,h),i.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:f,reservedTopLevelWords:d,reservedNewlineWords:m,reservedTopLevelWordsNoIndent:p,stringTypes:[&#039;&quot;&quot;&#039;,&quot;N &#039;&#039;&quot;,&quot;&#039;&#039;&quot;,&quot;``&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;:&quot;],lineCommentTypes:[&quot;--&quot;],specialWordChars:[&quot;_ &quot;,&quot;$ &quot;,&quot;#&quot;,&quot;.&quot;,&quot;@&quot;],operators:[&quot;||&quot;,&quot;**&quot;,&quot;!=&quot;,&quot;:=&quot;]})}},{key:&quot;tokenOverride &quot;,value:function(e){return(0,rc.isSet)(e)&amp;&amp;(0,rc.isBy)(this.previousReservedToken)?{type:o.default.RESERVED,value:e.value}:e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(h.prototype,t),h}(r.default),e.exports=t.default}),mc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ABORT &quot;,&quot;ABSOLUTE &quot;,&quot;ACCESS &quot;,&quot;ACTION &quot;,&quot;ADD &quot;,&quot;ADMIN &quot;,&quot;AFTER &quot;,&quot;AGGREGATE &quot;,&quot;ALL &quot;,&quot;ALSO &quot;,&quot;ALTER &quot;,&quot;ALWAYS &quot;,&quot;ANALYSE &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;ANY &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASSERTION &quot;,&quot;ASSIGNMENT &quot;,&quot;ASYMMETRIC &quot;,&quot;AT &quot;,&quot;ATTACH &quot;,&quot;ATTRIBUTE &quot;,&quot;AUTHORIZATION &quot;,&quot;BACKWARD &quot;,&quot;BEFORE &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BIT &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CACHE &quot;,&quot;CALL &quot;,&quot;CALLED &quot;,&quot;CASCADE &quot;,&quot;CASCADED &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CATALOG &quot;,&quot;CHAIN &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHARACTERISTICS &quot;,&quot;CHECK &quot;,&quot;CHECKPOINT &quot;,&quot;CLASS &quot;,&quot;CLOSE &quot;,&quot;CLUSTER &quot;,&quot;COALESCE &quot;,&quot;COLLATE &quot;,&quot;COLLATION &quot;,&quot;COLUMN &quot;,&quot;COLUMNS &quot;,&quot;COMMENT &quot;,&quot;COMMENTS &quot;,&quot;COMMIT &quot;,&quot;COMMITTED &quot;,&quot;CONCURRENTLY &quot;,&quot;CONFIGURATION &quot;,&quot;CONFLICT &quot;,&quot;CONNECTION &quot;,&quot;CONSTRAINT &quot;,&quot;CONSTRAINTS &quot;,&quot;CONTENT &quot;,&quot;CONTINUE &quot;,&quot;CONVERSION &quot;,&quot;COPY &quot;,&quot;COST &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CSV &quot;,&quot;CUBE &quot;,&quot;CURRENT &quot;,&quot;CURRENT_CATALOG &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_SCHEMA &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;CYCLE &quot;,&quot;DATA &quot;,&quot;DATABASE &quot;,&quot;DAY &quot;,&quot;DEALLOCATE &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DEFAULTS &quot;,&quot;DEFERRABLE &quot;,&quot;DEFERRED &quot;,&quot;DEFINER &quot;,&quot;DELETE &quot;,&quot;DELIMITER &quot;,&quot;DELIMITERS &quot;,&quot;DEPENDS &quot;,&quot;DESC &quot;,&quot;DETACH &quot;,&quot;DICTIONARY &quot;,&quot;DISABLE &quot;,&quot;DISCARD &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DOCUMENT &quot;,&quot;DOMAIN &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;EACH &quot;,&quot;ELSE &quot;,&quot;ENABLE &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTED &quot;,&quot;END &quot;,&quot;ENUM &quot;,&quot;ESCAPE &quot;,&quot;EVENT &quot;,&quot;EXCEPT &quot;,&quot;EXCLUDE &quot;,&quot;EXCLUDING &quot;,&quot;EXCLUSIVE &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXPLAIN &quot;,&quot;EXPRESSION &quot;,&quot;EXTENSION &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FAMILY &quot;,&quot;FETCH &quot;,&quot;FILTER &quot;,&quot;FIRST &quot;,&quot;FLOAT &quot;,&quot;FOLLOWING &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FOREIGN &quot;,&quot;FORWARD &quot;,&quot;FREEZE &quot;,&quot;FROM &quot;,&quot;FULL &quot;,&quot;FUNCTION &quot;,&quot;FUNCTIONS &quot;,&quot;GENERATED &quot;,&quot;GLOBAL &quot;,&quot;GRANT &quot;,&quot;GRANTED &quot;,&quot;GREATEST &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;GROUPS &quot;,&quot;HANDLER &quot;,&quot;HAVING &quot;,&quot;HEADER &quot;,&quot;HOLD &quot;,&quot;HOUR &quot;,&quot;IDENTITY &quot;,&quot;IF &quot;,&quot;ILIKE &quot;,&quot;IMMEDIATE &quot;,&quot;IMMUTABLE &quot;,&quot;IMPLICIT &quot;,&quot;IMPORT &quot;,&quot;IN &quot;,&quot;INCLUDE &quot;,&quot;INCLUDING &quot;,&quot;INCREMENT &quot;,&quot;INDEX &quot;,&quot;INDEXES &quot;,&quot;INHERIT &quot;,&quot;INHERITS &quot;,&quot;INITIALLY &quot;,&quot;INLINE &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INPUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INSTEAD &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTERSECT &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;INVOKER &quot;,&quot;IS &quot;,&quot;ISNULL &quot;,&quot;ISOLATION &quot;,&quot;JOIN &quot;,&quot;KEY &quot;,&quot;LABEL &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LAST &quot;,&quot;LATERAL &quot;,&quot;LEADING &quot;,&quot;LEAKPROOF &quot;,&quot;LEAST &quot;,&quot;LEFT &quot;,&quot;LEVEL &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LISTEN &quot;,&quot;LOAD &quot;,&quot;LOCAL &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCATION &quot;,&quot;LOCK &quot;,&quot;LOCKED &quot;,&quot;LOGGED &quot;,&quot;MAPPING &quot;,&quot;MATCH &quot;,&quot;MATERIALIZED &quot;,&quot;MAXVALUE &quot;,&quot;METHOD &quot;,&quot;MINUTE &quot;,&quot;MINVALUE &quot;,&quot;MODE &quot;,&quot;MONTH &quot;,&quot;MOVE &quot;,&quot;NAME &quot;,&quot;NAMES &quot;,&quot;NATIONAL &quot;,&quot;NATURAL &quot;,&quot;NCHAR &quot;,&quot;NEW &quot;,&quot;NEXT &quot;,&quot;NFC &quot;,&quot;NFD &quot;,&quot;NFKC &quot;,&quot;NFKD &quot;,&quot;NO &quot;,&quot;NONE &quot;,&quot;NORMALIZE &quot;,&quot;NORMALIZED &quot;,&quot;NOT &quot;,&quot;NOTHING &quot;,&quot;NOTIFY &quot;,&quot;NOTNULL &quot;,&quot;NOWAIT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NULLS &quot;,&quot;NUMERIC &quot;,&quot;OBJECT &quot;,&quot;OF &quot;,&quot;OFF &quot;,&quot;OFFSET &quot;,&quot;OIDS &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPERATOR &quot;,&quot;OPTION &quot;,&quot;OPTIONS &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;ORDINALITY &quot;,&quot;OTHERS &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;OVERLAPS &quot;,&quot;OVERLAY &quot;,&quot;OVERRIDING &quot;,&quot;OWNED &quot;,&quot;OWNER &quot;,&quot;PARALLEL &quot;,&quot;PARSER &quot;,&quot;PARTIAL &quot;,&quot;PARTITION &quot;,&quot;PASSING &quot;,&quot;PASSWORD &quot;,&quot;PLACING &quot;,&quot;PLANS &quot;,&quot;POLICY &quot;,&quot;POSITION &quot;,&quot;PRECEDING &quot;,&quot;PRECISION &quot;,&quot;PREPARE &quot;,&quot;PREPARED &quot;,&quot;PRESERVE &quot;,&quot;PRIMARY &quot;,&quot;PRIOR &quot;,&quot;PRIVILEGES &quot;,&quot;PROCEDURAL &quot;,&quot;PROCEDURE &quot;,&quot;PROCEDURES &quot;,&quot;PROGRAM &quot;,&quot;PUBLICATION &quot;,&quot;QUOTE &quot;,&quot;RANGE &quot;,&quot;READ &quot;,&quot;REAL &quot;,&quot;REASSIGN &quot;,&quot;RECHECK &quot;,&quot;RECURSIVE &quot;,&quot;REF &quot;,&quot;REFERENCES &quot;,&quot;REFERENCING &quot;,&quot;REFRESH &quot;,&quot;REINDEX &quot;,&quot;RELATIVE &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEATABLE &quot;,&quot;REPLACE &quot;,&quot;REPLICA &quot;,&quot;RESET &quot;,&quot;RESTART &quot;,&quot;RESTRICT &quot;,&quot;RETURNING &quot;,&quot;RETURNS &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLE &quot;,&quot;ROLLBACK &quot;,&quot;ROLLUP &quot;,&quot;ROUTINE &quot;,&quot;ROUTINES &quot;,&quot;ROW &quot;,&quot;ROWS &quot;,&quot;RULE &quot;,&quot;SAVEPOINT &quot;,&quot;SCHEMA &quot;,&quot;SCHEMAS &quot;,&quot;SCROLL &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SECURITY &quot;,&quot;SELECT &quot;,&quot;SEQUENCE &quot;,&quot;SEQUENCES &quot;,&quot;SERIALIZABLE &quot;,&quot;SERVER &quot;,&quot;SESSION &quot;,&quot;SESSION_USER &quot;,&quot;SET &quot;,&quot;SETOF &quot;,&quot;SETS &quot;,&quot;SHARE &quot;,&quot;SHOW &quot;,&quot;SIMILAR &quot;,&quot;SIMPLE &quot;,&quot;SKIP &quot;,&quot;SMALLINT &quot;,&quot;SNAPSHOT &quot;,&quot;SOME &quot;,&quot;SQL &quot;,&quot;STABLE &quot;,&quot;STANDALONE &quot;,&quot;START &quot;,&quot;STATEMENT &quot;,&quot;STATISTICS &quot;,&quot;STDIN &quot;,&quot;STDOUT &quot;,&quot;STORAGE &quot;,&quot;STORED &quot;,&quot;STRICT &quot;,&quot;STRIP &quot;,&quot;SUBSCRIPTION &quot;,&quot;SUBSTRING &quot;,&quot;SUPPORT &quot;,&quot;SYMMETRIC &quot;,&quot;SYSID &quot;,&quot;SYSTEM &quot;,&quot;TABLE &quot;,&quot;TABLES &quot;,&quot;TABLESAMPLE &quot;,&quot;TABLESPACE &quot;,&quot;TEMP &quot;,&quot;TEMPLATE &quot;,&quot;TEMPORARY &quot;,&quot;TEXT &quot;,&quot;THEN &quot;,&quot;TIES &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSACTION &quot;,&quot;TRANSFORM &quot;,&quot;TREAT &quot;,&quot;TRIGGER &quot;,&quot;TRIM &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;TRUSTED &quot;,&quot;TYPE &quot;,&quot;TYPES &quot;,&quot;UESCAPE &quot;,&quot;UNBOUNDED &quot;,&quot;UNCOMMITTED &quot;,&quot;UNENCRYPTED &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNLISTEN &quot;,&quot;UNLOGGED &quot;,&quot;UNTIL &quot;,&quot;UPDATE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VACUUM &quot;,&quot;VALID &quot;,&quot;VALIDATE &quot;,&quot;VALIDATOR &quot;,&quot;VALUE &quot;,&quot;VALUES &quot;,&quot;VARCHAR &quot;,&quot;VARIADIC &quot;,&quot;VARYING &quot;,&quot;VERBOSE &quot;,&quot;VERSION &quot;,&quot;VIEW &quot;,&quot;VIEWS &quot;,&quot;VOLATILE &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHITESPACE &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WITHOUT &quot;,&quot;WORK &quot;,&quot;WRAPPER &quot;,&quot;WRITE &quot;,&quot;XML &quot;,&quot;XMLATTRIBUTES &quot;,&quot;XMLCONCAT &quot;,&quot;XMLELEMENT &quot;,&quot;XMLEXISTS &quot;,&quot;XMLFOREST &quot;,&quot;XMLNAMESPACES &quot;,&quot;XMLPARSE &quot;,&quot;XMLPI &quot;,&quot;XMLROOT &quot;,&quot;XMLSERIALIZE &quot;,&quot;XMLTABLE &quot;,&quot;YEAR &quot;,&quot;YES &quot;,&quot;ZONE &quot;],f=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;CASE &quot;,&quot;DELETE FROM &quot;,&quot;END &quot;,&quot;EXCEPT &quot;,&quot;FETCH FIRST &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;U &amp;&#039;&#039;&quot;,&#039;U &amp;&quot;&quot;&#039;,&quot;$$ &quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;$ &quot;],namedPlaceholderTypes:[&quot;:&quot;],lineCommentTypes:[&quot;--&quot;],operators:[&quot;!=&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;||/&quot;,&quot;|/&quot;,&quot;::&quot;,&quot;-&gt;&gt;&quot;,&quot;-&gt;&quot;,&quot;~~*&quot;,&quot;~~&quot;,&quot;!~~*&quot;,&quot;!~~&quot;,&quot;~*&quot;,&quot;!~*&quot;,&quot;!~&quot;,&quot;!!&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),hc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;AES128 &quot;,&quot;AES256 &quot;,&quot;ALLOWOVERWRITE &quot;,&quot;ANALYSE &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;AUTHORIZATION &quot;,&quot;BACKUP &quot;,&quot;BINARY &quot;,&quot;BLANKSASNULL &quot;,&quot;BOTH &quot;,&quot;BYTEDICT &quot;,&quot;BZIP2 &quot;,&quot;CAST &quot;,&quot;CHECK &quot;,&quot;COLLATE &quot;,&quot;COLUMN &quot;,&quot;CONSTRAINT &quot;,&quot;CREATE &quot;,&quot;CREDENTIALS &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURRENT_USER_ID &quot;,&quot;DEFAULT &quot;,&quot;DEFERRABLE &quot;,&quot;DEFLATE &quot;,&quot;DEFRAG &quot;,&quot;DELTA &quot;,&quot;DELTA32K &quot;,&quot;DESC &quot;,&quot;DISABLE &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;ELSE &quot;,&quot;EMPTYASNULL &quot;,&quot;ENABLE &quot;,&quot;ENCODE &quot;,&quot;ENCRYPT &quot;,&quot;ENCRYPTION &quot;,&quot;END &quot;,&quot;EXPLICIT &quot;,&quot;FALSE &quot;,&quot;FOR &quot;,&quot;FOREIGN &quot;,&quot;FREEZE &quot;,&quot;FULL &quot;,&quot;GLOBALDICT256 &quot;,&quot;GLOBALDICT64K &quot;,&quot;GRANT &quot;,&quot;GZIP &quot;,&quot;IDENTITY &quot;,&quot;IGNORE &quot;,&quot;ILIKE &quot;,&quot;INITIALLY &quot;,&quot;INTO &quot;,&quot;LEADING &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LUN &quot;,&quot;LUNS &quot;,&quot;LZO &quot;,&quot;LZOP &quot;,&quot;MINUS &quot;,&quot;MOSTLY13 &quot;,&quot;MOSTLY32 &quot;,&quot;MOSTLY8 &quot;,&quot;NATURAL &quot;,&quot;NEW &quot;,&quot;NULLS &quot;,&quot;OFF &quot;,&quot;OFFLINE &quot;,&quot;OFFSET &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPEN &quot;,&quot;ORDER &quot;,&quot;OVERLAPS &quot;,&quot;PARALLEL &quot;,&quot;PARTITION &quot;,&quot;PERCENT &quot;,&quot;PERMISSIONS &quot;,&quot;PLACING &quot;,&quot;PRIMARY &quot;,&quot;RAW &quot;,&quot;READRATIO &quot;,&quot;RECOVER &quot;,&quot;REFERENCES &quot;,&quot;REJECTLOG &quot;,&quot;RESORT &quot;,&quot;RESTORE &quot;,&quot;SESSION_USER &quot;,&quot;SIMILAR &quot;,&quot;SYSDATE &quot;,&quot;SYSTEM &quot;,&quot;TABLE &quot;,&quot;TAG &quot;,&quot;TDES &quot;,&quot;TEXT255 &quot;,&quot;TEXT32K &quot;,&quot;THEN &quot;,&quot;TIMESTAMP &quot;,&quot;TO &quot;,&quot;TOP &quot;,&quot;TRAILING &quot;,&quot;TRUE &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;UNIQUE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VERBOSE &quot;,&quot;WALLET &quot;,&quot;WHEN &quot;,&quot;WITH &quot;,&quot;WITHOUT &quot;,&quot;PREDICATE &quot;,&quot;COLUMNS &quot;,&quot;COMPROWS &quot;,&quot;COMPRESSION &quot;,&quot;COPY &quot;,&quot;FORMAT &quot;,&quot;DELIMITER &quot;,&quot;FIXEDWIDTH &quot;,&quot;AVRO &quot;,&quot;JSON &quot;,&quot;ENCRYPTED &quot;,&quot;BZIP2 &quot;,&quot;GZIP &quot;,&quot;LZOP &quot;,&quot;PARQUET &quot;,&quot;ORC &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;BLANKSASNULL &quot;,&quot;DATEFORMAT &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;NULL AS &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;TIMEFORMAT &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;STATUPDATE &quot;,&quot;MANIFEST &quot;,&quot;REGION &quot;,&quot;IAM_ROLE &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;SSH &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;ACCESS_KEY_ID &quot;,&quot;SECRET_ACCESS_KEY &quot;,&quot;AVRO &quot;,&quot;BLANKSASNULL &quot;,&quot;BZIP2 &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;CREDENTIALS &quot;,&quot;DATEFORMAT &quot;,&quot;DELIMITER &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTED &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;FIXEDWIDTH &quot;,&quot;FORMAT &quot;,&quot;IAM_ROLE &quot;,&quot;GZIP &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;JSON &quot;,&quot;LZOP &quot;,&quot;MANIFEST &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;NULL AS &quot;,&quot;READRATIO &quot;,&quot;REGION &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;SSH &quot;,&quot;STATUPDATE &quot;,&quot;TIMEFORMAT &quot;,&quot;SESSION_TOKEN &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;EXTERNAL &quot;,&quot;DATA CATALOG &quot;,&quot;HIVE METASTORE &quot;,&quot;CATALOG_ROLE &quot;,&quot;VACUUM &quot;,&quot;COPY &quot;,&quot;UNLOAD &quot;,&quot;EVEN &quot;,&quot;ALL &quot;],f=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;INTERSECT &quot;,&quot;TOP &quot;,&quot;LIMIT &quot;,&quot;MODIFY &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UNION ALL &quot;,&quot;UNION &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;,&quot;VACUUM &quot;,&quot;COPY &quot;,&quot;UNLOAD &quot;,&quot;ANALYZE &quot;,&quot;ANALYSE &quot;,&quot;DISTKEY &quot;,&quot;SORTKEY &quot;,&quot;COMPOUND &quot;,&quot;INTERLEAVED &quot;,&quot;FORMAT &quot;,&quot;DELIMITER &quot;,&quot;FIXEDWIDTH &quot;,&quot;AVRO &quot;,&quot;JSON &quot;,&quot;ENCRYPTED &quot;,&quot;BZIP2 &quot;,&quot;GZIP &quot;,&quot;LZOP &quot;,&quot;PARQUET &quot;,&quot;ORC &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;BLANKSASNULL &quot;,&quot;DATEFORMAT &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;NULL AS &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;TIMEFORMAT &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;STATUPDATE &quot;,&quot;MANIFEST &quot;,&quot;REGION &quot;,&quot;IAM_ROLE &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;SSH &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;ACCESS_KEY_ID &quot;,&quot;SECRET_ACCESS_KEY &quot;,&quot;AVRO &quot;,&quot;BLANKSASNULL &quot;,&quot;BZIP2 &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;CREDENTIALS &quot;,&quot;DATEFORMAT &quot;,&quot;DELIMITER &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTED &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;FIXEDWIDTH &quot;,&quot;FORMAT &quot;,&quot;IAM_ROLE &quot;,&quot;GZIP &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;JSON &quot;,&quot;LZOP &quot;,&quot;MANIFEST &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;NULL AS &quot;,&quot;READRATIO &quot;,&quot;REGION &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;SSH &quot;,&quot;STATUPDATE &quot;,&quot;TIMEFORMAT &quot;,&quot;SESSION_TOKEN &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;EXTERNAL &quot;,&quot;DATA CATALOG &quot;,&quot;HIVE METASTORE &quot;,&quot;CATALOG_ROLE &quot;],d=[],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;OUTER APPLY &quot;,&quot;WHEN &quot;,&quot;VACUUM &quot;,&quot;COPY &quot;,&quot;UNLOAD &quot;,&quot;ANALYZE &quot;,&quot;ANALYSE &quot;,&quot;DISTKEY &quot;,&quot;SORTKEY &quot;,&quot;COMPOUND &quot;,&quot;INTERLEAVED &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;],openParens:[&quot;(&quot;],closeParens:[&quot;)&quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;@&quot;,&quot;#&quot;,&quot;$ &quot;],lineCommentTypes:[&quot;--&quot;],operators:[&quot;|/&quot;,&quot;||/&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;!=&quot;,&quot;||&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),gc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=i(ac),a=i(sc),o=i(Qs);function i(e){return e &amp;&amp;e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function c(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function u(e){return(u=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var f=[&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYSE &quot;,&quot;ANALYZE &quot;,&quot;ARRAY_ZIP &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;AVG &quot;,&quot;BETWEEN &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;COALESCE &quot;,&quot;COLLECT_LIST &quot;,&quot;COLLECT_SET &quot;,&quot;COLUMN &quot;,&quot;COLUMNS &quot;,&quot;COMMENT &quot;,&quot;CONSTRAINT &quot;,&quot;CONTAINS &quot;,&quot;CONVERT &quot;,&quot;COUNT &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT ROW &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;DATABASE &quot;,&quot;DATABASES &quot;,&quot;DATE_ADD &quot;,&quot;DATE_SUB &quot;,&quot;DATE_TRUNC &quot;,&quot;DAY_HOUR &quot;,&quot;DAY_MINUTE &quot;,&quot;DAY_SECOND &quot;,&quot;DAY &quot;,&quot;DAYS &quot;,&quot;DECODE &quot;,&quot;DEFAULT &quot;,&quot;DELETE &quot;,&quot;DENSE_RANK &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DISTINCT &quot;,&quot;DISTINCTROW &quot;,&quot;DIV &quot;,&quot;DROP &quot;,&quot;ELSE &quot;,&quot;ENCODE &quot;,&quot;END &quot;,&quot;EXISTS &quot;,&quot;EXPLAIN &quot;,&quot;EXPLODE_OUTER &quot;,&quot;EXPLODE &quot;,&quot;FILTER &quot;,&quot;FIRST_VALUE &quot;,&quot;FIRST &quot;,&quot;FIXED &quot;,&quot;FLATTEN &quot;,&quot;FOLLOWING &quot;,&quot;FROM_UNIXTIME &quot;,&quot;FULL &quot;,&quot;GREATEST &quot;,&quot;GROUP_CONCAT &quot;,&quot;HOUR_MINUTE &quot;,&quot;HOUR_SECOND &quot;,&quot;HOUR &quot;,&quot;HOURS &quot;,&quot;IF &quot;,&quot;IFNULL &quot;,&quot;IN &quot;,&quot;INSERT &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;LAG &quot;,&quot;LAST_VALUE &quot;,&quot;LAST &quot;,&quot;LEAD &quot;,&quot;LEADING &quot;,&quot;LEAST &quot;,&quot;LEVEL &quot;,&quot;LIKE &quot;,&quot;MAX &quot;,&quot;MERGE &quot;,&quot;MIN &quot;,&quot;MINUTE_SECOND &quot;,&quot;MINUTE &quot;,&quot;MONTH &quot;,&quot;NATURAL &quot;,&quot;NOT &quot;,&quot;NOW()&quot;,&quot;NTILE &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;OFFSET &quot;,&quot;ON DELETE &quot;,&quot;ON UPDATE &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPTIMIZE &quot;,&quot;OVER &quot;,&quot;PERCENT_RANK &quot;,&quot;PRECEDING &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;REGEXP &quot;,&quot;RENAME &quot;,&quot;RLIKE &quot;,&quot;ROW &quot;,&quot;ROWS &quot;,&quot;SECOND &quot;,&quot;SEPARATOR &quot;,&quot;SEQUENCE &quot;,&quot;SIZE &quot;,&quot;STRING &quot;,&quot;STRUCT &quot;,&quot;SUM &quot;,&quot;TABLE &quot;,&quot;TABLES &quot;,&quot;TEMPORARY &quot;,&quot;THEN &quot;,&quot;TO_DATE &quot;,&quot;TO_JSON &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSFORM &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;TYPE &quot;,&quot;TYPES &quot;,&quot;UNBOUNDED &quot;,&quot;UNIQUE &quot;,&quot;UNIX_TIMESTAMP &quot;,&quot;UNLOCK &quot;,&quot;UNSIGNED &quot;,&quot;USING &quot;,&quot;VARIABLES &quot;,&quot;VIEW &quot;,&quot;WHEN &quot;,&quot;WITH &quot;,&quot;YEAR_MONTH &quot;],d=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER DATABASE &quot;,&quot;ALTER SCHEMA &quot;,&quot;ALTER TABLE &quot;,&quot;CLUSTER BY &quot;,&quot;CLUSTERED BY &quot;,&quot;DELETE FROM &quot;,&quot;DISTRIBUTE BY &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;OPTIONS &quot;,&quot;ORDER BY &quot;,&quot;PARTITION BY &quot;,&quot;PARTITIONED BY &quot;,&quot;RANGE &quot;,&quot;ROWS &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;TBLPROPERTIES &quot;,&quot;UPDATE &quot;,&quot;USING &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;,&quot;WINDOW &quot;],p=[&quot;EXCEPT ALL &quot;,&quot;EXCEPT &quot;,&quot;INTERSECT ALL &quot;,&quot;INTERSECT &quot;,&quot;UNION ALL &quot;,&quot;UNION &quot;],m=[&quot;AND &quot;,&quot;CREATE OR &quot;,&quot;CREATE &quot;,&quot;ELSE &quot;,&quot;LATERAL VIEW &quot;,&quot;OR &quot;,&quot;OUTER APPLY &quot;,&quot;WHEN &quot;,&quot;XOR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;,&quot;ANTI JOIN &quot;,&quot;SEMI JOIN &quot;,&quot;LEFT ANTI JOIN &quot;,&quot;LEFT SEMI JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;RIGHT SEMI JOIN &quot;,&quot;NATURAL ANTI JOIN &quot;,&quot;NATURAL FULL OUTER JOIN &quot;,&quot;NATURAL INNER JOIN &quot;,&quot;NATURAL LEFT ANTI JOIN &quot;,&quot;NATURAL LEFT OUTER JOIN &quot;,&quot;NATURAL LEFT SEMI JOIN &quot;,&quot;NATURAL OUTER JOIN &quot;,&quot;NATURAL RIGHT OUTER JOIN &quot;,&quot;NATURAL RIGHT SEMI JOIN &quot;,&quot;NATURAL SEMI JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;s(e,t)}(h,e);var t,n,r,i=(n=h,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=u(n);if(r){var a=u(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return c(this,e)});function h(){return l(this,h),i.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:f,reservedTopLevelWords:d,reservedNewlineWords:m,reservedTopLevelWordsNoIndent:p,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;,&quot;{}&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;$ &quot;],lineCommentTypes:[&quot;--&quot;],operators:[&quot;!=&quot;,&quot;&lt;=&gt;&quot;,&quot;&amp;&amp;&quot;,&quot;||&quot;,&quot;==&quot;]})}},{key:&quot;tokenOverride &quot;,value:function(e){if((0,rc.isWindow)(e)){var t=this.tokenLookAhead();if(t &amp;&amp;t.type===o.default.OPEN_PAREN)return{type:o.default.RESERVED,value:e.value}}if((0,rc.isEnd)(e)){var n=this.tokenLookBehind();if(n &amp;&amp;n.type===o.default.OPERATOR &amp;&amp;&quot;.&quot;===n.value)return{type:o.default.WORD,value:e.value}}return e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(h.prototype,t),h}(r.default),e.exports=t.default}),vc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ABS &quot;,&quot;ALL &quot;,&quot;ALLOCATE &quot;,&quot;ALTER &quot;,&quot;AND &quot;,&quot;ANY &quot;,&quot;ARE &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASENSITIVE &quot;,&quot;ASYMMETRIC &quot;,&quot;AT &quot;,&quot;ATOMIC &quot;,&quot;AUTHORIZATION &quot;,&quot;AVG &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CALLED &quot;,&quot;CARDINALITY &quot;,&quot;CASCADED &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CEIL &quot;,&quot;CEILING &quot;,&quot;CHAR &quot;,&quot;CHAR_LENGTH &quot;,&quot;CHARACTER &quot;,&quot;CHARACTER_LENGTH &quot;,&quot;CHECK &quot;,&quot;CLOB &quot;,&quot;CLOSE &quot;,&quot;COALESCE &quot;,&quot;COLLATE &quot;,&quot;COLLECT &quot;,&quot;COLUMN &quot;,&quot;COMMIT &quot;,&quot;CONDITION &quot;,&quot;CONNECT &quot;,&quot;CONSTRAINT &quot;,&quot;CONVERT &quot;,&quot;CORR &quot;,&quot;CORRESPONDING &quot;,&quot;COUNT &quot;,&quot;COVAR_POP &quot;,&quot;COVAR_SAMP &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CUBE &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT &quot;,&quot;CURRENT_CATALOG &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_DEFAULT_TRANSFORM_GROUP &quot;,&quot;CURRENT_PATH &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_SCHEMA &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_TRANSFORM_GROUP_FOR_TYPE &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;CYCLE &quot;,&quot;DATE &quot;,&quot;DAY &quot;,&quot;DEALLOCATE &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DELETE &quot;,&quot;DENSE_RANK &quot;,&quot;DEREF &quot;,&quot;DESCRIBE &quot;,&quot;DETERMINISTIC &quot;,&quot;DISCONNECT &quot;,&quot;DISTINCT &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DYNAMIC &quot;,&quot;EACH &quot;,&quot;ELEMENT &quot;,&quot;ELSE &quot;,&quot;END &quot;,&quot;END-EXEC &quot;,&quot;ESCAPE &quot;,&quot;EVERY &quot;,&quot;EXCEPT &quot;,&quot;EXEC &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXP &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FILTER &quot;,&quot;FLOAT &quot;,&quot;FLOOR &quot;,&quot;FOR &quot;,&quot;FOREIGN &quot;,&quot;FREE &quot;,&quot;FROM &quot;,&quot;FULL &quot;,&quot;FUNCTION &quot;,&quot;FUSION &quot;,&quot;GET &quot;,&quot;GLOBAL &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;HAVING &quot;,&quot;HOLD &quot;,&quot;HOUR &quot;,&quot;IDENTITY &quot;,&quot;IN &quot;,&quot;INDICATOR &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTERSECT &quot;,&quot;INTERSECTION &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;JOIN &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LATERAL &quot;,&quot;LEADING &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LIKE_REGEX &quot;,&quot;LN &quot;,&quot;LOCAL &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOWER &quot;,&quot;MATCH &quot;,&quot;MAX &quot;,&quot;MEMBER &quot;,&quot;MERGE &quot;,&quot;METHOD &quot;,&quot;MIN &quot;,&quot;MINUTE &quot;,&quot;MOD &quot;,&quot;MODIFIES &quot;,&quot;MODULE &quot;,&quot;MONTH &quot;,&quot;MULTISET &quot;,&quot;NATIONAL &quot;,&quot;NATURAL &quot;,&quot;NCHAR &quot;,&quot;NCLOB &quot;,&quot;NEW &quot;,&quot;NO &quot;,&quot;NONE &quot;,&quot;NORMALIZE &quot;,&quot;NOT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NUMERIC &quot;,&quot;OCTET_LENGTH &quot;,&quot;OCCURRENCES_REGEX &quot;,&quot;OF &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPEN &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;OVERLAPS &quot;,&quot;OVERLAY &quot;,&quot;PARAMETER &quot;,&quot;PARTITION &quot;,&quot;PERCENT_RANK &quot;,&quot;PERCENTILE_CONT &quot;,&quot;PERCENTILE_DISC &quot;,&quot;POSITION &quot;,&quot;POSITION_REGEX &quot;,&quot;POWER &quot;,&quot;PRECISION &quot;,&quot;PREPARE &quot;,&quot;PRIMARY &quot;,&quot;PROCEDURE &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;READS &quot;,&quot;REAL &quot;,&quot;RECURSIVE &quot;,&quot;REF &quot;,&quot;REFERENCES &quot;,&quot;REFERENCING &quot;,&quot;REGR_AVGX &quot;,&quot;REGR_AVGY &quot;,&quot;REGR_COUNT &quot;,&quot;REGR_INTERCEPT &quot;,&quot;REGR_R2 &quot;,&quot;REGR_SLOPE &quot;,&quot;REGR_SXX &quot;,&quot;REGR_SXY &quot;,&quot;REGR_SYY &quot;,&quot;RELEASE &quot;,&quot;RESULT &quot;,&quot;RETURN &quot;,&quot;RETURNS &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLLBACK &quot;,&quot;ROLLUP &quot;,&quot;ROW &quot;,&quot;ROW_NUMBER &quot;,&quot;ROWS &quot;,&quot;SAVEPOINT &quot;,&quot;SCOPE &quot;,&quot;SCROLL &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SELECT &quot;,&quot;SENSITIVE &quot;,&quot;SESSION_USER &quot;,&quot;SET &quot;,&quot;SIMILAR &quot;,&quot;SMALLINT &quot;,&quot;SOME &quot;,&quot;SPECIFIC &quot;,&quot;SPECIFICTYPE &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQRT &quot;,&quot;START &quot;,&quot;STATIC &quot;,&quot;STDDEV_POP &quot;,&quot;STDDEV_SAMP &quot;,&quot;SUBMULTISET &quot;,&quot;SUBSTRING &quot;,&quot;SUBSTRING_REGEX &quot;,&quot;SUM &quot;,&quot;SYMMETRIC &quot;,&quot;SYSTEM &quot;,&quot;SYSTEM_USER &quot;,&quot;TABLE &quot;,&quot;TABLESAMPLE &quot;,&quot;THEN &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TIMEZONE_HOUR &quot;,&quot;TIMEZONE_MINUTE &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSLATE &quot;,&quot;TRANSLATE_REGEX &quot;,&quot;TRANSLATION &quot;,&quot;TREAT &quot;,&quot;TRIGGER &quot;,&quot;TRIM &quot;,&quot;TRUE &quot;,&quot;UESCAPE &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNNEST &quot;,&quot;UPDATE &quot;,&quot;UPPER &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALUE &quot;,&quot;VALUES &quot;,&quot;VAR_POP &quot;,&quot;VAR_SAMP &quot;,&quot;VARBINARY &quot;,&quot;VARCHAR &quot;,&quot;VARYING &quot;,&quot;WHEN &quot;,&quot;WHENEVER &quot;,&quot;WHERE &quot;,&quot;WIDTH_BUCKET &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WITHOUT &quot;,&quot;YEAR &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;CASE &quot;,&quot;DELETE FROM &quot;,&quot;END &quot;,&quot;FETCH FIRST &quot;,&quot;FETCH NEXT &quot;,&quot;FETCH PRIOR &quot;,&quot;FETCH LAST &quot;,&quot;FETCH ABSOLUTE &quot;,&quot;FETCH RELATIVE &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;INTERSECT DISTINCT &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;,&quot;UNION DISTINCT &quot;,&quot;EXCEPT &quot;,&quot;EXCEPT ALL &quot;,&quot;EXCEPT DISTINCT &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[],lineCommentTypes:[&quot;--&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),yc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ADD &quot;,&quot;EXTERNAL &quot;,&quot;PROCEDURE &quot;,&quot;ALL &quot;,&quot;FETCH &quot;,&quot;PUBLIC &quot;,&quot;ALTER &quot;,&quot;FILE &quot;,&quot;RAISERROR &quot;,&quot;AND &quot;,&quot;FILLFACTOR &quot;,&quot;READ &quot;,&quot;ANY &quot;,&quot;FOR &quot;,&quot;READTEXT &quot;,&quot;AS &quot;,&quot;FOREIGN &quot;,&quot;RECONFIGURE &quot;,&quot;ASC &quot;,&quot;FREETEXT &quot;,&quot;REFERENCES &quot;,&quot;AUTHORIZATION &quot;,&quot;FREETEXTTABLE &quot;,&quot;REPLICATION &quot;,&quot;BACKUP &quot;,&quot;FROM &quot;,&quot;RESTORE &quot;,&quot;BEGIN &quot;,&quot;FULL &quot;,&quot;RESTRICT &quot;,&quot;BETWEEN &quot;,&quot;FUNCTION &quot;,&quot;RETURN &quot;,&quot;BREAK &quot;,&quot;GOTO &quot;,&quot;REVERT &quot;,&quot;BROWSE &quot;,&quot;GRANT &quot;,&quot;REVOKE &quot;,&quot;BULK &quot;,&quot;GROUP &quot;,&quot;RIGHT &quot;,&quot;BY &quot;,&quot;HAVING &quot;,&quot;ROLLBACK &quot;,&quot;CASCADE &quot;,&quot;HOLDLOCK &quot;,&quot;ROWCOUNT &quot;,&quot;CASE &quot;,&quot;IDENTITY &quot;,&quot;ROWGUIDCOL &quot;,&quot;CHECK &quot;,&quot;IDENTITY_INSERT &quot;,&quot;RULE &quot;,&quot;CHECKPOINT &quot;,&quot;IDENTITYCOL &quot;,&quot;SAVE &quot;,&quot;CLOSE &quot;,&quot;IF &quot;,&quot;SCHEMA &quot;,&quot;CLUSTERED &quot;,&quot;IN &quot;,&quot;SECURITYAUDIT &quot;,&quot;COALESCE &quot;,&quot;INDEX &quot;,&quot;SELECT &quot;,&quot;COLLATE &quot;,&quot;INNER &quot;,&quot;SEMANTICKEYPHRASETABLE &quot;,&quot;COLUMN &quot;,&quot;INSERT &quot;,&quot;SEMANTICSIMILARITYDETAILSTABLE &quot;,&quot;COMMIT &quot;,&quot;INTERSECT &quot;,&quot;SEMANTICSIMILARITYTABLE &quot;,&quot;COMPUTE &quot;,&quot;INTO &quot;,&quot;SESSION_USER &quot;,&quot;CONSTRAINT &quot;,&quot;IS &quot;,&quot;SET &quot;,&quot;CONTAINS &quot;,&quot;JOIN &quot;,&quot;SETUSER &quot;,&quot;CONTAINSTABLE &quot;,&quot;KEY &quot;,&quot;SHUTDOWN &quot;,&quot;CONTINUE &quot;,&quot;KILL &quot;,&quot;SOME &quot;,&quot;CONVERT &quot;,&quot;LEFT &quot;,&quot;STATISTICS &quot;,&quot;CREATE &quot;,&quot;LIKE &quot;,&quot;SYSTEM_USER &quot;,&quot;CROSS &quot;,&quot;LINENO &quot;,&quot;TABLE &quot;,&quot;CURRENT &quot;,&quot;LOAD &quot;,&quot;TABLESAMPLE &quot;,&quot;CURRENT_DATE &quot;,&quot;MERGE &quot;,&quot;TEXTSIZE &quot;,&quot;CURRENT_TIME &quot;,&quot;NATIONAL &quot;,&quot;THEN &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;NOCHECK &quot;,&quot;TO &quot;,&quot;CURRENT_USER &quot;,&quot;NONCLUSTERED &quot;,&quot;TOP &quot;,&quot;CURSOR &quot;,&quot;NOT &quot;,&quot;TRAN &quot;,&quot;DATABASE &quot;,&quot;NULL &quot;,&quot;TRANSACTION &quot;,&quot;DBCC &quot;,&quot;NULLIF &quot;,&quot;TRIGGER &quot;,&quot;DEALLOCATE &quot;,&quot;OF &quot;,&quot;TRUNCATE &quot;,&quot;DECLARE &quot;,&quot;OFF &quot;,&quot;TRY_CONVERT &quot;,&quot;DEFAULT &quot;,&quot;OFFSETS &quot;,&quot;TSEQUAL &quot;,&quot;DELETE &quot;,&quot;ON &quot;,&quot;UNION &quot;,&quot;DENY &quot;,&quot;OPEN &quot;,&quot;UNIQUE &quot;,&quot;DESC &quot;,&quot;OPENDATASOURCE &quot;,&quot;UNPIVOT &quot;,&quot;DISK &quot;,&quot;OPENQUERY &quot;,&quot;UPDATE &quot;,&quot;DISTINCT &quot;,&quot;OPENROWSET &quot;,&quot;UPDATETEXT &quot;,&quot;DISTRIBUTED &quot;,&quot;OPENXML &quot;,&quot;USE &quot;,&quot;DOUBLE &quot;,&quot;OPTION &quot;,&quot;USER &quot;,&quot;DROP &quot;,&quot;OR &quot;,&quot;VALUES &quot;,&quot;DUMP &quot;,&quot;ORDER &quot;,&quot;VARYING &quot;,&quot;ELSE &quot;,&quot;OUTER &quot;,&quot;VIEW &quot;,&quot;END &quot;,&quot;OVER &quot;,&quot;WAITFOR &quot;,&quot;ERRLVL &quot;,&quot;PERCENT &quot;,&quot;WHEN &quot;,&quot;ESCAPE &quot;,&quot;PIVOT &quot;,&quot;WHERE &quot;,&quot;EXCEPT &quot;,&quot;PLAN &quot;,&quot;WHILE &quot;,&quot;EXEC &quot;,&quot;PRECISION &quot;,&quot;WITH &quot;,&quot;EXECUTE &quot;,&quot;PRIMARY &quot;,&quot;WITHIN GROUP &quot;,&quot;EXISTS &quot;,&quot;PRINT &quot;,&quot;WRITETEXT &quot;,&quot;EXIT &quot;,&quot;PROC &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;CASE &quot;,&quot;DELETE FROM &quot;,&quot;END &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;N &#039;&#039;&quot;,&quot;&#039;&#039;&quot;,&quot;[]&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[],namedPlaceholderTypes:[&quot;@&quot;],lineCommentTypes:[&quot;--&quot;],specialWordChars:[&quot;#&quot;,&quot;@&quot;],operators:[&quot;&gt;=&quot;,&quot;&lt;=&quot;,&quot;&lt;&gt;&quot;,&quot;!=&quot;,&quot;!&lt;&quot;,&quot;!&gt;&quot;,&quot;+=&quot;,&quot;-=&quot;,&quot;*=&quot;,&quot;/=&quot;,&quot;%=&quot;,&quot;|=&quot;,&quot;&amp;=&quot;,&quot;^=&quot;,&quot;::&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),Ec=/*@__PURE__*/Se(we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.supportedDialects=t.format=void 0;var n=d(cc),r=d(uc),a=d(fc),o=d(dc),i=d(pc),l=d(mc),s=d(hc),c=d(gc),u=d(vc),f=d(yc);function d(e){return e &amp;&amp;e.__esModule?e:{default:e}}function p(e){return(p=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}var m={db2:n.default,mariadb:r.default,mysql:a.default,n1ql:o.default,plsql:i.default,postgresql:l.default,redshift:s.default,spark:c.default,sql:u.default,tsql:f.default};t.format=function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{};if(&quot;string &quot;!=typeof e)throw new Error(&quot;Invalid query argument. Extected string, instead got &quot;+p(e));var n=u.default;if(void 0!==t.language &amp;&amp;(n=m[t.language]),void 0===n)throw Error(&quot;Unsupported SQL dialect: &quot;.concat(t.language));return new n(t).format(e)};var h=Object.keys(m);t.supportedDialects=h}));function bc(e){return new Date(1e3*e)}function Tc(e){return JSON.stringify(e,null,4)}function Nc(e){return!!(e.glows.length||Object.values(e.context_items.dumps||[]).length||Object.values(e.context_items.logs||[]).length||Object.values(e.context_items.queries||[]).length)}function Rc({value:e,className:t=&quot;&quot;,alwaysVisible:n=!1,direction:r=&quot;right &quot;}){const[a,o]=c.useState(!1);return c.useEffect(()=&gt;{let e;return a &amp;&amp;(e=window.setTimeout(()=&gt;o(!1),3e3)),()=&gt;window.clearTimeout(e)},[a]),c.createElement(&quot;div &quot;,{className:t},c.createElement(ks,{onClick:function(t){t.preventDefault(),function(e){const t=document.createElement(&quot;textarea &quot;);t.value=e,document.body.appendChild(t),t.select(),document.execCommand(&quot;copy &quot;),document.body.removeChild(t)}(e),o(!0)},title:&quot;Copy to clipboard &quot;,className:`
                    ${n?&quot;&quot;:&quot;opacity-0 transform scale-80 transition-animation delay-100 &quot;}
                    ${a?&quot;opacity-0 &quot;:&quot;group-hover:opacity-100 group-hover:scale-100 &quot;}
                `},c.createElement(oi,{icon:mi})),a &amp;&amp;c.createElement(&quot;p &quot;,{className:`absolute top-0 ${&quot;right &quot;==r?&quot;right-0 &quot;:&quot;left-0 &quot;} hidden z-10 sm:inline-flex gap-2 items-center h-6 px-2 rounded-sm ~bg-white shadow text-xs font-medium whitespace-nowrap text-emerald-500`,onClick:()=&gt;o(!1)},&quot;Copied!&quot;))}function Sc({children:e,language:t}){return c.createElement(Rs,{language:t,customStyle:{background:&quot;transparent &quot;}},e)}function wc({value:e,limitHeight:t=!0,language:n=null,transparent:r=!1,overflowX:a=!0}){const[o,i]=c.useState(t),[l,s]=c.useState(&quot;sql &quot;===n),u=c.useRef(null),f=c.useRef(null);return c.useEffect(()=&gt;{u.current &amp;&amp;s(u.current.scrollHeight &gt;u.current.clientHeight)},[u.current,o,e,t]),c.createElement(&quot;div &quot;,{ref:f,className:`
                ${l?&quot;cursor-pointer &quot;:&quot;&quot;}
                ${r?&quot;&quot;:&quot;~bg-gray-500/5 &quot;}
                group py-2`,onClick:function(e){var t;3!==e.detail?l &amp;&amp;(!o &amp;&amp;null!=(t=window.getSelection())&amp;&amp;t.toString().length||i(!o)):function(){const e=document.createRange();e.selectNodeContents(f.current);const t=window.getSelection();t.removeAllRanges(),t.addRange(e)}()}},c.createElement(&quot;div &quot;,{className:a?&quot;mask-fade-x &quot;:&quot;&quot;},&quot;sql &quot;===n &amp;&amp;c.createElement(c.Fragment,null,o?c.createElement(&quot;pre &quot;,{className:&quot;pl-4 &quot;+(a?&quot;overflow-x-scroll scrollbar-hidden-x pr-12 &quot;:&quot;truncate pr-8 &quot;)},c.createElement(&quot;code &quot;,{className:&quot;font-mono leading-relaxed text-sm font-normal &quot;},c.createElement(Sc,{language:&quot;sql &quot;},e))):c.createElement(&quot;pre &quot;,{className:&quot;pl-4 &quot;+(a?&quot;overflow-x-scroll scrollbar-hidden-x pr-12 &quot;:&quot;pr-8 &quot;)},c.createElement(&quot;code &quot;,{className:&quot;font-mono leading-relaxed text-sm font-normal &quot;},c.createElement(Sc,{language:&quot;sql &quot;},Ec.format(e,{language:&quot;mysql &quot;}))))),&quot;sql &quot;!==n &amp;&amp;c.createElement(&quot;pre &quot;,{ref:u,className:`
                            pl-4
                            ${l?&quot;mask-fade-y -mb-2 &quot;:&quot;&quot;}
                            ${o?&quot;overflow-y-hidden max-h-32 &quot;:&quot;&quot;}
                            ${a?&quot;overflow-x-scroll scrollbar-hidden-x pr-12 &quot;:&quot;pr-8 &quot;}
                        `},c.createElement(&quot;code &quot;,{className:&quot;font-mono leading-relaxed text-sm font-normal &quot;},n?c.createElement(Sc,{language:n},e):e))),c.createElement(Rc,{className:&quot;absolute top-2 right-3 &quot;,value:e}),l &amp;&amp;c.createElement(ks,{onClick:()=&gt;i(!o),className:&quot;
                        absolute -bottom-3 left-1/2 -translate-x-1/2
                        opacity-0 group-hover:opacity-100 scale-80 group-hover:scale-100 delay-100
                    &quot;},c.createElement(oi,{icon:li,className:&quot;transition-transform duration-300 transform &quot;+(o?&quot;&quot;:&quot;rotate-180 &quot;)})))}function Oc({message:e,exceptionClass:t,className:n=&quot;&quot;}){const[r,a]=c.useState(e),[o,i]=c.useState(null);return c.useEffect(()=&gt;{if(&quot;Illuminate\Database\QueryException &quot;===t||e.match(/SQLSTATE\[.*\].*\(SQL: .*\)/)){const t=/*#__PURE__*/Ss(/\(SQL: (.*?)\)($| \(View: .*\)$)/,{query:1}),[,n]=e.match(t)||[];i(n),a(e.replace(t,&quot;$2 &quot;))}},[e,t]),c.createElement(c.Fragment,null,c.createElement(Js,{message:r,className:n}),o &amp;&amp;c.createElement(wc,{value:o,language:&quot;sql &quot;}))}Rs.registerLanguage(&quot;sql &quot;,function(e){const t=e.COMMENT(&quot;--&quot;,&quot;$ &quot;),n=[&quot;true &quot;,&quot;false &quot;,&quot;unknown &quot;],r=[&quot;bigint &quot;,&quot;binary &quot;,&quot;blob &quot;,&quot;boolean &quot;,&quot;char &quot;,&quot;character &quot;,&quot;clob &quot;,&quot;date &quot;,&quot;dec &quot;,&quot;decfloat &quot;,&quot;decimal &quot;,&quot;float &quot;,&quot;int &quot;,&quot;integer &quot;,&quot;interval &quot;,&quot;nchar &quot;,&quot;nclob &quot;,&quot;national &quot;,&quot;numeric &quot;,&quot;real &quot;,&quot;row &quot;,&quot;smallint &quot;,&quot;time &quot;,&quot;timestamp &quot;,&quot;varchar &quot;,&quot;varying &quot;,&quot;varbinary &quot;],a=[&quot;abs &quot;,&quot;acos &quot;,&quot;array_agg &quot;,&quot;asin &quot;,&quot;atan &quot;,&quot;avg &quot;,&quot;cast &quot;,&quot;ceil &quot;,&quot;ceiling &quot;,&quot;coalesce &quot;,&quot;corr &quot;,&quot;cos &quot;,&quot;cosh &quot;,&quot;count &quot;,&quot;covar_pop &quot;,&quot;covar_samp &quot;,&quot;cume_dist &quot;,&quot;dense_rank &quot;,&quot;deref &quot;,&quot;element &quot;,&quot;exp &quot;,&quot;extract &quot;,&quot;first_value &quot;,&quot;floor &quot;,&quot;json_array &quot;,&quot;json_arrayagg &quot;,&quot;json_exists &quot;,&quot;json_object &quot;,&quot;json_objectagg &quot;,&quot;json_query &quot;,&quot;json_table &quot;,&quot;json_table_primitive &quot;,&quot;json_value &quot;,&quot;lag &quot;,&quot;last_value &quot;,&quot;lead &quot;,&quot;listagg &quot;,&quot;ln &quot;,&quot;log &quot;,&quot;log10 &quot;,&quot;lower &quot;,&quot;max &quot;,&quot;min &quot;,&quot;mod &quot;,&quot;nth_value &quot;,&quot;ntile &quot;,&quot;nullif &quot;,&quot;percent_rank &quot;,&quot;percentile_cont &quot;,&quot;percentile_disc &quot;,&quot;position &quot;,&quot;position_regex &quot;,&quot;power &quot;,&quot;rank &quot;,&quot;regr_avgx &quot;,&quot;regr_avgy &quot;,&quot;regr_count &quot;,&quot;regr_intercept &quot;,&quot;regr_r2 &quot;,&quot;regr_slope &quot;,&quot;regr_sxx &quot;,&quot;regr_sxy &quot;,&quot;regr_syy &quot;,&quot;row_number &quot;,&quot;sin &quot;,&quot;sinh &quot;,&quot;sqrt &quot;,&quot;stddev_pop &quot;,&quot;stddev_samp &quot;,&quot;substring &quot;,&quot;substring_regex &quot;,&quot;sum &quot;,&quot;tan &quot;,&quot;tanh &quot;,&quot;translate &quot;,&quot;translate_regex &quot;,&quot;treat &quot;,&quot;trim &quot;,&quot;trim_array &quot;,&quot;unnest &quot;,&quot;upper &quot;,&quot;value_of &quot;,&quot;var_pop &quot;,&quot;var_samp &quot;,&quot;width_bucket &quot;],o=[&quot;create table &quot;,&quot;insert into &quot;,&quot;primary key &quot;,&quot;foreign key &quot;,&quot;not null &quot;,&quot;alter table &quot;,&quot;add constraint &quot;,&quot;grouping sets &quot;,&quot;on overflow &quot;,&quot;character set &quot;,&quot;respect nulls &quot;,&quot;ignore nulls &quot;,&quot;nulls first &quot;,&quot;nulls last &quot;,&quot;depth first &quot;,&quot;breadth first &quot;],i=a,l=[&quot;abs &quot;,&quot;acos &quot;,&quot;all &quot;,&quot;allocate &quot;,&quot;alter &quot;,&quot;and &quot;,&quot;any &quot;,&quot;are &quot;,&quot;array &quot;,&quot;array_agg &quot;,&quot;array_max_cardinality &quot;,&quot;as &quot;,&quot;asensitive &quot;,&quot;asin &quot;,&quot;asymmetric &quot;,&quot;at &quot;,&quot;atan &quot;,&quot;atomic &quot;,&quot;authorization &quot;,&quot;avg &quot;,&quot;begin &quot;,&quot;begin_frame &quot;,&quot;begin_partition &quot;,&quot;between &quot;,&quot;bigint &quot;,&quot;binary &quot;,&quot;blob &quot;,&quot;boolean &quot;,&quot;both &quot;,&quot;by &quot;,&quot;call &quot;,&quot;called &quot;,&quot;cardinality &quot;,&quot;cascaded &quot;,&quot;case &quot;,&quot;cast &quot;,&quot;ceil &quot;,&quot;ceiling &quot;,&quot;char &quot;,&quot;char_length &quot;,&quot;character &quot;,&quot;character_length &quot;,&quot;check &quot;,&quot;classifier &quot;,&quot;clob &quot;,&quot;close &quot;,&quot;coalesce &quot;,&quot;collate &quot;,&quot;collect &quot;,&quot;column &quot;,&quot;commit &quot;,&quot;condition &quot;,&quot;connect &quot;,&quot;constraint &quot;,&quot;contains &quot;,&quot;convert &quot;,&quot;copy &quot;,&quot;corr &quot;,&quot;corresponding &quot;,&quot;cos &quot;,&quot;cosh &quot;,&quot;count &quot;,&quot;covar_pop &quot;,&quot;covar_samp &quot;,&quot;create &quot;,&quot;cross &quot;,&quot;cube &quot;,&quot;cume_dist &quot;,&quot;current &quot;,&quot;current_catalog &quot;,&quot;current_date &quot;,&quot;current_default_transform_group &quot;,&quot;current_path &quot;,&quot;current_role &quot;,&quot;current_row &quot;,&quot;current_schema &quot;,&quot;current_time &quot;,&quot;current_timestamp &quot;,&quot;current_path &quot;,&quot;current_role &quot;,&quot;current_transform_group_for_type &quot;,&quot;current_user &quot;,&quot;cursor &quot;,&quot;cycle &quot;,&quot;date &quot;,&quot;day &quot;,&quot;deallocate &quot;,&quot;dec &quot;,&quot;decimal &quot;,&quot;decfloat &quot;,&quot;declare &quot;,&quot;default &quot;,&quot;define &quot;,&quot;delete &quot;,&quot;dense_rank &quot;,&quot;deref &quot;,&quot;describe &quot;,&quot;deterministic &quot;,&quot;disconnect &quot;,&quot;distinct &quot;,&quot;double &quot;,&quot;drop &quot;,&quot;dynamic &quot;,&quot;each &quot;,&quot;element &quot;,&quot;else &quot;,&quot;empty &quot;,&quot;end &quot;,&quot;end_frame &quot;,&quot;end_partition &quot;,&quot;end-exec &quot;,&quot;equals &quot;,&quot;escape &quot;,&quot;every &quot;,&quot;except &quot;,&quot;exec &quot;,&quot;execute &quot;,&quot;exists &quot;,&quot;exp &quot;,&quot;external &quot;,&quot;extract &quot;,&quot;false &quot;,&quot;fetch &quot;,&quot;filter &quot;,&quot;first_value &quot;,&quot;float &quot;,&quot;floor &quot;,&quot;for &quot;,&quot;foreign &quot;,&quot;frame_row &quot;,&quot;free &quot;,&quot;from &quot;,&quot;full &quot;,&quot;function &quot;,&quot;fusion &quot;,&quot;get &quot;,&quot;global &quot;,&quot;grant &quot;,&quot;group &quot;,&quot;grouping &quot;,&quot;groups &quot;,&quot;having &quot;,&quot;hold &quot;,&quot;hour &quot;,&quot;identity &quot;,&quot;in &quot;,&quot;indicator &quot;,&quot;initial &quot;,&quot;inner &quot;,&quot;inout &quot;,&quot;insensitive &quot;,&quot;insert &quot;,&quot;int &quot;,&quot;integer &quot;,&quot;intersect &quot;,&quot;intersection &quot;,&quot;interval &quot;,&quot;into &quot;,&quot;is &quot;,&quot;join &quot;,&quot;json_array &quot;,&quot;json_arrayagg &quot;,&quot;json_exists &quot;,&quot;json_object &quot;,&quot;json_objectagg &quot;,&quot;json_query &quot;,&quot;json_table &quot;,&quot;json_table_primitive &quot;,&quot;json_value &quot;,&quot;lag &quot;,&quot;language &quot;,&quot;large &quot;,&quot;last_value &quot;,&quot;lateral &quot;,&quot;lead &quot;,&quot;leading &quot;,&quot;left &quot;,&quot;like &quot;,&quot;like_regex &quot;,&quot;listagg &quot;,&quot;ln &quot;,&quot;local &quot;,&quot;localtime &quot;,&quot;localtimestamp &quot;,&quot;log &quot;,&quot;log10 &quot;,&quot;lower &quot;,&quot;match &quot;,&quot;match_number &quot;,&quot;match_recognize &quot;,&quot;matches &quot;,&quot;max &quot;,&quot;member &quot;,&quot;merge &quot;,&quot;method &quot;,&quot;min &quot;,&quot;minute &quot;,&quot;mod &quot;,&quot;modifies &quot;,&quot;module &quot;,&quot;month &quot;,&quot;multiset &quot;,&quot;national &quot;,&quot;natural &quot;,&quot;nchar &quot;,&quot;nclob &quot;,&quot;new &quot;,&quot;no &quot;,&quot;none &quot;,&quot;normalize &quot;,&quot;not &quot;,&quot;nth_value &quot;,&quot;ntile &quot;,&quot;null &quot;,&quot;nullif &quot;,&quot;numeric &quot;,&quot;octet_length &quot;,&quot;occurrences_regex &quot;,&quot;of &quot;,&quot;offset &quot;,&quot;old &quot;,&quot;omit &quot;,&quot;on &quot;,&quot;one &quot;,&quot;only &quot;,&quot;open &quot;,&quot;or &quot;,&quot;order &quot;,&quot;out &quot;,&quot;outer &quot;,&quot;over &quot;,&quot;overlaps &quot;,&quot;overlay &quot;,&quot;parameter &quot;,&quot;partition &quot;,&quot;pattern &quot;,&quot;per &quot;,&quot;percent &quot;,&quot;percent_rank &quot;,&quot;percentile_cont &quot;,&quot;percentile_disc &quot;,&quot;period &quot;,&quot;portion &quot;,&quot;position &quot;,&quot;position_regex &quot;,&quot;power &quot;,&quot;precedes &quot;,&quot;precision &quot;,&quot;prepare &quot;,&quot;primary &quot;,&quot;procedure &quot;,&quot;ptf &quot;,&quot;range &quot;,&quot;rank &quot;,&quot;reads &quot;,&quot;real &quot;,&quot;recursive &quot;,&quot;ref &quot;,&quot;references &quot;,&quot;referencing &quot;,&quot;regr_avgx &quot;,&quot;regr_avgy &quot;,&quot;regr_count &quot;,&quot;regr_intercept &quot;,&quot;regr_r2 &quot;,&quot;regr_slope &quot;,&quot;regr_sxx &quot;,&quot;regr_sxy &quot;,&quot;regr_syy &quot;,&quot;release &quot;,&quot;result &quot;,&quot;return &quot;,&quot;returns &quot;,&quot;revoke &quot;,&quot;right &quot;,&quot;rollback &quot;,&quot;rollup &quot;,&quot;row &quot;,&quot;row_number &quot;,&quot;rows &quot;,&quot;running &quot;,&quot;savepoint &quot;,&quot;scope &quot;,&quot;scroll &quot;,&quot;search &quot;,&quot;second &quot;,&quot;seek &quot;,&quot;select &quot;,&quot;sensitive &quot;,&quot;session_user &quot;,&quot;set &quot;,&quot;show &quot;,&quot;similar &quot;,&quot;sin &quot;,&quot;sinh &quot;,&quot;skip &quot;,&quot;smallint &quot;,&quot;some &quot;,&quot;specific &quot;,&quot;specifictype &quot;,&quot;sql &quot;,&quot;sqlexception &quot;,&quot;sqlstate &quot;,&quot;sqlwarning &quot;,&quot;sqrt &quot;,&quot;start &quot;,&quot;static &quot;,&quot;stddev_pop &quot;,&quot;stddev_samp &quot;,&quot;submultiset &quot;,&quot;subset &quot;,&quot;substring &quot;,&quot;substring_regex &quot;,&quot;succeeds &quot;,&quot;sum &quot;,&quot;symmetric &quot;,&quot;system &quot;,&quot;system_time &quot;,&quot;system_user &quot;,&quot;table &quot;,&quot;tablesample &quot;,&quot;tan &quot;,&quot;tanh &quot;,&quot;then &quot;,&quot;time &quot;,&quot;timestamp &quot;,&quot;timezone_hour &quot;,&quot;timezone_minute &quot;,&quot;to &quot;,&quot;trailing &quot;,&quot;translate &quot;,&quot;translate_regex &quot;,&quot;translation &quot;,&quot;treat &quot;,&quot;trigger &quot;,&quot;trim &quot;,&quot;trim_array &quot;,&quot;true &quot;,&quot;truncate &quot;,&quot;uescape &quot;,&quot;union &quot;,&quot;unique &quot;,&quot;unknown &quot;,&quot;unnest &quot;,&quot;update   &quot;,&quot;upper &quot;,&quot;user &quot;,&quot;using &quot;,&quot;value &quot;,&quot;values &quot;,&quot;value_of &quot;,&quot;var_pop &quot;,&quot;var_samp &quot;,&quot;varbinary &quot;,&quot;varchar &quot;,&quot;varying &quot;,&quot;versioning &quot;,&quot;when &quot;,&quot;whenever &quot;,&quot;where &quot;,&quot;width_bucket &quot;,&quot;window &quot;,&quot;with &quot;,&quot;within &quot;,&quot;without &quot;,&quot;year &quot;,&quot;add &quot;,&quot;asc &quot;,&quot;collation &quot;,&quot;desc &quot;,&quot;final &quot;,&quot;first &quot;,&quot;last &quot;,&quot;view &quot;].filter(e=&gt;!a.includes(e)),s={begin:ys(//,Es(...i),/\s*\(/),keywords:{built_in:i}};return{name:&quot;SQL &quot;,case_insensitive:!0,illegal:/[{}]|&lt;\//,keywords:{$pattern:/[\w\.]+/,keyword:function(e,{exceptions:t,when:n}={}){const r=n;return t=t||[],e.map(e=&gt;e.match(/\|\d+$/)||t.includes(e)?e:r(e)?`${e}|0`:e)}(l,{when:e=&gt;e.length &lt;3}),literal:n,type:r,built_in:[&quot;current_catalog &quot;,&quot;current_date &quot;,&quot;current_default_transform_group &quot;,&quot;current_path &quot;,&quot;current_role &quot;,&quot;current_schema &quot;,&quot;current_transform_group_for_type &quot;,&quot;current_user &quot;,&quot;session_user &quot;,&quot;system_time &quot;,&quot;system_user &quot;,&quot;current_time &quot;,&quot;localtime &quot;,&quot;current_timestamp &quot;,&quot;localtimestamp &quot;]},contains:[{begin:Es(...o),keywords:{$pattern:/[\w\.]+/,keyword:l.concat(o),literal:n,type:r}},{className:&quot;type &quot;,begin:Es(&quot;double precision &quot;,&quot;large object &quot;,&quot;with timezone &quot;,&quot;without timezone &quot;)},s,{className:&quot;variable &quot;,begin:/@[a-z0-9]+/},{className:&quot;string &quot;,variants:[{begin:/&#039;/,end:/&#039;/,contains:[{begin:/&#039;&#039;/}]}]},{begin:/&quot;/,end:/&quot;/,contains:[{begin:/&quot;&quot;/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:&quot;operator &quot;,begin:/[-+*/=%^~]|&amp;&amp;?|\|\|?|!=?|&lt;(?:=&gt;?|&lt;|&gt;)?|&gt;[&gt;=]?/,relevance:0}]}}),Rs.registerLanguage(&quot;curl &quot;,function(e){return{name:&quot;curl &quot;,aliases:[&quot;curl &quot;],keywords:&quot;curl &quot;,case_insensitive:!0,contains:[{className:&quot;literal &quot;,begin:/(--request|-X)\s/,contains:[{className:&quot;symbol &quot;,begin:/(get|post|delete|options|head|put|patch|trace|connect)/,end:/\s/,returnEnd:!0}],returnEnd:!0,relevance:10},{className:&quot;literal &quot;,begin:/--/,end:/[\s &quot;]/,returnEnd:!0,relevance:0},{className:&quot;literal &quot;,begin:/-\w/,end:/[\s &quot;]/,returnEnd:!0,relevance:0},{className:&quot;string &quot;,begin:/&quot;/,end:/&quot;/,contains:[e.BACKSLASH_ESCAPE,{className:&quot;variable &quot;,begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]}],relevance:0},{className:&quot;string &quot;,begin:/\&quot;/,relevance:0},{className:&quot;string &quot;,begin:/&#039;/,end:/&#039;/,relevance:0},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:&quot;number &quot;,variants:[{begin:e.C_NUMBER_RE}],relevance:0},{match:/(\/[a-z._-]+)+/}]}}),Rs.registerLanguage(&quot;json &quot;,function(e){const t={literal:&quot;true false null &quot;},n=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],r=[e.QUOTE_STRING_MODE,e.C_NUMBER_MODE],a={end:&quot;,&quot;,endsWithParent:!0,excludeEnd:!0,contains:r,keywords:t},o={begin:/\{/,end:/\}/,contains:[{className:&quot;attr &quot;,begin:/&quot;/,end:/&quot;/,contains:[e.BACKSLASH_ESCAPE],illegal:&quot;\n &quot;},e.inherit(a,{begin:/:/})].concat(n),illegal:&quot;\S &quot;},i={begin:&quot;\[&quot;,end:&quot;\]&quot;,contains:[e.inherit(a)],illegal:&quot;\S &quot;};return r.push(o,i),n.forEach(function(e){r.push(e)}),{name:&quot;JSON &quot;,contains:r,keywords:t,illegal:&quot;\S &quot;}});const Cc=[&quot;children &quot;,&quot;className &quot;,&quot;disabled &quot;];function Ac(e){let{children:t,className:n=&quot;&quot;,disabled:r=!1}=e,a=As(e,Cc);return c.createElement(&quot;button &quot;,ws({disabled:r,className:`px-4 h-8 whitespace-nowrap border-b
            text-xs uppercase tracking-wider font-bold rounded-sm
            shadow-md
            transform
            transition-animation
            hover:shadow-lg
            active:shadow-inner
            active:translate-y-px
            ${r?&quot;opacity-50 &quot;:&quot;opacity-100 &quot;}
            ${n}
            `},a),t)}function Ic({solution:e}){return c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 gap-2 &quot;},e.description &amp;&amp;c.createElement(&quot;p &quot;,null,e.description),e.action_description &amp;&amp;c.createElement(&quot;p &quot;,null,e.action_description),c.createElement(&quot;ul &quot;,{className:&quot;grid grid-cols-1 gap-1 text-sm &quot;},Object.entries(e.links).map(([e,t],n)=&gt;c.createElement(&quot;li &quot;,{key:n},c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;underline text-emerald-700 hover:text-emerald-800 &quot;},e)))))}function kc({solution:e}){const[t,n]=c.useState(!1),[r,a]=c.useState(null);function o(e){e.preventDefault(),location.reload()}return c.createElement(c.Fragment,null,null===r &amp;&amp;c.createElement(c.Fragment,null,c.createElement(Ac,{onClick:async function(){if(!t)try{if(n(!0),!e.execute_endpoint)return;const t=await fetch(e.execute_endpoint,{method:&quot;POST &quot;,headers:{&quot;Content-Type &quot;:&quot;application/json &quot;,Accept:&quot;application/json &quot;},body:JSON.stringify({solution:e.class,parameters:e.run_parameters})});a(t.status &gt;=200 &amp;&amp;t.status &lt;300)}catch(e){console.error(e),a(!1)}finally{n(!1)}},disabled:t,className:&quot;mb-4 inline-flex items-center gap-2 bg-emerald-600 border-emerald-500/25 text-white &quot;},t?c.createElement(&quot;span &quot;,null,&quot;Running...&quot;):c.createElement(c.Fragment,null,c.createElement(oi,{className:&quot;opacity-50 &quot;,icon:_i}),e.run_button_text||&quot;Run &quot;)),c.createElement(Ic,{solution:e})),!0===r &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;&quot;},&quot;The solution was executed &quot;,c.createElement(&quot;strong &quot;,null,&quot;successfully &quot;),&quot;.&quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;a &quot;,{href:&quot;#&quot;,className:&quot;mt-2 inline-flex items-center gap-2 underline text-emerald-700 hover:text-emerald-800 &quot;,onClick:o},c.createElement(oi,{icon:Ri,className:&quot;text-sm opacity-50 &quot;}),&quot;Refresh now &quot;)),!1===r &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;p &quot;,{className:&quot;bg-red-200 px-4 py-2 &quot;},&quot;Something &quot;,c.createElement(&quot;strong &quot;,null,&quot;went wrong &quot;),&quot;. Please try refreshing the page and try again.&quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;a &quot;,{href:&quot;#&quot;,className:&quot;mt-2 inline-flex items-center gap-2 underline text-red-700 hover:text-red-800 &quot;,onClick:o},c.createElement(oi,{icon:Ri,className:&quot;text-sm opacity-50 &quot;}),&quot;Refresh now &quot;))))}function xc({solution:e,isOpen:t=!1,isCollapsible:n=!0,canExecute:r=!1}){const[a,o]=c.useState(t);return c.createElement(&quot;section &quot;,null,c.createElement(&quot;header &quot;,{className:&quot;group mb-4 &quot;},n?c.createElement(&quot;button &quot;,{className:&quot;flex items-center justify-start &quot;,onClick:()=&gt;{o(!a)}},c.createElement(&quot;span &quot;,{className:&quot;w-6 -ml-6 &quot;},c.createElement(oi,{icon:li,className:&quot;group-hover:opacity-50 opacity-0 text-sm transform transition &quot;+(a?&quot;&quot;:&quot;-rotate-90 &quot;)})),c.createElement(&quot;h2 &quot;,{className:&quot;min-w-0 truncate font-semibold leading-snug &quot;},e.title)):c.createElement(&quot;h2 &quot;,{className:&quot;truncate font-semibold leading-snug &quot;},e.title)),c.createElement(&quot;div &quot;,{className:a?&quot;&quot;:&quot;hidden &quot;},c.createElement(e.is_runnable &amp;&amp;r?kc:Ic,{solution:e})))}function _c(){const{solutions:e}=c.useContext(Ee),[t,n]=c.useState(!1),[r,a]=c.useState(!0);return c.useEffect(()=&gt;{try{(async()=&gt;{var t;if(null==(t=e[0])||!t.execute_endpoint)return;const r=await(await fetch(e[0].execute_endpoint.replace(&quot;execute-solution &quot;,&quot;health-check &quot;))).json();n(r.can_execute_commands)})()}catch(e){console.error(e),n(!1)}},[]),c.createElement(c.Fragment,null,r?c.createElement(&quot;aside &quot;,{id:&quot;solution &quot;,className:&quot;flex flex-col lg:w-2/5 flex-none &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex-grow px-6 sm:px-10 py-8 bg-emerald-300 text-gray-800 &quot;},c.createElement(&quot;button &quot;,{onClick:()=&gt;a(!1),className:&quot;absolute top-3 right-4 leading-none text-emerald-500 hover:text-emerald-700 text-sm &quot;},c.createElement(oi,{icon:Li})),e.map((n,r)=&gt;c.createElement(&quot;div &quot;,{key:r},c.createElement(xc,{solution:n,canExecute:t,isOpen:0===r,isCollapsible:e.length &gt;1}),r!==e.length-1 &amp;&amp;c.createElement(&quot;hr &quot;,{className:&quot;my-4 border-t border-gray-800/20 &quot;}))))):c.createElement(&quot;button &quot;,{onClick:()=&gt;a(!0),className:&quot;
        absolute -top-3 -right-3 z-20
        w-6 h-6 rounded-full flex items-center justify-center
        text-xs bg-emerald-500 text-white hover:shadow-lg
        shadow-md
        active:shadow-sm active:translate-y-px &quot;},c.createElement(oi,{icon:yi})))}var Lc={prefix:&quot;fab &quot;,iconName:&quot;laravel &quot;,icon:[512,512,[],&quot;f3bd &quot;,&quot;M504.4 115.8a5.72 5.72 0 0 0 -.28-.68 8.52 8.52 0 0 0 -.53-1.25 6 6 0 0 0 -.54-.71 9.36 9.36 0 0 0 -.72-.94c-.23-.22-.52-.4-.77-.6a8.84 8.84 0 0 0 -.9-.68L404.4 55.55a8 8 0 0 0 -8 0L300.1 111h0a8.07 8.07 0 0 0 -.88 .69 7.68 7.68 0 0 0 -.78 .6 8.23 8.23 0 0 0 -.72 .93c-.17 .24-.39 .45-.54 .71a9.7 9.7 0 0 0 -.52 1.25c-.08 .23-.21 .44-.28 .68a8.08 8.08 0 0 0 -.28 2.08V223.2l-80.22 46.19V63.44a7.8 7.8 0 0 0 -.28-2.09c-.06-.24-.2-.45-.28-.68a8.35 8.35 0 0 0 -.52-1.24c-.14-.26-.37-.47-.54-.72a9.36 9.36 0 0 0 -.72-.94 9.46 9.46 0 0 0 -.78-.6 9.8 9.8 0 0 0 -.88-.68h0L115.6 1.07a8 8 0 0 0 -8 0L11.34 56.49h0a6.52 6.52 0 0 0 -.88 .69 7.81 7.81 0 0 0 -.79 .6 8.15 8.15 0 0 0 -.71 .93c-.18 .25-.4 .46-.55 .72a7.88 7.88 0 0 0 -.51 1.24 6.46 6.46 0 0 0 -.29 .67 8.18 8.18 0 0 0 -.28 2.1v329.7a8 8 0 0 0 4 6.95l192.5 110.8a8.83 8.83 0 0 0 1.33 .54c.21 .08 .41 .2 .63 .26a7.92 7.92 0 0 0 4.1 0c.2-.05 .37-.16 .55-.22a8.6 8.6 0 0 0 1.4-.58L404.4 400.1a8 8 0 0 0 4-6.95V287.9l92.24-53.11a8 8 0 0 0 4-7V117.9A8.63 8.63 0 0 0 504.4 115.8zM111.6 17.28h0l80.19 46.15-80.2 46.18L31.41 63.44zm88.25 60V278.6l-46.53 26.79-33.69 19.4V123.5l46.53-26.79zm0 412.8L23.37 388.5V77.32L57.06 96.7l46.52 26.8V338.7a6.94 6.94 0 0 0 .12 .9 8 8 0 0 0 .16 1.18h0a5.92 5.92 0 0 0 .38 .9 6.38 6.38 0 0 0 .42 1v0a8.54 8.54 0 0 0 .6 .78 7.62 7.62 0 0 0 .66 .84l0 0c.23 .22 .52 .38 .77 .58a8.93 8.93 0 0 0 .86 .66l0 0 0 0 92.19 52.18zm8-106.2-80.06-45.32 84.09-48.41 92.26-53.11 80.13 46.13-58.8 33.56zm184.5 4.57L215.9 490.1V397.8L346.6 323.2l45.77-26.15zm0-119.1L358.7 250l-46.53-26.79V131.8l33.69 19.4L392.4 178zm8-105.3-80.2-46.17 80.2-46.16 80.18 46.15zm8 105.3V178L455 151.2l33.68-19.4v91.39h0z &quot;]};function Pc(){const e=c.useContext(Ee);return c.createElement(&quot;span &quot;,{className:&quot;py-1 px-4 items-center flex gap-3 rounded-sm ~bg-gray-500/5 &quot;},c.createElement(Vs,{path:e.exception_class}))}function Mc({githubLink:e}){return c.createElement(&quot;section &quot;,{className:&quot;flex flex-col flex-grow px-6 sm:px-10 py-8 bg-red-600 text-red-100 shadow-lg gap-3 &quot;},c.createElement(&quot;h2 &quot;,{className:&quot;text-xl font-semibold leading-snug &quot;},&quot;Something went wrong in Ignition!&quot;),c.createElement(&quot;p &quot;,{className:&quot;text-base &quot;},&quot;An error occurred in Ignition &#039;s UI. Please open an issue on &quot;,&quot;&quot;,c.createElement(&quot;a &quot;,{href:e,target:&quot;_blank &quot;,className:&quot;underline &quot;},&quot;the Ignition GitHub repo &quot;),&quot;&quot;,&quot;and make sure to include any errors or warnings in the developer console.&quot;))}class Dc extends c.Component{constructor(e){super(e),this.state={error:null}}static getDerivedStateFromError(e){return{error:e}}render(){const{error:e}=this.state;if(e){var t,n;let r=&quot;https://github.com/spatie/ignition/issues &quot;;if(e instanceof Error){const t=`
**Please include some context and the contents of the console in your browser &#039;s developer tools.**

## JavaScript Error
\`\`\`
${e.stack}
\`\`\`

## Reproduction Steps
Please tell us what you were doing when this error occurred, so we can more easily debug it and find a solution.

1. &#8230;

## User Agent
\`\`\`
${navigator.userAgent}
\`\`\`
`;r=`https://github.com/spatie/ignition/issues/new?title=${e.name}: ${e.message}&amp;labels=bug &amp;body=${encodeURIComponent(t)}`}return(null==(t=(n=this.props).fallbackComponent)?void 0:t.call(n,r))||c.createElement(Mc,{githubLink:r})}return this.props.children}}function Uc(){var e;const t=c.useContext(Ee),n=t.solutions.length &gt;0,r=!(null==(e=t.context_items.env)||!e.laravel_version);return c.createElement(Dc,null,c.createElement(&quot;section &quot;,{className:&quot;lg:flex items-stretch bg-white dark:shadow-none dark:bg-gray-800/50 dark:bg-gradient-to-bl from-gray-700/50 via-transparent dark:ring-1 dark:ring-inset dark:ring-white/5 rounded-lg shadow-2xl shadow-gray-500/20 &quot;},c.createElement(&quot;main &quot;,{id:&quot;exception &quot;,className:&quot;z-10 flex-grow min-w-0 &quot;},c.createElement(&quot;div &quot;,{className:&quot;overflow-hidden &quot;},c.createElement(&quot;div &quot;,{className:&quot;px-6 sm:px-10 py-8 overflow-x-auto &quot;},c.createElement(&quot;header &quot;,{className:&quot;flex items-center justify-between gap-2 &quot;},c.createElement(Pc,null),c.createElement(&quot;div &quot;,{className:&quot;grid grid-flow-col justify-end gap-4 text-sm ~text-gray-500 &quot;},c.createElement(&quot;span &quot;,null,c.createElement(&quot;span &quot;,{className:&quot;tracking-wider &quot;},&quot;PHP &quot;),&quot;&#160;&quot;,t.language_version),t.framework_version &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;inline-flex items-center gap-1 &quot;},c.createElement(oi,{icon:r?Lc:di}),t.framework_version))),c.createElement(Oc,{exceptionClass:t.exception_class,message:t.exception_message})))),n &amp;&amp;c.createElement(_c,null)))}function jc({className:e=&quot;&quot;,githubLink:t}){return c.createElement(&quot;div &quot;,{className:`${e} flex flex-col gap-2 bg-red-50 dark:bg-red-500/10 px-6 py-4`},c.createElement(&quot;h2 &quot;,{className:&quot;font-semibold leading-snug &quot;},&quot;Something went wrong in Ignition!&quot;),c.createElement(&quot;p &quot;,{className:&quot;text-base &quot;},&quot;An error occurred in Ignition &#039;s UI. Please open an issue on &quot;,&quot;&quot;,c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;underline &quot;},&quot;the Ignition GitHub repo &quot;),&quot;&quot;,&quot;and make sure to include any errors or warnings in the developer console.&quot;))}function Fc({title:e,children:t,anchor:n}){return c.createElement(&quot;section &quot;,{className:&quot;py-10 ~bg-white px-6 sm:px-10 min-w-0 &quot;},c.createElement(&quot;a &quot;,{id:`context-${n}`,className:&quot;scroll-target &quot;}),c.createElement(&quot;h2 &quot;,{className:&quot;font-bold text-xs ~text-gray-500 uppercase tracking-wider &quot;},e),c.createElement(&quot;div &quot;,{className:&quot;mt-3 grid grid-cols-1 gap-10 &quot;},c.createElement(Dc,{fallbackComponent:e=&gt;c.createElement(jc,{githubLink:e})},t)))}var zc=new Map,Hc=new WeakMap,Bc=0,Vc=c.createContext({inView:[],setInView:be});function Wc({icon:e,title:t,children:n,anchor:r}){const a=function(e){const{setInView:t}=c.useContext(Vc),{ref:n,inView:r}=function(e){var t=void 0===e?{}:e,n=t.threshold,r=t.delay,a=t.trackVisibility,o=t.rootMargin,i=t.root,l=t.triggerOnce,s=t.skip,u=t.initialInView,f=t.fallbackInView,d=c.useRef(),p=c.useState({inView:!!u}),m=p[0],h=p[1],g=c.useCallback(function(e){void 0!==d.current &amp;&amp;(d.current(),d.current=void 0),s||e &amp;&amp;(d.current=function(e,t,n,r){if(void 0===n &amp;&amp;(n={}),void 0===r &amp;&amp;(r=void 0),void 0===window.IntersectionObserver &amp;&amp;void 0!==r){var a=e.getBoundingClientRect();return t(r,{isIntersecting:r,target:e,intersectionRatio:&quot;number &quot;==typeof n.threshold?n.threshold:0,time:0,boundingClientRect:a,intersectionRect:a,rootBounds:a}),function(){}}var o=function(e){var t=function(e){return Object.keys(e).sort().filter(function(t){return void 0!==e[t]}).map(function(t){return t+&quot;_ &quot;+(&quot;root &quot;===t?(n=e.root)?(Hc.has(n)||Hc.set(n,(Bc+=1).toString()),Hc.get(n)):&quot;0 &quot;:e[t]);var n}).toString()}(e),n=zc.get(t);if(!n){var r,a=new Map,o=new IntersectionObserver(function(t){t.forEach(function(t){var n,o=t.isIntersecting &amp;&amp;r.some(function(e){return t.intersectionRatio &gt;=e});e.trackVisibility &amp;&amp;void 0===t.isVisible &amp;&amp;(t.isVisible=o),null==(n=a.get(t.target))||n.forEach(function(e){e(o,t)})})},e);r=o.thresholds||(Array.isArray(e.threshold)?e.threshold:[e.threshold||0]),zc.set(t,n={id:t,observer:o,elements:a})}return n}(n),i=o.id,l=o.observer,s=o.elements,c=s.get(e)||[];return s.has(e)||s.set(e,c),c.push(t),l.observe(e),function(){c.splice(c.indexOf(t),1),0===c.length &amp;&amp;(s.delete(e),l.unobserve(e)),0===s.size &amp;&amp;(l.disconnect(),zc.delete(i))}}(e,function(e,t){h({inView:e,entry:t}),t.isIntersecting &amp;&amp;l &amp;&amp;d.current &amp;&amp;(d.current(),d.current=void 0)},{root:i,rootMargin:o,threshold:n,trackVisibility:a,delay:r},f))},[Array.isArray(n)?n.toString():n,i,o,l,s,a,f,r]);c.useEffect(function(){d.current||!m.entry||l||s||h({inView:!!u})});var v=[g,m.inView,m.entry];return v.ref=v[0],v.inView=v[1],v.entry=v[2],v}({rootMargin:&quot;-45% 0px -45%&quot;});return c.useEffect(()=&gt;{t(r?t=&gt;[...t,e]:t=&gt;t.filter(t=&gt;t!==e))},[r]),n}(t);return c.createElement(&quot;div &quot;,{ref:a},c.createElement(&quot;a &quot;,{id:`context-${r}`,className:&quot;scroll-target &quot;}),c.createElement(&quot;h1 &quot;,{className:&quot;mb-2 flex items-center gap-2 font-semibold text-lg ~text-indigo-600 &quot;},t,c.createElement(&quot;span &quot;,{className:&quot;opacity-50 ~text-indigo-600 text-sm &quot;},e)),c.createElement(Dc,{fallbackComponent:e=&gt;c.createElement(jc,{githubLink:e})},n))}function Gc({children:e,className:t=&quot;&quot;,color:n=&quot;gray &quot;}){return c.createElement(&quot;div &quot;,{className:`${t} ${{red:&quot;~text-red-600 border-red-500/50 &quot;,orange:&quot;~text-orange-600 border-orange-500/50 &quot;,green:&quot;~text-emerald-600 border-emerald-500/50 &quot;,blue:&quot;~text-indigo-600 border-indigo-500/50 &quot;,purple:&quot;~text-violet-600 border-violet-600/50 &quot;,gray:&quot;~text-gray-500 border-gray-500/50 &quot;}[n]} px-1.5 py-0.5 rounded-sm bg-opacity-20 border text-xs font-medium uppercase tracking-wider`},e)}function Yc({request:e,requestData:t,headers:n}){const r=c.useMemo(()=&gt;function(e,t,n){if(!e.url||!e.method)return null;const r=[`curl &quot;${e.url}&quot;`];r.push(`   -X ${e.method}`),Object.entries(n||{}).map(function([e,t]){r.push(`   -H &#039;${e}: ${t}&#039;`)});const a=function(e,t){var n,r;return e.body?null!=(n=t[&quot;content-type &quot;])&amp;&amp;null!=(r=n[0])&amp;&amp;r.includes(&quot;application/json &quot;)?`   -d ${JSON.stringify(e.body)}`:`   ${Object.entries(e.body||{}).map(function([e,t]){return`-F &#039;${e}=${t}&#039;`}).join(&quot;&quot;)}`:null}(t,n);return a &amp;&amp;r.push(a),r.join(&quot;\
 &quot;).trimEnd().replace(/\s\$/g,&quot;;&quot;)}(e,t,n),[e,t,n]);return c.createElement(&quot;div &quot;,null,c.createElement(&quot;div &quot;,{className:&quot;text-lg font-semibold flex items-center gap-2 &quot;},c.createElement(&quot;span &quot;,{className:&quot;~text-indigo-600 &quot;},e.url),c.createElement(Gc,{color:&quot;DELETE &quot;==e.method.toUpperCase()?&quot;red &quot;:&quot;blue &quot;},e.method.toUpperCase())),r &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;mt-2 &quot;},c.createElement(wc,{value:r,language:&quot;curl &quot;})))}const $c=[&quot;children &quot;,&quot;className &quot;];function Xc(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,$c);return t?c.createElement(&quot;dl &quot;,ws({className:`grid grid-cols-1 gap-2 ${n}`},r),t):null}function Kc({items:e}){return c.createElement(Xc,null,Object.entries(e||{}).map(([e,t])=&gt;c.createElement(Xc.Row,{key:e,label:e,value:t})))}Xc.Row=function({value:e=&quot;&quot;,label:t=&quot;&quot;,className:n=&quot;&quot;,stacked:r=!1}){let a=e;const[o,i]=c.useState(!1);let l;return c.isValidElement(e)?a=e:&quot;boolean &quot;==typeof e?a=c.createElement(&quot;span &quot;,{className:(e?&quot;text-emerald-500 bg-emerald-500/5 &quot;:&quot;text-red-500 bg-red-800/5 &quot;)+&quot;text-sm px-3 py-2 inline-flex gap-2 items-center justify-center &quot;},c.createElement(oi,{className:`${e} ? &#039;text-emerald-500 &#039;: &#039;text-red-500`,icon:e?ci:Li}),c.createElement(&quot;span &quot;,{className:&quot;font-mono &quot;},e?&quot;true &quot;:&quot;false &quot;)):&quot;object &quot;==typeof e?a=c.createElement(wc,{value:Tc(e),language:&quot;json &quot;}):&quot;string &quot;==typeof e?a=c.createElement(wc,{value:e}):&quot;number &quot;==typeof e &amp;&amp;(a=c.createElement(wc,{value:String(e)})),c.createElement(&quot;div &quot;,{className:`${r?&quot;flex flex-col &quot;:&quot;flex items-baseline gap-10 &quot;}  ${n}`},c.createElement(&quot;dt &quot;,{className:`
                ${r?&quot;self-start pt-2 pb-1.5 leading-tight &quot;:o?&quot;flex-grow truncate min-w-[8rem] max-w-max &quot;:&quot;flex-none truncate w-32 &quot;}
            `,onMouseOver:()=&gt;{l=setTimeout(()=&gt;i(!0),500)},onMouseOut:()=&gt;{clearTimeout(l),i(!1)}},t),c.createElement(&quot;dd &quot;,{className:&quot;flex-grow min-w-0 &quot;},a))};var qc=function(e){return null==e},Jc=Object.prototype.hasOwnProperty,Qc=function(e){if(null==e)return!0;if(bt(e)&amp;&amp;(tt(e)||&quot;string &quot;==typeof e||&quot;function &quot;==typeof e.splice||rt(e)||ft(e)||et(e)))return!e.length;var t=pn(e);if(&quot;[object Map]&quot;==t||&quot;[object Set]&quot;==t)return!e.size;if(ht(e))return!Et(e).length;for(var n in e)if(Jc.call(e,n))return!1;return!0},Zc=Object.prototype.hasOwnProperty,eu=function(e,t,n){var r=e[t];Zc.call(e,t)&amp;&amp;Nt(r,n)&amp;&amp;(void 0!==n||t in e)||Xe(e,t,n)},tu=function(e,t,n,r){if(!je(e))return e;for(var a=-1,o=(t=Ln(t,e)).length,i=o-1,l=e;null!=l &amp;&amp;++a &lt;o;){var s=Pn(t[a]),c=n;if(&quot;__proto__ &quot;===s||&quot;constructor &quot;===s||&quot;prototype &quot;===s)return e;if(a!=i){var u=l[s];void 0===(c=r?r(u,s,l):void 0)&amp;&amp;(c=je(u)?u:ot(t[a+1])?[]:{})}eu(l,s,c),l=l[s]}return e},nu=gt(Object.getPrototypeOf,Object),ru=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)Xt(t,Zt(e)),e=nu(e);return t}:qt,au=Object.prototype.hasOwnProperty,ou=function(e){return bt(e)?pt(e,!0):function(e){if(!je(e))return function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}(e);var t=ht(e),n=[];for(var r in e)(&quot;constructor &quot;!=r||!t &amp;&amp;au.call(e,r))&amp;&amp;n.push(r);return n}(e)},iu=function(e,t){return function(e,t){if(null==e)return{};var n=An(function(e){return Kt(e,ou,ru)}(e),function(e){return[e]});return t=jn(t),function(e,t,n){for(var r=-1,a=t.length,o={};++r &lt;a;){var i=t[r],l=Mn(e,i);n(l,i)&amp;&amp;tu(o,Ln(i,e),l)}return o}(e,n,function(e,n){return t(e,n[0])})}(e,function(e){if(&quot;function &quot;!=typeof e)throw new TypeError(&quot;Expected a function &quot;);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}(jn(t)))};function lu({headers:e}){let t=iu(e,qc);return t=iu(t,Qc),c.createElement(Kc,{items:t})}function su({requestData:e}){return c.createElement(Kc,{items:e.queryString||{}})}function cu(){var e,t;const n=null==(e=c.useContext(Ee).context_items)||null==(t=e.request_data)?void 0:t.body;return n?c.createElement(wc,{value:Tc(n)}):null}function uu(){var e,t;const n=null==(e=c.useContext(Ee).context_items)||null==(t=e.request_data)?void 0:t.files;return n?c.createElement(&quot;div &quot;,{className:&quot;col-span-2 &quot;},c.createElement(wc,{value:Tc(n)})):null}function fu({session:e}){return c.createElement(Kc,{items:e})}function du({cookies:e}){return c.createElement(Kc,{items:e})}function pu(){const e=c.useContext(Ee).context_items.livewire;return e?c.createElement(Kc,{items:e.data}):null}function mu(){const e=c.useContext(Ee).context_items.livewire;return e?c.createElement(Kc,{items:{Component:e.component_class,Alias:e.component_alias,ID:e.component_id}}):null}function hu(){const e=c.useContext(Ee).context_items.livewire;return e?c.createElement(Xc,null,e.updates.map(({payload:e,type:t},n)=&gt;c.createElement(Xc.Row,{key:n,label:t,value:e}))):null}const gu=[&quot;children &quot;,&quot;className &quot;];function vu(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,gu);return c.createElement(c.Fragment,null,t &amp;&amp;c.createElement(&quot;ul &quot;,ws({className:`gap-y-2 flex flex-col ${n}`},r),t))}function yu({route:e}){var t;return c.createElement(Xc,null,c.createElement(Xc.Row,{value:e.controllerAction,label:&quot;Controller &quot;}),e.route &amp;&amp;c.createElement(Xc.Row,{value:e.route,label:&quot;Route name &quot;}),!(null==(t=e.routeParameters)||!t.length)&amp;&amp;c.createElement(Xc.Row,{value:c.createElement(Xc,null,Object.entries(e.routeParameters).map(([e,t])=&gt;c.createElement(Xc.Row,{stacked:!0,key:e,label:e,value:t}))),label:&quot;Route parameters &quot;}),e.middleware &amp;&amp;c.createElement(Xc.Row,{value:c.createElement(vu,null,(e.middleware||[]).map((e,t)=&gt;c.createElement(vu.Item,{key:t,value:e}))),label:&quot;Middleware &quot;}))}vu.Item=function({value:e=&quot;&quot;}){let t=e;return c.isValidElement(e)?t=e:&quot;object &quot;==typeof e?t=c.createElement(wc,{value:Tc(e),language:&quot;json &quot;}):&quot;string &quot;==typeof e &amp;&amp;(t=c.createElement(wc,{value:e})),c.createElement(&quot;li &quot;,null,t)};const Eu=[&quot;value &quot;];function bu(e){let{value:t}=e,n=As(e,Eu);return c.useEffect(()=&gt;{const e=t.match(/sf-dump-\d+/);e &amp;&amp;window.Sfdump(e[0])},[t]),c.createElement(&quot;div &quot;,ws({className:&quot;~bg-gray-500/5 px-4 py-2 &quot;,dangerouslySetInnerHTML:{__html:t}},n))}function Tu(){const e=c.useContext(Ee).context_items.view;return e?c.createElement(Xc,null,c.createElement(Xc.Row,{value:c.createElement(Ys,{path:e.view}),label:&quot;View &quot;}),e.data &amp;&amp;c.createElement(Xc.Row,{value:c.createElement(Xc,null,Object.entries(e.data).map(([e,t])=&gt;c.createElement(Xc.Row,{stacked:!0,key:e,label:e,value:c.createElement(bu,{value:t})}))),label:&quot;Data &quot;})):null}var Nu=we(function(e){!function(){var t=&quot;ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/&quot;,n={rotl:function(e,t){return e &lt;&lt;t|e &gt;&gt;&gt;32-t},rotr:function(e,t){return e &lt;&lt;32-t|e &gt;&gt;&gt;t},endian:function(e){if(e.constructor==Number)return 16711935 &amp;n.rotl(e,8)|4278255360 &amp;n.rotl(e,24);for(var t=0;t &lt;e.length;t++)e[t]=n.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e &gt;0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],n=0,r=0;n &lt;e.length;n++,r+=8)t[r &gt;&gt;&gt;5]|=e[n]&lt;&lt;24-r%32;return t},wordsToBytes:function(e){for(var t=[],n=0;n &lt;32*e.length;n+=8)t.push(e[n &gt;&gt;&gt;5]&gt;&gt;&gt;24-n%32 &amp;255);return t},bytesToHex:function(e){for(var t=[],n=0;n &lt;e.length;n++)t.push((e[n]&gt;&gt;&gt;4).toString(16)),t.push((15 &amp;e[n]).toString(16));return t.join(&quot;&quot;)},hexToBytes:function(e){for(var t=[],n=0;n &lt;e.length;n+=2)t.push(parseInt(e.substr(n,2),16));return t},bytesToBase64:function(e){for(var n=[],r=0;r &lt;e.length;r+=3)for(var a=e[r]&lt;&lt;16|e[r+1]&lt;&lt;8|e[r+2],o=0;o &lt;4;o++)n.push(8*r+6*o &lt;=8*e.length?t.charAt(a &gt;&gt;&gt;6*(3-o)&amp;63):&quot;=&quot;);return n.join(&quot;&quot;)},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,&quot;&quot;);for(var n=[],r=0,a=0;r &lt;e.length;a=++r%4)0!=a &amp;&amp;n.push((t.indexOf(e.charAt(r-1))&amp;Math.pow(2,-2*a+8)-1)&lt;&lt;2*a|t.indexOf(e.charAt(r))&gt;&gt;&gt;6-2*a);return n}};e.exports=n}()}),Ru={utf8:{stringToBytes:function(e){return Ru.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(Ru.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n &lt;e.length;n++)t.push(255 &amp;e.charCodeAt(n));return t},bytesToString:function(e){for(var t=[],n=0;n &lt;e.length;n++)t.push(String.fromCharCode(e[n]));return t.join(&quot;&quot;)}}},Su=Ru,wu=function(e){return null!=e &amp;&amp;(Ou(e)||function(e){return &quot;function &quot;==typeof e.readFloatLE &amp;&amp;&quot;function &quot;==typeof e.slice &amp;&amp;Ou(e.slice(0,0))}(e)||!!e._isBuffer)};function Ou(e){return!!e.constructor &amp;&amp;&quot;function &quot;==typeof e.constructor.isBuffer &amp;&amp;e.constructor.isBuffer(e)}var Cu=we(function(e){!function(){var t=Nu,n=Su.utf8,r=wu,a=Su.bin,o=function e(o,i){o.constructor==String?o=i &amp;&amp;&quot;binary &quot;===i.encoding?a.stringToBytes(o):n.stringToBytes(o):r(o)?o=Array.prototype.slice.call(o,0):Array.isArray(o)||o.constructor===Uint8Array||(o=o.toString());for(var l=t.bytesToWords(o),s=8*o.length,c=1732584193,u=-271733879,f=-1732584194,d=271733878,p=0;p &lt;l.length;p++)l[p]=16711935 &amp;(l[p]&lt;&lt;8|l[p]&gt;&gt;&gt;24)|4278255360 &amp;(l[p]&lt;&lt;24|l[p]&gt;&gt;&gt;8);l[s &gt;&gt;&gt;5]|=128 &lt;&lt;s%32,l[14+(s+64 &gt;&gt;&gt;9 &lt;&lt;4)]=s;var m=e._ff,h=e._gg,g=e._hh,v=e._ii;for(p=0;p &lt;l.length;p+=16){var y=c,E=u,b=f,T=d;c=m(c,u,f,d,l[p+0],7,-680876936),d=m(d,c,u,f,l[p+1],12,-389564586),f=m(f,d,c,u,l[p+2],17,606105819),u=m(u,f,d,c,l[p+3],22,-1044525330),c=m(c,u,f,d,l[p+4],7,-176418897),d=m(d,c,u,f,l[p+5],12,1200080426),f=m(f,d,c,u,l[p+6],17,-1473231341),u=m(u,f,d,c,l[p+7],22,-45705983),c=m(c,u,f,d,l[p+8],7,1770035416),d=m(d,c,u,f,l[p+9],12,-1958414417),f=m(f,d,c,u,l[p+10],17,-42063),u=m(u,f,d,c,l[p+11],22,-1990404162),c=m(c,u,f,d,l[p+12],7,1804603682),d=m(d,c,u,f,l[p+13],12,-40341101),f=m(f,d,c,u,l[p+14],17,-1502002290),c=h(c,u=m(u,f,d,c,l[p+15],22,1236535329),f,d,l[p+1],5,-165796510),d=h(d,c,u,f,l[p+6],9,-1069501632),f=h(f,d,c,u,l[p+11],14,643717713),u=h(u,f,d,c,l[p+0],20,-373897302),c=h(c,u,f,d,l[p+5],5,-701558691),d=h(d,c,u,f,l[p+10],9,38016083),f=h(f,d,c,u,l[p+15],14,-660478335),u=h(u,f,d,c,l[p+4],20,-405537848),c=h(c,u,f,d,l[p+9],5,568446438),d=h(d,c,u,f,l[p+14],9,-1019803690),f=h(f,d,c,u,l[p+3],14,-187363961),u=h(u,f,d,c,l[p+8],20,1163531501),c=h(c,u,f,d,l[p+13],5,-1444681467),d=h(d,c,u,f,l[p+2],9,-51403784),f=h(f,d,c,u,l[p+7],14,1735328473),c=g(c,u=h(u,f,d,c,l[p+12],20,-1926607734),f,d,l[p+5],4,-378558),d=g(d,c,u,f,l[p+8],11,-2022574463),f=g(f,d,c,u,l[p+11],16,1839030562),u=g(u,f,d,c,l[p+14],23,-35309556),c=g(c,u,f,d,l[p+1],4,-1530992060),d=g(d,c,u,f,l[p+4],11,1272893353),f=g(f,d,c,u,l[p+7],16,-155497632),u=g(u,f,d,c,l[p+10],23,-1094730640),c=g(c,u,f,d,l[p+13],4,681279174),d=g(d,c,u,f,l[p+0],11,-358537222),f=g(f,d,c,u,l[p+3],16,-722521979),u=g(u,f,d,c,l[p+6],23,76029189),c=g(c,u,f,d,l[p+9],4,-640364487),d=g(d,c,u,f,l[p+12],11,-421815835),f=g(f,d,c,u,l[p+15],16,530742520),c=v(c,u=g(u,f,d,c,l[p+2],23,-995338651),f,d,l[p+0],6,-198630844),d=v(d,c,u,f,l[p+7],10,1126891415),f=v(f,d,c,u,l[p+14],15,-1416354905),u=v(u,f,d,c,l[p+5],21,-57434055),c=v(c,u,f,d,l[p+12],6,1700485571),d=v(d,c,u,f,l[p+3],10,-1894986606),f=v(f,d,c,u,l[p+10],15,-1051523),u=v(u,f,d,c,l[p+1],21,-2054922799),c=v(c,u,f,d,l[p+8],6,1873313359),d=v(d,c,u,f,l[p+15],10,-30611744),f=v(f,d,c,u,l[p+6],15,-1560198380),u=v(u,f,d,c,l[p+13],21,1309151649),c=v(c,u,f,d,l[p+4],6,-145523070),d=v(d,c,u,f,l[p+11],10,-1120210379),f=v(f,d,c,u,l[p+2],15,718787259),u=v(u,f,d,c,l[p+9],21,-343485551),c=c+y &gt;&gt;&gt;0,u=u+E &gt;&gt;&gt;0,f=f+b &gt;&gt;&gt;0,d=d+T &gt;&gt;&gt;0}return t.endian([c,u,f,d])};o._ff=function(e,t,n,r,a,o,i){var l=e+(t &amp;n|~t &amp;r)+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._gg=function(e,t,n,r,a,o,i){var l=e+(t &amp;r|n &amp;~r)+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._hh=function(e,t,n,r,a,o,i){var l=e+(t^n^r)+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._ii=function(e,t,n,r,a,o,i){var l=e+(n^(t|~r))+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._blocksize=16,o._digestsize=16,e.exports=function(e,n){if(null==e)throw new Error(&quot;Illegal argument &quot;+e);var r=t.wordsToBytes(o(e,n));return n &amp;&amp;n.asBytes?r:n &amp;&amp;n.asString?a.bytesToString(r):t.bytesToHex(r)}}()});function Au({user:e}){return c.createElement(c.Fragment,null,e.email &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;mb-2 flex items-center gap-3 &quot;},c.createElement(&quot;div &quot;,null,c.createElement(&quot;img &quot;,{className:&quot;inline-block h-9 w-9 rounded-full &quot;,alt:e.email,src:`https://gravatar.com/avatar/${Cu(e.email)}/?s=240`})),c.createElement(&quot;div &quot;,{className:&quot;leading-tight &quot;},e.name &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;font-semibold &quot;},e.name),c.createElement(&quot;p &quot;,{className:&quot;text-sm &quot;},e.email))),c.createElement(wc,{value:Tc(e),language:&quot;json &quot;}))}function Iu({children:e,className:t=&quot;&quot;}){return c.createElement(&quot;div &quot;,{className:`${t}`},c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-2 bg-yellow-50 dark:bg-yellow-500/10 px-4 py-2 &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex-shrink-0 &quot;,&quot;aria-hidden &quot;:&quot;true &quot;},c.createElement(oi,{className:&quot;text-yellow-500 &quot;,icon:Ii})),c.createElement(&quot;p &quot;,{className:&quot;text-sm &quot;},e)))}var ku=function(e,t){!0===t &amp;&amp;(t=0);var n=e.indexOf(&quot;://&quot;),r=e.substring(0,n).split(&quot;+&quot;).filter(Boolean);return &quot;number &quot;==typeof t?r[t]:r},xu=function e(t){if(Array.isArray(t))return-1!==t.indexOf(&quot;ssh &quot;)||-1!==t.indexOf(&quot;rsync &quot;);if(&quot;string &quot;!=typeof t)return!1;var n=ku(t);if(t=t.substring(t.indexOf(&quot;://&quot;)+3),e(n))return!0;var r=new RegExp(&quot;.([a-zA-Z\d]+):(\d+)/&quot;);return!t.match(r)&amp;&amp;t.indexOf(&quot;@&quot;)&lt;t.indexOf(&quot;:&quot;)},_u=new RegExp(&quot;%[a-f0-9]{2}&quot;,&quot;gi &quot;),Lu=new RegExp(&quot;(%[a-f0-9]{2})+&quot;,&quot;gi &quot;);function Pu(e,t){try{return decodeURIComponent(e.join(&quot;&quot;))}catch(e){}if(1===e.length)return e;var n=e.slice(0,t=t||1),r=e.slice(t);return Array.prototype.concat.call([],Pu(n),Pu(r))}function Mu(e){try{return decodeURIComponent(e)}catch(r){for(var t=e.match(_u),n=1;n &lt;t.length;n++)t=(e=Pu(t,n).join(&quot;&quot;)).match(_u);return e}}var Du=function(e){if(&quot;string &quot;!=typeof e)throw new TypeError(&quot;Expected `encodedURI` to be of type `string`, got `&quot;+typeof e+&quot;`&quot;);try{return e=e.replace(/\+/g,&quot;&quot;),decodeURIComponent(e)}catch(t){return function(e){for(var t={&quot;%FE%FF &quot;:&quot;&#65533;&#65533;&quot;,&quot;%FF%FE &quot;:&quot;&#65533;&#65533;&quot;},n=Lu.exec(e);n;){try{t[n[0]]=decodeURIComponent(n[0])}catch(e){var r=Mu(n[0]);r!==n[0]&amp;&amp;(t[n[0]]=r)}n=Lu.exec(e)}t[&quot;%C2 &quot;]=&quot;&#65533;&quot;;for(var a=Object.keys(t),o=0;o &lt;a.length;o++){var i=a[o];e=e.replace(new RegExp(i,&quot;g &quot;),t[i])}return e}(e)}},Uu=(e,t)=&gt;{if(&quot;string &quot;!=typeof e||&quot;string &quot;!=typeof t)throw new TypeError(&quot;Expected the arguments to be of type `string`&quot;);if(&quot;&quot;===t)return[e];const n=e.indexOf(t);return-1===n?[e]:[e.slice(0,n),e.slice(n+t.length)]},ju=function(e,t){for(var n={},r=Object.keys(e),a=Array.isArray(t),o=0;o &lt;r.length;o++){var i=r[o],l=e[i];(a?-1!==t.indexOf(i):t(i,l,e))&amp;&amp;(n[i]=l)}return n},Fu=we(function(e,t){function n(e){if(&quot;string &quot;!=typeof e||1!==e.length)throw new TypeError(&quot;arrayFormatSeparator must be single character string &quot;)}function r(e,t){return t.encode?t.strict?encodeURIComponent(e).replace(/[!&#039;()*]/g,e=&gt;`%${e.charCodeAt(0).toString(16).toUpperCase()}`):encodeURIComponent(e):e}function a(e,t){return t.decode?Du(e):e}function o(e){return Array.isArray(e)?e.sort():&quot;object &quot;==typeof e?o(Object.keys(e)).sort((e,t)=&gt;Number(e)-Number(t)).map(t=&gt;e[t]):e}function i(e){const t=e.indexOf(&quot;#&quot;);return-1!==t &amp;&amp;(e=e.slice(0,t)),e}function l(e){const t=(e=i(e)).indexOf(&quot;?&quot;);return-1===t?&quot;&quot;:e.slice(t+1)}function s(e,t){return t.parseNumbers &amp;&amp;!Number.isNaN(Number(e))&amp;&amp;&quot;string &quot;==typeof e &amp;&amp;&quot;&quot;!==e.trim()?e=Number(e):!t.parseBooleans||null===e||&quot;true &quot;!==e.toLowerCase()&amp;&amp;&quot;false &quot;!==e.toLowerCase()||(e=&quot;true &quot;===e.toLowerCase()),e}function c(e,t){n((t=Object.assign({decode:!0,sort:!0,arrayFormat:&quot;none &quot;,arrayFormatSeparator:&quot;,&quot;,parseNumbers:!1,parseBooleans:!1},t)).arrayFormatSeparator);const r=function(e){let t;switch(e.arrayFormat){case &quot;index &quot;:return(e,n,r)=&gt;{t=/\[(\d*)\]$/.exec(e),e=e.replace(/\[\d*\]$/,&quot;&quot;),t?(void 0===r[e]&amp;&amp;(r[e]={}),r[e][t[1]]=n):r[e]=n};case &quot;bracket &quot;:return(e,n,r)=&gt;{t=/(\[\])$/.exec(e),r[e=e.replace(/\[\]$/,&quot;&quot;)]=t?void 0!==r[e]?[].concat(r[e],n):[n]:n};case &quot;comma &quot;:case &quot;separator &quot;:return(t,n,r)=&gt;{const o=&quot;string &quot;==typeof n &amp;&amp;n.includes(e.arrayFormatSeparator),i=&quot;string &quot;==typeof n &amp;&amp;!o &amp;&amp;a(n,e).includes(e.arrayFormatSeparator);n=i?a(n,e):n;const l=o||i?n.split(e.arrayFormatSeparator).map(t=&gt;a(t,e)):null===n?n:a(n,e);r[t]=l};default:return(e,t,n)=&gt;{n[e]=void 0!==n[e]?[].concat(n[e],t):t}}}(t),i=Object.create(null);if(&quot;string &quot;!=typeof e)return i;if(!(e=e.trim().replace(/^[?#&amp;]/,&quot;&quot;)))return i;for(const n of e.split(&quot;&amp;&quot;)){if(&quot;&quot;===n)continue;let[e,o]=Uu(t.decode?n.replace(/\+/g,&quot;&quot;):n,&quot;=&quot;);o=void 0===o?null:[&quot;comma &quot;,&quot;separator &quot;].includes(t.arrayFormat)?o:a(o,t),r(a(e,t),o,i)}for(const e of Object.keys(i)){const n=i[e];if(&quot;object &quot;==typeof n &amp;&amp;null!==n)for(const e of Object.keys(n))n[e]=s(n[e],t);else i[e]=s(n,t)}return!1===t.sort?i:(!0===t.sort?Object.keys(i).sort():Object.keys(i).sort(t.sort)).reduce((e,t)=&gt;{const n=i[t];return e[t]=Boolean(n)&amp;&amp;&quot;object &quot;==typeof n &amp;&amp;!Array.isArray(n)?o(n):n,e},Object.create(null))}t.extract=l,t.parse=c,t.stringify=(e,t)=&gt;{if(!e)return &quot;&quot;;n((t=Object.assign({encode:!0,strict:!0,arrayFormat:&quot;none &quot;,arrayFormatSeparator:&quot;,&quot;},t)).arrayFormatSeparator);const a=n=&gt;t.skipNull &amp;&amp;null==e[n]||t.skipEmptyString &amp;&amp;&quot;&quot;===e[n],o=function(e){switch(e.arrayFormat){case &quot;index &quot;:return t=&gt;(n,a)=&gt;{const o=n.length;return void 0===a||e.skipNull &amp;&amp;null===a||e.skipEmptyString &amp;&amp;&quot;&quot;===a?n:null===a?[...n,[r(t,e),&quot;[&quot;,o,&quot;]&quot;].join(&quot;&quot;)]:[...n,[r(t,e),&quot;[&quot;,r(o,e),&quot;]=&quot;,r(a,e)].join(&quot;&quot;)]};case &quot;bracket &quot;:return t=&gt;(n,a)=&gt;void 0===a||e.skipNull &amp;&amp;null===a||e.skipEmptyString &amp;&amp;&quot;&quot;===a?n:null===a?[...n,[r(t,e),&quot;[]&quot;].join(&quot;&quot;)]:[...n,[r(t,e),&quot;[]=&quot;,r(a,e)].join(&quot;&quot;)];case &quot;comma &quot;:case &quot;separator &quot;:return t=&gt;(n,a)=&gt;null==a||0===a.length?n:0===n.length?[[r(t,e),&quot;=&quot;,r(a,e)].join(&quot;&quot;)]:[[n,r(a,e)].join(e.arrayFormatSeparator)];default:return t=&gt;(n,a)=&gt;void 0===a||e.skipNull &amp;&amp;null===a||e.skipEmptyString &amp;&amp;&quot;&quot;===a?n:null===a?[...n,r(t,e)]:[...n,[r(t,e),&quot;=&quot;,r(a,e)].join(&quot;&quot;)]}}(t),i={};for(const t of Object.keys(e))a(t)||(i[t]=e[t]);const l=Object.keys(i);return!1!==t.sort &amp;&amp;l.sort(t.sort),l.map(n=&gt;{const a=e[n];return void 0===a?&quot;&quot;:null===a?r(n,t):Array.isArray(a)?a.reduce(o(n),[]).join(&quot;&amp;&quot;):r(n,t)+&quot;=&quot;+r(a,t)}).filter(e=&gt;e.length &gt;0).join(&quot;&amp;&quot;)},t.parseUrl=(e,t)=&gt;{t=Object.assign({decode:!0},t);const[n,r]=Uu(e,&quot;#&quot;);return Object.assign({url:n.split(&quot;?&quot;)[0]||&quot;&quot;,query:c(l(e),t)},t &amp;&amp;t.parseFragmentIdentifier &amp;&amp;r?{fragmentIdentifier:a(r,t)}:{})},t.stringifyUrl=(e,n)=&gt;{n=Object.assign({encode:!0,strict:!0},n);const a=i(e.url).split(&quot;?&quot;)[0]||&quot;&quot;,o=t.extract(e.url),l=t.parse(o,{sort:!1}),s=Object.assign(l,e.query);let c=t.stringify(s,n);c &amp;&amp;(c=`?${c}`);let u=function(e){let t=&quot;&quot;;const n=e.indexOf(&quot;#&quot;);return-1!==n &amp;&amp;(t=e.slice(n)),t}(e.url);return e.fragmentIdentifier &amp;&amp;(u=`#${r(e.fragmentIdentifier,n)}`),`${a}${c}${u}`},t.pick=(e,n,r)=&gt;{r=Object.assign({parseFragmentIdentifier:!0},r);const{url:a,query:o,fragmentIdentifier:i}=t.parseUrl(e,r);return t.stringifyUrl({url:a,query:ju(o,n),fragmentIdentifier:i},r)},t.exclude=(e,n,r)=&gt;{const a=Array.isArray(n)?e=&gt;!n.includes(e):(e,t)=&gt;!n(e,t);return t.pick(e,a,r)}});function zu(e){if(&quot;string &quot;!=typeof e)throw new Error(&quot;The url must be a string.&quot;);let t=function(e){let t=function(e){if(&quot;string &quot;!=typeof e||!e.trim())throw new Error(&quot;Invalid url.&quot;);return function(e){e=(e||&quot;&quot;).trim();var t={protocols:ku(e),protocol:null,port:null,resource:&quot;&quot;,user:&quot;&quot;,pathname:&quot;&quot;,hash:&quot;&quot;,search:&quot;&quot;,href:e,query:Object.create(null)},n=e.indexOf(&quot;://&quot;),r=null,a=null;e.startsWith(&quot;.&quot;)&amp;&amp;(e.startsWith(&quot;./&quot;)&amp;&amp;(e=e.substring(2)),t.pathname=e,t.protocol=&quot;file &quot;);var o=e.charAt(1);return t.protocol||(t.protocol=t.protocols[0],t.protocol||(xu(e)?t.protocol=&quot;ssh &quot;:&quot;/&quot;===o||&quot;~&quot;===o?(e=e.substring(2),t.protocol=&quot;file &quot;):t.protocol=&quot;file &quot;)),-1!==n &amp;&amp;(e=e.substring(n+3)),a=e.split(/\/|\/),t.resource=&quot;file &quot;!==t.protocol?a.shift():&quot;&quot;,2===(r=t.resource.split(&quot;@&quot;)).length &amp;&amp;(t.user=r[0],t.resource=r[1]),2===(r=t.resource.split(&quot;:&quot;)).length &amp;&amp;(t.resource=r[0],r[1]?(t.port=Number(r[1]),isNaN(t.port)&amp;&amp;(t.port=null,a.unshift(r[1]))):t.port=null),a=a.filter(Boolean),t.pathname=&quot;file &quot;===t.protocol?t.href:t.pathname||(&quot;file &quot;!==t.protocol||&quot;/&quot;===t.href[0]?&quot;/&quot;:&quot;&quot;)+a.join(&quot;/&quot;),2===(r=t.pathname.split(&quot;#&quot;)).length &amp;&amp;(t.pathname=r[0],t.hash=r[1]),2===(r=t.pathname.split(&quot;?&quot;)).length &amp;&amp;(t.pathname=r[0],t.search=r[1]),t.query=Fu.parse(t.search),t.href=t.href.replace(/\/$/,&quot;&quot;),t.pathname=t.pathname.replace(/\/$/,&quot;&quot;),t}(e)}(e);t.token=&quot;&quot;;let n=t.user.split(&quot;:&quot;);return 2===n.length &amp;&amp;(&quot;x-oauth-basic &quot;===n[1]?t.token=n[0]:&quot;x-token-auth &quot;===n[0]&amp;&amp;(t.token=n[1])),t.protocol=xu(t.protocols)||xu(e)?&quot;ssh &quot;:t.protocols.length?t.protocols[0]:&quot;file &quot;,t.href=t.href.replace(/\/$/,&quot;&quot;),t}(e),n=t.resource.split(&quot;.&quot;),r=null;switch(t.toString=function(e){return zu.stringify(this,e)},t.source=n.length &gt;2?n.slice(1-n.length).join(&quot;.&quot;):t.source=t.resource,t.git_suffix=/\.git$/.test(t.pathname),t.name=decodeURIComponent(t.pathname.replace(/^\//,&quot;&quot;).replace(/\.git$/,&quot;&quot;)),t.owner=decodeURIComponent(t.user),t.source){case &quot;git.cloudforge.com &quot;:t.owner=t.user,t.organization=n[0],t.source=&quot;cloudforge.com &quot;;break;case &quot;visualstudio.com &quot;:if(&quot;vs-ssh.visualstudio.com &quot;===t.resource){r=t.name.split(&quot;/&quot;),4===r.length &amp;&amp;(t.organization=r[1],t.owner=r[2],t.name=r[3],t.full_name=r[2]+&quot;/&quot;+r[3]);break}r=t.name.split(&quot;/&quot;),2===r.length?(t.owner=r[1],t.name=r[1],t.full_name=&quot;_git/&quot;+t.name):3===r.length?(t.name=r[2],&quot;DefaultCollection &quot;===r[0]?(t.owner=r[2],t.organization=r[0],t.full_name=t.organization+&quot;/_git/&quot;+t.name):(t.owner=r[0],t.full_name=t.owner+&quot;/_git/&quot;+t.name)):4===r.length &amp;&amp;(t.organization=r[0],t.owner=r[1],t.name=r[3],t.full_name=t.organization+&quot;/&quot;+t.owner+&quot;/_git/&quot;+t.name);break;case &quot;dev.azure.com &quot;:case &quot;azure.com &quot;:if(&quot;ssh.dev.azure.com &quot;===t.resource){r=t.name.split(&quot;/&quot;),4===r.length &amp;&amp;(t.organization=r[1],t.owner=r[2],t.name=r[3]);break}r=t.name.split(&quot;/&quot;),5===r.length?(t.organization=r[0],t.owner=r[1],t.name=r[4],t.full_name=&quot;_git/&quot;+t.name):3===r.length?(t.name=r[2],&quot;DefaultCollection &quot;===r[0]?(t.owner=r[2],t.organization=r[0],t.full_name=t.organization+&quot;/_git/&quot;+t.name):(t.owner=r[0],t.full_name=t.owner+&quot;/_git/&quot;+t.name)):4===r.length &amp;&amp;(t.organization=r[0],t.owner=r[1],t.name=r[3],t.full_name=t.organization+&quot;/&quot;+t.owner+&quot;/_git/&quot;+t.name),t.query &amp;&amp;t.query.path &amp;&amp;(t.filepath=t.query.path.replace(/^\/+/g,&quot;&quot;)),t.query &amp;&amp;t.query.version &amp;&amp;(t.ref=t.query.version.replace(/^GB/,&quot;&quot;));break;default:r=t.name.split(&quot;/&quot;);let e=r.length-1;if(r.length &gt;=2){const n=r.indexOf(&quot;-&quot;,2),a=r.indexOf(&quot;blob &quot;,2),o=r.indexOf(&quot;tree &quot;,2),i=r.indexOf(&quot;commit &quot;,2),l=r.indexOf(&quot;src &quot;,2),s=r.indexOf(&quot;raw &quot;,2);e=n &gt;0?n-1:a &gt;0?a-1:o &gt;0?o-1:i &gt;0?i-1:l &gt;0?l-1:s &gt;0?s-1:e,t.owner=r.slice(0,e).join(&quot;/&quot;),t.name=r[e],i &amp;&amp;(t.commit=r[e+2])}t.ref=&quot;&quot;,t.filepathtype=&quot;&quot;,t.filepath=&quot;&quot;;const a=r.length &gt;e &amp;&amp;&quot;-&quot;===r[e+1]?e+1:e;r.length &gt;a+2 &amp;&amp;[&quot;raw &quot;,&quot;src &quot;,&quot;blob &quot;,&quot;tree &quot;].indexOf(r[a+1])&gt;=0 &amp;&amp;(t.filepathtype=r[a+1],t.ref=r[a+2],r.length &gt;a+3 &amp;&amp;(t.filepath=r.slice(a+3).join(&quot;/&quot;))),t.organization=t.owner}t.full_name||(t.full_name=t.owner,t.name &amp;&amp;(t.full_name &amp;&amp;(t.full_name+=&quot;/&quot;),t.full_name+=t.name)),t.owner.startsWith(&quot;scm/&quot;)&amp;&amp;(t.source=&quot;bitbucket-server &quot;,t.owner=t.owner.replace(&quot;scm/&quot;,&quot;&quot;),t.organization=t.owner,t.full_name=`${t.owner}/${t.name}`);const a=/(projects|users)\/(.*?)\/repos\/(.*?)((\/.*$)|$)/.exec(t.pathname);return null!=a &amp;&amp;(t.source=&quot;bitbucket-server &quot;,t.owner=&quot;users &quot;===a[1]?&quot;~&quot;+a[2]:a[2],t.organization=t.owner,t.name=a[3],r=a[4].split(&quot;/&quot;),r.length &gt;1 &amp;&amp;([&quot;raw &quot;,&quot;browse &quot;].indexOf(r[1])&gt;=0?(t.filepathtype=r[1],r.length &gt;2 &amp;&amp;(t.filepath=r[2])):&quot;commits &quot;===r[1]&amp;&amp;r.length &gt;2 &amp;&amp;(t.commit=r[2])),t.full_name=`${t.owner}/${t.name}`,t.ref=t.query.at?t.query.at:&quot;&quot;),t}function Hu({git:e}){const{commitUrl:t}=function(e,t){if(!e)return{resource:null,repoUrl:null,commitUrl:null};const n=zu(e),r=zu.stringify(ws({},n,{git_suffix:!1}),&quot;https &quot;);return{repoUrl:r,resource:n.resource,commitUrl:`${r}/commit/${t}`}}(e.remote,e.hash);return c.createElement(c.Fragment,null,e.hash &amp;&amp;e.message &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-4 &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex-grow font-semibold &quot;},e.message),c.createElement(&quot;div &quot;,{className:&quot;~bg-gray-500/5 flex items-center &quot;},c.createElement(wc,{transparent:!0,overflowX:!1,value:e.hash}),t &amp;&amp;c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;mr-4 &quot;},c.createElement(Ks,null,c.createElement(oi,{className:&quot;group-hover:text-indigo-500 &quot;,icon:ki}),&quot;View commit &quot;,e.hash.substr(0,7))))),e.isDirty &amp;&amp;c.createElement(&quot;div &quot;,null,c.createElement(Iu,{className:&quot;mt-4 &quot;},&quot;Last commit is dirty. (Un)staged changes have been made since this commit.&quot;)),e.tag &amp;&amp;c.createElement(Xc,null,c.createElement(Xc.Row,{label:&quot;Latest tag &quot;,value:e.tag})))}zu.stringify=function(e,t){t=t||(e.protocols &amp;&amp;e.protocols.length?e.protocols.join(&quot;+&quot;):e.protocol);const n=e.port?`:${e.port}`:&quot;&quot;,r=e.user||&quot;git &quot;,a=e.git_suffix?&quot;.git &quot;:&quot;&quot;;switch(t){case &quot;ssh &quot;:return n?`ssh://${r}@${e.resource}${n}/${e.full_name}${a}`:`${r}@${e.resource}:${e.full_name}${a}`;case &quot;git+ssh &quot;:case &quot;ssh+git &quot;:case &quot;ftp &quot;:case &quot;ftps &quot;:return`${t}://${r}@${e.resource}${n}/${e.full_name}${a}`;case &quot;http &quot;:case &quot;https &quot;:return`${t}://${e.token?function(e){switch(e.source){case &quot;bitbucket.org &quot;:return`x-token-auth:${e.token}@`;default:return`${e.token}@`}}(e):e.user &amp;&amp;(e.protocols.includes(&quot;http &quot;)||e.protocols.includes(&quot;https &quot;))?`${e.user}@`:&quot;&quot;}${e.resource}${n}/${function(e){switch(e.source){case &quot;bitbucket-server &quot;:return`scm/${e.full_name}`;default:return`${e.full_name}`}}(e)}${a}`;default:return e.href}};var Bu,Vu,Wu=(Bu={&quot;&#192;&quot;:&quot;A &quot;,&quot;&#193;&quot;:&quot;A &quot;,&quot;&#194;&quot;:&quot;A &quot;,&quot;&#195;&quot;:&quot;A &quot;,&quot;&#196;&quot;:&quot;A &quot;,&quot;&#197;&quot;:&quot;A &quot;,&quot;&#224;&quot;:&quot;a &quot;,&quot;&#225;&quot;:&quot;a &quot;,&quot;&#226;&quot;:&quot;a &quot;,&quot;&#227;&quot;:&quot;a &quot;,&quot;&#228;&quot;:&quot;a &quot;,&quot;&#229;&quot;:&quot;a &quot;,&quot;&#199;&quot;:&quot;C &quot;,&quot;&#231;&quot;:&quot;c &quot;,&quot;&#208;&quot;:&quot;D &quot;,&quot;&#240;&quot;:&quot;d &quot;,&quot;&#200;&quot;:&quot;E &quot;,&quot;&#201;&quot;:&quot;E &quot;,&quot;&#202;&quot;:&quot;E &quot;,&quot;&#203;&quot;:&quot;E &quot;,&quot;&#232;&quot;:&quot;e &quot;,&quot;&#233;&quot;:&quot;e &quot;,&quot;&#234;&quot;:&quot;e &quot;,&quot;&#235;&quot;:&quot;e &quot;,&quot;&#204;&quot;:&quot;I &quot;,&quot;&#205;&quot;:&quot;I &quot;,&quot;&#206;&quot;:&quot;I &quot;,&quot;&#207;&quot;:&quot;I &quot;,&quot;&#236;&quot;:&quot;i &quot;,&quot;&#237;&quot;:&quot;i &quot;,&quot;&#238;&quot;:&quot;i &quot;,&quot;&#239;&quot;:&quot;i &quot;,&quot;&#209;&quot;:&quot;N &quot;,&quot;&#241;&quot;:&quot;n &quot;,&quot;&#210;&quot;:&quot;O &quot;,&quot;&#211;&quot;:&quot;O &quot;,&quot;&#212;&quot;:&quot;O &quot;,&quot;&#213;&quot;:&quot;O &quot;,&quot;&#214;&quot;:&quot;O &quot;,&quot;&#216;&quot;:&quot;O &quot;,&quot;&#242;&quot;:&quot;o &quot;,&quot;&#243;&quot;:&quot;o &quot;,&quot;&#244;&quot;:&quot;o &quot;,&quot;&#245;&quot;:&quot;o &quot;,&quot;&#246;&quot;:&quot;o &quot;,&quot;&#248;&quot;:&quot;o &quot;,&quot;&#217;&quot;:&quot;U &quot;,&quot;&#218;&quot;:&quot;U &quot;,&quot;&#219;&quot;:&quot;U &quot;,&quot;&#220;&quot;:&quot;U &quot;,&quot;&#249;&quot;:&quot;u &quot;,&quot;&#250;&quot;:&quot;u &quot;,&quot;&#251;&quot;:&quot;u &quot;,&quot;&#252;&quot;:&quot;u &quot;,&quot;&#221;&quot;:&quot;Y &quot;,&quot;&#253;&quot;:&quot;y &quot;,&quot;&#255;&quot;:&quot;y &quot;,&quot;&#198;&quot;:&quot;Ae &quot;,&quot;&#230;&quot;:&quot;ae &quot;,&quot;&#222;&quot;:&quot;Th &quot;,&quot;&#254;&quot;:&quot;th &quot;,&quot;&#223;&quot;:&quot;ss &quot;,&quot;&#256;&quot;:&quot;A &quot;,&quot;&#258;&quot;:&quot;A &quot;,&quot;&#260;&quot;:&quot;A &quot;,&quot;&#257;&quot;:&quot;a &quot;,&quot;&#259;&quot;:&quot;a &quot;,&quot;&#261;&quot;:&quot;a &quot;,&quot;&#262;&quot;:&quot;C &quot;,&quot;&#264;&quot;:&quot;C &quot;,&quot;&#266;&quot;:&quot;C &quot;,&quot;&#268;&quot;:&quot;C &quot;,&quot;&#263;&quot;:&quot;c &quot;,&quot;&#265;&quot;:&quot;c &quot;,&quot;&#267;&quot;:&quot;c &quot;,&quot;&#269;&quot;:&quot;c &quot;,&quot;&#270;&quot;:&quot;D &quot;,&quot;&#272;&quot;:&quot;D &quot;,&quot;&#271;&quot;:&quot;d &quot;,&quot;&#273;&quot;:&quot;d &quot;,&quot;&#274;&quot;:&quot;E &quot;,&quot;&#276;&quot;:&quot;E &quot;,&quot;&#278;&quot;:&quot;E &quot;,&quot;&#280;&quot;:&quot;E &quot;,&quot;&#282;&quot;:&quot;E &quot;,&quot;&#275;&quot;:&quot;e &quot;,&quot;&#277;&quot;:&quot;e &quot;,&quot;&#279;&quot;:&quot;e &quot;,&quot;&#281;&quot;:&quot;e &quot;,&quot;&#283;&quot;:&quot;e &quot;,&quot;&#284;&quot;:&quot;G &quot;,&quot;&#286;&quot;:&quot;G &quot;,&quot;&#288;&quot;:&quot;G &quot;,&quot;&#290;&quot;:&quot;G &quot;,&quot;&#285;&quot;:&quot;g &quot;,&quot;&#287;&quot;:&quot;g &quot;,&quot;&#289;&quot;:&quot;g &quot;,&quot;&#291;&quot;:&quot;g &quot;,&quot;&#292;&quot;:&quot;H &quot;,&quot;&#294;&quot;:&quot;H &quot;,&quot;&#293;&quot;:&quot;h &quot;,&quot;&#295;&quot;:&quot;h &quot;,&quot;&#296;&quot;:&quot;I &quot;,&quot;&#298;&quot;:&quot;I &quot;,&quot;&#300;&quot;:&quot;I &quot;,&quot;&#302;&quot;:&quot;I &quot;,&quot;&#304;&quot;:&quot;I &quot;,&quot;&#297;&quot;:&quot;i &quot;,&quot;&#299;&quot;:&quot;i &quot;,&quot;&#301;&quot;:&quot;i &quot;,&quot;&#303;&quot;:&quot;i &quot;,&quot;&#305;&quot;:&quot;i &quot;,&quot;&#308;&quot;:&quot;J &quot;,&quot;&#309;&quot;:&quot;j &quot;,&quot;&#310;&quot;:&quot;K &quot;,&quot;&#311;&quot;:&quot;k &quot;,&quot;&#312;&quot;:&quot;k &quot;,&quot;&#313;&quot;:&quot;L &quot;,&quot;&#315;&quot;:&quot;L &quot;,&quot;&#317;&quot;:&quot;L &quot;,&quot;&#319;&quot;:&quot;L &quot;,&quot;&#321;&quot;:&quot;L &quot;,&quot;&#314;&quot;:&quot;l &quot;,&quot;&#316;&quot;:&quot;l &quot;,&quot;&#318;&quot;:&quot;l &quot;,&quot;&#320;&quot;:&quot;l &quot;,&quot;&#322;&quot;:&quot;l &quot;,&quot;&#323;&quot;:&quot;N &quot;,&quot;&#325;&quot;:&quot;N &quot;,&quot;&#327;&quot;:&quot;N &quot;,&quot;&#330;&quot;:&quot;N &quot;,&quot;&#324;&quot;:&quot;n &quot;,&quot;&#326;&quot;:&quot;n &quot;,&quot;&#328;&quot;:&quot;n &quot;,&quot;&#331;&quot;:&quot;n &quot;,&quot;&#332;&quot;:&quot;O &quot;,&quot;&#334;&quot;:&quot;O &quot;,&quot;&#336;&quot;:&quot;O &quot;,&quot;&#333;&quot;:&quot;o &quot;,&quot;&#335;&quot;:&quot;o &quot;,&quot;&#337;&quot;:&quot;o &quot;,&quot;&#340;&quot;:&quot;R &quot;,&quot;&#342;&quot;:&quot;R &quot;,&quot;&#344;&quot;:&quot;R &quot;,&quot;&#341;&quot;:&quot;r &quot;,&quot;&#343;&quot;:&quot;r &quot;,&quot;&#345;&quot;:&quot;r &quot;,&quot;&#346;&quot;:&quot;S &quot;,&quot;&#348;&quot;:&quot;S &quot;,&quot;&#350;&quot;:&quot;S &quot;,&quot;&#352;&quot;:&quot;S &quot;,&quot;&#347;&quot;:&quot;s &quot;,&quot;&#349;&quot;:&quot;s &quot;,&quot;&#351;&quot;:&quot;s &quot;,&quot;&#353;&quot;:&quot;s &quot;,&quot;&#354;&quot;:&quot;T &quot;,&quot;&#356;&quot;:&quot;T &quot;,&quot;&#358;&quot;:&quot;T &quot;,&quot;&#355;&quot;:&quot;t &quot;,&quot;&#357;&quot;:&quot;t &quot;,&quot;&#359;&quot;:&quot;t &quot;,&quot;&#360;&quot;:&quot;U &quot;,&quot;&#362;&quot;:&quot;U &quot;,&quot;&#364;&quot;:&quot;U &quot;,&quot;&#366;&quot;:&quot;U &quot;,&quot;&#368;&quot;:&quot;U &quot;,&quot;&#370;&quot;:&quot;U &quot;,&quot;&#361;&quot;:&quot;u &quot;,&quot;&#363;&quot;:&quot;u &quot;,&quot;&#365;&quot;:&quot;u &quot;,&quot;&#367;&quot;:&quot;u &quot;,&quot;&#369;&quot;:&quot;u &quot;,&quot;&#371;&quot;:&quot;u &quot;,&quot;&#372;&quot;:&quot;W &quot;,&quot;&#373;&quot;:&quot;w &quot;,&quot;&#374;&quot;:&quot;Y &quot;,&quot;&#375;&quot;:&quot;y &quot;,&quot;&#376;&quot;:&quot;Y &quot;,&quot;&#377;&quot;:&quot;Z &quot;,&quot;&#379;&quot;:&quot;Z &quot;,&quot;&#381;&quot;:&quot;Z &quot;,&quot;&#378;&quot;:&quot;z &quot;,&quot;&#380;&quot;:&quot;z &quot;,&quot;&#382;&quot;:&quot;z &quot;,&quot;&#306;&quot;:&quot;IJ &quot;,&quot;&#307;&quot;:&quot;ij &quot;,&quot;&#338;&quot;:&quot;Oe &quot;,&quot;&#339;&quot;:&quot;oe &quot;,&quot;&#329;&quot;:&quot;&#039;n &quot;,&quot;&#383;&quot;:&quot;s &quot;},function(e){return null==Bu?void 0:Bu[e]}),Gu=/[----]/g,Yu=RegExp(&quot;[\u0300-\u036f\ufe20-\ufe2f\u20d0-\u20ff]&quot;,&quot;g &quot;),$u=/[^-/:-@[-`{-]+/g,Xu=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ku=&quot;\xac\xb1\xd7\xf7\x00-\/\:-\@\[-\`\{-\xbf\u2000-\u206f \t\\f\xa0\ufeff\n\r\u2028\u2029\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000 &quot;,qu=&quot;[&quot;+Ku+&quot;]&quot;,Ju=&quot;\d+&quot;,Qu=&quot;[a-z\xdf-\xf6\xf8-\xff]&quot;,Zu=&quot;[^\ud800-\udfff &quot;+Ku+Ju+&quot;\u2700-\u27bfa-z\xdf-\xf6\xf8-\xffA-Z\xc0-\xd6\xd8-\xde]&quot;,ef=&quot;(?:\ud83c[\udde6-\uddff]){2}&quot;,tf=&quot;[\ud800-\udbff][\udc00-\udfff]&quot;,nf=&quot;[A-Z\xc0-\xd6\xd8-\xde]&quot;,rf=&quot;(?:&quot;+Qu+&quot;|&quot;+Zu+&quot;)&quot;,af=&quot;(?:&quot;+nf+&quot;|&quot;+Zu+&quot;)&quot;,of=&quot;(?:[\u0300-\u036f\ufe20-\ufe2f\u20d0-\u20ff]|\ud83c[\udffb-\udfff])?&quot;,lf=&quot;[\ufe0e\ufe0f]?&quot;+of+&quot;(?:\u200d(?:&quot;+[&quot;[^\ud800-\udfff]&quot;,ef,tf].join(&quot;|&quot;)+&quot;)[\ufe0e\ufe0f]?&quot;+of+&quot;)*&quot;,sf=&quot;(?:&quot;+[&quot;[\u2700-\u27bf]&quot;,ef,tf].join(&quot;|&quot;)+&quot;)&quot;+lf,cf=RegExp([nf+&quot;?&quot;+Qu+&quot;+(?:[&#039;&#8217;](?:d|ll|m|re|s|t|ve))?(?=&quot;+[qu,nf,&quot;$ &quot;].join(&quot;|&quot;)+&quot;)&quot;,af+&quot;+(?:[&#039;&#8217;](?:D|LL|M|RE|S|T|VE))?(?=&quot;+[qu,nf+rf,&quot;$ &quot;].join(&quot;|&quot;)+&quot;)&quot;,nf+&quot;?&quot;+rf+&quot;+(?:[&#039;&#8217;](?:d|ll|m|re|s|t|ve))?&quot;,nf+&quot;+(?:[&#039;&#8217;](?:D|LL|M|RE|S|T|VE))?&quot;,&quot;\d*(?:1ST|2ND|3RD|(?![123])\dTH)(?=\b|[a-z_])&quot;,&quot;\d*(?:1st|2nd|3rd|(?![123])\dth)(?=\b|[A-Z_])&quot;,Ju,sf].join(&quot;|&quot;),&quot;g &quot;),uf=RegExp(&quot;[&#039;&#8217;]&quot;,&quot;g &quot;),ff=RegExp(&quot;[\u200d\ud800-\udfff\u0300-\u036f\ufe20-\ufe2f\u20d0-\u20ff\ufe0e\ufe0f]&quot;),df=function(e){return ff.test(e)},pf=&quot;[\u0300-\u036f\ufe20-\ufe2f\u20d0-\u20ff]&quot;,mf=&quot;\ud83c[\udffb-\udfff]&quot;,hf=&quot;[^\ud800-\udfff]&quot;,gf=&quot;(?:\ud83c[\udde6-\uddff]){2}&quot;,vf=&quot;[\ud800-\udbff][\udc00-\udfff]&quot;,yf=&quot;(?:&quot;+pf+&quot;|&quot;+mf+&quot;)?&quot;,Ef=&quot;[\ufe0e\ufe0f]?&quot;+yf+&quot;(?:\u200d(?:&quot;+[hf,gf,vf].join(&quot;|&quot;)+&quot;)[\ufe0e\ufe0f]?&quot;+yf+&quot;)*&quot;,bf=&quot;(?:&quot;+[hf+pf+&quot;?&quot;,pf,gf,vf,&quot;[\ud800-\udfff]&quot;].join(&quot;|&quot;)+&quot;)&quot;,Tf=RegExp(mf+&quot;(?=&quot;+mf+&quot;)|&quot;+bf+Ef,&quot;g &quot;),Nf=(Vu=function(e,t,n){return e+(n?&quot;&quot;:&quot;&quot;)+function(e){e=_n(e);var t,n,r,a=df(e)?function(e){return df(e)?function(e){return e.match(Tf)||[]}(e):function(e){return e.split(&quot;&quot;)}(e)}(e):void 0,o=a?a[0]:e.charAt(0),i=a?(t=a,r=t.length,n=void 0===n?r:n,function(e,t,n){var r=-1,a=e.length;t &lt;0 &amp;&amp;(t=-t &gt;a?0:a+t),(n=n &gt;a?a:n)&lt;0 &amp;&amp;(n+=a),a=t &gt;n?0:n-t &gt;&gt;&gt;0,t &gt;&gt;&gt;=0;for(var o=Array(a);++r &lt;a;)o[r]=e[r+t];return o}(t,1,n)).join(&quot;&quot;):e.slice(1);return o.toUpperCase()+i}(t)},function(e){return function(e,t,n,r){for(var a=-1,o=null==e?0:e.length;++a &lt;o;)n=t(n,e[a],a,e);return n}(function(e,t,n){return e=_n(e),void 0===(t=t)?function(e){return Xu.test(e)}(e)?function(e){return e.match(cf)||[]}(e):function(e){return e.match($u)||[]}(e):e.match(t)||[]}(function(e){return(e=_n(e))&amp;&amp;e.replace(Gu,Wu).replace(Yu,&quot;&quot;)}(e).replace(uf,&quot;&quot;)),Vu,&quot;&quot;)});function Rf({env:e}){const t=c.useContext(Ee);return c.createElement(Xc,null,t.application_version &amp;&amp;c.createElement(Xc.Row,{key:&quot;app_version &quot;,value:t.application_version,label:&quot;App Version &quot;}),Object.entries(e).map(([e,t])=&gt;c.createElement(Xc.Row,{key:e,value:t,label:Nf(e)})))}function Sf({children:e}){return c.createElement(&quot;ul &quot;,{className:&quot;grid grid-cols-1 gap-10 &quot;},e)}function wf({title:e,children:t,anchor:n}){return c.createElement(&quot;li &quot;,null,c.createElement(&quot;a &quot;,{href:`#context-${n}`,className:&quot;uppercase tracking-wider ~text-gray-500 text-xs font-bold &quot;},e),c.createElement(&quot;ul &quot;,{className:&quot;mt-3 grid grid-cols-1 gap-3 &quot;},t))}function Of({icon:e,title:t,anchor:n,active:r=!1}){return c.createElement(&quot;li &quot;,null,c.createElement(&quot;a &quot;,{href:`#context-${n}`,className:`
                flex items-center gap-3
                group text-base hover:text-indigo-500
                ${r?&quot;~text-indigo-600 &quot;:&quot;&quot;}
            `},c.createElement(&quot;span &quot;,{className:&quot;opacity-50 &quot;},e),c.createElement(&quot;span &quot;,null,t)))}function Cf({children:e}){const{inView:t}=c.useContext(Vc);return c.createElement(c.Fragment,null,c.createElement(&quot;nav &quot;,{className:&quot;hidden sm:block min-w-[8rem] flex-none mr-10 lg:mr-20 &quot;},c.createElement(&quot;div &quot;,{className:&quot;sticky top-[7.5rem]&quot;},c.createElement(Sf,null,c.Children.map(e,e=&gt;c.createElement(c.Fragment,null,e &amp;&amp;c.createElement(wf,{title:e.props.title,anchor:e.props.anchor},c.Children.map(e.props.children,e=&gt;c.createElement(c.Fragment,null,e &amp;&amp;e.type===Wc &amp;&amp;c.createElement(Of,{icon:e.props.icon,active:t[t.length-1]===e.props.title,title:e.props.title,anchor:e.props.anchor}))))))))),c.createElement(&quot;div &quot;,{className:&quot;overflow-hidden grid grid-cols-1 gap-px bg-white dark:shadow-none dark:bg-gray-800/50 dark:bg-gradient-to-bl from-gray-700/50 via-transparent dark:ring-1 dark:ring-inset dark:ring-white/5 rounded-lg shadow-2xl shadow-gray-500/20 flex-grow &quot;},e))}function Af({children:e}){const[t,n]=c.useState([]);return c.createElement(Vc.Provider,{value:{inView:t,setInView:n}},e)}function If({className:e=&quot;&quot;}){return c.createElement(&quot;svg &quot;,{version:&quot;1.1 &quot;,xmlns:&quot;http://www.w3.org/2000/svg &quot;,x:&quot;0px &quot;,y:&quot;0px &quot;,viewBox:&quot;0 0 512 512 &quot;,enableBackground:&quot;new 0 0 512 512 &quot;,className:`${e}`},c.createElement(&quot;path &quot;,{fill:&quot;currentcolor &quot;,d:&quot;M381.6,334.8c-24.7,0-27.7,33.6-45.2,44.6v52c0,17.6,14.2,31.8,31.8,31.8c17.6,0,31.8-14.2,31.8-31.8v-88.6
        C395,338.1,389.2,334.8,381.6,334.8z &quot;}),c.createElement(&quot;path &quot;,{fill:&quot;currentcolor &quot;,d:&quot;M263.2,334.8c-25.5,0-27.8,35.8-46.9,45.7v96.2c0,19.5,15.8,35.3,35.3,35.3s35.3-15.8,35.3-35.3V349.1
        C280.9,341.1,273.9,334.8,263.2,334.8z &quot;}),c.createElement(&quot;path &quot;,{fill:&quot;currentcolor &quot;,d:&quot;M144.8,334.8c-22.9,0-27.1,28.9-41.6,41.9l0,38c0,17.6,14.2,31.8,31.8,31.8c17.6,0,31.8-14.2,31.8-31.8v-67.9
        C161.2,339.9,154.5,334.8,144.8,334.8z &quot;}),c.createElement(&quot;path &quot;,{id:&quot;Body-Copy-4 &quot;,fill:&quot;currentcolor &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,d:&quot;M458.9,340.2c-8.3,12.6-14.7,28.2-31.7,28.2
		c-28.6,0-30.1-44-58.7-44c-28.6,0-27,44-55.6,44c-28.6,0-30.1-44-58.7-44s-27,44-55.6,44s-30.1-44-58.7-44s-27,44-55.6,44
		c-9,0-15.3-4.4-20.6-10.3c-20.4-35.6-32.2-77.2-32.2-121.8C31.6,105.8,132.4,0,256.7,0s225.1,105.8,225.1,236.2
		C481.8,273.5,473.6,308.8,458.9,340.2z &quot;}),c.createElement(&quot;path &quot;,{id:&quot;Oval &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,fill:&quot;#FFFFFF &quot;,d:&quot;M244.6,295.1c78.3,0,111.2-45.4,111.2-109.9
		S306.1,61.4,244.6,61.4s-111.2,59.4-111.2,123.9S166.4,295.1,244.6,295.1z &quot;}),c.createElement(&quot;ellipse &quot;,{id:&quot;Oval_1_ &quot;,fill:&quot;currentcolor &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,cx:&quot;214.7 &quot;,cy:&quot;142.9 &quot;,rx:&quot;41.7 &quot;,ry:&quot;46 &quot;}),c.createElement(&quot;ellipse &quot;,{id:&quot;Oval_2_ &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,fill:&quot;#FFFFFF &quot;,cx:&quot;207.8 &quot;,cy:&quot;132.2 &quot;,rx:&quot;20.9 &quot;,ry:&quot;21.3 &quot;}))}function kf(){var e,t,n;const r=c.useContext(Ee).context_items,a=r.request_data;return c.createElement(Dc,null,c.createElement(&quot;div &quot;,{className:&quot;flex items-stretch &quot;},c.createElement(Af,null,c.createElement(Cf,null,r.request_data &amp;&amp;r.request &amp;&amp;r.headers &amp;&amp;c.createElement(Fc,{title:&quot;Request &quot;,anchor:&quot;request &quot;},c.createElement(Yc,{request:r.request,requestData:r.request_data,headers:r.headers}),c.createElement(Wc,{title:&quot;Headers &quot;,anchor:&quot;request-headers &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Ni}),children:c.createElement(lu,{headers:r.headers})}),!!Object.values(r.request_data.queryString||[]).length &amp;&amp;c.createElement(Wc,{title:&quot;Query String &quot;,anchor:&quot;request-query-string &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:ui}),children:c.createElement(su,{requestData:r.request_data})}),c.createElement(Wc,{title:&quot;Body &quot;,anchor:&quot;request-body &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:fi}),children:c.createElement(cu,null)}),!(null==a||null==(e=a.files)||!e.length)&amp;&amp;c.createElement(Wc,{title:&quot;Files &quot;,anchor:&quot;request-files &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:gi}),children:c.createElement(uu,null)}),!(null==(t=r.session)||!t.length)&amp;&amp;c.createElement(Wc,{title:&quot;Session &quot;,anchor:&quot;request-session &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:vi}),children:c.createElement(fu,{session:r.session})}),!(null==(n=r.cookies)||!n.length)&amp;&amp;c.createElement(Wc,{title:&quot;Cookies &quot;,anchor:&quot;request-cookies &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:pi}),children:c.createElement(du,{cookies:r.cookies})})),c.createElement(Fc,{title:&quot;App &quot;,anchor:&quot;app &quot;},r.route &amp;&amp;c.createElement(Wc,{title:&quot;Routing &quot;,anchor:&quot;app-routing &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:wi}),children:c.createElement(yu,{route:r.route})}),r.view &amp;&amp;c.createElement(Wc,{title:&quot;Views &quot;,anchor:&quot;app-views &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:bi}),children:c.createElement(Tu,null)})),r.livewire &amp;&amp;c.createElement(Fc,{title:&quot;Livewire &quot;,anchor:&quot;livewire &quot;},c.createElement(Wc,{title:&quot;Component &quot;,anchor:&quot;livewire-component &quot;,icon:c.createElement(If,{className:&quot;svg-inline--fa fa-w-16 fa-fw &quot;}),children:c.createElement(mu,null)}),c.createElement(Wc,{title:&quot;Updates &quot;,anchor:&quot;livewire-updates &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Si}),children:c.createElement(hu,null)}),c.createElement(Wc,{title:&quot;Data &quot;,anchor:&quot;livewire-data &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Ai}),children:c.createElement(pu,null)})),c.createElement(Fc,{title:&quot;Context &quot;,anchor:&quot;context &quot;},r.user &amp;&amp;c.createElement(Wc,{title:&quot;User &quot;,anchor:&quot;user-user &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:xi}),children:c.createElement(Au,{user:r.user})}),r.git &amp;&amp;c.createElement(Wc,{title:&quot;Git &quot;,anchor:&quot;context-git &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:di}),children:c.createElement(Hu,{git:r.git})}),c.createElement(Wc,{title:&quot;Versions &quot;,anchor:&quot;context-versions &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Oi}),children:c.createElement(Rf,{env:r.env||{}})}))))))}function xf({children:e}){const[t,n]=c.useState(0),r=e.filter(e=&gt;!1!==e),a=c.Children.map(r,e=&gt;({name:e.props.name,component:e.props.component,count:e.props.count,checked:e.props.checked,onChange:e.props.onChange})).filter(e=&gt;e.count),o=a[t].component;return c.createElement(&quot;div &quot;,{className:&quot;bg-gray-300/50 dark:bg-black/10 shadow-inner rounded-lg &quot;},c.createElement(&quot;nav &quot;,{className:&quot;z-10 flex justify-center items-center &quot;},c.createElement(&quot;ul &quot;,{className:&quot;-my-5 flex justify-start items-center rounded-full shadow-lg bg-indigo-500 text-white space-x-px &quot;},a.map((e,r)=&gt;c.createElement(&quot;li &quot;,{key:r,className:`
                                    ${r===t?&quot;bg-indigo-600 &quot;:&quot;bg-indigo-500 text-indigo-100 &quot;}
                                    ${0===r?&quot;rounded-l-full &quot;:&quot;&quot;}
                                    ${r===a.length-1?&quot;rounded-r-full &quot;:&quot;&quot;}
                                    hover:text-white
                                `},c.createElement(&quot;button &quot;,{onClick:()=&gt;n(r),className:&quot;group flex items-center px-3 sm:px-5 h-10 uppercase tracking-wider text-xs font-medium &quot;},c.createElement(&quot;span &quot;,{className:&quot;mr-1.5 inline-flex items-center justify-center px-1 min-w-[1rem] h-4 bg-gray-900/30 text-white rounded-full text-xs &quot;},e.count),c.createElement(&quot;span &quot;,null,e.name)))))),c.createElement(Dc,{fallbackComponent:e=&gt;c.createElement(jc,{githubLink:e,className:&quot;pt-10 &quot;})},c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 gap-10 py-10 px-6 sm:px-10 &quot;},c.createElement(o,null))))}function _f({children:e,context:t=null,level:n=null,meta:r=null,time:a}){const[o,i]=c.useState(!1),l={error:&quot;red &quot;,warn:&quot;orange &quot;,warning:&quot;orange &quot;,info:&quot;blue &quot;,debug:&quot;green &quot;,trace:&quot;gray &quot;,notice:&quot;purple &quot;,critical:&quot;red &quot;,alert:&quot;red &quot;,emergency:&quot;red &quot;};return c.createElement(&quot;div &quot;,{className:&quot;min-w-0 grid grid-cols-1 gap-2 &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-1 &quot;},c.createElement(Gc,{color:n?l[n]:&quot;gray &quot;,className:&quot;font-mono &quot;},a.toLocaleTimeString()),n &amp;&amp;c.createElement(Gc,{color:l[n]},n),r &amp;&amp;Object.entries(r).map(([e,t])=&gt;c.createElement(c.Fragment,{key:e},&quot;runtime &quot;===e &amp;&amp;c.createElement(Gc,{className:&quot;inline-flex items-center gap-2 &quot;},c.createElement(oi,{title:&quot;Runtime &quot;,className:&quot;opacity-50 &quot;,icon:Ci}),&quot;&quot;,t),&quot;connection &quot;===e &amp;&amp;c.createElement(Gc,{className:&quot;inline-flex items-center gap-2 &quot;},c.createElement(oi,{title:&quot;Connection &quot;,className:&quot;opacity-50 &quot;,icon:hi}),&quot;&quot;,t),&quot;runtime &quot;!==e &amp;&amp;&quot;connection &quot;!==e &amp;&amp;c.createElement(Gc,null,e,&quot;: &quot;,t))),t &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;div &quot;,{className:&quot;ml-auto &quot;},c.createElement(Ks,{onClick:()=&gt;i(!o)},c.createElement(oi,{icon:o?Ei:fi,className:&quot;text-[8px] ~text-gray-500 group-hover:text-indigo-500 &quot;}),o?&quot;As list &quot;:&quot;Raw &quot;)))),c.createElement(&quot;div &quot;,null,e),t &amp;&amp;c.createElement(c.Fragment,null,o?c.createElement(wc,{value:Tc(t),language:&quot;json &quot;}):c.createElement(&quot;div &quot;,{className:&quot;pl-4 &quot;},c.createElement(Kc,{items:t}))))}function Lf(){const e=c.useContext(Ee),t=Object.values(e.context_items.logs);return c.createElement(c.Fragment,null,t.map((e,t)=&gt;c.createElement(_f,{key:t,context:e.context,level:e.level,time:bc(e.microtime)},c.createElement(wc,{value:e.message}))))}function Pf(){const e=c.useContext(Ee),t=Object.values(e.context_items.dumps);return c.createElement(c.Fragment,null,t.map((e,t)=&gt;c.createElement(_f,{key:t,time:bc(e.microtime)},c.createElement(&quot;div &quot;,{className:&quot;mb-2 &quot;},c.createElement(Ys,{path:e.file,lineNumber:e.line_number,className:&quot;text-sm &quot;})),c.createElement(bu,{value:e.html_dump}))))}function Mf(){const e=c.useContext(Ee),t=Object.values(e.context_items.queries);return c.createElement(c.Fragment,null,t.map((e,t)=&gt;c.createElement(_f,{key:t,time:bc(e.microtime),meta:{runtime:`${e.time}ms`,connection:e.connection_name}},c.createElement(wc,{value:e.sql,language:&quot;sql &quot;}))))}function Df(){const e=c.useContext(Ee);return c.createElement(c.Fragment,null,e.glows.map((e,t)=&gt;c.createElement(_f,{key:t,level:e.message_level,context:e.meta_data,time:bc(e.microtime)},c.createElement(wc,{value:e.name}))))}function Uf(){const e=c.useContext(Ee),t=e.context_items.queries,n=e.context_items.logs,r=e.glows;return c.createElement(Dc,null,c.createElement(xf,null,c.createElement(xf.Tab,{component:Pf,name:&quot;Dumps &quot;,count:Object.keys(e.context_items.dumps||[]).length}),c.createElement(xf.Tab,{component:Df,name:&quot;Glows &quot;,count:r.length}),c.createElement(xf.Tab,{component:Mf,name:&quot;Queries &quot;,count:Object.keys(t||[]).length}),c.createElement(xf.Tab,{component:Lf,name:&quot;Logs &quot;,count:Object.keys(n||[]).length})))}function jf({children:e,className:t=&quot;&quot;}){return c.createElement(&quot;code &quot;,{className:`font-mono leading-relaxed font-normal ~bg-gray-500/5 px-1 py-1 ${t}`},e)}function Ff(){return c.createElement(&quot;svg &quot;,{viewBox:&quot;0 0 682 1024 &quot;,className:&quot;w-4 h-5 ml-1.5 &quot;},c.createElement(&quot;polygon &quot;,{points:&quot;235.3,510.5 21.5,387 21.5,140.2 236.5,264.1 &quot;,style:{fill:&quot;rgb(81, 219, 158)&quot;}}),c.createElement(&quot;polygon &quot;,{points:&quot;235.3,1004.8 21.5,881.4 21.5,634.5 234.8,757.9 &quot;,style:{fill:&quot;rgb(121, 0, 245)&quot;}}),c.createElement(&quot;polygon &quot;,{points:&quot;448.9,386.9 21.5,140.2 235.3,16.7 663.2,263.4 &quot;,style:{fill:&quot;rgb(148, 242, 200)&quot;}}),c.createElement(&quot;polygon &quot;,{points:&quot;234.8,757.9 21.5,634.5 235.3,511 449.1,634.5 &quot;,style:{fill:&quot;rgb(164, 117, 244)&quot;}}))}function zf(){return c.createElement(&quot;svg &quot;,{id:&quot;ignition &quot;,className:&quot;w-8 h-8 -ml-1 &quot;,viewBox:&quot;0 0 500 500 &quot;},c.createElement(&quot;g &quot;,null,c.createElement(&quot;polygon &quot;,{style:{fill:&quot;transparent &quot;},points:&quot;466.5,375 466.5,125 250,0 33.5,125 33.5,375 250,500 	 &quot;}),c.createElement(&quot;g &quot;,null,c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#ff4590 &quot;},points:&quot;314.2,176 314.2,250 250,287 250,212.6 		 &quot;}),c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#ffd000 &quot;},points:&quot;185.9,398.1 185.9,324.1 250,287 249.9,360.9 		 &quot;}),c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#de075d &quot;},points:&quot;250,139.1 250,287 185.9,250 185.8,101.9 		 &quot;}),c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#e0b800 &quot;},points:&quot;249.9,360.9 250,287 314.1,324 314.1,398.1 		 &quot;}))))}function Hf(e){var t=e.label,n=e.onChange;return c.createElement(&quot;label &quot;,{className:&quot;flex items-center &quot;},c.createElement(&quot;input &quot;,{type:&quot;checkbox &quot;,checked:e.checked,onChange:function(e){return n(e.target.checked)},className:&quot;sr-only peer &quot;}),c.createElement(&quot;span &quot;,{className:&quot;mr-2 flex items-center w-6 h-4 ~bg-gray-100 peer-checked:bg-emerald-300 rounded-full shadow-inner transition-colors &quot;}),c.createElement(&quot;span &quot;,{className:&quot;absolute left-0.5 top-0.5 w-3 h-3 ~bg-dropdown rounded-full shadow-md transform peer-checked:translate-x-2 transition-transform &quot;}),c.createElement(&quot;span &quot;,{className:&quot;uppercase tracking-wider text-xs font-medium &quot;},t))}xf.Tab=e=&gt;null;var Bf=c.createContext();function Vf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Wf(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Vf(Object(n),!0).forEach(function(t){Yf(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Vf(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Gf(e){return(Gf=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Yf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function $f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:&quot;undefined &quot;!=typeof Symbol &amp;&amp;e[Symbol.iterator]||e[&quot;@@iterator &quot;];if(null!=n){var r,a,o=[],i=!0,l=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&amp;&amp;(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){l=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(l)throw a}}return o}}(e,t)||Kf(e,t)||function(){throw new TypeError(&quot;Invalid attempt to destructure non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Xf(e){return function(e){if(Array.isArray(e))return qf(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||Kf(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Kf(e,t){if(e){if(&quot;string &quot;==typeof e)return qf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?qf(e,t):void 0}}function qf(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}var Jf=function(){},Qf={},Zf={},ed=null,td={mark:Jf,measure:Jf};try{&quot;undefined &quot;!=typeof window &amp;&amp;(Qf=window),&quot;undefined &quot;!=typeof document &amp;&amp;(Zf=document),&quot;undefined &quot;!=typeof MutationObserver &amp;&amp;(ed=MutationObserver),&quot;undefined &quot;!=typeof performance &amp;&amp;(td=performance)}catch(Ro){}var nd=(Qf.navigator||{}).userAgent,rd=void 0===nd?&quot;&quot;:nd,ad=Qf,od=Zf,id=ed,ld=td,sd=!!od.documentElement &amp;&amp;!!od.head &amp;&amp;&quot;function &quot;==typeof od.addEventListener &amp;&amp;&quot;function &quot;==typeof od.createElement,cd=~rd.indexOf(&quot;MSIE &quot;)||~rd.indexOf(&quot;Trident/&quot;),ud=[&quot;HTML &quot;,&quot;HEAD &quot;,&quot;STYLE &quot;,&quot;SCRIPT &quot;],fd=function(){try{return!1}catch(e){return!1}}(),dd={fas:&quot;solid &quot;,&quot;fa-solid &quot;:&quot;solid &quot;,far:&quot;regular &quot;,&quot;fa-regular &quot;:&quot;regular &quot;,fal:&quot;light &quot;,&quot;fa-light &quot;:&quot;light &quot;,fat:&quot;thin &quot;,&quot;fa-thin &quot;:&quot;thin &quot;,fad:&quot;duotone &quot;,&quot;fa-duotone &quot;:&quot;duotone &quot;,fab:&quot;brands &quot;,&quot;fa-brands &quot;:&quot;brands &quot;,fak:&quot;kit &quot;,&quot;fa-kit &quot;:&quot;kit &quot;,fa:&quot;solid &quot;},pd={solid:&quot;fas &quot;,regular:&quot;far &quot;,light:&quot;fal &quot;,thin:&quot;fat &quot;,duotone:&quot;fad &quot;,brands:&quot;fab &quot;,kit:&quot;fak &quot;},md={fab:&quot;fa-brands &quot;,fad:&quot;fa-duotone &quot;,fak:&quot;fa-kit &quot;,fal:&quot;fa-light &quot;,far:&quot;fa-regular &quot;,fas:&quot;fa-solid &quot;,fat:&quot;fa-thin &quot;},hd={&quot;fa-brands &quot;:&quot;fab &quot;,&quot;fa-duotone &quot;:&quot;fad &quot;,&quot;fa-kit &quot;:&quot;fak &quot;,&quot;fa-light &quot;:&quot;fal &quot;,&quot;fa-regular &quot;:&quot;far &quot;,&quot;fa-solid &quot;:&quot;fas &quot;,&quot;fa-thin &quot;:&quot;fat &quot;},gd=/fa[srltdbk\-\ ]/,vd=/Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Kit)?.*/i,yd={900:&quot;fas &quot;,400:&quot;far &quot;,normal:&quot;far &quot;,300:&quot;fal &quot;,100:&quot;fat &quot;},Ed=[1,2,3,4,5,6,7,8,9,10],bd=Ed.concat([11,12,13,14,15,16,17,18,19,20]),Td=[&quot;class &quot;,&quot;data-prefix &quot;,&quot;data-icon &quot;,&quot;data-fa-transform &quot;,&quot;data-fa-mask &quot;],Nd=[].concat(Xf(Object.keys(pd)),[&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;beat &quot;,&quot;border &quot;,&quot;fade &quot;,&quot;beat-fade &quot;,&quot;bounce &quot;,&quot;flip-both &quot;,&quot;flip-horizontal &quot;,&quot;flip-vertical &quot;,&quot;flip &quot;,&quot;fw &quot;,&quot;inverse &quot;,&quot;layers-counter &quot;,&quot;layers-text &quot;,&quot;layers &quot;,&quot;li &quot;,&quot;pull-left &quot;,&quot;pull-right &quot;,&quot;pulse &quot;,&quot;rotate-180 &quot;,&quot;rotate-270 &quot;,&quot;rotate-90 &quot;,&quot;rotate-by &quot;,&quot;shake &quot;,&quot;spin-pulse &quot;,&quot;spin-reverse &quot;,&quot;spin &quot;,&quot;stack-1x &quot;,&quot;stack-2x &quot;,&quot;stack &quot;,&quot;ul &quot;,&quot;duotone-group &quot;,&quot;swap-opacity &quot;,&quot;primary &quot;,&quot;secondary &quot;]).concat(Ed.map(function(e){return &quot;&quot;.concat(e,&quot;x &quot;)})).concat(bd.map(function(e){return &quot;w-&quot;.concat(e)})),Rd=ad.FontAwesomeConfig||{};od &amp;&amp;&quot;function &quot;==typeof od.querySelector &amp;&amp;[[&quot;data-family-prefix &quot;,&quot;familyPrefix &quot;],[&quot;data-style-default &quot;,&quot;styleDefault &quot;],[&quot;data-replacement-class &quot;,&quot;replacementClass &quot;],[&quot;data-auto-replace-svg &quot;,&quot;autoReplaceSvg &quot;],[&quot;data-auto-add-css &quot;,&quot;autoAddCss &quot;],[&quot;data-auto-a11y &quot;,&quot;autoA11y &quot;],[&quot;data-search-pseudo-elements &quot;,&quot;searchPseudoElements &quot;],[&quot;data-observe-mutations &quot;,&quot;observeMutations &quot;],[&quot;data-mutate-approach &quot;,&quot;mutateApproach &quot;],[&quot;data-keep-original-source &quot;,&quot;keepOriginalSource &quot;],[&quot;data-measure-performance &quot;,&quot;measurePerformance &quot;],[&quot;data-show-missing-icons &quot;,&quot;showMissingIcons &quot;]].forEach(function(e){var t=$f(e,2),n=t[1],r=function(e){return &quot;&quot;===e||&quot;false &quot;!==e &amp;&amp;(&quot;true &quot;===e||e)}(function(e){var t=od.querySelector(&quot;script[&quot;+e+&quot;]&quot;);if(t)return t.getAttribute(e)}(t[0]));null!=r &amp;&amp;(Rd[n]=r)});var Sd=Wf(Wf({},{familyPrefix:&quot;fa &quot;,styleDefault:&quot;solid &quot;,replacementClass:&quot;svg-inline--fa &quot;,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:&quot;async &quot;,keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0}),Rd);Sd.autoReplaceSvg||(Sd.observeMutations=!1);var wd={};Object.keys(Sd).forEach(function(e){Object.defineProperty(wd,e,{enumerable:!0,set:function(t){Sd[e]=t,Od.forEach(function(e){return e(wd)})},get:function(){return Sd[e]}})}),ad.FontAwesomeConfig=wd;var Od=[],Cd=16,Ad={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function Id(){for(var e=12,t=&quot;&quot;;e-- &gt;0;)t+=&quot;0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ &quot;[62*Math.random()|0];return t}function kd(e){for(var t=[],n=(e||[]).length &gt;&gt;&gt;0;n--;)t[n]=e[n];return t}function xd(e){return e.classList?kd(e.classList):(e.getAttribute(&quot;class &quot;)||&quot;&quot;).split(&quot;&quot;).filter(function(e){return e})}function _d(e){return &quot;&quot;.concat(e).replace(/&amp;/g,&quot;&amp;amp;&quot;).replace(/&quot;/g,&quot;&amp;quot;&quot;).replace(/&#039;/g,&quot;&amp;#39;&quot;).replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;)}function Ld(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&quot;: &quot;).concat(e[n].trim(),&quot;;&quot;)},&quot;&quot;)}function Pd(e){return e.size!==Ad.size||e.x!==Ad.x||e.y!==Ad.y||e.rotate!==Ad.rotate||e.flipX||e.flipY}function Md(){var e=&quot;fa &quot;,t=&quot;svg-inline--fa &quot;,n=wd.familyPrefix,r=wd.replacementClass,a=&#039;:root, :host {
  --fa-font-solid: normal 900 1em/1 &quot;Font Awesome 6 Solid &quot;;
  --fa-font-regular: normal 400 1em/1 &quot;Font Awesome 6 Regular &quot;;
  --fa-font-light: normal 300 1em/1 &quot;Font Awesome 6 Light &quot;;
  --fa-font-thin: normal 100 1em/1 &quot;Font Awesome 6 Thin &quot;;
  --fa-font-duotone: normal 900 1em/1 &quot;Font Awesome 6 Duotone &quot;;
  --fa-font-brands: normal 400 1em/1 &quot;Font Awesome 6 Brands &quot;;
}

svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
  overflow: visible;
  box-sizing: content-box;
}

.svg-inline--fa {
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.svg-inline--fa.fa-2xs {
  vertical-align: 0.1em;
}
.svg-inline--fa.fa-xs {
  vertical-align: 0em;
}
.svg-inline--fa.fa-sm {
  vertical-align: -0.0714285705em;
}
.svg-inline--fa.fa-lg {
  vertical-align: -0.2em;
}
.svg-inline--fa.fa-xl {
  vertical-align: -0.25em;
}
.svg-inline--fa.fa-2xl {
  vertical-align: -0.3125em;
}
.svg-inline--fa.fa-pull-left {
  margin-right: var(--fa-pull-margin, 0.3em);
  width: auto;
}
.svg-inline--fa.fa-pull-right {
  margin-left: var(--fa-pull-margin, 0.3em);
  width: auto;
}
.svg-inline--fa.fa-li {
  width: var(--fa-li-width, 2em);
  top: 0.25em;
}
.svg-inline--fa.fa-fw {
  width: var(--fa-fw-width, 1.25em);
}

.fa-layers svg.svg-inline--fa {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.fa-layers-counter, .fa-layers-text {
  display: inline-block;
  position: absolute;
  text-align: center;
}

.fa-layers {
  display: inline-block;
  height: 1em;
  position: relative;
  text-align: center;
  vertical-align: -0.125em;
  width: 1em;
}
.fa-layers svg.svg-inline--fa {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.fa-layers-text {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.fa-layers-counter {
  background-color: var(--fa-counter-background-color, #ff253a);
  border-radius: var(--fa-counter-border-radius, 1em);
  box-sizing: border-box;
  color: var(--fa-inverse, #fff);
  line-height: var(--fa-counter-line-height, 1);
  max-width: var(--fa-counter-max-width, 5em);
  min-width: var(--fa-counter-min-width, 1.5em);
  overflow: hidden;
  padding: var(--fa-counter-padding, 0.25em 0.5em);
  right: var(--fa-right, 0);
  text-overflow: ellipsis;
  top: var(--fa-top, 0);
  -webkit-transform: scale(var(--fa-counter-scale, 0.25));
          transform: scale(var(--fa-counter-scale, 0.25));
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.fa-layers-bottom-right {
  bottom: var(--fa-bottom, 0);
  right: var(--fa-right, 0);
  top: auto;
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.fa-layers-bottom-left {
  bottom: var(--fa-bottom, 0);
  left: var(--fa-left, 0);
  right: auto;
  top: auto;
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.fa-layers-top-right {
  top: var(--fa-top, 0);
  right: var(--fa-right, 0);
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.fa-layers-top-left {
  left: var(--fa-left, 0);
  right: auto;
  top: var(--fa-top, 0);
  -webkit-transform: scale(var(--fa-layers-scale, 0.25));
          transform: scale(var(--fa-layers-scale, 0.25));
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul &gt;li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  -webkit-animation-name: fa-beat;
          animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  -webkit-animation-name: fa-bounce;
          animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  -webkit-animation-name: fa-fade;
          animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
          animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  -webkit-animation-name: fa-flip;
          animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
          animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  -webkit-animation-name: fa-shake;
          animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
          animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
          animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
          animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  -webkit-animation-name: fa-spin;
          animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
          animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
          animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
          animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
          animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
.fa-bounce,
.fa-fade,
.fa-beat-fade,
.fa-flip,
.fa-pulse,
.fa-shake,
.fa-spin,
.fa-spin-pulse {
    -webkit-animation-delay: -1ms;
            animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
            animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
            transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
            transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
            transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.fa-flip-horizontal {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.fa-flip-vertical {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}

.fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, none));
          transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  vertical-align: middle;
  height: 2em;
  position: relative;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: var(--fa-stack-z-index, auto);
}

.svg-inline--fa.fa-stack-1x {
  height: 1em;
  width: 1.25em;
}
.svg-inline--fa.fa-stack-2x {
  height: 2em;
  width: 2.5em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.svg-inline--fa .fa-primary {
  fill: var(--fa-primary-color, currentColor);
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa .fa-secondary {
  fill: var(--fa-secondary-color, currentColor);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-primary {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.svg-inline--fa.fa-swap-opacity .fa-secondary {
  opacity: var(--fa-primary-opacity, 1);
}

.svg-inline--fa mask .fa-primary,
.svg-inline--fa mask .fa-secondary {
  fill: black;
}

.fad.fa-inverse,
.fa-duotone.fa-inverse {
  color: var(--fa-inverse, #fff);
}&#039;;if(n!==e||r!==t){var o=new RegExp(&quot;\.&quot;.concat(e,&quot;\-&quot;),&quot;g &quot;),i=new RegExp(&quot;\--&quot;.concat(e,&quot;\-&quot;),&quot;g &quot;),l=new RegExp(&quot;\.&quot;.concat(t),&quot;g &quot;);a=a.replace(o,&quot;.&quot;.concat(n,&quot;-&quot;)).replace(i,&quot;--&quot;.concat(n,&quot;-&quot;)).replace(l,&quot;.&quot;.concat(r))}return a}var Dd=!1;function Ud(){wd.autoAddCss &amp;&amp;!Dd &amp;&amp;(function(e){if(e &amp;&amp;sd){var t=od.createElement(&quot;style &quot;);t.setAttribute(&quot;type &quot;,&quot;text/css &quot;),t.innerHTML=e;for(var n=od.head.childNodes,r=null,a=n.length-1;a &gt;-1;a--){var o=n[a],i=(o.tagName||&quot;&quot;).toUpperCase();[&quot;STYLE &quot;,&quot;LINK &quot;].indexOf(i)&gt;-1 &amp;&amp;(r=o)}od.head.insertBefore(t,r)}}(Md()),Dd=!0)}var jd={mixout:function(){return{dom:{css:Md,insertCss:Ud}}},hooks:function(){return{beforeDOMElementCreation:function(){Ud()},beforeI2svg:function(){Ud()}}}},Fd=ad||{};Fd.___FONT_AWESOME___||(Fd.___FONT_AWESOME___={}),Fd.___FONT_AWESOME___.styles||(Fd.___FONT_AWESOME___.styles={}),Fd.___FONT_AWESOME___.hooks||(Fd.___FONT_AWESOME___.hooks={}),Fd.___FONT_AWESOME___.shims||(Fd.___FONT_AWESOME___.shims=[]);var zd=Fd.___FONT_AWESOME___,Hd=[],Bd=!1;function Vd(e){sd &amp;&amp;(Bd?setTimeout(e,0):Hd.push(e))}function Wd(e){var t=e.tag,n=e.attributes,r=void 0===n?{}:n,a=e.children,o=void 0===a?[]:a;return &quot;string &quot;==typeof e?_d(e):&quot;&lt;&quot;.concat(t,&quot;&quot;).concat(function(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&#039;=&quot;&#039;).concat(_d(e[n]),&#039;&quot;&#039;)},&quot;&quot;).trim()}(r),&quot;&gt;&quot;).concat(o.map(Wd).join(&quot;&quot;),&quot;&lt;/&quot;).concat(t,&quot;&gt;&quot;)}function Gd(e,t,n){if(e &amp;&amp;e[t]&amp;&amp;e[t][n])return{prefix:t,iconName:n,icon:e[t][n]}}sd &amp;&amp;((Bd=(od.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(od.readyState))||od.addEventListener(&quot;DOMContentLoaded &quot;,function e(){od.removeEventListener(&quot;DOMContentLoaded &quot;,e),Bd=1,Hd.map(function(e){return e()})}));var Yd=function(e,t,n,r){var a,o,i,l=Object.keys(e),s=l.length,c=void 0!==r?function(e,t){return function(n,r,a,o){return e.call(t,n,r,a,o)}}(t,r):t;for(void 0===n?(a=1,i=e[l[0]]):(a=0,i=n);a &lt;s;a++)i=c(i,e[o=l[a]],o,e);return i};function $d(e){var t=function(e){for(var t=[],n=0,r=e.length;n &lt;r;){var a=e.charCodeAt(n++);if(a &gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;n &lt;r){var o=e.charCodeAt(n++);56320==(64512 &amp;o)?t.push(((1023 &amp;a)&lt;&lt;10)+(1023 &amp;o)+65536):(t.push(a),n--)}else t.push(a)}return t}(e);return 1===t.length?t[0].toString(16):null}function Xd(e){return Object.keys(e).reduce(function(t,n){var r=e[n];return r.icon?t[r.iconName]=r.icon:t[n]=r,t},{})}function Kd(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{},r=n.skipHooks,a=void 0!==r &amp;&amp;r,o=Xd(t);&quot;function &quot;!=typeof zd.hooks.addPack||a?zd.styles[e]=Wf(Wf({},zd.styles[e]||{}),o):zd.hooks.addPack(e,Xd(t)),&quot;fas &quot;===e &amp;&amp;Kd(&quot;fa &quot;,t)}var qd=zd.styles,Jd=zd.shims,Qd=Object.values(md),Zd=null,ep={},tp={},np={},rp={},ap={},op=Object.keys(dd);function ip(e,t){var n=t.split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);return r!==e||&quot;&quot;===a||~Nd.indexOf(a)?null:a}var lp=function(){var e=function(e){return Yd(qd,function(t,n,r){return t[r]=Yd(n,e,{}),t},{})};ep=e(function(e,t,n){return t[3]&amp;&amp;(e[t[3]]=n),t[2]&amp;&amp;t[2].filter(function(e){return &quot;number &quot;==typeof e}).forEach(function(t){e[t.toString(16)]=n}),e}),tp=e(function(e,t,n){return e[n]=n,t[2]&amp;&amp;t[2].filter(function(e){return &quot;string &quot;==typeof e}).forEach(function(t){e[t]=n}),e}),ap=e(function(e,t,n){var r=t[2];return e[n]=n,r.forEach(function(t){e[t]=n}),e});var t=&quot;far &quot;in qd||wd.autoFetchSvg,n=Yd(Jd,function(e,n){var r=n[0],a=n[1],o=n[2];return &quot;far &quot;!==a||t||(a=&quot;fas &quot;),&quot;string &quot;==typeof r &amp;&amp;(e.names[r]={prefix:a,iconName:o}),&quot;number &quot;==typeof r &amp;&amp;(e.unicodes[r.toString(16)]={prefix:a,iconName:o}),e},{names:{},unicodes:{}});np=n.names,rp=n.unicodes,Zd=dp(wd.styleDefault)};function sp(e,t){return(ep[e]||{})[t]}function cp(e,t){return(ap[e]||{})[t]}function up(e){return np[e]||{prefix:null,iconName:null}}function fp(){return Zd}function dp(e){return pd[e]||pd[dd[e]]||(e in zd.styles?e:null)||null}function pp(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.skipLookups,r=void 0!==n &amp;&amp;n,a=null,o=e.reduce(function(e,t){var n=ip(wd.familyPrefix,t);if(qd[t]?(t=Qd.includes(t)?hd[t]:t,a=t,e.prefix=t):op.indexOf(t)&gt;-1?(a=t,e.prefix=dp(t)):n?e.iconName=n:t!==wd.replacementClass &amp;&amp;e.rest.push(t),!r &amp;&amp;e.prefix &amp;&amp;e.iconName){var o=&quot;fa &quot;===a?up(e.iconName):{},i=cp(e.prefix,e.iconName);o.prefix &amp;&amp;(a=null),e.iconName=o.iconName||i||e.iconName,e.prefix=o.prefix||e.prefix,&quot;far &quot;!==e.prefix||qd.far||!qd.fas||wd.autoFetchSvg||(e.prefix=&quot;fas &quot;)}return e},{prefix:null,iconName:null,rest:[]});return &quot;fa &quot;!==o.prefix &amp;&amp;&quot;fa &quot;!==a||(o.prefix=fp()||&quot;fas &quot;),o}Od.push(function(e){Zd=dp(e.styleDefault)}),lp();var mp=/*#__PURE__*/function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.definitions={}}var t,n;return t=e,(n=[{key:&quot;add &quot;,value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r &lt;t;r++)n[r]=arguments[r];var a=n.reduce(this._pullDefinitions,{});Object.keys(a).forEach(function(t){e.definitions[t]=Wf(Wf({},e.definitions[t]||{}),a[t]),Kd(t,a[t]);var n=md[t];n &amp;&amp;Kd(n,a[t]),lp()})}},{key:&quot;reset &quot;,value:function(){this.definitions={}}},{key:&quot;_pullDefinitions &quot;,value:function(e,t){var n=t.prefix &amp;&amp;t.iconName &amp;&amp;t.icon?{0:t}:t;return Object.keys(n).map(function(t){var r=n[t],a=r.prefix,o=r.iconName,i=r.icon,l=i[2];e[a]||(e[a]={}),l.length &gt;0 &amp;&amp;l.forEach(function(t){&quot;string &quot;==typeof t &amp;&amp;(e[a][t]=i)}),e[a][o]=i}),e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(t.prototype,n),Object.defineProperty(t,&quot;prototype &quot;,{writable:!1}),e}(),hp=[],gp={},vp={},yp=Object.keys(vp);function Ep(e,t){for(var n=arguments.length,r=new Array(n &gt;2?n-2:0),a=2;a &lt;n;a++)r[a-2]=arguments[a];var o=gp[e]||[];return o.forEach(function(e){t=e.apply(null,[t].concat(r))}),t}function bp(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];var a=gp[e]||[];a.forEach(function(e){e.apply(null,n)})}function Tp(){var e=arguments[0],t=Array.prototype.slice.call(arguments,1);return vp[e]?vp[e].apply(null,t):void 0}function Np(e){&quot;fa &quot;===e.prefix &amp;&amp;(e.prefix=&quot;fas &quot;);var t=e.iconName,n=e.prefix||fp();if(t)return t=cp(n,t)||t,Gd(Rp.definitions,n,t)||Gd(zd.styles,n,t)}var Rp=new mp,Sp={i2svg:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{};return sd?(bp(&quot;beforeI2svg &quot;,e),Tp(&quot;pseudoElements2svg &quot;,e),Tp(&quot;i2svg &quot;,e)):Promise.reject(&quot;Operation requires a DOM of some kind.&quot;)},watch:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot;!1===wd.autoReplaceSvg &amp;&amp;(wd.autoReplaceSvg=!0),wd.observeMutations=!0,Vd(function(){Op({autoReplaceSvgRoot:t}),bp(&quot;watch &quot;,e)})}},wp={noAuto:function(){wd.autoReplaceSvg=!1,wd.observeMutations=!1,bp(&quot;noAuto &quot;)},config:wd,dom:Sp,parse:{icon:function(e){if(null===e)return null;if(&quot;object &quot;===Gf(e)&amp;&amp;e.prefix &amp;&amp;e.iconName)return{prefix:e.prefix,iconName:cp(e.prefix,e.iconName)||e.iconName};if(Array.isArray(e)&amp;&amp;2===e.length){var t=0===e[1].indexOf(&quot;fa-&quot;)?e[1].slice(3):e[1],n=dp(e[0]);return{prefix:n,iconName:cp(n,t)||t}}if(&quot;string &quot;==typeof e &amp;&amp;(e.indexOf(&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;))&gt;-1||e.match(gd))){var r=pp(e.split(&quot;&quot;),{skipLookups:!0});return{prefix:r.prefix||fp(),iconName:cp(r.prefix,r.iconName)||r.iconName}}if(&quot;string &quot;==typeof e){var a=fp();return{prefix:a,iconName:cp(a,e)||e}}}},library:Rp,findIconDefinition:Np,toHtml:Wd},Op=function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot,n=void 0===t?od:t;(Object.keys(zd.styles).length &gt;0||wd.autoFetchSvg)&amp;&amp;sd &amp;&amp;wd.autoReplaceSvg &amp;&amp;wp.dom.i2svg({node:n})};function Cp(e,t){return Object.defineProperty(e,&quot;abstract &quot;,{get:t}),Object.defineProperty(e,&quot;html &quot;,{get:function(){return e.abstract.map(function(e){return Wd(e)})}}),Object.defineProperty(e,&quot;node &quot;,{get:function(){if(sd){var t=od.createElement(&quot;div &quot;);return t.innerHTML=e.html,t.children}}}),e}function Ap(e){var t=e.icons,n=t.main,r=t.mask,a=e.prefix,o=e.iconName,i=e.transform,l=e.symbol,s=e.title,c=e.maskId,u=e.titleId,f=e.extra,d=e.watchable,p=void 0!==d &amp;&amp;d,m=r.found?r:n,h=m.width,g=m.height,v=&quot;fak &quot;===a,y=[wd.replacementClass,o?&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(o):&quot;&quot;].filter(function(e){return-1===f.classes.indexOf(e)}).filter(function(e){return &quot;&quot;!==e||!!e}).concat(f.classes).join(&quot;&quot;),E={children:[],attributes:Wf(Wf({},f.attributes),{},{&quot;data-prefix &quot;:a,&quot;data-icon &quot;:o,class:y,role:f.attributes.role||&quot;img &quot;,xmlns:&quot;http://www.w3.org/2000/svg &quot;,viewBox:&quot;0 0 &quot;.concat(h,&quot;&quot;).concat(g)})},b=v &amp;&amp;!~f.classes.indexOf(&quot;fa-fw &quot;)?{width:&quot;&quot;.concat(h/g*16*.0625,&quot;em &quot;)}:{};p &amp;&amp;(E.attributes[&quot;data-fa-i2svg &quot;]=&quot;&quot;),s &amp;&amp;(E.children.push({tag:&quot;title &quot;,attributes:{id:E.attributes[&quot;aria-labelledby &quot;]||&quot;title-&quot;.concat(u||Id())},children:[s]}),delete E.attributes.title);var T=Wf(Wf({},E),{},{prefix:a,iconName:o,main:n,mask:r,maskId:c,transform:i,symbol:l,styles:Wf(Wf({},b),f.styles)}),N=r.found &amp;&amp;n.found?Tp(&quot;generateAbstractMask &quot;,T)||{children:[],attributes:{}}:Tp(&quot;generateAbstractIcon &quot;,T)||{children:[],attributes:{}},R=N.attributes;return T.children=N.children,T.attributes=R,l?function(e){var t=e.iconName,n=e.children,r=e.attributes,a=e.symbol,o=!0===a?&quot;&quot;.concat(e.prefix,&quot;-&quot;).concat(wd.familyPrefix,&quot;-&quot;).concat(t):a;return[{tag:&quot;svg &quot;,attributes:{style:&quot;display: none;&quot;},children:[{tag:&quot;symbol &quot;,attributes:Wf(Wf({},r),{},{id:o}),children:n}]}]}(T):function(e){var t=e.children,n=e.main,r=e.mask,a=e.attributes,o=e.styles,i=e.transform;if(Pd(i)&amp;&amp;n.found &amp;&amp;!r.found){var l={x:n.width/n.height/2,y:.5};a.style=Ld(Wf(Wf({},o),{},{&quot;transform-origin &quot;:&quot;&quot;.concat(l.x+i.x/16,&quot;em &quot;).concat(l.y+i.y/16,&quot;em &quot;)}))}return[{tag:&quot;svg &quot;,attributes:a,children:t}]}(T)}function Ip(e){var t=e.content,n=e.width,r=e.height,a=e.transform,o=e.title,i=e.extra,l=e.watchable,s=void 0!==l &amp;&amp;l,c=Wf(Wf(Wf({},i.attributes),o?{title:o}:{}),{},{class:i.classes.join(&quot;&quot;)});s &amp;&amp;(c[&quot;data-fa-i2svg &quot;]=&quot;&quot;);var u=Wf({},i.styles);Pd(a)&amp;&amp;(u.transform=function(e){var t=e.transform,n=e.width,r=e.height,a=void 0===r?16:r,o=e.startCentered,i=void 0!==o &amp;&amp;o,l=&quot;&quot;;return l+=i &amp;&amp;cd?&quot;translate(&quot;.concat(t.x/Cd-(void 0===n?16:n)/2,&quot;em, &quot;).concat(t.y/Cd-a/2,&quot;em) &quot;):i?&quot;translate(calc(-50% + &quot;.concat(t.x/Cd,&quot;em), calc(-50% + &quot;).concat(t.y/Cd,&quot;em)) &quot;):&quot;translate(&quot;.concat(t.x/Cd,&quot;em, &quot;).concat(t.y/Cd,&quot;em) &quot;),(l+=&quot;scale(&quot;.concat(t.size/Cd*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/Cd*(t.flipY?-1:1),&quot;) &quot;))+&quot;rotate(&quot;.concat(t.rotate,&quot;deg) &quot;)}({transform:a,startCentered:!0,width:n,height:r}),u[&quot;-webkit-transform &quot;]=u.transform);var f=Ld(u);f.length &gt;0 &amp;&amp;(c.style=f);var d=[];return d.push({tag:&quot;span &quot;,attributes:c,children:[t]}),o &amp;&amp;d.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[o]}),d}function kp(e){var t=e.content,n=e.title,r=e.extra,a=Wf(Wf(Wf({},r.attributes),n?{title:n}:{}),{},{class:r.classes.join(&quot;&quot;)}),o=Ld(r.styles);o.length &gt;0 &amp;&amp;(a.style=o);var i=[];return i.push({tag:&quot;span &quot;,attributes:a,children:[t]}),n &amp;&amp;i.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[n]}),i}var xp=zd.styles;function _p(e){var t=e[0],n=e[1],r=$f(e.slice(4),1)[0];return{found:!0,width:t,height:n,icon:Array.isArray(r)?{tag:&quot;g &quot;,attributes:{class:&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(&quot;duotone-group &quot;)},children:[{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(&quot;secondary &quot;),fill:&quot;currentColor &quot;,d:r[0]}},{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(&quot;primary &quot;),fill:&quot;currentColor &quot;,d:r[1]}}]}:{tag:&quot;path &quot;,attributes:{fill:&quot;currentColor &quot;,d:r}}}}var Lp={found:!1,width:512,height:512};function Pp(e,t){var n=t;return &quot;fa &quot;===t &amp;&amp;null!==wd.styleDefault &amp;&amp;(t=fp()),new Promise(function(r,a){if(Tp(&quot;missingIconAbstract &quot;),&quot;fa &quot;===n){var o=up(e)||{};e=o.iconName||e,t=o.prefix||t}if(e &amp;&amp;t &amp;&amp;xp[t]&amp;&amp;xp[t][e])return r(_p(xp[t][e]));!function(e,t){fd||wd.showMissingIcons||!e||console.error(&#039;Icon with name &quot;&#039;.concat(e,&#039;&quot;and prefix &quot;&#039;).concat(t,&#039;&quot;is missing.&#039;))}(e,t),r(Wf(Wf({},Lp),{},{icon:wd.showMissingIcons &amp;&amp;e &amp;&amp;Tp(&quot;missingIconAbstract &quot;)||{}}))})}var Mp=function(){},Dp=wd.measurePerformance &amp;&amp;ld &amp;&amp;ld.mark &amp;&amp;ld.measure?ld:{mark:Mp,measure:Mp},Up=function(e){return Dp.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;)),function(){return function(e){Dp.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;)),Dp.measure(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;))}(e)}},jp=function(){};function Fp(e){return &quot;string &quot;==typeof(e.getAttribute?e.getAttribute(&quot;data-fa-i2svg &quot;):null)}function zp(e){return od.createElementNS(&quot;http://www.w3.org/2000/svg &quot;,e)}function Hp(e){return od.createElement(e)}function Bp(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.ceFn,r=void 0===n?&quot;svg &quot;===e.tag?zp:Hp:n;if(&quot;string &quot;==typeof e)return od.createTextNode(e);var a=r(e.tag);Object.keys(e.attributes||[]).forEach(function(t){a.setAttribute(t,e.attributes[t])});var o=e.children||[];return o.forEach(function(e){a.appendChild(Bp(e,{ceFn:r}))}),a}var Vp={replace:function(e){var t=e[0];if(t.parentNode)if(e[1].forEach(function(e){t.parentNode.insertBefore(Bp(e),t)}),null===t.getAttribute(&quot;data-fa-i2svg &quot;)&amp;&amp;wd.keepOriginalSource){var n=od.createComment(function(e){var t=&quot;&quot;.concat(e.outerHTML,&quot;&quot;);return &quot;&quot;.concat(t,&quot;Font Awesome fontawesome.com &quot;)}(t));t.parentNode.replaceChild(n,t)}else t.remove()},nest:function(e){var t=e[0],n=e[1];if(~xd(t).indexOf(wd.replacementClass))return Vp.replace(e);var r=new RegExp(&quot;&quot;.concat(wd.familyPrefix,&quot;-.*&quot;));if(delete n[0].attributes.id,n[0].attributes.class){var a=n[0].attributes.class.split(&quot;&quot;).reduce(function(e,t){return t===wd.replacementClass||t.match(r)?e.toSvg.push(t):e.toNode.push(t),e},{toNode:[],toSvg:[]});n[0].attributes.class=a.toSvg.join(&quot;&quot;),0===a.toNode.length?t.removeAttribute(&quot;class &quot;):t.setAttribute(&quot;class &quot;,a.toNode.join(&quot;&quot;))}var o=n.map(function(e){return Wd(e)}).join(&quot;
 &quot;);t.setAttribute(&quot;data-fa-i2svg &quot;,&quot;&quot;),t.innerHTML=o}};function Wp(e){e()}function Gp(e,t){var n=&quot;function &quot;==typeof t?t:jp;if(0===e.length)n();else{var r=Wp;&quot;async &quot;===wd.mutateApproach &amp;&amp;(r=ad.requestAnimationFrame||Wp),r(function(){var t=!0===wd.autoReplaceSvg?Vp.replace:Vp[wd.autoReplaceSvg]||Vp.replace,r=Up(&quot;mutate &quot;);e.map(t),r(),n()})}}var Yp=!1;function $p(){Yp=!0}function Xp(){Yp=!1}var Kp=null;function qp(e){if(id &amp;&amp;wd.observeMutations){var t=e.treeCallback,n=void 0===t?jp:t,r=e.nodeCallback,a=void 0===r?jp:r,o=e.pseudoElementsCallback,i=void 0===o?jp:o,l=e.observeMutationsRoot,s=void 0===l?od:l;Kp=new id(function(e){if(!Yp){var t=fp();kd(e).forEach(function(e){if(&quot;childList &quot;===e.type &amp;&amp;e.addedNodes.length &gt;0 &amp;&amp;!Fp(e.addedNodes[0])&amp;&amp;(wd.searchPseudoElements &amp;&amp;i(e.target),n(e.target)),&quot;attributes &quot;===e.type &amp;&amp;e.target.parentNode &amp;&amp;wd.searchPseudoElements &amp;&amp;i(e.target.parentNode),&quot;attributes &quot;===e.type &amp;&amp;Fp(e.target)&amp;&amp;~Td.indexOf(e.attributeName))if(&quot;class &quot;===e.attributeName &amp;&amp;function(e){var t=e.getAttribute?e.getAttribute(&quot;data-prefix &quot;):null,n=e.getAttribute?e.getAttribute(&quot;data-icon &quot;):null;return t &amp;&amp;n}(e.target)){var r=pp(xd(e.target)),o=r.iconName;e.target.setAttribute(&quot;data-prefix &quot;,r.prefix||t),o &amp;&amp;e.target.setAttribute(&quot;data-icon &quot;,o)}else(function(e){return e &amp;&amp;e.classList &amp;&amp;e.classList.contains &amp;&amp;e.classList.contains(wd.replacementClass)})(e.target)&amp;&amp;a(e.target)})}}),sd &amp;&amp;Kp.observe(s,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Jp(e){var t=e.getAttribute(&quot;style &quot;),n=[];return t &amp;&amp;(n=t.split(&quot;;&quot;).reduce(function(e,t){var n=t.split(&quot;:&quot;),r=n[0],a=n.slice(1);return r &amp;&amp;a.length &gt;0 &amp;&amp;(e[r]=a.join(&quot;:&quot;).trim()),e},{})),n}function Qp(e){var t=e.getAttribute(&quot;data-prefix &quot;),n=e.getAttribute(&quot;data-icon &quot;),r=void 0!==e.innerText?e.innerText.trim():&quot;&quot;,a=pp(xd(e));return a.prefix||(a.prefix=fp()),t &amp;&amp;n &amp;&amp;(a.prefix=t,a.iconName=n),a.iconName &amp;&amp;a.prefix||a.prefix &amp;&amp;r.length &gt;0 &amp;&amp;(a.iconName=(tp[a.prefix]||{})[e.innerText]||sp(a.prefix,$d(e.innerText))),a}function Zp(e){var t=kd(e.attributes).reduce(function(e,t){return &quot;class &quot;!==e.name &amp;&amp;&quot;style &quot;!==e.name &amp;&amp;(e[t.name]=t.value),e},{}),n=e.getAttribute(&quot;title &quot;),r=e.getAttribute(&quot;data-fa-title-id &quot;);return wd.autoA11y &amp;&amp;(n?t[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(wd.replacementClass,&quot;-title-&quot;).concat(r||Id()):(t[&quot;aria-hidden &quot;]=&quot;true &quot;,t.focusable=&quot;false &quot;)),t}function em(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{styleParser:!0},n=Qp(e),r=n.iconName,a=n.prefix,o=n.rest,i=Zp(e),l=Ep(&quot;parseNodeAttributes &quot;,{},e),s=t.styleParser?Jp(e):[];return Wf({iconName:r,title:e.getAttribute(&quot;title &quot;),titleId:e.getAttribute(&quot;data-fa-title-id &quot;),prefix:a,transform:Ad,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:o,styles:s,attributes:i}},l)}var tm=zd.styles;function nm(e){var t=&quot;nest &quot;===wd.autoReplaceSvg?em(e,{styleParser:!1}):em(e);return~t.extra.classes.indexOf(&quot;fa-layers-text &quot;)?Tp(&quot;generateLayersText &quot;,e,t):Tp(&quot;generateSvgReplacementMutation &quot;,e,t)}function rm(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;if(!sd)return Promise.resolve();var n=od.documentElement.classList,r=function(e){return n.add(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},a=function(e){return n.remove(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},o=Object.keys(wd.autoFetchSvg?dd:tm),i=[&quot;.&quot;.concat(&quot;fa-layers-text &quot;,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)].concat(o.map(function(e){return &quot;.&quot;.concat(e,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)})).join(&quot;, &quot;);if(0===i.length)return Promise.resolve();var l=[];try{l=kd(e.querySelectorAll(i))}catch(e){}if(!(l.length &gt;0))return Promise.resolve();r(&quot;pending &quot;),a(&quot;complete &quot;);var s=Up(&quot;onTree &quot;),c=l.reduce(function(e,t){try{var n=nm(t);n &amp;&amp;e.push(n)}catch(e){fd||&quot;MissingIcon &quot;===e.name &amp;&amp;console.error(e)}return e},[]);return new Promise(function(e,n){Promise.all(c).then(function(n){Gp(n,function(){r(&quot;active &quot;),r(&quot;complete &quot;),a(&quot;pending &quot;),&quot;function &quot;==typeof t &amp;&amp;t(),s(),e()})}).catch(function(e){s(),n(e)})})}function am(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;nm(e).then(function(e){e &amp;&amp;Gp([e],t)})}var om=function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Ad:n,a=t.symbol,o=void 0!==a &amp;&amp;a,i=t.mask,l=void 0===i?null:i,s=t.maskId,c=void 0===s?null:s,u=t.title,f=void 0===u?null:u,d=t.titleId,p=void 0===d?null:d,m=t.classes,h=void 0===m?[]:m,g=t.attributes,v=void 0===g?{}:g,y=t.styles,E=void 0===y?{}:y;if(e){var b=e.prefix,T=e.iconName,N=e.icon;return Cp(Wf({type:&quot;icon &quot;},e),function(){return bp(&quot;beforeDOMElementCreation &quot;,{iconDefinition:e,params:t}),wd.autoA11y &amp;&amp;(f?v[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(wd.replacementClass,&quot;-title-&quot;).concat(p||Id()):(v[&quot;aria-hidden &quot;]=&quot;true &quot;,v.focusable=&quot;false &quot;)),Ap({icons:{main:_p(N),mask:l?_p(l.icon):{found:!1,width:null,height:null,icon:{}}},prefix:b,iconName:T,transform:Wf(Wf({},Ad),r),symbol:o,title:f,maskId:c,titleId:p,extra:{attributes:v,styles:E,classes:h}})})}},im={mixout:function(){return{icon:(e=om,function(t){var n=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},r=(t||{}).icon?t:Np(t||{}),a=n.mask;return a &amp;&amp;(a=(a||{}).icon?a:Np(a||{})),e(r,Wf(Wf({},n),{},{mask:a}))})};var e},hooks:function(){return{mutationObserverCallbacks:function(e){return e.treeCallback=rm,e.nodeCallback=am,e}}},provides:function(e){e.i2svg=function(e){var t=e.node,n=e.callback;return rm(void 0===t?od:t,void 0===n?function(){}:n)},e.generateSvgReplacementMutation=function(e,t){var n=t.iconName,r=t.title,a=t.titleId,o=t.prefix,i=t.transform,l=t.symbol,s=t.mask,c=t.maskId,u=t.extra;return new Promise(function(t,f){Promise.all([Pp(n,o),s.iconName?Pp(s.iconName,s.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(s){var f=$f(s,2);t([e,Ap({icons:{main:f[0],mask:f[1]},prefix:o,iconName:n,transform:i,symbol:l,maskId:c,title:r,titleId:a,extra:u,watchable:!0})])}).catch(f)})},e.generateAbstractIcon=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.transform,i=Ld(e.styles);return i.length &gt;0 &amp;&amp;(r.style=i),Pd(o)&amp;&amp;(t=Tp(&quot;generateAbstractTransformGrouping &quot;,{main:a,transform:o,containerWidth:a.width,iconWidth:a.width})),n.push(t||a.icon),{children:n,attributes:r}}}},lm={mixout:function(){return{layer:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.classes,r=void 0===n?[]:n;return Cp({type:&quot;layer &quot;},function(){bp(&quot;beforeDOMElementCreation &quot;,{assembler:e,params:t});var n=[];return e(function(e){Array.isArray(e)?e.map(function(e){n=n.concat(e.abstract)}):n=n.concat(e.abstract)}),[{tag:&quot;span &quot;,attributes:{class:[&quot;&quot;.concat(wd.familyPrefix,&quot;-layers &quot;)].concat(Xf(r)).join(&quot;&quot;)},children:n}]})}}}},sm={mixout:function(){return{counter:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.title,r=void 0===n?null:n,a=t.classes,o=void 0===a?[]:a,i=t.attributes,l=void 0===i?{}:i,s=t.styles,c=void 0===s?{}:s;return Cp({type:&quot;counter &quot;,content:e},function(){return bp(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),kp({content:e.toString(),title:r,extra:{attributes:l,styles:c,classes:[&quot;&quot;.concat(wd.familyPrefix,&quot;-layers-counter &quot;)].concat(Xf(o))}})})}}}},cm={mixout:function(){return{text:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Ad:n,a=t.title,o=void 0===a?null:a,i=t.classes,l=void 0===i?[]:i,s=t.attributes,c=void 0===s?{}:s,u=t.styles,f=void 0===u?{}:u;return Cp({type:&quot;text &quot;,content:e},function(){return bp(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),Ip({content:e,transform:Wf(Wf({},Ad),r),title:o,extra:{attributes:c,styles:f,classes:[&quot;&quot;.concat(wd.familyPrefix,&quot;-layers-text &quot;)].concat(Xf(l))}})})}}},provides:function(e){e.generateLayersText=function(e,t){var n=t.title,r=t.transform,a=t.extra,o=null,i=null;if(cd){var l=parseInt(getComputedStyle(e).fontSize,10),s=e.getBoundingClientRect();o=s.width/l,i=s.height/l}return wd.autoA11y &amp;&amp;!n &amp;&amp;(a.attributes[&quot;aria-hidden &quot;]=&quot;true &quot;),Promise.resolve([e,Ip({content:e.innerHTML,width:o,height:i,transform:r,title:n,extra:a,watchable:!0})])}}},um=new RegExp(&#039;&quot;&#039;,&quot;ug &quot;),fm=[1105920,1112319];function dm(e,t){var n=&quot;&quot;.concat(&quot;data-fa-pseudo-element-pending &quot;).concat(t.replace(&quot;:&quot;,&quot;-&quot;));return new Promise(function(r,a){if(null!==e.getAttribute(n))return r();var o,i,l,s=kd(e.children).filter(function(e){return e.getAttribute(&quot;data-fa-pseudo-element &quot;)===t})[0],c=ad.getComputedStyle(e,t),u=c.getPropertyValue(&quot;font-family &quot;).match(vd),f=c.getPropertyValue(&quot;font-weight &quot;),d=c.getPropertyValue(&quot;content &quot;);if(s &amp;&amp;!u)return e.removeChild(s),r();if(u &amp;&amp;&quot;none &quot;!==d &amp;&amp;&quot;&quot;!==d){var p=c.getPropertyValue(&quot;content &quot;),m=~[&quot;Solid &quot;,&quot;Regular &quot;,&quot;Light &quot;,&quot;Thin &quot;,&quot;Duotone &quot;,&quot;Brands &quot;,&quot;Kit &quot;].indexOf(u[2])?pd[u[2].toLowerCase()]:yd[f],h=function(e){var t,n,r,a,o=e.replace(um,&quot;&quot;),i=(r=(t=o).length,(a=t.charCodeAt(0))&gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;r &gt;1 &amp;&amp;(n=t.charCodeAt(1))&gt;=56320 &amp;&amp;n &lt;=57343?1024*(a-55296)+n-56320+65536:a),l=i &gt;=fm[0]&amp;&amp;i &lt;=fm[1],s=2===o.length &amp;&amp;o[0]===o[1];return{value:$d(s?o[0]:o),isSecondary:l||s}}(p),g=h.value,v=h.isSecondary,y=u[0].startsWith(&quot;FontAwesome &quot;),E=sp(m,g),b=E;if(y){var T=(i=rp[o=g],l=sp(&quot;fas &quot;,o),i||(l?{prefix:&quot;fas &quot;,iconName:l}:null)||{prefix:null,iconName:null});T.iconName &amp;&amp;T.prefix &amp;&amp;(E=T.iconName,m=T.prefix)}if(!E||v||s &amp;&amp;s.getAttribute(&quot;data-prefix &quot;)===m &amp;&amp;s.getAttribute(&quot;data-icon &quot;)===b)r();else{e.setAttribute(n,b),s &amp;&amp;e.removeChild(s);var N={iconName:null,title:null,titleId:null,prefix:null,transform:Ad,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}},R=N.extra;R.attributes[&quot;data-fa-pseudo-element &quot;]=t,Pp(E,m).then(function(a){var o=Ap(Wf(Wf({},N),{},{icons:{main:a,mask:{prefix:null,iconName:null,rest:[]}},prefix:m,iconName:b,extra:R,watchable:!0})),i=od.createElement(&quot;svg &quot;);&quot;::before &quot;===t?e.insertBefore(i,e.firstChild):e.appendChild(i),i.outerHTML=o.map(function(e){return Wd(e)}).join(&quot;
 &quot;),e.removeAttribute(n),r()}).catch(a)}}else r()})}function pm(e){return Promise.all([dm(e,&quot;::before &quot;),dm(e,&quot;::after &quot;)])}function mm(e){return!(e.parentNode===document.head||~ud.indexOf(e.tagName.toUpperCase())||e.getAttribute(&quot;data-fa-pseudo-element &quot;)||e.parentNode &amp;&amp;&quot;svg &quot;===e.parentNode.tagName)}function hm(e){if(sd)return new Promise(function(t,n){var r=kd(e.querySelectorAll(&quot;*&quot;)).filter(mm).map(pm),a=Up(&quot;searchPseudoElements &quot;);$p(),Promise.all(r).then(function(){a(),Xp(),t()}).catch(function(){a(),Xp(),n()})})}var gm=!1,vm=function(e){return e.toLowerCase().split(&quot;&quot;).reduce(function(e,t){var n=t.toLowerCase().split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);if(r &amp;&amp;&quot;h &quot;===a)return e.flipX=!0,e;if(r &amp;&amp;&quot;v &quot;===a)return e.flipY=!0,e;if(a=parseFloat(a),isNaN(a))return e;switch(r){case &quot;grow &quot;:e.size=e.size+a;break;case &quot;shrink &quot;:e.size=e.size-a;break;case &quot;left &quot;:e.x=e.x-a;break;case &quot;right &quot;:e.x=e.x+a;break;case &quot;up &quot;:e.y=e.y-a;break;case &quot;down &quot;:e.y=e.y+a;break;case &quot;rotate &quot;:e.rotate=e.rotate+a}return e},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},ym={x:0,y:0,width:&quot;100%&quot;,height:&quot;100%&quot;};function Em(e){var t=!(arguments.length &gt;1 &amp;&amp;void 0!==arguments[1])||arguments[1];return e.attributes &amp;&amp;(e.attributes.fill||t)&amp;&amp;(e.attributes.fill=&quot;black &quot;),e}!function(e,t){var n=wp;hp=e,gp={},Object.keys(vp).forEach(function(e){-1===yp.indexOf(e)&amp;&amp;delete vp[e]}),hp.forEach(function(e){var t=e.mixout?e.mixout():{};if(Object.keys(t).forEach(function(e){&quot;function &quot;==typeof t[e]&amp;&amp;(n[e]=t[e]),&quot;object &quot;===Gf(t[e])&amp;&amp;Object.keys(t[e]).forEach(function(r){n[e]||(n[e]={}),n[e][r]=t[e][r]})}),e.hooks){var r=e.hooks();Object.keys(r).forEach(function(e){gp[e]||(gp[e]=[]),gp[e].push(r[e])})}e.provides &amp;&amp;e.provides(vp)})}([jd,im,lm,sm,cm,{hooks:function(){return{mutationObserverCallbacks:function(e){return e.pseudoElementsCallback=hm,e}}},provides:function(e){e.pseudoElements2svg=function(e){var t=e.node;wd.searchPseudoElements &amp;&amp;hm(void 0===t?od:t)}}},{mixout:function(){return{dom:{unwatch:function(){$p(),gm=!0}}}},hooks:function(){return{bootstrap:function(){qp(Ep(&quot;mutationObserverCallbacks &quot;,{}))},noAuto:function(){Kp &amp;&amp;Kp.disconnect()},watch:function(e){var t=e.observeMutationsRoot;gm?Xp():qp(Ep(&quot;mutationObserverCallbacks &quot;,{observeMutationsRoot:t}))}}}},{mixout:function(){return{parse:{transform:function(e){return vm(e)}}}},hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-transform &quot;);return n &amp;&amp;(e.transform=vm(n)),e}}},provides:function(e){e.generateAbstractTransformGrouping=function(e){var t=e.main,n=e.transform,r=e.iconWidth,a={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},o=&quot;translate(&quot;.concat(32*n.x,&quot;, &quot;).concat(32*n.y,&quot;) &quot;),i=&quot;scale(&quot;.concat(n.size/16*(n.flipX?-1:1),&quot;, &quot;).concat(n.size/16*(n.flipY?-1:1),&quot;) &quot;),l=&quot;rotate(&quot;.concat(n.rotate,&quot;0 0)&quot;),s={outer:a,inner:{transform:&quot;&quot;.concat(o,&quot;&quot;).concat(i,&quot;&quot;).concat(l)},path:{transform:&quot;translate(&quot;.concat(r/2*-1,&quot;-256)&quot;)}};return{tag:&quot;g &quot;,attributes:Wf({},s.outer),children:[{tag:&quot;g &quot;,attributes:Wf({},s.inner),children:[{tag:t.icon.tag,children:t.icon.children,attributes:Wf(Wf({},t.icon.attributes),s.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-mask &quot;),r=n?pp(n.split(&quot;&quot;).map(function(e){return e.trim()})):{prefix:null,iconName:null,rest:[]};return r.prefix||(r.prefix=fp()),e.mask=r,e.maskId=t.getAttribute(&quot;data-fa-mask-id &quot;),e}}},provides:function(e){e.generateAbstractMask=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.mask,i=e.maskId,l=a.icon,s=o.icon,c=function(e){var t=e.transform,n=e.iconWidth,r={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},a=&quot;translate(&quot;.concat(32*t.x,&quot;, &quot;).concat(32*t.y,&quot;) &quot;),o=&quot;scale(&quot;.concat(t.size/16*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/16*(t.flipY?-1:1),&quot;) &quot;),i=&quot;rotate(&quot;.concat(t.rotate,&quot;0 0)&quot;);return{outer:r,inner:{transform:&quot;&quot;.concat(a,&quot;&quot;).concat(o,&quot;&quot;).concat(i)},path:{transform:&quot;translate(&quot;.concat(n/2*-1,&quot;-256)&quot;)}}}({transform:e.transform,containerWidth:o.width,iconWidth:a.width}),u={tag:&quot;rect &quot;,attributes:Wf(Wf({},ym),{},{fill:&quot;white &quot;})},f=l.children?{children:l.children.map(Em)}:{},d={tag:&quot;g &quot;,attributes:Wf({},c.inner),children:[Em(Wf({tag:l.tag,attributes:Wf(Wf({},l.attributes),c.path)},f))]},p={tag:&quot;g &quot;,attributes:Wf({},c.outer),children:[d]},m=&quot;mask-&quot;.concat(i||Id()),h=&quot;clip-&quot;.concat(i||Id()),g={tag:&quot;mask &quot;,attributes:Wf(Wf({},ym),{},{id:m,maskUnits:&quot;userSpaceOnUse &quot;,maskContentUnits:&quot;userSpaceOnUse &quot;}),children:[u,p]},v={tag:&quot;defs &quot;,children:[{tag:&quot;clipPath &quot;,attributes:{id:h},children:(t=s,&quot;g &quot;===t.tag?t.children:[t])},g]};return n.push(v,{tag:&quot;rect &quot;,attributes:Wf({fill:&quot;currentColor &quot;,&quot;clip-path &quot;:&quot;url(#&quot;.concat(h,&quot;)&quot;),mask:&quot;url(#&quot;.concat(m,&quot;)&quot;)},ym)}),{children:n,attributes:r}}}},{provides:function(e){var t=!1;ad.matchMedia &amp;&amp;(t=ad.matchMedia(&quot;(prefers-reduced-motion: reduce)&quot;).matches),e.missingIconAbstract=function(){var e=[],n={fill:&quot;currentColor &quot;},r={attributeType:&quot;XML &quot;,repeatCount:&quot;indefinite &quot;,dur:&quot;2s &quot;};e.push({tag:&quot;path &quot;,attributes:Wf(Wf({},n),{},{d:&quot;M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z &quot;})});var a=Wf(Wf({},r),{},{attributeName:&quot;opacity &quot;}),o={tag:&quot;circle &quot;,attributes:Wf(Wf({},n),{},{cx:&quot;256 &quot;,cy:&quot;364 &quot;,r:&quot;28 &quot;}),children:[]};return t||o.children.push({tag:&quot;animate &quot;,attributes:Wf(Wf({},r),{},{attributeName:&quot;r &quot;,values:&quot;28;14;28;28;14;28;&quot;})},{tag:&quot;animate &quot;,attributes:Wf(Wf({},a),{},{values:&quot;1;0;1;1;0;1;&quot;})}),e.push(o),e.push({tag:&quot;path &quot;,attributes:Wf(Wf({},n),{},{opacity:&quot;1 &quot;,d:&quot;M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z &quot;}),children:t?[]:[{tag:&quot;animate &quot;,attributes:Wf(Wf({},a),{},{values:&quot;1;0;0;0;0;1;&quot;})}]}),t||e.push({tag:&quot;path &quot;,attributes:Wf(Wf({},n),{},{opacity:&quot;0 &quot;,d:&quot;M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z &quot;}),children:[{tag:&quot;animate &quot;,attributes:Wf(Wf({},a),{},{values:&quot;0;0;1;1;0;0;&quot;})}]}),{tag:&quot;g &quot;,attributes:{class:&quot;missing &quot;},children:e}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-symbol &quot;);return e.symbol=null!==n &amp;&amp;(&quot;&quot;===n||n),e}}}}]);var bm,Tm=wp.parse,Nm=wp.icon,Rm=n(function(e,t){!function(){var e=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for,n=e?Symbol.for(&quot;react.element &quot;):60103,r=e?Symbol.for(&quot;react.portal &quot;):60106,a=e?Symbol.for(&quot;react.fragment &quot;):60107,o=e?Symbol.for(&quot;react.strict_mode &quot;):60108,i=e?Symbol.for(&quot;react.profiler &quot;):60114,l=e?Symbol.for(&quot;react.provider &quot;):60109,s=e?Symbol.for(&quot;react.context &quot;):60110,c=e?Symbol.for(&quot;react.async_mode &quot;):60111,u=e?Symbol.for(&quot;react.concurrent_mode &quot;):60111,f=e?Symbol.for(&quot;react.forward_ref &quot;):60112,d=e?Symbol.for(&quot;react.suspense &quot;):60113,p=e?Symbol.for(&quot;react.suspense_list &quot;):60120,m=e?Symbol.for(&quot;react.memo &quot;):60115,h=e?Symbol.for(&quot;react.lazy &quot;):60116,g=e?Symbol.for(&quot;react.block &quot;):60121,v=e?Symbol.for(&quot;react.fundamental &quot;):60117,y=e?Symbol.for(&quot;react.responder &quot;):60118,E=e?Symbol.for(&quot;react.scope &quot;):60119;function b(e){if(&quot;object &quot;==typeof e &amp;&amp;null!==e){var t=e.$$typeof;switch(t){case n:var p=e.type;switch(p){case c:case u:case a:case i:case o:case d:return p;default:var g=p &amp;&amp;p.$$typeof;switch(g){case s:case f:case h:case m:case l:return g;default:return t}}case r:return t}}}var T=u,N=s,R=l,S=n,w=f,O=a,C=h,A=m,I=r,k=i,x=o,_=d,L=!1;function P(e){return b(e)===u}t.AsyncMode=c,t.ConcurrentMode=T,t.ContextConsumer=N,t.ContextProvider=R,t.Element=S,t.ForwardRef=w,t.Fragment=O,t.Lazy=C,t.Memo=A,t.Portal=I,t.Profiler=k,t.StrictMode=x,t.Suspense=_,t.isAsyncMode=function(e){return L||(L=!0,console.warn(&quot;The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.&quot;)),P(e)||b(e)===c},t.isConcurrentMode=P,t.isContextConsumer=function(e){return b(e)===s},t.isContextProvider=function(e){return b(e)===l},t.isElement=function(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===n},t.isForwardRef=function(e){return b(e)===f},t.isFragment=function(e){return b(e)===a},t.isLazy=function(e){return b(e)===h},t.isMemo=function(e){return b(e)===m},t.isPortal=function(e){return b(e)===r},t.isProfiler=function(e){return b(e)===i},t.isStrictMode=function(e){return b(e)===o},t.isSuspense=function(e){return b(e)===d},t.isValidElementType=function(e){return &quot;string &quot;==typeof e||&quot;function &quot;==typeof e||e===a||e===u||e===i||e===o||e===d||e===p||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;(e.$$typeof===h||e.$$typeof===m||e.$$typeof===l||e.$$typeof===s||e.$$typeof===f||e.$$typeof===v||e.$$typeof===y||e.$$typeof===E||e.$$typeof===g)},t.typeOf=b}()}),Sm=n(function(e){e.exports=Rm}),wm=&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;,Om=Function.call.bind(Object.prototype.hasOwnProperty),Cm={},Am=Om;function Im(e,t,n,r,a){for(var o in e)if(Am(e,o)){var i;try{if(&quot;function &quot;!=typeof e[o]){var l=Error((r||&quot;React class &quot;)+&quot;: &quot;+n+&quot;type `&quot;+o+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+typeof e[o]+&quot;`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.&quot;);throw l.name=&quot;Invariant Violation &quot;,l}i=e[o](t,o,r,n,null,&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;)}catch(e){i=e}if(!i||i instanceof Error||bm((r||&quot;React class &quot;)+&quot;: type specification of &quot;+n+&quot;`&quot;+o+&quot;` is invalid; the type checker function must return `null` or an `Error` but returned a &quot;+typeof i+&quot;. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).&quot;),i instanceof Error &amp;&amp;!(i.message in Cm)){Cm[i.message]=!0;var s=a?a():&quot;&quot;;bm(&quot;Failed &quot;+n+&quot;type: &quot;+i.message+(null!=s?s:&quot;&quot;))}}}bm=function(e){var t=&quot;Warning: &quot;+e;&quot;undefined &quot;!=typeof console &amp;&amp;console.error(t);try{throw new Error(t)}catch(e){}},Im.resetWarningCache=function(){Cm={}};var km,xm=Im;function _m(){return null}km=function(e){var t=&quot;Warning: &quot;+e;&quot;undefined &quot;!=typeof console &amp;&amp;console.error(t);try{throw new Error(t)}catch(e){}};var Lm=n(function(e){e.exports=function(e,t){var n=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator,r=&quot;&lt;&lt;anonymous &gt;&gt;&quot;,a={array:c(&quot;array &quot;),bigint:c(&quot;bigint &quot;),bool:c(&quot;boolean &quot;),func:c(&quot;function &quot;),number:c(&quot;number &quot;),object:c(&quot;object &quot;),string:c(&quot;string &quot;),symbol:c(&quot;symbol &quot;),any:s(_m),arrayOf:function(e){return s(function(t,n,r,a,o){if(&quot;function &quot;!=typeof e)return new i(&quot;Property `&quot;+o+&quot;` of component `&quot;+r+&quot;` has invalid PropType notation inside arrayOf.&quot;);var l=t[n];if(!Array.isArray(l))return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+d(l)+&quot;` supplied to `&quot;+r+&quot;`, expected an array.&quot;);for(var s=0;s &lt;l.length;s++){var c=e(l,s,r,a,o+&quot;[&quot;+s+&quot;]&quot;,wm);if(c instanceof Error)return c}return null})},element:s(function(t,n,r,a,o){var l=t[n];return e(l)?null:new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+d(l)+&quot;` supplied to `&quot;+r+&quot;`, expected a single ReactElement.&quot;)}),elementType:s(function(e,t,n,r,a){var o=e[t];return Sm.isValidElementType(o)?null:new i(&quot;Invalid &quot;+r+&quot;`&quot;+a+&quot;` of type `&quot;+d(o)+&quot;` supplied to `&quot;+n+&quot;`, expected a single ReactElement type.&quot;)}),instanceOf:function(e){return s(function(t,n,a,o,l){return t[n]instanceof e?null:new i(&quot;Invalid &quot;+o+&quot;`&quot;+l+&quot;` of type `&quot;+((s=t[n]).constructor &amp;&amp;s.constructor.name?s.constructor.name:r)+&quot;` supplied to `&quot;+a+&quot;`, expected instance of `&quot;+(e.name||r)+&quot;`.&quot;);var s})},node:s(function(e,t,n,r,a){return f(e[t])?null:new i(&quot;Invalid &quot;+r+&quot;`&quot;+a+&quot;` supplied to `&quot;+n+&quot;`, expected a ReactNode.&quot;)}),objectOf:function(e){return s(function(t,n,r,a,o){if(&quot;function &quot;!=typeof e)return new i(&quot;Property `&quot;+o+&quot;` of component `&quot;+r+&quot;` has invalid PropType notation inside objectOf.&quot;);var l=t[n],s=d(l);if(&quot;object &quot;!==s)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+s+&quot;` supplied to `&quot;+r+&quot;`, expected an object.&quot;);for(var c in l)if(Om(l,c)){var u=e(l,c,r,a,o+&quot;.&quot;+c,wm);if(u instanceof Error)return u}return null})},oneOf:function(e){if(!Array.isArray(e))return km(arguments.length &gt;1?&quot;Invalid arguments supplied to oneOf, expected an array, got &quot;+arguments.length+&quot;arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).&quot;:&quot;Invalid argument supplied to oneOf, expected an array.&quot;),_m;function t(t,n,r,a,l){for(var s=t[n],c=0;c &lt;e.length;c++)if(o(s,e[c]))return null;var u=JSON.stringify(e,function(e,t){return &quot;symbol &quot;===p(t)?String(t):t});return new i(&quot;Invalid &quot;+a+&quot;`&quot;+l+&quot;` of value `&quot;+String(s)+&quot;` supplied to `&quot;+r+&quot;`, expected one of &quot;+u+&quot;.&quot;)}return s(t)},oneOfType:function(e){if(!Array.isArray(e))return km(&quot;Invalid argument supplied to oneOfType, expected an instance of array.&quot;),_m;for(var t=0;t &lt;e.length;t++){var n=e[t];if(&quot;function &quot;!=typeof n)return km(&quot;Invalid argument supplied to oneOfType. Expected an array of check functions, but received &quot;+m(n)+&quot;at index &quot;+t+&quot;.&quot;),_m}return s(function(t,n,r,a,o){for(var l=[],s=0;s &lt;e.length;s++){var c=(0,e[s])(t,n,r,a,o,wm);if(null==c)return null;c.data &amp;&amp;Om(c.data,&quot;expectedType &quot;)&amp;&amp;l.push(c.data.expectedType)}return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` supplied to `&quot;+r+&quot;`&quot;+(l.length &gt;0?&quot;, expected one of type [&quot;+l.join(&quot;, &quot;)+&quot;]&quot;:&quot;&quot;)+&quot;.&quot;)})},shape:function(e){return s(function(t,n,r,a,o){var l=t[n],s=d(l);if(&quot;object &quot;!==s)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+s+&quot;` supplied to `&quot;+r+&quot;`, expected `object`.&quot;);for(var c in e){var f=e[c];if(&quot;function &quot;!=typeof f)return u(r,a,o,c,p(f));var m=f(l,c,r,a,o+&quot;.&quot;+c,wm);if(m)return m}return null})},exact:function(e){return s(function(t,n,r,a,o){var s=t[n],c=d(s);if(&quot;object &quot;!==c)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+c+&quot;` supplied to `&quot;+r+&quot;`, expected `object`.&quot;);var f=l({},t[n],e);for(var m in f){var h=e[m];if(Om(e,m)&amp;&amp;&quot;function &quot;!=typeof h)return u(r,a,o,m,p(h));if(!h)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` key `&quot;+m+&quot;` supplied to `&quot;+r+&quot;`.
Bad object: &quot;+JSON.stringify(t[n],null,&quot;&quot;)+&quot;
Valid keys: &quot;+JSON.stringify(Object.keys(e),null,&quot;&quot;));var g=h(s,m,r,a,o+&quot;.&quot;+m,wm);if(g)return g}return null})}};function o(e,t){return e===t?0!==e||1/e==1/t:e!=e &amp;&amp;t!=t}function i(e,t){this.message=e,this.data=t &amp;&amp;&quot;object &quot;==typeof t?t:{},this.stack=&quot;&quot;}function s(e){function t(t,n,a,o,l,s,c){if(o=o||r,s=s||a,c!==wm){var u=new Error(&quot;Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types &quot;);throw u.name=&quot;Invariant Violation &quot;,u}return null==n[a]?t?new i(null===n[a]?&quot;The &quot;+l+&quot;`&quot;+s+&quot;` is marked as required in `&quot;+o+&quot;`, but its value is `null`.&quot;:&quot;The &quot;+l+&quot;`&quot;+s+&quot;` is marked as required in `&quot;+o+&quot;`, but its value is `undefined`.&quot;):null:e(n,a,o,l,s)}var n=t.bind(null,!1);return n.isRequired=t.bind(null,!0),n}function c(e){return s(function(t,n,r,a,o,l){var s=t[n];return d(s)!==e?new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+p(s)+&quot;` supplied to `&quot;+r+&quot;`, expected `&quot;+e+&quot;`.&quot;,{expectedType:e}):null})}function u(e,t,n,r,a){return new i((e||&quot;React class &quot;)+&quot;: &quot;+t+&quot;type `&quot;+n+&quot;.&quot;+r+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+a+&quot;`.&quot;)}function f(t){switch(typeof t){case &quot;number &quot;:case &quot;string &quot;:case &quot;undefined &quot;:return!0;case &quot;boolean &quot;:return!t;case &quot;object &quot;:if(Array.isArray(t))return t.every(f);if(null===t||e(t))return!0;var r=function(e){var t=e &amp;&amp;(n &amp;&amp;e[n]||e[&quot;@@iterator &quot;]);if(&quot;function &quot;==typeof t)return t}(t);if(!r)return!1;var a,o=r.call(t);if(r!==t.entries){for(;!(a=o.next()).done;)if(!f(a.value))return!1}else for(;!(a=o.next()).done;){var i=a.value;if(i &amp;&amp;!f(i[1]))return!1}return!0;default:return!1}}function d(e){var t=typeof e;return Array.isArray(e)?&quot;array &quot;:e instanceof RegExp?&quot;object &quot;:function(e,t){return &quot;symbol &quot;===e||!!t &amp;&amp;(&quot;Symbol &quot;===t[&quot;@@toStringTag &quot;]||&quot;function &quot;==typeof Symbol &amp;&amp;t instanceof Symbol)}(t,e)?&quot;symbol &quot;:t}function p(e){if(null==e)return &quot;&quot;+e;var t=d(e);if(&quot;object &quot;===t){if(e instanceof Date)return &quot;date &quot;;if(e instanceof RegExp)return &quot;regexp &quot;}return t}function m(e){var t=p(e);switch(t){case &quot;array &quot;:case &quot;object &quot;:return &quot;an &quot;+t;case &quot;boolean &quot;:case &quot;date &quot;:case &quot;regexp &quot;:return &quot;a &quot;+t;default:return t}}return i.prototype=Error.prototype,a.checkPropTypes=xm,a.resetWarningCache=xm.resetWarningCache,a.PropTypes=a,a}(Sm.isElement)});function Pm(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Mm(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Pm(Object(n),!0).forEach(function(t){Um(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Pm(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Dm(e){return(Dm=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Um(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function jm(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||Object.prototype.propertyIsEnumerable.call(e,n)&amp;&amp;(a[n]=e[n])}return a}function Fm(e){return function(e){if(Array.isArray(e))return zm(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return zm(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?zm(e,t):void 0}}(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function zm(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}function Hm(e){return t=e,(t-=0)==t?e:(e=e.replace(/[\-_\s]+(.)?/g,function(e,t){return t?t.toUpperCase():&quot;&quot;})).substr(0,1).toLowerCase()+e.substr(1);var t}var Bm=[&quot;style &quot;];function Vm(e){return e.split(&quot;;&quot;).map(function(e){return e.trim()}).filter(function(e){return e}).reduce(function(e,t){var n,r=t.indexOf(&quot;:&quot;),a=Hm(t.slice(0,r)),o=t.slice(r+1).trim();return a.startsWith(&quot;webkit &quot;)?e[(n=a,n.charAt(0).toUpperCase()+n.slice(1))]=o:e[a]=o,e},{})}var Wm=!1;try{Wm=!1}catch(Ro){}function Gm(e){return e &amp;&amp;&quot;object &quot;===Dm(e)&amp;&amp;e.prefix &amp;&amp;e.iconName &amp;&amp;e.icon?e:Tm.icon?Tm.icon(e):null===e?null:e &amp;&amp;&quot;object &quot;===Dm(e)&amp;&amp;e.prefix &amp;&amp;e.iconName?e:Array.isArray(e)&amp;&amp;2===e.length?{prefix:e[0],iconName:e[1]}:&quot;string &quot;==typeof e?{prefix:&quot;fas &quot;,iconName:e}:void 0}function Ym(e,t){return Array.isArray(t)&amp;&amp;t.length &gt;0||!Array.isArray(t)&amp;&amp;t?Um({},e,t):{}}var $m=[&quot;forwardedRef &quot;];function Xm(e){var t=e.forwardedRef,n=jm(e,$m),r=n.mask,a=n.symbol,o=n.className,i=n.title,l=n.titleId,s=n.maskId,c=Gm(n.icon),u=Ym(&quot;classes &quot;,[].concat(Fm(function(e){var t,n=e.flip,r=e.size,a=e.rotation,o=e.pull,i=(Um(t={&quot;fa-beat &quot;:e.beat,&quot;fa-fade &quot;:e.fade,&quot;fa-beat-fade &quot;:e.beatFade,&quot;fa-bounce &quot;:e.bounce,&quot;fa-shake &quot;:e.shake,&quot;fa-flash &quot;:e.flash,&quot;fa-spin &quot;:e.spin,&quot;fa-spin-reverse &quot;:e.spinReverse,&quot;fa-spin-pulse &quot;:e.spinPulse,&quot;fa-pulse &quot;:e.pulse,&quot;fa-fw &quot;:e.fixedWidth,&quot;fa-inverse &quot;:e.inverse,&quot;fa-border &quot;:e.border,&quot;fa-li &quot;:e.listItem,&quot;fa-flip-horizontal &quot;:&quot;horizontal &quot;===n||&quot;both &quot;===n,&quot;fa-flip-vertical &quot;:&quot;vertical &quot;===n||&quot;both &quot;===n},&quot;fa-&quot;.concat(r),null!=r),Um(t,&quot;fa-rotate-&quot;.concat(a),null!=a &amp;&amp;0!==a),Um(t,&quot;fa-pull-&quot;.concat(o),null!=o),Um(t,&quot;fa-swap-opacity &quot;,e.swapOpacity),t);return Object.keys(i).map(function(e){return i[e]?e:null}).filter(function(e){return e})}(n)),Fm(o.split(&quot;&quot;)))),f=Ym(&quot;transform &quot;,&quot;string &quot;==typeof n.transform?Tm.transform(n.transform):n.transform),d=Ym(&quot;mask &quot;,Gm(r)),p=Nm(c,Mm(Mm(Mm(Mm({},u),f),d),{},{symbol:a,title:i,titleId:l,maskId:s}));if(!p)return function(){var e;!Wm &amp;&amp;console &amp;&amp;&quot;function &quot;==typeof console.error &amp;&amp;(e=console).error.apply(e,arguments)}(&quot;Could not find icon &quot;,c),null;var m=p.abstract,h={ref:t};return Object.keys(n).forEach(function(e){Xm.defaultProps.hasOwnProperty(e)||(h[e]=n[e])}),Km(m[0],h)}Xm.displayName=&quot;FontAwesomeIcon &quot;,Xm.propTypes={beat:Lm.bool,border:Lm.bool,bounce:Lm.bool,className:Lm.string,fade:Lm.bool,flash:Lm.bool,mask:Lm.oneOfType([Lm.object,Lm.array,Lm.string]),maskId:Lm.string,fixedWidth:Lm.bool,inverse:Lm.bool,flip:Lm.oneOf([&quot;horizontal &quot;,&quot;vertical &quot;,&quot;both &quot;]),icon:Lm.oneOfType([Lm.object,Lm.array,Lm.string]),listItem:Lm.bool,pull:Lm.oneOf([&quot;right &quot;,&quot;left &quot;]),pulse:Lm.bool,rotation:Lm.oneOf([0,90,180,270]),shake:Lm.bool,size:Lm.oneOf([&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;1x &quot;,&quot;2x &quot;,&quot;3x &quot;,&quot;4x &quot;,&quot;5x &quot;,&quot;6x &quot;,&quot;7x &quot;,&quot;8x &quot;,&quot;9x &quot;,&quot;10x &quot;]),spin:Lm.bool,spinPulse:Lm.bool,spinReverse:Lm.bool,symbol:Lm.oneOfType([Lm.bool,Lm.string]),title:Lm.string,titleId:Lm.string,transform:Lm.oneOfType([Lm.string,Lm.object]),swapOpacity:Lm.bool},Xm.defaultProps={border:!1,className:&quot;&quot;,mask:null,maskId:null,fixedWidth:!1,inverse:!1,flip:null,icon:null,listItem:!1,pull:null,pulse:!1,rotation:null,size:null,spin:!1,beat:!1,fade:!1,beatFade:!1,bounce:!1,shake:!1,symbol:!1,title:&quot;&quot;,titleId:null,transform:null,swapOpacity:!1};var Km=function e(t,n){var r=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{};if(&quot;string &quot;==typeof n)return n;var a=(n.children||[]).map(function(n){return e(t,n)}),o=Object.keys(n.attributes||{}).reduce(function(e,t){var r=n.attributes[t];switch(t){case &quot;class &quot;:e.attrs.className=r,delete n.attributes.class;break;case &quot;style &quot;:e.attrs.style=Vm(r);break;default:0===t.indexOf(&quot;aria-&quot;)||0===t.indexOf(&quot;data-&quot;)?e.attrs[t.toLowerCase()]=r:e.attrs[Hm(t)]=r}return e},{attrs:{}}),i=r.style,l=void 0===i?{}:i,s=jm(r,Bm);return o.attrs.style=Mm(Mm({},o.attrs.style),l),t.apply(void 0,[n.tag,Mm(Mm({},o.attrs),s)].concat(Fm(a)))}.bind(null,c.createElement),qm={prefix:&quot;fas &quot;,iconName:&quot;align-left &quot;,icon:[448,512,[],&quot;f036 &quot;,&quot;M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z &quot;]},Jm={prefix:&quot;fas &quot;,iconName:&quot;angle-down &quot;,icon:[384,512,[8964],&quot;f107 &quot;,&quot;M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z &quot;]},Qm={prefix:&quot;fas &quot;,iconName:&quot;bug &quot;,icon:[512,512,[],&quot;f188 &quot;,&quot;M352 96V99.56C352 115.3 339.3 128 323.6 128H188.4C172.7 128 159.1 115.3 159.1 99.56V96C159.1 42.98 202.1 0 255.1 0C309 0 352 42.98 352 96zM41.37 105.4C53.87 92.88 74.13 92.88 86.63 105.4L150.6 169.4C151.3 170 151.9 170.7 152.5 171.4C166.8 164.1 182.9 160 199.1 160H312C329.1 160 345.2 164.1 359.5 171.4C360.1 170.7 360.7 170 361.4 169.4L425.4 105.4C437.9 92.88 458.1 92.88 470.6 105.4C483.1 117.9 483.1 138.1 470.6 150.6L406.6 214.6C405.1 215.3 405.3 215.9 404.6 216.5C410.7 228.5 414.6 241.9 415.7 256H480C497.7 256 512 270.3 512 288C512 305.7 497.7 320 480 320H416C416 344.6 410.5 367.8 400.6 388.6C402.7 389.9 404.8 391.5 406.6 393.4L470.6 457.4C483.1 469.9 483.1 490.1 470.6 502.6C458.1 515.1 437.9 515.1 425.4 502.6L362.3 439.6C337.8 461.4 306.5 475.8 272 479.2V240C272 231.2 264.8 224 255.1 224C247.2 224 239.1 231.2 239.1 240V479.2C205.5 475.8 174.2 461.4 149.7 439.6L86.63 502.6C74.13 515.1 53.87 515.1 41.37 502.6C28.88 490.1 28.88 469.9 41.37 457.4L105.4 393.4C107.2 391.5 109.3 389.9 111.4 388.6C101.5 367.8 96 344.6 96 320H32C14.33 320 0 305.7 0 288C0 270.3 14.33 256 32 256H96.3C97.38 241.9 101.3 228.5 107.4 216.5C106.7 215.9 106 215.3 105.4 214.6L41.37 150.6C28.88 138.1 28.88 117.9 41.37 105.4H41.37z &quot;]},Zm={prefix:&quot;fas &quot;,iconName:&quot;circle-half-stroke &quot;,icon:[512,512,[9680,&quot;adjust &quot;],&quot;f042 &quot;,&quot;M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 64V448C362 448 448 362 448 256C448 149.1 362 64 256 64z &quot;]},eh={prefix:&quot;fas &quot;,iconName:&quot;expand &quot;,icon:[448,512,[],&quot;f065 &quot;,&quot;M128 32H32C14.31 32 0 46.31 0 64v96c0 17.69 14.31 32 32 32s32-14.31 32-32V96h64c17.69 0 32-14.31 32-32S145.7 32 128 32zM416 32h-96c-17.69 0-32 14.31-32 32s14.31 32 32 32h64v64c0 17.69 14.31 32 32 32s32-14.31 32-32V64C448 46.31 433.7 32 416 32zM128 416H64v-64c0-17.69-14.31-32-32-32s-32 14.31-32 32v96c0 17.69 14.31 32 32 32h96c17.69 0 32-14.31 32-32S145.7 416 128 416zM416 320c-17.69 0-32 14.31-32 32v64h-64c-17.69 0-32 14.31-32 32s14.31 32 32 32h96c17.69 0 32-14.31 32-32v-96C448 334.3 433.7 320 416 320z &quot;]},th={prefix:&quot;fas &quot;,iconName:&quot;gear &quot;,icon:[512,512,[9881,&quot;cog &quot;],&quot;f013 &quot;,&quot;M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z &quot;]},nh={prefix:&quot;fas &quot;,iconName:&quot;moon &quot;,icon:[512,512,[127769,9214],&quot;f186 &quot;,&quot;M32 256c0-123.8 100.3-224 223.8-224c11.36 0 29.7 1.668 40.9 3.746c9.616 1.777 11.75 14.63 3.279 19.44C245 86.5 211.2 144.6 211.2 207.8c0 109.7 99.71 193 208.3 172.3c9.561-1.805 16.28 9.324 10.11 16.95C387.9 448.6 324.8 480 255.8 480C132.1 480 32 379.6 32 256z &quot;]},rh={prefix:&quot;fas &quot;,iconName:&quot;share &quot;,icon:[512,512,[&quot;arrow-turn-right &quot;,&quot;mail-forward &quot;],&quot;f064 &quot;,&quot;M503.7 226.2l-176 151.1c-15.38 13.3-39.69 2.545-39.69-18.16V272.1C132.9 274.3 66.06 312.8 111.4 457.8c5.031 16.09-14.41 28.56-28.06 18.62C39.59 444.6 0 383.8 0 322.3c0-152.2 127.4-184.4 288-186.3V56.02c0-20.67 24.28-31.46 39.69-18.16l176 151.1C514.8 199.4 514.8 216.6 503.7 226.2z &quot;]},ah={prefix:&quot;fas &quot;,iconName:&quot;shield-halved &quot;,icon:[512,512,[&quot;shield-alt &quot;],&quot;f3ed &quot;,&quot;M256-.0078C260.7-.0081 265.2 1.008 269.4 2.913L457.7 82.79C479.7 92.12 496.2 113.8 496 139.1C495.5 239.2 454.7 420.7 282.4 503.2C265.7 511.1 246.3 511.1 229.6 503.2C57.25 420.7 16.49 239.2 15.1 139.1C15.87 113.8 32.32 92.12 54.3 82.79L242.7 2.913C246.8 1.008 251.4-.0081 256-.0078V-.0078zM256 444.8C393.1 378 431.1 230.1 432 141.4L256 66.77L256 444.8z &quot;]},oh={prefix:&quot;fas &quot;,iconName:&quot;sun &quot;,icon:[512,512,[9728],&quot;f185 &quot;,&quot;M256 159.1c-53.02 0-95.1 42.98-95.1 95.1S202.1 351.1 256 351.1s95.1-42.98 95.1-95.1S309 159.1 256 159.1zM509.3 347L446.1 255.1l63.15-91.01c6.332-9.125 1.104-21.74-9.826-23.72l-109-19.7l-19.7-109c-1.975-10.93-14.59-16.16-23.72-9.824L256 65.89L164.1 2.736c-9.125-6.332-21.74-1.107-23.72 9.824L121.6 121.6L12.56 141.3C1.633 143.2-3.596 155.9 2.736 164.1L65.89 256l-63.15 91.01c-6.332 9.125-1.105 21.74 9.824 23.72l109 19.7l19.7 109c1.975 10.93 14.59 16.16 23.72 9.824L256 446.1l91.01 63.15c9.127 6.334 21.75 1.107 23.72-9.822l19.7-109l109-19.7C510.4 368.8 515.6 356.1 509.3 347zM256 383.1c-70.69 0-127.1-57.31-127.1-127.1c0-70.69 57.31-127.1 127.1-127.1s127.1 57.3 127.1 127.1C383.1 326.7 326.7 383.1 256 383.1z &quot;]},ih={prefix:&quot;fas &quot;,iconName:&quot;up-right-from-square &quot;,icon:[512,512,[&quot;external-link-alt &quot;],&quot;f35d &quot;,&quot;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z &quot;]};function lh(e){var t=e.url,n=e.openText;return c.createElement(&quot;div &quot;,null,c.createElement(&quot;p &quot;,{className:&quot;text-sm mb-1 &quot;},e.helpText),c.createElement(&quot;div &quot;,{className:&quot;flex gap-3 &quot;},c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;underline ~text-violet-500 hover:~text-violet-600 &quot;},c.createElement(Xm,{icon:ih,className:&quot;opacity-50 text-xs mr-1 &quot;}),n),c.createElement(Rc,{alwaysVisible:!0,direction:&quot;left &quot;,value:t})))}function sh(e){var t=[];return e.includes(&quot;stackTrace &quot;)&amp;&amp;t.push(&quot;stackTraceTab &quot;),e.includes(&quot;context &quot;)&amp;&amp;t.push(&quot;requestTab &quot;,&quot;appTab &quot;,&quot;userTab &quot;,&quot;contextTab &quot;),e.includes(&quot;debug &quot;)&amp;&amp;t.push(&quot;debugTab &quot;),t}function ch(e,t){return t.includes(&quot;stackTrace &quot;)||(e.stacktrace=e.stacktrace.slice(0,1)),t.includes(&quot;debug &quot;)||(e.glows=[],e.context.dumps=[],e.context.queries=[],e.context.logs=[]),t.includes(&quot;context &quot;)||(e.context.request_data={queryString:{},body:{},files:[]},e.context.headers={},e.context.cookies={},e.context.session={},e.context.route=null,e.context.user=null,delete e.context.git,delete e.context.livewire,e.context.view=null),e}function uh(t){var n=t.isOpen,r=c.useContext(Bf),a=c.useState(null),o=a[0],i=a[1],l=c.useState(null),s=l[0],u=l[1],f=c.useState(!1),d=f[0],p=f[1],m=c.useState([{name:&quot;stackTrace &quot;,label:&quot;Stack &quot;,selected:!0},{name:&quot;context &quot;,label:&quot;Context &quot;,selected:!0},{name:&quot;debug &quot;,label:&quot;Debug &quot;,selected:!0}]),h=m[0],g=m[1];return c.createElement(&quot;div &quot;,{className:&quot;block absolute mt-2 top-10 left-1/2 transform -translate-x-6 transition-all duration-150 origin-top-left
                 &quot;+(n?&quot;&quot;:&quot;opacity-0 pointer-events-none scale-90 &quot;)},c.createElement(&quot;div &quot;,{className:&quot;flex px-4 justify-start &quot;},c.createElement(&quot;div &quot;,{className:&quot;w-0 h-0 border-[10px] border-t-0 border-transparent ~border-b-dropdown &quot;})),c.createElement(&quot;div &quot;,{className:&quot;flex flex-col gap-6 ~bg-dropdown px-10 py-8 shadow-2xl &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center justify-between gap-6 &quot;},c.createElement(&quot;h4 &quot;,{className:&quot;whitespace-nowrap font-semibold &quot;},&quot;Share with Flare &quot;),c.createElement(&quot;a &quot;,{className:&quot;text-xs ~text-gray-500 hover:text-violet-500 flex items-center underline transition-colors &quot;,href:&quot;https://flareapp.io/docs/ignition-for-laravel/sharing-errors &quot;,target:&quot;_blank &quot;},&quot;Docs &quot;,c.createElement(Ff,null))),!o &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;ul &quot;,{className:&quot;grid justify-start gap-3 &quot;},h.map(function(t){var n=t.name;return c.createElement(&quot;li &quot;,{key:n},c.createElement(Hf,{onChange:function(){return t=n,void(h.find(function(e){return e.name===t})&amp;&amp;g(h.map(function(n){return n.name===t?e({},n,{selected:!n.selected}):n})));var t},checked:t.selected,label:t.label}))})),c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-4 &quot;},c.createElement(Ac,{disabled:d||!h.some(function(e){return e.selected}),className:&quot;bg-violet-500 border-violet-500/25 CopyButton text-white &quot;,onClick:function(){try{var e=function(){p(!1)};if(!r.config.shareEndpoint)return Promise.resolve();u(null),p(!0);var t=h.filter(function(e){return e.selected}).map(function(e){return e.name}),n=function(e,n){try{var a=Promise.resolve(function(e,t){var n={tabs:sh(t),lineSelection:window.location.hash,report:ch(e.shareableReport,t)};return new Promise(function(t,r){try{var a=function(){r()},o=function(r,a){try{var o=Promise.resolve(fetch(e.config.shareEndpoint,{method:&quot;POST &quot;,body:JSON.stringify(n),headers:{&quot;Content-Type &quot;:&quot;application/json &quot;,Accept:&quot;application/json &quot;}})).then(function(e){return Promise.resolve(e.json()).then(function(e){e &amp;&amp;e.owner_url &amp;&amp;e.public_url &amp;&amp;t(e)})})}catch(e){return a(e)}return o &amp;&amp;o.then?o.then(void 0,a):o}(0,function(e){r(e)});return Promise.resolve(o &amp;&amp;o.then?o.then(a):a())}catch(e){return Promise.reject(e)}})}(r,t)).then(function(e){window.open(e.owner_url),i(e.public_url)})}catch(e){return n(e)}return a &amp;&amp;a.then?a.then(void 0,n):a}(0,function(e){console.error(e),u(&quot;Something went wrong while sharing, please try again.&quot;)});return Promise.resolve(n &amp;&amp;n.then?n.then(e):e())}catch(e){return Promise.reject(e)}}},c.createElement(Xm,{icon:ih,className:&quot;opacity-50 text-xs mr-1 &quot;}),&quot;Create Share &quot;))),o &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 gap-4 &quot;},c.createElement(lh,{url:o,helpText:&quot;Share your error with others &quot;,openText:&quot;Visit public share &quot;})),s &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;text-red-500 &quot;},s)))}function fh(t){var n,r=t.isOpen,a=c.useContext(Bf),o=c.useContext(Te),i=o.ignitionConfig,l=o.setIgnitionConfig,s=c.useState(i.editor||&quot;&quot;),u=s[0],f=s[1],d=c.useState(null),p=d[0],m=d[1],h=c.useState(!1),g=h[0],v=h[1],y=c.useState(!1),E=y[0],b=y[1],T=c.useState([{value:&quot;light &quot;,icon:c.createElement(Xm,{icon:oh,className:&quot;group-hover:text-amber-400 &quot;}),selected:&quot;light &quot;===i.theme},{value:&quot;dark &quot;,icon:c.createElement(Xm,{icon:nh,className:&quot;group-hover:text-amber-300 &quot;}),selected:&quot;dark &quot;===i.theme},{value:&quot;auto &quot;,icon:c.createElement(Xm,{icon:Zm,className:&quot;group-hover:text-indigo-500 &quot;}),selected:&quot;auto &quot;===i.theme}]),N=T[0],R=T[1];return c.createElement(&quot;div &quot;,{className:&quot;
                absolute mt-2 top-10 right-1/2 translate-x-6 transition-all duration-150 origin-top-right
                &quot;+(r?&quot;&quot;:&quot;opacity-0 pointer-events-none scale-90 &quot;)+&quot;
            &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex px-4 justify-end &quot;},c.createElement(&quot;div &quot;,{className:&quot;w-0 h-0 border-[10px] border-t-0 border-transparent ~border-b-dropdown &quot;})),c.createElement(&quot;div &quot;,{className:&quot;flex flex-col gap-6 ~bg-dropdown px-10 py-8 shadow-2xl &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center justify-between gap-6 &quot;},c.createElement(&quot;h4 &quot;,{className:&quot;whitespace-nowrap font-semibold &quot;},&quot;Ignition Settings &quot;),c.createElement(&quot;a &quot;,{className:&quot;text-xs ~text-gray-500 hover:text-red-500 flex items-center underline transition-colors &quot;,href:&quot;https://flareapp.io/ignition &quot;},&quot;Docs &quot;,c.createElement(zf,null))),c.createElement(&quot;label &quot;,{htmlFor:&quot;editor-select &quot;},c.createElement(&quot;span &quot;,{className:&quot;uppercase tracking-wider ~text-gray-500 text-xs font-bold &quot;},&quot;Editor &quot;),c.createElement(&quot;div &quot;,{className:&quot;group mt-2 &quot;},c.createElement(&quot;select &quot;,{id:&quot;editor-select &quot;,className:&quot;block appearance-none w-full ~bg-gray-500/5 h-12 px-4 pr-8 rounded-none leading-tight &quot;,value:u,onChange:function(t){return function(t){f(t),l(e({},i,{editor:t}))}(t.target.value)}},Object.entries(i.editorOptions).map(function(e){var t=e[0];return c.createElement(&quot;option &quot;,{className:&quot;text-gray-800 &quot;,key:t,value:t},e[1].label)})),c.createElement(&quot;div &quot;,{className:&quot;pointer-events-none absolute inset-y-0 right-0 flex items-center px-4 &quot;},c.createElement(Xm,{icon:Jm,className:&quot;group-hover:text-indigo-500 text-sm &quot;})))),c.createElement(&quot;div &quot;,null,c.createElement(&quot;span &quot;,{className:&quot;uppercase tracking-wider ~text-gray-500 text-xs font-bold &quot;},&quot;Theme &quot;),c.createElement(&quot;button &quot;,{className:&quot;mt-2 w-full ~bg-gray-500/5 rounded-none leading-tight &quot;,onClick:function(){var t=N.findIndex(function(e){return e.selected}),n=-1===t||t===N.length-1?0:t+1;m(N[t].value),R([].concat(N.map(function(e,t){return e.selected=t===n,e}))),l(e({},i,{theme:N[n].value}))}},c.createElement(&quot;div &quot;,{className:&quot;group flex items-center &quot;,style:{WebkitMaskImage:&quot;linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%)&quot;}},c.createElement(&quot;div &quot;,{className:&quot;px-4 &quot;},N.map(function(e){var t=e.value,n=e.selected;return c.createElement(&quot;div &quot;,{key:t,className:&quot;
                                        h-12 flex items-center origin-bottom
                                        &quot;+(n?&quot;transition-transform duration-1000 &quot;:&quot;&quot;)+&quot;
                                        &quot;+(t===p?&quot;transition-transform duration-1000 absolute top-0 left-4 rotate-180 &quot;:&quot;&quot;)+&quot;
                                        &quot;+(n||t===p?&quot;&quot;:&quot;absolute top-0 left-4 -rotate-180 &quot;)+&quot;
                                    &quot;},c.createElement(&quot;span &quot;,{className:&quot;text-sm ~text-gray-500 transition-colors duration-500 &quot;},e.icon))})),c.createElement(&quot;div &quot;,{id:&quot;theme-name &quot;,className:&quot;-ml-1 first-letter:uppercase &quot;},null==(n=N.find(function(e){return e.selected}))?void 0:n.value)))),c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-4 &quot;},c.createElement(Ac,{onClick:function(){try{return g?Promise.resolve():Promise.resolve(function(e,t){try{var n=function(e,t){try{var n=function(){var e;if(b(!1),v(!0),a.updateConfigEndpoint)return Promise.resolve(fetch(a.updateConfigEndpoint,{method:&quot;POST &quot;,headers:{&quot;Content-Type &quot;:&quot;application/json &quot;,Accept:&quot;application/json &quot;},body:JSON.stringify({editor:u,theme:null==(e=N.find(function(e){return e.selected}))?void 0:e.value,hide_solutions:!1})})).then(function(e){b(e.status &gt;=200 &amp;&amp;e.status &lt;300),setTimeout(function(){b(!1)},3e3)})}()}catch(e){return t(e)}return n &amp;&amp;n.then?n.then(void 0,t):n}(0,function(e){console.error(e),b(!1)})}catch(e){return t(!0,e)}return n &amp;&amp;n.then?n.then(t.bind(null,!1),t.bind(null,!0)):t(!1,n)}(0,function(e,t){if(v(!1),e)throw t;return t}))}catch(e){return Promise.reject(e)}},disabled:g,className:&quot;bg-red-500 border-red-500/25 text-white &quot;},&quot;Save settings &quot;),E &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;text-emerald-500 text-sm &quot;},&quot;Saved!&quot;)),c.createElement(&quot;p &quot;,{className:&quot;text-xs &quot;},&quot;Settings will be saved locally in &quot;,c.createElement(jf,null,&quot;~/.ignition.json &quot;),&quot;.&quot;)))}var dh={prefix:&quot;fab &quot;,iconName:&quot;laravel &quot;,icon:[512,512,[],&quot;f3bd &quot;,&quot;M504.4 115.8a5.72 5.72 0 0 0 -.28-.68 8.52 8.52 0 0 0 -.53-1.25 6 6 0 0 0 -.54-.71 9.36 9.36 0 0 0 -.72-.94c-.23-.22-.52-.4-.77-.6a8.84 8.84 0 0 0 -.9-.68L404.4 55.55a8 8 0 0 0 -8 0L300.1 111h0a8.07 8.07 0 0 0 -.88 .69 7.68 7.68 0 0 0 -.78 .6 8.23 8.23 0 0 0 -.72 .93c-.17 .24-.39 .45-.54 .71a9.7 9.7 0 0 0 -.52 1.25c-.08 .23-.21 .44-.28 .68a8.08 8.08 0 0 0 -.28 2.08V223.2l-80.22 46.19V63.44a7.8 7.8 0 0 0 -.28-2.09c-.06-.24-.2-.45-.28-.68a8.35 8.35 0 0 0 -.52-1.24c-.14-.26-.37-.47-.54-.72a9.36 9.36 0 0 0 -.72-.94 9.46 9.46 0 0 0 -.78-.6 9.8 9.8 0 0 0 -.88-.68h0L115.6 1.07a8 8 0 0 0 -8 0L11.34 56.49h0a6.52 6.52 0 0 0 -.88 .69 7.81 7.81 0 0 0 -.79 .6 8.15 8.15 0 0 0 -.71 .93c-.18 .25-.4 .46-.55 .72a7.88 7.88 0 0 0 -.51 1.24 6.46 6.46 0 0 0 -.29 .67 8.18 8.18 0 0 0 -.28 2.1v329.7a8 8 0 0 0 4 6.95l192.5 110.8a8.83 8.83 0 0 0 1.33 .54c.21 .08 .41 .2 .63 .26a7.92 7.92 0 0 0 4.1 0c.2-.05 .37-.16 .55-.22a8.6 8.6 0 0 0 1.4-.58L404.4 400.1a8 8 0 0 0 4-6.95V287.9l92.24-53.11a8 8 0 0 0 4-7V117.9A8.63 8.63 0 0 0 504.4 115.8zM111.6 17.28h0l80.19 46.15-80.2 46.18L31.41 63.44zm88.25 60V278.6l-46.53 26.79-33.69 19.4V123.5l46.53-26.79zm0 412.8L23.37 388.5V77.32L57.06 96.7l46.52 26.8V338.7a6.94 6.94 0 0 0 .12 .9 8 8 0 0 0 .16 1.18h0a5.92 5.92 0 0 0 .38 .9 6.38 6.38 0 0 0 .42 1v0a8.54 8.54 0 0 0 .6 .78 7.62 7.62 0 0 0 .66 .84l0 0c.23 .22 .52 .38 .77 .58a8.93 8.93 0 0 0 .86 .66l0 0 0 0 92.19 52.18zm8-106.2-80.06-45.32 84.09-48.41 92.26-53.11 80.13 46.13-58.8 33.56zm184.5 4.57L215.9 490.1V397.8L346.6 323.2l45.77-26.15zm0-119.1L358.7 250l-46.53-26.79V131.8l33.69 19.4L392.4 178zm8-105.3-80.2-46.17 80.2-46.16 80.18 46.15zm8 105.3V178L455 151.2l33.68-19.4v91.39h0z &quot;]},ph={prefix:&quot;fab &quot;,iconName:&quot;php &quot;,icon:[640,512,[],&quot;f457 &quot;,&quot;M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z &quot;]},mh=&quot;object &quot;==typeof t &amp;&amp;t &amp;&amp;t.Object===Object &amp;&amp;t,hh=&quot;object &quot;==typeof self &amp;&amp;self &amp;&amp;self.Object===Object &amp;&amp;self,gh=mh||hh||Function(&quot;return this &quot;)(),vh=gh.Symbol,yh=Object.prototype,Eh=yh.hasOwnProperty,bh=yh.toString,Th=vh?vh.toStringTag:void 0,Nh=Object.prototype.toString,Rh=vh?vh.toStringTag:void 0,Sh=function(e){return null==e?void 0===e?&quot;[object Undefined]&quot;:&quot;[object Null]&quot;:Rh &amp;&amp;Rh in Object(e)?function(e){var t=Eh.call(e,Th),n=e[Th];try{e[Th]=void 0;var r=!0}catch(e){}var a=bh.call(e);return r &amp;&amp;(t?e[Th]=n:delete e[Th]),a}(e):function(e){return Nh.call(e)}(e)},wh=function(e){var t=typeof e;return null!=e &amp;&amp;(&quot;object &quot;==t||&quot;function &quot;==t)},Oh=function(e){if(!wh(e))return!1;var t=Sh(e);return &quot;[object Function]&quot;==t||&quot;[object GeneratorFunction]&quot;==t||&quot;[object AsyncFunction]&quot;==t||&quot;[object Proxy]&quot;==t},Ch=gh[&quot;__core-js_shared__ &quot;],Ah=function(){var e=/[^.]+$/.exec(Ch &amp;&amp;Ch.keys &amp;&amp;Ch.keys.IE_PROTO||&quot;&quot;);return e?&quot;Symbol(src)_1.&quot;+e:&quot;&quot;}(),Ih=Function.prototype.toString,kh=function(e){if(null!=e){try{return Ih.call(e)}catch(e){}try{return e+&quot;&quot;}catch(e){}}return &quot;&quot;},xh=/^\[object .+?Constructor\]$/,_h=RegExp(&quot;^&quot;+Function.prototype.toString.call(Object.prototype.hasOwnProperty).replace(/[\^$.*+?()[\]{}|]/g,&quot;\$ &amp;&quot;).replace(/hasOwnProperty|(function).*?(?=\\()| for .+?(?=\\])/g,&quot;$1.*?&quot;)+&quot;$ &quot;),Lh=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return function(e){return!(!wh(e)||function(e){return!!Ah &amp;&amp;Ah in e}(e))&amp;&amp;(Oh(e)?_h:xh).test(kh(e))}(n)?n:void 0},Ph=function(){try{var e=Lh(Object,&quot;defineProperty &quot;);return e({},&quot;&quot;,{}),e}catch(e){}}(),Mh=function(e,t,n){&quot;__proto__ &quot;==t &amp;&amp;Ph?Ph(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n},Dh=function(e){return null!=e &amp;&amp;&quot;object &quot;==typeof e},Uh=function(e){return Dh(e)&amp;&amp;&quot;[object Arguments]&quot;==Sh(e)},jh=Object.prototype,Fh=jh.hasOwnProperty,zh=jh.propertyIsEnumerable,Hh=Uh(function(){return arguments}())?Uh:function(e){return Dh(e)&amp;&amp;Fh.call(e,&quot;callee &quot;)&amp;&amp;!zh.call(e,&quot;callee &quot;)},Bh=Array.isArray,Vh=function(){return!1},Wh=n(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n?gh.Buffer:void 0;e.exports=(a?a.isBuffer:void 0)||Vh}),Gh=/^(?:0|[1-9]\d*)$/,Yh=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&amp;&amp;(&quot;number &quot;==n||&quot;symbol &quot;!=n &amp;&amp;Gh.test(e))&amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;t},$h=function(e){return &quot;number &quot;==typeof e &amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;=9007199254740991},Xh={};Xh[&quot;[object Float32Array]&quot;]=Xh[&quot;[object Float64Array]&quot;]=Xh[&quot;[object Int8Array]&quot;]=Xh[&quot;[object Int16Array]&quot;]=Xh[&quot;[object Int32Array]&quot;]=Xh[&quot;[object Uint8Array]&quot;]=Xh[&quot;[object Uint8ClampedArray]&quot;]=Xh[&quot;[object Uint16Array]&quot;]=Xh[&quot;[object Uint32Array]&quot;]=!0,Xh[&quot;[object Arguments]&quot;]=Xh[&quot;[object Array]&quot;]=Xh[&quot;[object ArrayBuffer]&quot;]=Xh[&quot;[object Boolean]&quot;]=Xh[&quot;[object DataView]&quot;]=Xh[&quot;[object Date]&quot;]=Xh[&quot;[object Error]&quot;]=Xh[&quot;[object Function]&quot;]=Xh[&quot;[object Map]&quot;]=Xh[&quot;[object Number]&quot;]=Xh[&quot;[object Object]&quot;]=Xh[&quot;[object RegExp]&quot;]=Xh[&quot;[object Set]&quot;]=Xh[&quot;[object String]&quot;]=Xh[&quot;[object WeakMap]&quot;]=!1;var Kh=n(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n &amp;&amp;mh.process,o=function(){try{return r &amp;&amp;r.require &amp;&amp;r.require(&quot;util &quot;).types||a &amp;&amp;a.binding &amp;&amp;a.binding(&quot;util &quot;)}catch(e){}}();e.exports=o}),qh=Kh &amp;&amp;Kh.isTypedArray,Jh=qh?function(e){return function(t){return e(t)}}(qh):function(e){return Dh(e)&amp;&amp;$h(e.length)&amp;&amp;!!Xh[Sh(e)]},Qh=Object.prototype.hasOwnProperty,Zh=Object.prototype,eg=function(e,t){return function(n){return e(t(n))}}(Object.keys,Object),tg=Object.prototype.hasOwnProperty,ng=function(e){return null!=e &amp;&amp;$h(e.length)&amp;&amp;!Oh(e)},rg=function(e){return ng(e)?function(e,t){var n=Bh(e),r=!n &amp;&amp;Hh(e),a=!n &amp;&amp;!r &amp;&amp;Wh(e),o=!n &amp;&amp;!r &amp;&amp;!a &amp;&amp;Jh(e),i=n||r||a||o,l=i?function(e,t){for(var n=-1,r=Array(e);++n &lt;e;)r[n]=t(n);return r}(e.length,String):[],s=l.length;for(var c in e)!Qh.call(e,c)||i &amp;&amp;(&quot;length &quot;==c||a &amp;&amp;(&quot;offset &quot;==c||&quot;parent &quot;==c)||o &amp;&amp;(&quot;buffer &quot;==c||&quot;byteLength &quot;==c||&quot;byteOffset &quot;==c)||Yh(c,s))||l.push(c);return l}(e):function(e){if((t=e)!==(&quot;function &quot;==typeof(n=t &amp;&amp;t.constructor)&amp;&amp;n.prototype||Zh))return eg(e);var t,n,r=[];for(var a in Object(e))tg.call(e,a)&amp;&amp;&quot;constructor &quot;!=a &amp;&amp;r.push(a);return r}(e)},ag=function(e,t){return e &amp;&amp;function(e,t,n){for(var r=-1,a=Object(e),o=n(e),i=o.length;i--;){var l=o[++r];if(!1===t(a[l],l,a))break}return e}(e,t,rg)},og=function(e,t){return e===t||e!=e &amp;&amp;t!=t},ig=function(e,t){for(var n=e.length;n--;)if(og(e[n][0],t))return n;return-1},lg=Array.prototype.splice;function sg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}sg.prototype.clear=function(){this.__data__=[],this.size=0},sg.prototype.delete=function(e){var t=this.__data__,n=ig(t,e);return!(n &lt;0||(n==t.length-1?t.pop():lg.call(t,n,1),--this.size,0))},sg.prototype.get=function(e){var t=this.__data__,n=ig(t,e);return n &lt;0?void 0:t[n][1]},sg.prototype.has=function(e){return ig(this.__data__,e)&gt;-1},sg.prototype.set=function(e,t){var n=this.__data__,r=ig(n,e);return r &lt;0?(++this.size,n.push([e,t])):n[r][1]=t,this};var cg=sg,ug=Lh(gh,&quot;Map &quot;),fg=Lh(Object,&quot;create &quot;),dg=Object.prototype.hasOwnProperty,pg=Object.prototype.hasOwnProperty;function mg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}mg.prototype.clear=function(){this.__data__=fg?fg(null):{},this.size=0},mg.prototype.delete=function(e){var t=this.has(e)&amp;&amp;delete this.__data__[e];return this.size-=t?1:0,t},mg.prototype.get=function(e){var t=this.__data__;if(fg){var n=t[e];return &quot;__lodash_hash_undefined__ &quot;===n?void 0:n}return dg.call(t,e)?t[e]:void 0},mg.prototype.has=function(e){var t=this.__data__;return fg?void 0!==t[e]:pg.call(t,e)},mg.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=fg &amp;&amp;void 0===t?&quot;__lodash_hash_undefined__ &quot;:t,this};var hg=mg,gg=function(e,t){var n,r,a=e.__data__;return(&quot;string &quot;==(r=typeof(n=t))||&quot;number &quot;==r||&quot;symbol &quot;==r||&quot;boolean &quot;==r?&quot;__proto__ &quot;!==n:null===n)?a[&quot;string &quot;==typeof t?&quot;string &quot;:&quot;hash &quot;]:a.map};function vg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}vg.prototype.clear=function(){this.size=0,this.__data__={hash:new hg,map:new(ug||cg),string:new hg}},vg.prototype.delete=function(e){var t=gg(this,e).delete(e);return this.size-=t?1:0,t},vg.prototype.get=function(e){return gg(this,e).get(e)},vg.prototype.has=function(e){return gg(this,e).has(e)},vg.prototype.set=function(e,t){var n=gg(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};var yg=vg;function Eg(e){var t=this.__data__=new cg(e);this.size=t.size}Eg.prototype.clear=function(){this.__data__=new cg,this.size=0},Eg.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Eg.prototype.get=function(e){return this.__data__.get(e)},Eg.prototype.has=function(e){return this.__data__.has(e)},Eg.prototype.set=function(e,t){var n=this.__data__;if(n instanceof cg){var r=n.__data__;if(!ug||r.length &lt;199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new yg(r)}return n.set(e,t),this.size=n.size,this};var bg=Eg;function Tg(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new yg;++t &lt;n;)this.add(e[t])}Tg.prototype.add=Tg.prototype.push=function(e){return this.__data__.set(e,&quot;__lodash_hash_undefined__ &quot;),this},Tg.prototype.has=function(e){return this.__data__.has(e)};var Ng=Tg,Rg=function(e,t){for(var n=-1,r=null==e?0:e.length;++n &lt;r;)if(t(e[n],n,e))return!0;return!1},Sg=function(e,t){return e.has(t)},wg=function(e,t,n,r,a,o){var i=1 &amp;n,l=e.length,s=t.length;if(l!=s &amp;&amp;!(i &amp;&amp;s &gt;l))return!1;var c=o.get(e),u=o.get(t);if(c &amp;&amp;u)return c==t &amp;&amp;u==e;var f=-1,d=!0,p=2 &amp;n?new Ng:void 0;for(o.set(e,t),o.set(t,e);++f &lt;l;){var m=e[f],h=t[f];if(r)var g=i?r(h,m,f,t,e,o):r(m,h,f,e,t,o);if(void 0!==g){if(g)continue;d=!1;break}if(p){if(!Rg(t,function(e,t){if(!Sg(p,t)&amp;&amp;(m===e||a(m,e,n,r,o)))return p.push(t)})){d=!1;break}}else if(m!==h &amp;&amp;!a(m,h,n,r,o)){d=!1;break}}return o.delete(e),o.delete(t),d},Og=gh.Uint8Array,Cg=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n},Ag=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n},Ig=vh?vh.prototype:void 0,kg=Ig?Ig.valueOf:void 0,xg=Object.prototype.propertyIsEnumerable,_g=Object.getOwnPropertySymbols,Lg=_g?function(e){return null==e?[]:(e=Object(e),function(t,n){for(var r=-1,a=null==t?0:t.length,o=0,i=[];++r &lt;a;){var l=t[r];xg.call(e,l)&amp;&amp;(i[o++]=l)}return i}(_g(e)))}:function(){return[]},Pg=function(e){return function(e,t,n){var r=rg(e);return Bh(e)?r:function(e,t){for(var n=-1,r=t.length,a=e.length;++n &lt;r;)e[a+n]=t[n];return e}(r,n(e))}(e,0,Lg)},Mg=Object.prototype.hasOwnProperty,Dg=Lh(gh,&quot;DataView &quot;),Ug=Lh(gh,&quot;Promise &quot;),jg=Lh(gh,&quot;Set &quot;),Fg=Lh(gh,&quot;WeakMap &quot;),zg=kh(Dg),Hg=kh(ug),Bg=kh(Ug),Vg=kh(jg),Wg=kh(Fg),Gg=Sh;(Dg &amp;&amp;&quot;[object DataView]&quot;!=Gg(new Dg(new ArrayBuffer(1)))||ug &amp;&amp;&quot;[object Map]&quot;!=Gg(new ug)||Ug &amp;&amp;&quot;[object Promise]&quot;!=Gg(Ug.resolve())||jg &amp;&amp;&quot;[object Set]&quot;!=Gg(new jg)||Fg &amp;&amp;&quot;[object WeakMap]&quot;!=Gg(new Fg))&amp;&amp;(Gg=function(e){var t=Sh(e),n=&quot;[object Object]&quot;==t?e.constructor:void 0,r=n?kh(n):&quot;&quot;;if(r)switch(r){case zg:return &quot;[object DataView]&quot;;case Hg:return &quot;[object Map]&quot;;case Bg:return &quot;[object Promise]&quot;;case Vg:return &quot;[object Set]&quot;;case Wg:return &quot;[object WeakMap]&quot;}return t});var Yg=Gg,$g=&quot;[object Object]&quot;,Xg=Object.prototype.hasOwnProperty,Kg=function e(t,n,r,a,o){return t===n||(null==t||null==n||!Dh(t)&amp;&amp;!Dh(n)?t!=t &amp;&amp;n!=n:function(e,t,n,r,a,o){var i=Bh(e),l=Bh(t),s=i?&quot;[object Array]&quot;:Yg(e),c=l?&quot;[object Array]&quot;:Yg(t),u=(s=&quot;[object Arguments]&quot;==s?$g:s)==$g,f=(c=&quot;[object Arguments]&quot;==c?$g:c)==$g,d=s==c;if(d &amp;&amp;Wh(e)){if(!Wh(t))return!1;i=!0,u=!1}if(d &amp;&amp;!u)return o||(o=new bg),i||Jh(e)?wg(e,t,n,r,a,o):function(e,t,n,r,a,o,i){switch(n){case &quot;[object DataView]&quot;:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case &quot;[object ArrayBuffer]&quot;:return!(e.byteLength!=t.byteLength||!o(new Og(e),new Og(t)));case &quot;[object Boolean]&quot;:case &quot;[object Date]&quot;:case &quot;[object Number]&quot;:return og(+e,+t);case &quot;[object Error]&quot;:return e.name==t.name &amp;&amp;e.message==t.message;case &quot;[object RegExp]&quot;:case &quot;[object String]&quot;:return e==t+&quot;&quot;;case &quot;[object Map]&quot;:var l=Cg;case &quot;[object Set]&quot;:if(l||(l=Ag),e.size!=t.size &amp;&amp;!(1 &amp;r))return!1;var s=i.get(e);if(s)return s==t;r|=2,i.set(e,t);var c=wg(l(e),l(t),r,a,o,i);return i.delete(e),c;case &quot;[object Symbol]&quot;:if(kg)return kg.call(e)==kg.call(t)}return!1}(e,t,s,n,r,a,o);if(!(1 &amp;n)){var p=u &amp;&amp;Xg.call(e,&quot;__wrapped__ &quot;),m=f &amp;&amp;Xg.call(t,&quot;__wrapped__ &quot;);if(p||m){var h=p?e.value():e,g=m?t.value():t;return o||(o=new bg),a(h,g,n,r,o)}}return!!d &amp;&amp;(o||(o=new bg),function(e,t,n,r,a,o){var i=1 &amp;n,l=Pg(e),s=l.length;if(s!=Pg(t).length &amp;&amp;!i)return!1;for(var c=s;c--;){var u=l[c];if(!(i?u in t:Mg.call(t,u)))return!1}var f=o.get(e),d=o.get(t);if(f &amp;&amp;d)return f==t &amp;&amp;d==e;var p=!0;o.set(e,t),o.set(t,e);for(var m=i;++c &lt;s;){var h=e[u=l[c]],g=t[u];if(r)var v=i?r(g,h,u,t,e,o):r(h,g,u,e,t,o);if(!(void 0===v?h===g||a(h,g,n,r,o):v)){p=!1;break}m||(m=&quot;constructor &quot;==u)}if(p &amp;&amp;!m){var y=e.constructor,E=t.constructor;y==E||!(&quot;constructor &quot;in e)||!(&quot;constructor &quot;in t)||&quot;function &quot;==typeof y &amp;&amp;y instanceof y &amp;&amp;&quot;function &quot;==typeof E &amp;&amp;E instanceof E||(p=!1)}return o.delete(e),o.delete(t),p}(e,t,n,r,a,o))}(t,n,r,a,e,o))},qg=function(e){return e==e &amp;&amp;!wh(e)},Jg=function(e,t){return function(n){return null!=n &amp;&amp;n[e]===t &amp;&amp;(void 0!==t||e in Object(n))}},Qg=function(e){return &quot;symbol &quot;==typeof e||Dh(e)&amp;&amp;&quot;[object Symbol]&quot;==Sh(e)},Zg=/\.|\[(?:[^[\]]*|([&quot;&#039;])(?:(?!)[^\]|\.)*?)\]/,ev=/^\w*$/,tv=function(e,t){if(Bh(e))return!1;var n=typeof e;return!(&quot;number &quot;!=n &amp;&amp;&quot;symbol &quot;!=n &amp;&amp;&quot;boolean &quot;!=n &amp;&amp;null!=e &amp;&amp;!Qg(e))||ev.test(e)||!Zg.test(e)||null!=t &amp;&amp;e in Object(t)};function nv(e,t){if(&quot;function &quot;!=typeof e||null!=t &amp;&amp;&quot;function &quot;!=typeof t)throw new TypeError(&quot;Expected a function &quot;);var n=function(){var r=arguments,a=t?t.apply(this,r):r[0],o=n.cache;if(o.has(a))return o.get(a);var i=e.apply(this,r);return n.cache=o.set(a,i)||o,i};return n.cache=new(nv.Cache||yg),n}nv.Cache=yg;var rv,av,ov=nv,iv=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|([&quot;&#039;])((?:(?!)[^\]|\.)*?))\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,lv=/\(\)?/g,sv=function(e){var t=ov(function(e){var t=[];return 46===e.charCodeAt(0)&amp;&amp;t.push(&quot;&quot;),e.replace(iv,function(e,n,r,a){t.push(r?a.replace(lv,&quot;$1 &quot;):n||e)}),t},function(e){return 500===n.size &amp;&amp;n.clear(),e}),n=t.cache;return t}(),cv=vh?vh.prototype:void 0,uv=cv?cv.toString:void 0,fv=function e(t){if(&quot;string &quot;==typeof t)return t;if(Bh(t))return function(e,t){for(var n=-1,r=null==e?0:e.length,a=Array(r);++n &lt;r;)a[n]=t(e[n],n,e);return a}(t,e)+&quot;&quot;;if(Qg(t))return uv?uv.call(t):&quot;&quot;;var n=t+&quot;&quot;;return &quot;0 &quot;==n &amp;&amp;1/t==-Infinity?&quot;-0 &quot;:n},dv=function(e,t){return Bh(e)?e:tv(e,t)?[e]:sv(function(e){return null==e?&quot;&quot;:fv(e)}(e))},pv=function(e){if(&quot;string &quot;==typeof e||Qg(e))return e;var t=e+&quot;&quot;;return &quot;0 &quot;==t &amp;&amp;1/e==-Infinity?&quot;-0 &quot;:t},mv=function(e,t){for(var n=0,r=(t=dv(t,e)).length;null!=e &amp;&amp;n &lt;r;)e=e[pv(t[n++])];return n &amp;&amp;n==r?e:void 0},hv=function(e,t){return null!=e &amp;&amp;t in Object(e)},gv=function(e){return e},vv=function(e){return &quot;function &quot;==typeof e?e:null==e?gv:&quot;object &quot;==typeof e?Bh(e)?function(e,t){return tv(e)&amp;&amp;qg(t)?Jg(pv(e),t):function(n){var r=function(e,t,n){var r=null==e?void 0:mv(e,t);return void 0===r?void 0:r}(n,e);return void 0===r &amp;&amp;r===t?function(e,t){return null!=e &amp;&amp;function(e,t,n){for(var r=-1,a=(t=dv(t,e)).length,o=!1;++r &lt;a;){var i=pv(t[r]);if(!(o=null!=e &amp;&amp;n(e,i)))break;e=e[i]}return o||++r!=a?o:!!(a=null==e?0:e.length)&amp;&amp;$h(a)&amp;&amp;Yh(i,a)&amp;&amp;(Bh(e)||Hh(e))}(e,t,hv)}(n,e):Kg(t,r,3)}}(e[0],e[1]):function(e){var t=function(e){for(var t=rg(e),n=t.length;n--;){var r=t[n],a=e[r];t[n]=[r,a,qg(a)]}return t}(e);return 1==t.length &amp;&amp;t[0][2]?Jg(t[0][0],t[0][1]):function(n){return n===e||function(e,t,n,r){var a=n.length,o=a;if(null==e)return!o;for(e=Object(e);a--;){var i=n[a];if(i[2]?i[1]!==e[i[0]]:!(i[0]in e))return!1}for(;++a &lt;o;){var l=(i=n[a])[0],s=e[l],c=i[1];if(i[2]){if(void 0===s &amp;&amp;!(l in e))return!1}else{var u=new bg;if(!Kg(c,s,3,void 0,u))return!1}}return!0}(n,0,t)}}(e):tv(t=e)?(n=pv(t),function(e){return null==e?void 0:e[n]}):function(e){return function(t){return mv(t,e)}}(t);var t,n},yv=function(e,t){var n={};return t=vv(t),ag(e,function(e,r,a){Mh(n,r,t(e,r,a))}),n},Ev=function(e,t,n,r){for(var a=-1,o=null==e?0:e.length;++a &lt;o;){var i=e[a];t(r,i,n(i),e)}return r},bv=(rv=ag,function(e,t){if(null==e)return e;if(!ng(e))return rv(e,t);for(var n=e.length,r=-1,a=Object(e);++r &lt;n &amp;&amp;!1!==t(a[r],r,a););return e}),Tv=function(e,t,n,r){return bv(e,function(e,a,o){t(r,e,n(e),o)}),r},Nv=(av=function(e,t,n){Mh(e,n,t)},function(e,t){return(Bh(e)?Ev:Tv)(e,av,vv(t),{})});function Rv(e,t){c.useEffect(function(){function n(n){e.current &amp;&amp;!e.current.contains(n.target)&amp;&amp;t()}return document.addEventListener(&quot;click &quot;,n),function(){document.removeEventListener(&quot;click &quot;,n)}},[])}function Sv(e){var t,n=e.showException,r=c.useContext(Ee),a=c.useState(!1),o=a[0],i=a[1],l=c.useState(!1),s=l[0],u=l[1],f=function(e){var t=c.useState(window.pageYOffset),n=t[0],r=t[1];return c.useEffect(function(){var e=function(){r(window.pageYOffset)};return window.addEventListener(&quot;scroll &quot;,e),function(){return window.removeEventListener(&quot;scroll &quot;,e)}},[]),n &gt;=10}(),d=c.useContext(Te).ignitionConfig,p=c.useRef(null),m=c.useRef(null);Rv(p,function(){return i(!1)}),Rv(m,function(){return u(!1)});var h=yv(Nv(r.context_items.env||[],&quot;name &quot;),&quot;value &quot;),g=&quot;local &quot;!==h.app_env &amp;&amp;h.app_debug,v=function(e){var t;if(null!=(t=e.context_items.env)&amp;&amp;t.laravel_version){var n=e.documentation_links.find(function(e){return e.startsWith(&quot;https://laravel.com/&quot;)});return n?{type:&quot;laravel &quot;,url:n,tailored:!0}:{type:&quot;laravel &quot;,url:&quot;https://laravel.com/docs/&quot;,tailored:!1}}var r=e.documentation_links.find(function(e){return e.startsWith(&quot;https://php.net/&quot;)});return r?{type:&quot;php &quot;,url:r,tailored:!0}:{type:&quot;generic &quot;,url:&quot;https://php.net/docs &quot;,tailored:!1}}(r);return c.createElement(&quot;nav &quot;,{className:&quot;z-50 fixed top-0 h-20 w-full &quot;},c.createElement(&quot;div &quot;,null,c.createElement(&quot;div &quot;,{className:&quot;
                        &quot;+(f?&quot;~bg-gray-100 &quot;:&quot;~bg-body &quot;)+&quot;
                        z-10 transform translate-x-0 transition-color duration-100
                    &quot;},c.createElement(&quot;div &quot;,{className:&quot;h-10 flex justify-between px-6 lg:px-10 mx-auto max-w-4xl lg:max-w-[90rem]&quot;},c.createElement(&quot;ul &quot;,{className:&quot;-ml-3 sm:-ml-5 grid grid-flow-col justify-start items-center &quot;},c.createElement(ye,{name:&quot;stack &quot;,icon:c.createElement(Xm,{icon:qm})}),c.createElement(ye,{name:&quot;context &quot;,icon:c.createElement(Xm,{icon:eh})}),Nc(r)&amp;&amp;c.createElement(ye,{name:&quot;debug &quot;,icon:c.createElement(Xm,{icon:Qm}),important:!(null==(t=r.context_items.dumps)||!t.length)}),d.enableShareButton &amp;&amp;c.createElement(ye,{navRef:p,name:&quot;share &quot;,icon:c.createElement(Xm,{icon:rh}),onClick:function(){i(!o)}},c.createElement(uh,{isOpen:o}))),c.createElement(&quot;ul &quot;,{className:&quot;-mr-3 sm:-mr-5 grid grid-flow-col justify-end items-center &quot;},v &amp;&amp;c.createElement(ye,{name:&quot;docs &quot;,href:v.url,icon:c.createElement(Xm,{className:&quot;text-sm &quot;,icon:&quot;laravel &quot;===v.type?dh:ph}),iconOpacity:&quot;opacity-80 &quot;,important:v.tailored}),c.createElement(ye,{navRef:m,name:&quot;settings &quot;,icon:c.createElement(Xm,{className:&quot;text-sm &quot;,icon:th}),iconOpacity:&quot;opacity-80 &quot;,label:!1,onClick:function(){u(!s)}},c.createElement(fh,{isOpen:s}))))),c.createElement(&quot;div &quot;,{className:&quot;
                        &quot;+(f?&quot;shadow-lg &quot;:&quot;&quot;)+&quot;
                        &quot;+(n?&quot;translate-y-10 ~bg-gray-100 &quot;:&quot;translate-y-0 ~bg-body &quot;)+&quot;
                        absolute top-0 left-0 w-full
                        ~bg-gray-100 border-b ~border-gray-200
                        transform
                        transition-animation
                        duration-300
                    &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center px-6 lg:px-10 mx-auto max-w-4xl lg:max-w-[90rem] h-10 border-t ~border-gray-200 &quot;},c.createElement(&quot;a &quot;,{href:&quot;#top &quot;,className:&quot;min-w-0 inline-flex items-center justify-start gap-2 &quot;},g &amp;&amp;c.createElement(Xm,{title:&quot;You have a security issue &quot;,icon:ah,className:&quot;text-red-500 &quot;}),c.createElement(&quot;div &quot;,{className:&quot;font-semibold min-w-0 truncate hover:text-red-500 &quot;},r.exception_message))))))}var wv=new Map,Ov=new WeakMap,Cv=0;function Av(e){var t=void 0===e?{}:e,n=t.threshold,r=t.delay,a=t.trackVisibility,o=t.rootMargin,i=t.root,l=t.triggerOnce,s=t.skip,u=t.initialInView,f=t.fallbackInView,d=c.useRef(),p=c.useState({inView:!!u}),m=p[0],h=p[1],g=c.useCallback(function(e){void 0!==d.current &amp;&amp;(d.current(),d.current=void 0),s||e &amp;&amp;(d.current=function(e,t,n,r){if(void 0===n &amp;&amp;(n={}),void 0===r &amp;&amp;(r=void 0),void 0===window.IntersectionObserver &amp;&amp;void 0!==r){var a=e.getBoundingClientRect();return t(r,{isIntersecting:r,target:e,intersectionRatio:&quot;number &quot;==typeof n.threshold?n.threshold:0,time:0,boundingClientRect:a,intersectionRect:a,rootBounds:a}),function(){}}var o=function(e){var t=function(e){return Object.keys(e).sort().filter(function(t){return void 0!==e[t]}).map(function(t){return t+&quot;_ &quot;+(&quot;root &quot;===t?(n=e.root)?(Ov.has(n)||Ov.set(n,(Cv+=1).toString()),Ov.get(n)):&quot;0 &quot;:e[t]);var n}).toString()}(e),n=wv.get(t);if(!n){var r,a=new Map,o=new IntersectionObserver(function(t){t.forEach(function(t){var n,o=t.isIntersecting &amp;&amp;r.some(function(e){return t.intersectionRatio &gt;=e});e.trackVisibility &amp;&amp;void 0===t.isVisible &amp;&amp;(t.isVisible=o),null==(n=a.get(t.target))||n.forEach(function(e){e(o,t)})})},e);r=o.thresholds||(Array.isArray(e.threshold)?e.threshold:[e.threshold||0]),wv.set(t,n={id:t,observer:o,elements:a})}return n}(n),i=o.id,l=o.observer,s=o.elements,c=s.get(e)||[];return s.has(e)||s.set(e,c),c.push(t),l.observe(e),function(){c.splice(c.indexOf(t),1),0===c.length &amp;&amp;(s.delete(e),l.unobserve(e)),0===s.size &amp;&amp;(l.disconnect(),wv.delete(i))}}(e,function(e,t){h({inView:e,entry:t}),t.isIntersecting &amp;&amp;l &amp;&amp;d.current &amp;&amp;(d.current(),d.current=void 0)},{root:i,rootMargin:o,threshold:n,trackVisibility:a,delay:r},f))},[Array.isArray(n)?n.toString():n,i,o,l,s,a,f,r]);c.useEffect(function(){d.current||!m.entry||l||s||h({inView:!!u})});var v=[g,m.inView,m.entry];return v.ref=v[0],v.inView=v[1],v.entry=v[2],v}function Iv(e){var t,n,r,a,o,i=e.children,l=e.className,s=void 0===l?&quot;&quot;:l,u=e.name,f=(t=u,n=c.useContext(ge).setInView,a=(r=Av({rootMargin:&quot;-40% 0px -40%&quot;})).ref,c.useEffect(function(){n(o?function(e){return[].concat(e,[t])}:function(e){return e.filter(function(e){return e!==t})})},[o=r.inView]),a);return c.createElement(&quot;section &quot;,{ref:f,className:s},c.createElement(&quot;a &quot;,{id:u,className:&quot;scroll-target &quot;}),i)}function kv(){var e=c.useContext(Ee),t=yv(Nv(e.context_items.env||[],&quot;name &quot;),&quot;value &quot;);return &quot;local &quot;!==t.app_env &amp;&amp;t.app_debug?c.createElement(&quot;section &quot;,{className:&quot;lg:flex items-stretch ~bg-white shadow-lg &quot;},c.createElement(&quot;div &quot;,{className:&quot;lg:w-1/3 flex-none flex items-center min-w-0 px-6 sm:px-10 py-8 bg-red-500 text-red-50 &quot;},c.createElement(&quot;h2 &quot;,{className:&quot;min-w-0 truncate text-xl font-semibold leading-snug &quot;},c.createElement(&quot;code &quot;,{className:&quot;mr-0.5 &quot;},&quot;APP_DEBUG &quot;),&quot;is set to &quot;,c.createElement(&quot;code &quot;,{className:&quot;mx-0.5 &quot;},&quot;true &quot;),&quot;while &quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;code &quot;,{className:&quot;mr-0.5 &quot;},&quot;APP_ENV &quot;),&quot;is not &quot;,c.createElement(&quot;code &quot;,{className:&quot;mx-0.5 &quot;},&quot;local &quot;))),c.createElement(&quot;div &quot;,{className:&quot;flex-grow px-6 sm:px-10 py-8 bg-red-600 text-red-100 &quot;},c.createElement(&quot;p &quot;,{className:&quot;text-base &quot;},&quot;This could make your application vulnerable to remote execution.&#160;&quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;a &quot;,{className:&quot;mt-1.5 underline inline-flex items-center gap-2 &quot;,target:&quot;_blank &quot;,rel:&quot;noopener &quot;,href:&quot;https://flareapp.io/docs/ignition-for-laravel/security &quot;},c.createElement(Xm,{icon:ah,className:&quot;text-sm opacity-50 &quot;}),&quot;Read more about Ignition security &quot;)))):null}function xv(e){var t=e.errorOccurrence,n=e.igniteData,r=Av({rootMargin:&quot;-40px 0px 0px 0px &quot;,threshold:.3,initialInView:!0}),a=r.ref;return c.createElement(Dc,null,c.createElement(Bf.Provider,{value:n},c.createElement(Ne,{ignitionConfig:n.config},c.createElement(Ee.Provider,{value:t},c.createElement(ve,null,c.createElement(Sv,{showException:!r.inView}),c.createElement(&quot;main &quot;,{className:&quot;mx-auto my-20 px-6 lg:px-10 max-w-4xl lg:max-w-[90rem] grid grid-cols-1 gap-10 &quot;},c.createElement(kv,null),c.createElement(&quot;div &quot;,{ref:a},c.createElement(Uc,null)),c.createElement(Iv,{name:&quot;stack &quot;,children:c.createElement(qs,null)}),c.createElement(Iv,{name:&quot;context &quot;,children:c.createElement(kf,null)}),Nc(t)&amp;&amp;c.createElement(Iv,{name:&quot;debug &quot;,children:c.createElement(Uf,null)})))))))}window.ignite=function(t){var n,r,a,o,i,l,s,u,f,d,p,m,h,g,v,y,E=(y=(n=t).solutions,{frames:(v=n.report).stacktrace.map(function(t){return e({},t,{relative_file:t.file.replace(v.application_path+&quot;/&quot;,&quot;&quot;).replace(v.application_path+&quot;\&quot;,&quot;&quot;),class:t.class||&quot;&quot;})}),context_items:{request:null==(r=v.context)?void 0:r.request,request_data:null==(a=v.context)?void 0:a.request_data,queries:(null==(o=v.context)?void 0:o.queries)||null,dumps:(null==(i=v.context)?void 0:i.dumps)||null,logs:v.context.logs||null,headers:(null==(l=v.context)?void 0:l.headers)||null,cookies:(null==(s=v.context)?void 0:s.cookies)||null,session:(null==(u=v.context)?void 0:u.session)||null,env:(null==(f=v.context)?void 0:f.env)||null,user:(null==(d=v.context)?void 0:d.user)||null,route:(null==(p=v.context)?void 0:p.route)||null,git:(null==(m=v.context)?void 0:m.git)||null,livewire:v.context.livewire||null,view:v.context.view||null},type:&quot;web &quot;,entry_point:null==v||null==(h=v.context)||null==(g=h.request)?void 0:g.url,exception_class:v.exception_class,exception_message:v.message||&quot;&quot;,application_path:v.application_path,application_version:v.application_version,language_version:v.language_version,framework_version:v.framework_version,notifier_client_name:&quot;Flare &quot;,stage:v.stage,first_frame_class:v.stacktrace[0].class||&quot;&quot;,first_frame_method:v.stacktrace[0].method,glows:v.glows,solutions:y,documentation_links:v.documentation_links});console.log(t,E),he.render(c.createElement(xv,{errorOccurrence:E,igniteData:t}),document.querySelector(&quot;#app &quot;))};<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        --&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        window.ignite(window.data);<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;!--<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        ValueError: Path cannot be empty in file /var/www/apis/API_servicios/app/Services/ApiArchivoService.php on line 19<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        <span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #0 /var/www/apis/API_servicios/app/Services/ApiArchivoService.php(19): fopen()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #1 /var/www/apis/API_servicios/app/Http/Controllers/ApiArchivosController.php(14): App\Services\ApiArchivoService::enviarArchivo()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #2 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\Http\Controllers\ApiArchivosController-&amp;gt;guardarArchivo()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #3 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(43): Illuminate\Routing\Controller-&amp;gt;callAction()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #4 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\Routing\ControllerDispatcher-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #5 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): Illuminate\Routing\Route-&amp;gt;runController()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #6 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(798): Illuminate\Routing\Route-&amp;gt;run()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #7 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Routing\Router-&amp;gt;Illuminate\Routing\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #8 /var/www/apis/API_servicios/app/Http/Middleware/TokenAuth.php(28): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #9 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): App\Http\Middleware\TokenAuth-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #10 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #11 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\SubstituteBindings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #12 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(126): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #13 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(102): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequest()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #14 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(54): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequestUsingNamedLimiter()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #15 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #16 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #17 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(799): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #18 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(776): Illuminate\Routing\Router-&amp;gt;runRouteWithinStack()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #19 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(740): Illuminate\Routing\Router-&amp;gt;runRoute()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #20 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(729): Illuminate\Routing\Router-&amp;gt;dispatchToRoute()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #21 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(190): Illuminate\Routing\Router-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #22 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Foundation\Http\Kernel-&amp;gt;Illuminate\Foundation\Http\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #23 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #24 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #25 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #26 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #27 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #28 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\TrimStrings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #29 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #30 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ValidatePostSize-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #31 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #32 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #33 /var/www/apis/API_servicios/vendor/fruitcake/laravel-cors/src/HandleCors.php(52): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #34 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Fruitcake\Cors\HandleCors-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #35 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #36 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Http\Middleware\TrustProxies-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #37 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #38 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\Session\Middleware\StartSession-&amp;gt;handleStatefulRequest()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #39 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Session\Middleware\StartSession-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #40 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #41 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #42 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(134): Illuminate\Foundation\Http\Kernel-&amp;gt;sendRequestThroughRouter()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #43 /var/www/apis/API_servicios/public/index.php(52): Illuminate\Foundation\Http\Kernel-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        #44 {main}<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        --&gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/body &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    <span class=sf-dump-str title="953687 characters"> 
        &lt;/html &gt;<span class="sf-dump-default sf-dump-ns">
</span> 
    </span> 
    """<span style="color: #A0A0A0;">// app\Services\ArchivoService.php:42</span> 
</pre> 
<script> 
    Sfdump("sf-dump-1011870813") 
</script> 
 ?>

Did this file decode correctly?

Original Code

<script>
    Sfdump = window.Sfdump || (function(doc) {
        var refStyle = doc.createElement('style')
          , rxEsc = /([.*+?^${}()|\[\]\/\\])/g
          , idRx = /\bsf-dump-\d+-ref[012]\w+\b/
          , keyHint = 0 <= navigator.platform.toUpperCase().indexOf('MAC') ? 'Cmd' : 'Ctrl'
          , addEventListener = function(e, n, cb) {
            e.addEventListener(n, cb, false);
        };
        refStyle.innerHTML = 'pre.sf-dump .sf-dump-compact, .sf-dump-str-collapse .sf-dump-str-collapse, .sf-dump-str-expand .sf-dump-str-expand { display: none; }';
        doc.head.appendChild(refStyle);
        refStyle = doc.createElement('style');
        doc.head.appendChild(refStyle);
        if (!doc.addEventListener) {
            addEventListener = function(element, eventName, callback) {
                element.attachEvent('on' + eventName, function(e) {
                    e.preventDefault = function() {
                        e.returnValue = false;
                    }
                    ;
                    e.target = e.srcElement;
                    callback(e);
                });
            }
            ;
        }
        function toggle(a, recursive) {
            var s = a.nextSibling || {}, oldClass = s.className, arrow, newClass;
            if (/\bsf-dump-compact\b/.test(oldClass)) {
                arrow = '&#9660;';
                newClass = 'sf-dump-expanded';
            } else if (/\bsf-dump-expanded\b/.test(oldClass)) {
                arrow = '&#9654;';
                newClass = 'sf-dump-compact';
            } else {
                return false;
            }
            if (doc.createEvent && s.dispatchEvent) {
                var event = doc.createEvent('Event');
                event.initEvent('sf-dump-expanded' === newClass ? 'sfbeforedumpexpand' : 'sfbeforedumpcollapse', true, false);
                s.dispatchEvent(event);
            }
            a.lastChild.innerHTML = arrow;
            s.className = s.className.replace(/\bsf-dump-(compact|expanded)\b/, newClass);
            if (recursive) {
                try {
                    a = s.querySelectorAll('.' + oldClass);
                    for (s = 0; s < a.length; ++s) {
                        if (-1 == a[s].className.indexOf(newClass)) {
                            a[s].className = newClass;
                            a[s].previousSibling.lastChild.innerHTML = arrow;
                        }
                    }
                } catch (e) {}
            }
            return true;
        }
        ;function collapse(a, recursive) {
            var s = a.nextSibling || {}
              , oldClass = s.className;
            if (/\bsf-dump-expanded\b/.test(oldClass)) {
                toggle(a, recursive);
                return true;
            }
            return false;
        }
        ;function expand(a, recursive) {
            var s = a.nextSibling || {}
              , oldClass = s.className;
            if (/\bsf-dump-compact\b/.test(oldClass)) {
                toggle(a, recursive);
                return true;
            }
            return false;
        }
        ;function collapseAll(root) {
            var a = root.querySelector('a.sf-dump-toggle');
            if (a) {
                collapse(a, true);
                expand(a);
                return true;
            }
            return false;
        }
        function reveal(node) {
            var previous, parents = [];
            while ((node = node.parentNode || {}) && (previous = node.previousSibling) && 'A' === previous.tagName) {
                parents.push(previous);
            }
            if (0 !== parents.length) {
                parents.forEach(function(parent) {
                    expand(parent);
                });
                return true;
            }
            return false;
        }
        function highlight(root, activeNode, nodes) {
            resetHighlightedNodes(root);
            Array.from(nodes || []).forEach(function(node) {
                if (!/\bsf-dump-highlight\b/.test(node.className)) {
                    node.className = node.className + ' sf-dump-highlight';
                }
            });
            if (!/\bsf-dump-highlight-active\b/.test(activeNode.className)) {
                activeNode.className = activeNode.className + ' sf-dump-highlight-active';
            }
        }
        function resetHighlightedNodes(root) {
            Array.from(root.querySelectorAll('.sf-dump-str, .sf-dump-key, .sf-dump-public, .sf-dump-protected, .sf-dump-private')).forEach(function(strNode) {
                strNode.className = strNode.className.replace(/\bsf-dump-highlight\b/, '');
                strNode.className = strNode.className.replace(/\bsf-dump-highlight-active\b/, '');
            });
        }
        return function(root, x) {
            root = doc.getElementById(root);
            var indentRx = new RegExp('^(' + (root.getAttribute('data-indent-pad') || ' ').replace(rxEsc, '\\$1') + ')+','m'), options = {
                "maxDepth": 1,
                "maxStringLength": 160,
                "fileLinkFormat": false
            }, elt = root.getElementsByTagName('A'), len = elt.length, i = 0, s, h, t = [];
            while (i < len)
                t.push(elt[i++]);
            for (i in x) {
                options[i] = x[i];
            }
            function a(e, f) {
                addEventListener(root, e, function(e, n) {
                    if ('A' == e.target.tagName) {
                        f(e.target, e);
                    } else if ('A' == e.target.parentNode.tagName) {
                        f(e.target.parentNode, e);
                    } else {
                        n = /\bsf-dump-ellipsis\b/.test(e.target.className) ? e.target.parentNode : e.target;
                        if ((n = n.nextElementSibling) && 'A' == n.tagName) {
                            if (!/\bsf-dump-toggle\b/.test(n.className)) {
                                n = n.nextElementSibling || n;
                            }
                            f(n, e, true);
                        }
                    }
                });
            }
            ;function isCtrlKey(e) {
                return e.ctrlKey || e.metaKey;
            }
            function xpathString(str) {
                var parts = str.match(/[^'"]+|['"]/g).map(function(part) {
                    if ("'" == part) {
                        return '"\'"';
                    }
                    if ('"' == part) {
                        return "'\"'";
                    }
                    return "'" + part + "'";
                });
                return "concat(" + parts.join(",") + ", '')";
            }
            function xpathHasClass(className) {
                return "contains(concat(' ', normalize-space(@class), ' '), ' " + className + " ')";
            }
            addEventListener(root, 'mouseover', function(e) {
                if ('' != refStyle.innerHTML) {
                    refStyle.innerHTML = '';
                }
            });
            a('mouseover', function(a, e, c) {
                if (c) {
                    e.target.style.cursor = "pointer";
                } else if (a = idRx.exec(a.className)) {
                    try {
                        refStyle.innerHTML = 'pre.sf-dump .' + a[0] + '{background-color: #B729D9; color: #FFF !important; border-radius: 2px}';
                    } catch (e) {}
                }
            });
            a('click', function(a, e, c) {
                if (/\bsf-dump-toggle\b/.test(a.className)) {
                    e.preventDefault();
                    if (!toggle(a, isCtrlKey(e))) {
                        var r = doc.getElementById(a.getAttribute('href').slice(1))
                          , s = r.previousSibling
                          , f = r.parentNode
                          , t = a.parentNode;
                        t.replaceChild(r, a);
                        f.replaceChild(a, s);
                        t.insertBefore(s, r);
                        f = f.firstChild.nodeValue.match(indentRx);
                        t = t.firstChild.nodeValue.match(indentRx);
                        if (f && t && f[0] !== t[0]) {
                            r.innerHTML = r.innerHTML.replace(new RegExp('^' + f[0].replace(rxEsc, '\\$1'),'mg'), t[0]);
                        }
                        if (/\bsf-dump-compact\b/.test(r.className)) {
                            toggle(s, isCtrlKey(e));
                        }
                    }
                    if (c) {} else if (doc.getSelection) {
                        try {
                            doc.getSelection().removeAllRanges();
                        } catch (e) {
                            doc.getSelection().empty();
                        }
                    } else {
                        doc.selection.empty();
                    }
                } else if (/\bsf-dump-str-toggle\b/.test(a.className)) {
                    e.preventDefault();
                    e = a.parentNode.parentNode;
                    e.className = e.className.replace(/\bsf-dump-str-(expand|collapse)\b/, a.parentNode.className);
                }
            });
            elt = root.getElementsByTagName('SAMP');
            len = elt.length;
            i = 0;
            while (i < len)
                t.push(elt[i++]);
            len = t.length;
            for (i = 0; i < len; ++i) {
                elt = t[i];
                if ('SAMP' == elt.tagName) {
                    a = elt.previousSibling || {};
                    if ('A' != a.tagName) {
                        a = doc.createElement('A');
                        a.className = 'sf-dump-ref';
                        elt.parentNode.insertBefore(a, elt);
                    } else {
                        a.innerHTML += ' ';
                    }
                    a.title = (a.title ? a.title + '\n[' : '[') + keyHint + '+click] Expand all children';
                    a.innerHTML += elt.className == 'sf-dump-compact' ? '<span>&#9654;</span>' : '<span>&#9660;</span>';
                    a.className += ' sf-dump-toggle';
                    x = 1;
                    if ('sf-dump' != elt.parentNode.className) {
                        x += elt.parentNode.getAttribute('data-depth') / 1;
                    }
                } else if (/\bsf-dump-ref\b/.test(elt.className) && (a = elt.getAttribute('href'))) {
                    a = a.slice(1);
                    elt.className += ' ' + a;
                    if (/[\[{]$/.test(elt.previousSibling.nodeValue)) {
                        a = a != elt.nextSibling.id && doc.getElementById(a);
                        try {
                            s = a.nextSibling;
                            elt.appendChild(a);
                            s.parentNode.insertBefore(a, s);
                            if (/^[@#]/.test(elt.innerHTML)) {
                                elt.innerHTML += ' <span>&#9654;</span>';
                            } else {
                                elt.innerHTML = '<span>&#9654;</span>';
                                elt.className = 'sf-dump-ref';
                            }
                            elt.className += ' sf-dump-toggle';
                        } catch (e) {
                            if ('&' == elt.innerHTML.charAt(0)) {
                                elt.innerHTML = '&#8230;';
                                elt.className = 'sf-dump-ref';
                            }
                        }
                    }
                }
            }
            if (doc.evaluate && Array.from && root.children.length > 1) {
                root.setAttribute('tabindex', 0);
                SearchState = function() {
                    this.nodes = [];
                    this.idx = 0;
                }
                ;
                SearchState.prototype = {
                    next: function() {
                        if (this.isEmpty()) {
                            return this.current();
                        }
                        this.idx = this.idx < (this.nodes.length - 1) ? this.idx + 1 : 0;
                        return this.current();
                    },
                    previous: function() {
                        if (this.isEmpty()) {
                            return this.current();
                        }
                        this.idx = this.idx > 0 ? this.idx - 1 : (this.nodes.length - 1);
                        return this.current();
                    },
                    isEmpty: function() {
                        return 0 === this.count();
                    },
                    current: function() {
                        if (this.isEmpty()) {
                            return null;
                        }
                        return this.nodes[this.idx];
                    },
                    reset: function() {
                        this.nodes = [];
                        this.idx = 0;
                    },
                    count: function() {
                        return this.nodes.length;
                    },
                };
                function showCurrent(state) {
                    var currentNode = state.current(), currentRect, searchRect;
                    if (currentNode) {
                        reveal(currentNode);
                        highlight(root, currentNode, state.nodes);
                        if ('scrollIntoView'in currentNode) {
                            currentNode.scrollIntoView(true);
                            currentRect = currentNode.getBoundingClientRect();
                            searchRect = search.getBoundingClientRect();
                            if (currentRect.top < (searchRect.top + searchRect.height)) {
                                window.scrollBy(0, -(searchRect.top + searchRect.height + 5));
                            }
                        }
                    }
                    counter.textContent = (state.isEmpty() ? 0 : state.idx + 1) + ' of ' + state.count();
                }
                var search = doc.createElement('div');
                search.className = 'sf-dump-search-wrapper sf-dump-search-hidden';
                search.innerHTML = ' <input type="text" class="sf-dump-search-input"> <span class="sf-dump-search-count">0 of 0<\/span> <button type="button" class="sf-dump-search-input-previous" tabindex="-1"> <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z"\/><\/svg> <\/button> <button type="button" class="sf-dump-search-input-next" tabindex="-1"> <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1683 808l-742 741q-19 19-45 19t-45-19L109 808q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z"\/><\/svg> <\/button> ';
                root.insertBefore(search, root.firstChild);
                var state = new SearchState();
                var searchInput = search.querySelector('.sf-dump-search-input');
                var counter = search.querySelector('.sf-dump-search-count');
                var searchInputTimer = 0;
                var previousSearchQuery = '';
                addEventListener(searchInput, 'keyup', function(e) {
                    var searchQuery = e.target.value;
                    /* Don't perform anything if the pressed key didn't change the query */
                    if (searchQuery === previousSearchQuery) {
                        return;
                    }
                    previousSearchQuery = searchQuery;
                    clearTimeout(searchInputTimer);
                    searchInputTimer = setTimeout(function() {
                        state.reset();
                        collapseAll(root);
                        resetHighlightedNodes(root);
                        if ('' === searchQuery) {
                            counter.textContent = '0 of 0';
                            return;
                        }
                        var classMatches = ["sf-dump-str", "sf-dump-key", "sf-dump-public", "sf-dump-protected", "sf-dump-private", ].map(xpathHasClass).join(' or ');
                        var xpathResult = doc.evaluate('.//span[' + classMatches + '][contains(translate(child::text(), ' + xpathString(searchQuery.toUpperCase()) + ', ' + xpathString(searchQuery.toLowerCase()) + '), ' + xpathString(searchQuery.toLowerCase()) + ')]', root, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null);
                        while (node = xpathResult.iterateNext())
                            state.nodes.push(node);
                        showCurrent(state);
                    }, 400);
                });
                Array.from(search.querySelectorAll('.sf-dump-search-input-next, .sf-dump-search-input-previous')).forEach(function(btn) {
                    addEventListener(btn, 'click', function(e) {
                        e.preventDefault();
                        -1 !== e.target.className.indexOf('next') ? state.next() : state.previous();
                        searchInput.focus();
                        collapseAll(root);
                        showCurrent(state);
                    })
                });
                addEventListener(root, 'keydown', function(e) {
                    var isSearchActive = !/\bsf-dump-search-hidden\b/.test(search.className);
                    if ((114 === e.keyCode && !isSearchActive) || (isCtrlKey(e) && 70 === e.keyCode)) {
                        /* F3 or CMD/CTRL + F */
                        if (70 === e.keyCode && document.activeElement === searchInput) {
                            /* * If CMD/CTRL + F is hit while having focus on search input, * the user probably meant to trigger browser search instead. * Let the browser execute its behavior: */
                            return;
                        }
                        e.preventDefault();
                        search.className = search.className.replace(/\bsf-dump-search-hidden\b/, '');
                        searchInput.focus();
                    } else if (isSearchActive) {
                        if (27 === e.keyCode) {
                            /* ESC key */
                            search.className += ' sf-dump-search-hidden';
                            e.preventDefault();
                            resetHighlightedNodes(root);
                            searchInput.value = '';
                        } else if ((isCtrlKey(e) && 71 === e.keyCode)/* CMD/CTRL + G */
                        || 13 === e.keyCode /* Enter */
                        || 114 === e.keyCode /* F3 */
                        ) {
                            e.preventDefault();
                            e.shiftKey ? state.previous() : state.next();
                            collapseAll(root);
                            showCurrent(state);
                        }
                    }
                });
            }
            if (0 >= options.maxStringLength) {
                return;
            }
            try {
                elt = root.querySelectorAll('.sf-dump-str');
                len = elt.length;
                i = 0;
                t = [];
                while (i < len)
                    t.push(elt[i++]);
                len = t.length;
                for (i = 0; i < len; ++i) {
                    elt = t[i];
                    s = elt.innerText || elt.textContent;
                    x = s.length - options.maxStringLength;
                    if (0 < x) {
                        h = elt.innerHTML;
                        elt[elt.innerText ? 'innerText' : 'textContent'] = s.substring(0, options.maxStringLength);
                        elt.className += ' sf-dump-str-collapse';
                        elt.innerHTML = '<span class=sf-dump-str-collapse>' + h + '<a class="sf-dump-ref sf-dump-str-toggle" title="Collapse"> &#9664;</a></span>' + '<span class=sf-dump-str-expand>' + elt.innerHTML + '<a class="sf-dump-ref sf-dump-str-toggle" title="' + x + ' remaining characters"> &#9654;</a></span>';
                    }
                }
            } catch (e) {}
        }
        ;
    }
    )(document);
</script>
<style>
    pre.sf-dump {
        display: block;
        white-space: pre;
        padding: 5px;
        overflow: initial !important;
    }

    pre.sf-dump:after {
        content: "";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    pre.sf-dump span {
        display: inline;
    }

    pre.sf-dump a {
        text-decoration: none;
        cursor: pointer;
        border: 0;
        outline: none;
        color: inherit;
    }

    pre.sf-dump img {
        max-width: 50em;
        max-height: 50em;
        margin: .5em 0 0 0;
        padding: 0;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAHUlEQVQY02O8zAABilCaiQEN0EeA8QuUcX9g3QEAAjcC5piyhyEAAAAASUVORK5CYII=) #D3D3D3;
    }

    pre.sf-dump .sf-dump-ellipsis {
        display: inline-block;
        overflow: visible;
        text-overflow: ellipsis;
        max-width: 5em;
        white-space: nowrap;
        overflow: hidden;
        vertical-align: top;
    }

    pre.sf-dump .sf-dump-ellipsis+.sf-dump-ellipsis {
        max-width: none;
    }

    pre.sf-dump code {
        display: inline;
        padding: 0;
        background: none;
    }

    .sf-dump-public.sf-dump-highlight, .sf-dump-protected.sf-dump-highlight, .sf-dump-private.sf-dump-highlight, .sf-dump-str.sf-dump-highlight, .sf-dump-key.sf-dump-highlight {
        background: rgba(111, 172, 204, 0.3);
        border: 1px solid #7DA0B1;
        border-radius: 3px;
    }

    .sf-dump-public.sf-dump-highlight-active, .sf-dump-protected.sf-dump-highlight-active, .sf-dump-private.sf-dump-highlight-active, .sf-dump-str.sf-dump-highlight-active, .sf-dump-key.sf-dump-highlight-active {
        background: rgba(253, 175, 0, 0.4);
        border: 1px solid #ffa500;
        border-radius: 3px;
    }

    pre.sf-dump .sf-dump-search-hidden {
        display: none !important;
    }

    pre.sf-dump .sf-dump-search-wrapper {
        font-size: 0;
        white-space: nowrap;
        margin-bottom: 5px;
        display: flex;
        position: -webkit-sticky;
        position: sticky;
        top: 5px;
    }

    pre.sf-dump .sf-dump-search-wrapper > * {
        vertical-align: top;
        box-sizing: border-box;
        height: 21px;
        font-weight: normal;
        border-radius: 0;
        background: #FFF;
        color: #757575;
        border: 1px solid #BBB;
    }

    pre.sf-dump .sf-dump-search-wrapper > input.sf-dump-search-input {
        padding: 3px;
        height: 21px;
        font-size: 12px;
        border-right: none;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        color: #000;
        min-width: 15px;
        width: 100%;
    }

    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next, pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-previous {
        background: #F2F2F2;
        outline: none;
        border-left: none;
        font-size: 0;
        line-height: 0;
    }

    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next {
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    }

    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-next > svg, pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-input-previous > svg {
        pointer-events: none;
        width: 12px;
        height: 12px;
    }

    pre.sf-dump .sf-dump-search-wrapper > .sf-dump-search-count {
        display: inline-block;
        padding: 0 5px;
        margin: 0;
        border-left: none;
        line-height: 21px;
        font-size: 12px;
    }

    pre.sf-dump, pre.sf-dump .sf-dump-default {
        background-color: #18171B;
        color: #FF8400;
        line-height: 1.2em;
        font: 12px Menlo, Monaco, Consolas, monospace;
        word-wrap: break-word;
        white-space: pre-wrap;
        position: relative;
        z-index: 99999;
        word-break: break-all
    }

    pre.sf-dump .sf-dump-num {
        font-weight: bold;
        color: #1299DA
    }

    pre.sf-dump .sf-dump-const {
        font-weight: bold
    }

    pre.sf-dump .sf-dump-str {
        font-weight: bold;
        color: #56DB3A
    }

    pre.sf-dump .sf-dump-note {
        color: #1299DA
    }

    pre.sf-dump .sf-dump-ref {
        color: #A0A0A0
    }

    pre.sf-dump .sf-dump-public {
        color: #FFFFFF
    }

    pre.sf-dump .sf-dump-protected {
        color: #FFFFFF
    }

    pre.sf-dump .sf-dump-private {
        color: #FFFFFF
    }

    pre.sf-dump .sf-dump-meta {
        color: #B729D9
    }

    pre.sf-dump .sf-dump-key {
        color: #56DB3A
    }

    pre.sf-dump .sf-dump-index {
        color: #1299DA
    }

    pre.sf-dump .sf-dump-ellipsis {
        color: #FF8400
    }

    pre.sf-dump .sf-dump-ns {
        user-select: none;
    }

    pre.sf-dump .sf-dump-ellipsis-note {
        color: #1299DA
    }
</style>
<pre class=sf-dump id=sf-dump-1011870813 data-indent-pad="  ">
    """

    <span class=sf-dump-str title="953687 characters">
        &lt;!DOCTYPE html &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;html lang=&quot;en &quot;class=&quot;auto &quot;&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;!--<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        ValueError: Path cannot be empty in file /var/www/apis/API_servicios/app/Services/ApiArchivoService.php on line 19<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #0 /var/www/apis/API_servicios/app/Services/ApiArchivoService.php(19): fopen()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #1 /var/www/apis/API_servicios/app/Http/Controllers/ApiArchivosController.php(14): App\Services\ApiArchivoService::enviarArchivo()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #2 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\Http\Controllers\ApiArchivosController-&amp;gt;guardarArchivo()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #3 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(43): Illuminate\Routing\Controller-&amp;gt;callAction()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #4 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\Routing\ControllerDispatcher-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #5 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): Illuminate\Routing\Route-&amp;gt;runController()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #6 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(798): Illuminate\Routing\Route-&amp;gt;run()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #7 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Routing\Router-&amp;gt;Illuminate\Routing\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #8 /var/www/apis/API_servicios/app/Http/Middleware/TokenAuth.php(28): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #9 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): App\Http\Middleware\TokenAuth-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #10 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #11 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\SubstituteBindings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #12 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(126): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #13 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(102): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequest()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #14 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(54): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequestUsingNamedLimiter()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #15 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #16 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #17 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(799): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #18 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(776): Illuminate\Routing\Router-&amp;gt;runRouteWithinStack()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #19 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(740): Illuminate\Routing\Router-&amp;gt;runRoute()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #20 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(729): Illuminate\Routing\Router-&amp;gt;dispatchToRoute()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #21 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(190): Illuminate\Routing\Router-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #22 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Foundation\Http\Kernel-&amp;gt;Illuminate\Foundation\Http\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #23 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #24 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #25 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #26 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #27 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #28 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\TrimStrings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #29 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #30 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ValidatePostSize-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #31 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #32 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #33 /var/www/apis/API_servicios/vendor/fruitcake/laravel-cors/src/HandleCors.php(52): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #34 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Fruitcake\Cors\HandleCors-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #35 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #36 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Http\Middleware\TrustProxies-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #37 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #38 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\Session\Middleware\StartSession-&amp;gt;handleStatefulRequest()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #39 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Session\Middleware\StartSession-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #40 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #41 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #42 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(134): Illuminate\Foundation\Http\Kernel-&amp;gt;sendRequestThroughRouter()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #43 /var/www/apis/API_servicios/public/index.php(52): Illuminate\Foundation\Http\Kernel-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #44 {main}<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        --&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;head &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;!-- Hide dumps asap --&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;style &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        pre.sf-dump {<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        display: none !important;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        }<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/style &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;meta charset=&quot;UTF-8 &quot;&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;meta name=&quot;viewport &quot;content=&quot;width=device-width, initial-scale=1.0 &quot;&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;meta http-equiv=&quot;X-UA-Compatible &quot;content=&quot;ie=edge &quot;&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;meta name=&quot;robots &quot;content=&quot;noindex, nofollow &quot;&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;title &gt;Path cannot be empty &lt;/title &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        // Livewire modals remove CSS classes on the `html` element so we re-add<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        // the theme class again using JavaScript.<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        document.documentElement.classList.add(&#039;auto &#039;);<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        // Process `auto` theme as soon as possible to avoid flashing of white background.<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        if (document.documentElement.classList.contains(&#039;auto &#039;) &amp;&amp;window.matchMedia(&#039;(prefers-color-scheme: dark)&#039;).matches) {<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        document.documentElement.classList.add(&#039;dark &#039;);<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        }<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;style &gt;/*<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        ! tailwindcss v3.0.15 | MIT License | https://tailwindcss.com<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        */*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:&quot;&quot;}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:after,:before{--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scroll-snap-strictness:proximity;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,0.5);--tw-ring-offset-shadow:0 0 transparent;--tw-ring-shadow:0 0 transparent;--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent}html{font-size:max(13px,min(1.3vw,16px));overflow-x:hidden;overflow-y:scroll;font-feature-settings:&quot;calt &quot;0;-webkit-marquee-increment:1vw}:after,:before,:not(iframe){position:relative}:focus{outline:0!important}body{font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,Helvetica Neue,Arial,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;width:100%;color:rgba(31,41,55,var(--tw-text-opacity))}.dark body,body{--tw-text-opacity:1}.dark body{color:rgba(229,231,235,var(--tw-text-opacity))}body{background-color:rgba(229,231,235,var(--tw-bg-opacity))}.dark body,body{--tw-bg-opacity:1}.dark body{background-color:rgba(17,24,39,var(--tw-bg-opacity))}@media (color-index:48){html.auto body{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity));--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}}@media (color:48842621){html.auto body{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity));--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}}@media (prefers-color-scheme:dark){html.auto body{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity));--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}}.scroll-target:target{content:&quot;&quot;;display:block;position:absolute;top:-6rem}pre.sf-dump{display:block;white-space:pre;padding:5px;overflow:visible!important;overflow:initial!important}pre.sf-dump:after{content:&quot;&quot;;visibility:hidden;display:block;height:0;clear:both}pre.sf-dump span{display:inline}pre.sf-dump a{text-decoration:none;cursor:pointer;border:0;outline:none;color:inherit}pre.sf-dump img{max-width:50em;max-height:50em;margin:.5em 0 0;padding:0;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAHUlEQVQY02O8zAABilCaiQEN0EeA8QuUcX9g3QEAAjcC5piyhyEAAAAASUVORK5CYII=) #d3d3d3}pre.sf-dump .sf-dump-ellipsis{display:inline-block;overflow:visible;text-overflow:ellipsis;max-width:5em;white-space:nowrap;overflow:hidden;vertical-align:top}pre.sf-dump .sf-dump-ellipsis+.sf-dump-ellipsis{max-width:none}pre.sf-dump code{display:inline;padding:0;background:none}.sf-dump-key.sf-dump-highlight,.sf-dump-private.sf-dump-highlight,.sf-dump-protected.sf-dump-highlight,.sf-dump-public.sf-dump-highlight,.sf-dump-str.sf-dump-highlight{background:rgba(111,172,204,.3);border:1px solid #7da0b1;border-radius:3px}.sf-dump-key.sf-dump-highlight-active,.sf-dump-private.sf-dump-highlight-active,.sf-dump-protected.sf-dump-highlight-active,.sf-dump-public.sf-dump-highlight-active,.sf-dump-str.sf-dump-highlight-active{background:rgba(253,175,0,.4);border:1px solid orange;border-radius:3px}pre.sf-dump .sf-dump-search-hidden{display:none!important}pre.sf-dump .sf-dump-search-wrapper{font-size:0;white-space:nowrap;margin-bottom:5px;display:flex;position:-webkit-sticky;position:sticky;top:5px}pre.sf-dump .sf-dump-search-wrapper &gt;*{vertical-align:top;box-sizing:border-box;height:21px;font-weight:400;border-radius:0;background:#fff;color:#757575;border:1px solid #bbb}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{padding:3px;height:21px;font-size:12px;border-right:none;border-top-left-radius:3px;border-bottom-left-radius:3px;color:#000;min-width:15px;width:100%}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{background:#f2f2f2;outline:none;border-left:none;font-size:0;line-height:0}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next{border-top-right-radius:3px;border-bottom-right-radius:3px}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next &gt;svg,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous &gt;svg{pointer-events:none;width:12px;height:12px}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{display:inline-block;padding:0 5px;margin:0;border-left:none;line-height:21px;font-size:12px}.hljs-comment,.hljs-quote{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark .hljs-comment,.dark .hljs-quote{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.hljs-comment.hljs-doctag{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.dark .hljs-comment.hljs-doctag{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.hljs-doctag,.hljs-formula,.hljs-keyword,.hljs-name{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark .hljs-doctag,.dark .hljs-formula,.dark .hljs-keyword,.dark .hljs-name{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.hljs-attr,.hljs-deletion,.hljs-function.hljs-keyword,.hljs-literal,.hljs-section,.hljs-selector-tag{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.hljs-addition,.hljs-attribute,.hljs-meta-string,.hljs-regexp,.hljs-string{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.dark .hljs-addition,.dark .hljs-attribute,.dark .hljs-meta-string,.dark .hljs-regexp,.dark .hljs-string{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.hljs-built_in,.hljs-class .hljs-title,.hljs-template-tag,.hljs-template-variable{--tw-text-opacity:1;color:rgba(249,115,22,var(--tw-text-opacity))}.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-string.hljs-subst,.hljs-type{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark .hljs-number,.dark .hljs-selector-attr,.dark .hljs-selector-class,.dark .hljs-selector-pseudo,.dark .hljs-string.hljs-subst,.dark .hljs-type{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-operator,.hljs-selector-id,.hljs-symbol,.hljs-title,.hljs-variable{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark .hljs-bullet,.dark .hljs-link,.dark .hljs-meta,.dark .hljs-operator,.dark .hljs-selector-id,.dark .hljs-symbol,.dark .hljs-title,.dark .hljs-variable{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.hljs-strong,.hljs-title{font-weight:700}.hljs-emphasis{font-style:italic}.hljs-link{-webkit-text-decoration-line:underline;text-decoration-line:underline}.language-sql .hljs-keyword{text-transform:uppercase}.mask-fade-x{-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 1rem,#000 calc(100% - 3rem),transparent calc(100% - 1rem))}.mask-fade-r{-webkit-mask-image:linear-gradient(90deg,#000 0,#000 calc(100% - 3rem),transparent calc(100% - 1rem))}.mask-fade-y{-webkit-mask-image:linear-gradient(180deg,#000 calc(100% - 2.5rem),transparent)}.mask-fade-frames{-webkit-mask-image:linear-gradient(180deg,#000 calc(100% - 4rem),transparent)}.scrollbar::-webkit-scrollbar,.scrollbar::-webkit-scrollbar-corner{width:2px;height:2px}.scrollbar::-webkit-scrollbar-track{background-color:transparent}.scrollbar::-webkit-scrollbar-thumb{background-color:rgba(239,68,68,.9)}.scrollbar-lg::-webkit-scrollbar,.scrollbar-lg::-webkit-scrollbar-corner{width:4px;height:4px}.scrollbar-lg::-webkit-scrollbar-track{background-color:transparent}.scrollbar-lg::-webkit-scrollbar-thumb{background-color:rgba(239,68,68,.9)}.scrollbar-hidden-x{-ms-overflow-style:none;scrollbar-width:none;overflow-x:scroll}.scrollbar-hidden-x::-webkit-scrollbar{display:none}.scrollbar-hidden-y{-ms-overflow-style:none;scrollbar-width:none;overflow-y:scroll}.scrollbar-hidden-y::-webkit-scrollbar{display:none}main pre.sf-dump{display:block!important;z-index:0!important;padding:0!important;font-size:.875rem!important;line-height:1.25rem!important}.sf-dump-key.sf-dump-highlight,.sf-dump-private.sf-dump-highlight,.sf-dump-protected.sf-dump-highlight,.sf-dump-public.sf-dump-highlight,.sf-dump-str.sf-dump-highlight{background-color:rgba(139,92,246,.1)!important}.sf-dump-key.sf-dump-highlight-active,.sf-dump-private.sf-dump-highlight-active,.sf-dump-protected.sf-dump-highlight-active,.sf-dump-public.sf-dump-highlight-active,.sf-dump-str.sf-dump-highlight-active{background-color:rgba(245,158,11,.1)!important}pre.sf-dump .sf-dump-search-wrapper{align-items:center}pre.sf-dump .sf-dump-search-wrapper &gt;*{border-width:0!important}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{font-size:.75rem!important;line-height:1rem!important;--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;input.sf-dump-search-input{height:2rem!important;padding-left:.5rem!important;padding-right:.5rem!important}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{background-color:transparent!important;--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,.dark pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next:hover,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous:hover{--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-next,pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-input-previous{padding-left:.25rem;padding-right:.25rem}pre.sf-dump .sf-dump-search-wrapper svg path{fill:currentColor}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{font-size:.75rem!important;line-height:1rem!important;line-height:1.5!important;padding-left:1rem!important;padding-right:1rem!important;--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-search-wrapper &gt;.sf-dump-search-count{background-color:transparent!important}pre.sf-dump,pre.sf-dump .sf-dump-default{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important;background-color:transparent!important;--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.dark pre.sf-dump,.dark pre.sf-dump .sf-dump-default{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}pre.sf-dump .sf-dump-num{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-num{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}pre.sf-dump .sf-dump-const{font-weight:400!important;--tw-text-opacity:1!important;color:rgba(139,92,246,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-str{font-weight:400!important;--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-str{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}pre.sf-dump .sf-dump-note{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-note{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}pre.sf-dump .sf-dump-ref{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-ref{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-private,pre.sf-dump .sf-dump-protected,pre.sf-dump .sf-dump-public{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-private,.dark pre.sf-dump .sf-dump-protected,.dark pre.sf-dump .sf-dump-public{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}pre.sf-dump .sf-dump-meta{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-meta{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}pre.sf-dump .sf-dump-key{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-key{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}pre.sf-dump .sf-dump-index{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-index{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}pre.sf-dump .sf-dump-ellipsis{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-ellipsis{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}pre.sf-dump .sf-dump-toggle{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark pre.sf-dump .sf-dump-toggle{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}pre.sf-dump .sf-dump-toggle:hover{--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-toggle span{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:1rem!important;height:1rem!important;font-size:9px;background-color:rgba(107,114,128,.05)}.dark pre.sf-dump .sf-dump-toggle span{background-color:rgba(0,0,0,.1)}pre.sf-dump .sf-dump-toggle span:hover{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.dark pre.sf-dump .sf-dump-toggle span:hover{--tw-bg-opacity:1!important;background-color:rgba(17,24,39,var(--tw-bg-opacity))!important}pre.sf-dump .sf-dump-toggle span{border-radius:9999px;--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}pre.sf-dump .sf-dump-toggle span,pre.sf-dump .sf-dump-toggle span:hover{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}pre.sf-dump .sf-dump-toggle span:hover{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);--tw-text-opacity:1!important;color:rgba(99,102,241,var(--tw-text-opacity))!important}pre.sf-dump .sf-dump-toggle span{top:-2px}pre.sf-dump .sf-dump-toggle:hover span{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.dark pre.sf-dump .sf-dump-toggle:hover span{--tw-bg-opacity:1!important;background-color:rgba(17,24,39,var(--tw-bg-opacity))!important}.\~text-gray-500{--tw-text-opacity:1;color:rgba(107,114,128,var(--tw-text-opacity))}.dark .\~text-gray-500{--tw-text-opacity:1;color:rgba(156,163,175,var(--tw-text-opacity))}.\~text-violet-500{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.dark .\~text-violet-500{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}.\~text-gray-600{--tw-text-opacity:1;color:rgba(75,85,99,var(--tw-text-opacity))}.dark .\~text-gray-600{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.\~text-indigo-600{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark .\~text-indigo-600{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.hover\:\~text-indigo-600:hover{--tw-text-opacity:1;color:rgba(79,70,229,var(--tw-text-opacity))}.dark .hover\:\~text-indigo-600:hover{--tw-text-opacity:1;color:rgba(129,140,248,var(--tw-text-opacity))}.\~text-blue-600{--tw-text-opacity:1;color:rgba(37,99,235,var(--tw-text-opacity))}.dark .\~text-blue-600{--tw-text-opacity:1;color:rgba(96,165,250,var(--tw-text-opacity))}.\~text-violet-600{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark .\~text-violet-600{--tw-text-opacity:1;color:rgba(167,139,250,var(--tw-text-opacity))}.hover\:\~text-violet-600:hover{--tw-text-opacity:1;color:rgba(124,58,237,var(--tw-text-opacity))}.dark .hover\:\~text-violet-600:hover{--tw-text-opacity:1;color:rgba(196,181,253,var(--tw-text-opacity))}.\~text-emerald-600{--tw-text-opacity:1;color:rgba(5,150,105,var(--tw-text-opacity))}.dark .\~text-emerald-600{--tw-text-opacity:1;color:rgba(52,211,153,var(--tw-text-opacity))}.\~text-red-600{--tw-text-opacity:1;color:rgba(220,38,38,var(--tw-text-opacity))}.dark .\~text-red-600{--tw-text-opacity:1;color:rgba(248,113,113,var(--tw-text-opacity))}.\~text-orange-600{--tw-text-opacity:1;color:rgba(234,88,12,var(--tw-text-opacity))}.dark .\~text-orange-600{--tw-text-opacity:1;color:rgba(251,146,60,var(--tw-text-opacity))}.\~text-gray-700{--tw-text-opacity:1;color:rgba(55,65,81,var(--tw-text-opacity))}.dark .\~text-gray-700{--tw-text-opacity:1;color:rgba(209,213,219,var(--tw-text-opacity))}.\~text-indigo-700{--tw-text-opacity:1;color:rgba(67,56,202,var(--tw-text-opacity))}.dark .\~text-indigo-700{--tw-text-opacity:1;color:rgba(199,210,254,var(--tw-text-opacity))}.\~text-blue-700{--tw-text-opacity:1;color:rgba(29,78,216,var(--tw-text-opacity))}.dark .\~text-blue-700{--tw-text-opacity:1;color:rgba(191,219,254,var(--tw-text-opacity))}.\~text-violet-700{--tw-text-opacity:1;color:rgba(109,40,217,var(--tw-text-opacity))}.dark .\~text-violet-700{--tw-text-opacity:1;color:rgba(221,214,254,var(--tw-text-opacity))}.\~text-emerald-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.dark .\~text-emerald-700{--tw-text-opacity:1;color:rgba(167,243,208,var(--tw-text-opacity))}.\~text-red-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.dark .\~text-red-700{--tw-text-opacity:1;color:rgba(254,202,202,var(--tw-text-opacity))}.\~text-orange-700{--tw-text-opacity:1;color:rgba(194,65,12,var(--tw-text-opacity))}.dark .\~text-orange-700{--tw-text-opacity:1;color:rgba(254,215,170,var(--tw-text-opacity))}.\~text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.dark .\~text-gray-800{--tw-text-opacity:1;color:rgba(229,231,235,var(--tw-text-opacity))}.\~bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.dark .\~bg-white{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.\~bg-body{--tw-bg-opacity:1;background-color:rgba(229,231,235,var(--tw-bg-opacity))}.dark .\~bg-body{--tw-bg-opacity:1;background-color:rgba(17,24,39,var(--tw-bg-opacity))}.\~bg-gray-100{--tw-bg-opacity:1;background-color:rgba(243,244,246,var(--tw-bg-opacity))}.dark .\~bg-gray-100{--tw-bg-opacity:1;background-color:rgba(31,41,55,var(--tw-bg-opacity))}.\~bg-gray-200\/50{background-color:rgba(229,231,235,.5)}.dark .\~bg-gray-200\/50{background-color:rgba(55,65,81,.1)}.\~bg-gray-500\/5{background-color:rgba(107,114,128,.05)}.dark .\~bg-gray-500\/5{background-color:rgba(0,0,0,.1)}.hover\:\~bg-gray-500\/5:hover{background-color:rgba(107,114,128,.05)}.dark .hover\:\~bg-gray-500\/5:hover{background-color:rgba(17,24,39,.2)}.\~bg-gray-500\/10{background-color:rgba(107,114,128,.1)}.dark .\~bg-gray-500\/10{background-color:rgba(17,24,39,.4)}.\~bg-red-500\/10{background-color:rgba(239,68,68,.1)}.dark .\~bg-red-500\/10{background-color:rgba(239,68,68,.2)}.hover\:\~bg-red-500\/10:hover{background-color:rgba(239,68,68,.1)}.\~bg-red-500\/20,.dark .hover\:\~bg-red-500\/10:hover{background-color:rgba(239,68,68,.2)}.dark .\~bg-red-500\/20{background-color:rgba(239,68,68,.4)}.\~bg-red-500\/30{background-color:rgba(239,68,68,.3)}.dark .\~bg-red-500\/30{background-color:rgba(239,68,68,.6)}.\~bg-dropdown{--tw-bg-opacity:1!important;background-color:rgba(255,255,255,var(--tw-bg-opacity))!important}.dark .\~bg-dropdown{--tw-bg-opacity:1!important;background-color:rgba(55,65,81,var(--tw-bg-opacity))!important}.\~border-gray-200{--tw-border-opacity:1;border-color:rgba(229,231,235,var(--tw-border-opacity))}.dark .\~border-gray-200{border-color:rgba(107,114,128,.2)}.\~border-b-dropdown{--tw-border-opacity:1!important;border-bottom-color:rgba(255,255,255,var(--tw-border-opacity))!important}.dark .\~border-b-dropdown{--tw-border-opacity:1!important;border-bottom-color:rgba(55,65,81,var(--tw-border-opacity))!important}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.sticky{position:-webkit-sticky;position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.left-0{left:0}.right-2{right:.5rem}.top-2\.5{top:.625rem}.top-2{top:.5rem}.top-10{top:2.5rem}.right-1\/2{right:50%}.right-0{right:0}.left-4{left:1rem}.left-1\/2{left:50%}.left-0\.5{left:.125rem}.top-0\.5{top:.125rem}.top-\[7\.5rem\]{top:7.5rem}.top-3{top:.75rem}.right-4{right:1rem}.-top-3{top:-.75rem}.-right-3{right:-.75rem}.right-3{right:.75rem}.-bottom-3{bottom:-.75rem}.left-10{left:2.5rem}.z-50{z-index:50}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.col-span-2{grid-column:span 2/span 2}.mx-auto{margin-left:auto;margin-right:auto}.my-20{margin-top:5rem;margin-bottom:5rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-my-px{margin-top:-1px;margin-bottom:-1px}.mr-0\.5{margin-right:.125rem}.mr-0{margin-right:0}.mt-1\.5{margin-top:.375rem}.mt-1{margin-top:.25rem}.-ml-3{margin-left:-.75rem}.-mr-3{margin-right:-.75rem}.mr-1\.5{margin-right:.375rem}.mr-1{margin-right:.25rem}.mt-2{margin-top:.5rem}.-ml-1{margin-left:-.25rem}.mr-2{margin-right:.5rem}.mb-1{margin-bottom:.25rem}.mt-3{margin-top:.75rem}.mb-2{margin-bottom:.5rem}.mr-10{margin-right:2.5rem}.ml-auto{margin-left:auto}.mb-4{margin-bottom:1rem}.-ml-6{margin-left:-1.5rem}.-mb-2{margin-bottom:-.5rem}.mr-4{margin-right:1rem}.mt-4{margin-top:1rem}.mt-\[-4px\]{margin-top:-4px}.ml-1\.5{margin-left:.375rem}.ml-1{margin-left:.25rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-20{height:5rem}.h-10{height:2.5rem}.h-2{height:.5rem}.h-0{height:0}.h-12{height:3rem}.h-4{height:1rem}.h-3{height:.75rem}.h-8{height:2rem}.h-6{height:1.5rem}.h-9{height:2.25rem}.h-full{height:100%}.h-\[4px\]{height:4px}.h-16{height:4rem}.h-5{height:1.25rem}.max-h-32{max-height:8rem}.max-h-\[33vh\]{max-height:33vh}.w-full{width:100%}.w-2{width:.5rem}.w-0{width:0}.w-6{width:1.5rem}.w-3{width:.75rem}.w-32{width:8rem}.w-9{width:2.25rem}.w-4{width:1rem}.w-8{width:2rem}.min-w-0{min-width:0}.min-w-\[8rem\]{min-width:8rem}.min-w-\[1rem\]{min-width:1rem}.max-w-4xl{max-width:56rem}.max-w-max{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.origin-top-right{transform-origin:top right}.origin-bottom{transform-origin:bottom}.origin-top-left{transform-origin:top left}.translate-x-0{--tw-translate-x:0px}.translate-x-0,.translate-y-10{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-10{--tw-translate-y:2.5rem}.translate-y-0{--tw-translate-y:0px}.translate-x-6,.translate-y-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-6{--tw-translate-x:1.5rem}.-translate-x-6{--tw-translate-x:-1.5rem}.-translate-x-1\/2,.-translate-x-6{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-1\/2{--tw-translate-x:-50%}.rotate-180{--tw-rotate:180deg}.-rotate-180,.rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-180{--tw-rotate:-180deg}.-rotate-90{--tw-rotate:-90deg}.-rotate-90,.scale-90{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.grid-flow-col{grid-auto-flow:column}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-10{gap:2.5rem}.gap-2{gap:.5rem}.gap-6{gap:1.5rem}.gap-4{gap:1rem}.gap-3{gap:.75rem}.gap-px{gap:1px}.gap-1{gap:.25rem}.gap-y-2{row-gap:.5rem}.space-x-px &gt;:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1px*var(--tw-space-x-reverse));margin-left:calc(1px*(1 - var(--tw-space-x-reverse)))}.self-start{align-self:flex-start}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-lg{border-radius:.5rem}.rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.border-\[10px\]{border-width:10px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-t{border-top-width:1px}.border-t-0{border-top-width:0}.border-r{border-right-width:1px}.border-transparent{border-color:transparent}.border-red-500\/25{border-color:rgba(239,68,68,.25)}.border-violet-500\/25{border-color:rgba(139,92,246,.25)}.border-emerald-500\/25{border-color:rgba(16,185,129,.25)}.border-gray-800\/20{border-color:rgba(31,41,55,.2)}.border-red-500\/50{border-color:rgba(239,68,68,.5)}.border-orange-500\/50{border-color:rgba(249,115,22,.5)}.border-emerald-500\/50{border-color:rgba(16,185,129,.5)}.border-indigo-500\/50{border-color:rgba(99,102,241,.5)}.border-violet-600\/50{border-color:rgba(124,58,237,.5)}.border-gray-500\/50{border-color:rgba(107,114,128,.5)}.bg-red-500{--tw-bg-opacity:1;background-color:rgba(239,68,68,var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity:1;background-color:rgba(220,38,38,var(--tw-bg-opacity))}.bg-violet-500{--tw-bg-opacity:1;background-color:rgba(139,92,246,var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-gray-300\/50{background-color:rgba(209,213,219,.5)}.bg-indigo-500{--tw-bg-opacity:1;background-color:rgba(99,102,241,var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity:1;background-color:rgba(79,70,229,var(--tw-bg-opacity))}.bg-gray-900\/30{background-color:rgba(17,24,39,.3)}.bg-emerald-600{--tw-bg-opacity:1;background-color:rgba(5,150,105,var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity:1;background-color:rgba(254,202,202,var(--tw-bg-opacity))}.bg-emerald-300{--tw-bg-opacity:1;background-color:rgba(110,231,183,var(--tw-bg-opacity))}.bg-emerald-500{--tw-bg-opacity:1;background-color:rgba(16,185,129,var(--tw-bg-opacity))}.bg-yellow-50{--tw-bg-opacity:1;background-color:rgba(254,252,232,var(--tw-bg-opacity))}.bg-emerald-500\/5{background-color:rgba(16,185,129,.05)}.bg-red-800\/5{background-color:rgba(153,27,27,.05)}.bg-red-50{--tw-bg-opacity:1;background-color:rgba(254,242,242,var(--tw-bg-opacity))}.bg-opacity-20{--tw-bg-opacity:0.2}.bg-dots-darker{background-image:url(&quot;data:image/svg+xml;charset=utf-8,%3Csvg width=&#039;30 &#039;height=&#039;30 &#039;fill=&#039;none &#039;xmlns=&#039;http://www.w3.org/2000/svg &#039;%3E%3Cpath d=&#039;M1.227 0c.687 0 1.227.54 1.227 1.227s-.54 1.227-1.227 1.227S0 1.914 0 1.227.54 0 1.227 0z &#039;fill=&#039;rgba(0,0,0,0.07)&#039;/%3E%3C/svg%3E &quot;)}.from-gray-700\/50{--tw-gradient-from:rgba(55,65,81,0.5);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,rgba(55,65,81,0))}.via-transparent{--tw-gradient-stops:var(--tw-gradient-from),transparent,var(--tw-gradient-to,transparent)}.bg-center{background-position:50%}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-0{padding-top:0;padding-bottom:0}.pr-8{padding-right:2rem}.pl-4{padding-left:1rem}.pt-10{padding-top:2.5rem}.pr-12{padding-right:3rem}.pt-2{padding-top:.5rem}.pb-1\.5{padding-bottom:.375rem}.pb-1{padding-bottom:.25rem}.pr-10{padding-right:2.5rem}.pl-6{padding-left:1.5rem}.pb-16{padding-bottom:4rem}.text-right{text-align:right}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-\[8px\]{font-size:8px}.font-semibold{font-weight:600}.font-medium{font-weight:500}.font-bold{font-weight:700}.font-normal{font-weight:400}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-snug{line-height:1.375}.leading-tight{line-height:1.25}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.tracking-wider{letter-spacing:.05em}.text-red-50{--tw-text-opacity:1;color:rgba(254,242,242,var(--tw-text-opacity))}.text-red-100{--tw-text-opacity:1;color:rgba(254,226,226,var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgba(31,41,55,var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.text-emerald-500{--tw-text-opacity:1;color:rgba(16,185,129,var(--tw-text-opacity))}.text-indigo-100{--tw-text-opacity:1;color:rgba(224,231,255,var(--tw-text-opacity))}.text-emerald-700{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.text-red-700{--tw-text-opacity:1;color:rgba(185,28,28,var(--tw-text-opacity))}.text-yellow-500{--tw-text-opacity:1;color:rgba(234,179,8,var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.text-opacity-75{--tw-text-opacity:0.75}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-50{opacity:.5}.opacity-80{opacity:.8}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow,.shadow-lg{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,0.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.shadow-2xl,.shadow-inner{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color:rgba(107,114,128,0.2);--tw-shadow:var(--tw-shadow-colored)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-animation{transition-property:transform,box-shadow,opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition{transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.delay-100{transition-delay:.1s}.duration-100{transition-duration:.1s}.duration-300{transition-duration:.3s}.duration-150{transition-duration:.15s}.duration-1000{transition-duration:1s}.duration-500{transition-duration:.5s}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.line-clamp-none{-webkit-line-clamp:unset}.first-letter\:uppercase:first-letter{text-transform:uppercase}.hover\:text-red-500:hover{--tw-text-opacity:1;color:rgba(239,68,68,var(--tw-text-opacity))}.hover\:text-violet-500:hover{--tw-text-opacity:1;color:rgba(139,92,246,var(--tw-text-opacity))}.hover\:text-indigo-500:hover{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}.hover\:text-emerald-800:hover{--tw-text-opacity:1;color:rgba(6,95,70,var(--tw-text-opacity))}.hover\:text-red-800:hover{--tw-text-opacity:1;color:rgba(153,27,27,var(--tw-text-opacity))}.hover\:text-emerald-700:hover{--tw-text-opacity:1;color:rgba(4,120,87,var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.hover\:shadow-lg:hover{--tw-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.hover\:shadow-lg:hover,.hover\:shadow-md:hover{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.active\:translate-y-px:active{--tw-translate-y:1px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:shadow-inner:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,0.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.active\:shadow-inner:active,.active\:shadow-sm:active{box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.active\:shadow-sm:active{--tw-shadow:0 1px 2px 0 rgba(0,0,0,0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.group:hover .group-hover\:scale-100{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:text-amber-400{--tw-text-opacity:1;color:rgba(251,191,36,var(--tw-text-opacity))}.group:hover .group-hover\:text-amber-300{--tw-text-opacity:1;color:rgba(252,211,77,var(--tw-text-opacity))}.group:hover .group-hover\:text-indigo-500{--tw-text-opacity:1;color:rgba(99,102,241,var(--tw-text-opacity))}.group:hover .group-hover\:opacity-50{opacity:.5}.group:hover .group-hover\:opacity-100{opacity:1}.peer:checked~.peer-checked\:translate-x-2{--tw-translate-x:0.5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:bg-emerald-300{--tw-bg-opacity:1;background-color:rgba(110,231,183,var(--tw-bg-opacity))}.dark .dark\:bg-gray-800\/50{background-color:rgba(31,41,55,.5)}.dark .dark\:bg-black\/10{background-color:rgba(0,0,0,.1)}.dark .dark\:bg-yellow-500\/10{background-color:rgba(234,179,8,.1)}.dark .dark\:bg-red-500\/10{background-color:rgba(239,68,68,.1)}.dark .dark\:bg-dots-lighter{background-image:url(&quot;data:image/svg+xml;charset=utf-8,%3Csvg width=&#039;30 &#039;height=&#039;30 &#039;fill=&#039;none &#039;xmlns=&#039;http://www.w3.org/2000/svg &#039;%3E%3Cpath d=&#039;M1.227 0c.687 0 1.227.54 1.227 1.227s-.54 1.227-1.227 1.227S0 1.914 0 1.227.54 0 1.227 0z &#039;fill=&#039;rgba(255,255,255,0.07)&#039;/%3E%3C/svg%3E &quot;)}.dark .dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.dark .dark\:shadow-none{--tw-shadow:0 0 transparent;--tw-shadow-colored:0 0 transparent;box-shadow:0 0 transparent,0 0 transparent,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow)}.dark .dark\:ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 transparent;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 transparent)}.dark .dark\:ring-inset{--tw-ring-inset:inset}.dark .dark\:ring-white\/5{--tw-ring-color:hsla(0,0%,100%,0.05)}@media (min-width:640px){.sm\:-ml-5{margin-left:-1.25rem}.sm\:-mr-5{margin-right:-1.25rem}.sm\:block{display:block}.sm\:inline-flex{display:inline-flex}.sm\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width:1024px){.lg\:absolute{position:absolute}.lg\:mr-20{margin-right:5rem}.lg\:flex{display:flex}.lg\:max-h-\[none\]{max-height:none}.lg\:w-1\/3{width:33.333333%}.lg\:w-2\/5{width:40%}.lg\:max-w-\[90rem\]{max-width:90rem}.lg\:grid-cols-\[33\.33\%\2c 66\.66\%\]{grid-template-columns:33.33% 66.66%}.lg\:grid-rows-\[57rem\]{grid-template-rows:57rem}.lg\:justify-start{justify-content:flex-start}.lg\:border-t-0{border-top-width:0}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem}}&lt;/style &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/head &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;body class=&quot;scrollbar-lg antialiased bg-center bg-dots-darker dark:bg-dots-lighter &quot;&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        window.data = {&quot;report &quot;:{&quot;notifier &quot;:&quot;Laravel Client &quot;,&quot;language &quot;:&quot;PHP &quot;,&quot;framework_version &quot;:&quot;9.52.4 &quot;,&quot;language_version &quot;:&quot;8.1.23 &quot;,&quot;exception_class &quot;:&quot;ValueError &quot;,&quot;seen_at &quot;:1697033083,&quot;message &quot;:&quot;Path cannot be empty &quot;,&quot;glows &quot;:[],&quot;solutions &quot;:[],&quot;documentation_links &quot;:[],&quot;stacktrace &quot;:[{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;fopen &quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\\Support\\Facades\\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config(\u0027system.api_archivos_url\u0027);&quot;,&quot;13 &quot;:&quot;$token = config(\u0027system.api_archivos_key\u0027);&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, \u0027r\u0027);&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response-\u003Eattach(\u0027documento\u0027, $documento, \u0027documento.pdf\u0027);&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, \u0027r\u0027);&quot;,&quot;20 &quot;:&quot;$nombre = $anexo-\u003EgetClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response-\u003Eattach(\u0027anexos_archivo_row[]\u0027, $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response-\u003Epost($api_url.\u0027guardarDocumentoGestionDocumental\u0027, [&quot;,&quot;25 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027folio\u0027, \u0027contents\u0027 =\u003E $folio],&quot;,&quot;26 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027tipo\u0027, \u0027contents\u0027 =\u003E $tipo],&quot;,&quot;27 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027sub_tipo\u0027, \u0027contents\u0027 =\u003E $sub_tipo],&quot;,&quot;28 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027version\u0027, \u0027contents\u0027 =\u003E $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response-\u003Esuccessful()){&quot;,&quot;32 &quot;:&quot;$data = $response-\u003Eobject();&quot;,&quot;33 &quot;:&quot;if($data-\u003Ecodigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;enviarArchivo &quot;,&quot;class &quot;:&quot;App\\Services\\ApiArchivoService &quot;,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\\Support\\Facades\\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config(\u0027system.api_archivos_url\u0027);&quot;,&quot;13 &quot;:&quot;$token = config(\u0027system.api_archivos_key\u0027);&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, \u0027r\u0027);&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response-\u003Eattach(\u0027documento\u0027, $documento, \u0027documento.pdf\u0027);&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, \u0027r\u0027);&quot;,&quot;20 &quot;:&quot;$nombre = $anexo-\u003EgetClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response-\u003Eattach(\u0027anexos_archivo_row[]\u0027, $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response-\u003Epost($api_url.\u0027guardarDocumentoGestionDocumental\u0027, [&quot;,&quot;25 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027folio\u0027, \u0027contents\u0027 =\u003E $folio],&quot;,&quot;26 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027tipo\u0027, \u0027contents\u0027 =\u003E $tipo],&quot;,&quot;27 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027sub_tipo\u0027, \u0027contents\u0027 =\u003E $sub_tipo],&quot;,&quot;28 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027version\u0027, \u0027contents\u0027 =\u003E $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response-\u003Esuccessful()){&quot;,&quot;32 &quot;:&quot;$data = $response-\u003Eobject();&quot;,&quot;33 &quot;:&quot;if($data-\u003Ecodigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Controllers\/ApiArchivosController.php &quot;,&quot;line_number &quot;:14,&quot;method &quot;:&quot;guardarArchivo &quot;,&quot;class &quot;:&quot;App\\Http\\Controllers\\ApiArchivosController &quot;,&quot;code_snippet &quot;:{&quot;1 &quot;:&quot;\u003C?php &quot;,&quot;2 &quot;:&quot;&quot;,&quot;3 &quot;:&quot;namespace App\\Http\\Controllers;&quot;,&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\\Http\\Request;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;use App\\Services\\ApiArchivoService;&quot;,&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;class ApiArchivosController extends Controller &quot;,&quot;10 &quot;:&quot;{&quot;,&quot;11 &quot;:&quot;public function guardarArchivo(Request $request){&quot;,&quot;12 &quot;:&quot;&quot;,&quot;13 &quot;:&quot;$anexos = $request-\u003Efile(\u0027anexos_archivo_row\u0027) ? $request-\u003Efile(\u0027anexos_archivo_row\u0027) : [];&quot;,&quot;14 &quot;:&quot;return ApiArchivoService::enviarArchivo($request-\u003Efile(\u0027documento\u0027), $request-\u003Efolio, $request-\u003Etipo, $request-\u003Esub_tipo,&quot;,&quot;15 &quot;:&quot;$request-\u003Eversion, $anexos);&quot;,&quot;16 &quot;:&quot;}&quot;,&quot;17 &quot;:&quot;&quot;,&quot;18 &quot;:&quot;public function obtenerArchivo(Request $request){&quot;,&quot;19 &quot;:&quot;&quot;,&quot;20 &quot;:&quot;return ApiArchivoService::obtenerArchivo($request-\u003Efolio, $request-\u003Etipo, $request-\u003Esub_tipo, $request-\u003Eversion);&quot;,&quot;21 &quot;:&quot;}&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;public function obtenerAnexo(Request $request){&quot;,&quot;24 &quot;:&quot;return ApiArchivoService::obtenerAnexo($request-\u003Efolio, $request-\u003Etipo, $request-\u003Esub_tipo, $request-\u003Enombre);&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;}&quot;,&quot;27 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;callAction &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Controller &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*\/&quot;,&quot;40 &quot;:&quot;public function getMiddleware()&quot;,&quot;41 &quot;:&quot;{&quot;,&quot;42 &quot;:&quot;return $this-\u003Emiddleware;&quot;,&quot;43 &quot;:&quot;}&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;\/**&quot;,&quot;46 &quot;:&quot;* Execute an action on the controller.&quot;,&quot;47 &quot;:&quot;*&quot;,&quot;48 &quot;:&quot;* @param  string  $method &quot;,&quot;49 &quot;:&quot;* @param  array  $parameters &quot;,&quot;50 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;51 &quot;:&quot;*\/&quot;,&quot;52 &quot;:&quot;public function callAction($method, $parameters)&quot;,&quot;53 &quot;:&quot;{&quot;,&quot;54 &quot;:&quot;return $this-\u003E{$method}(...array_values($parameters));&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;\/**&quot;,&quot;58 &quot;:&quot;* Handle calls to missing methods on the controller.&quot;,&quot;59 &quot;:&quot;*&quot;,&quot;60 &quot;:&quot;* @param  string  $method &quot;,&quot;61 &quot;:&quot;* @param  array  $parameters &quot;,&quot;62 &quot;:&quot;* @return mixed &quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @throws \\BadMethodCallException &quot;,&quot;65 &quot;:&quot;*\/&quot;,&quot;66 &quot;:&quot;public function __call($method, $parameters)&quot;,&quot;67 &quot;:&quot;{&quot;,&quot;68 &quot;:&quot;throw new BadMethodCallException(sprintf(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php &quot;,&quot;line_number &quot;:43,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\ControllerDispatcher &quot;,&quot;code_snippet &quot;:{&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Dispatch a request to a given controller and method.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;34 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;35 &quot;:&quot;* @param  string  $method &quot;,&quot;36 &quot;:&quot;* @return mixed &quot;,&quot;37 &quot;:&quot;*\/&quot;,&quot;38 &quot;:&quot;public function dispatch(Route $route, $controller, $method)&quot;,&quot;39 &quot;:&quot;{&quot;,&quot;40 &quot;:&quot;$parameters = $this-\u003EresolveParameters($route, $controller, $method);&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;if (method_exists($controller, \u0027callAction\u0027)) {&quot;,&quot;43 &quot;:&quot;return $controller-\u003EcallAction($method, $parameters);&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;,&quot;46 &quot;:&quot;return $controller-\u003E{$method}(...array_values($parameters));&quot;,&quot;47 &quot;:&quot;}&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;\/**&quot;,&quot;50 &quot;:&quot;* Resolve the parameters for the controller.&quot;,&quot;51 &quot;:&quot;*&quot;,&quot;52 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;53 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;54 &quot;:&quot;* @param  string  $method &quot;,&quot;55 &quot;:&quot;* @return array &quot;,&quot;56 &quot;:&quot;*\/&quot;,&quot;57 &quot;:&quot;protected function resolveParameters(Route $route, $controller, $method)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:260,&quot;method &quot;:&quot;runController &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Route &quot;,&quot;code_snippet &quot;:{&quot;245 &quot;:&quot;protected function isSerializedClosure()&quot;,&quot;246 &quot;:&quot;{&quot;,&quot;247 &quot;:&quot;return RouteAction::containsSerializedClosure($this-\u003Eaction);&quot;,&quot;248 &quot;:&quot;}&quot;,&quot;249 &quot;:&quot;&quot;,&quot;250 &quot;:&quot;\/**&quot;,&quot;251 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;252 &quot;:&quot;*&quot;,&quot;253 &quot;:&quot;* @return mixed &quot;,&quot;254 &quot;:&quot;*&quot;,&quot;255 &quot;:&quot;* @throws \\Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException &quot;,&quot;256 &quot;:&quot;*\/&quot;,&quot;257 &quot;:&quot;protected function runController()&quot;,&quot;258 &quot;:&quot;{&quot;,&quot;259 &quot;:&quot;return $this-\u003EcontrollerDispatcher()-\u003Edispatch(&quot;,&quot;260 &quot;:&quot;$this, $this-\u003EgetController(), $this-\u003EgetControllerMethod()&quot;,&quot;261 &quot;:&quot;);&quot;,&quot;262 &quot;:&quot;}&quot;,&quot;263 &quot;:&quot;&quot;,&quot;264 &quot;:&quot;\/**&quot;,&quot;265 &quot;:&quot;* Get the controller instance for the route.&quot;,&quot;266 &quot;:&quot;*&quot;,&quot;267 &quot;:&quot;* @return mixed &quot;,&quot;268 &quot;:&quot;*\/&quot;,&quot;269 &quot;:&quot;public function getController()&quot;,&quot;270 &quot;:&quot;{&quot;,&quot;271 &quot;:&quot;if (! $this-\u003Econtroller) {&quot;,&quot;272 &quot;:&quot;$class = $this-\u003EgetControllerClass();&quot;,&quot;273 &quot;:&quot;&quot;,&quot;274 &quot;:&quot;$this-\u003Econtroller = $this-\u003Econtainer-\u003Emake(ltrim($class, \u0027\\\\\u0027));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:205,&quot;method &quot;:&quot;run &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Route &quot;,&quot;code_snippet &quot;:{&quot;190 &quot;:&quot;{&quot;,&quot;191 &quot;:&quot;return RouteAction::parse($this-\u003Euri, $action);&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @return mixed &quot;,&quot;198 &quot;:&quot;*\/&quot;,&quot;199 &quot;:&quot;public function run()&quot;,&quot;200 &quot;:&quot;{&quot;,&quot;201 &quot;:&quot;$this-\u003Econtainer = $this-\u003Econtainer ?: new Container;&quot;,&quot;202 &quot;:&quot;&quot;,&quot;203 &quot;:&quot;try {&quot;,&quot;204 &quot;:&quot;if ($this-\u003EisControllerAction()) {&quot;,&quot;205 &quot;:&quot;return $this-\u003ErunController();&quot;,&quot;206 &quot;:&quot;}&quot;,&quot;207 &quot;:&quot;&quot;,&quot;208 &quot;:&quot;return $this-\u003ErunCallable();&quot;,&quot;209 &quot;:&quot;} catch (HttpResponseException $e) {&quot;,&quot;210 &quot;:&quot;return $e-\u003EgetResponse();&quot;,&quot;211 &quot;:&quot;}&quot;,&quot;212 &quot;:&quot;}&quot;,&quot;213 &quot;:&quot;&quot;,&quot;214 &quot;:&quot;\/**&quot;,&quot;215 &quot;:&quot;* Checks whether the route\u0027s action is a controller.&quot;,&quot;216 &quot;:&quot;*&quot;,&quot;217 &quot;:&quot;* @return bool &quot;,&quot;218 &quot;:&quot;*\/&quot;,&quot;219 &quot;:&quot;protected function isControllerAction()&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:798,&quot;method &quot;:&quot;Illuminate\\Routing\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;783 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this-\u003Econtainer-\u003Ebound(\u0027middleware.disable\u0027) \u0026\u0026 &quot;,&quot;790 &quot;:&quot;$this-\u003Econtainer-\u003Emake(\u0027middleware.disable\u0027) === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this-\u003EgatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this-\u003Econtainer))&quot;,&quot;795 &quot;:&quot;-\u003Esend($request)&quot;,&quot;796 &quot;:&quot;-\u003Ethrough($middleware)&quot;,&quot;797 &quot;:&quot;-\u003Ethen(fn ($request) =\u003E $this-\u003EprepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route-\u003Erun()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this-\u003EresolveMiddleware($route-\u003EgatherMiddleware(), $route-\u003EexcludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \\Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \\Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Middleware\/TokenAuth.php &quot;,&quot;line_number &quot;:28,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;App\\Http\\Middleware\\TokenAuth &quot;,&quot;code_snippet &quot;:{&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;use App\\Models\\Sistema;&quot;,&quot;10 &quot;:&quot;use App\\Models\\SistemaKey;&quot;,&quot;11 &quot;:&quot;&quot;,&quot;12 &quot;:&quot;class TokenAuth &quot;,&quot;13 &quot;:&quot;{&quot;,&quot;14 &quot;:&quot;\/**&quot;,&quot;15 &quot;:&quot;* Handle an incoming request.&quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;18 &quot;:&quot;* @param  \\Closure(\\Illuminate\\Http\\Request): (\\Illuminate\\Http\\Response|\\Illuminate\\Http\\RedirectResponse)  $next &quot;,&quot;19 &quot;:&quot;* @return \\Illuminate\\Http\\Response|\\Illuminate\\Http\\RedirectResponse &quot;,&quot;20 &quot;:&quot;*\/&quot;,&quot;21 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;22 &quot;:&quot;{&quot;,&quot;23 &quot;:&quot;$sistema_key = SistemaKey::where(\u0027sis_key_valor\u0027, $request-\u003EbearerToken())-\u003Efirst();&quot;,&quot;24 &quot;:&quot;if($sistema_key){&quot;,&quot;25 &quot;:&quot;$sistema = Sistema::where(\u0027sis_id\u0027, $sistema_key-\u003Esis_id)-\u003Efirst();&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;if($sistema_key-\u003Esis_key_fecha_expiracion \u003E Carbon::now() \u0026\u0026 $sistema){&quot;,&quot;28 &quot;:&quot;return $next($request);&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;else{&quot;,&quot;31 &quot;:&quot;return response()-\u003Ejson([\u0027codigo\u0027 =\u003E 4002, \u0027mensaje\u0027 =\u003E \u0027Token no valida\u0027]);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;}&quot;,&quot;34 &quot;:&quot;return response()-\u003Ejson([\u0027codigo\u0027 =\u003E 4001, \u0027mensaje\u0027 =\u003E \u0027Sin autorizacion\u0027]);&quot;,&quot;35 &quot;:&quot;}&quot;,&quot;36 &quot;:&quot;}&quot;,&quot;37 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/SubstituteBindings.php &quot;,&quot;line_number &quot;:50,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\SubstituteBindings &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;public function __construct(Registrar $router)&quot;,&quot;25 &quot;:&quot;{&quot;,&quot;26 &quot;:&quot;$this-\u003Erouter = $router;&quot;,&quot;27 &quot;:&quot;}&quot;,&quot;28 &quot;:&quot;&quot;,&quot;29 &quot;:&quot;\/**&quot;,&quot;30 &quot;:&quot;* Handle an incoming request.&quot;,&quot;31 &quot;:&quot;*&quot;,&quot;32 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;33 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;34 &quot;:&quot;* @return mixed &quot;,&quot;35 &quot;:&quot;*\/&quot;,&quot;36 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;37 &quot;:&quot;{&quot;,&quot;38 &quot;:&quot;try {&quot;,&quot;39 &quot;:&quot;$this-\u003Erouter-\u003EsubstituteBindings($route = $request-\u003Eroute());&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$this-\u003Erouter-\u003EsubstituteImplicitBindings($route);&quot;,&quot;42 &quot;:&quot;} catch (ModelNotFoundException $exception) {&quot;,&quot;43 &quot;:&quot;if ($route-\u003EgetMissing()) {&quot;,&quot;44 &quot;:&quot;return $route-\u003EgetMissing()($request, $exception);&quot;,&quot;45 &quot;:&quot;}&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;throw $exception;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;return $next($request);&quot;,&quot;51 &quot;:&quot;}&quot;,&quot;52 &quot;:&quot;}&quot;,&quot;53 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:126,&quot;method &quot;:&quot;handleRequest &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;,&quot;117 &quot;:&quot;{&quot;,&quot;118 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;119 &quot;:&quot;if ($this-\u003Elimiter-\u003EtooManyAttempts($limit-\u003Ekey, $limit-\u003EmaxAttempts)) {&quot;,&quot;120 &quot;:&quot;throw $this-\u003EbuildException($request, $limit-\u003Ekey, $limit-\u003EmaxAttempts, $limit-\u003EresponseCallback);&quot;,&quot;121 &quot;:&quot;}&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this-\u003Elimiter-\u003Ehit($limit-\u003Ekey, $limit-\u003EdecayMinutes * 60);&quot;,&quot;124 &quot;:&quot;}&quot;,&quot;125 &quot;:&quot;&quot;,&quot;126 &quot;:&quot;$response = $next($request);&quot;,&quot;127 &quot;:&quot;&quot;,&quot;128 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;129 &quot;:&quot;$response = $this-\u003EaddHeaders(&quot;,&quot;130 &quot;:&quot;$response,&quot;,&quot;131 &quot;:&quot;$limit-\u003EmaxAttempts,&quot;,&quot;132 &quot;:&quot;$this-\u003EcalculateRemainingAttempts($limit-\u003Ekey, $limit-\u003EmaxAttempts)&quot;,&quot;133 &quot;:&quot;);&quot;,&quot;134 &quot;:&quot;}&quot;,&quot;135 &quot;:&quot;&quot;,&quot;136 &quot;:&quot;return $response;&quot;,&quot;137 &quot;:&quot;}&quot;,&quot;138 &quot;:&quot;&quot;,&quot;139 &quot;:&quot;\/**&quot;,&quot;140 &quot;:&quot;* Resolve the number of attempts if the user is authenticated or not.&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:102,&quot;method &quot;:&quot;handleRequestUsingNamedLimiter &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;87 &quot;:&quot;return $limiterResponse;&quot;,&quot;88 &quot;:&quot;} elseif ($limiterResponse instanceof Unlimited) {&quot;,&quot;89 &quot;:&quot;return $next($request);&quot;,&quot;90 &quot;:&quot;}&quot;,&quot;91 &quot;:&quot;&quot;,&quot;92 &quot;:&quot;return $this-\u003EhandleRequest(&quot;,&quot;93 &quot;:&quot;$request,&quot;,&quot;94 &quot;:&quot;$next,&quot;,&quot;95 &quot;:&quot;collect(Arr::wrap($limiterResponse))-\u003Emap(function ($limit) use ($limiterName) {&quot;,&quot;96 &quot;:&quot;return (object) [&quot;,&quot;97 &quot;:&quot;\u0027key\u0027 =\u003E md5($limiterName.$limit-\u003Ekey),&quot;,&quot;98 &quot;:&quot;\u0027maxAttempts\u0027 =\u003E $limit-\u003EmaxAttempts,&quot;,&quot;99 &quot;:&quot;\u0027decayMinutes\u0027 =\u003E $limit-\u003EdecayMinutes,&quot;,&quot;100 &quot;:&quot;\u0027responseCallback\u0027 =\u003E $limit-\u003EresponseCallback,&quot;,&quot;101 &quot;:&quot;];&quot;,&quot;102 &quot;:&quot;})-\u003Eall()&quot;,&quot;103 &quot;:&quot;);&quot;,&quot;104 &quot;:&quot;}&quot;,&quot;105 &quot;:&quot;&quot;,&quot;106 &quot;:&quot;\/**&quot;,&quot;107 &quot;:&quot;* Handle an incoming request.&quot;,&quot;108 &quot;:&quot;*&quot;,&quot;109 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;110 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*&quot;,&quot;40 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;41 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;42 &quot;:&quot;* @param  int|string  $maxAttempts &quot;,&quot;43 &quot;:&quot;* @param  float|int  $decayMinutes &quot;,&quot;44 &quot;:&quot;* @param  string  $prefix &quot;,&quot;45 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;46 &quot;:&quot;*&quot;,&quot;47 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\ThrottleRequestsException &quot;,&quot;48 &quot;:&quot;*\/&quot;,&quot;49 &quot;:&quot;public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = \u0027\u0027)&quot;,&quot;50 &quot;:&quot;{&quot;,&quot;51 &quot;:&quot;if (is_string($maxAttempts)&quot;,&quot;52 &quot;:&quot;\u0026\u0026 func_num_args() === 3 &quot;,&quot;53 &quot;:&quot;\u0026\u0026 ! is_null($limiter = $this-\u003Elimiter-\u003Elimiter($maxAttempts))) {&quot;,&quot;54 &quot;:&quot;return $this-\u003EhandleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;return $this-\u003EhandleRequest(&quot;,&quot;58 &quot;:&quot;$request,&quot;,&quot;59 &quot;:&quot;$next,&quot;,&quot;60 &quot;:&quot;[&quot;,&quot;61 &quot;:&quot;(object) [&quot;,&quot;62 &quot;:&quot;\u0027key\u0027 =\u003E $prefix.$this-\u003EresolveRequestSignature($request),&quot;,&quot;63 &quot;:&quot;\u0027maxAttempts\u0027 =\u003E $this-\u003EresolveMaxAttempts($request, $maxAttempts),&quot;,&quot;64 &quot;:&quot;\u0027decayMinutes\u0027 =\u003E $decayMinutes,&quot;,&quot;65 &quot;:&quot;\u0027responseCallback\u0027 =\u003E null,&quot;,&quot;66 &quot;:&quot;],&quot;,&quot;67 &quot;:&quot;]&quot;,&quot;68 &quot;:&quot;);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this-\u003Epipes()), $this-\u003Ecarry(), $this-\u003EprepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this-\u003Epassable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:799,&quot;method &quot;:&quot;runRouteWithinStack &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;784 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this-\u003Econtainer-\u003Ebound(\u0027middleware.disable\u0027) \u0026\u0026 &quot;,&quot;790 &quot;:&quot;$this-\u003Econtainer-\u003Emake(\u0027middleware.disable\u0027) === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this-\u003EgatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this-\u003Econtainer))&quot;,&quot;795 &quot;:&quot;-\u003Esend($request)&quot;,&quot;796 &quot;:&quot;-\u003Ethrough($middleware)&quot;,&quot;797 &quot;:&quot;-\u003Ethen(fn ($request) =\u003E $this-\u003EprepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route-\u003Erun()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this-\u003EresolveMiddleware($route-\u003EgatherMiddleware(), $route-\u003EexcludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;,&quot;813 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:776,&quot;method &quot;:&quot;runRoute &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;761 &quot;:&quot;&quot;,&quot;762 &quot;:&quot;\/**&quot;,&quot;763 &quot;:&quot;* Return the response for the given route.&quot;,&quot;764 &quot;:&quot;*&quot;,&quot;765 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;766 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;767 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;768 &quot;:&quot;*\/&quot;,&quot;769 &quot;:&quot;protected function runRoute(Request $request, Route $route)&quot;,&quot;770 &quot;:&quot;{&quot;,&quot;771 &quot;:&quot;$request-\u003EsetRouteResolver(fn () =\u003E $route);&quot;,&quot;772 &quot;:&quot;&quot;,&quot;773 &quot;:&quot;$this-\u003Eevents-\u003Edispatch(new RouteMatched($route, $request));&quot;,&quot;774 &quot;:&quot;&quot;,&quot;775 &quot;:&quot;return $this-\u003EprepareResponse($request,&quot;,&quot;776 &quot;:&quot;$this-\u003ErunRouteWithinStack($route, $request)&quot;,&quot;777 &quot;:&quot;);&quot;,&quot;778 &quot;:&quot;}&quot;,&quot;779 &quot;:&quot;&quot;,&quot;780 &quot;:&quot;\/**&quot;,&quot;781 &quot;:&quot;* Run the given route within a Stack \u0022onion\u0022 instance.&quot;,&quot;782 &quot;:&quot;*&quot;,&quot;783 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this-\u003Econtainer-\u003Ebound(\u0027middleware.disable\u0027) \u0026\u0026 &quot;,&quot;790 &quot;:&quot;$this-\u003Econtainer-\u003Emake(\u0027middleware.disable\u0027) === true;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:740,&quot;method &quot;:&quot;dispatchToRoute &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this-\u003EcurrentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this-\u003EdispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this-\u003ErunRoute($request, $this-\u003EfindRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;,&quot;744 &quot;:&quot;* Find the route matching a given request.&quot;,&quot;745 &quot;:&quot;*&quot;,&quot;746 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;747 &quot;:&quot;* @return \\Illuminate\\Routing\\Route &quot;,&quot;748 &quot;:&quot;*\/&quot;,&quot;749 &quot;:&quot;protected function findRoute($request)&quot;,&quot;750 &quot;:&quot;{&quot;,&quot;751 &quot;:&quot;$this-\u003Eevents-\u003Edispatch(new Routing($request));&quot;,&quot;752 &quot;:&quot;&quot;,&quot;753 &quot;:&quot;$this-\u003Ecurrent = $route = $this-\u003Eroutes-\u003Ematch($request);&quot;,&quot;754 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:729,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;714 &quot;:&quot;$route = tap($this-\u003Eroutes-\u003EgetByName($name))-\u003Ebind($this-\u003EcurrentRequest);&quot;,&quot;715 &quot;:&quot;&quot;,&quot;716 &quot;:&quot;return $this-\u003ErunRoute($this-\u003EcurrentRequest, $route);&quot;,&quot;717 &quot;:&quot;}&quot;,&quot;718 &quot;:&quot;&quot;,&quot;719 &quot;:&quot;\/**&quot;,&quot;720 &quot;:&quot;* Dispatch the request to the application.&quot;,&quot;721 &quot;:&quot;*&quot;,&quot;722 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;723 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;724 &quot;:&quot;*\/&quot;,&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this-\u003EcurrentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this-\u003EdispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this-\u003ErunRoute($request, $this-\u003EfindRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:190,&quot;method &quot;:&quot;Illuminate\\Foundation\\Http\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Kernel &quot;,&quot;code_snippet &quot;:{&quot;175 &quot;:&quot;if (! $this-\u003Eapp-\u003EhasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this-\u003Eapp-\u003EbootstrapWith($this-\u003Ebootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;,&quot;180 &quot;:&quot;\/**&quot;,&quot;181 &quot;:&quot;* Get the route dispatcher callback.&quot;,&quot;182 &quot;:&quot;*&quot;,&quot;183 &quot;:&quot;* @return \\Closure &quot;,&quot;184 &quot;:&quot;*\/&quot;,&quot;185 &quot;:&quot;protected function dispatchToRouter()&quot;,&quot;186 &quot;:&quot;{&quot;,&quot;187 &quot;:&quot;return function ($request) {&quot;,&quot;188 &quot;:&quot;$this-\u003Eapp-\u003Einstance(\u0027request\u0027, $request);&quot;,&quot;189 &quot;:&quot;&quot;,&quot;190 &quot;:&quot;return $this-\u003Erouter-\u003Edispatch($request);&quot;,&quot;191 &quot;:&quot;};&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Call the terminate method on any terminable middleware.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;198 &quot;:&quot;* @param  \\Illuminate\\Http\\Response  $response &quot;,&quot;199 &quot;:&quot;* @return void &quot;,&quot;200 &quot;:&quot;*\/&quot;,&quot;201 &quot;:&quot;public function terminate($request, $response)&quot;,&quot;202 &quot;:&quot;{&quot;,&quot;203 &quot;:&quot;$this-\u003EterminateMiddleware($request, $response);&quot;,&quot;204 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \\Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \\Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\\Component\\HttpFoundation\\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this-\u003Eclean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request\u0027s data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Equery);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request-\u003EisJson()) {&quot;,&quot;35 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Ejson());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ConvertEmptyStringsToNull.php &quot;,&quot;line_number &quot;:31,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull &quot;,&quot;code_snippet &quot;:{&quot;16 &quot;:&quot;\/**&quot;,&quot;17 &quot;:&quot;* Handle an incoming request.&quot;,&quot;18 &quot;:&quot;*&quot;,&quot;19 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;20 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;21 &quot;:&quot;* @return mixed &quot;,&quot;22 &quot;:&quot;*\/&quot;,&quot;23 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;24 &quot;:&quot;{&quot;,&quot;25 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;26 &quot;:&quot;if ($callback($request)) {&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;\/**&quot;,&quot;35 &quot;:&quot;* Transform the given value.&quot;,&quot;36 &quot;:&quot;*&quot;,&quot;37 &quot;:&quot;* @param  string  $key &quot;,&quot;38 &quot;:&quot;* @param  mixed  $value &quot;,&quot;39 &quot;:&quot;* @return mixed &quot;,&quot;40 &quot;:&quot;*\/&quot;,&quot;41 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;42 &quot;:&quot;{&quot;,&quot;43 &quot;:&quot;return $value === \u0027\u0027 ? null : $value;&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\\Component\\HttpFoundation\\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this-\u003Eclean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request\u0027s data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Equery);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request-\u003EisJson()) {&quot;,&quot;35 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Ejson());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TrimStrings.php &quot;,&quot;line_number &quot;:40,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\TrimStrings &quot;,&quot;code_snippet &quot;:{&quot;25 &quot;:&quot;\/**&quot;,&quot;26 &quot;:&quot;* Handle an incoming request.&quot;,&quot;27 &quot;:&quot;*&quot;,&quot;28 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;29 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;30 &quot;:&quot;* @return mixed &quot;,&quot;31 &quot;:&quot;*\/&quot;,&quot;32 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;33 &quot;:&quot;{&quot;,&quot;34 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;35 &quot;:&quot;if ($callback($request)) {&quot;,&quot;36 &quot;:&quot;return $next($request);&quot;,&quot;37 &quot;:&quot;}&quot;,&quot;38 &quot;:&quot;}&quot;,&quot;39 &quot;:&quot;&quot;,&quot;40 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;41 &quot;:&quot;}&quot;,&quot;42 &quot;:&quot;&quot;,&quot;43 &quot;:&quot;\/**&quot;,&quot;44 &quot;:&quot;* Transform the given value.&quot;,&quot;45 &quot;:&quot;*&quot;,&quot;46 &quot;:&quot;* @param  string  $key &quot;,&quot;47 &quot;:&quot;* @param  mixed  $value &quot;,&quot;48 &quot;:&quot;* @return mixed &quot;,&quot;49 &quot;:&quot;*\/&quot;,&quot;50 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;51 &quot;:&quot;{&quot;,&quot;52 &quot;:&quot;if (in_array($key, $this-\u003Eexcept, true) || ! is_string($value)) {&quot;,&quot;53 &quot;:&quot;return $value;&quot;,&quot;54 &quot;:&quot;}&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ValidatePostSize.php &quot;,&quot;line_number &quot;:27,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize &quot;,&quot;code_snippet &quot;:{&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException &quot;,&quot;18 &quot;:&quot;*\/&quot;,&quot;19 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;20 &quot;:&quot;{&quot;,&quot;21 &quot;:&quot;$max = $this-\u003EgetPostMaxSize();&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;if ($max \u003E 0 \u0026\u0026 $request-\u003Eserver(\u0027CONTENT_LENGTH\u0027) \u003E $max) {&quot;,&quot;24 &quot;:&quot;throw new PostTooLargeException;&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Determine the server \u0027post_max_size\u0027 as bytes.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @return int &quot;,&quot;34 &quot;:&quot;*\/&quot;,&quot;35 &quot;:&quot;protected function getPostMaxSize()&quot;,&quot;36 &quot;:&quot;{&quot;,&quot;37 &quot;:&quot;if (is_numeric($postMaxSize = ini_get(\u0027post_max_size\u0027))) {&quot;,&quot;38 &quot;:&quot;return (int) $postMaxSize;&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$metric = strtoupper(substr($postMaxSize, -1));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/PreventRequestsDuringMaintenance.php &quot;,&quot;line_number &quot;:86,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance &quot;,&quot;code_snippet &quot;:{&quot;71 &quot;:&quot;return response(&quot;,&quot;72 &quot;:&quot;$data[\u0027template\u0027],&quot;,&quot;73 &quot;:&quot;$data[\u0027status\u0027] ?? 503,&quot;,&quot;74 &quot;:&quot;$this-\u003EgetHeaders($data)&quot;,&quot;75 &quot;:&quot;);&quot;,&quot;76 &quot;:&quot;}&quot;,&quot;77 &quot;:&quot;&quot;,&quot;78 &quot;:&quot;throw new HttpException(&quot;,&quot;79 &quot;:&quot;$data[\u0027status\u0027] ?? 503,&quot;,&quot;80 &quot;:&quot;\u0027Service Unavailable\u0027,&quot;,&quot;81 &quot;:&quot;null,&quot;,&quot;82 &quot;:&quot;$this-\u003EgetHeaders($data)&quot;,&quot;83 &quot;:&quot;);&quot;,&quot;84 &quot;:&quot;}&quot;,&quot;85 &quot;:&quot;&quot;,&quot;86 &quot;:&quot;return $next($request);&quot;,&quot;87 &quot;:&quot;}&quot;,&quot;88 &quot;:&quot;&quot;,&quot;89 &quot;:&quot;\/**&quot;,&quot;90 &quot;:&quot;* Determine if the incoming request has a maintenance mode bypass cookie.&quot;,&quot;91 &quot;:&quot;*&quot;,&quot;92 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;93 &quot;:&quot;* @param  array  $data &quot;,&quot;94 &quot;:&quot;* @return bool &quot;,&quot;95 &quot;:&quot;*\/&quot;,&quot;96 &quot;:&quot;protected function hasValidBypassCookie($request, array $data)&quot;,&quot;97 &quot;:&quot;{&quot;,&quot;98 &quot;:&quot;return isset($data[\u0027secret\u0027]) \u0026\u0026 &quot;,&quot;99 &quot;:&quot;$request-\u003Ecookie(\u0027laravel_maintenance\u0027) \u0026\u0026 &quot;,&quot;100 &quot;:&quot;MaintenanceModeBypassCookie::isValid(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/fruitcake\/laravel-cors\/src\/HandleCors.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Fruitcake\\Cors\\HandleCors &quot;,&quot;code_snippet &quot;:{&quot;37 &quot;:&quot;if (! $this-\u003EshouldRun($request)) {&quot;,&quot;38 &quot;:&quot;return $next($request);&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;\/\/ For Preflight, return the Preflight response &quot;,&quot;42 &quot;:&quot;if ($this-\u003Ecors-\u003EisPreflightRequest($request)) {&quot;,&quot;43 &quot;:&quot;$response = $this-\u003Ecors-\u003EhandlePreflightRequest($request);&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;$this-\u003Ecors-\u003EvaryHeader($response, \u0027Access-Control-Request-Method\u0027);&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;return $response;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;\/\/ Handle the request &quot;,&quot;52 &quot;:&quot;$response = $next($request);&quot;,&quot;53 &quot;:&quot;&quot;,&quot;54 &quot;:&quot;if ($request-\u003EgetMethod() === \u0027OPTIONS\u0027) {&quot;,&quot;55 &quot;:&quot;$this-\u003Ecors-\u003EvaryHeader($response, \u0027Access-Control-Request-Method\u0027);&quot;,&quot;56 &quot;:&quot;}&quot;,&quot;57 &quot;:&quot;&quot;,&quot;58 &quot;:&quot;return $this-\u003EaddHeaders($request, $response);&quot;,&quot;59 &quot;:&quot;}&quot;,&quot;60 &quot;:&quot;&quot;,&quot;61 &quot;:&quot;\/**&quot;,&quot;62 &quot;:&quot;* Add the headers to the Response, if they don\u0027t exist yet.&quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @param Request $request &quot;,&quot;65 &quot;:&quot;* @param Response $response &quot;,&quot;66 &quot;:&quot;* @return Response &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Http\/Middleware\/TrustProxies.php &quot;,&quot;line_number &quot;:39,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Http\\Middleware\\TrustProxies &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Handle an incoming request.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;28 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;29 &quot;:&quot;* @return mixed &quot;,&quot;30 &quot;:&quot;*&quot;,&quot;31 &quot;:&quot;* @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException &quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;34 &quot;:&quot;{&quot;,&quot;35 &quot;:&quot;$request::setTrustedProxies([], $this-\u003EgetTrustedHeaderNames());&quot;,&quot;36 &quot;:&quot;&quot;,&quot;37 &quot;:&quot;$this-\u003EsetTrustedProxyIpAddresses($request);&quot;,&quot;38 &quot;:&quot;&quot;,&quot;39 &quot;:&quot;return $next($request);&quot;,&quot;40 &quot;:&quot;}&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;\/**&quot;,&quot;43 &quot;:&quot;* Sets the trusted proxies on the request.&quot;,&quot;44 &quot;:&quot;*&quot;,&quot;45 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;46 &quot;:&quot;* @return void &quot;,&quot;47 &quot;:&quot;*\/&quot;,&quot;48 &quot;:&quot;protected function setTrustedProxyIpAddresses(Request $request)&quot;,&quot;49 &quot;:&quot;{&quot;,&quot;50 &quot;:&quot;$trustedIps = $this-\u003Eproxies() ?: config(\u0027trustedproxy.proxies\u0027);&quot;,&quot;51 &quot;:&quot;&quot;,&quot;52 &quot;:&quot;if ($trustedIps === \u0027*\u0027 || $trustedIps === \u0027**\u0027) {&quot;,&quot;53 &quot;:&quot;return $this-\u003EsetTrustedProxyIpAddressesToTheCallingIp($request);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:121,&quot;method &quot;:&quot;handleStatefulRequest &quot;,&quot;class &quot;:&quot;Illuminate\\Session\\Middleware\\StartSession &quot;,&quot;code_snippet &quot;:{&quot;106 &quot;:&quot;* @param  \\Illuminate\\Contracts\\Session\\Session  $session &quot;,&quot;107 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;protected function handleStatefulRequest(Request $request, $session, Closure $next)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;\/\/ If a session driver has been configured, we will need to start the session here &quot;,&quot;113 &quot;:&quot;\/\/ so that the data is ready for an application. Note that the Laravel sessions &quot;,&quot;114 &quot;:&quot;\/\/ do not make use of PHP \u0022native\u0022 sessions in any way since they are crappy.&quot;,&quot;115 &quot;:&quot;$request-\u003EsetLaravelSession(&quot;,&quot;116 &quot;:&quot;$this-\u003EstartSession($request, $session)&quot;,&quot;117 &quot;:&quot;);&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;$this-\u003EcollectGarbage($session);&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;$response = $next($request);&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this-\u003EstoreCurrentUrl($request, $session);&quot;,&quot;124 &quot;:&quot;&quot;,&quot;125 &quot;:&quot;$this-\u003EaddCookieToResponse($response, $session);&quot;,&quot;126 &quot;:&quot;&quot;,&quot;127 &quot;:&quot;\/\/ Again, if the session has been configured we will need to close out the session &quot;,&quot;128 &quot;:&quot;\/\/ so that the attributes may be persisted to some storage medium. We will also &quot;,&quot;129 &quot;:&quot;\/\/ add the session identifier cookie to the application response headers now.&quot;,&quot;130 &quot;:&quot;$this-\u003EsaveSession($request);&quot;,&quot;131 &quot;:&quot;&quot;,&quot;132 &quot;:&quot;return $response;&quot;,&quot;133 &quot;:&quot;}&quot;,&quot;134 &quot;:&quot;&quot;,&quot;135 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:64,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Session\\Middleware\\StartSession &quot;,&quot;code_snippet &quot;:{&quot;49 &quot;:&quot;* @return mixed &quot;,&quot;50 &quot;:&quot;*\/&quot;,&quot;51 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;52 &quot;:&quot;{&quot;,&quot;53 &quot;:&quot;if (! $this-\u003EsessionConfigured()) {&quot;,&quot;54 &quot;:&quot;return $next($request);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;$session = $this-\u003EgetSession($request);&quot;,&quot;58 &quot;:&quot;&quot;,&quot;59 &quot;:&quot;if ($this-\u003Emanager-\u003EshouldBlock() ||&quot;,&quot;60 &quot;:&quot;($request-\u003Eroute() instanceof Route \u0026\u0026 $request-\u003Eroute()-\u003ElocksFor())) {&quot;,&quot;61 &quot;:&quot;return $this-\u003EhandleRequestWhileBlocking($request, $session, $next);&quot;,&quot;62 &quot;:&quot;}&quot;,&quot;63 &quot;:&quot;&quot;,&quot;64 &quot;:&quot;return $this-\u003EhandleStatefulRequest($request, $session, $next);&quot;,&quot;65 &quot;:&quot;}&quot;,&quot;66 &quot;:&quot;&quot;,&quot;67 &quot;:&quot;\/**&quot;,&quot;68 &quot;:&quot;* Handle the given request within session state.&quot;,&quot;69 &quot;:&quot;*&quot;,&quot;70 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;71 &quot;:&quot;* @param  \\Illuminate\\Contracts\\Session\\Session  $session &quot;,&quot;72 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;73 &quot;:&quot;* @return mixed &quot;,&quot;74 &quot;:&quot;*\/&quot;,&quot;75 &quot;:&quot;protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)&quot;,&quot;76 &quot;:&quot;{&quot;,&quot;77 &quot;:&quot;if (! $request-\u003Eroute() instanceof Route) {&quot;,&quot;78 &quot;:&quot;return;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this-\u003Epipes()), $this-\u003Ecarry(), $this-\u003EprepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this-\u003Epassable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:165,&quot;method &quot;:&quot;sendRequestThroughRouter &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Kernel &quot;,&quot;code_snippet &quot;:{&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;152 &quot;:&quot;* @return \\Illuminate\\Http\\Response &quot;,&quot;153 &quot;:&quot;*\/&quot;,&quot;154 &quot;:&quot;protected function sendRequestThroughRouter($request)&quot;,&quot;155 &quot;:&quot;{&quot;,&quot;156 &quot;:&quot;$this-\u003Eapp-\u003Einstance(\u0027request\u0027, $request);&quot;,&quot;157 &quot;:&quot;&quot;,&quot;158 &quot;:&quot;Facade::clearResolvedInstance(\u0027request\u0027);&quot;,&quot;159 &quot;:&quot;&quot;,&quot;160 &quot;:&quot;$this-\u003Ebootstrap();&quot;,&quot;161 &quot;:&quot;&quot;,&quot;162 &quot;:&quot;return (new Pipeline($this-\u003Eapp))&quot;,&quot;163 &quot;:&quot;-\u003Esend($request)&quot;,&quot;164 &quot;:&quot;-\u003Ethrough($this-\u003Eapp-\u003EshouldSkipMiddleware() ? [] : $this-\u003Emiddleware)&quot;,&quot;165 &quot;:&quot;-\u003Ethen($this-\u003EdispatchToRouter());&quot;,&quot;166 &quot;:&quot;}&quot;,&quot;167 &quot;:&quot;&quot;,&quot;168 &quot;:&quot;\/**&quot;,&quot;169 &quot;:&quot;* Bootstrap the application for HTTP requests.&quot;,&quot;170 &quot;:&quot;*&quot;,&quot;171 &quot;:&quot;* @return void &quot;,&quot;172 &quot;:&quot;*\/&quot;,&quot;173 &quot;:&quot;public function bootstrap()&quot;,&quot;174 &quot;:&quot;{&quot;,&quot;175 &quot;:&quot;if (! $this-\u003Eapp-\u003EhasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this-\u003Eapp-\u003EbootstrapWith($this-\u003Ebootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:134,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Kernel &quot;,&quot;code_snippet &quot;:{&quot;119 &quot;:&quot;}&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;\/**&quot;,&quot;122 &quot;:&quot;* Handle an incoming HTTP request.&quot;,&quot;123 &quot;:&quot;*&quot;,&quot;124 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;125 &quot;:&quot;* @return \\Illuminate\\Http\\Response &quot;,&quot;126 &quot;:&quot;*\/&quot;,&quot;127 &quot;:&quot;public function handle($request)&quot;,&quot;128 &quot;:&quot;{&quot;,&quot;129 &quot;:&quot;$this-\u003ErequestStartedAt = Carbon::now();&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;try {&quot;,&quot;132 &quot;:&quot;$request-\u003EenableHttpMethodParameterOverride();&quot;,&quot;133 &quot;:&quot;&quot;,&quot;134 &quot;:&quot;$response = $this-\u003EsendRequestThroughRouter($request);&quot;,&quot;135 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;136 &quot;:&quot;$this-\u003EreportException($e);&quot;,&quot;137 &quot;:&quot;&quot;,&quot;138 &quot;:&quot;$response = $this-\u003ErenderException($request, $e);&quot;,&quot;139 &quot;:&quot;}&quot;,&quot;140 &quot;:&quot;&quot;,&quot;141 &quot;:&quot;$this-\u003Eapp[\u0027events\u0027]-\u003Edispatch(&quot;,&quot;142 &quot;:&quot;new RequestHandled($request, $response)&quot;,&quot;143 &quot;:&quot;);&quot;,&quot;144 &quot;:&quot;&quot;,&quot;145 &quot;:&quot;return $response;&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/public\/index.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;[top]&quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;27 &quot;:&quot;|&quot;,&quot;28 &quot;:&quot;| Composer provides a convenient, automatically generated class loader for &quot;,&quot;29 &quot;:&quot;| this application. We just need to utilize it! We\u0027ll simply require it &quot;,&quot;30 &quot;:&quot;| into the script here so we don\u0027t need to manually load our classes.&quot;,&quot;31 &quot;:&quot;|&quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;require __DIR__.\u0027\/..\/vendor\/autoload.php\u0027;&quot;,&quot;35 &quot;:&quot;&quot;,&quot;36 &quot;:&quot;\/*&quot;,&quot;37 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;38 &quot;:&quot;| Run The Application &quot;,&quot;39 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;40 &quot;:&quot;|&quot;,&quot;41 &quot;:&quot;| Once we have the application, we can handle the incoming request using &quot;,&quot;42 &quot;:&quot;| the application\u0027s HTTP kernel. Then, we will send the response back &quot;,&quot;43 &quot;:&quot;| to this client\u0027s browser, allowing them to enjoy our application.&quot;,&quot;44 &quot;:&quot;|&quot;,&quot;45 &quot;:&quot;*\/&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;$app = require_once __DIR__.\u0027\/..\/bootstrap\/app.php\u0027;&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;$kernel = $app-\u003Emake(Kernel::class);&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;$response = $kernel-\u003Ehandle(&quot;,&quot;52 &quot;:&quot;$request = Request::capture()&quot;,&quot;53 &quot;:&quot;)-\u003Esend();&quot;,&quot;54 &quot;:&quot;&quot;,&quot;55 &quot;:&quot;$kernel-\u003Eterminate($request, $response);&quot;,&quot;56 &quot;:&quot;&quot;},&quot;application_frame &quot;:false}],&quot;context &quot;:{&quot;request &quot;:{&quot;url &quot;:&quot;http:\/\/api-test.losangeles.cl\/api\/apiArchivos\/guardarArchivo &quot;,&quot;ip &quot;:null,&quot;method &quot;:&quot;POST &quot;,&quot;useragent &quot;:&quot;GuzzleHttp\/7 &quot;},&quot;request_data &quot;:{&quot;queryString &quot;:[],&quot;body &quot;:{&quot;folio &quot;:&quot;3-2023 &quot;,&quot;tipo &quot;:&quot;PER &quot;,&quot;sub_tipo &quot;:&quot;PERGOCE &quot;,&quot;version &quot;:&quot;v1 &quot;},&quot;files &quot;:{&quot;documento &quot;:{&quot;pathname &quot;:&quot;\/tmp\/phpE3eCur &quot;,&quot;size &quot;:89939,&quot;mimeType &quot;:&quot;application\/pdf &quot;},&quot;anexos_archivo_row &quot;:[{&quot;pathname &quot;:&quot;&quot;,&quot;size &quot;:false,&quot;mimeType &quot;:&quot;undefined &quot;}]}},&quot;headers &quot;:{&quot;content-length &quot;:&quot;6271485 &quot;,&quot;content-type &quot;:&quot;multipart\/form-data; boundary=90694109046113b3d33c1977f3c4b522f03df5a6 &quot;,&quot;user-agent &quot;:&quot;GuzzleHttp\/7 &quot;,&quot;expect &quot;:&quot;100-Continue &quot;,&quot;host &quot;:&quot;api-test.losangeles.cl &quot;,&quot;authorization &quot;:&quot;Bearer M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;},&quot;cookies &quot;:[],&quot;session &quot;:{&quot;_token &quot;:&quot;9oVcgGtqn3oyubgvd0yjycN64pPJvjWfNmlqDYKx &quot;},&quot;route &quot;:{&quot;route &quot;:&quot;guardarArchivo &quot;,&quot;routeParameters &quot;:[],&quot;controllerAction &quot;:&quot;App\\Http\\Controllers\\ApiArchivosController@guardarArchivo &quot;,&quot;middleware &quot;:[&quot;api &quot;,&quot;App\\Http\\Middleware\\TokenAuth &quot;]},&quot;env &quot;:{&quot;php_version &quot;:&quot;8.1.23 &quot;,&quot;laravel_version &quot;:&quot;9.52.4 &quot;,&quot;laravel_locale &quot;:&quot;es &quot;,&quot;laravel_config_cached &quot;:true,&quot;app_debug &quot;:true,&quot;app_env &quot;:&quot;local &quot;},&quot;dumps &quot;:[],&quot;logs &quot;:[],&quot;queries &quot;:[{&quot;sql &quot;:&quot;select * from `muni_sistemas_keys` where `sis_key_valor` = ? limit 1 &quot;,&quot;time &quot;:3.13,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[&quot;M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;],&quot;microtime &quot;:1697033082.999872},{&quot;sql &quot;:&quot;select * from `muni_sistemas` where `sis_id` = ? limit 1 &quot;,&quot;time &quot;:1.11,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[56],&quot;microtime &quot;:1697033083.001531}]},&quot;stage &quot;:&quot;local &quot;,&quot;message_level &quot;:null,&quot;open_frame_index &quot;:null,&quot;application_path &quot;:&quot;\/var\/www\/apis\/API_servicios &quot;,&quot;application_version &quot;:null,&quot;tracking_uuid &quot;:&quot;433cb1b2-da47-4ba2-a595-9978d47d4ac5 &quot;},&quot;shareableReport &quot;:{&quot;notifier &quot;:&quot;Laravel Client &quot;,&quot;language &quot;:&quot;PHP &quot;,&quot;framework_version &quot;:&quot;9.52.4 &quot;,&quot;language_version &quot;:&quot;8.1.23 &quot;,&quot;exception_class &quot;:&quot;ValueError &quot;,&quot;seen_at &quot;:1697033083,&quot;message &quot;:&quot;Path cannot be empty &quot;,&quot;glows &quot;:[],&quot;solutions &quot;:[],&quot;documentation_links &quot;:[],&quot;stacktrace &quot;:[{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;fopen &quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\\Support\\Facades\\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config(\u0027system.api_archivos_url\u0027);&quot;,&quot;13 &quot;:&quot;$token = config(\u0027system.api_archivos_key\u0027);&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, \u0027r\u0027);&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response-\u003Eattach(\u0027documento\u0027, $documento, \u0027documento.pdf\u0027);&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, \u0027r\u0027);&quot;,&quot;20 &quot;:&quot;$nombre = $anexo-\u003EgetClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response-\u003Eattach(\u0027anexos_archivo_row[]\u0027, $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response-\u003Epost($api_url.\u0027guardarDocumentoGestionDocumental\u0027, [&quot;,&quot;25 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027folio\u0027, \u0027contents\u0027 =\u003E $folio],&quot;,&quot;26 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027tipo\u0027, \u0027contents\u0027 =\u003E $tipo],&quot;,&quot;27 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027sub_tipo\u0027, \u0027contents\u0027 =\u003E $sub_tipo],&quot;,&quot;28 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027version\u0027, \u0027contents\u0027 =\u003E $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response-\u003Esuccessful()){&quot;,&quot;32 &quot;:&quot;$data = $response-\u003Eobject();&quot;,&quot;33 &quot;:&quot;if($data-\u003Ecodigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Services\/ApiArchivoService.php &quot;,&quot;line_number &quot;:19,&quot;method &quot;:&quot;enviarArchivo &quot;,&quot;class &quot;:&quot;App\\Services\\ApiArchivoService &quot;,&quot;code_snippet &quot;:{&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\\Support\\Facades\\Http;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;class ApiArchivoService &quot;,&quot;8 &quot;:&quot;{&quot;,&quot;9 &quot;:&quot;&quot;,&quot;10 &quot;:&quot;public static function enviarArchivo($archivo, $folio, $tipo, $sub_tipo, $version, $anexos)&quot;,&quot;11 &quot;:&quot;{&quot;,&quot;12 &quot;:&quot;$api_url = config(\u0027system.api_archivos_url\u0027);&quot;,&quot;13 &quot;:&quot;$token = config(\u0027system.api_archivos_key\u0027);&quot;,&quot;14 &quot;:&quot;$documento = fopen($archivo, \u0027r\u0027);&quot;,&quot;15 &quot;:&quot;&quot;,&quot;16 &quot;:&quot;$response = Http::withToken($token);&quot;,&quot;17 &quot;:&quot;$response = $response-\u003Eattach(\u0027documento\u0027, $documento, \u0027documento.pdf\u0027);&quot;,&quot;18 &quot;:&quot;foreach ($anexos as $anexo) {&quot;,&quot;19 &quot;:&quot;$anexo_archivo = fopen($anexo, \u0027r\u0027);&quot;,&quot;20 &quot;:&quot;$nombre = $anexo-\u003EgetClientOriginalName();&quot;,&quot;21 &quot;:&quot;$response = $response-\u003Eattach(\u0027anexos_archivo_row[]\u0027, $anexo_archivo, $nombre);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;$response = $response-\u003Epost($api_url.\u0027guardarDocumentoGestionDocumental\u0027, [&quot;,&quot;25 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027folio\u0027, \u0027contents\u0027 =\u003E $folio],&quot;,&quot;26 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027tipo\u0027, \u0027contents\u0027 =\u003E $tipo],&quot;,&quot;27 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027sub_tipo\u0027, \u0027contents\u0027 =\u003E $sub_tipo],&quot;,&quot;28 &quot;:&quot;[\u0027name\u0027 =\u003E \u0027version\u0027, \u0027contents\u0027 =\u003E $version]&quot;,&quot;29 &quot;:&quot;]);&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;if($response-\u003Esuccessful()){&quot;,&quot;32 &quot;:&quot;$data = $response-\u003Eobject();&quot;,&quot;33 &quot;:&quot;if($data-\u003Ecodigo == 200){&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Controllers\/ApiArchivosController.php &quot;,&quot;line_number &quot;:14,&quot;method &quot;:&quot;guardarArchivo &quot;,&quot;class &quot;:&quot;App\\Http\\Controllers\\ApiArchivosController &quot;,&quot;code_snippet &quot;:{&quot;1 &quot;:&quot;\u003C?php &quot;,&quot;2 &quot;:&quot;&quot;,&quot;3 &quot;:&quot;namespace App\\Http\\Controllers;&quot;,&quot;4 &quot;:&quot;&quot;,&quot;5 &quot;:&quot;use Illuminate\\Http\\Request;&quot;,&quot;6 &quot;:&quot;&quot;,&quot;7 &quot;:&quot;use App\\Services\\ApiArchivoService;&quot;,&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;class ApiArchivosController extends Controller &quot;,&quot;10 &quot;:&quot;{&quot;,&quot;11 &quot;:&quot;public function guardarArchivo(Request $request){&quot;,&quot;12 &quot;:&quot;&quot;,&quot;13 &quot;:&quot;$anexos = $request-\u003Efile(\u0027anexos_archivo_row\u0027) ? $request-\u003Efile(\u0027anexos_archivo_row\u0027) : [];&quot;,&quot;14 &quot;:&quot;return ApiArchivoService::enviarArchivo($request-\u003Efile(\u0027documento\u0027), $request-\u003Efolio, $request-\u003Etipo, $request-\u003Esub_tipo,&quot;,&quot;15 &quot;:&quot;$request-\u003Eversion, $anexos);&quot;,&quot;16 &quot;:&quot;}&quot;,&quot;17 &quot;:&quot;&quot;,&quot;18 &quot;:&quot;public function obtenerArchivo(Request $request){&quot;,&quot;19 &quot;:&quot;&quot;,&quot;20 &quot;:&quot;return ApiArchivoService::obtenerArchivo($request-\u003Efolio, $request-\u003Etipo, $request-\u003Esub_tipo, $request-\u003Eversion);&quot;,&quot;21 &quot;:&quot;}&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;public function obtenerAnexo(Request $request){&quot;,&quot;24 &quot;:&quot;return ApiArchivoService::obtenerAnexo($request-\u003Efolio, $request-\u003Etipo, $request-\u003Esub_tipo, $request-\u003Enombre);&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;}&quot;,&quot;27 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;callAction &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Controller &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*\/&quot;,&quot;40 &quot;:&quot;public function getMiddleware()&quot;,&quot;41 &quot;:&quot;{&quot;,&quot;42 &quot;:&quot;return $this-\u003Emiddleware;&quot;,&quot;43 &quot;:&quot;}&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;\/**&quot;,&quot;46 &quot;:&quot;* Execute an action on the controller.&quot;,&quot;47 &quot;:&quot;*&quot;,&quot;48 &quot;:&quot;* @param  string  $method &quot;,&quot;49 &quot;:&quot;* @param  array  $parameters &quot;,&quot;50 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;51 &quot;:&quot;*\/&quot;,&quot;52 &quot;:&quot;public function callAction($method, $parameters)&quot;,&quot;53 &quot;:&quot;{&quot;,&quot;54 &quot;:&quot;return $this-\u003E{$method}(...array_values($parameters));&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;\/**&quot;,&quot;58 &quot;:&quot;* Handle calls to missing methods on the controller.&quot;,&quot;59 &quot;:&quot;*&quot;,&quot;60 &quot;:&quot;* @param  string  $method &quot;,&quot;61 &quot;:&quot;* @param  array  $parameters &quot;,&quot;62 &quot;:&quot;* @return mixed &quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @throws \\BadMethodCallException &quot;,&quot;65 &quot;:&quot;*\/&quot;,&quot;66 &quot;:&quot;public function __call($method, $parameters)&quot;,&quot;67 &quot;:&quot;{&quot;,&quot;68 &quot;:&quot;throw new BadMethodCallException(sprintf(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php &quot;,&quot;line_number &quot;:43,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\ControllerDispatcher &quot;,&quot;code_snippet &quot;:{&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Dispatch a request to a given controller and method.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;34 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;35 &quot;:&quot;* @param  string  $method &quot;,&quot;36 &quot;:&quot;* @return mixed &quot;,&quot;37 &quot;:&quot;*\/&quot;,&quot;38 &quot;:&quot;public function dispatch(Route $route, $controller, $method)&quot;,&quot;39 &quot;:&quot;{&quot;,&quot;40 &quot;:&quot;$parameters = $this-\u003EresolveParameters($route, $controller, $method);&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;if (method_exists($controller, \u0027callAction\u0027)) {&quot;,&quot;43 &quot;:&quot;return $controller-\u003EcallAction($method, $parameters);&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;,&quot;46 &quot;:&quot;return $controller-\u003E{$method}(...array_values($parameters));&quot;,&quot;47 &quot;:&quot;}&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;\/**&quot;,&quot;50 &quot;:&quot;* Resolve the parameters for the controller.&quot;,&quot;51 &quot;:&quot;*&quot;,&quot;52 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;53 &quot;:&quot;* @param  mixed  $controller &quot;,&quot;54 &quot;:&quot;* @param  string  $method &quot;,&quot;55 &quot;:&quot;* @return array &quot;,&quot;56 &quot;:&quot;*\/&quot;,&quot;57 &quot;:&quot;protected function resolveParameters(Route $route, $controller, $method)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:260,&quot;method &quot;:&quot;runController &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Route &quot;,&quot;code_snippet &quot;:{&quot;245 &quot;:&quot;protected function isSerializedClosure()&quot;,&quot;246 &quot;:&quot;{&quot;,&quot;247 &quot;:&quot;return RouteAction::containsSerializedClosure($this-\u003Eaction);&quot;,&quot;248 &quot;:&quot;}&quot;,&quot;249 &quot;:&quot;&quot;,&quot;250 &quot;:&quot;\/**&quot;,&quot;251 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;252 &quot;:&quot;*&quot;,&quot;253 &quot;:&quot;* @return mixed &quot;,&quot;254 &quot;:&quot;*&quot;,&quot;255 &quot;:&quot;* @throws \\Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException &quot;,&quot;256 &quot;:&quot;*\/&quot;,&quot;257 &quot;:&quot;protected function runController()&quot;,&quot;258 &quot;:&quot;{&quot;,&quot;259 &quot;:&quot;return $this-\u003EcontrollerDispatcher()-\u003Edispatch(&quot;,&quot;260 &quot;:&quot;$this, $this-\u003EgetController(), $this-\u003EgetControllerMethod()&quot;,&quot;261 &quot;:&quot;);&quot;,&quot;262 &quot;:&quot;}&quot;,&quot;263 &quot;:&quot;&quot;,&quot;264 &quot;:&quot;\/**&quot;,&quot;265 &quot;:&quot;* Get the controller instance for the route.&quot;,&quot;266 &quot;:&quot;*&quot;,&quot;267 &quot;:&quot;* @return mixed &quot;,&quot;268 &quot;:&quot;*\/&quot;,&quot;269 &quot;:&quot;public function getController()&quot;,&quot;270 &quot;:&quot;{&quot;,&quot;271 &quot;:&quot;if (! $this-\u003Econtroller) {&quot;,&quot;272 &quot;:&quot;$class = $this-\u003EgetControllerClass();&quot;,&quot;273 &quot;:&quot;&quot;,&quot;274 &quot;:&quot;$this-\u003Econtroller = $this-\u003Econtainer-\u003Emake(ltrim($class, \u0027\\\\\u0027));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php &quot;,&quot;line_number &quot;:205,&quot;method &quot;:&quot;run &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Route &quot;,&quot;code_snippet &quot;:{&quot;190 &quot;:&quot;{&quot;,&quot;191 &quot;:&quot;return RouteAction::parse($this-\u003Euri, $action);&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Run the route action and return the response.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @return mixed &quot;,&quot;198 &quot;:&quot;*\/&quot;,&quot;199 &quot;:&quot;public function run()&quot;,&quot;200 &quot;:&quot;{&quot;,&quot;201 &quot;:&quot;$this-\u003Econtainer = $this-\u003Econtainer ?: new Container;&quot;,&quot;202 &quot;:&quot;&quot;,&quot;203 &quot;:&quot;try {&quot;,&quot;204 &quot;:&quot;if ($this-\u003EisControllerAction()) {&quot;,&quot;205 &quot;:&quot;return $this-\u003ErunController();&quot;,&quot;206 &quot;:&quot;}&quot;,&quot;207 &quot;:&quot;&quot;,&quot;208 &quot;:&quot;return $this-\u003ErunCallable();&quot;,&quot;209 &quot;:&quot;} catch (HttpResponseException $e) {&quot;,&quot;210 &quot;:&quot;return $e-\u003EgetResponse();&quot;,&quot;211 &quot;:&quot;}&quot;,&quot;212 &quot;:&quot;}&quot;,&quot;213 &quot;:&quot;&quot;,&quot;214 &quot;:&quot;\/**&quot;,&quot;215 &quot;:&quot;* Checks whether the route\u0027s action is a controller.&quot;,&quot;216 &quot;:&quot;*&quot;,&quot;217 &quot;:&quot;* @return bool &quot;,&quot;218 &quot;:&quot;*\/&quot;,&quot;219 &quot;:&quot;protected function isControllerAction()&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:798,&quot;method &quot;:&quot;Illuminate\\Routing\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;783 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this-\u003Econtainer-\u003Ebound(\u0027middleware.disable\u0027) \u0026\u0026 &quot;,&quot;790 &quot;:&quot;$this-\u003Econtainer-\u003Emake(\u0027middleware.disable\u0027) === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this-\u003EgatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this-\u003Econtainer))&quot;,&quot;795 &quot;:&quot;-\u003Esend($request)&quot;,&quot;796 &quot;:&quot;-\u003Ethrough($middleware)&quot;,&quot;797 &quot;:&quot;-\u003Ethen(fn ($request) =\u003E $this-\u003EprepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route-\u003Erun()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this-\u003EresolveMiddleware($route-\u003EgatherMiddleware(), $route-\u003EexcludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \\Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \\Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/app\/Http\/Middleware\/TokenAuth.php &quot;,&quot;line_number &quot;:28,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;App\\Http\\Middleware\\TokenAuth &quot;,&quot;code_snippet &quot;:{&quot;8 &quot;:&quot;&quot;,&quot;9 &quot;:&quot;use App\\Models\\Sistema;&quot;,&quot;10 &quot;:&quot;use App\\Models\\SistemaKey;&quot;,&quot;11 &quot;:&quot;&quot;,&quot;12 &quot;:&quot;class TokenAuth &quot;,&quot;13 &quot;:&quot;{&quot;,&quot;14 &quot;:&quot;\/**&quot;,&quot;15 &quot;:&quot;* Handle an incoming request.&quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;18 &quot;:&quot;* @param  \\Closure(\\Illuminate\\Http\\Request): (\\Illuminate\\Http\\Response|\\Illuminate\\Http\\RedirectResponse)  $next &quot;,&quot;19 &quot;:&quot;* @return \\Illuminate\\Http\\Response|\\Illuminate\\Http\\RedirectResponse &quot;,&quot;20 &quot;:&quot;*\/&quot;,&quot;21 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;22 &quot;:&quot;{&quot;,&quot;23 &quot;:&quot;$sistema_key = SistemaKey::where(\u0027sis_key_valor\u0027, $request-\u003EbearerToken())-\u003Efirst();&quot;,&quot;24 &quot;:&quot;if($sistema_key){&quot;,&quot;25 &quot;:&quot;$sistema = Sistema::where(\u0027sis_id\u0027, $sistema_key-\u003Esis_id)-\u003Efirst();&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;if($sistema_key-\u003Esis_key_fecha_expiracion \u003E Carbon::now() \u0026\u0026 $sistema){&quot;,&quot;28 &quot;:&quot;return $next($request);&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;else{&quot;,&quot;31 &quot;:&quot;return response()-\u003Ejson([\u0027codigo\u0027 =\u003E 4002, \u0027mensaje\u0027 =\u003E \u0027Token no valida\u0027]);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;}&quot;,&quot;34 &quot;:&quot;return response()-\u003Ejson([\u0027codigo\u0027 =\u003E 4001, \u0027mensaje\u0027 =\u003E \u0027Sin autorizacion\u0027]);&quot;,&quot;35 &quot;:&quot;}&quot;,&quot;36 &quot;:&quot;}&quot;,&quot;37 &quot;:&quot;&quot;},&quot;application_frame &quot;:true},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/SubstituteBindings.php &quot;,&quot;line_number &quot;:50,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\SubstituteBindings &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;public function __construct(Registrar $router)&quot;,&quot;25 &quot;:&quot;{&quot;,&quot;26 &quot;:&quot;$this-\u003Erouter = $router;&quot;,&quot;27 &quot;:&quot;}&quot;,&quot;28 &quot;:&quot;&quot;,&quot;29 &quot;:&quot;\/**&quot;,&quot;30 &quot;:&quot;* Handle an incoming request.&quot;,&quot;31 &quot;:&quot;*&quot;,&quot;32 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;33 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;34 &quot;:&quot;* @return mixed &quot;,&quot;35 &quot;:&quot;*\/&quot;,&quot;36 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;37 &quot;:&quot;{&quot;,&quot;38 &quot;:&quot;try {&quot;,&quot;39 &quot;:&quot;$this-\u003Erouter-\u003EsubstituteBindings($route = $request-\u003Eroute());&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$this-\u003Erouter-\u003EsubstituteImplicitBindings($route);&quot;,&quot;42 &quot;:&quot;} catch (ModelNotFoundException $exception) {&quot;,&quot;43 &quot;:&quot;if ($route-\u003EgetMissing()) {&quot;,&quot;44 &quot;:&quot;return $route-\u003EgetMissing()($request, $exception);&quot;,&quot;45 &quot;:&quot;}&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;throw $exception;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;return $next($request);&quot;,&quot;51 &quot;:&quot;}&quot;,&quot;52 &quot;:&quot;}&quot;,&quot;53 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:126,&quot;method &quot;:&quot;handleRequest &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;,&quot;117 &quot;:&quot;{&quot;,&quot;118 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;119 &quot;:&quot;if ($this-\u003Elimiter-\u003EtooManyAttempts($limit-\u003Ekey, $limit-\u003EmaxAttempts)) {&quot;,&quot;120 &quot;:&quot;throw $this-\u003EbuildException($request, $limit-\u003Ekey, $limit-\u003EmaxAttempts, $limit-\u003EresponseCallback);&quot;,&quot;121 &quot;:&quot;}&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this-\u003Elimiter-\u003Ehit($limit-\u003Ekey, $limit-\u003EdecayMinutes * 60);&quot;,&quot;124 &quot;:&quot;}&quot;,&quot;125 &quot;:&quot;&quot;,&quot;126 &quot;:&quot;$response = $next($request);&quot;,&quot;127 &quot;:&quot;&quot;,&quot;128 &quot;:&quot;foreach ($limits as $limit) {&quot;,&quot;129 &quot;:&quot;$response = $this-\u003EaddHeaders(&quot;,&quot;130 &quot;:&quot;$response,&quot;,&quot;131 &quot;:&quot;$limit-\u003EmaxAttempts,&quot;,&quot;132 &quot;:&quot;$this-\u003EcalculateRemainingAttempts($limit-\u003Ekey, $limit-\u003EmaxAttempts)&quot;,&quot;133 &quot;:&quot;);&quot;,&quot;134 &quot;:&quot;}&quot;,&quot;135 &quot;:&quot;&quot;,&quot;136 &quot;:&quot;return $response;&quot;,&quot;137 &quot;:&quot;}&quot;,&quot;138 &quot;:&quot;&quot;,&quot;139 &quot;:&quot;\/**&quot;,&quot;140 &quot;:&quot;* Resolve the number of attempts if the user is authenticated or not.&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:102,&quot;method &quot;:&quot;handleRequestUsingNamedLimiter &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;87 &quot;:&quot;return $limiterResponse;&quot;,&quot;88 &quot;:&quot;} elseif ($limiterResponse instanceof Unlimited) {&quot;,&quot;89 &quot;:&quot;return $next($request);&quot;,&quot;90 &quot;:&quot;}&quot;,&quot;91 &quot;:&quot;&quot;,&quot;92 &quot;:&quot;return $this-\u003EhandleRequest(&quot;,&quot;93 &quot;:&quot;$request,&quot;,&quot;94 &quot;:&quot;$next,&quot;,&quot;95 &quot;:&quot;collect(Arr::wrap($limiterResponse))-\u003Emap(function ($limit) use ($limiterName) {&quot;,&quot;96 &quot;:&quot;return (object) [&quot;,&quot;97 &quot;:&quot;\u0027key\u0027 =\u003E md5($limiterName.$limit-\u003Ekey),&quot;,&quot;98 &quot;:&quot;\u0027maxAttempts\u0027 =\u003E $limit-\u003EmaxAttempts,&quot;,&quot;99 &quot;:&quot;\u0027decayMinutes\u0027 =\u003E $limit-\u003EdecayMinutes,&quot;,&quot;100 &quot;:&quot;\u0027responseCallback\u0027 =\u003E $limit-\u003EresponseCallback,&quot;,&quot;101 &quot;:&quot;];&quot;,&quot;102 &quot;:&quot;})-\u003Eall()&quot;,&quot;103 &quot;:&quot;);&quot;,&quot;104 &quot;:&quot;}&quot;,&quot;105 &quot;:&quot;&quot;,&quot;106 &quot;:&quot;\/**&quot;,&quot;107 &quot;:&quot;* Handle an incoming request.&quot;,&quot;108 &quot;:&quot;*&quot;,&quot;109 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;110 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;111 &quot;:&quot;* @param  array  $limits &quot;,&quot;112 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;113 &quot;:&quot;*&quot;,&quot;114 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\ThrottleRequestsException &quot;,&quot;115 &quot;:&quot;*\/&quot;,&quot;116 &quot;:&quot;protected function handleRequest($request, Closure $next, array $limits)&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/ThrottleRequests.php &quot;,&quot;line_number &quot;:54,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Middleware\\ThrottleRequests &quot;,&quot;code_snippet &quot;:{&quot;39 &quot;:&quot;*&quot;,&quot;40 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;41 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;42 &quot;:&quot;* @param  int|string  $maxAttempts &quot;,&quot;43 &quot;:&quot;* @param  float|int  $decayMinutes &quot;,&quot;44 &quot;:&quot;* @param  string  $prefix &quot;,&quot;45 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;46 &quot;:&quot;*&quot;,&quot;47 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\ThrottleRequestsException &quot;,&quot;48 &quot;:&quot;*\/&quot;,&quot;49 &quot;:&quot;public function handle($request, Closure $next, $maxAttempts = 60, $decayMinutes = 1, $prefix = \u0027\u0027)&quot;,&quot;50 &quot;:&quot;{&quot;,&quot;51 &quot;:&quot;if (is_string($maxAttempts)&quot;,&quot;52 &quot;:&quot;\u0026\u0026 func_num_args() === 3 &quot;,&quot;53 &quot;:&quot;\u0026\u0026 ! is_null($limiter = $this-\u003Elimiter-\u003Elimiter($maxAttempts))) {&quot;,&quot;54 &quot;:&quot;return $this-\u003EhandleRequestUsingNamedLimiter($request, $next, $maxAttempts, $limiter);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;return $this-\u003EhandleRequest(&quot;,&quot;58 &quot;:&quot;$request,&quot;,&quot;59 &quot;:&quot;$next,&quot;,&quot;60 &quot;:&quot;[&quot;,&quot;61 &quot;:&quot;(object) [&quot;,&quot;62 &quot;:&quot;\u0027key\u0027 =\u003E $prefix.$this-\u003EresolveRequestSignature($request),&quot;,&quot;63 &quot;:&quot;\u0027maxAttempts\u0027 =\u003E $this-\u003EresolveMaxAttempts($request, $maxAttempts),&quot;,&quot;64 &quot;:&quot;\u0027decayMinutes\u0027 =\u003E $decayMinutes,&quot;,&quot;65 &quot;:&quot;\u0027responseCallback\u0027 =\u003E null,&quot;,&quot;66 &quot;:&quot;],&quot;,&quot;67 &quot;:&quot;]&quot;,&quot;68 &quot;:&quot;);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this-\u003Epipes()), $this-\u003Ecarry(), $this-\u003EprepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this-\u003Epassable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:799,&quot;method &quot;:&quot;runRouteWithinStack &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;784 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this-\u003Econtainer-\u003Ebound(\u0027middleware.disable\u0027) \u0026\u0026 &quot;,&quot;790 &quot;:&quot;$this-\u003Econtainer-\u003Emake(\u0027middleware.disable\u0027) === true;&quot;,&quot;791 &quot;:&quot;&quot;,&quot;792 &quot;:&quot;$middleware = $shouldSkipMiddleware ? [] : $this-\u003EgatherRouteMiddleware($route);&quot;,&quot;793 &quot;:&quot;&quot;,&quot;794 &quot;:&quot;return (new Pipeline($this-\u003Econtainer))&quot;,&quot;795 &quot;:&quot;-\u003Esend($request)&quot;,&quot;796 &quot;:&quot;-\u003Ethrough($middleware)&quot;,&quot;797 &quot;:&quot;-\u003Ethen(fn ($request) =\u003E $this-\u003EprepareResponse(&quot;,&quot;798 &quot;:&quot;$request, $route-\u003Erun()&quot;,&quot;799 &quot;:&quot;));&quot;,&quot;800 &quot;:&quot;}&quot;,&quot;801 &quot;:&quot;&quot;,&quot;802 &quot;:&quot;\/**&quot;,&quot;803 &quot;:&quot;* Gather the middleware for the given route with resolved class names.&quot;,&quot;804 &quot;:&quot;*&quot;,&quot;805 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;806 &quot;:&quot;* @return array &quot;,&quot;807 &quot;:&quot;*\/&quot;,&quot;808 &quot;:&quot;public function gatherRouteMiddleware(Route $route)&quot;,&quot;809 &quot;:&quot;{&quot;,&quot;810 &quot;:&quot;return $this-\u003EresolveMiddleware($route-\u003EgatherMiddleware(), $route-\u003EexcludedMiddleware());&quot;,&quot;811 &quot;:&quot;}&quot;,&quot;812 &quot;:&quot;&quot;,&quot;813 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:776,&quot;method &quot;:&quot;runRoute &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;761 &quot;:&quot;&quot;,&quot;762 &quot;:&quot;\/**&quot;,&quot;763 &quot;:&quot;* Return the response for the given route.&quot;,&quot;764 &quot;:&quot;*&quot;,&quot;765 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;766 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;767 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;768 &quot;:&quot;*\/&quot;,&quot;769 &quot;:&quot;protected function runRoute(Request $request, Route $route)&quot;,&quot;770 &quot;:&quot;{&quot;,&quot;771 &quot;:&quot;$request-\u003EsetRouteResolver(fn () =\u003E $route);&quot;,&quot;772 &quot;:&quot;&quot;,&quot;773 &quot;:&quot;$this-\u003Eevents-\u003Edispatch(new RouteMatched($route, $request));&quot;,&quot;774 &quot;:&quot;&quot;,&quot;775 &quot;:&quot;return $this-\u003EprepareResponse($request,&quot;,&quot;776 &quot;:&quot;$this-\u003ErunRouteWithinStack($route, $request)&quot;,&quot;777 &quot;:&quot;);&quot;,&quot;778 &quot;:&quot;}&quot;,&quot;779 &quot;:&quot;&quot;,&quot;780 &quot;:&quot;\/**&quot;,&quot;781 &quot;:&quot;* Run the given route within a Stack \u0022onion\u0022 instance.&quot;,&quot;782 &quot;:&quot;*&quot;,&quot;783 &quot;:&quot;* @param  \\Illuminate\\Routing\\Route  $route &quot;,&quot;784 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;785 &quot;:&quot;* @return mixed &quot;,&quot;786 &quot;:&quot;*\/&quot;,&quot;787 &quot;:&quot;protected function runRouteWithinStack(Route $route, Request $request)&quot;,&quot;788 &quot;:&quot;{&quot;,&quot;789 &quot;:&quot;$shouldSkipMiddleware = $this-\u003Econtainer-\u003Ebound(\u0027middleware.disable\u0027) \u0026\u0026 &quot;,&quot;790 &quot;:&quot;$this-\u003Econtainer-\u003Emake(\u0027middleware.disable\u0027) === true;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:740,&quot;method &quot;:&quot;dispatchToRoute &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this-\u003EcurrentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this-\u003EdispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this-\u003ErunRoute($request, $this-\u003EfindRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;,&quot;744 &quot;:&quot;* Find the route matching a given request.&quot;,&quot;745 &quot;:&quot;*&quot;,&quot;746 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;747 &quot;:&quot;* @return \\Illuminate\\Routing\\Route &quot;,&quot;748 &quot;:&quot;*\/&quot;,&quot;749 &quot;:&quot;protected function findRoute($request)&quot;,&quot;750 &quot;:&quot;{&quot;,&quot;751 &quot;:&quot;$this-\u003Eevents-\u003Edispatch(new Routing($request));&quot;,&quot;752 &quot;:&quot;&quot;,&quot;753 &quot;:&quot;$this-\u003Ecurrent = $route = $this-\u003Eroutes-\u003Ematch($request);&quot;,&quot;754 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php &quot;,&quot;line_number &quot;:729,&quot;method &quot;:&quot;dispatch &quot;,&quot;class &quot;:&quot;Illuminate\\Routing\\Router &quot;,&quot;code_snippet &quot;:{&quot;714 &quot;:&quot;$route = tap($this-\u003Eroutes-\u003EgetByName($name))-\u003Ebind($this-\u003EcurrentRequest);&quot;,&quot;715 &quot;:&quot;&quot;,&quot;716 &quot;:&quot;return $this-\u003ErunRoute($this-\u003EcurrentRequest, $route);&quot;,&quot;717 &quot;:&quot;}&quot;,&quot;718 &quot;:&quot;&quot;,&quot;719 &quot;:&quot;\/**&quot;,&quot;720 &quot;:&quot;* Dispatch the request to the application.&quot;,&quot;721 &quot;:&quot;*&quot;,&quot;722 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;723 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;724 &quot;:&quot;*\/&quot;,&quot;725 &quot;:&quot;public function dispatch(Request $request)&quot;,&quot;726 &quot;:&quot;{&quot;,&quot;727 &quot;:&quot;$this-\u003EcurrentRequest = $request;&quot;,&quot;728 &quot;:&quot;&quot;,&quot;729 &quot;:&quot;return $this-\u003EdispatchToRoute($request);&quot;,&quot;730 &quot;:&quot;}&quot;,&quot;731 &quot;:&quot;&quot;,&quot;732 &quot;:&quot;\/**&quot;,&quot;733 &quot;:&quot;* Dispatch the request to a route and return the response.&quot;,&quot;734 &quot;:&quot;*&quot;,&quot;735 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;736 &quot;:&quot;* @return \\Symfony\\Component\\HttpFoundation\\Response &quot;,&quot;737 &quot;:&quot;*\/&quot;,&quot;738 &quot;:&quot;public function dispatchToRoute(Request $request)&quot;,&quot;739 &quot;:&quot;{&quot;,&quot;740 &quot;:&quot;return $this-\u003ErunRoute($request, $this-\u003EfindRoute($request));&quot;,&quot;741 &quot;:&quot;}&quot;,&quot;742 &quot;:&quot;&quot;,&quot;743 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:190,&quot;method &quot;:&quot;Illuminate\\Foundation\\Http\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Kernel &quot;,&quot;code_snippet &quot;:{&quot;175 &quot;:&quot;if (! $this-\u003Eapp-\u003EhasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this-\u003Eapp-\u003EbootstrapWith($this-\u003Ebootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;,&quot;180 &quot;:&quot;\/**&quot;,&quot;181 &quot;:&quot;* Get the route dispatcher callback.&quot;,&quot;182 &quot;:&quot;*&quot;,&quot;183 &quot;:&quot;* @return \\Closure &quot;,&quot;184 &quot;:&quot;*\/&quot;,&quot;185 &quot;:&quot;protected function dispatchToRouter()&quot;,&quot;186 &quot;:&quot;{&quot;,&quot;187 &quot;:&quot;return function ($request) {&quot;,&quot;188 &quot;:&quot;$this-\u003Eapp-\u003Einstance(\u0027request\u0027, $request);&quot;,&quot;189 &quot;:&quot;&quot;,&quot;190 &quot;:&quot;return $this-\u003Erouter-\u003Edispatch($request);&quot;,&quot;191 &quot;:&quot;};&quot;,&quot;192 &quot;:&quot;}&quot;,&quot;193 &quot;:&quot;&quot;,&quot;194 &quot;:&quot;\/**&quot;,&quot;195 &quot;:&quot;* Call the terminate method on any terminable middleware.&quot;,&quot;196 &quot;:&quot;*&quot;,&quot;197 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;198 &quot;:&quot;* @param  \\Illuminate\\Http\\Response  $response &quot;,&quot;199 &quot;:&quot;* @return void &quot;,&quot;200 &quot;:&quot;*\/&quot;,&quot;201 &quot;:&quot;public function terminate($request, $response)&quot;,&quot;202 &quot;:&quot;{&quot;,&quot;203 &quot;:&quot;$this-\u003EterminateMiddleware($request, $response);&quot;,&quot;204 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:141,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;\/**&quot;,&quot;132 &quot;:&quot;* Get the final piece of the Closure onion.&quot;,&quot;133 &quot;:&quot;*&quot;,&quot;134 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;135 &quot;:&quot;* @return \\Closure &quot;,&quot;136 &quot;:&quot;*\/&quot;,&quot;137 &quot;:&quot;protected function prepareDestination(Closure $destination)&quot;,&quot;138 &quot;:&quot;{&quot;,&quot;139 &quot;:&quot;return function ($passable) use ($destination) {&quot;,&quot;140 &quot;:&quot;try {&quot;,&quot;141 &quot;:&quot;return $destination($passable);&quot;,&quot;142 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;143 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;144 &quot;:&quot;}&quot;,&quot;145 &quot;:&quot;};&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;,&quot;149 &quot;:&quot;* Get a Closure that represents a slice of the application onion.&quot;,&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @return \\Closure &quot;,&quot;152 &quot;:&quot;*\/&quot;,&quot;153 &quot;:&quot;protected function carry()&quot;,&quot;154 &quot;:&quot;{&quot;,&quot;155 &quot;:&quot;return function ($stack, $pipe) {&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\\Component\\HttpFoundation\\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this-\u003Eclean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request\u0027s data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Equery);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request-\u003EisJson()) {&quot;,&quot;35 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Ejson());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ConvertEmptyStringsToNull.php &quot;,&quot;line_number &quot;:31,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull &quot;,&quot;code_snippet &quot;:{&quot;16 &quot;:&quot;\/**&quot;,&quot;17 &quot;:&quot;* Handle an incoming request.&quot;,&quot;18 &quot;:&quot;*&quot;,&quot;19 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;20 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;21 &quot;:&quot;* @return mixed &quot;,&quot;22 &quot;:&quot;*\/&quot;,&quot;23 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;24 &quot;:&quot;{&quot;,&quot;25 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;26 &quot;:&quot;if ($callback($request)) {&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;}&quot;,&quot;30 &quot;:&quot;&quot;,&quot;31 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;32 &quot;:&quot;}&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;\/**&quot;,&quot;35 &quot;:&quot;* Transform the given value.&quot;,&quot;36 &quot;:&quot;*&quot;,&quot;37 &quot;:&quot;* @param  string  $key &quot;,&quot;38 &quot;:&quot;* @param  mixed  $value &quot;,&quot;39 &quot;:&quot;* @return mixed &quot;,&quot;40 &quot;:&quot;*\/&quot;,&quot;41 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;42 &quot;:&quot;{&quot;,&quot;43 &quot;:&quot;return $value === \u0027\u0027 ? null : $value;&quot;,&quot;44 &quot;:&quot;}&quot;,&quot;45 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TransformsRequest.php &quot;,&quot;line_number &quot;:21,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest &quot;,&quot;code_snippet &quot;:{&quot;6 &quot;:&quot;use Symfony\\Component\\HttpFoundation\\ParameterBag;&quot;,&quot;7 &quot;:&quot;&quot;,&quot;8 &quot;:&quot;class TransformsRequest &quot;,&quot;9 &quot;:&quot;{&quot;,&quot;10 &quot;:&quot;\/**&quot;,&quot;11 &quot;:&quot;* Handle an incoming request.&quot;,&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*\/&quot;,&quot;17 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;18 &quot;:&quot;{&quot;,&quot;19 &quot;:&quot;$this-\u003Eclean($request);&quot;,&quot;20 &quot;:&quot;&quot;,&quot;21 &quot;:&quot;return $next($request);&quot;,&quot;22 &quot;:&quot;}&quot;,&quot;23 &quot;:&quot;&quot;,&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Clean the request\u0027s data.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;28 &quot;:&quot;* @return void &quot;,&quot;29 &quot;:&quot;*\/&quot;,&quot;30 &quot;:&quot;protected function clean($request)&quot;,&quot;31 &quot;:&quot;{&quot;,&quot;32 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Equery);&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;if ($request-\u003EisJson()) {&quot;,&quot;35 &quot;:&quot;$this-\u003EcleanParameterBag($request-\u003Ejson());&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/TrimStrings.php &quot;,&quot;line_number &quot;:40,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\TrimStrings &quot;,&quot;code_snippet &quot;:{&quot;25 &quot;:&quot;\/**&quot;,&quot;26 &quot;:&quot;* Handle an incoming request.&quot;,&quot;27 &quot;:&quot;*&quot;,&quot;28 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;29 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;30 &quot;:&quot;* @return mixed &quot;,&quot;31 &quot;:&quot;*\/&quot;,&quot;32 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;33 &quot;:&quot;{&quot;,&quot;34 &quot;:&quot;foreach (static::$skipCallbacks as $callback) {&quot;,&quot;35 &quot;:&quot;if ($callback($request)) {&quot;,&quot;36 &quot;:&quot;return $next($request);&quot;,&quot;37 &quot;:&quot;}&quot;,&quot;38 &quot;:&quot;}&quot;,&quot;39 &quot;:&quot;&quot;,&quot;40 &quot;:&quot;return parent::handle($request, $next);&quot;,&quot;41 &quot;:&quot;}&quot;,&quot;42 &quot;:&quot;&quot;,&quot;43 &quot;:&quot;\/**&quot;,&quot;44 &quot;:&quot;* Transform the given value.&quot;,&quot;45 &quot;:&quot;*&quot;,&quot;46 &quot;:&quot;* @param  string  $key &quot;,&quot;47 &quot;:&quot;* @param  mixed  $value &quot;,&quot;48 &quot;:&quot;* @return mixed &quot;,&quot;49 &quot;:&quot;*\/&quot;,&quot;50 &quot;:&quot;protected function transform($key, $value)&quot;,&quot;51 &quot;:&quot;{&quot;,&quot;52 &quot;:&quot;if (in_array($key, $this-\u003Eexcept, true) || ! is_string($value)) {&quot;,&quot;53 &quot;:&quot;return $value;&quot;,&quot;54 &quot;:&quot;}&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/ValidatePostSize.php &quot;,&quot;line_number &quot;:27,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize &quot;,&quot;code_snippet &quot;:{&quot;12 &quot;:&quot;*&quot;,&quot;13 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;14 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;15 &quot;:&quot;* @return mixed &quot;,&quot;16 &quot;:&quot;*&quot;,&quot;17 &quot;:&quot;* @throws \\Illuminate\\Http\\Exceptions\\PostTooLargeException &quot;,&quot;18 &quot;:&quot;*\/&quot;,&quot;19 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;20 &quot;:&quot;{&quot;,&quot;21 &quot;:&quot;$max = $this-\u003EgetPostMaxSize();&quot;,&quot;22 &quot;:&quot;&quot;,&quot;23 &quot;:&quot;if ($max \u003E 0 \u0026\u0026 $request-\u003Eserver(\u0027CONTENT_LENGTH\u0027) \u003E $max) {&quot;,&quot;24 &quot;:&quot;throw new PostTooLargeException;&quot;,&quot;25 &quot;:&quot;}&quot;,&quot;26 &quot;:&quot;&quot;,&quot;27 &quot;:&quot;return $next($request);&quot;,&quot;28 &quot;:&quot;}&quot;,&quot;29 &quot;:&quot;&quot;,&quot;30 &quot;:&quot;\/**&quot;,&quot;31 &quot;:&quot;* Determine the server \u0027post_max_size\u0027 as bytes.&quot;,&quot;32 &quot;:&quot;*&quot;,&quot;33 &quot;:&quot;* @return int &quot;,&quot;34 &quot;:&quot;*\/&quot;,&quot;35 &quot;:&quot;protected function getPostMaxSize()&quot;,&quot;36 &quot;:&quot;{&quot;,&quot;37 &quot;:&quot;if (is_numeric($postMaxSize = ini_get(\u0027post_max_size\u0027))) {&quot;,&quot;38 &quot;:&quot;return (int) $postMaxSize;&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;$metric = strtoupper(substr($postMaxSize, -1));&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/PreventRequestsDuringMaintenance.php &quot;,&quot;line_number &quot;:86,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance &quot;,&quot;code_snippet &quot;:{&quot;71 &quot;:&quot;return response(&quot;,&quot;72 &quot;:&quot;$data[\u0027template\u0027],&quot;,&quot;73 &quot;:&quot;$data[\u0027status\u0027] ?? 503,&quot;,&quot;74 &quot;:&quot;$this-\u003EgetHeaders($data)&quot;,&quot;75 &quot;:&quot;);&quot;,&quot;76 &quot;:&quot;}&quot;,&quot;77 &quot;:&quot;&quot;,&quot;78 &quot;:&quot;throw new HttpException(&quot;,&quot;79 &quot;:&quot;$data[\u0027status\u0027] ?? 503,&quot;,&quot;80 &quot;:&quot;\u0027Service Unavailable\u0027,&quot;,&quot;81 &quot;:&quot;null,&quot;,&quot;82 &quot;:&quot;$this-\u003EgetHeaders($data)&quot;,&quot;83 &quot;:&quot;);&quot;,&quot;84 &quot;:&quot;}&quot;,&quot;85 &quot;:&quot;&quot;,&quot;86 &quot;:&quot;return $next($request);&quot;,&quot;87 &quot;:&quot;}&quot;,&quot;88 &quot;:&quot;&quot;,&quot;89 &quot;:&quot;\/**&quot;,&quot;90 &quot;:&quot;* Determine if the incoming request has a maintenance mode bypass cookie.&quot;,&quot;91 &quot;:&quot;*&quot;,&quot;92 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;93 &quot;:&quot;* @param  array  $data &quot;,&quot;94 &quot;:&quot;* @return bool &quot;,&quot;95 &quot;:&quot;*\/&quot;,&quot;96 &quot;:&quot;protected function hasValidBypassCookie($request, array $data)&quot;,&quot;97 &quot;:&quot;{&quot;,&quot;98 &quot;:&quot;return isset($data[\u0027secret\u0027]) \u0026\u0026 &quot;,&quot;99 &quot;:&quot;$request-\u003Ecookie(\u0027laravel_maintenance\u0027) \u0026\u0026 &quot;,&quot;100 &quot;:&quot;MaintenanceModeBypassCookie::isValid(&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/fruitcake\/laravel-cors\/src\/HandleCors.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Fruitcake\\Cors\\HandleCors &quot;,&quot;code_snippet &quot;:{&quot;37 &quot;:&quot;if (! $this-\u003EshouldRun($request)) {&quot;,&quot;38 &quot;:&quot;return $next($request);&quot;,&quot;39 &quot;:&quot;}&quot;,&quot;40 &quot;:&quot;&quot;,&quot;41 &quot;:&quot;\/\/ For Preflight, return the Preflight response &quot;,&quot;42 &quot;:&quot;if ($this-\u003Ecors-\u003EisPreflightRequest($request)) {&quot;,&quot;43 &quot;:&quot;$response = $this-\u003Ecors-\u003EhandlePreflightRequest($request);&quot;,&quot;44 &quot;:&quot;&quot;,&quot;45 &quot;:&quot;$this-\u003Ecors-\u003EvaryHeader($response, \u0027Access-Control-Request-Method\u0027);&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;return $response;&quot;,&quot;48 &quot;:&quot;}&quot;,&quot;49 &quot;:&quot;&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;\/\/ Handle the request &quot;,&quot;52 &quot;:&quot;$response = $next($request);&quot;,&quot;53 &quot;:&quot;&quot;,&quot;54 &quot;:&quot;if ($request-\u003EgetMethod() === \u0027OPTIONS\u0027) {&quot;,&quot;55 &quot;:&quot;$this-\u003Ecors-\u003EvaryHeader($response, \u0027Access-Control-Request-Method\u0027);&quot;,&quot;56 &quot;:&quot;}&quot;,&quot;57 &quot;:&quot;&quot;,&quot;58 &quot;:&quot;return $this-\u003EaddHeaders($request, $response);&quot;,&quot;59 &quot;:&quot;}&quot;,&quot;60 &quot;:&quot;&quot;,&quot;61 &quot;:&quot;\/**&quot;,&quot;62 &quot;:&quot;* Add the headers to the Response, if they don\u0027t exist yet.&quot;,&quot;63 &quot;:&quot;*&quot;,&quot;64 &quot;:&quot;* @param Request $request &quot;,&quot;65 &quot;:&quot;* @param Response $response &quot;,&quot;66 &quot;:&quot;* @return Response &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Http\/Middleware\/TrustProxies.php &quot;,&quot;line_number &quot;:39,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Http\\Middleware\\TrustProxies &quot;,&quot;code_snippet &quot;:{&quot;24 &quot;:&quot;\/**&quot;,&quot;25 &quot;:&quot;* Handle an incoming request.&quot;,&quot;26 &quot;:&quot;*&quot;,&quot;27 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;28 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;29 &quot;:&quot;* @return mixed &quot;,&quot;30 &quot;:&quot;*&quot;,&quot;31 &quot;:&quot;* @throws \\Symfony\\Component\\HttpKernel\\Exception\\HttpException &quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;public function handle(Request $request, Closure $next)&quot;,&quot;34 &quot;:&quot;{&quot;,&quot;35 &quot;:&quot;$request::setTrustedProxies([], $this-\u003EgetTrustedHeaderNames());&quot;,&quot;36 &quot;:&quot;&quot;,&quot;37 &quot;:&quot;$this-\u003EsetTrustedProxyIpAddresses($request);&quot;,&quot;38 &quot;:&quot;&quot;,&quot;39 &quot;:&quot;return $next($request);&quot;,&quot;40 &quot;:&quot;}&quot;,&quot;41 &quot;:&quot;&quot;,&quot;42 &quot;:&quot;\/**&quot;,&quot;43 &quot;:&quot;* Sets the trusted proxies on the request.&quot;,&quot;44 &quot;:&quot;*&quot;,&quot;45 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;46 &quot;:&quot;* @return void &quot;,&quot;47 &quot;:&quot;*\/&quot;,&quot;48 &quot;:&quot;protected function setTrustedProxyIpAddresses(Request $request)&quot;,&quot;49 &quot;:&quot;{&quot;,&quot;50 &quot;:&quot;$trustedIps = $this-\u003Eproxies() ?: config(\u0027trustedproxy.proxies\u0027);&quot;,&quot;51 &quot;:&quot;&quot;,&quot;52 &quot;:&quot;if ($trustedIps === \u0027*\u0027 || $trustedIps === \u0027**\u0027) {&quot;,&quot;53 &quot;:&quot;return $this-\u003EsetTrustedProxyIpAddressesToTheCallingIp($request);&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:121,&quot;method &quot;:&quot;handleStatefulRequest &quot;,&quot;class &quot;:&quot;Illuminate\\Session\\Middleware\\StartSession &quot;,&quot;code_snippet &quot;:{&quot;106 &quot;:&quot;* @param  \\Illuminate\\Contracts\\Session\\Session  $session &quot;,&quot;107 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;protected function handleStatefulRequest(Request $request, $session, Closure $next)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;\/\/ If a session driver has been configured, we will need to start the session here &quot;,&quot;113 &quot;:&quot;\/\/ so that the data is ready for an application. Note that the Laravel sessions &quot;,&quot;114 &quot;:&quot;\/\/ do not make use of PHP \u0022native\u0022 sessions in any way since they are crappy.&quot;,&quot;115 &quot;:&quot;$request-\u003EsetLaravelSession(&quot;,&quot;116 &quot;:&quot;$this-\u003EstartSession($request, $session)&quot;,&quot;117 &quot;:&quot;);&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;$this-\u003EcollectGarbage($session);&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;$response = $next($request);&quot;,&quot;122 &quot;:&quot;&quot;,&quot;123 &quot;:&quot;$this-\u003EstoreCurrentUrl($request, $session);&quot;,&quot;124 &quot;:&quot;&quot;,&quot;125 &quot;:&quot;$this-\u003EaddCookieToResponse($response, $session);&quot;,&quot;126 &quot;:&quot;&quot;,&quot;127 &quot;:&quot;\/\/ Again, if the session has been configured we will need to close out the session &quot;,&quot;128 &quot;:&quot;\/\/ so that the attributes may be persisted to some storage medium. We will also &quot;,&quot;129 &quot;:&quot;\/\/ add the session identifier cookie to the application response headers now.&quot;,&quot;130 &quot;:&quot;$this-\u003EsaveSession($request);&quot;,&quot;131 &quot;:&quot;&quot;,&quot;132 &quot;:&quot;return $response;&quot;,&quot;133 &quot;:&quot;}&quot;,&quot;134 &quot;:&quot;&quot;,&quot;135 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Session\/Middleware\/StartSession.php &quot;,&quot;line_number &quot;:64,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Session\\Middleware\\StartSession &quot;,&quot;code_snippet &quot;:{&quot;49 &quot;:&quot;* @return mixed &quot;,&quot;50 &quot;:&quot;*\/&quot;,&quot;51 &quot;:&quot;public function handle($request, Closure $next)&quot;,&quot;52 &quot;:&quot;{&quot;,&quot;53 &quot;:&quot;if (! $this-\u003EsessionConfigured()) {&quot;,&quot;54 &quot;:&quot;return $next($request);&quot;,&quot;55 &quot;:&quot;}&quot;,&quot;56 &quot;:&quot;&quot;,&quot;57 &quot;:&quot;$session = $this-\u003EgetSession($request);&quot;,&quot;58 &quot;:&quot;&quot;,&quot;59 &quot;:&quot;if ($this-\u003Emanager-\u003EshouldBlock() ||&quot;,&quot;60 &quot;:&quot;($request-\u003Eroute() instanceof Route \u0026\u0026 $request-\u003Eroute()-\u003ElocksFor())) {&quot;,&quot;61 &quot;:&quot;return $this-\u003EhandleRequestWhileBlocking($request, $session, $next);&quot;,&quot;62 &quot;:&quot;}&quot;,&quot;63 &quot;:&quot;&quot;,&quot;64 &quot;:&quot;return $this-\u003EhandleStatefulRequest($request, $session, $next);&quot;,&quot;65 &quot;:&quot;}&quot;,&quot;66 &quot;:&quot;&quot;,&quot;67 &quot;:&quot;\/**&quot;,&quot;68 &quot;:&quot;* Handle the given request within session state.&quot;,&quot;69 &quot;:&quot;*&quot;,&quot;70 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;71 &quot;:&quot;* @param  \\Illuminate\\Contracts\\Session\\Session  $session &quot;,&quot;72 &quot;:&quot;* @param  \\Closure  $next &quot;,&quot;73 &quot;:&quot;* @return mixed &quot;,&quot;74 &quot;:&quot;*\/&quot;,&quot;75 &quot;:&quot;protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)&quot;,&quot;76 &quot;:&quot;{&quot;,&quot;77 &quot;:&quot;if (! $request-\u003Eroute() instanceof Route) {&quot;,&quot;78 &quot;:&quot;return;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:180,&quot;method &quot;:&quot;Illuminate\\Pipeline\\{closure}&quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;165 &quot;:&quot;&quot;,&quot;166 &quot;:&quot;\/\/ If the pipe is a string we will parse the string and resolve the class out &quot;,&quot;167 &quot;:&quot;\/\/ of the dependency injection container. We can then build a callable and &quot;,&quot;168 &quot;:&quot;\/\/ execute the pipe function giving in the parameters that are required.&quot;,&quot;169 &quot;:&quot;$pipe = $this-\u003EgetContainer()-\u003Emake($name);&quot;,&quot;170 &quot;:&quot;&quot;,&quot;171 &quot;:&quot;$parameters = array_merge([$passable, $stack], $parameters);&quot;,&quot;172 &quot;:&quot;} else {&quot;,&quot;173 &quot;:&quot;\/\/ If the pipe is already an object we\u0027ll just make a callable and pass it to &quot;,&quot;174 &quot;:&quot;\/\/ the pipe as-is. There is no need to do any extra parsing and formatting &quot;,&quot;175 &quot;:&quot;\/\/ since the object we\u0027re given was already a fully instantiated object.&quot;,&quot;176 &quot;:&quot;$parameters = [$passable, $stack];&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;&quot;,&quot;179 &quot;:&quot;$carry = method_exists($pipe, $this-\u003Emethod)&quot;,&quot;180 &quot;:&quot;? $pipe-\u003E{$this-\u003Emethod}(...$parameters)&quot;,&quot;181 &quot;:&quot;: $pipe(...$parameters);&quot;,&quot;182 &quot;:&quot;&quot;,&quot;183 &quot;:&quot;return $this-\u003EhandleCarry($carry);&quot;,&quot;184 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;185 &quot;:&quot;return $this-\u003EhandleException($passable, $e);&quot;,&quot;186 &quot;:&quot;}&quot;,&quot;187 &quot;:&quot;};&quot;,&quot;188 &quot;:&quot;};&quot;,&quot;189 &quot;:&quot;}&quot;,&quot;190 &quot;:&quot;&quot;,&quot;191 &quot;:&quot;\/**&quot;,&quot;192 &quot;:&quot;* Parse full pipe string to get name and parameters.&quot;,&quot;193 &quot;:&quot;*&quot;,&quot;194 &quot;:&quot;* @param  string  $pipe &quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php &quot;,&quot;line_number &quot;:116,&quot;method &quot;:&quot;then &quot;,&quot;class &quot;:&quot;Illuminate\\Pipeline\\Pipeline &quot;,&quot;code_snippet &quot;:{&quot;101 &quot;:&quot;return $this;&quot;,&quot;102 &quot;:&quot;}&quot;,&quot;103 &quot;:&quot;&quot;,&quot;104 &quot;:&quot;\/**&quot;,&quot;105 &quot;:&quot;* Run the pipeline with a final destination callback.&quot;,&quot;106 &quot;:&quot;*&quot;,&quot;107 &quot;:&quot;* @param  \\Closure  $destination &quot;,&quot;108 &quot;:&quot;* @return mixed &quot;,&quot;109 &quot;:&quot;*\/&quot;,&quot;110 &quot;:&quot;public function then(Closure $destination)&quot;,&quot;111 &quot;:&quot;{&quot;,&quot;112 &quot;:&quot;$pipeline = array_reduce(&quot;,&quot;113 &quot;:&quot;array_reverse($this-\u003Epipes()), $this-\u003Ecarry(), $this-\u003EprepareDestination($destination)&quot;,&quot;114 &quot;:&quot;);&quot;,&quot;115 &quot;:&quot;&quot;,&quot;116 &quot;:&quot;return $pipeline($this-\u003Epassable);&quot;,&quot;117 &quot;:&quot;}&quot;,&quot;118 &quot;:&quot;&quot;,&quot;119 &quot;:&quot;\/**&quot;,&quot;120 &quot;:&quot;* Run the pipeline and return the result.&quot;,&quot;121 &quot;:&quot;*&quot;,&quot;122 &quot;:&quot;* @return mixed &quot;,&quot;123 &quot;:&quot;*\/&quot;,&quot;124 &quot;:&quot;public function thenReturn()&quot;,&quot;125 &quot;:&quot;{&quot;,&quot;126 &quot;:&quot;return $this-\u003Ethen(function ($passable) {&quot;,&quot;127 &quot;:&quot;return $passable;&quot;,&quot;128 &quot;:&quot;});&quot;,&quot;129 &quot;:&quot;}&quot;,&quot;130 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:165,&quot;method &quot;:&quot;sendRequestThroughRouter &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Kernel &quot;,&quot;code_snippet &quot;:{&quot;150 &quot;:&quot;*&quot;,&quot;151 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;152 &quot;:&quot;* @return \\Illuminate\\Http\\Response &quot;,&quot;153 &quot;:&quot;*\/&quot;,&quot;154 &quot;:&quot;protected function sendRequestThroughRouter($request)&quot;,&quot;155 &quot;:&quot;{&quot;,&quot;156 &quot;:&quot;$this-\u003Eapp-\u003Einstance(\u0027request\u0027, $request);&quot;,&quot;157 &quot;:&quot;&quot;,&quot;158 &quot;:&quot;Facade::clearResolvedInstance(\u0027request\u0027);&quot;,&quot;159 &quot;:&quot;&quot;,&quot;160 &quot;:&quot;$this-\u003Ebootstrap();&quot;,&quot;161 &quot;:&quot;&quot;,&quot;162 &quot;:&quot;return (new Pipeline($this-\u003Eapp))&quot;,&quot;163 &quot;:&quot;-\u003Esend($request)&quot;,&quot;164 &quot;:&quot;-\u003Ethrough($this-\u003Eapp-\u003EshouldSkipMiddleware() ? [] : $this-\u003Emiddleware)&quot;,&quot;165 &quot;:&quot;-\u003Ethen($this-\u003EdispatchToRouter());&quot;,&quot;166 &quot;:&quot;}&quot;,&quot;167 &quot;:&quot;&quot;,&quot;168 &quot;:&quot;\/**&quot;,&quot;169 &quot;:&quot;* Bootstrap the application for HTTP requests.&quot;,&quot;170 &quot;:&quot;*&quot;,&quot;171 &quot;:&quot;* @return void &quot;,&quot;172 &quot;:&quot;*\/&quot;,&quot;173 &quot;:&quot;public function bootstrap()&quot;,&quot;174 &quot;:&quot;{&quot;,&quot;175 &quot;:&quot;if (! $this-\u003Eapp-\u003EhasBeenBootstrapped()) {&quot;,&quot;176 &quot;:&quot;$this-\u003Eapp-\u003EbootstrapWith($this-\u003Ebootstrappers());&quot;,&quot;177 &quot;:&quot;}&quot;,&quot;178 &quot;:&quot;}&quot;,&quot;179 &quot;:&quot;&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php &quot;,&quot;line_number &quot;:134,&quot;method &quot;:&quot;handle &quot;,&quot;class &quot;:&quot;Illuminate\\Foundation\\Http\\Kernel &quot;,&quot;code_snippet &quot;:{&quot;119 &quot;:&quot;}&quot;,&quot;120 &quot;:&quot;&quot;,&quot;121 &quot;:&quot;\/**&quot;,&quot;122 &quot;:&quot;* Handle an incoming HTTP request.&quot;,&quot;123 &quot;:&quot;*&quot;,&quot;124 &quot;:&quot;* @param  \\Illuminate\\Http\\Request  $request &quot;,&quot;125 &quot;:&quot;* @return \\Illuminate\\Http\\Response &quot;,&quot;126 &quot;:&quot;*\/&quot;,&quot;127 &quot;:&quot;public function handle($request)&quot;,&quot;128 &quot;:&quot;{&quot;,&quot;129 &quot;:&quot;$this-\u003ErequestStartedAt = Carbon::now();&quot;,&quot;130 &quot;:&quot;&quot;,&quot;131 &quot;:&quot;try {&quot;,&quot;132 &quot;:&quot;$request-\u003EenableHttpMethodParameterOverride();&quot;,&quot;133 &quot;:&quot;&quot;,&quot;134 &quot;:&quot;$response = $this-\u003EsendRequestThroughRouter($request);&quot;,&quot;135 &quot;:&quot;} catch (Throwable $e) {&quot;,&quot;136 &quot;:&quot;$this-\u003EreportException($e);&quot;,&quot;137 &quot;:&quot;&quot;,&quot;138 &quot;:&quot;$response = $this-\u003ErenderException($request, $e);&quot;,&quot;139 &quot;:&quot;}&quot;,&quot;140 &quot;:&quot;&quot;,&quot;141 &quot;:&quot;$this-\u003Eapp[\u0027events\u0027]-\u003Edispatch(&quot;,&quot;142 &quot;:&quot;new RequestHandled($request, $response)&quot;,&quot;143 &quot;:&quot;);&quot;,&quot;144 &quot;:&quot;&quot;,&quot;145 &quot;:&quot;return $response;&quot;,&quot;146 &quot;:&quot;}&quot;,&quot;147 &quot;:&quot;&quot;,&quot;148 &quot;:&quot;\/**&quot;},&quot;application_frame &quot;:false},{&quot;file &quot;:&quot;\/var\/www\/apis\/API_servicios\/public\/index.php &quot;,&quot;line_number &quot;:52,&quot;method &quot;:&quot;[top]&quot;,&quot;class &quot;:null,&quot;code_snippet &quot;:{&quot;27 &quot;:&quot;|&quot;,&quot;28 &quot;:&quot;| Composer provides a convenient, automatically generated class loader for &quot;,&quot;29 &quot;:&quot;| this application. We just need to utilize it! We\u0027ll simply require it &quot;,&quot;30 &quot;:&quot;| into the script here so we don\u0027t need to manually load our classes.&quot;,&quot;31 &quot;:&quot;|&quot;,&quot;32 &quot;:&quot;*\/&quot;,&quot;33 &quot;:&quot;&quot;,&quot;34 &quot;:&quot;require __DIR__.\u0027\/..\/vendor\/autoload.php\u0027;&quot;,&quot;35 &quot;:&quot;&quot;,&quot;36 &quot;:&quot;\/*&quot;,&quot;37 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;38 &quot;:&quot;| Run The Application &quot;,&quot;39 &quot;:&quot;|--------------------------------------------------------------------------&quot;,&quot;40 &quot;:&quot;|&quot;,&quot;41 &quot;:&quot;| Once we have the application, we can handle the incoming request using &quot;,&quot;42 &quot;:&quot;| the application\u0027s HTTP kernel. Then, we will send the response back &quot;,&quot;43 &quot;:&quot;| to this client\u0027s browser, allowing them to enjoy our application.&quot;,&quot;44 &quot;:&quot;|&quot;,&quot;45 &quot;:&quot;*\/&quot;,&quot;46 &quot;:&quot;&quot;,&quot;47 &quot;:&quot;$app = require_once __DIR__.\u0027\/..\/bootstrap\/app.php\u0027;&quot;,&quot;48 &quot;:&quot;&quot;,&quot;49 &quot;:&quot;$kernel = $app-\u003Emake(Kernel::class);&quot;,&quot;50 &quot;:&quot;&quot;,&quot;51 &quot;:&quot;$response = $kernel-\u003Ehandle(&quot;,&quot;52 &quot;:&quot;$request = Request::capture()&quot;,&quot;53 &quot;:&quot;)-\u003Esend();&quot;,&quot;54 &quot;:&quot;&quot;,&quot;55 &quot;:&quot;$kernel-\u003Eterminate($request, $response);&quot;,&quot;56 &quot;:&quot;&quot;},&quot;application_frame &quot;:false}],&quot;context &quot;:{&quot;request &quot;:{&quot;url &quot;:&quot;http:\/\/api-test.losangeles.cl\/api\/apiArchivos\/guardarArchivo &quot;,&quot;ip &quot;:null,&quot;method &quot;:&quot;POST &quot;,&quot;useragent &quot;:&quot;GuzzleHttp\/7 &quot;},&quot;request_data &quot;:{&quot;queryString &quot;:[],&quot;body &quot;:{&quot;folio &quot;:&quot;3-2023 &quot;,&quot;tipo &quot;:&quot;PER &quot;,&quot;sub_tipo &quot;:&quot;PERGOCE &quot;,&quot;version &quot;:&quot;v1 &quot;},&quot;files &quot;:{&quot;documento &quot;:{&quot;pathname &quot;:&quot;\/tmp\/phpE3eCur &quot;,&quot;size &quot;:89939,&quot;mimeType &quot;:&quot;application\/pdf &quot;},&quot;anexos_archivo_row &quot;:[{&quot;pathname &quot;:&quot;&quot;,&quot;size &quot;:false,&quot;mimeType &quot;:&quot;undefined &quot;}]}},&quot;headers &quot;:{&quot;content-length &quot;:&quot;6271485 &quot;,&quot;content-type &quot;:&quot;multipart\/form-data; boundary=90694109046113b3d33c1977f3c4b522f03df5a6 &quot;,&quot;user-agent &quot;:&quot;GuzzleHttp\/7 &quot;,&quot;expect &quot;:&quot;100-Continue &quot;,&quot;host &quot;:&quot;api-test.losangeles.cl &quot;,&quot;authorization &quot;:&quot;Bearer M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;},&quot;cookies &quot;:[],&quot;session &quot;:{&quot;_token &quot;:&quot;9oVcgGtqn3oyubgvd0yjycN64pPJvjWfNmlqDYKx &quot;},&quot;route &quot;:{&quot;route &quot;:&quot;guardarArchivo &quot;,&quot;routeParameters &quot;:[],&quot;controllerAction &quot;:&quot;App\\Http\\Controllers\\ApiArchivosController@guardarArchivo &quot;,&quot;middleware &quot;:[&quot;api &quot;,&quot;App\\Http\\Middleware\\TokenAuth &quot;]},&quot;env &quot;:{&quot;php_version &quot;:&quot;8.1.23 &quot;,&quot;laravel_version &quot;:&quot;9.52.4 &quot;,&quot;laravel_locale &quot;:&quot;es &quot;,&quot;laravel_config_cached &quot;:true,&quot;app_debug &quot;:true,&quot;app_env &quot;:&quot;local &quot;},&quot;dumps &quot;:[],&quot;logs &quot;:[],&quot;queries &quot;:[{&quot;sql &quot;:&quot;select * from `muni_sistemas_keys` where `sis_key_valor` = ? limit 1 &quot;,&quot;time &quot;:3.13,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[&quot;M9ewVjo3XRjxeyfTOE8CY1kYqNYP4wkCzvjSpb3BtvodVtajOM0loLCMnUqhxShO7s0Z4d1KksQlIg2Fp4n7HBDk5qlMKe0VbWuv &quot;],&quot;microtime &quot;:1697033082.999872},{&quot;sql &quot;:&quot;select * from `muni_sistemas` where `sis_id` = ? limit 1 &quot;,&quot;time &quot;:1.11,&quot;connection_name &quot;:&quot;mysql &quot;,&quot;bindings &quot;:[56],&quot;microtime &quot;:1697033083.001531}]},&quot;stage &quot;:&quot;local &quot;,&quot;message_level &quot;:null,&quot;open_frame_index &quot;:null,&quot;application_path &quot;:&quot;\/var\/www\/apis\/API_servicios &quot;,&quot;application_version &quot;:null,&quot;tracking_uuid &quot;:&quot;433cb1b2-da47-4ba2-a595-9978d47d4ac5 &quot;},&quot;config &quot;:{&quot;editor &quot;:&quot;phpstorm &quot;,&quot;theme &quot;:&quot;auto &quot;,&quot;hideSolutions &quot;:false,&quot;remoteSitesPath &quot;:&quot;\/var\/www\/apis\/API_servicios &quot;,&quot;localSitesPath &quot;:&quot;&quot;,&quot;enableShareButton &quot;:true,&quot;enableRunnableSolutions &quot;:false,&quot;directorySeparator &quot;:&quot;\/&quot;,&quot;editorOptions &quot;:{&quot;sublime &quot;:{&quot;label &quot;:&quot;Sublime &quot;,&quot;url &quot;:&quot;subl:\/\/open?url=file:\/\/%path\u0026line=%line &quot;},&quot;textmate &quot;:{&quot;label &quot;:&quot;TextMate &quot;,&quot;url &quot;:&quot;txmt:\/\/open?url=file:\/\/%path\u0026line=%line &quot;},&quot;emacs &quot;:{&quot;label &quot;:&quot;Emacs &quot;,&quot;url &quot;:&quot;emacs:\/\/open?url=file:\/\/%path\u0026line=%line &quot;},&quot;macvim &quot;:{&quot;label &quot;:&quot;MacVim &quot;,&quot;url &quot;:&quot;mvim:\/\/open\/?url=file:\/\/%path\u0026line=%line &quot;},&quot;phpstorm &quot;:{&quot;label &quot;:&quot;PhpStorm &quot;,&quot;url &quot;:&quot;phpstorm:\/\/open?file=%path\u0026line=%line &quot;},&quot;idea &quot;:{&quot;label &quot;:&quot;Idea &quot;,&quot;url &quot;:&quot;idea:\/\/open?file=%path\u0026line=%line &quot;},&quot;vscode &quot;:{&quot;label &quot;:&quot;VS Code &quot;,&quot;url &quot;:&quot;vscode:\/\/file\/%path:%line &quot;},&quot;vscode-insiders &quot;:{&quot;label &quot;:&quot;VS Code Insiders &quot;,&quot;url &quot;:&quot;vscode-insiders:\/\/file\/%path:%line &quot;},&quot;vscode-remote &quot;:{&quot;label &quot;:&quot;VS Code Remote &quot;,&quot;url &quot;:&quot;vscode:\/\/vscode-remote\/%path:%line &quot;},&quot;vscode-insiders-remote &quot;:{&quot;label &quot;:&quot;VS Code Insiders Remote &quot;,&quot;url &quot;:&quot;vscode-insiders:\/\/vscode-remote\/%path:%line &quot;},&quot;vscodium &quot;:{&quot;label &quot;:&quot;VS Codium &quot;,&quot;url &quot;:&quot;vscodium:\/\/file\/%path:%line &quot;},&quot;atom &quot;:{&quot;label &quot;:&quot;Atom &quot;,&quot;url &quot;:&quot;atom:\/\/core\/open\/file?filename=%path\u0026line=%line &quot;},&quot;nova &quot;:{&quot;label &quot;:&quot;Nova &quot;,&quot;url &quot;:&quot;nova:\/\/core\/open\/file?filename=%path\u0026line=%line &quot;},&quot;netbeans &quot;:{&quot;label &quot;:&quot;NetBeans &quot;,&quot;url &quot;:&quot;netbeans:\/\/open\/?f=%path:%line &quot;},&quot;xdebug &quot;:{&quot;label &quot;:&quot;Xdebug &quot;,&quot;url &quot;:&quot;xdebug:\/\/%path@%line &quot;}},&quot;shareEndpoint &quot;:&quot;https:\/\/flareapp.io\/api\/public-reports &quot;},&quot;solutions &quot;:[],&quot;updateConfigEndpoint &quot;:&quot;\/_ignition\/update-config &quot;};<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;!-- The noscript representation is for HTTP client like Postman that have JS disabled. --&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;noscript &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;pre &gt;ValueError: Path cannot be empty in file /var/www/apis/API_servicios/app/Services/ApiArchivoService.php on line 19<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #0 /var/www/apis/API_servicios/app/Services/ApiArchivoService.php(19): fopen()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #1 /var/www/apis/API_servicios/app/Http/Controllers/ApiArchivosController.php(14): App\Services\ApiArchivoService::enviarArchivo()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #2 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\Http\Controllers\ApiArchivosController-&amp;gt;guardarArchivo()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #3 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(43): Illuminate\Routing\Controller-&amp;gt;callAction()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #4 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\Routing\ControllerDispatcher-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #5 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): Illuminate\Routing\Route-&amp;gt;runController()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #6 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(798): Illuminate\Routing\Route-&amp;gt;run()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #7 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Routing\Router-&amp;gt;Illuminate\Routing\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #8 /var/www/apis/API_servicios/app/Http/Middleware/TokenAuth.php(28): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #9 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): App\Http\Middleware\TokenAuth-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #10 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #11 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\SubstituteBindings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #12 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(126): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #13 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(102): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequest()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #14 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(54): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequestUsingNamedLimiter()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #15 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #16 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #17 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(799): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #18 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(776): Illuminate\Routing\Router-&amp;gt;runRouteWithinStack()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #19 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(740): Illuminate\Routing\Router-&amp;gt;runRoute()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #20 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(729): Illuminate\Routing\Router-&amp;gt;dispatchToRoute()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #21 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(190): Illuminate\Routing\Router-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #22 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Foundation\Http\Kernel-&amp;gt;Illuminate\Foundation\Http\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #23 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #24 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #25 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #26 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #27 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #28 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\TrimStrings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #29 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #30 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ValidatePostSize-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #31 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #32 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #33 /var/www/apis/API_servicios/vendor/fruitcake/laravel-cors/src/HandleCors.php(52): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #34 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Fruitcake\Cors\HandleCors-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #35 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #36 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Http\Middleware\TrustProxies-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #37 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #38 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\Session\Middleware\StartSession-&amp;gt;handleStatefulRequest()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #39 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Session\Middleware\StartSession-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #40 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #41 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #42 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(134): Illuminate\Foundation\Http\Kernel-&amp;gt;sendRequestThroughRouter()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #43 /var/www/apis/API_servicios/public/index.php(52): Illuminate\Foundation\Http\Kernel-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #44 {main}<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/pre &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/noscript &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;div id=&quot;app &quot;&gt;&lt;/div &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;!--<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        function e(){return(e=Object.assign||function(e){for(var t=1;t &lt;arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&amp;&amp;(e[r]=n[r])}return e}).apply(this,arguments)}var t=&quot;undefined &quot;!=typeof globalThis?globalThis:&quot;undefined &quot;!=typeof window?window:&quot;undefined &quot;!=typeof global?global:&quot;undefined &quot;!=typeof self?self:{};function n(e){var t={exports:{}};return e(t,t.exports),t.exports}var r=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError(&quot;Object.assign cannot be called with null or undefined &quot;);return Object(e)}var l=function(){try{if(!Object.assign)return!1;var e=new String(&quot;abc &quot;);if(e[5]=&quot;de &quot;,&quot;5 &quot;===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n &lt;10;n++)t[&quot;_ &quot;+String.fromCharCode(n)]=n;if(&quot;0123456789 &quot;!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(&quot;&quot;))return!1;var r={};return &quot;abcdefghijklmnopqrst &quot;.split(&quot;&quot;).forEach(function(e){r[e]=e}),&quot;abcdefghijklmnopqrst &quot;===Object.keys(Object.assign({},r)).join(&quot;&quot;)}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,l,s=i(e),c=1;c &lt;arguments.length;c++){for(var u in n=Object(arguments[c]))a.call(n,u)&amp;&amp;(s[u]=n[u]);if(r){l=r(n);for(var f=0;f &lt;l.length;f++)o.call(n,l[f])&amp;&amp;(s[l[f]]=n[l[f]])}}return s};n(function(e,t){var n=60103,r=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var a=60109,o=60110,i=60112;t.Suspense=60113;var s=60115,c=60116;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var u=Symbol.for;n=u(&quot;react.element &quot;),r=u(&quot;react.portal &quot;),t.Fragment=u(&quot;react.fragment &quot;),t.StrictMode=u(&quot;react.strict_mode &quot;),t.Profiler=u(&quot;react.profiler &quot;),a=u(&quot;react.provider &quot;),o=u(&quot;react.context &quot;),i=u(&quot;react.forward_ref &quot;),t.Suspense=u(&quot;react.suspense &quot;),s=u(&quot;react.memo &quot;),c=u(&quot;react.lazy &quot;)}var f=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator;function d(e){for(var t=&quot;https://reactjs.org/docs/error-decoder.html?invariant=&quot;+e,n=1;n &lt;arguments.length;n++)t+=&quot;&amp;args[]=&quot;+encodeURIComponent(arguments[n]);return &quot;Minified React error #&quot;+e+&quot;; visit &quot;+t+&quot;for the full message or use the non-minified dev environment for full errors and additional helpful warnings.&quot;}var p={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m={};function h(e,t,n){this.props=e,this.context=t,this.refs=m,this.updater=n||p}function g(){}function v(e,t,n){this.props=e,this.context=t,this.refs=m,this.updater=n||p}h.prototype.isReactComponent={},h.prototype.setState=function(e,t){if(&quot;object &quot;!=typeof e &amp;&amp;&quot;function &quot;!=typeof e &amp;&amp;null!=e)throw Error(d(85));this.updater.enqueueSetState(this,e,t,&quot;setState &quot;)},h.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,&quot;forceUpdate &quot;)},g.prototype=h.prototype;var y=v.prototype=new g;y.constructor=v,l(y,h.prototype),y.isPureReactComponent=!0;var E={current:null},b=Object.prototype.hasOwnProperty,T={key:!0,ref:!0,__self:!0,__source:!0};function N(e,t,r){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref &amp;&amp;(l=t.ref),void 0!==t.key &amp;&amp;(i=&quot;&quot;+t.key),t)b.call(t,a)&amp;&amp;!T.hasOwnProperty(a)&amp;&amp;(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=r;else if(1 &lt;s){for(var c=Array(s),u=0;u &lt;s;u++)c[u]=arguments[u+2];o.children=c}if(e &amp;&amp;e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&amp;&amp;(o[a]=s[a]);return{$$typeof:n,type:e,key:i,ref:l,props:o,_owner:E.current}}function R(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===n}var S=/\/+/g;function w(e,t){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;null!=e.key?function(e){var t={&quot;=&quot;:&quot;=0 &quot;,&quot;:&quot;:&quot;=2 &quot;};return &quot;$ &quot;+e.replace(/[=:]/g,function(e){return t[e]})}(&quot;&quot;+e.key):t.toString(36)}function O(e,t,a,o,i){var l=typeof e;&quot;undefined &quot;!==l &amp;&amp;&quot;boolean &quot;!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case &quot;string &quot;:case &quot;number &quot;:s=!0;break;case &quot;object &quot;:switch(e.$$typeof){case n:case r:s=!0}}if(s)return i=i(s=e),e=&quot;&quot;===o?&quot;.&quot;+w(s,0):o,Array.isArray(i)?(a=&quot;&quot;,null!=e &amp;&amp;(a=e.replace(S,&quot;$ &amp;/&quot;)+&quot;/&quot;),O(i,t,a,&quot;&quot;,function(e){return e})):null!=i &amp;&amp;(R(i)&amp;&amp;(i=function(e,t){return{$$typeof:n,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,a+(!i.key||s &amp;&amp;s.key===i.key?&quot;&quot;:(&quot;&quot;+i.key).replace(S,&quot;$ &amp;/&quot;)+&quot;/&quot;)+e)),t.push(i)),1;if(s=0,o=&quot;&quot;===o?&quot;.&quot;:o+&quot;:&quot;,Array.isArray(e))for(var c=0;c &lt;e.length;c++){var u=o+w(l=e[c],c);s+=O(l,t,a,u,i)}else if(&quot;function &quot;==typeof(u=function(e){return null===e||&quot;object &quot;!=typeof e?null:&quot;function &quot;==typeof(e=f &amp;&amp;e[f]||e[&quot;@@iterator &quot;])?e:null}(e)))for(e=u.call(e),c=0;!(l=e.next()).done;)s+=O(l=l.value,t,a,u=o+w(l,c++),i);else if(&quot;object &quot;===l)throw t=&quot;&quot;+e,Error(d(31,&quot;[object Object]&quot;===t?&quot;object with keys {&quot;+Object.keys(e).join(&quot;, &quot;)+&quot;}&quot;:t));return s}function C(e,t,n){if(null==e)return e;var r=[],a=0;return O(e,r,&quot;&quot;,&quot;&quot;,function(e){return t.call(n,e,a++)}),r}function A(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then(function(t){0===e._status &amp;&amp;(t=t.default,e._status=1,e._result=t)},function(t){0===e._status &amp;&amp;(e._status=2,e._result=t)})}if(1===e._status)return e._result;throw e._result}var I={current:null};function k(){var e=I.current;if(null===e)throw Error(d(321));return e}var x={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:E,IsSomeRendererActing:{current:!1},assign:l};t.Children={map:C,forEach:function(e,t,n){C(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return C(e,function(){t++}),t},toArray:function(e){return C(e,function(e){return e})||[]},only:function(e){if(!R(e))throw Error(d(143));return e}},t.Component=h,t.PureComponent=v,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=x,t.cloneElement=function(e,t,r){if(null==e)throw Error(d(267,e));var a=l({},e.props),o=e.key,i=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref &amp;&amp;(i=t.ref,s=E.current),void 0!==t.key &amp;&amp;(o=&quot;&quot;+t.key),e.type &amp;&amp;e.type.defaultProps)var c=e.type.defaultProps;for(u in t)b.call(t,u)&amp;&amp;!T.hasOwnProperty(u)&amp;&amp;(a[u]=void 0===t[u]&amp;&amp;void 0!==c?c[u]:t[u])}var u=arguments.length-2;if(1===u)a.children=r;else if(1 &lt;u){c=Array(u);for(var f=0;f &lt;u;f++)c[f]=arguments[f+2];a.children=c}return{$$typeof:n,type:e.type,key:o,ref:i,props:a,_owner:s}},t.createContext=function(e,t){return void 0===t &amp;&amp;(t=null),(e={$$typeof:o,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:a,_context:e},e.Consumer=e},t.createElement=N,t.createFactory=function(e){var t=N.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:i,render:e}},t.isValidElement=R,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:A}},t.memo=function(e,t){return{$$typeof:s,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return k().useCallback(e,t)},t.useContext=function(e,t){return k().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return k().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return k().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return k().useLayoutEffect(e,t)},t.useMemo=function(e,t){return k().useMemo(e,t)},t.useReducer=function(e,t,n){return k().useReducer(e,t,n)},t.useRef=function(e){return k().useRef(e)},t.useState=function(e){return k().useState(e)},t.version=&quot;17.0.2 &quot;});var s=n(function(e,t){!function(){var e=l,n=60103,r=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var a=60109,o=60110,i=60112;t.Suspense=60113;var s=60120,c=60115,u=60116,f=60121,d=60122,p=60117,m=60129,h=60131;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var g=Symbol.for;n=g(&quot;react.element &quot;),r=g(&quot;react.portal &quot;),t.Fragment=g(&quot;react.fragment &quot;),t.StrictMode=g(&quot;react.strict_mode &quot;),t.Profiler=g(&quot;react.profiler &quot;),a=g(&quot;react.provider &quot;),o=g(&quot;react.context &quot;),i=g(&quot;react.forward_ref &quot;),t.Suspense=g(&quot;react.suspense &quot;),s=g(&quot;react.suspense_list &quot;),c=g(&quot;react.memo &quot;),u=g(&quot;react.lazy &quot;),f=g(&quot;react.block &quot;),d=g(&quot;react.server.block &quot;),p=g(&quot;react.fundamental &quot;),g(&quot;react.scope &quot;),g(&quot;react.opaque.id &quot;),m=g(&quot;react.debug_trace_mode &quot;),g(&quot;react.offscreen &quot;),h=g(&quot;react.legacy_hidden &quot;)}var v=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator;function y(e){if(null===e||&quot;object &quot;!=typeof e)return null;var t=v &amp;&amp;e[v]||e[&quot;@@iterator &quot;];return &quot;function &quot;==typeof t?t:null}var E={current:null},b={current:null},T={},N=null;function R(e){N=e}T.setExtraStackFrame=function(e){N=e},T.getCurrentStack=null,T.getStackAddendum=function(){var e=&quot;&quot;;N &amp;&amp;(e+=N);var t=T.getCurrentStack;return t &amp;&amp;(e+=t()||&quot;&quot;),e};var S={ReactCurrentDispatcher:E,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:e};function w(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];C(&quot;warn &quot;,e,n)}function O(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];C(&quot;error &quot;,e,n)}function C(e,t,n){var r=S.ReactDebugCurrentFrame.getStackAddendum();&quot;&quot;!==r &amp;&amp;(t+=&quot;%s &quot;,n=n.concat([r]));var a=n.map(function(e){return &quot;&quot;+e});a.unshift(&quot;Warning: &quot;+t),Function.prototype.apply.call(console[e],console,a)}S.ReactDebugCurrentFrame=T;var A={};function I(e,t){var n=e.constructor,r=n &amp;&amp;(n.displayName||n.name)||&quot;ReactClass &quot;,a=r+&quot;.&quot;+t;A[a]||(O(&quot;Can &#039;t call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.&quot;,t,r),A[a]=!0)}var k={isMounted:function(e){return!1},enqueueForceUpdate:function(e,t,n){I(e,&quot;forceUpdate &quot;)},enqueueReplaceState:function(e,t,n,r){I(e,&quot;replaceState &quot;)},enqueueSetState:function(e,t,n,r){I(e,&quot;setState &quot;)}},x={};function _(e,t,n){this.props=e,this.context=t,this.refs=x,this.updater=n||k}Object.freeze(x),_.prototype.isReactComponent={},_.prototype.setState=function(e,t){if(&quot;object &quot;!=typeof e &amp;&amp;&quot;function &quot;!=typeof e &amp;&amp;null!=e)throw Error(&quot;setState(...): takes an object of state variables to update or a function which returns an object of state variables.&quot;);this.updater.enqueueSetState(this,e,t,&quot;setState &quot;)},_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,&quot;forceUpdate &quot;)};var L={isMounted:[&quot;isMounted &quot;,&quot;Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.&quot;],replaceState:[&quot;replaceState &quot;,&quot;Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236).&quot;]},P=function(e,t){Object.defineProperty(_.prototype,e,{get:function(){w(&quot;%s(...) is deprecated in plain JavaScript React classes. %s &quot;,t[0],t[1])}})};for(var M in L)L.hasOwnProperty(M)&amp;&amp;P(M,L[M]);function D(){}function U(e,t,n){this.props=e,this.context=t,this.refs=x,this.updater=n||k}D.prototype=_.prototype;var j=U.prototype=new D;function F(e){return e.displayName||&quot;Context &quot;}function z(e){if(null==e)return null;if(&quot;number &quot;==typeof e.tag &amp;&amp;O(&quot;Received an unexpected object in getComponentName(). This is likely a bug in React. Please file an issue.&quot;),&quot;function &quot;==typeof e)return e.displayName||e.name||null;if(&quot;string &quot;==typeof e)return e;switch(e){case t.Fragment:return &quot;Fragment &quot;;case r:return &quot;Portal &quot;;case t.Profiler:return &quot;Profiler &quot;;case t.StrictMode:return &quot;StrictMode &quot;;case t.Suspense:return &quot;Suspense &quot;;case s:return &quot;SuspenseList &quot;}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case o:return F(e)+&quot;.Consumer &quot;;case a:return F(e._context)+&quot;.Provider &quot;;case i:return p=(d=e.render).displayName||d.name||&quot;&quot;,e.displayName||(&quot;&quot;!==p?&quot;ForwardRef(&quot;+p+&quot;)&quot;:&quot;ForwardRef &quot;);case c:return z(e.type);case f:return z(e._render);case u:var n=e._payload,l=e._init;try{return z(l(n))}catch(e){return null}}var d,p;return null}j.constructor=U,e(j,_.prototype),j.isPureReactComponent=!0;var H,B,V,W=Object.prototype.hasOwnProperty,G={key:!0,ref:!0,__self:!0,__source:!0};function Y(e){if(W.call(e,&quot;ref &quot;)){var t=Object.getOwnPropertyDescriptor(e,&quot;ref &quot;).get;if(t &amp;&amp;t.isReactWarning)return!1}return void 0!==e.ref}function $(e){if(W.call(e,&quot;key &quot;)){var t=Object.getOwnPropertyDescriptor(e,&quot;key &quot;).get;if(t &amp;&amp;t.isReactWarning)return!1}return void 0!==e.key}function X(e,t){var n=function(){H||(H=!0,O(&quot;%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)&quot;,t))};n.isReactWarning=!0,Object.defineProperty(e,&quot;key &quot;,{get:n,configurable:!0})}function K(e,t){var n=function(){B||(B=!0,O(&quot;%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)&quot;,t))};n.isReactWarning=!0,Object.defineProperty(e,&quot;ref &quot;,{get:n,configurable:!0})}function q(e){if(&quot;string &quot;==typeof e.ref &amp;&amp;b.current &amp;&amp;e.__self &amp;&amp;b.current.stateNode!==e.__self){var t=z(b.current.type);V[t]||(O(&#039;Component &quot;%s &quot;contains the string ref &quot;%s &quot;. Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref &#039;,t,e.ref),V[t]=!0)}}V={};var J=function(e,t,r,a,o,i,l){var s={$$typeof:n,type:e,key:t,ref:r,props:l,_owner:i,_store:{}};return Object.defineProperty(s._store,&quot;validated &quot;,{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(s,&quot;_self &quot;,{configurable:!1,enumerable:!1,writable:!1,value:a}),Object.defineProperty(s,&quot;_source &quot;,{configurable:!1,enumerable:!1,writable:!1,value:o}),Object.freeze &amp;&amp;(Object.freeze(s.props),Object.freeze(s)),s};function Q(e,t,n){var r,a={},o=null,i=null,l=null,s=null;if(null!=t)for(r in Y(t)&amp;&amp;(i=t.ref,q(t)),$(t)&amp;&amp;(o=&quot;&quot;+t.key),l=void 0===t.__self?null:t.__self,s=void 0===t.__source?null:t.__source,t)W.call(t,r)&amp;&amp;!G.hasOwnProperty(r)&amp;&amp;(a[r]=t[r]);var c=arguments.length-2;if(1===c)a.children=n;else if(c &gt;1){for(var u=Array(c),f=0;f &lt;c;f++)u[f]=arguments[f+2];Object.freeze &amp;&amp;Object.freeze(u),a.children=u}if(e &amp;&amp;e.defaultProps){var d=e.defaultProps;for(r in d)void 0===a[r]&amp;&amp;(a[r]=d[r])}if(o||i){var p=&quot;function &quot;==typeof e?e.displayName||e.name||&quot;Unknown &quot;:e;o &amp;&amp;X(a,p),i &amp;&amp;K(a,p)}return J(e,o,i,l,s,b.current,a)}function Z(t,n,r){if(null==t)throw Error(&quot;React.cloneElement(...): The argument must be a React element, but you passed &quot;+t+&quot;.&quot;);var a,o,i=e({},t.props),l=t.key,s=t.ref,c=t._self,u=t._source,f=t._owner;if(null!=n)for(a in Y(n)&amp;&amp;(s=n.ref,f=b.current),$(n)&amp;&amp;(l=&quot;&quot;+n.key),t.type &amp;&amp;t.type.defaultProps &amp;&amp;(o=t.type.defaultProps),n)W.call(n,a)&amp;&amp;!G.hasOwnProperty(a)&amp;&amp;(i[a]=void 0===n[a]&amp;&amp;void 0!==o?o[a]:n[a]);var d=arguments.length-2;if(1===d)i.children=r;else if(d &gt;1){for(var p=Array(d),m=0;m &lt;d;m++)p[m]=arguments[m+2];i.children=p}return J(t.type,l,s,c,u,f,i)}function ee(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===n}var te=!1,ne=/\/+/g;function re(e){return e.replace(ne,&quot;$ &amp;/&quot;)}function ae(e,t){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;null!=e.key?(n={&quot;=&quot;:&quot;=0 &quot;,&quot;:&quot;:&quot;=2 &quot;},&quot;$ &quot;+(&quot;&quot;+e.key).replace(/[=:]/g,function(e){return n[e]})):t.toString(36);var n}function oe(e,t,a,o,i){var l=typeof e;&quot;undefined &quot;!==l &amp;&amp;&quot;boolean &quot;!==l||(e=null);var s,c,u,f=!1;if(null===e)f=!0;else switch(l){case &quot;string &quot;:case &quot;number &quot;:f=!0;break;case &quot;object &quot;:switch(e.$$typeof){case n:case r:f=!0}}if(f){var d=e,p=i(d),m=&quot;&quot;===o?&quot;.&quot;+ae(d,0):o;if(Array.isArray(p)){var h=&quot;&quot;;null!=m &amp;&amp;(h=re(m)+&quot;/&quot;),oe(p,t,h,&quot;&quot;,function(e){return e})}else null!=p &amp;&amp;(ee(p)&amp;&amp;(s=p,c=a+(!p.key||d &amp;&amp;d.key===p.key?&quot;&quot;:re(&quot;&quot;+p.key)+&quot;/&quot;)+m,p=J(s.type,c,s.ref,s._self,s._source,s._owner,s.props)),t.push(p));return 1}var g=0,v=&quot;&quot;===o?&quot;.&quot;:o+&quot;:&quot;;if(Array.isArray(e))for(var E=0;E &lt;e.length;E++)g+=oe(u=e[E],t,a,v+ae(u,E),i);else{var b=y(e);if(&quot;function &quot;==typeof b){var T=e;b===T.entries &amp;&amp;(te||w(&quot;Using Maps as children is not supported. Use an array of keyed ReactElements instead.&quot;),te=!0);for(var N,R=b.call(T),S=0;!(N=R.next()).done;)g+=oe(u=N.value,t,a,v+ae(u,S++),i)}else if(&quot;object &quot;===l){var O=&quot;&quot;+e;throw Error(&quot;Objects are not valid as a React child (found: &quot;+(&quot;[object Object]&quot;===O?&quot;object with keys {&quot;+Object.keys(e).join(&quot;, &quot;)+&quot;}&quot;:O)+&quot;). If you meant to render a collection of children, use an array instead.&quot;)}}return g}function ie(e,t,n){if(null==e)return e;var r=[],a=0;return oe(e,r,&quot;&quot;,&quot;&quot;,function(e){return t.call(n,e,a++)}),r}function le(e){if(-1===e._status){var t=(0,e._result)(),n=e;n._status=0,n._result=t,t.then(function(t){if(0===e._status){var n=t.default;void 0===n &amp;&amp;O(&quot;lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n  const MyComponent = lazy(() =&gt;import(&#039;./MyComponent &#039;))&quot;,t);var r=e;r._status=1,r._result=n}},function(t){if(0===e._status){var n=e;n._status=2,n._result=t}})}if(1===e._status)return e._result;throw e._result}function se(e){return &quot;string &quot;==typeof e||&quot;function &quot;==typeof e||e===t.Fragment||e===t.Profiler||e===m||e===t.StrictMode||e===t.Suspense||e===s||e===h||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;(e.$$typeof===u||e.$$typeof===c||e.$$typeof===a||e.$$typeof===o||e.$$typeof===i||e.$$typeof===p||e.$$typeof===f||e[0]===d)}function ce(){var e=E.current;if(null===e)throw Error(&quot;Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.&quot;);return e}var ue,fe,de,pe,me,he,ge,ve=0;function ye(){}ye.__reactDisabledLog=!0;var Ee,be=S.ReactCurrentDispatcher;function Te(e,t,n){if(void 0===Ee)try{throw Error()}catch(e){var r=e.stack.trim().match(/\n( *(at )?)/);Ee=r &amp;&amp;r[1]||&quot;&quot;}return &quot;\n &quot;+Ee+e}var Ne,Re=!1,Se=&quot;function &quot;==typeof WeakMap?WeakMap:Map;function we(t,n){if(!t||Re)return &quot;&quot;;var r,a=Ne.get(t);if(void 0!==a)return a;Re=!0;var o,i=Error.prepareStackTrace;Error.prepareStackTrace=void 0,o=be.current,be.current=null,function(){if(0===ve){ue=console.log,fe=console.info,de=console.warn,pe=console.error,me=console.group,he=console.groupCollapsed,ge=console.groupEnd;var e={configurable:!0,enumerable:!0,value:ye,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}ve++}();try{if(n){var l=function(){throw Error()};if(Object.defineProperty(l.prototype,&quot;props &quot;,{set:function(){throw Error()}}),&quot;object &quot;==typeof Reflect &amp;&amp;Reflect.construct){try{Reflect.construct(l,[])}catch(e){r=e}Reflect.construct(t,[],l)}else{try{l.call()}catch(e){r=e}t.call(l.prototype)}}else{try{throw Error()}catch(e){r=e}t()}}catch(e){if(e &amp;&amp;r &amp;&amp;&quot;string &quot;==typeof e.stack){for(var s=e.stack.split(&quot;\n &quot;),c=r.stack.split(&quot;\n &quot;),u=s.length-1,f=c.length-1;u &gt;=1 &amp;&amp;f &gt;=0 &amp;&amp;s[u]!==c[f];)f--;for(;u &gt;=1 &amp;&amp;f &gt;=0;u--,f--)if(s[u]!==c[f]){if(1!==u||1!==f)do{if(u--,--f &lt;0||s[u]!==c[f]){var d=&quot;\n &quot;+s[u].replace(&quot;at new &quot;,&quot;at &quot;);return &quot;function &quot;==typeof t &amp;&amp;Ne.set(t,d),d}}while(u &gt;=1 &amp;&amp;f &gt;=0);break}}}finally{Re=!1,be.current=o,function(){if(0==--ve){var t={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:e({},t,{value:ue}),info:e({},t,{value:fe}),warn:e({},t,{value:de}),error:e({},t,{value:pe}),group:e({},t,{value:me}),groupCollapsed:e({},t,{value:he}),groupEnd:e({},t,{value:ge})})}ve &lt;0 &amp;&amp;O(&quot;disabledDepth fell below zero. This is a bug in React. Please file an issue.&quot;)}(),Error.prepareStackTrace=i}var p=t?t.displayName||t.name:&quot;&quot;,m=p?Te(p):&quot;&quot;;return &quot;function &quot;==typeof t &amp;&amp;Ne.set(t,m),m}function Oe(e,t,n){return we(e,!1)}function Ce(e,n,r){if(null==e)return &quot;&quot;;if(&quot;function &quot;==typeof e)return we(e,function(e){var t=e.prototype;return!(!t||!t.isReactComponent)}(e));if(&quot;string &quot;==typeof e)return Te(e);switch(e){case t.Suspense:return Te(&quot;Suspense &quot;);case s:return Te(&quot;SuspenseList &quot;)}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case i:return Oe(e.render);case c:return Ce(e.type,n,r);case f:return Oe(e._render);case u:var a=e._payload,o=e._init;try{return Ce(o(a),n,r)}catch(e){}}return &quot;&quot;}Ne=new Se;var Ae,Ie={},ke=S.ReactDebugCurrentFrame;function xe(e){if(e){var t=e._owner,n=Ce(e.type,e._source,t?t.type:null);ke.setExtraStackFrame(n)}else ke.setExtraStackFrame(null)}function _e(e){if(e){var t=e._owner;R(Ce(e.type,e._source,t?t.type:null))}else R(null)}function Le(){if(b.current){var e=z(b.current.type);if(e)return &quot;\n\nCheck the render method of `&quot;+e+&quot;`.&quot;}return &quot;&quot;}function Pe(e){return null!=e?function(e){return void 0!==e?&quot;\n\nCheck your code at &quot;+e.fileName.replace(/^.*[\\\/]/,&quot;&quot;)+&quot;:&quot;+e.lineNumber+&quot;.&quot;:&quot;&quot;}(e.__source):&quot;&quot;}Ae=!1;var Me={};function De(e,t){if(e._store &amp;&amp;!e._store.validated &amp;&amp;null==e.key){e._store.validated=!0;var n=function(e){var t=Le();if(!t){var n=&quot;string &quot;==typeof e?e:e.displayName||e.name;n &amp;&amp;(t=&quot;\n\nCheck the top-level render call using &lt;&quot;+n+&quot;&gt;.&quot;)}return t}(t);if(!Me[n]){Me[n]=!0;var r=&quot;&quot;;e &amp;&amp;e._owner &amp;&amp;e._owner!==b.current &amp;&amp;(r=&quot;It was passed a child from &quot;+z(e._owner.type)+&quot;.&quot;),_e(e),O(&#039;Each child in a list should have a unique &quot;key &quot;prop.%s%s See https://reactjs.org/link/warning-keys for more information.&#039;,n,r),_e(null)}}}function Ue(e,t){if(&quot;object &quot;==typeof e)if(Array.isArray(e))for(var n=0;n &lt;e.length;n++){var r=e[n];ee(r)&amp;&amp;De(r,t)}else if(ee(e))e._store &amp;&amp;(e._store.validated=!0);else if(e){var a=y(e);if(&quot;function &quot;==typeof a &amp;&amp;a!==e.entries)for(var o,i=a.call(e);!(o=i.next()).done;)ee(o.value)&amp;&amp;De(o.value,t)}}function je(e){var t,n=e.type;if(null!=n &amp;&amp;&quot;string &quot;!=typeof n){if(&quot;function &quot;==typeof n)t=n.propTypes;else{if(&quot;object &quot;!=typeof n||n.$$typeof!==i &amp;&amp;n.$$typeof!==c)return;t=n.propTypes}if(t){var r=z(n);!function(e,t,n,r,a){var o=Function.call.bind(Object.prototype.hasOwnProperty);for(var i in e)if(o(e,i)){var l=void 0;try{if(&quot;function &quot;!=typeof e[i]){var s=Error((r||&quot;React class &quot;)+&quot;: prop type `&quot;+i+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+typeof e[i]+&quot;`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.&quot;);throw s.name=&quot;Invariant Violation &quot;,s}l=e[i](t,i,r,n,null,&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;)}catch(e){l=e}!l||l instanceof Error||(xe(a),O(&quot;%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).&quot;,r||&quot;React class &quot;,n,i,typeof l),xe(null)),l instanceof Error &amp;&amp;!(l.message in Ie)&amp;&amp;(Ie[l.message]=!0,xe(a),O(&quot;Failed %s type: %s &quot;,n,l.message),xe(null))}}(t,e.props,&quot;prop &quot;,r,e)}else void 0===n.PropTypes||Ae||(Ae=!0,O(&quot;Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?&quot;,z(n)||&quot;Unknown &quot;));&quot;function &quot;!=typeof n.getDefaultProps||n.getDefaultProps.isReactClassApproved||O(&quot;getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.&quot;)}}function Fe(e){for(var t=Object.keys(e.props),n=0;n &lt;t.length;n++){var r=t[n];if(&quot;children &quot;!==r &amp;&amp;&quot;key &quot;!==r){_e(e),O(&quot;Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.&quot;,r),_e(null);break}}null!==e.ref &amp;&amp;(_e(e),O(&quot;Invalid attribute `ref` supplied to `React.Fragment`.&quot;),_e(null))}function ze(e,r,a){var o=se(e);if(!o){var i=&quot;&quot;;(void 0===e||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;0===Object.keys(e).length)&amp;&amp;(i+=&quot;You likely forgot to export your component from the file it &#039;s defined in, or you might have mixed up default and named imports.&quot;);var l,s=Pe(r);i+=s||Le(),null===e?l=&quot;null &quot;:Array.isArray(e)?l=&quot;array &quot;:void 0!==e &amp;&amp;e.$$typeof===n?(l=&quot;&lt;&quot;+(z(e.type)||&quot;Unknown &quot;)+&quot;/&gt;&quot;,i=&quot;Did you accidentally export a JSX literal instead of a component?&quot;):l=typeof e,O(&quot;React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s &quot;,l,i)}var c=Q.apply(this,arguments);if(null==c)return c;if(o)for(var u=2;u &lt;arguments.length;u++)Ue(arguments[u],e);return e===t.Fragment?Fe(c):je(c),c}var He=!1;try{var Be=Object.freeze({});new Map([[Be,null]]),new Set([Be])}catch(e){}var Ve=ze;t.Children={map:ie,forEach:function(e,t,n){ie(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return ie(e,function(){t++}),t},toArray:function(e){return ie(e,function(e){return e})||[]},only:function(e){if(!ee(e))throw Error(&quot;React.Children.only expected to receive a single React element child.&quot;);return e}},t.Component=_,t.PureComponent=U,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=S,t.cloneElement=function(e,t,n){for(var r=Z.apply(this,arguments),a=2;a &lt;arguments.length;a++)Ue(arguments[a],r.type);return je(r),r},t.createContext=function(e,t){void 0===t?t=null:null!==t &amp;&amp;&quot;function &quot;!=typeof t &amp;&amp;O(&quot;createContext: Expected the optional second argument to be a function. Instead received: %s &quot;,t);var n={$$typeof:o,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null};n.Provider={$$typeof:a,_context:n};var r=!1,i=!1,l=!1,s={$$typeof:o,_context:n,_calculateChangedBits:n._calculateChangedBits};return Object.defineProperties(s,{Provider:{get:function(){return i||(i=!0,O(&quot;Rendering &lt;Context.Consumer.Provider &gt;is not supported and will be removed in a future major release. Did you mean to render &lt;Context.Provider &gt;instead?&quot;)),n.Provider},set:function(e){n.Provider=e}},_currentValue:{get:function(){return n._currentValue},set:function(e){n._currentValue=e}},_currentValue2:{get:function(){return n._currentValue2},set:function(e){n._currentValue2=e}},_threadCount:{get:function(){return n._threadCount},set:function(e){n._threadCount=e}},Consumer:{get:function(){return r||(r=!0,O(&quot;Rendering &lt;Context.Consumer.Consumer &gt;is not supported and will be removed in a future major release. Did you mean to render &lt;Context.Consumer &gt;instead?&quot;)),n.Consumer}},displayName:{get:function(){return n.displayName},set:function(e){l||(w(&quot;Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = &#039;%s &#039;.&quot;,e),l=!0)}}}),n.Consumer=s,n._currentRenderer=null,n._currentRenderer2=null,n},t.createElement=Ve,t.createFactory=function(e){var t=ze.bind(null,e);return t.type=e,He||(He=!0,w(&quot;React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.&quot;)),Object.defineProperty(t,&quot;type &quot;,{enumerable:!1,get:function(){return w(&quot;Factory.type is deprecated. Access the class directly before passing it to createFactory.&quot;),Object.defineProperty(this,&quot;type &quot;,{value:e}),e}}),t},t.createRef=function(){var e={current:null};return Object.seal(e),e},t.forwardRef=function(e){null!=e &amp;&amp;e.$$typeof===c?O(&quot;forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).&quot;):&quot;function &quot;!=typeof e?O(&quot;forwardRef requires a render function but was given %s.&quot;,null===e?&quot;null &quot;:typeof e):0!==e.length &amp;&amp;2!==e.length &amp;&amp;O(&quot;forwardRef render functions accept exactly two parameters: props and ref. %s &quot;,1===e.length?&quot;Did you forget to use the ref parameter?&quot;:&quot;Any additional parameter will be undefined.&quot;),null!=e &amp;&amp;(null==e.defaultProps &amp;&amp;null==e.propTypes||O(&quot;forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?&quot;));var t,n={$$typeof:i,render:e};return Object.defineProperty(n,&quot;displayName &quot;,{enumerable:!1,configurable:!0,get:function(){return t},set:function(n){t=n,null==e.displayName &amp;&amp;(e.displayName=n)}}),n},t.isValidElement=ee,t.lazy=function(e){var t,n,r={$$typeof:u,_payload:{_status:-1,_result:e},_init:le};return Object.defineProperties(r,{defaultProps:{configurable:!0,get:function(){return t},set:function(e){O(&quot;React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.&quot;),t=e,Object.defineProperty(r,&quot;defaultProps &quot;,{enumerable:!0})}},propTypes:{configurable:!0,get:function(){return n},set:function(e){O(&quot;React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.&quot;),n=e,Object.defineProperty(r,&quot;propTypes &quot;,{enumerable:!0})}}}),r},t.memo=function(e,t){se(e)||O(&quot;memo: The first argument must be a component. Instead received: %s &quot;,null===e?&quot;null &quot;:typeof e);var n,r={$$typeof:c,type:e,compare:void 0===t?null:t};return Object.defineProperty(r,&quot;displayName &quot;,{enumerable:!1,configurable:!0,get:function(){return n},set:function(t){n=t,null==e.displayName &amp;&amp;(e.displayName=t)}}),r},t.useCallback=function(e,t){return ce().useCallback(e,t)},t.useContext=function(e,t){var n=ce();if(void 0!==t &amp;&amp;O(&quot;useContext() second argument is reserved for future use in React. Passing it is not supported. You passed: %s.%s &quot;,t,&quot;number &quot;==typeof t &amp;&amp;Array.isArray(arguments[2])?&quot;\n\nDid you call array.map(useContext)? Calling Hooks inside a loop is not supported. Learn more at https://reactjs.org/link/rules-of-hooks &quot;:&quot;&quot;),void 0!==e._context){var r=e._context;r.Consumer===e?O(&quot;Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?&quot;):r.Provider===e &amp;&amp;O(&quot;Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?&quot;)}return n.useContext(e,t)},t.useDebugValue=function(e,t){return ce().useDebugValue(e,t)},t.useEffect=function(e,t){return ce().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return ce().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return ce().useLayoutEffect(e,t)},t.useMemo=function(e,t){return ce().useMemo(e,t)},t.useReducer=function(e,t,n){return ce().useReducer(e,t,n)},t.useRef=function(e){return ce().useRef(e)},t.useState=function(e){return ce().useState(e)},t.version=&quot;17.0.2 &quot;}()}),c=n(function(e){e.exports=s});n(function(e,t){var n,r,a,o;if(&quot;object &quot;==typeof performance &amp;&amp;&quot;function &quot;==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if(&quot;undefined &quot;==typeof window||&quot;function &quot;!=typeof MessageChannel){var c=null,u=null,f=function(){if(null!==c)try{var e=t.unstable_now();c(!0,e),c=null}catch(e){throw setTimeout(f,0),e}};n=function(e){null!==c?setTimeout(n,0,e):(c=e,setTimeout(f,0))},r=function(e,t){u=setTimeout(e,t)},a=function(){clearTimeout(u)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var d=window.setTimeout,p=window.clearTimeout;if(&quot;undefined &quot;!=typeof console){var m=window.cancelAnimationFrame;&quot;function &quot;!=typeof window.requestAnimationFrame &amp;&amp;console.error(&quot;This browser doesn &#039;t support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;),&quot;function &quot;!=typeof m &amp;&amp;console.error(&quot;This browser doesn &#039;t support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;)}var h=!1,g=null,v=-1,y=5,E=0;t.unstable_shouldYield=function(){return t.unstable_now()&gt;=E},o=function(){},t.unstable_forceFrameRate=function(e){0 &gt;e||125 &lt;e?console.error(&quot;forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported &quot;):y=0 &lt;e?Math.floor(1e3/e):5};var b=new MessageChannel,T=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();E=e+y;try{g(!0,e)?T.postMessage(null):(h=!1,g=null)}catch(e){throw T.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,T.postMessage(null))},r=function(e,n){v=d(function(){e(t.unstable_now())},n)},a=function(){p(v),v=-1}}function N(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1 &gt;&gt;&gt;1,a=e[r];if(!(void 0!==a &amp;&amp;0 &lt;w(a,t)))break e;e[r]=t,e[n]=a,n=r}}function R(e){return void 0===(e=e[0])?null:e}function S(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,a=e.length;r &lt;a;){var o=2*(r+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i &amp;&amp;0 &gt;w(i,n))void 0!==s &amp;&amp;0 &gt;w(s,i)?(e[r]=s,e[l]=n,r=l):(e[r]=i,e[o]=n,r=o);else{if(!(void 0!==s &amp;&amp;0 &gt;w(s,n)))break e;e[r]=s,e[l]=n,r=l}}}return t}return null}function w(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var O=[],C=[],A=1,I=null,k=3,x=!1,_=!1,L=!1;function P(e){for(var t=R(C);null!==t;){if(null===t.callback)S(C);else{if(!(t.startTime &lt;=e))break;S(C),t.sortIndex=t.expirationTime,N(O,t)}t=R(C)}}function M(e){if(L=!1,P(e),!_)if(null!==R(O))_=!0,n(D);else{var t=R(C);null!==t &amp;&amp;r(M,t.startTime-e)}}function D(e,n){_=!1,L &amp;&amp;(L=!1,a()),x=!0;var o=k;try{for(P(n),I=R(O);null!==I &amp;&amp;(!(I.expirationTime &gt;n)||e &amp;&amp;!t.unstable_shouldYield());){var i=I.callback;if(&quot;function &quot;==typeof i){I.callback=null,k=I.priorityLevel;var l=i(I.expirationTime &lt;=n);n=t.unstable_now(),&quot;function &quot;==typeof l?I.callback=l:I===R(O)&amp;&amp;S(O),P(n)}else S(O);I=R(O)}if(null!==I)var s=!0;else{var c=R(C);null!==c &amp;&amp;r(M,c.startTime-n),s=!1}return s}finally{I=null,k=o,x=!1}}var U=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){_||x||(_=!0,n(D))},t.unstable_getCurrentPriorityLevel=function(){return k},t.unstable_getFirstCallbackNode=function(){return R(O)},t.unstable_next=function(e){switch(k){case 1:case 2:case 3:var t=3;break;default:t=k}var n=k;k=t;try{return e()}finally{k=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=U,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=k;k=e;try{return t()}finally{k=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i=&quot;object &quot;==typeof i &amp;&amp;null!==i &amp;&amp;&quot;number &quot;==typeof(i=i.delay)&amp;&amp;0 &lt;i?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:A++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i &gt;l?(e.sortIndex=i,N(C,e),null===R(O)&amp;&amp;e===R(C)&amp;&amp;(L?a():L=!0,r(M,i-l))):(e.sortIndex=s,N(O,e),_||x||(_=!0,n(D))),e},t.unstable_wrapCallback=function(e){var t=k;return function(){var n=k;k=t;try{return e.apply(this,arguments)}finally{k=n}}}});var u=n(function(e,t){!function(){var e,n,r,a;if(&quot;object &quot;==typeof performance &amp;&amp;&quot;function &quot;==typeof performance.now){var o=performance;t.unstable_now=function(){return o.now()}}else{var i=Date,l=i.now();t.unstable_now=function(){return i.now()-l}}if(&quot;undefined &quot;==typeof window||&quot;function &quot;!=typeof MessageChannel){var s=null,c=null,u=function(){if(null!==s)try{var e=t.unstable_now();s(!0,e),s=null}catch(e){throw setTimeout(u,0),e}};e=function(t){null!==s?setTimeout(e,0,t):(s=t,setTimeout(u,0))},n=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},a=t.unstable_forceFrameRate=function(){}}else{var f=window.setTimeout,d=window.clearTimeout;if(&quot;undefined &quot;!=typeof console){var p=window.requestAnimationFrame,m=window.cancelAnimationFrame;&quot;function &quot;!=typeof p &amp;&amp;console.error(&quot;This browser doesn &#039;t support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;),&quot;function &quot;!=typeof m &amp;&amp;console.error(&quot;This browser doesn &#039;t support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;)}var h=!1,g=null,v=-1,y=5,E=0;t.unstable_shouldYield=function(){return t.unstable_now()&gt;=E},a=function(){},t.unstable_forceFrameRate=function(e){e &lt;0||e &gt;125?console.error(&quot;forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported &quot;):y=e &gt;0?Math.floor(1e3/e):5};var b=new MessageChannel,T=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();E=e+y;try{g(!0,e)?T.postMessage(null):(h=!1,g=null)}catch(e){throw T.postMessage(null),e}}else h=!1},e=function(e){g=e,h||(h=!0,T.postMessage(null))},n=function(e,n){v=f(function(){e(t.unstable_now())},n)},r=function(){d(v),v=-1}}function N(e,t){var n=e.length;e.push(t),function(e,t,n){for(var r=n;;){var a=r-1 &gt;&gt;&gt;1,o=e[a];if(!(void 0!==o &amp;&amp;w(o,t)&gt;0))return;e[a]=t,e[r]=o,r=a}}(e,t,n)}function R(e){var t=e[0];return void 0===t?null:t}function S(e){var t=e[0];if(void 0!==t){var n=e.pop();return n!==t &amp;&amp;(e[0]=n,function(e,t,n){for(var r=0,a=e.length;r &lt;a;){var o=2*(r+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i &amp;&amp;w(i,t)&lt;0)void 0!==s &amp;&amp;w(s,i)&lt;0?(e[r]=s,e[l]=t,r=l):(e[r]=i,e[o]=t,r=o);else{if(!(void 0!==s &amp;&amp;w(s,t)&lt;0))return;e[r]=s,e[l]=t,r=l}}}(e,n)),t}return null}function w(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var O=[],C=[],A=1,I=null,k=3,x=!1,_=!1,L=!1;function P(e){for(var t=R(C);null!==t;){if(null===t.callback)S(C);else{if(!(t.startTime &lt;=e))return;S(C),t.sortIndex=t.expirationTime,N(O,t)}t=R(C)}}function M(t){if(L=!1,P(t),!_)if(null!==R(O))_=!0,e(D);else{var r=R(C);null!==r &amp;&amp;n(M,r.startTime-t)}}function D(e,a){_=!1,L &amp;&amp;(L=!1,r()),x=!0;var o=k;try{return function(e,r){var a=r;for(P(a),I=R(O);null!==I &amp;&amp;(!(I.expirationTime &gt;a)||e &amp;&amp;!t.unstable_shouldYield());){var o=I.callback;if(&quot;function &quot;==typeof o){I.callback=null,k=I.priorityLevel;var i=o(I.expirationTime &lt;=a);a=t.unstable_now(),&quot;function &quot;==typeof i?I.callback=i:I===R(O)&amp;&amp;S(O),P(a)}else S(O);I=R(O)}if(null!==I)return!0;var l=R(C);return null!==l &amp;&amp;n(M,l.startTime-a),!1}(e,a)}finally{I=null,k=o,x=!1}}var U=a;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){_||x||(_=!0,e(D))},t.unstable_getCurrentPriorityLevel=function(){return k},t.unstable_getFirstCallbackNode=function(){return R(O)},t.unstable_next=function(e){var t;switch(k){case 1:case 2:case 3:t=3;break;default:t=k}var n=k;k=t;try{return e()}finally{k=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=U,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=k;k=e;try{return t()}finally{k=n}},t.unstable_scheduleCallback=function(a,o,i){var l,s,c=t.unstable_now();if(&quot;object &quot;==typeof i &amp;&amp;null!==i){var u=i.delay;l=&quot;number &quot;==typeof u &amp;&amp;u &gt;0?c+u:c}else l=c;switch(a){case 1:s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;case 3:default:s=5e3}var f=l+s,d={id:A++,callback:o,priorityLevel:a,startTime:l,expirationTime:f,sortIndex:-1};return l &gt;c?(d.sortIndex=l,N(C,d),null===R(O)&amp;&amp;d===R(C)&amp;&amp;(L?r():L=!0,n(M,l-c))):(d.sortIndex=f,N(O,d),_||x||(_=!0,e(D))),d},t.unstable_wrapCallback=function(e){var t=k;return function(){var n=k;k=t;try{return e.apply(this,arguments)}finally{k=n}}}}()}),f=n(function(e){e.exports=u});function d(e){for(var t=&quot;https://reactjs.org/docs/error-decoder.html?invariant=&quot;+e,n=1;n &lt;arguments.length;n++)t+=&quot;&amp;args[]=&quot;+encodeURIComponent(arguments[n]);return &quot;Minified React error #&quot;+e+&quot;; visit &quot;+t+&quot;for the full message or use the non-minified dev environment for full errors and additional helpful warnings.&quot;}if(!c)throw Error(d(227));var p=new Set;function m(e,t){h(e,t),h(e+&quot;Capture &quot;,t)}function h(e,t){for(e=0;e &lt;t.length;e++)p.add(t[e])}var g=!(&quot;undefined &quot;==typeof window||void 0===window.document||void 0===window.document.createElement);function v(e,t,n,r,a,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}[&quot;contentEditable &quot;,&quot;draggable &quot;,&quot;spellCheck &quot;,&quot;value &quot;].forEach(function(e){new v(e,2,!1,e.toLowerCase(),null,!1,!1)}),&quot;allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope &quot;.split(&quot;&quot;).forEach(function(e){new v(e,3,!1,e.toLowerCase(),null,!1,!1)}),[&quot;rowSpan &quot;,&quot;start &quot;].forEach(function(e){new v(e,5,!1,e.toLowerCase(),null,!1,!1)});var y=/[\-:]([a-z])/g;function E(e){return e[1].toUpperCase()}&quot;accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height &quot;.split(&quot;&quot;).forEach(function(e){e.replace(y,E)}),&quot;xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type &quot;.split(&quot;&quot;).forEach(function(e){e.replace(y,E)}),[&quot;xml:base &quot;,&quot;xml:lang &quot;,&quot;xml:space &quot;].forEach(function(e){e.replace(y,E)}),[&quot;tabIndex &quot;,&quot;crossOrigin &quot;].forEach(function(e){new v(e,1,!1,e.toLowerCase(),null,!1,!1)}),[&quot;src &quot;,&quot;href &quot;,&quot;action &quot;,&quot;formAction &quot;].forEach(function(e){new v(e,1,!1,e.toLowerCase(),null,!0,!0)});var b=c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var T=Symbol.for;T(&quot;react.element &quot;),T(&quot;react.portal &quot;),T(&quot;react.fragment &quot;),T(&quot;react.strict_mode &quot;),T(&quot;react.profiler &quot;),T(&quot;react.provider &quot;),T(&quot;react.context &quot;),T(&quot;react.forward_ref &quot;),T(&quot;react.suspense &quot;),T(&quot;react.suspense_list &quot;),T(&quot;react.memo &quot;),T(&quot;react.lazy &quot;),T(&quot;react.block &quot;),T(&quot;react.scope &quot;),T(&quot;react.opaque.id &quot;),T(&quot;react.debug_trace_mode &quot;),T(&quot;react.offscreen &quot;),T(&quot;react.legacy_hidden &quot;)}&quot;undefined &quot;!=typeof MSApp &amp;&amp;MSApp;var N={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},R=[&quot;Webkit &quot;,&quot;ms &quot;,&quot;Moz &quot;,&quot;O &quot;];if(Object.keys(N).forEach(function(e){R.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),N[t]=N[e]})}),l({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}),g)try{var S={};Object.defineProperty(S,&quot;passive &quot;,{get:function(){}}),window.addEventListener(&quot;test &quot;,S,S),window.removeEventListener(&quot;test &quot;,S,S)}catch(e){}function w(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026 &amp;(t=e).flags)&amp;&amp;(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function O(e){if(w(e)!==e)throw Error(d(188))}function C(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[&quot;Webkit &quot;+e]=&quot;webkit &quot;+t,n[&quot;Moz &quot;+e]=&quot;moz &quot;+t,n}var A={animationend:C(&quot;Animation &quot;,&quot;AnimationEnd &quot;),animationiteration:C(&quot;Animation &quot;,&quot;AnimationIteration &quot;),animationstart:C(&quot;Animation &quot;,&quot;AnimationStart &quot;),transitionend:C(&quot;Transition &quot;,&quot;TransitionEnd &quot;)},I={},k={};function x(e){if(I[e])return I[e];if(!A[e])return e;var t,n=A[e];for(t in n)if(n.hasOwnProperty(t)&amp;&amp;t in k)return I[e]=n[t];return e}g &amp;&amp;(k=document.createElement(&quot;div &quot;).style,&quot;AnimationEvent &quot;in window||(delete A.animationend.animation,delete A.animationiteration.animation,delete A.animationstart.animation),&quot;TransitionEvent &quot;in window||delete A.transitionend.transition);var _=x(&quot;animationend &quot;),L=x(&quot;animationiteration &quot;),P=x(&quot;animationstart &quot;),M=x(&quot;transitionend &quot;),D=new Map,U=new Map,j=[&quot;abort &quot;,&quot;abort &quot;,_,&quot;animationEnd &quot;,L,&quot;animationIteration &quot;,P,&quot;animationStart &quot;,&quot;canplay &quot;,&quot;canPlay &quot;,&quot;canplaythrough &quot;,&quot;canPlayThrough &quot;,&quot;durationchange &quot;,&quot;durationChange &quot;,&quot;emptied &quot;,&quot;emptied &quot;,&quot;encrypted &quot;,&quot;encrypted &quot;,&quot;ended &quot;,&quot;ended &quot;,&quot;error &quot;,&quot;error &quot;,&quot;gotpointercapture &quot;,&quot;gotPointerCapture &quot;,&quot;load &quot;,&quot;load &quot;,&quot;loadeddata &quot;,&quot;loadedData &quot;,&quot;loadedmetadata &quot;,&quot;loadedMetadata &quot;,&quot;loadstart &quot;,&quot;loadStart &quot;,&quot;lostpointercapture &quot;,&quot;lostPointerCapture &quot;,&quot;playing &quot;,&quot;playing &quot;,&quot;progress &quot;,&quot;progress &quot;,&quot;seeking &quot;,&quot;seeking &quot;,&quot;stalled &quot;,&quot;stalled &quot;,&quot;suspend &quot;,&quot;suspend &quot;,&quot;timeupdate &quot;,&quot;timeUpdate &quot;,M,&quot;transitionEnd &quot;,&quot;waiting &quot;,&quot;waiting &quot;];function F(e,t){for(var n=0;n &lt;e.length;n+=2){var r=e[n],a=e[n+1];a=&quot;on &quot;+(a[0].toUpperCase()+a.slice(1)),U.set(r,t),D.set(r,a),m(a,[r])}}function z(e){var t=e.keyCode;return &quot;charCode &quot;in e?0===(e=e.charCode)&amp;&amp;13===t &amp;&amp;(e=13):e=t,10===e &amp;&amp;(e=13),32 &lt;=e||13===e?e:0}function H(){return!0}function B(){return!1}function V(e){function t(t,n,r,a,o){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&amp;&amp;(this[i]=(t=e[i])?t(a):a[i]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?H:B,this.isPropagationStopped=B,this}return l(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e &amp;&amp;(e.preventDefault?e.preventDefault():&quot;unknown &quot;!=typeof e.returnValue &amp;&amp;(e.returnValue=!1),this.isDefaultPrevented=H)},stopPropagation:function(){var e=this.nativeEvent;e &amp;&amp;(e.stopPropagation?e.stopPropagation():&quot;unknown &quot;!=typeof e.cancelBubble &amp;&amp;(e.cancelBubble=!0),this.isPropagationStopped=H)},persist:function(){},isPersistent:H}),t}(0,f.unstable_now)();var W={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0};V(W);var G=l({},W,{view:0,detail:0});V(G);var Y,$,X,K=l({},G,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:ee,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return &quot;movementX &quot;in e?e.movementX:(e!==X &amp;&amp;(X &amp;&amp;&quot;mousemove &quot;===e.type?(Y=e.screenX-X.screenX,$=e.screenY-X.screenY):$=Y=0,X=e),Y)},movementY:function(e){return &quot;movementY &quot;in e?e.movementY:$}});V(K),V(l({},K,{dataTransfer:0})),V(l({},G,{relatedTarget:0})),V(l({},W,{animationName:0,elapsedTime:0,pseudoElement:0})),V(l({},W,{clipboardData:function(e){return &quot;clipboardData &quot;in e?e.clipboardData:window.clipboardData}})),V(l({},W,{data:0}));var q={Esc:&quot;Escape &quot;,Spacebar:&quot;&quot;,Left:&quot;ArrowLeft &quot;,Up:&quot;ArrowUp &quot;,Right:&quot;ArrowRight &quot;,Down:&quot;ArrowDown &quot;,Del:&quot;Delete &quot;,Win:&quot;OS &quot;,Menu:&quot;ContextMenu &quot;,Apps:&quot;ContextMenu &quot;,Scroll:&quot;ScrollLock &quot;,MozPrintableKey:&quot;Unidentified &quot;},J={8:&quot;Backspace &quot;,9:&quot;Tab &quot;,12:&quot;Clear &quot;,13:&quot;Enter &quot;,16:&quot;Shift &quot;,17:&quot;Control &quot;,18:&quot;Alt &quot;,19:&quot;Pause &quot;,20:&quot;CapsLock &quot;,27:&quot;Escape &quot;,32:&quot;&quot;,33:&quot;PageUp &quot;,34:&quot;PageDown &quot;,35:&quot;End &quot;,36:&quot;Home &quot;,37:&quot;ArrowLeft &quot;,38:&quot;ArrowUp &quot;,39:&quot;ArrowRight &quot;,40:&quot;ArrowDown &quot;,45:&quot;Insert &quot;,46:&quot;Delete &quot;,112:&quot;F1 &quot;,113:&quot;F2 &quot;,114:&quot;F3 &quot;,115:&quot;F4 &quot;,116:&quot;F5 &quot;,117:&quot;F6 &quot;,118:&quot;F7 &quot;,119:&quot;F8 &quot;,120:&quot;F9 &quot;,121:&quot;F10 &quot;,122:&quot;F11 &quot;,123:&quot;F12 &quot;,144:&quot;NumLock &quot;,145:&quot;ScrollLock &quot;,224:&quot;Meta &quot;},Q={Alt:&quot;altKey &quot;,Control:&quot;ctrlKey &quot;,Meta:&quot;metaKey &quot;,Shift:&quot;shiftKey &quot;};function Z(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Q[e])&amp;&amp;!!t[e]}function ee(){return Z}if(V(l({},G,{key:function(e){if(e.key){var t=q[e.key]||e.key;if(&quot;Unidentified &quot;!==t)return t}return &quot;keypress &quot;===e.type?13===(e=z(e))?&quot;Enter &quot;:String.fromCharCode(e):&quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?J[e.keyCode]||&quot;Unidentified &quot;:&quot;&quot;},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:ee,charCode:function(e){return &quot;keypress &quot;===e.type?z(e):0},keyCode:function(e){return &quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0},which:function(e){return &quot;keypress &quot;===e.type?z(e):&quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0}})),V(l({},K,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),V(l({},G,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:ee})),V(l({},W,{propertyName:0,elapsedTime:0,pseudoElement:0})),V(l({},K,{deltaX:function(e){return &quot;deltaX &quot;in e?e.deltaX:&quot;wheelDeltaX &quot;in e?-e.wheelDeltaX:0},deltaY:function(e){return &quot;deltaY &quot;in e?e.deltaY:&quot;wheelDeltaY &quot;in e?-e.wheelDeltaY:&quot;wheelDelta &quot;in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),g &amp;&amp;g){var te=&quot;oninput &quot;in document;if(!te){var ne=document.createElement(&quot;div &quot;);ne.setAttribute(&quot;oninput &quot;,&quot;return;&quot;),te=&quot;function &quot;==typeof ne.oninput}}F(&quot;cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange &quot;.split(&quot;&quot;),0),F(&quot;drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel &quot;.split(&quot;&quot;),1),F(j,2);for(var re=&quot;change selectionchange textInput compositionstart compositionend compositionupdate &quot;.split(&quot;&quot;),ae=0;ae &lt;re.length;ae++)U.set(re[ae],0);function oe(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(&quot;$ &quot;===n||&quot;$!&quot;===n||&quot;$?&quot;===n){if(0===t)return e;t--}else &quot;/$ &quot;===n &amp;&amp;t++}e=e.previousSibling}return null}h(&quot;onMouseEnter &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),h(&quot;onMouseLeave &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),h(&quot;onPointerEnter &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),h(&quot;onPointerLeave &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),m(&quot;onChange &quot;,&quot;change click focusin focusout input keydown keyup selectionchange &quot;.split(&quot;&quot;)),m(&quot;onSelect &quot;,&quot;focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange &quot;.split(&quot;&quot;)),m(&quot;onBeforeInput &quot;,[&quot;compositionend &quot;,&quot;keypress &quot;,&quot;textInput &quot;,&quot;paste &quot;]),m(&quot;onCompositionEnd &quot;,&quot;compositionend focusout keydown keypress keyup mousedown &quot;.split(&quot;&quot;)),m(&quot;onCompositionStart &quot;,&quot;compositionstart focusout keydown keypress keyup mousedown &quot;.split(&quot;&quot;)),m(&quot;onCompositionUpdate &quot;,&quot;compositionupdate focusout keydown keypress keyup mousedown &quot;.split(&quot;&quot;)),Math.random().toString(36).slice(2);var ie=Math.random().toString(36).slice(2),le=&quot;__reactFiber$ &quot;+ie,se=&quot;__reactContainer$ &quot;+ie;(0,f.unstable_now)(),new c.Component;var ce={findFiberByHostInstance:function(e){var t=e[le];if(t)return t;for(var n=e.parentNode;n;){if(t=n[se]||n[le]){if(n=t.alternate,null!==t.child||null!==n &amp;&amp;null!==n.child)for(e=oe(e);null!==e;){if(n=e[le])return n;e=oe(e)}return t}n=(e=n).parentNode}return null},bundleType:0,version:&quot;17.0.2 &quot;,rendererPackageName:&quot;react-dom &quot;},ue={bundleType:ce.bundleType,version:ce.version,rendererPackageName:ce.rendererPackageName,rendererConfig:ce.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:b.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=function(e){if(!(e=function(e){var t=e.alternate;if(!t){if(null===(t=w(e)))throw Error(d(188));return t!==e?null:e}for(var n=e,r=t;;){var a=n.return;if(null===a)break;var o=a.alternate;if(null===o){if(null!==(r=a.return)){n=r;continue}break}if(a.child===o.child){for(o=a.child;o;){if(o===n)return O(a),e;if(o===r)return O(a),t;o=o.sibling}throw Error(d(188))}if(n.return!==r.return)n=a,r=o;else{for(var i=!1,l=a.child;l;){if(l===n){i=!0,n=a,r=o;break}if(l===r){i=!0,r=a,n=o;break}l=l.sibling}if(!i){for(l=o.child;l;){if(l===n){i=!0,n=o,r=a;break}if(l===r){i=!0,r=o,n=a;break}l=l.sibling}if(!i)throw Error(d(189))}}if(n.alternate!==r)throw Error(d(190))}if(3!==n.tag)throw Error(d(188));return n.stateNode.current===n?e:t}(e)))return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}(e))?null:e.stateNode},findFiberByHostInstance:ce.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(&quot;undefined &quot;!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var fe=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!fe.isDisabled &amp;&amp;fe.supportsFiber)try{fe.inject(ue)}catch(e){}}var de=n(function(e,t){!function(){var e=0,n=0;t.__interactionsRef=null,t.__subscriberRef=null,t.__interactionsRef={current:new Set},t.__subscriberRef={current:null};var r=null;function a(e){var t=!1,n=null;if(r.forEach(function(r){try{r.onInteractionTraced(e)}catch(e){t||(t=!0,n=e)}}),t)throw n}function o(e){var t=!1,n=null;if(r.forEach(function(r){try{r.onInteractionScheduledWorkCompleted(e)}catch(e){t||(t=!0,n=e)}}),t)throw n}function i(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkScheduled(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}function l(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkStarted(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}function s(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkStopped(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}function c(e,t){var n=!1,a=null;if(r.forEach(function(r){try{r.onWorkCanceled(e,t)}catch(e){n||(n=!0,a=e)}}),n)throw a}r=new Set,t.unstable_clear=function(e){var n=t.__interactionsRef.current;t.__interactionsRef.current=new Set;try{return e()}finally{t.__interactionsRef.current=n}},t.unstable_getCurrent=function(){return t.__interactionsRef.current},t.unstable_getThreadID=function(){return++n},t.unstable_subscribe=function(e){r.add(e),1===r.size &amp;&amp;(t.__subscriberRef.current={onInteractionScheduledWorkCompleted:o,onInteractionTraced:a,onWorkCanceled:c,onWorkScheduled:i,onWorkStarted:l,onWorkStopped:s})},t.unstable_trace=function(n,r,a){var o=arguments.length &gt;3 &amp;&amp;void 0!==arguments[3]?arguments[3]:0,i={__count:1,id:e++,name:n,timestamp:r},l=t.__interactionsRef.current,s=new Set(l);s.add(i),t.__interactionsRef.current=s;var c,u=t.__subscriberRef.current;try{null!==u &amp;&amp;u.onInteractionTraced(i)}finally{try{null!==u &amp;&amp;u.onWorkStarted(s,o)}finally{try{c=a()}finally{t.__interactionsRef.current=l;try{null!==u &amp;&amp;u.onWorkStopped(s,o)}finally{i.__count--,null!==u &amp;&amp;0===i.__count &amp;&amp;u.onInteractionScheduledWorkCompleted(i)}}}}return c},t.unstable_unsubscribe=function(e){r.delete(e),0===r.size &amp;&amp;(t.__subscriberRef.current=null)},t.unstable_wrap=function(e){var n=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:0,r=t.__interactionsRef.current,a=t.__subscriberRef.current;null!==a &amp;&amp;a.onWorkScheduled(r,n),r.forEach(function(e){e.__count++});var o=!1;function i(){var i=t.__interactionsRef.current;t.__interactionsRef.current=r,a=t.__subscriberRef.current;try{var l;try{null!==a &amp;&amp;a.onWorkStarted(r,n)}finally{try{l=e.apply(void 0,arguments)}finally{t.__interactionsRef.current=i,null!==a &amp;&amp;a.onWorkStopped(r,n)}}return l}finally{o||(o=!0,r.forEach(function(e){e.__count--,null!==a &amp;&amp;0===e.__count &amp;&amp;a.onInteractionScheduledWorkCompleted(e)}))}}return i.cancel=function(){a=t.__subscriberRef.current;try{null!==a &amp;&amp;a.onWorkCanceled(r,n)}finally{r.forEach(function(e){e.__count--,a &amp;&amp;0===e.__count &amp;&amp;a.onInteractionScheduledWorkCompleted(e)})}},i}}()}),pe=n(function(e){e.exports=de}),me=n(function(e,t){!function(){var e=c,n=l,r=f,a=pe,o=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function i(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];u(&quot;warn &quot;,e,n)}function s(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];u(&quot;error &quot;,e,n)}function u(e,t,n){var r=o.ReactDebugCurrentFrame.getStackAddendum();&quot;&quot;!==r &amp;&amp;(t+=&quot;%s &quot;,n=n.concat([r]));var a=n.map(function(e){return &quot;&quot;+e});a.unshift(&quot;Warning: &quot;+t),Function.prototype.apply.call(console[e],console,a)}if(!e)throw Error(&quot;ReactDOM was loaded before React. Make sure you load the React package before loading ReactDOM.&quot;);var d=10,p=11,m=12,h=13,g=14,v=15,y=17,E=19,b=20,T=22,N=23,R=24,S=!1,w=new Set,O={},C={};function A(e,t){I(e,t),I(e+&quot;Capture &quot;,t)}function I(e,t){O[e]&amp;&amp;s(&quot;EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.&quot;,e),O[e]=t;var n=e.toLowerCase();C[n]=e,&quot;onDoubleClick &quot;===e &amp;&amp;(C.ondblclick=e);for(var r=0;r &lt;t.length;r++)w.add(t[r])}var k=!(&quot;undefined &quot;==typeof window||void 0===window.document||void 0===window.document.createElement),x=&quot;:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD &quot;,_=x+&quot;\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040 &quot;,L=&quot;data-reactroot &quot;,P=new RegExp(&quot;^[&quot;+x+&quot;][&quot;+_+&quot;]*$ &quot;),M=Object.prototype.hasOwnProperty,D={},U={};function j(e){return!!M.call(U,e)||!M.call(D,e)&amp;&amp;(P.test(e)?(U[e]=!0,!0):(D[e]=!0,s(&quot;Invalid attribute name: `%s`&quot;,e),!1))}function F(e,t,n){return null!==t?0===t.type:!n &amp;&amp;e.length &gt;2 &amp;&amp;(&quot;o &quot;===e[0]||&quot;O &quot;===e[0])&amp;&amp;(&quot;n &quot;===e[1]||&quot;N &quot;===e[1])}function z(e,t,n,r){if(null!==n &amp;&amp;0===n.type)return!1;switch(typeof t){case &quot;function &quot;:case &quot;symbol &quot;:return!0;case &quot;boolean &quot;:if(r)return!1;if(null!==n)return!n.acceptsBooleans;var a=e.toLowerCase().slice(0,5);return &quot;data-&quot;!==a &amp;&amp;&quot;aria-&quot;!==a;default:return!1}}function H(e,t,n,r){if(null==t)return!0;if(z(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||t &lt;1}return!1}function B(e){return W.hasOwnProperty(e)?W[e]:null}function V(e,t,n,r,a,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=a,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var W={};[&quot;children &quot;,&quot;dangerouslySetInnerHTML &quot;,&quot;defaultValue &quot;,&quot;defaultChecked &quot;,&quot;innerHTML &quot;,&quot;suppressContentEditableWarning &quot;,&quot;suppressHydrationWarning &quot;,&quot;style &quot;].forEach(function(e){W[e]=new V(e,0,!1,e,null,!1,!1)}),[[&quot;acceptCharset &quot;,&quot;accept-charset &quot;],[&quot;className &quot;,&quot;class &quot;],[&quot;htmlFor &quot;,&quot;for &quot;],[&quot;httpEquiv &quot;,&quot;http-equiv &quot;]].forEach(function(e){var t=e[0];W[t]=new V(t,1,!1,e[1],null,!1,!1)}),[&quot;contentEditable &quot;,&quot;draggable &quot;,&quot;spellCheck &quot;,&quot;value &quot;].forEach(function(e){W[e]=new V(e,2,!1,e.toLowerCase(),null,!1,!1)}),[&quot;autoReverse &quot;,&quot;externalResourcesRequired &quot;,&quot;focusable &quot;,&quot;preserveAlpha &quot;].forEach(function(e){W[e]=new V(e,2,!1,e,null,!1,!1)}),[&quot;allowFullScreen &quot;,&quot;async &quot;,&quot;autoFocus &quot;,&quot;autoPlay &quot;,&quot;controls &quot;,&quot;default &quot;,&quot;defer &quot;,&quot;disabled &quot;,&quot;disablePictureInPicture &quot;,&quot;disableRemotePlayback &quot;,&quot;formNoValidate &quot;,&quot;hidden &quot;,&quot;loop &quot;,&quot;noModule &quot;,&quot;noValidate &quot;,&quot;open &quot;,&quot;playsInline &quot;,&quot;readOnly &quot;,&quot;required &quot;,&quot;reversed &quot;,&quot;scoped &quot;,&quot;seamless &quot;,&quot;itemScope &quot;].forEach(function(e){W[e]=new V(e,3,!1,e.toLowerCase(),null,!1,!1)}),[&quot;checked &quot;,&quot;multiple &quot;,&quot;muted &quot;,&quot;selected &quot;].forEach(function(e){W[e]=new V(e,3,!0,e,null,!1,!1)}),[&quot;capture &quot;,&quot;download &quot;].forEach(function(e){W[e]=new V(e,4,!1,e,null,!1,!1)}),[&quot;cols &quot;,&quot;rows &quot;,&quot;size &quot;,&quot;span &quot;].forEach(function(e){W[e]=new V(e,6,!1,e,null,!1,!1)}),[&quot;rowSpan &quot;,&quot;start &quot;].forEach(function(e){W[e]=new V(e,5,!1,e.toLowerCase(),null,!1,!1)});var G=/[\-\:]([a-z])/g,Y=function(e){return e[1].toUpperCase()};[&quot;accent-height &quot;,&quot;alignment-baseline &quot;,&quot;arabic-form &quot;,&quot;baseline-shift &quot;,&quot;cap-height &quot;,&quot;clip-path &quot;,&quot;clip-rule &quot;,&quot;color-interpolation &quot;,&quot;color-interpolation-filters &quot;,&quot;color-profile &quot;,&quot;color-rendering &quot;,&quot;dominant-baseline &quot;,&quot;enable-background &quot;,&quot;fill-opacity &quot;,&quot;fill-rule &quot;,&quot;flood-color &quot;,&quot;flood-opacity &quot;,&quot;font-family &quot;,&quot;font-size &quot;,&quot;font-size-adjust &quot;,&quot;font-stretch &quot;,&quot;font-style &quot;,&quot;font-variant &quot;,&quot;font-weight &quot;,&quot;glyph-name &quot;,&quot;glyph-orientation-horizontal &quot;,&quot;glyph-orientation-vertical &quot;,&quot;horiz-adv-x &quot;,&quot;horiz-origin-x &quot;,&quot;image-rendering &quot;,&quot;letter-spacing &quot;,&quot;lighting-color &quot;,&quot;marker-end &quot;,&quot;marker-mid &quot;,&quot;marker-start &quot;,&quot;overline-position &quot;,&quot;overline-thickness &quot;,&quot;paint-order &quot;,&quot;panose-1 &quot;,&quot;pointer-events &quot;,&quot;rendering-intent &quot;,&quot;shape-rendering &quot;,&quot;stop-color &quot;,&quot;stop-opacity &quot;,&quot;strikethrough-position &quot;,&quot;strikethrough-thickness &quot;,&quot;stroke-dasharray &quot;,&quot;stroke-dashoffset &quot;,&quot;stroke-linecap &quot;,&quot;stroke-linejoin &quot;,&quot;stroke-miterlimit &quot;,&quot;stroke-opacity &quot;,&quot;stroke-width &quot;,&quot;text-anchor &quot;,&quot;text-decoration &quot;,&quot;text-rendering &quot;,&quot;underline-position &quot;,&quot;underline-thickness &quot;,&quot;unicode-bidi &quot;,&quot;unicode-range &quot;,&quot;units-per-em &quot;,&quot;v-alphabetic &quot;,&quot;v-hanging &quot;,&quot;v-ideographic &quot;,&quot;v-mathematical &quot;,&quot;vector-effect &quot;,&quot;vert-adv-y &quot;,&quot;vert-origin-x &quot;,&quot;vert-origin-y &quot;,&quot;word-spacing &quot;,&quot;writing-mode &quot;,&quot;xmlns:xlink &quot;,&quot;x-height &quot;].forEach(function(e){var t=e.replace(G,Y);W[t]=new V(t,1,!1,e,null,!1,!1)}),[&quot;xlink:actuate &quot;,&quot;xlink:arcrole &quot;,&quot;xlink:role &quot;,&quot;xlink:show &quot;,&quot;xlink:title &quot;,&quot;xlink:type &quot;].forEach(function(e){var t=e.replace(G,Y);W[t]=new V(t,1,!1,e,&quot;http://www.w3.org/1999/xlink &quot;,!1,!1)}),[&quot;xml:base &quot;,&quot;xml:lang &quot;,&quot;xml:space &quot;].forEach(function(e){var t=e.replace(G,Y);W[t]=new V(t,1,!1,e,&quot;http://www.w3.org/XML/1998/namespace &quot;,!1,!1)}),[&quot;tabIndex &quot;,&quot;crossOrigin &quot;].forEach(function(e){W[e]=new V(e,1,!1,e.toLowerCase(),null,!1,!1)}),W.xlinkHref=new V(&quot;xlinkHref &quot;,1,!1,&quot;xlink:href &quot;,&quot;http://www.w3.org/1999/xlink &quot;,!0,!1),[&quot;src &quot;,&quot;href &quot;,&quot;action &quot;,&quot;formAction &quot;].forEach(function(e){W[e]=new V(e,1,!1,e.toLowerCase(),null,!0,!0)});var $=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*\:/i,X=!1;function K(e){!X &amp;&amp;$.test(e)&amp;&amp;(X=!0,s(&quot;A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.&quot;,JSON.stringify(e)))}function q(e,t,n,r){if(r.mustUseProperty)return e[r.propertyName];r.sanitizeURL &amp;&amp;K(&quot;&quot;+n);var a=r.attributeName,o=null;if(4===r.type){if(e.hasAttribute(a)){var i=e.getAttribute(a);return &quot;&quot;===i||(H(t,n,r,!1)?i:i===&quot;&quot;+n?n:i)}}else if(e.hasAttribute(a)){if(H(t,n,r,!1))return e.getAttribute(a);if(3===r.type)return n;o=e.getAttribute(a)}return H(t,n,r,!1)?null===o?n:o:o===&quot;&quot;+n?n:o}function J(e,t,n){if(j(t)){if(function(e){return null!==e &amp;&amp;&quot;object &quot;==typeof e &amp;&amp;e.$$typeof===me}(n))return n;if(!e.hasAttribute(t))return void 0===n?void 0:null;var r=e.getAttribute(t);return r===&quot;&quot;+n?n:r}}function Q(e,t,n,r){var a=B(t);if(!F(t,a,r))if(H(t,n,a,r)&amp;&amp;(n=null),r||null===a){if(j(t)){var o=t;null===n?e.removeAttribute(o):e.setAttribute(o,&quot;&quot;+n)}}else if(a.mustUseProperty)e[a.propertyName]=null===n?3!==a.type &amp;&amp;&quot;&quot;:n;else{var i=a.attributeName,l=a.attributeNamespace;if(null===n)e.removeAttribute(i);else{var s,c=a.type;3===c||4===c &amp;&amp;!0===n?s=&quot;&quot;:(s=&quot;&quot;+n,a.sanitizeURL &amp;&amp;K(s.toString())),l?e.setAttributeNS(l,i,s):e.setAttribute(i,s)}}}var Z=60103,ee=60106,te=60107,ne=60108,re=60114,ae=60109,oe=60110,ie=60112,le=60113,se=60120,ce=60115,ue=60116,fe=60121,de=60119,me=60128,he=60129,ge=60130,ve=60131;if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var ye=Symbol.for;Z=ye(&quot;react.element &quot;),ee=ye(&quot;react.portal &quot;),te=ye(&quot;react.fragment &quot;),ne=ye(&quot;react.strict_mode &quot;),re=ye(&quot;react.profiler &quot;),ae=ye(&quot;react.provider &quot;),oe=ye(&quot;react.context &quot;),ie=ye(&quot;react.forward_ref &quot;),le=ye(&quot;react.suspense &quot;),se=ye(&quot;react.suspense_list &quot;),ce=ye(&quot;react.memo &quot;),ue=ye(&quot;react.lazy &quot;),fe=ye(&quot;react.block &quot;),ye(&quot;react.server.block &quot;),ye(&quot;react.fundamental &quot;),de=ye(&quot;react.scope &quot;),me=ye(&quot;react.opaque.id &quot;),he=ye(&quot;react.debug_trace_mode &quot;),ge=ye(&quot;react.offscreen &quot;),ve=ye(&quot;react.legacy_hidden &quot;)}var Ee=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator;function be(e){if(null===e||&quot;object &quot;!=typeof e)return null;var t=Ee &amp;&amp;e[Ee]||e[&quot;@@iterator &quot;];return &quot;function &quot;==typeof t?t:null}var Te,Ne,Re,Se,we,Oe,Ce,Ae=0;function Ie(){}function ke(){if(0===Ae){Te=console.log,Ne=console.info,Re=console.warn,Se=console.error,we=console.group,Oe=console.groupCollapsed,Ce=console.groupEnd;var e={configurable:!0,enumerable:!0,value:Ie,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}Ae++}function xe(){if(0==--Ae){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:n({},e,{value:Te}),info:n({},e,{value:Ne}),warn:n({},e,{value:Re}),error:n({},e,{value:Se}),group:n({},e,{value:we}),groupCollapsed:n({},e,{value:Oe}),groupEnd:n({},e,{value:Ce})})}Ae &lt;0 &amp;&amp;s(&quot;disabledDepth fell below zero. This is a bug in React. Please file an issue.&quot;)}Ie.__reactDisabledLog=!0;var _e,Le=o.ReactCurrentDispatcher;function Pe(e,t,n){if(void 0===_e)try{throw Error()}catch(e){var r=e.stack.trim().match(/\n( *(at )?)/);_e=r &amp;&amp;r[1]||&quot;&quot;}return &quot;\n &quot;+_e+e}var Me,De=!1,Ue=&quot;function &quot;==typeof WeakMap?WeakMap:Map;function je(e,t){if(!e||De)return &quot;&quot;;var n,r=Me.get(e);if(void 0!==r)return r;De=!0;var a,o=Error.prepareStackTrace;Error.prepareStackTrace=void 0,a=Le.current,Le.current=null,ke();try{if(t){var i=function(){throw Error()};if(Object.defineProperty(i.prototype,&quot;props &quot;,{set:function(){throw Error()}}),&quot;object &quot;==typeof Reflect &amp;&amp;Reflect.construct){try{Reflect.construct(i,[])}catch(e){n=e}Reflect.construct(e,[],i)}else{try{i.call()}catch(e){n=e}e.call(i.prototype)}}else{try{throw Error()}catch(e){n=e}e()}}catch(t){if(t &amp;&amp;n &amp;&amp;&quot;string &quot;==typeof t.stack){for(var l=t.stack.split(&quot;\n &quot;),s=n.stack.split(&quot;\n &quot;),c=l.length-1,u=s.length-1;c &gt;=1 &amp;&amp;u &gt;=0 &amp;&amp;l[c]!==s[u];)u--;for(;c &gt;=1 &amp;&amp;u &gt;=0;c--,u--)if(l[c]!==s[u]){if(1!==c||1!==u)do{if(c--,--u &lt;0||l[c]!==s[u]){var f=&quot;\n &quot;+l[c].replace(&quot;at new &quot;,&quot;at &quot;);return &quot;function &quot;==typeof e &amp;&amp;Me.set(e,f),f}}while(c &gt;=1 &amp;&amp;u &gt;=0);break}}}finally{De=!1,Le.current=a,xe(),Error.prepareStackTrace=o}var d=e?e.displayName||e.name:&quot;&quot;,p=d?Pe(d):&quot;&quot;;return &quot;function &quot;==typeof e &amp;&amp;Me.set(e,p),p}function Fe(e,t,n){return je(e,!1)}function ze(e,t,n){if(null==e)return &quot;&quot;;if(&quot;function &quot;==typeof e)return je(e,!(!(r=e.prototype)||!r.isReactComponent));var r;if(&quot;string &quot;==typeof e)return Pe(e);switch(e){case le:return Pe(&quot;Suspense &quot;);case se:return Pe(&quot;SuspenseList &quot;)}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case ie:return Fe(e.render);case ce:return ze(e.type,t,n);case fe:return Fe(e._render);case ue:var a=e._payload,o=e._init;try{return ze(o(a),t,n)}catch(e){}}return &quot;&quot;}function He(e){switch(e.tag){case 5:return Pe(e.type);case 16:return Pe(&quot;Lazy &quot;);case h:return Pe(&quot;Suspense &quot;);case E:return Pe(&quot;SuspenseList &quot;);case 0:case 2:case v:return Fe(e.type);case p:return Fe(e.type.render);case T:return Fe(e.type._render);case 1:return je(e.type,!0);default:return &quot;&quot;}}function Be(e){try{var t=&quot;&quot;,n=e;do{t+=He(n),n=n.return}while(n);return t}catch(e){return &quot;\nError generating stack: &quot;+e.message+&quot;\n &quot;+e.stack}}function Ve(e){return e.displayName||&quot;Context &quot;}function We(e){if(null==e)return null;if(&quot;number &quot;==typeof e.tag &amp;&amp;s(&quot;Received an unexpected object in getComponentName(). This is likely a bug in React. Please file an issue.&quot;),&quot;function &quot;==typeof e)return e.displayName||e.name||null;if(&quot;string &quot;==typeof e)return e;switch(e){case te:return &quot;Fragment &quot;;case ee:return &quot;Portal &quot;;case re:return &quot;Profiler &quot;;case ne:return &quot;StrictMode &quot;;case le:return &quot;Suspense &quot;;case se:return &quot;SuspenseList &quot;}if(&quot;object &quot;==typeof e)switch(e.$$typeof){case oe:return Ve(e)+&quot;.Consumer &quot;;case ae:return Ve(e._context)+&quot;.Provider &quot;;case ie:return a=(r=e.render).displayName||r.name||&quot;&quot;,e.displayName||(&quot;&quot;!==a?&quot;ForwardRef(&quot;+a+&quot;)&quot;:&quot;ForwardRef &quot;);case ce:return We(e.type);case fe:return We(e._render);case ue:var t=e._payload,n=e._init;try{return We(n(t))}catch(e){return null}}var r,a;return null}Me=new Ue;var Ge=o.ReactDebugCurrentFrame,Ye=null,$e=!1;function Xe(){if(null===Ye)return null;var e=Ye._debugOwner;return null!=e?We(e.type):null}function Ke(){return null===Ye?&quot;&quot;:Be(Ye)}function qe(){Ge.getCurrentStack=null,Ye=null,$e=!1}function Je(e){Ge.getCurrentStack=Ke,Ye=e,$e=!1}function Qe(e){$e=e}function Ze(e){return &quot;&quot;+e}function et(e){switch(typeof e){case &quot;boolean &quot;:case &quot;number &quot;:case &quot;object &quot;:case &quot;string &quot;:case &quot;undefined &quot;:return e;default:return &quot;&quot;}}var tt={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0};function nt(e,t){tt[t.type]||t.onChange||t.onInput||t.readOnly||t.disabled||null==t.value||s(&quot;You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.&quot;),t.onChange||t.readOnly||t.disabled||null==t.checked||s(&quot;You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.&quot;)}function rt(e){var t=e.type,n=e.nodeName;return n &amp;&amp;&quot;input &quot;===n.toLowerCase()&amp;&amp;(&quot;checkbox &quot;===t||&quot;radio &quot;===t)}function at(e){return e._valueTracker}function ot(e){at(e)||(e._valueTracker=function(e){var t=rt(e)?&quot;checked &quot;:&quot;value &quot;,n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=&quot;&quot;+e[t];if(!e.hasOwnProperty(t)&amp;&amp;void 0!==n &amp;&amp;&quot;function &quot;==typeof n.get &amp;&amp;&quot;function &quot;==typeof n.set){var a=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return a.call(this)},set:function(e){r=&quot;&quot;+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=&quot;&quot;+e},stopTracking:function(){!function(e){e._valueTracker=null}(e),delete e[t]}}}}(e))}function it(e){if(!e)return!1;var t=at(e);if(!t)return!0;var n=t.getValue(),r=function(e){var t=&quot;&quot;;return e?t=rt(e)?e.checked?&quot;true &quot;:&quot;false &quot;:e.value:t}(e);return r!==n &amp;&amp;(t.setValue(r),!0)}function lt(e){if(void 0===(e=e||(&quot;undefined &quot;!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}var st=!1,ct=!1,ut=!1,ft=!1;function dt(e){return &quot;checkbox &quot;===e.type||&quot;radio &quot;===e.type?null!=e.checked:null!=e.value}function pt(e,t){var r=t.checked;return n({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=r?r:e._wrapperState.initialChecked})}function mt(e,t){nt(0,t),void 0===t.checked||void 0===t.defaultChecked||ct||(s(&quot;%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;,Xe()||&quot;A component &quot;,t.type),ct=!0),void 0===t.value||void 0===t.defaultValue||st||(s(&quot;%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;,Xe()||&quot;A component &quot;,t.type),st=!0),e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:et(null!=t.value?t.value:null==t.defaultValue?&quot;&quot;:t.defaultValue),controlled:dt(t)}}function ht(e,t){var n=t.checked;null!=n &amp;&amp;Q(e,&quot;checked &quot;,n,!1)}function gt(e,t){var n=e,r=dt(t);n._wrapperState.controlled||!r||ft||(s(&quot;A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components &quot;),ft=!0),!n._wrapperState.controlled||r||ut||(s(&quot;A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components &quot;),ut=!0),ht(e,t);var a=et(t.value),o=t.type;if(null!=a)&quot;number &quot;===o?(0===a &amp;&amp;&quot;&quot;===n.value||n.value!=a)&amp;&amp;(n.value=Ze(a)):n.value!==Ze(a)&amp;&amp;(n.value=Ze(a));else if(&quot;submit &quot;===o||&quot;reset &quot;===o)return void n.removeAttribute(&quot;value &quot;);t.hasOwnProperty(&quot;value &quot;)?yt(n,t.type,a):t.hasOwnProperty(&quot;defaultValue &quot;)&amp;&amp;yt(n,t.type,et(t.defaultValue)),null==t.checked &amp;&amp;null!=t.defaultChecked &amp;&amp;(n.defaultChecked=!!t.defaultChecked)}function vt(e,t,n){var r=e;if(t.hasOwnProperty(&quot;value &quot;)||t.hasOwnProperty(&quot;defaultValue &quot;)){var a=t.type;if((&quot;submit &quot;===a||&quot;reset &quot;===a)&amp;&amp;null==t.value)return;var o=Ze(r._wrapperState.initialValue);n||o!==r.value &amp;&amp;(r.value=o),r.defaultValue=o}var i=r.name;&quot;&quot;!==i &amp;&amp;(r.name=&quot;&quot;),r.defaultChecked=!r.defaultChecked,r.defaultChecked=!!r._wrapperState.initialChecked,&quot;&quot;!==i &amp;&amp;(r.name=i)}function yt(e,t,n){&quot;number &quot;===t &amp;&amp;lt(e.ownerDocument)===e||(null==n?e.defaultValue=Ze(e._wrapperState.initialValue):e.defaultValue!==Ze(n)&amp;&amp;(e.defaultValue=Ze(n)))}var Et,bt=!1,Tt=!1;function Nt(t,n){&quot;object &quot;==typeof n.children &amp;&amp;null!==n.children &amp;&amp;e.Children.forEach(n.children,function(e){null!=e &amp;&amp;&quot;string &quot;!=typeof e &amp;&amp;&quot;number &quot;!=typeof e &amp;&amp;&quot;string &quot;==typeof e.type &amp;&amp;(Tt||(Tt=!0,s(&quot;Only strings and numbers are supported as &lt;option &gt;children.&quot;)))}),null==n.selected||bt||(s(&quot;Use the `defaultValue` or `value` props on &lt;select &gt;instead of setting `selected` on &lt;option &gt;.&quot;),bt=!0)}function Rt(t,r){var a=n({children:void 0},r),o=function(t){var n=&quot;&quot;;return e.Children.forEach(t,function(e){null!=e &amp;&amp;(n+=e)}),n}(r.children);return o &amp;&amp;(a.children=o),a}function St(){var e=Xe();return e?&quot;\n\nCheck the render method of `&quot;+e+&quot;`.&quot;:&quot;&quot;}Et=!1;var wt=[&quot;value &quot;,&quot;defaultValue &quot;];function Ot(e,t,n,r){var a=e.options;if(t){for(var o=n,i={},l=0;l &lt;o.length;l++)i[&quot;$ &quot;+o[l]]=!0;for(var s=0;s &lt;a.length;s++){var c=i.hasOwnProperty(&quot;$ &quot;+a[s].value);a[s].selected!==c &amp;&amp;(a[s].selected=c),c &amp;&amp;r &amp;&amp;(a[s].defaultSelected=!0)}}else{for(var u=Ze(et(n)),f=null,d=0;d &lt;a.length;d++){if(a[d].value===u)return a[d].selected=!0,void(r &amp;&amp;(a[d].defaultSelected=!0));null!==f||a[d].disabled||(f=a[d])}null!==f &amp;&amp;(f.selected=!0)}}function Ct(e,t){return n({},t,{value:void 0})}function At(e,t){var n=e;!function(e){nt(0,e);for(var t=0;t &lt;wt.length;t++){var n=wt[t];if(null!=e[n]){var r=Array.isArray(e[n]);e.multiple &amp;&amp;!r?s(&quot;The `%s` prop supplied to &lt;select &gt;must be an array if `multiple` is true.%s &quot;,n,St()):!e.multiple &amp;&amp;r &amp;&amp;s(&quot;The `%s` prop supplied to &lt;select &gt;must be a scalar value if `multiple` is false.%s &quot;,n,St())}}}(t),n._wrapperState={wasMultiple:!!t.multiple},void 0===t.value||void 0===t.defaultValue||Et||(s(&quot;Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;),Et=!0)}var It=!1;function kt(e,t){var r=e;if(null!=t.dangerouslySetInnerHTML)throw Error(&quot;`dangerouslySetInnerHTML` does not make sense on &lt;textarea &gt;.&quot;);return n({},t,{value:void 0,defaultValue:void 0,children:Ze(r._wrapperState.initialValue)})}function xt(e,t){var n=e;nt(0,t),void 0===t.value||void 0===t.defaultValue||It||(s(&quot;%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://reactjs.org/link/controlled-components &quot;,Xe()||&quot;A component &quot;),It=!0);var r=t.value;if(null==r){var a=t.children,o=t.defaultValue;if(null!=a){if(s(&quot;Use the `defaultValue` or `value` props instead of setting children on &lt;textarea &gt;.&quot;),null!=o)throw Error(&quot;If you supply `defaultValue` on a &lt;textarea &gt;, do not pass children.&quot;);if(Array.isArray(a)){if(!(a.length &lt;=1))throw Error(&quot;&lt;textarea &gt;can only have at most one child.&quot;);a=a[0]}o=a}null==o &amp;&amp;(o=&quot;&quot;),r=o}n._wrapperState={initialValue:et(r)}}function _t(e,t){var n=e,r=et(t.value),a=et(t.defaultValue);if(null!=r){var o=Ze(r);o!==n.value &amp;&amp;(n.value=o),null==t.defaultValue &amp;&amp;n.defaultValue!==o &amp;&amp;(n.defaultValue=o)}null!=a &amp;&amp;(n.defaultValue=Ze(a))}function Lt(e,t){var n=e.textContent;n===e._wrapperState.initialValue &amp;&amp;&quot;&quot;!==n &amp;&amp;null!==n &amp;&amp;(e.value=n)}var Pt=&quot;http://www.w3.org/1999/xhtml &quot;,Mt=&quot;http://www.w3.org/2000/svg &quot;;function Dt(e){switch(e){case &quot;svg &quot;:return Mt;case &quot;math &quot;:return &quot;http://www.w3.org/1998/Math/MathML &quot;;default:return Pt}}function Ut(e,t){return null==e||e===Pt?Dt(t):e===Mt &amp;&amp;&quot;foreignObject &quot;===t?Pt:e}var jt,Ft,zt=(Ft=function(e,t){if(&quot;http://www.w3.org/2000/svg &quot;!==e.namespaceURI||&quot;innerHTML &quot;in e)e.innerHTML=t;else{(jt=jt||document.createElement(&quot;div &quot;)).innerHTML=&quot;&lt;svg &gt;&quot;+t.valueOf().toString()+&quot;&lt;/svg &gt;&quot;;for(var n=jt.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;n.firstChild;)e.appendChild(n.firstChild)}},&quot;undefined &quot;!=typeof MSApp &amp;&amp;MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction(function(){return Ft(e,t)})}:Ft),Ht=function(e,t){if(t){var n=e.firstChild;if(n &amp;&amp;n===e.lastChild &amp;&amp;3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t},Bt={animation:[&quot;animationDelay &quot;,&quot;animationDirection &quot;,&quot;animationDuration &quot;,&quot;animationFillMode &quot;,&quot;animationIterationCount &quot;,&quot;animationName &quot;,&quot;animationPlayState &quot;,&quot;animationTimingFunction &quot;],background:[&quot;backgroundAttachment &quot;,&quot;backgroundClip &quot;,&quot;backgroundColor &quot;,&quot;backgroundImage &quot;,&quot;backgroundOrigin &quot;,&quot;backgroundPositionX &quot;,&quot;backgroundPositionY &quot;,&quot;backgroundRepeat &quot;,&quot;backgroundSize &quot;],backgroundPosition:[&quot;backgroundPositionX &quot;,&quot;backgroundPositionY &quot;],border:[&quot;borderBottomColor &quot;,&quot;borderBottomStyle &quot;,&quot;borderBottomWidth &quot;,&quot;borderImageOutset &quot;,&quot;borderImageRepeat &quot;,&quot;borderImageSlice &quot;,&quot;borderImageSource &quot;,&quot;borderImageWidth &quot;,&quot;borderLeftColor &quot;,&quot;borderLeftStyle &quot;,&quot;borderLeftWidth &quot;,&quot;borderRightColor &quot;,&quot;borderRightStyle &quot;,&quot;borderRightWidth &quot;,&quot;borderTopColor &quot;,&quot;borderTopStyle &quot;,&quot;borderTopWidth &quot;],borderBlockEnd:[&quot;borderBlockEndColor &quot;,&quot;borderBlockEndStyle &quot;,&quot;borderBlockEndWidth &quot;],borderBlockStart:[&quot;borderBlockStartColor &quot;,&quot;borderBlockStartStyle &quot;,&quot;borderBlockStartWidth &quot;],borderBottom:[&quot;borderBottomColor &quot;,&quot;borderBottomStyle &quot;,&quot;borderBottomWidth &quot;],borderColor:[&quot;borderBottomColor &quot;,&quot;borderLeftColor &quot;,&quot;borderRightColor &quot;,&quot;borderTopColor &quot;],borderImage:[&quot;borderImageOutset &quot;,&quot;borderImageRepeat &quot;,&quot;borderImageSlice &quot;,&quot;borderImageSource &quot;,&quot;borderImageWidth &quot;],borderInlineEnd:[&quot;borderInlineEndColor &quot;,&quot;borderInlineEndStyle &quot;,&quot;borderInlineEndWidth &quot;],borderInlineStart:[&quot;borderInlineStartColor &quot;,&quot;borderInlineStartStyle &quot;,&quot;borderInlineStartWidth &quot;],borderLeft:[&quot;borderLeftColor &quot;,&quot;borderLeftStyle &quot;,&quot;borderLeftWidth &quot;],borderRadius:[&quot;borderBottomLeftRadius &quot;,&quot;borderBottomRightRadius &quot;,&quot;borderTopLeftRadius &quot;,&quot;borderTopRightRadius &quot;],borderRight:[&quot;borderRightColor &quot;,&quot;borderRightStyle &quot;,&quot;borderRightWidth &quot;],borderStyle:[&quot;borderBottomStyle &quot;,&quot;borderLeftStyle &quot;,&quot;borderRightStyle &quot;,&quot;borderTopStyle &quot;],borderTop:[&quot;borderTopColor &quot;,&quot;borderTopStyle &quot;,&quot;borderTopWidth &quot;],borderWidth:[&quot;borderBottomWidth &quot;,&quot;borderLeftWidth &quot;,&quot;borderRightWidth &quot;,&quot;borderTopWidth &quot;],columnRule:[&quot;columnRuleColor &quot;,&quot;columnRuleStyle &quot;,&quot;columnRuleWidth &quot;],columns:[&quot;columnCount &quot;,&quot;columnWidth &quot;],flex:[&quot;flexBasis &quot;,&quot;flexGrow &quot;,&quot;flexShrink &quot;],flexFlow:[&quot;flexDirection &quot;,&quot;flexWrap &quot;],font:[&quot;fontFamily &quot;,&quot;fontFeatureSettings &quot;,&quot;fontKerning &quot;,&quot;fontLanguageOverride &quot;,&quot;fontSize &quot;,&quot;fontSizeAdjust &quot;,&quot;fontStretch &quot;,&quot;fontStyle &quot;,&quot;fontVariant &quot;,&quot;fontVariantAlternates &quot;,&quot;fontVariantCaps &quot;,&quot;fontVariantEastAsian &quot;,&quot;fontVariantLigatures &quot;,&quot;fontVariantNumeric &quot;,&quot;fontVariantPosition &quot;,&quot;fontWeight &quot;,&quot;lineHeight &quot;],fontVariant:[&quot;fontVariantAlternates &quot;,&quot;fontVariantCaps &quot;,&quot;fontVariantEastAsian &quot;,&quot;fontVariantLigatures &quot;,&quot;fontVariantNumeric &quot;,&quot;fontVariantPosition &quot;],gap:[&quot;columnGap &quot;,&quot;rowGap &quot;],grid:[&quot;gridAutoColumns &quot;,&quot;gridAutoFlow &quot;,&quot;gridAutoRows &quot;,&quot;gridTemplateAreas &quot;,&quot;gridTemplateColumns &quot;,&quot;gridTemplateRows &quot;],gridArea:[&quot;gridColumnEnd &quot;,&quot;gridColumnStart &quot;,&quot;gridRowEnd &quot;,&quot;gridRowStart &quot;],gridColumn:[&quot;gridColumnEnd &quot;,&quot;gridColumnStart &quot;],gridColumnGap:[&quot;columnGap &quot;],gridGap:[&quot;columnGap &quot;,&quot;rowGap &quot;],gridRow:[&quot;gridRowEnd &quot;,&quot;gridRowStart &quot;],gridRowGap:[&quot;rowGap &quot;],gridTemplate:[&quot;gridTemplateAreas &quot;,&quot;gridTemplateColumns &quot;,&quot;gridTemplateRows &quot;],listStyle:[&quot;listStyleImage &quot;,&quot;listStylePosition &quot;,&quot;listStyleType &quot;],margin:[&quot;marginBottom &quot;,&quot;marginLeft &quot;,&quot;marginRight &quot;,&quot;marginTop &quot;],marker:[&quot;markerEnd &quot;,&quot;markerMid &quot;,&quot;markerStart &quot;],mask:[&quot;maskClip &quot;,&quot;maskComposite &quot;,&quot;maskImage &quot;,&quot;maskMode &quot;,&quot;maskOrigin &quot;,&quot;maskPositionX &quot;,&quot;maskPositionY &quot;,&quot;maskRepeat &quot;,&quot;maskSize &quot;],maskPosition:[&quot;maskPositionX &quot;,&quot;maskPositionY &quot;],outline:[&quot;outlineColor &quot;,&quot;outlineStyle &quot;,&quot;outlineWidth &quot;],overflow:[&quot;overflowX &quot;,&quot;overflowY &quot;],padding:[&quot;paddingBottom &quot;,&quot;paddingLeft &quot;,&quot;paddingRight &quot;,&quot;paddingTop &quot;],placeContent:[&quot;alignContent &quot;,&quot;justifyContent &quot;],placeItems:[&quot;alignItems &quot;,&quot;justifyItems &quot;],placeSelf:[&quot;alignSelf &quot;,&quot;justifySelf &quot;],textDecoration:[&quot;textDecorationColor &quot;,&quot;textDecorationLine &quot;,&quot;textDecorationStyle &quot;],textEmphasis:[&quot;textEmphasisColor &quot;,&quot;textEmphasisStyle &quot;],transition:[&quot;transitionDelay &quot;,&quot;transitionDuration &quot;,&quot;transitionProperty &quot;,&quot;transitionTimingFunction &quot;],wordWrap:[&quot;overflowWrap &quot;]},Vt={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Wt=[&quot;Webkit &quot;,&quot;ms &quot;,&quot;Moz &quot;,&quot;O &quot;];function Gt(e,t,n){return null==t||&quot;boolean &quot;==typeof t||&quot;&quot;===t?&quot;&quot;:n||&quot;number &quot;!=typeof t||0===t||Vt.hasOwnProperty(e)&amp;&amp;Vt[e]?(&quot;&quot;+t).trim():t+&quot;px &quot;}Object.keys(Vt).forEach(function(e){Wt.forEach(function(t){Vt[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(t,e)]=Vt[e]})});var Yt=/([A-Z])/g,$t=/^ms-/,Xt=/^(?:webkit|moz|o)[A-Z]/,Kt=/^-ms-/,qt=/-(.)/g,Jt=/;\s*$/,Qt={},Zt={},en=!1,tn=!1;function nn(e){var t=&quot;&quot;,n=&quot;&quot;;for(var r in e)if(e.hasOwnProperty(r)){var a=e[r];if(null!=a){var o=0===r.indexOf(&quot;--&quot;);t+=n+(o?r:r.replace(Yt,&quot;-$1 &quot;).toLowerCase().replace($t,&quot;-ms-&quot;))+&quot;:&quot;,t+=Gt(r,a,o),n=&quot;;&quot;}}return t||null}function rn(e,t){var n,r,a=e.style;for(var o in t)if(t.hasOwnProperty(o)){var i=0===o.indexOf(&quot;--&quot;);i||(r=t[o],(n=o).indexOf(&quot;-&quot;)&gt;-1?function(e){Qt.hasOwnProperty(e)&amp;&amp;Qt[e]||(Qt[e]=!0,s(&quot;Unsupported style property %s. Did you mean %s?&quot;,e,e.replace(Kt,&quot;ms-&quot;).replace(qt,function(e,t){return t.toUpperCase()})))}(n):Xt.test(n)?function(e){Qt.hasOwnProperty(e)&amp;&amp;Qt[e]||(Qt[e]=!0,s(&quot;Unsupported vendor-prefixed style property %s. Did you mean %s?&quot;,e,e.charAt(0).toUpperCase()+e.slice(1)))}(n):Jt.test(r)&amp;&amp;function(e,t){Zt.hasOwnProperty(t)&amp;&amp;Zt[t]||(Zt[t]=!0,s(&#039;Style property values shouldn\&#039;t contain a semicolon. Try &quot;%s: %s &quot;instead.&#039;,e,t.replace(Jt,&quot;&quot;)))}(n,r),&quot;number &quot;==typeof r &amp;&amp;(isNaN(r)?function(e,t){en||(en=!0,s(&quot;`NaN` is an invalid value for the `%s` css style property.&quot;,e))}(n):isFinite(r)||function(e,t){tn||(tn=!0,s(&quot;`Infinity` is an invalid value for the `%s` css style property.&quot;,e))}(n)));var l=Gt(o,t[o],i);&quot;float &quot;===o &amp;&amp;(o=&quot;cssFloat &quot;),i?a.setProperty(o,l):a[o]=l}}function an(e){var t={};for(var n in e)for(var r=Bt[n]||[n],a=0;a &lt;r.length;a++)t[r[a]]=n;return t}var on=n({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ln(e,t){if(t){if(on[e]&amp;&amp;(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(e+&quot;is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.&quot;);if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(&quot;Can only set one of `children` or `props.dangerouslySetInnerHTML`.&quot;);if(&quot;object &quot;!=typeof t.dangerouslySetInnerHTML||!(&quot;__html &quot;in t.dangerouslySetInnerHTML))throw Error(&quot;`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://reactjs.org/link/dangerously-set-inner-html for more information.&quot;)}if(!t.suppressContentEditableWarning &amp;&amp;t.contentEditable &amp;&amp;null!=t.children &amp;&amp;s(&quot;A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.&quot;),null!=t.style &amp;&amp;&quot;object &quot;!=typeof t.style)throw Error(&quot;The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + &#039;em &#039;}} when using JSX.&quot;)}}function sn(e,t){if(-1===e.indexOf(&quot;-&quot;))return &quot;string &quot;==typeof t.is;switch(e){case &quot;annotation-xml &quot;:case &quot;color-profile &quot;:case &quot;font-face &quot;:case &quot;font-face-src &quot;:case &quot;font-face-uri &quot;:case &quot;font-face-format &quot;:case &quot;font-face-name &quot;:case &quot;missing-glyph &quot;:return!1;default:return!0}}var cn={accept:&quot;accept &quot;,acceptcharset:&quot;acceptCharset &quot;,&quot;accept-charset &quot;:&quot;acceptCharset &quot;,accesskey:&quot;accessKey &quot;,action:&quot;action &quot;,allowfullscreen:&quot;allowFullScreen &quot;,alt:&quot;alt &quot;,as:&quot;as &quot;,async:&quot;async &quot;,autocapitalize:&quot;autoCapitalize &quot;,autocomplete:&quot;autoComplete &quot;,autocorrect:&quot;autoCorrect &quot;,autofocus:&quot;autoFocus &quot;,autoplay:&quot;autoPlay &quot;,autosave:&quot;autoSave &quot;,capture:&quot;capture &quot;,cellpadding:&quot;cellPadding &quot;,cellspacing:&quot;cellSpacing &quot;,challenge:&quot;challenge &quot;,charset:&quot;charSet &quot;,checked:&quot;checked &quot;,children:&quot;children &quot;,cite:&quot;cite &quot;,class:&quot;className &quot;,classid:&quot;classID &quot;,classname:&quot;className &quot;,cols:&quot;cols &quot;,colspan:&quot;colSpan &quot;,content:&quot;content &quot;,contenteditable:&quot;contentEditable &quot;,contextmenu:&quot;contextMenu &quot;,controls:&quot;controls &quot;,controlslist:&quot;controlsList &quot;,coords:&quot;coords &quot;,crossorigin:&quot;crossOrigin &quot;,dangerouslysetinnerhtml:&quot;dangerouslySetInnerHTML &quot;,data:&quot;data &quot;,datetime:&quot;dateTime &quot;,default:&quot;default &quot;,defaultchecked:&quot;defaultChecked &quot;,defaultvalue:&quot;defaultValue &quot;,defer:&quot;defer &quot;,dir:&quot;dir &quot;,disabled:&quot;disabled &quot;,disablepictureinpicture:&quot;disablePictureInPicture &quot;,disableremoteplayback:&quot;disableRemotePlayback &quot;,download:&quot;download &quot;,draggable:&quot;draggable &quot;,enctype:&quot;encType &quot;,enterkeyhint:&quot;enterKeyHint &quot;,for:&quot;htmlFor &quot;,form:&quot;form &quot;,formmethod:&quot;formMethod &quot;,formaction:&quot;formAction &quot;,formenctype:&quot;formEncType &quot;,formnovalidate:&quot;formNoValidate &quot;,formtarget:&quot;formTarget &quot;,frameborder:&quot;frameBorder &quot;,headers:&quot;headers &quot;,height:&quot;height &quot;,hidden:&quot;hidden &quot;,high:&quot;high &quot;,href:&quot;href &quot;,hreflang:&quot;hrefLang &quot;,htmlfor:&quot;htmlFor &quot;,httpequiv:&quot;httpEquiv &quot;,&quot;http-equiv &quot;:&quot;httpEquiv &quot;,icon:&quot;icon &quot;,id:&quot;id &quot;,innerhtml:&quot;innerHTML &quot;,inputmode:&quot;inputMode &quot;,integrity:&quot;integrity &quot;,is:&quot;is &quot;,itemid:&quot;itemID &quot;,itemprop:&quot;itemProp &quot;,itemref:&quot;itemRef &quot;,itemscope:&quot;itemScope &quot;,itemtype:&quot;itemType &quot;,keyparams:&quot;keyParams &quot;,keytype:&quot;keyType &quot;,kind:&quot;kind &quot;,label:&quot;label &quot;,lang:&quot;lang &quot;,list:&quot;list &quot;,loop:&quot;loop &quot;,low:&quot;low &quot;,manifest:&quot;manifest &quot;,marginwidth:&quot;marginWidth &quot;,marginheight:&quot;marginHeight &quot;,max:&quot;max &quot;,maxlength:&quot;maxLength &quot;,media:&quot;media &quot;,mediagroup:&quot;mediaGroup &quot;,method:&quot;method &quot;,min:&quot;min &quot;,minlength:&quot;minLength &quot;,multiple:&quot;multiple &quot;,muted:&quot;muted &quot;,name:&quot;name &quot;,nomodule:&quot;noModule &quot;,nonce:&quot;nonce &quot;,novalidate:&quot;noValidate &quot;,open:&quot;open &quot;,optimum:&quot;optimum &quot;,pattern:&quot;pattern &quot;,placeholder:&quot;placeholder &quot;,playsinline:&quot;playsInline &quot;,poster:&quot;poster &quot;,preload:&quot;preload &quot;,profile:&quot;profile &quot;,radiogroup:&quot;radioGroup &quot;,readonly:&quot;readOnly &quot;,referrerpolicy:&quot;referrerPolicy &quot;,rel:&quot;rel &quot;,required:&quot;required &quot;,reversed:&quot;reversed &quot;,role:&quot;role &quot;,rows:&quot;rows &quot;,rowspan:&quot;rowSpan &quot;,sandbox:&quot;sandbox &quot;,scope:&quot;scope &quot;,scoped:&quot;scoped &quot;,scrolling:&quot;scrolling &quot;,seamless:&quot;seamless &quot;,selected:&quot;selected &quot;,shape:&quot;shape &quot;,size:&quot;size &quot;,sizes:&quot;sizes &quot;,span:&quot;span &quot;,spellcheck:&quot;spellCheck &quot;,src:&quot;src &quot;,srcdoc:&quot;srcDoc &quot;,srclang:&quot;srcLang &quot;,srcset:&quot;srcSet &quot;,start:&quot;start &quot;,step:&quot;step &quot;,style:&quot;style &quot;,summary:&quot;summary &quot;,tabindex:&quot;tabIndex &quot;,target:&quot;target &quot;,title:&quot;title &quot;,type:&quot;type &quot;,usemap:&quot;useMap &quot;,value:&quot;value &quot;,width:&quot;width &quot;,wmode:&quot;wmode &quot;,wrap:&quot;wrap &quot;,about:&quot;about &quot;,accentheight:&quot;accentHeight &quot;,&quot;accent-height &quot;:&quot;accentHeight &quot;,accumulate:&quot;accumulate &quot;,additive:&quot;additive &quot;,alignmentbaseline:&quot;alignmentBaseline &quot;,&quot;alignment-baseline &quot;:&quot;alignmentBaseline &quot;,allowreorder:&quot;allowReorder &quot;,alphabetic:&quot;alphabetic &quot;,amplitude:&quot;amplitude &quot;,arabicform:&quot;arabicForm &quot;,&quot;arabic-form &quot;:&quot;arabicForm &quot;,ascent:&quot;ascent &quot;,attributename:&quot;attributeName &quot;,attributetype:&quot;attributeType &quot;,autoreverse:&quot;autoReverse &quot;,azimuth:&quot;azimuth &quot;,basefrequency:&quot;baseFrequency &quot;,baselineshift:&quot;baselineShift &quot;,&quot;baseline-shift &quot;:&quot;baselineShift &quot;,baseprofile:&quot;baseProfile &quot;,bbox:&quot;bbox &quot;,begin:&quot;begin &quot;,bias:&quot;bias &quot;,by:&quot;by &quot;,calcmode:&quot;calcMode &quot;,capheight:&quot;capHeight &quot;,&quot;cap-height &quot;:&quot;capHeight &quot;,clip:&quot;clip &quot;,clippath:&quot;clipPath &quot;,&quot;clip-path &quot;:&quot;clipPath &quot;,clippathunits:&quot;clipPathUnits &quot;,cliprule:&quot;clipRule &quot;,&quot;clip-rule &quot;:&quot;clipRule &quot;,color:&quot;color &quot;,colorinterpolation:&quot;colorInterpolation &quot;,&quot;color-interpolation &quot;:&quot;colorInterpolation &quot;,colorinterpolationfilters:&quot;colorInterpolationFilters &quot;,&quot;color-interpolation-filters &quot;:&quot;colorInterpolationFilters &quot;,colorprofile:&quot;colorProfile &quot;,&quot;color-profile &quot;:&quot;colorProfile &quot;,colorrendering:&quot;colorRendering &quot;,&quot;color-rendering &quot;:&quot;colorRendering &quot;,contentscripttype:&quot;contentScriptType &quot;,contentstyletype:&quot;contentStyleType &quot;,cursor:&quot;cursor &quot;,cx:&quot;cx &quot;,cy:&quot;cy &quot;,d:&quot;d &quot;,datatype:&quot;datatype &quot;,decelerate:&quot;decelerate &quot;,descent:&quot;descent &quot;,diffuseconstant:&quot;diffuseConstant &quot;,direction:&quot;direction &quot;,display:&quot;display &quot;,divisor:&quot;divisor &quot;,dominantbaseline:&quot;dominantBaseline &quot;,&quot;dominant-baseline &quot;:&quot;dominantBaseline &quot;,dur:&quot;dur &quot;,dx:&quot;dx &quot;,dy:&quot;dy &quot;,edgemode:&quot;edgeMode &quot;,elevation:&quot;elevation &quot;,enablebackground:&quot;enableBackground &quot;,&quot;enable-background &quot;:&quot;enableBackground &quot;,end:&quot;end &quot;,exponent:&quot;exponent &quot;,externalresourcesrequired:&quot;externalResourcesRequired &quot;,fill:&quot;fill &quot;,fillopacity:&quot;fillOpacity &quot;,&quot;fill-opacity &quot;:&quot;fillOpacity &quot;,fillrule:&quot;fillRule &quot;,&quot;fill-rule &quot;:&quot;fillRule &quot;,filter:&quot;filter &quot;,filterres:&quot;filterRes &quot;,filterunits:&quot;filterUnits &quot;,floodopacity:&quot;floodOpacity &quot;,&quot;flood-opacity &quot;:&quot;floodOpacity &quot;,floodcolor:&quot;floodColor &quot;,&quot;flood-color &quot;:&quot;floodColor &quot;,focusable:&quot;focusable &quot;,fontfamily:&quot;fontFamily &quot;,&quot;font-family &quot;:&quot;fontFamily &quot;,fontsize:&quot;fontSize &quot;,&quot;font-size &quot;:&quot;fontSize &quot;,fontsizeadjust:&quot;fontSizeAdjust &quot;,&quot;font-size-adjust &quot;:&quot;fontSizeAdjust &quot;,fontstretch:&quot;fontStretch &quot;,&quot;font-stretch &quot;:&quot;fontStretch &quot;,fontstyle:&quot;fontStyle &quot;,&quot;font-style &quot;:&quot;fontStyle &quot;,fontvariant:&quot;fontVariant &quot;,&quot;font-variant &quot;:&quot;fontVariant &quot;,fontweight:&quot;fontWeight &quot;,&quot;font-weight &quot;:&quot;fontWeight &quot;,format:&quot;format &quot;,from:&quot;from &quot;,fx:&quot;fx &quot;,fy:&quot;fy &quot;,g1:&quot;g1 &quot;,g2:&quot;g2 &quot;,glyphname:&quot;glyphName &quot;,&quot;glyph-name &quot;:&quot;glyphName &quot;,glyphorientationhorizontal:&quot;glyphOrientationHorizontal &quot;,&quot;glyph-orientation-horizontal &quot;:&quot;glyphOrientationHorizontal &quot;,glyphorientationvertical:&quot;glyphOrientationVertical &quot;,&quot;glyph-orientation-vertical &quot;:&quot;glyphOrientationVertical &quot;,glyphref:&quot;glyphRef &quot;,gradienttransform:&quot;gradientTransform &quot;,gradientunits:&quot;gradientUnits &quot;,hanging:&quot;hanging &quot;,horizadvx:&quot;horizAdvX &quot;,&quot;horiz-adv-x &quot;:&quot;horizAdvX &quot;,horizoriginx:&quot;horizOriginX &quot;,&quot;horiz-origin-x &quot;:&quot;horizOriginX &quot;,ideographic:&quot;ideographic &quot;,imagerendering:&quot;imageRendering &quot;,&quot;image-rendering &quot;:&quot;imageRendering &quot;,in2:&quot;in2 &quot;,in:&quot;in &quot;,inlist:&quot;inlist &quot;,intercept:&quot;intercept &quot;,k1:&quot;k1 &quot;,k2:&quot;k2 &quot;,k3:&quot;k3 &quot;,k4:&quot;k4 &quot;,k:&quot;k &quot;,kernelmatrix:&quot;kernelMatrix &quot;,kernelunitlength:&quot;kernelUnitLength &quot;,kerning:&quot;kerning &quot;,keypoints:&quot;keyPoints &quot;,keysplines:&quot;keySplines &quot;,keytimes:&quot;keyTimes &quot;,lengthadjust:&quot;lengthAdjust &quot;,letterspacing:&quot;letterSpacing &quot;,&quot;letter-spacing &quot;:&quot;letterSpacing &quot;,lightingcolor:&quot;lightingColor &quot;,&quot;lighting-color &quot;:&quot;lightingColor &quot;,limitingconeangle:&quot;limitingConeAngle &quot;,local:&quot;local &quot;,markerend:&quot;markerEnd &quot;,&quot;marker-end &quot;:&quot;markerEnd &quot;,markerheight:&quot;markerHeight &quot;,markermid:&quot;markerMid &quot;,&quot;marker-mid &quot;:&quot;markerMid &quot;,markerstart:&quot;markerStart &quot;,&quot;marker-start &quot;:&quot;markerStart &quot;,markerunits:&quot;markerUnits &quot;,markerwidth:&quot;markerWidth &quot;,mask:&quot;mask &quot;,maskcontentunits:&quot;maskContentUnits &quot;,maskunits:&quot;maskUnits &quot;,mathematical:&quot;mathematical &quot;,mode:&quot;mode &quot;,numoctaves:&quot;numOctaves &quot;,offset:&quot;offset &quot;,opacity:&quot;opacity &quot;,operator:&quot;operator &quot;,order:&quot;order &quot;,orient:&quot;orient &quot;,orientation:&quot;orientation &quot;,origin:&quot;origin &quot;,overflow:&quot;overflow &quot;,overlineposition:&quot;overlinePosition &quot;,&quot;overline-position &quot;:&quot;overlinePosition &quot;,overlinethickness:&quot;overlineThickness &quot;,&quot;overline-thickness &quot;:&quot;overlineThickness &quot;,paintorder:&quot;paintOrder &quot;,&quot;paint-order &quot;:&quot;paintOrder &quot;,panose1:&quot;panose1 &quot;,&quot;panose-1 &quot;:&quot;panose1 &quot;,pathlength:&quot;pathLength &quot;,patterncontentunits:&quot;patternContentUnits &quot;,patterntransform:&quot;patternTransform &quot;,patternunits:&quot;patternUnits &quot;,pointerevents:&quot;pointerEvents &quot;,&quot;pointer-events &quot;:&quot;pointerEvents &quot;,points:&quot;points &quot;,pointsatx:&quot;pointsAtX &quot;,pointsaty:&quot;pointsAtY &quot;,pointsatz:&quot;pointsAtZ &quot;,prefix:&quot;prefix &quot;,preservealpha:&quot;preserveAlpha &quot;,preserveaspectratio:&quot;preserveAspectRatio &quot;,primitiveunits:&quot;primitiveUnits &quot;,property:&quot;property &quot;,r:&quot;r &quot;,radius:&quot;radius &quot;,refx:&quot;refX &quot;,refy:&quot;refY &quot;,renderingintent:&quot;renderingIntent &quot;,&quot;rendering-intent &quot;:&quot;renderingIntent &quot;,repeatcount:&quot;repeatCount &quot;,repeatdur:&quot;repeatDur &quot;,requiredextensions:&quot;requiredExtensions &quot;,requiredfeatures:&quot;requiredFeatures &quot;,resource:&quot;resource &quot;,restart:&quot;restart &quot;,result:&quot;result &quot;,results:&quot;results &quot;,rotate:&quot;rotate &quot;,rx:&quot;rx &quot;,ry:&quot;ry &quot;,scale:&quot;scale &quot;,security:&quot;security &quot;,seed:&quot;seed &quot;,shaperendering:&quot;shapeRendering &quot;,&quot;shape-rendering &quot;:&quot;shapeRendering &quot;,slope:&quot;slope &quot;,spacing:&quot;spacing &quot;,specularconstant:&quot;specularConstant &quot;,specularexponent:&quot;specularExponent &quot;,speed:&quot;speed &quot;,spreadmethod:&quot;spreadMethod &quot;,startoffset:&quot;startOffset &quot;,stddeviation:&quot;stdDeviation &quot;,stemh:&quot;stemh &quot;,stemv:&quot;stemv &quot;,stitchtiles:&quot;stitchTiles &quot;,stopcolor:&quot;stopColor &quot;,&quot;stop-color &quot;:&quot;stopColor &quot;,stopopacity:&quot;stopOpacity &quot;,&quot;stop-opacity &quot;:&quot;stopOpacity &quot;,strikethroughposition:&quot;strikethroughPosition &quot;,&quot;strikethrough-position &quot;:&quot;strikethroughPosition &quot;,strikethroughthickness:&quot;strikethroughThickness &quot;,&quot;strikethrough-thickness &quot;:&quot;strikethroughThickness &quot;,string:&quot;string &quot;,stroke:&quot;stroke &quot;,strokedasharray:&quot;strokeDasharray &quot;,&quot;stroke-dasharray &quot;:&quot;strokeDasharray &quot;,strokedashoffset:&quot;strokeDashoffset &quot;,&quot;stroke-dashoffset &quot;:&quot;strokeDashoffset &quot;,strokelinecap:&quot;strokeLinecap &quot;,&quot;stroke-linecap &quot;:&quot;strokeLinecap &quot;,strokelinejoin:&quot;strokeLinejoin &quot;,&quot;stroke-linejoin &quot;:&quot;strokeLinejoin &quot;,strokemiterlimit:&quot;strokeMiterlimit &quot;,&quot;stroke-miterlimit &quot;:&quot;strokeMiterlimit &quot;,strokewidth:&quot;strokeWidth &quot;,&quot;stroke-width &quot;:&quot;strokeWidth &quot;,strokeopacity:&quot;strokeOpacity &quot;,&quot;stroke-opacity &quot;:&quot;strokeOpacity &quot;,suppresscontenteditablewarning:&quot;suppressContentEditableWarning &quot;,suppresshydrationwarning:&quot;suppressHydrationWarning &quot;,surfacescale:&quot;surfaceScale &quot;,systemlanguage:&quot;systemLanguage &quot;,tablevalues:&quot;tableValues &quot;,targetx:&quot;targetX &quot;,targety:&quot;targetY &quot;,textanchor:&quot;textAnchor &quot;,&quot;text-anchor &quot;:&quot;textAnchor &quot;,textdecoration:&quot;textDecoration &quot;,&quot;text-decoration &quot;:&quot;textDecoration &quot;,textlength:&quot;textLength &quot;,textrendering:&quot;textRendering &quot;,&quot;text-rendering &quot;:&quot;textRendering &quot;,to:&quot;to &quot;,transform:&quot;transform &quot;,typeof:&quot;typeof &quot;,u1:&quot;u1 &quot;,u2:&quot;u2 &quot;,underlineposition:&quot;underlinePosition &quot;,&quot;underline-position &quot;:&quot;underlinePosition &quot;,underlinethickness:&quot;underlineThickness &quot;,&quot;underline-thickness &quot;:&quot;underlineThickness &quot;,unicode:&quot;unicode &quot;,unicodebidi:&quot;unicodeBidi &quot;,&quot;unicode-bidi &quot;:&quot;unicodeBidi &quot;,unicoderange:&quot;unicodeRange &quot;,&quot;unicode-range &quot;:&quot;unicodeRange &quot;,unitsperem:&quot;unitsPerEm &quot;,&quot;units-per-em &quot;:&quot;unitsPerEm &quot;,unselectable:&quot;unselectable &quot;,valphabetic:&quot;vAlphabetic &quot;,&quot;v-alphabetic &quot;:&quot;vAlphabetic &quot;,values:&quot;values &quot;,vectoreffect:&quot;vectorEffect &quot;,&quot;vector-effect &quot;:&quot;vectorEffect &quot;,version:&quot;version &quot;,vertadvy:&quot;vertAdvY &quot;,&quot;vert-adv-y &quot;:&quot;vertAdvY &quot;,vertoriginx:&quot;vertOriginX &quot;,&quot;vert-origin-x &quot;:&quot;vertOriginX &quot;,vertoriginy:&quot;vertOriginY &quot;,&quot;vert-origin-y &quot;:&quot;vertOriginY &quot;,vhanging:&quot;vHanging &quot;,&quot;v-hanging &quot;:&quot;vHanging &quot;,videographic:&quot;vIdeographic &quot;,&quot;v-ideographic &quot;:&quot;vIdeographic &quot;,viewbox:&quot;viewBox &quot;,viewtarget:&quot;viewTarget &quot;,visibility:&quot;visibility &quot;,vmathematical:&quot;vMathematical &quot;,&quot;v-mathematical &quot;:&quot;vMathematical &quot;,vocab:&quot;vocab &quot;,widths:&quot;widths &quot;,wordspacing:&quot;wordSpacing &quot;,&quot;word-spacing &quot;:&quot;wordSpacing &quot;,writingmode:&quot;writingMode &quot;,&quot;writing-mode &quot;:&quot;writingMode &quot;,x1:&quot;x1 &quot;,x2:&quot;x2 &quot;,x:&quot;x &quot;,xchannelselector:&quot;xChannelSelector &quot;,xheight:&quot;xHeight &quot;,&quot;x-height &quot;:&quot;xHeight &quot;,xlinkactuate:&quot;xlinkActuate &quot;,&quot;xlink:actuate &quot;:&quot;xlinkActuate &quot;,xlinkarcrole:&quot;xlinkArcrole &quot;,&quot;xlink:arcrole &quot;:&quot;xlinkArcrole &quot;,xlinkhref:&quot;xlinkHref &quot;,&quot;xlink:href &quot;:&quot;xlinkHref &quot;,xlinkrole:&quot;xlinkRole &quot;,&quot;xlink:role &quot;:&quot;xlinkRole &quot;,xlinkshow:&quot;xlinkShow &quot;,&quot;xlink:show &quot;:&quot;xlinkShow &quot;,xlinktitle:&quot;xlinkTitle &quot;,&quot;xlink:title &quot;:&quot;xlinkTitle &quot;,xlinktype:&quot;xlinkType &quot;,&quot;xlink:type &quot;:&quot;xlinkType &quot;,xmlbase:&quot;xmlBase &quot;,&quot;xml:base &quot;:&quot;xmlBase &quot;,xmllang:&quot;xmlLang &quot;,&quot;xml:lang &quot;:&quot;xmlLang &quot;,xmlns:&quot;xmlns &quot;,&quot;xml:space &quot;:&quot;xmlSpace &quot;,xmlnsxlink:&quot;xmlnsXlink &quot;,&quot;xmlns:xlink &quot;:&quot;xmlnsXlink &quot;,xmlspace:&quot;xmlSpace &quot;,y1:&quot;y1 &quot;,y2:&quot;y2 &quot;,y:&quot;y &quot;,ychannelselector:&quot;yChannelSelector &quot;,z:&quot;z &quot;,zoomandpan:&quot;zoomAndPan &quot;},un={&quot;aria-current &quot;:0,&quot;aria-details &quot;:0,&quot;aria-disabled &quot;:0,&quot;aria-hidden &quot;:0,&quot;aria-invalid &quot;:0,&quot;aria-keyshortcuts &quot;:0,&quot;aria-label &quot;:0,&quot;aria-roledescription &quot;:0,&quot;aria-autocomplete &quot;:0,&quot;aria-checked &quot;:0,&quot;aria-expanded &quot;:0,&quot;aria-haspopup &quot;:0,&quot;aria-level &quot;:0,&quot;aria-modal &quot;:0,&quot;aria-multiline &quot;:0,&quot;aria-multiselectable &quot;:0,&quot;aria-orientation &quot;:0,&quot;aria-placeholder &quot;:0,&quot;aria-pressed &quot;:0,&quot;aria-readonly &quot;:0,&quot;aria-required &quot;:0,&quot;aria-selected &quot;:0,&quot;aria-sort &quot;:0,&quot;aria-valuemax &quot;:0,&quot;aria-valuemin &quot;:0,&quot;aria-valuenow &quot;:0,&quot;aria-valuetext &quot;:0,&quot;aria-atomic &quot;:0,&quot;aria-busy &quot;:0,&quot;aria-live &quot;:0,&quot;aria-relevant &quot;:0,&quot;aria-dropeffect &quot;:0,&quot;aria-grabbed &quot;:0,&quot;aria-activedescendant &quot;:0,&quot;aria-colcount &quot;:0,&quot;aria-colindex &quot;:0,&quot;aria-colspan &quot;:0,&quot;aria-controls &quot;:0,&quot;aria-describedby &quot;:0,&quot;aria-errormessage &quot;:0,&quot;aria-flowto &quot;:0,&quot;aria-labelledby &quot;:0,&quot;aria-owns &quot;:0,&quot;aria-posinset &quot;:0,&quot;aria-rowcount &quot;:0,&quot;aria-rowindex &quot;:0,&quot;aria-rowspan &quot;:0,&quot;aria-setsize &quot;:0},fn={},dn=new RegExp(&quot;^(aria)-[&quot;+_+&quot;]*$ &quot;),pn=new RegExp(&quot;^(aria)[A-Z][&quot;+_+&quot;]*$ &quot;),mn=Object.prototype.hasOwnProperty;function hn(e,t){if(mn.call(fn,t)&amp;&amp;fn[t])return!0;if(pn.test(t)){var n=&quot;aria-&quot;+t.slice(4).toLowerCase(),r=un.hasOwnProperty(n)?n:null;if(null==r)return s(&quot;Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.&quot;,t),fn[t]=!0,!0;if(t!==r)return s(&quot;Invalid ARIA attribute `%s`. Did you mean `%s`?&quot;,t,r),fn[t]=!0,!0}if(dn.test(t)){var a=t.toLowerCase(),o=un.hasOwnProperty(a)?a:null;if(null==o)return fn[t]=!0,!1;if(t!==o)return s(&quot;Unknown ARIA attribute `%s`. Did you mean `%s`?&quot;,t,o),fn[t]=!0,!0}return!0}var gn,vn=!1,yn={},En=Object.prototype.hasOwnProperty,bn=/^on./,Tn=/^on[^A-Z]/,Nn=new RegExp(&quot;^(aria)-[&quot;+_+&quot;]*$ &quot;),Rn=new RegExp(&quot;^(aria)[A-Z][&quot;+_+&quot;]*$ &quot;);function Sn(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement &amp;&amp;(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}gn=function(e,t,n,r){if(En.call(yn,t)&amp;&amp;yn[t])return!0;var a=t.toLowerCase();if(&quot;onfocusin &quot;===a||&quot;onfocusout &quot;===a)return s(&quot;React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React.&quot;),yn[t]=!0,!0;if(null!=r){var o=r.possibleRegistrationNames;if(r.registrationNameDependencies.hasOwnProperty(t))return!0;var i=o.hasOwnProperty(a)?o[a]:null;if(null!=i)return s(&quot;Invalid event handler property `%s`. Did you mean `%s`?&quot;,t,i),yn[t]=!0,!0;if(bn.test(t))return s(&quot;Unknown event handler property `%s`. It will be ignored.&quot;,t),yn[t]=!0,!0}else if(bn.test(t))return Tn.test(t)&amp;&amp;s(&quot;Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.&quot;,t),yn[t]=!0,!0;if(Nn.test(t)||Rn.test(t))return!0;if(&quot;innerhtml &quot;===a)return s(&quot;Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`.&quot;),yn[t]=!0,!0;if(&quot;aria &quot;===a)return s(&quot;The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead.&quot;),yn[t]=!0,!0;if(&quot;is &quot;===a &amp;&amp;null!=n &amp;&amp;&quot;string &quot;!=typeof n)return s(&quot;Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.&quot;,typeof n),yn[t]=!0,!0;if(&quot;number &quot;==typeof n &amp;&amp;isNaN(n))return s(&quot;Received NaN for the `%s` attribute. If this is expected, cast the value to a string.&quot;,t),yn[t]=!0,!0;var l=B(t),c=null!==l &amp;&amp;0===l.type;if(cn.hasOwnProperty(a)){var u=cn[a];if(u!==t)return s(&quot;Invalid DOM property `%s`. Did you mean `%s`?&quot;,t,u),yn[t]=!0,!0}else if(!c &amp;&amp;t!==a)return s(&quot;React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.&quot;,t,a),yn[t]=!0,!0;return &quot;boolean &quot;==typeof n &amp;&amp;z(t,n,l,!1)?(n?s(&#039;Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s=&quot;%s &quot;or %s={value.toString()}.&#039;,n,t,t,n,t):s(&#039;Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s=&quot;%s &quot;or %s={value.toString()}.\n\nIf you used to conditionally omit it with %s={condition &amp;&amp;value}, pass %s={condition ? value : undefined} instead.&#039;,n,t,t,n,t,t,t),yn[t]=!0,!0):!!c||(z(t,n,l,!1)?(yn[t]=!0,!1):(&quot;false &quot;!==n &amp;&amp;&quot;true &quot;!==n||null===l||3!==l.type||(s(&quot;Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?&quot;,n,t,&quot;false &quot;===n?&quot;The browser will interpret it as a truthy value.&quot;:&#039;Although this works, it will not work as expected if you pass the string &quot;false &quot;.&#039;,t,n),yn[t]=!0),!0))};var wn=null,On=null,Cn=null;function An(e){var t=Ul(e);if(t){if(&quot;function &quot;!=typeof wn)throw Error(&quot;setRestoreImplementation() needs to be called to handle a target for controlled events. This error is likely caused by a bug in React. Please file an issue.&quot;);var n=t.stateNode;if(n){var r=Fl(n);wn(t.stateNode,t.type,r)}}}function In(e){On?Cn?Cn.push(e):Cn=[e]:On=e}function kn(){if(On){var e=On,t=Cn;if(On=null,Cn=null,An(e),t)for(var n=0;n &lt;t.length;n++)An(t[n])}}var xn=function(e,t){return e(t)},_n=function(e,t,n,r,a){return e(t,n,r,a)},Ln=function(){},Pn=xn,Mn=!1,Dn=!1;function Un(){(null!==On||null!==Cn)&amp;&amp;(Ln(),kn())}function jn(e,t){var n=e.stateNode;if(null===n)return null;var r=Fl(n);if(null===r)return null;var a=r[t];if(function(e,t,n){switch(e){case &quot;onClick &quot;:case &quot;onClickCapture &quot;:case &quot;onDoubleClick &quot;:case &quot;onDoubleClickCapture &quot;:case &quot;onMouseDown &quot;:case &quot;onMouseDownCapture &quot;:case &quot;onMouseMove &quot;:case &quot;onMouseMoveCapture &quot;:case &quot;onMouseUp &quot;:case &quot;onMouseUpCapture &quot;:case &quot;onMouseEnter &quot;:return!(!n.disabled||!function(e){return &quot;button &quot;===e||&quot;input &quot;===e||&quot;select &quot;===e||&quot;textarea &quot;===e}(t));default:return!1}}(t,e.type,r))return null;if(a &amp;&amp;&quot;function &quot;!=typeof a)throw Error(&quot;Expected `&quot;+t+&quot;` listener to be a function, instead got a value of `&quot;+typeof a+&quot;` type.&quot;);return a}var Fn=!1;if(k)try{var zn={};Object.defineProperty(zn,&quot;passive &quot;,{get:function(){Fn=!0}}),window.addEventListener(&quot;test &quot;,zn,zn),window.removeEventListener(&quot;test &quot;,zn,zn)}catch(e){Fn=!1}function Hn(e,t,n,r,a,o,i,l,s){var c=Array.prototype.slice.call(arguments,3);try{t.apply(n,c)}catch(e){this.onError(e)}}var Bn=Hn;if(&quot;undefined &quot;!=typeof window &amp;&amp;&quot;function &quot;==typeof window.dispatchEvent &amp;&amp;&quot;undefined &quot;!=typeof document &amp;&amp;&quot;function &quot;==typeof document.createEvent){var Vn=document.createElement(&quot;react &quot;);Bn=function(e,t,n,r,a,o,i,l,s){if(&quot;undefined &quot;==typeof document)throw Error(&quot;The `document` global was defined when React was initialized, but is not defined anymore. This can happen in a test environment if a component schedules an update from an asynchronous callback, but the test has already finished running. To solve this, you can either unmount the component at the end of your test (and ensure that any asynchronous operations get canceled in `componentWillUnmount`), or you can change the test itself to be asynchronous.&quot;);var c=document.createEvent(&quot;Event &quot;),u=!1,f=!0,d=window.event,p=Object.getOwnPropertyDescriptor(window,&quot;event &quot;);function m(){Vn.removeEventListener(T,v,!1),void 0!==window.event &amp;&amp;window.hasOwnProperty(&quot;event &quot;)&amp;&amp;(window.event=d)}var h,g=Array.prototype.slice.call(arguments,3);function v(){u=!0,m(),t.apply(n,g),f=!1}var y=!1,E=!1;function b(e){if(y=!0,null===(h=e.error)&amp;&amp;0===e.colno &amp;&amp;0===e.lineno &amp;&amp;(E=!0),e.defaultPrevented &amp;&amp;null!=h &amp;&amp;&quot;object &quot;==typeof h)try{h._suppressLogging=!0}catch(e){}}var T=&quot;react-&quot;+(e||&quot;invokeguardedcallback &quot;);if(window.addEventListener(&quot;error &quot;,b),Vn.addEventListener(T,v,!1),c.initEvent(T,!1,!1),Vn.dispatchEvent(c),p &amp;&amp;Object.defineProperty(window,&quot;event &quot;,p),u &amp;&amp;f &amp;&amp;(y?E &amp;&amp;(h=new Error(&quot;A cross-origin error was thrown. React doesn &#039;t have access to the actual error object in development. See https://reactjs.org/link/crossorigin-error for more information.&quot;)):h=new Error(&quot;An error was thrown inside one of your components, but React doesn &#039;t know what it was. This is likely due to browser flakiness. React does its best to preserve the \&quot;Pause on exceptions\&quot;behavior of the DevTools, which requires some DEV-mode only tricks. It &#039;s possible that these don &#039;t work in your browser. Try triggering the error in production mode, or switching to a modern browser. If you suspect that this is actually an issue with React, please file an issue.&quot;),this.onError(h)),window.removeEventListener(&quot;error &quot;,b),!u)return m(),Hn.apply(this,arguments)}}var Wn=Bn,Gn=!1,Yn=null,$n=!1,Xn=null,Kn={onError:function(e){Gn=!0,Yn=e}};function qn(e,t,n,r,a,o,i,l,s){Gn=!1,Yn=null,Wn.apply(Kn,arguments)}function Jn(){return Gn}function Qn(){if(Gn){var e=Yn;return Gn=!1,Yn=null,e}throw Error(&quot;clearCaughtError was called but no error was captured. This error is likely caused by a bug in React. Please file an issue.&quot;)}function Zn(e){return e._reactInternals}var er,tr,nr,rr,ar=64,or=128,ir=256,lr=8192,sr=2048,cr=4096,ur=16384,fr=o.ReactCurrentOwner;function dr(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{var r=t;do{0!=(1026 &amp;(t=r).flags)&amp;&amp;(n=t.return),r=t.return}while(r)}return 3===t.tag?n:null}function pr(e){if(e.tag===h){var t=e.memoizedState;if(null===t){var n=e.alternate;null!==n &amp;&amp;(t=n.memoizedState)}if(null!==t)return t.dehydrated}return null}function mr(e){return 3===e.tag?e.stateNode.containerInfo:null}function hr(e){if(dr(e)!==e)throw Error(&quot;Unable to find node on an unmounted component.&quot;)}function gr(e){var t=e.alternate;if(!t){var n=dr(e);if(null===n)throw Error(&quot;Unable to find node on an unmounted component.&quot;);return n!==e?null:e}for(var r=e,a=t;;){var o=r.return;if(null===o)break;var i=o.alternate;if(null===i){var l=o.return;if(null!==l){r=a=l;continue}break}if(o.child===i.child){for(var s=o.child;s;){if(s===r)return hr(o),e;if(s===a)return hr(o),t;s=s.sibling}throw Error(&quot;Unable to find node on an unmounted component.&quot;)}if(r.return!==a.return)r=o,a=i;else{for(var c=!1,u=o.child;u;){if(u===r){c=!0,r=o,a=i;break}if(u===a){c=!0,a=o,r=i;break}u=u.sibling}if(!c){for(u=i.child;u;){if(u===r){c=!0,r=i,a=o;break}if(u===a){c=!0,a=i,r=o;break}u=u.sibling}if(!c)throw Error(&quot;Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.&quot;)}}if(r.alternate!==a)throw Error(&quot;Return fibers should always be each others &#039;alternates. This error is likely caused by a bug in React. Please file an issue.&quot;)}if(3!==r.tag)throw Error(&quot;Unable to find node on an unmounted component.&quot;);return r.stateNode.current===r?e:t}function vr(e){var t=gr(e);if(!t)return null;for(var n=t;;){if(5===n.tag||6===n.tag)return n;if(n.child)n.child.return=n,n=n.child;else{if(n===t)return null;for(;!n.sibling;){if(!n.return||n.return===t)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}}return null}var yr=!1,Er=[],br=null,Tr=null,Nr=null,Rr=new Map,Sr=new Map,wr=[],Or=[&quot;mousedown &quot;,&quot;mouseup &quot;,&quot;touchcancel &quot;,&quot;touchend &quot;,&quot;touchstart &quot;,&quot;auxclick &quot;,&quot;dblclick &quot;,&quot;pointercancel &quot;,&quot;pointerdown &quot;,&quot;pointerup &quot;,&quot;dragend &quot;,&quot;dragstart &quot;,&quot;drop &quot;,&quot;compositionend &quot;,&quot;compositionstart &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;input &quot;,&quot;textInput &quot;,&quot;copy &quot;,&quot;cut &quot;,&quot;paste &quot;,&quot;click &quot;,&quot;change &quot;,&quot;contextmenu &quot;,&quot;reset &quot;,&quot;submit &quot;];function Cr(e){return Or.indexOf(e)&gt;-1}function Ar(e,t,n,r,a){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:a,targetContainers:[r]}}function Ir(e,t,n,r,a){var o=Ar(e,t,n,r,a);Er.push(o)}function kr(e,t){switch(e){case &quot;focusin &quot;:case &quot;focusout &quot;:br=null;break;case &quot;dragenter &quot;:case &quot;dragleave &quot;:Tr=null;break;case &quot;mouseover &quot;:case &quot;mouseout &quot;:Nr=null;break;case &quot;pointerover &quot;:case &quot;pointerout &quot;:Rr.delete(t.pointerId);break;case &quot;gotpointercapture &quot;:case &quot;lostpointercapture &quot;:Sr.delete(t.pointerId)}}function xr(e,t,n,r,a,o){if(null===e||e.nativeEvent!==o){var i=Ar(t,n,r,a,o);if(null!==t){var l=Ul(t);null!==l &amp;&amp;tr(l)}return i}e.eventSystemFlags|=r;var s=e.targetContainers;return null!==a &amp;&amp;-1===s.indexOf(a)&amp;&amp;s.push(a),e}function _r(e){var t=Dl(e.target);if(null!==t){var n=dr(t);if(null!==n){var a=n.tag;if(a===h){var o=pr(n);if(null!==o)return e.blockedOn=o,void rr(e.lanePriority,function(){r.unstable_runWithPriority(e.priority,function(){nr(n)})})}else if(3===a &amp;&amp;n.stateNode.hydrate)return void(e.blockedOn=mr(n))}}e.blockedOn=null}function Lr(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;t.length &gt;0;){var n=ja(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){var r=Ul(n);return null!==r &amp;&amp;tr(r),e.blockedOn=n,!1}t.shift()}return!0}function Pr(e,t,n){Lr(e)&amp;&amp;n.delete(t)}function Mr(){for(yr=!1;Er.length &gt;0;){var e=Er[0];if(null!==e.blockedOn){var t=Ul(e.blockedOn);null!==t &amp;&amp;er(t);break}for(var n=e.targetContainers;n.length &gt;0;){var r=ja(e.domEventName,e.eventSystemFlags,n[0],e.nativeEvent);if(null!==r){e.blockedOn=r;break}n.shift()}null===e.blockedOn &amp;&amp;Er.shift()}null!==br &amp;&amp;Lr(br)&amp;&amp;(br=null),null!==Tr &amp;&amp;Lr(Tr)&amp;&amp;(Tr=null),null!==Nr &amp;&amp;Lr(Nr)&amp;&amp;(Nr=null),Rr.forEach(Pr),Sr.forEach(Pr)}function Dr(e,t){e.blockedOn===t &amp;&amp;(e.blockedOn=null,yr||(yr=!0,r.unstable_scheduleCallback(r.unstable_NormalPriority,Mr)))}function Ur(e){if(Er.length &gt;0){Dr(Er[0],e);for(var t=1;t &lt;Er.length;t++){var n=Er[t];n.blockedOn===e &amp;&amp;(n.blockedOn=null)}}null!==br &amp;&amp;Dr(br,e),null!==Tr &amp;&amp;Dr(Tr,e),null!==Nr &amp;&amp;Dr(Nr,e);var r=function(t){return Dr(t,e)};Rr.forEach(r),Sr.forEach(r);for(var a=0;a &lt;wr.length;a++){var o=wr[a];o.blockedOn===e &amp;&amp;(o.blockedOn=null)}for(;wr.length &gt;0;){var i=wr[0];if(null!==i.blockedOn)break;_r(i),null===i.blockedOn &amp;&amp;wr.shift()}}function jr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[&quot;Webkit &quot;+e]=&quot;webkit &quot;+t,n[&quot;Moz &quot;+e]=&quot;moz &quot;+t,n}var Fr={animationend:jr(&quot;Animation &quot;,&quot;AnimationEnd &quot;),animationiteration:jr(&quot;Animation &quot;,&quot;AnimationIteration &quot;),animationstart:jr(&quot;Animation &quot;,&quot;AnimationStart &quot;),transitionend:jr(&quot;Transition &quot;,&quot;TransitionEnd &quot;)},zr={},Hr={};function Br(e){if(zr[e])return zr[e];if(!Fr[e])return e;var t=Fr[e];for(var n in t)if(t.hasOwnProperty(n)&amp;&amp;n in Hr)return zr[e]=t[n];return e}k &amp;&amp;(Hr=document.createElement(&quot;div &quot;).style,&quot;AnimationEvent &quot;in window||(delete Fr.animationend.animation,delete Fr.animationiteration.animation,delete Fr.animationstart.animation),&quot;TransitionEvent &quot;in window||delete Fr.transitionend.transition);var Vr=Br(&quot;animationend &quot;),Wr=Br(&quot;animationiteration &quot;),Gr=Br(&quot;animationstart &quot;),Yr=Br(&quot;transitionend &quot;),$r=new Map,Xr=new Map,Kr=[&quot;abort &quot;,&quot;abort &quot;,Vr,&quot;animationEnd &quot;,Wr,&quot;animationIteration &quot;,Gr,&quot;animationStart &quot;,&quot;canplay &quot;,&quot;canPlay &quot;,&quot;canplaythrough &quot;,&quot;canPlayThrough &quot;,&quot;durationchange &quot;,&quot;durationChange &quot;,&quot;emptied &quot;,&quot;emptied &quot;,&quot;encrypted &quot;,&quot;encrypted &quot;,&quot;ended &quot;,&quot;ended &quot;,&quot;error &quot;,&quot;error &quot;,&quot;gotpointercapture &quot;,&quot;gotPointerCapture &quot;,&quot;load &quot;,&quot;load &quot;,&quot;loadeddata &quot;,&quot;loadedData &quot;,&quot;loadedmetadata &quot;,&quot;loadedMetadata &quot;,&quot;loadstart &quot;,&quot;loadStart &quot;,&quot;lostpointercapture &quot;,&quot;lostPointerCapture &quot;,&quot;playing &quot;,&quot;playing &quot;,&quot;progress &quot;,&quot;progress &quot;,&quot;seeking &quot;,&quot;seeking &quot;,&quot;stalled &quot;,&quot;stalled &quot;,&quot;suspend &quot;,&quot;suspend &quot;,&quot;timeupdate &quot;,&quot;timeUpdate &quot;,Yr,&quot;transitionEnd &quot;,&quot;waiting &quot;,&quot;waiting &quot;];function qr(e,t){for(var n=0;n &lt;e.length;n+=2){var r=e[n],a=e[n+1],o=&quot;on &quot;+(a[0].toUpperCase()+a.slice(1));Xr.set(r,t),$r.set(r,o),A(o,[r])}}var Jr=r.unstable_now;if(null==a.__interactionsRef||null==a.__interactionsRef.current)throw Error(&quot;It is not supported to run the profiling version of a renderer (for example, `react-dom/profiling`) without also replacing the `scheduler/tracing` module with `scheduler/tracing-profiling`. Your bundler might have a setting for aliasing both modules. Learn more at https://reactjs.org/link/profiling &quot;);Jr();var Qr=15,Zr=10,ea=3584,ta=4186112,na=62914560,ra=33554432,aa=67108864,oa=134217727,ia=134217728,la=805306368,sa=1073741824,ca=-1,ua=8;function fa(e){if(0!=(1 &amp;e))return ua=Qr,1;if(0!=(2 &amp;e))return ua=14,2;if(0!=(4 &amp;e))return ua=13,4;var t=24 &amp;e;if(0!==t)return ua=12,t;if(0!=(32 &amp;e))return ua=11,32;var n=192 &amp;e;if(0!==n)return ua=Zr,n;if(0!=(256 &amp;e))return ua=9,256;var r=ea &amp;e;if(0!==r)return ua=8,r;if(0!=(4096 &amp;e))return ua=7,4096;var a=ta &amp;e;if(0!==a)return ua=6,a;var o=na &amp;e;if(0!==o)return ua=5,o;if(e &amp;aa)return ua=4,aa;if(0!=(e &amp;ia))return ua=3,ia;var i=la &amp;e;return 0!==i?(ua=2,i):0!=(sa &amp;e)?(ua=1,sa):(s(&quot;Should have found matching lanes. This is a bug in React.&quot;),ua=8,e)}function da(e,t){var n=e.pendingLanes;if(0===n)return ua=0,0;var r=0,a=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)r=o,a=ua=Qr;else{var s=n &amp;oa;if(0!==s){var c=s &amp;~i;if(0!==c)r=fa(c),a=ua;else{var u=s &amp;l;0!==u &amp;&amp;(r=fa(u),a=ua)}}else{var f=n &amp;~i;0!==f?(r=fa(f),a=ua):0!==l &amp;&amp;(r=fa(l),a=ua)}}if(0===r)return 0;if(r=n &amp;function(e){return(function(e){var t=31-Aa(e);return t &lt;0?0:1 &lt;&lt;t}(e)&lt;&lt;1)-1}(r),0!==t &amp;&amp;t!==r &amp;&amp;0==(t &amp;i)){if(fa(t),a &lt;=ua)return t;ua=a}var d=e.entangledLanes;if(0!==d)for(var p=e.entanglements,m=r &amp;d;m &gt;0;){var h=Ea(m);r|=p[h],m &amp;=~(1 &lt;&lt;h)}return r}function pa(e,t){return fa(e),ua &gt;=Zr?t+250:ua &gt;=6?t+5e3:ca}function ma(e){var t=-1073741825 &amp;e.pendingLanes;return 0!==t?t:t &amp;sa?sa:0}function ha(e){return 0!=(e &amp;oa)}function ga(e){return(e &amp;na)===e}function va(e,t){switch(e){case 0:break;case Qr:return 1;case 14:return 2;case 12:var n=ya(24 &amp;~t);return 0===n?va(Zr,t):n;case Zr:var r=ya(192 &amp;~t);return 0===r?va(8,t):r;case 8:var a=ya(ea &amp;~t);return 0===a &amp;&amp;0===(a=ya(ta &amp;~t))&amp;&amp;(a=ya(ea)),a;case 6:case 5:break;case 2:var o=ya(la &amp;~t);return 0===o &amp;&amp;(o=ya(la)),o}throw Error(&quot;Invalid update priority: &quot;+e+&quot;. This is a bug in React.&quot;)}function ya(e){return function(e){return e &amp;-e}(e)}function Ea(e){return 31-Aa(e)}function ba(e,t){return 0!=(e &amp;t)}function Ta(e,t){return(e &amp;t)===t}function Na(e,t){return e|t}function Ra(e,t){return e &amp;~t}function Sa(e){for(var t=[],n=0;n &lt;31;n++)t.push(e);return t}function wa(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes &amp;=r,e.pingedLanes &amp;=r,e.eventTimes[Ea(t)]=n}function Oa(e,t,n){e.pingedLanes|=e.suspendedLanes &amp;t}function Ca(e,t){e.mutableReadLanes|=t &amp;e.pendingLanes}var Aa=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(Ia(e)/ka|0)|0},Ia=Math.log,ka=Math.LN2,xa=r.unstable_UserBlockingPriority,_a=r.unstable_runWithPriority,La=!0;function Pa(e){La=!!e}function Ma(e,t,n,r){Mn||Ln(),function(e,t,n,r,a){var o=Mn;Mn=!0;try{_n(e,t,n,r,a)}finally{(Mn=o)||Un()}}(Ua,e,t,n,r)}function Da(e,t,n,r){_a(xa,Ua.bind(null,e,t,n,r))}function Ua(e,t,n,r){var a;if(La)if((a=0==(4 &amp;t))&amp;&amp;Er.length &gt;0 &amp;&amp;Cr(e))Ir(null,e,t,n,r);else{var o=ja(e,t,n,r);if(null!==o){if(a){if(Cr(e))return void Ir(o,e,t,n,r);if(function(e,t,n,r,a){switch(t){case &quot;focusin &quot;:return br=xr(br,e,t,n,r,a),!0;case &quot;dragenter &quot;:return Tr=xr(Tr,e,t,n,r,a),!0;case &quot;mouseover &quot;:return Nr=xr(Nr,e,t,n,r,a),!0;case &quot;pointerover &quot;:var o=a,i=o.pointerId;return Rr.set(i,xr(Rr.get(i)||null,e,t,n,r,o)),!0;case &quot;gotpointercapture &quot;:var l=a,s=l.pointerId;return Sr.set(s,xr(Sr.get(s)||null,e,t,n,r,l)),!0}return!1}(o,e,t,n,r))return;kr(e,r)}Ti(e,t,r,null,n)}else a &amp;&amp;kr(e,r)}}function ja(e,t,n,r){var a=Dl(Sn(r));if(null!==a){var o=dr(a);if(null===o)a=null;else{var i=o.tag;if(i===h){var l=pr(o);if(null!==l)return l;a=null}else if(3===i){if(o.stateNode.hydrate)return mr(o);a=null}else o!==a &amp;&amp;(a=null)}}return Ti(e,t,r,a,n),null}var Fa=null,za=null,Ha=null;function Ba(){if(Ha)return Ha;var e,t,n=za,r=n.length,a=Va(),o=a.length;for(e=0;e &lt;r &amp;&amp;n[e]===a[e];e++);var i=r-e;for(t=1;t &lt;=i &amp;&amp;n[r-t]===a[o-t];t++);return Ha=a.slice(e,t &gt;1?1-t:void 0)}function Va(){return &quot;value &quot;in Fa?Fa.value:Fa.textContent}function Wa(e){var t,n=e.keyCode;return &quot;charCode &quot;in e?0===(t=e.charCode)&amp;&amp;13===n &amp;&amp;(t=13):t=n,10===t &amp;&amp;(t=13),t &gt;=32||13===t?t:0}function Ga(){return!0}function Ya(){return!1}function $a(e){function t(t,n,r,a,o){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)if(e.hasOwnProperty(i)){var l=e[i];this[i]=l?l(a):a[i]}return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?Ga:Ya,this.isPropagationStopped=Ya,this}return n(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e &amp;&amp;(e.preventDefault?e.preventDefault():&quot;unknown &quot;!=typeof e.returnValue &amp;&amp;(e.returnValue=!1),this.isDefaultPrevented=Ga)},stopPropagation:function(){var e=this.nativeEvent;e &amp;&amp;(e.stopPropagation?e.stopPropagation():&quot;unknown &quot;!=typeof e.cancelBubble &amp;&amp;(e.cancelBubble=!0),this.isPropagationStopped=Ga)},persist:function(){},isPersistent:Ga}),t}var Xa,Ka,qa,Ja={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Qa=$a(Ja),Za=n({},Ja,{view:0,detail:0}),eo=$a(Za),to=n({},Za,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:mo,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return &quot;movementX &quot;in e?e.movementX:(function(e){e!==qa &amp;&amp;(qa &amp;&amp;&quot;mousemove &quot;===e.type?(Xa=e.screenX-qa.screenX,Ka=e.screenY-qa.screenY):(Xa=0,Ka=0),qa=e)}(e),Xa)},movementY:function(e){return &quot;movementY &quot;in e?e.movementY:Ka}}),no=$a(to),ro=$a(n({},to,{dataTransfer:0})),ao=$a(n({},Za,{relatedTarget:0})),oo=$a(n({},Ja,{animationName:0,elapsedTime:0,pseudoElement:0})),io=$a(n({},Ja,{clipboardData:function(e){return &quot;clipboardData &quot;in e?e.clipboardData:window.clipboardData}})),lo=$a(n({},Ja,{data:0})),so=lo,co={Esc:&quot;Escape &quot;,Spacebar:&quot;&quot;,Left:&quot;ArrowLeft &quot;,Up:&quot;ArrowUp &quot;,Right:&quot;ArrowRight &quot;,Down:&quot;ArrowDown &quot;,Del:&quot;Delete &quot;,Win:&quot;OS &quot;,Menu:&quot;ContextMenu &quot;,Apps:&quot;ContextMenu &quot;,Scroll:&quot;ScrollLock &quot;,MozPrintableKey:&quot;Unidentified &quot;},uo={8:&quot;Backspace &quot;,9:&quot;Tab &quot;,12:&quot;Clear &quot;,13:&quot;Enter &quot;,16:&quot;Shift &quot;,17:&quot;Control &quot;,18:&quot;Alt &quot;,19:&quot;Pause &quot;,20:&quot;CapsLock &quot;,27:&quot;Escape &quot;,32:&quot;&quot;,33:&quot;PageUp &quot;,34:&quot;PageDown &quot;,35:&quot;End &quot;,36:&quot;Home &quot;,37:&quot;ArrowLeft &quot;,38:&quot;ArrowUp &quot;,39:&quot;ArrowRight &quot;,40:&quot;ArrowDown &quot;,45:&quot;Insert &quot;,46:&quot;Delete &quot;,112:&quot;F1 &quot;,113:&quot;F2 &quot;,114:&quot;F3 &quot;,115:&quot;F4 &quot;,116:&quot;F5 &quot;,117:&quot;F6 &quot;,118:&quot;F7 &quot;,119:&quot;F8 &quot;,120:&quot;F9 &quot;,121:&quot;F10 &quot;,122:&quot;F11 &quot;,123:&quot;F12 &quot;,144:&quot;NumLock &quot;,145:&quot;ScrollLock &quot;,224:&quot;Meta &quot;},fo={Alt:&quot;altKey &quot;,Control:&quot;ctrlKey &quot;,Meta:&quot;metaKey &quot;,Shift:&quot;shiftKey &quot;};function po(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(e);var n=fo[e];return!!n &amp;&amp;!!t[n]}function mo(e){return po}var ho=$a(n({},Za,{key:function(e){if(e.key){var t=co[e.key]||e.key;if(&quot;Unidentified &quot;!==t)return t}if(&quot;keypress &quot;===e.type){var n=Wa(e);return 13===n?&quot;Enter &quot;:String.fromCharCode(n)}return &quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?uo[e.keyCode]||&quot;Unidentified &quot;:&quot;&quot;},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:mo,charCode:function(e){return &quot;keypress &quot;===e.type?Wa(e):0},keyCode:function(e){return &quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0},which:function(e){return &quot;keypress &quot;===e.type?Wa(e):&quot;keydown &quot;===e.type||&quot;keyup &quot;===e.type?e.keyCode:0}})),go=$a(n({},to,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),vo=$a(n({},Za,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:mo})),yo=$a(n({},Ja,{propertyName:0,elapsedTime:0,pseudoElement:0})),Eo=$a(n({},to,{deltaX:function(e){return &quot;deltaX &quot;in e?e.deltaX:&quot;wheelDeltaX &quot;in e?-e.wheelDeltaX:0},deltaY:function(e){return &quot;deltaY &quot;in e?e.deltaY:&quot;wheelDeltaY &quot;in e?-e.wheelDeltaY:&quot;wheelDelta &quot;in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),bo=[9,13,27,32],To=k &amp;&amp;&quot;CompositionEvent &quot;in window,No=null;k &amp;&amp;&quot;documentMode &quot;in document &amp;&amp;(No=document.documentMode);var Ro=k &amp;&amp;&quot;TextEvent &quot;in window &amp;&amp;!No,So=k &amp;&amp;(!To||No &amp;&amp;No &gt;8 &amp;&amp;No &lt;=11),wo=String.fromCharCode(32),Oo=!1;function Co(e,t){switch(e){case &quot;keyup &quot;:return-1!==bo.indexOf(t.keyCode);case &quot;keydown &quot;:return 229!==t.keyCode;case &quot;keypress &quot;:case &quot;mousedown &quot;:case &quot;focusout &quot;:return!0;default:return!1}}function Ao(e){var t=e.detail;return &quot;object &quot;==typeof t &amp;&amp;&quot;data &quot;in t?t.data:null}function Io(e){return &quot;ko &quot;===e.locale}var ko=!1,xo={color:!0,date:!0,datetime:!0,&quot;datetime-local &quot;:!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function _o(e){var t=e &amp;&amp;e.nodeName &amp;&amp;e.nodeName.toLowerCase();return &quot;input &quot;===t?!!xo[e.type]:&quot;textarea &quot;===t}function Lo(e,t,n,r){In(r);var a=Ri(t,&quot;onChange &quot;);if(a.length &gt;0){var o=new Qa(&quot;onChange &quot;,&quot;change &quot;,null,n,r);e.push({event:o,listeners:a})}}var Po=null,Mo=null;function Do(e){mi(e,0)}function Uo(e){if(it(jl(e)))return e}function jo(e,t){if(&quot;change &quot;===e)return t}var Fo=!1;function zo(){Po &amp;&amp;(Po.detachEvent(&quot;onpropertychange &quot;,Ho),Po=null,Mo=null)}function Ho(e){&quot;value &quot;===e.propertyName &amp;&amp;Uo(Mo)&amp;&amp;function(e){var t=[];Lo(t,Mo,e,Sn(e)),function(e,t){if(Mn)return e(t);Mn=!0;try{xn(e,t)}finally{Mn=!1,Un()}}(Do,t)}(e)}function Bo(e,t,n){&quot;focusin &quot;===e?(zo(),function(e,t){Mo=t,(Po=e).attachEvent(&quot;onpropertychange &quot;,Ho)}(t,n)):&quot;focusout &quot;===e &amp;&amp;zo()}function Vo(e,t){if(&quot;selectionchange &quot;===e||&quot;keyup &quot;===e||&quot;keydown &quot;===e)return Uo(Mo)}function Wo(e,t){if(&quot;click &quot;===e)return Uo(t)}function Go(e,t){if(&quot;input &quot;===e||&quot;change &quot;===e)return Uo(t)}k &amp;&amp;(Fo=function(e){if(!k)return!1;var t=&quot;oninput &quot;,n=t in document;if(!n){var r=document.createElement(&quot;div &quot;);r.setAttribute(t,&quot;return;&quot;),n=&quot;function &quot;==typeof r.oninput}return n}()&amp;&amp;(!document.documentMode||document.documentMode &gt;9));var Yo=&quot;function &quot;==typeof Object.is?Object.is:function(e,t){return e===t &amp;&amp;(0!==e||1/e==1/t)||e!=e &amp;&amp;t!=t},$o=Object.prototype.hasOwnProperty;function Xo(e,t){if(Yo(e,t))return!0;if(&quot;object &quot;!=typeof e||null===e||&quot;object &quot;!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(var a=0;a &lt;n.length;a++)if(!$o.call(t,n[a])||!Yo(e[n[a]],t[n[a]]))return!1;return!0}function Ko(e){for(;e &amp;&amp;e.firstChild;)e=e.firstChild;return e}function qo(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}function Jo(e,t){for(var n=Ko(e),r=0,a=0;n;){if(3===n.nodeType){if(a=r+n.textContent.length,r &lt;=t &amp;&amp;a &gt;=t)return{node:n,offset:t-r};r=a}n=Ko(qo(n))}}function Qo(e){return e &amp;&amp;3===e.nodeType}function Zo(e,t){return!(!e||!t)&amp;&amp;(e===t||!Qo(e)&amp;&amp;(Qo(t)?Zo(e,t.parentNode):&quot;contains &quot;in e?e.contains(t):!!e.compareDocumentPosition &amp;&amp;!!(16 &amp;e.compareDocumentPosition(t))))}function ei(e){return e &amp;&amp;e.ownerDocument &amp;&amp;Zo(e.ownerDocument.documentElement,e)}function ti(e){try{return &quot;string &quot;==typeof e.contentWindow.location.href}catch(e){return!1}}function ni(){for(var e=window,t=lt();t instanceof e.HTMLIFrameElement;){if(!ti(t))return t;t=lt((e=t.contentWindow).document)}return t}function ri(e){var t=e &amp;&amp;e.nodeName &amp;&amp;e.nodeName.toLowerCase();return t &amp;&amp;(&quot;input &quot;===t &amp;&amp;(&quot;text &quot;===e.type||&quot;search &quot;===e.type||&quot;tel &quot;===e.type||&quot;url &quot;===e.type||&quot;password &quot;===e.type)||&quot;textarea &quot;===t||&quot;true &quot;===e.contentEditable)}var ai=k &amp;&amp;&quot;documentMode &quot;in document &amp;&amp;document.documentMode &lt;=11,oi=null,ii=null,li=null,si=!1;function ci(e,t,n){var r,a=(r=n).window===r?r.document:9===r.nodeType?r:r.ownerDocument;if(!si &amp;&amp;null!=oi &amp;&amp;oi===lt(a)){var o=function(e){if(&quot;selectionStart &quot;in e &amp;&amp;ri(e))return{start:e.selectionStart,end:e.selectionEnd};var t=(e.ownerDocument &amp;&amp;e.ownerDocument.defaultView||window).getSelection();return{anchorNode:t.anchorNode,anchorOffset:t.anchorOffset,focusNode:t.focusNode,focusOffset:t.focusOffset}}(oi);if(!li||!Xo(li,o)){li=o;var i=Ri(ii,&quot;onSelect &quot;);if(i.length &gt;0){var l=new Qa(&quot;onSelect &quot;,&quot;select &quot;,null,t,n);e.push({event:l,listeners:i}),l.target=oi}}}}qr([&quot;cancel &quot;,&quot;cancel &quot;,&quot;click &quot;,&quot;click &quot;,&quot;close &quot;,&quot;close &quot;,&quot;contextmenu &quot;,&quot;contextMenu &quot;,&quot;copy &quot;,&quot;copy &quot;,&quot;cut &quot;,&quot;cut &quot;,&quot;auxclick &quot;,&quot;auxClick &quot;,&quot;dblclick &quot;,&quot;doubleClick &quot;,&quot;dragend &quot;,&quot;dragEnd &quot;,&quot;dragstart &quot;,&quot;dragStart &quot;,&quot;drop &quot;,&quot;drop &quot;,&quot;focusin &quot;,&quot;focus &quot;,&quot;focusout &quot;,&quot;blur &quot;,&quot;input &quot;,&quot;input &quot;,&quot;invalid &quot;,&quot;invalid &quot;,&quot;keydown &quot;,&quot;keyDown &quot;,&quot;keypress &quot;,&quot;keyPress &quot;,&quot;keyup &quot;,&quot;keyUp &quot;,&quot;mousedown &quot;,&quot;mouseDown &quot;,&quot;mouseup &quot;,&quot;mouseUp &quot;,&quot;paste &quot;,&quot;paste &quot;,&quot;pause &quot;,&quot;pause &quot;,&quot;play &quot;,&quot;play &quot;,&quot;pointercancel &quot;,&quot;pointerCancel &quot;,&quot;pointerdown &quot;,&quot;pointerDown &quot;,&quot;pointerup &quot;,&quot;pointerUp &quot;,&quot;ratechange &quot;,&quot;rateChange &quot;,&quot;reset &quot;,&quot;reset &quot;,&quot;seeked &quot;,&quot;seeked &quot;,&quot;submit &quot;,&quot;submit &quot;,&quot;touchcancel &quot;,&quot;touchCancel &quot;,&quot;touchend &quot;,&quot;touchEnd &quot;,&quot;touchstart &quot;,&quot;touchStart &quot;,&quot;volumechange &quot;,&quot;volumeChange &quot;],0),qr([&quot;drag &quot;,&quot;drag &quot;,&quot;dragenter &quot;,&quot;dragEnter &quot;,&quot;dragexit &quot;,&quot;dragExit &quot;,&quot;dragleave &quot;,&quot;dragLeave &quot;,&quot;dragover &quot;,&quot;dragOver &quot;,&quot;mousemove &quot;,&quot;mouseMove &quot;,&quot;mouseout &quot;,&quot;mouseOut &quot;,&quot;mouseover &quot;,&quot;mouseOver &quot;,&quot;pointermove &quot;,&quot;pointerMove &quot;,&quot;pointerout &quot;,&quot;pointerOut &quot;,&quot;pointerover &quot;,&quot;pointerOver &quot;,&quot;scroll &quot;,&quot;scroll &quot;,&quot;toggle &quot;,&quot;toggle &quot;,&quot;touchmove &quot;,&quot;touchMove &quot;,&quot;wheel &quot;,&quot;wheel &quot;],1),qr(Kr,2),function(e,t){for(var n=0;n &lt;e.length;n++)Xr.set(e[n],0)}([&quot;change &quot;,&quot;selectionchange &quot;,&quot;textInput &quot;,&quot;compositionstart &quot;,&quot;compositionend &quot;,&quot;compositionupdate &quot;]),I(&quot;onMouseEnter &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),I(&quot;onMouseLeave &quot;,[&quot;mouseout &quot;,&quot;mouseover &quot;]),I(&quot;onPointerEnter &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),I(&quot;onPointerLeave &quot;,[&quot;pointerout &quot;,&quot;pointerover &quot;]),A(&quot;onChange &quot;,[&quot;change &quot;,&quot;click &quot;,&quot;focusin &quot;,&quot;focusout &quot;,&quot;input &quot;,&quot;keydown &quot;,&quot;keyup &quot;,&quot;selectionchange &quot;]),A(&quot;onSelect &quot;,[&quot;focusout &quot;,&quot;contextmenu &quot;,&quot;dragend &quot;,&quot;focusin &quot;,&quot;keydown &quot;,&quot;keyup &quot;,&quot;mousedown &quot;,&quot;mouseup &quot;,&quot;selectionchange &quot;]),A(&quot;onBeforeInput &quot;,[&quot;compositionend &quot;,&quot;keypress &quot;,&quot;textInput &quot;,&quot;paste &quot;]),A(&quot;onCompositionEnd &quot;,[&quot;compositionend &quot;,&quot;focusout &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;mousedown &quot;]),A(&quot;onCompositionStart &quot;,[&quot;compositionstart &quot;,&quot;focusout &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;mousedown &quot;]),A(&quot;onCompositionUpdate &quot;,[&quot;compositionupdate &quot;,&quot;focusout &quot;,&quot;keydown &quot;,&quot;keypress &quot;,&quot;keyup &quot;,&quot;mousedown &quot;]);var ui=[&quot;abort &quot;,&quot;canplay &quot;,&quot;canplaythrough &quot;,&quot;durationchange &quot;,&quot;emptied &quot;,&quot;encrypted &quot;,&quot;ended &quot;,&quot;error &quot;,&quot;loadeddata &quot;,&quot;loadedmetadata &quot;,&quot;loadstart &quot;,&quot;pause &quot;,&quot;play &quot;,&quot;playing &quot;,&quot;progress &quot;,&quot;ratechange &quot;,&quot;seeked &quot;,&quot;seeking &quot;,&quot;stalled &quot;,&quot;suspend &quot;,&quot;timeupdate &quot;,&quot;volumechange &quot;,&quot;waiting &quot;],fi=new Set([&quot;cancel &quot;,&quot;close &quot;,&quot;invalid &quot;,&quot;load &quot;,&quot;scroll &quot;,&quot;toggle &quot;].concat(ui));function di(e,t,n){var r=e.type||&quot;unknown-event &quot;;e.currentTarget=n,function(e,t,n,r,a,o,i,l,s){if(qn.apply(this,arguments),Gn){var c=Qn();$n||($n=!0,Xn=c)}}(r,t,void 0,e),e.currentTarget=null}function pi(e,t,n){var r;if(n)for(var a=t.length-1;a &gt;=0;a--){var o=t[a],i=o.instance,l=o.currentTarget,s=o.listener;if(i!==r &amp;&amp;e.isPropagationStopped())return;di(e,s,l),r=i}else for(var c=0;c &lt;t.length;c++){var u=t[c],f=u.instance,d=u.currentTarget,p=u.listener;if(f!==r &amp;&amp;e.isPropagationStopped())return;di(e,p,d),r=f}}function mi(e,t){for(var n=0!=(4 &amp;t),r=0;r &lt;e.length;r++){var a=e[r];pi(a.event,a.listeners,n)}!function(){if($n){var e=Xn;throw $n=!1,Xn=null,e}}()}function hi(e,t){var n=Hl(t),r=Oi(e,!1);n.has(r)||(Ei(t,e,2,!1),n.add(r))}var gi=&quot;_reactListening &quot;+Math.random().toString(36).slice(2);function vi(e){e[gi]||(e[gi]=!0,w.forEach(function(t){fi.has(t)||yi(t,!1,e,null),yi(t,!0,e,null)}))}function yi(e,t,n,r){var a=arguments.length &gt;4 &amp;&amp;void 0!==arguments[4]?arguments[4]:0,o=n;if(&quot;selectionchange &quot;===e &amp;&amp;9!==n.nodeType &amp;&amp;(o=n.ownerDocument),null!==r &amp;&amp;!t &amp;&amp;fi.has(e)){if(&quot;scroll &quot;!==e)return;a|=2,o=r}var i=Hl(o),l=Oi(e,t);i.has(l)||(t &amp;&amp;(a|=4),Ei(o,e,a,t),i.add(l))}function Ei(e,t,n,r,a){var o=function(e,t,n){var r;switch(function(e){var t=Xr.get(e);return void 0===t?2:t}(t)){case 0:r=Ma;break;case 1:r=Da;break;case 2:default:r=Ua}return r.bind(null,t,n,e)}(e,t,n),i=void 0;Fn &amp;&amp;(&quot;touchstart &quot;!==t &amp;&amp;&quot;touchmove &quot;!==t &amp;&amp;&quot;wheel &quot;!==t||(i=!0)),e=e,r?void 0!==i?function(e,t,n,r){e.addEventListener(t,n,{capture:!0,passive:r})}(e,t,o,i):function(e,t,n){e.addEventListener(t,n,!0)}(e,t,o):void 0!==i?function(e,t,n,r){e.addEventListener(t,n,{passive:r})}(e,t,o,i):function(e,t,n){e.addEventListener(t,n,!1)}(e,t,o)}function bi(e,t){return e===t||8===e.nodeType &amp;&amp;e.parentNode===t}function Ti(e,t,n,r,a){var o=r;if(0==(1 &amp;t)&amp;&amp;0==(2 &amp;t)){var i=a;if(null!==r){var l=r;e:for(;;){if(null===l)return;var s=l.tag;if(3===s||4===s){var c=l.stateNode.containerInfo;if(bi(c,i))break;if(4===s)for(var u=l.return;null!==u;){var f=u.tag;if((3===f||4===f)&amp;&amp;bi(u.stateNode.containerInfo,i))return;u=u.return}for(;null!==c;){var d=Dl(c);if(null===d)return;var p=d.tag;if(5===p||6===p){l=o=d;continue e}c=c.parentNode}}l=l.return}}}!function(e,t,n){if(Dn)return e();Dn=!0;try{Pn(e,void 0,void 0)}finally{Dn=!1,Un()}}(function(){return function(e,t,n,r,a){var o=[];(function(e,t,n,r,a,o,i){(function(e,t,n,r,a,o,i){var l=$r.get(t);if(void 0!==l){var s=Qa,c=t;switch(t){case &quot;keypress &quot;:if(0===Wa(r))return;case &quot;keydown &quot;:case &quot;keyup &quot;:s=ho;break;case &quot;focusin &quot;:c=&quot;focus &quot;,s=ao;break;case &quot;focusout &quot;:c=&quot;blur &quot;,s=ao;break;case &quot;beforeblur &quot;:case &quot;afterblur &quot;:s=ao;break;case &quot;click &quot;:if(2===r.button)return;case &quot;auxclick &quot;:case &quot;dblclick &quot;:case &quot;mousedown &quot;:case &quot;mousemove &quot;:case &quot;mouseup &quot;:case &quot;mouseout &quot;:case &quot;mouseover &quot;:case &quot;contextmenu &quot;:s=no;break;case &quot;drag &quot;:case &quot;dragend &quot;:case &quot;dragenter &quot;:case &quot;dragexit &quot;:case &quot;dragleave &quot;:case &quot;dragover &quot;:case &quot;dragstart &quot;:case &quot;drop &quot;:s=ro;break;case &quot;touchcancel &quot;:case &quot;touchend &quot;:case &quot;touchmove &quot;:case &quot;touchstart &quot;:s=vo;break;case Vr:case Wr:case Gr:s=oo;break;case Yr:s=yo;break;case &quot;scroll &quot;:s=eo;break;case &quot;wheel &quot;:s=Eo;break;case &quot;copy &quot;:case &quot;cut &quot;:case &quot;paste &quot;:s=io;break;case &quot;gotpointercapture &quot;:case &quot;lostpointercapture &quot;:case &quot;pointercancel &quot;:case &quot;pointerdown &quot;:case &quot;pointermove &quot;:case &quot;pointerout &quot;:case &quot;pointerover &quot;:case &quot;pointerup &quot;:s=go}var u=0!=(4 &amp;o),f=function(e,t,n,r,a){for(var o=r?null!==t?t+&quot;Capture &quot;:null:t,i=[],l=e,s=null;null!==l;){var c=l.stateNode;if(5===l.tag &amp;&amp;null!==c &amp;&amp;(s=c,null!==o)){var u=jn(l,o);null!=u &amp;&amp;i.push(Ni(l,u,s))}if(a)break;l=l.return}return i}(n,l,0,u,!u &amp;&amp;&quot;scroll &quot;===t);if(f.length &gt;0){var d=new s(l,c,null,r,a);e.push({event:d,listeners:f})}}})(e,t,n,r,a,o),0==(7 &amp;o)&amp;&amp;(function(e,t,n,r,a,o,i){var l=&quot;mouseover &quot;===t||&quot;pointerover &quot;===t,s=&quot;mouseout &quot;===t||&quot;pointerout &quot;===t;if(l &amp;&amp;0==(16 &amp;o)){var c=r.relatedTarget||r.fromElement;if(c &amp;&amp;(Dl(c)||Ml(c)))return}if(s||l){var u,f,d;if(a.window===a)u=a;else{var p=a.ownerDocument;u=p?p.defaultView||p.parentWindow:window}if(s){var m=r.relatedTarget||r.toElement;f=n,null!==(d=m?Dl(m):null)&amp;&amp;(d!==dr(d)||5!==d.tag &amp;&amp;6!==d.tag)&amp;&amp;(d=null)}else f=null,d=n;if(f!==d){var h=no,g=&quot;onMouseLeave &quot;,v=&quot;onMouseEnter &quot;,y=&quot;mouse &quot;;&quot;pointerout &quot;!==t &amp;&amp;&quot;pointerover &quot;!==t||(h=go,g=&quot;onPointerLeave &quot;,v=&quot;onPointerEnter &quot;,y=&quot;pointer &quot;);var E=null==f?u:jl(f),b=null==d?u:jl(d),T=new h(g,y+&quot;leave &quot;,f,r,a);T.target=E,T.relatedTarget=b;var N=null;if(Dl(a)===n){var R=new h(v,y+&quot;enter &quot;,d,r,a);R.target=b,R.relatedTarget=E,N=R}!function(e,t,n,r,a){var o=r &amp;&amp;a?function(e,t){for(var n=e,r=t,a=0,o=n;o;o=Si(o))a++;for(var i=0,l=r;l;l=Si(l))i++;for(;a-i &gt;0;)n=Si(n),a--;for(;i-a &gt;0;)r=Si(r),i--;for(var s=a;s--;){if(n===r||null!==r &amp;&amp;n===r.alternate)return n;n=Si(n),r=Si(r)}return null}(r,a):null;null!==r &amp;&amp;wi(e,t,r,o,!1),null!==a &amp;&amp;null!==n &amp;&amp;wi(e,n,a,o,!0)}(e,T,N,f,d)}}}(e,t,n,r,a,o),function(e,t,n,r,a,o,i){var l,s,c,u,f=n?jl(n):window;if(&quot;select &quot;===(u=(c=f).nodeName &amp;&amp;c.nodeName.toLowerCase())||&quot;input &quot;===u &amp;&amp;&quot;file &quot;===c.type?l=jo:_o(f)?Fo?l=Go:(l=Vo,s=Bo):function(e){var t=e.nodeName;return t &amp;&amp;&quot;input &quot;===t.toLowerCase()&amp;&amp;(&quot;checkbox &quot;===e.type||&quot;radio &quot;===e.type)}(f)&amp;&amp;(l=Wo),l){var d=l(t,n);if(d)return void Lo(e,d,r,a)}s &amp;&amp;s(t,f,n),&quot;focusout &quot;===t &amp;&amp;function(e){var t=e._wrapperState;t &amp;&amp;t.controlled &amp;&amp;&quot;number &quot;===e.type &amp;&amp;yt(e,&quot;number &quot;,e.value)}(f)}(e,t,n,r,a),function(e,t,n,r,a,o,i){var l=n?jl(n):window;switch(t){case &quot;focusin &quot;:(_o(l)||&quot;true &quot;===l.contentEditable)&amp;&amp;(oi=l,ii=n,li=null);break;case &quot;focusout &quot;:oi=null,ii=null,li=null;break;case &quot;mousedown &quot;:si=!0;break;case &quot;contextmenu &quot;:case &quot;mouseup &quot;:case &quot;dragend &quot;:si=!1,ci(e,r,a);break;case &quot;selectionchange &quot;:if(ai)break;case &quot;keydown &quot;:case &quot;keyup &quot;:ci(e,r,a)}}(e,t,n,r,a),function(e,t,n,r,a,o,i){(function(e,t,n,r,a){var o,i;if(To?o=function(e){switch(e){case &quot;compositionstart &quot;:return &quot;onCompositionStart &quot;;case &quot;compositionend &quot;:return &quot;onCompositionEnd &quot;;case &quot;compositionupdate &quot;:return &quot;onCompositionUpdate &quot;}}(t):ko?Co(t,r)&amp;&amp;(o=&quot;onCompositionEnd &quot;):function(e,t){return &quot;keydown &quot;===e &amp;&amp;229===t.keyCode}(t,r)&amp;&amp;(o=&quot;onCompositionStart &quot;),!o)return null;So &amp;&amp;!Io(r)&amp;&amp;(ko||&quot;onCompositionStart &quot;!==o?&quot;onCompositionEnd &quot;===o &amp;&amp;ko &amp;&amp;(i=Ba()):ko=function(e){return Fa=e,za=Va(),!0}(a));var l=Ri(n,o);if(l.length &gt;0){var s=new lo(o,t,null,r,a);if(e.push({event:s,listeners:l}),i)s.data=i;else{var c=Ao(r);null!==c &amp;&amp;(s.data=c)}}})(e,t,n,r,a),function(e,t,n,r,a){var o;if(!(o=Ro?function(e,t){switch(e){case &quot;compositionend &quot;:return Ao(t);case &quot;keypress &quot;:return 32!==t.which?null:(Oo=!0,wo);case &quot;textInput &quot;:var n=t.data;return n===wo &amp;&amp;Oo?null:n;default:return null}}(t,r):function(e,t){if(ko){if(&quot;compositionend &quot;===e||!To &amp;&amp;Co(e,t)){var n=Ba();return Fa=null,za=null,Ha=null,ko=!1,n}return null}switch(e){case &quot;paste &quot;:return null;case &quot;keypress &quot;:if(!function(e){return(e.ctrlKey||e.altKey||e.metaKey)&amp;&amp;!(e.ctrlKey &amp;&amp;e.altKey)}(t)){if(t.char &amp;&amp;t.char.length &gt;1)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case &quot;compositionend &quot;:return So &amp;&amp;!Io(t)?null:t.data;default:return null}}(t,r)))return null;var i=Ri(n,&quot;onBeforeInput &quot;);if(i.length &gt;0){var l=new so(&quot;onBeforeInput &quot;,&quot;beforeinput &quot;,null,r,a);e.push({event:l,listeners:i}),l.data=o}}(e,t,n,r,a)}(e,t,n,r,a))})(o,e,r,n,Sn(n),t),mi(o,t)}(e,t,n,o)})}function Ni(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ri(e,t){for(var n=t+&quot;Capture &quot;,r=[],a=e;null!==a;){var o=a.stateNode;if(5===a.tag &amp;&amp;null!==o){var i=o,l=jn(a,n);null!=l &amp;&amp;r.unshift(Ni(a,l,i));var s=jn(a,t);null!=s &amp;&amp;r.push(Ni(a,s,i))}a=a.return}return r}function Si(e){if(null===e)return null;do{e=e.return}while(e &amp;&amp;5!==e.tag);return e||null}function wi(e,t,n,r,a){for(var o=t._reactName,i=[],l=n;null!==l &amp;&amp;l!==r;){var s=l.alternate,c=l.stateNode,u=l.tag;if(null!==s &amp;&amp;s===r)break;if(5===u &amp;&amp;null!==c){var f=c;if(a){var d=jn(l,o);null!=d &amp;&amp;i.unshift(Ni(l,d,f))}else if(!a){var p=jn(l,o);null!=p &amp;&amp;i.push(Ni(l,p,f))}}l=l.return}0!==i.length &amp;&amp;e.push({event:t,listeners:i})}function Oi(e,t){return e+&quot;__ &quot;+(t?&quot;capture &quot;:&quot;bubble &quot;)}var Ci,Ai,Ii,ki,xi,_i,Li,Pi,Mi,Di,Ui=!1,ji=&quot;dangerouslySetInnerHTML &quot;,Fi=&quot;suppressContentEditableWarning &quot;,zi=&quot;suppressHydrationWarning &quot;,Hi=&quot;autoFocus &quot;,Bi=&quot;children &quot;,Vi=&quot;style &quot;,Wi=&quot;http://www.w3.org/1999/xhtml &quot;;Ci={dialog:!0,webview:!0},Ii=function(e,t){(function(e,t){sn(e,t)||function(e,t){var n=[];for(var r in t)hn(0,r)||n.push(r);var a=n.map(function(e){return &quot;`&quot;+e+&quot;`&quot;}).join(&quot;, &quot;);1===n.length?s(&quot;Invalid aria prop %s on &lt;%s &gt;tag. For details, see https://reactjs.org/link/invalid-aria-props &quot;,a,e):n.length &gt;1 &amp;&amp;s(&quot;Invalid aria props %s on &lt;%s &gt;tag. For details, see https://reactjs.org/link/invalid-aria-props &quot;,a,e)}(e,t)})(e,t),function(e,t){&quot;input &quot;!==e &amp;&amp;&quot;textarea &quot;!==e &amp;&amp;&quot;select &quot;!==e||null==t||null!==t.value||vn||(vn=!0,s(&quot;select &quot;===e &amp;&amp;t.multiple?&quot;`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.&quot;:&quot;`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.&quot;,e))}(e,t),function(e,t,n){sn(e,t)||function(e,t,n){var r=[];for(var a in t)gn(0,a,t[a],n)||r.push(a);var o=r.map(function(e){return &quot;`&quot;+e+&quot;`&quot;}).join(&quot;, &quot;);1===r.length?s(&quot;Invalid value for prop %s on &lt;%s &gt;tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://reactjs.org/link/attribute-behavior &quot;,o,e):r.length &gt;1 &amp;&amp;s(&quot;Invalid values for props %s on &lt;%s &gt;tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://reactjs.org/link/attribute-behavior &quot;,o,e)}(e,t,n)}(e,t,{registrationNameDependencies:O,possibleRegistrationNames:C})},Pi=k &amp;&amp;!document.documentMode;var Gi=/\r\n?/g,Yi=/\u0000|\uFFFD/g;function $i(e){return 9===e.nodeType?e:e.ownerDocument}function Xi(){}function Ki(e){e.onclick=Xi}function qi(e,t){ki(e.nodeValue,t)}function Ji(e,t){Ui||(Ui=!0,s(&quot;Did not expect server HTML to contain a &lt;%s &gt;in &lt;%s &gt;.&quot;,t.nodeName.toLowerCase(),e.nodeName.toLowerCase()))}function Qi(e,t){Ui||(Ui=!0,s(&#039;Did not expect server HTML to contain the text node &quot;%s &quot;in &lt;%s &gt;.&#039;,t.nodeValue,e.nodeName.toLowerCase()))}function Zi(e,t,n){Ui||(Ui=!0,s(&quot;Expected server HTML to contain a matching &lt;%s &gt;in &lt;%s &gt;.&quot;,t,e.nodeName.toLowerCase()))}function el(e,t){&quot;&quot;!==t &amp;&amp;(Ui||(Ui=!0,s(&#039;Expected server HTML to contain a matching text node for &quot;%s &quot;in &lt;%s &gt;.&#039;,t,e.nodeName.toLowerCase())))}Mi=function(e){return(&quot;string &quot;==typeof e?e:&quot;&quot;+e).replace(Gi,&quot;\n &quot;).replace(Yi,&quot;&quot;)},ki=function(e,t){if(!Ui){var n=Mi(t),r=Mi(e);r!==n &amp;&amp;(Ui=!0,s(&#039;Text content did not match. Server: &quot;%s &quot;Client: &quot;%s &quot;&#039;,r,n))}},xi=function(e,t,n){if(!Ui){var r=Mi(n),a=Mi(t);a!==r &amp;&amp;(Ui=!0,s(&quot;Prop `%s` did not match. Server: %s Client: %s &quot;,e,JSON.stringify(a),JSON.stringify(r)))}},_i=function(e){if(!Ui){Ui=!0;var t=[];e.forEach(function(e){t.push(e)}),s(&quot;Extra attributes from the server: %s &quot;,t)}},Li=function(e,t){!1===t?s(&quot;Expected `%s` listener to be a function, instead got `false`.\n\nIf you used to conditionally omit it with %s={condition &amp;&amp;value}, pass %s={condition ? value : undefined} instead.&quot;,e,e,e):s(&quot;Expected `%s` listener to be a function, instead got a value of `%s` type.&quot;,e,typeof t)},Di=function(e,t){var n=e.namespaceURI===Wi?e.ownerDocument.createElement(e.tagName):e.ownerDocument.createElementNS(e.namespaceURI,e.tagName);return n.innerHTML=t,n.innerHTML};var tl,nl,rl=[&quot;address &quot;,&quot;applet &quot;,&quot;area &quot;,&quot;article &quot;,&quot;aside &quot;,&quot;base &quot;,&quot;basefont &quot;,&quot;bgsound &quot;,&quot;blockquote &quot;,&quot;body &quot;,&quot;br &quot;,&quot;button &quot;,&quot;caption &quot;,&quot;center &quot;,&quot;col &quot;,&quot;colgroup &quot;,&quot;dd &quot;,&quot;details &quot;,&quot;dir &quot;,&quot;div &quot;,&quot;dl &quot;,&quot;dt &quot;,&quot;embed &quot;,&quot;fieldset &quot;,&quot;figcaption &quot;,&quot;figure &quot;,&quot;footer &quot;,&quot;form &quot;,&quot;frame &quot;,&quot;frameset &quot;,&quot;h1 &quot;,&quot;h2 &quot;,&quot;h3 &quot;,&quot;h4 &quot;,&quot;h5 &quot;,&quot;h6 &quot;,&quot;head &quot;,&quot;header &quot;,&quot;hgroup &quot;,&quot;hr &quot;,&quot;html &quot;,&quot;iframe &quot;,&quot;img &quot;,&quot;input &quot;,&quot;isindex &quot;,&quot;li &quot;,&quot;link &quot;,&quot;listing &quot;,&quot;main &quot;,&quot;marquee &quot;,&quot;menu &quot;,&quot;menuitem &quot;,&quot;meta &quot;,&quot;nav &quot;,&quot;noembed &quot;,&quot;noframes &quot;,&quot;noscript &quot;,&quot;object &quot;,&quot;ol &quot;,&quot;p &quot;,&quot;param &quot;,&quot;plaintext &quot;,&quot;pre &quot;,&quot;script &quot;,&quot;section &quot;,&quot;select &quot;,&quot;source &quot;,&quot;style &quot;,&quot;summary &quot;,&quot;table &quot;,&quot;tbody &quot;,&quot;td &quot;,&quot;template &quot;,&quot;textarea &quot;,&quot;tfoot &quot;,&quot;th &quot;,&quot;thead &quot;,&quot;title &quot;,&quot;tr &quot;,&quot;track &quot;,&quot;ul &quot;,&quot;wbr &quot;,&quot;xmp &quot;],al=[&quot;applet &quot;,&quot;caption &quot;,&quot;html &quot;,&quot;table &quot;,&quot;td &quot;,&quot;th &quot;,&quot;marquee &quot;,&quot;object &quot;,&quot;template &quot;,&quot;foreignObject &quot;,&quot;desc &quot;,&quot;title &quot;],ol=al.concat([&quot;button &quot;]),il=[&quot;dd &quot;,&quot;dt &quot;,&quot;li &quot;,&quot;option &quot;,&quot;optgroup &quot;,&quot;p &quot;,&quot;rp &quot;,&quot;rt &quot;],ll={current:null,formTag:null,aTagInScope:null,buttonTagInScope:null,nobrTagInScope:null,pTagInButtonScope:null,listItemTagAutoclosing:null,dlItemTagAutoclosing:null};nl=function(e,t){var r=n({},e||ll),a={tag:t};return-1!==al.indexOf(t)&amp;&amp;(r.aTagInScope=null,r.buttonTagInScope=null,r.nobrTagInScope=null),-1!==ol.indexOf(t)&amp;&amp;(r.pTagInButtonScope=null),-1!==rl.indexOf(t)&amp;&amp;&quot;address &quot;!==t &amp;&amp;&quot;div &quot;!==t &amp;&amp;&quot;p &quot;!==t &amp;&amp;(r.listItemTagAutoclosing=null,r.dlItemTagAutoclosing=null),r.current=a,&quot;form &quot;===t &amp;&amp;(r.formTag=a),&quot;a &quot;===t &amp;&amp;(r.aTagInScope=a),&quot;button &quot;===t &amp;&amp;(r.buttonTagInScope=a),&quot;nobr &quot;===t &amp;&amp;(r.nobrTagInScope=a),&quot;p &quot;===t &amp;&amp;(r.pTagInButtonScope=a),&quot;li &quot;===t &amp;&amp;(r.listItemTagAutoclosing=a),&quot;dd &quot;!==t &amp;&amp;&quot;dt &quot;!==t||(r.dlItemTagAutoclosing=a),r};var sl={};tl=function(e,t,n){var r=(n=n||ll).current,a=r &amp;&amp;r.tag;null!=t &amp;&amp;(null!=e &amp;&amp;s(&quot;validateDOMNesting: when childText is passed, childTag should be null &quot;),e=&quot;#text &quot;);var o=function(e,t){switch(t){case &quot;select &quot;:return &quot;option &quot;===e||&quot;optgroup &quot;===e||&quot;#text &quot;===e;case &quot;optgroup &quot;:return &quot;option &quot;===e||&quot;#text &quot;===e;case &quot;option &quot;:return &quot;#text &quot;===e;case &quot;tr &quot;:return &quot;th &quot;===e||&quot;td &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;tbody &quot;:case &quot;thead &quot;:case &quot;tfoot &quot;:return &quot;tr &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;colgroup &quot;:return &quot;col &quot;===e||&quot;template &quot;===e;case &quot;table &quot;:return &quot;caption &quot;===e||&quot;colgroup &quot;===e||&quot;tbody &quot;===e||&quot;tfoot &quot;===e||&quot;thead &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;head &quot;:return &quot;base &quot;===e||&quot;basefont &quot;===e||&quot;bgsound &quot;===e||&quot;link &quot;===e||&quot;meta &quot;===e||&quot;title &quot;===e||&quot;noscript &quot;===e||&quot;noframes &quot;===e||&quot;style &quot;===e||&quot;script &quot;===e||&quot;template &quot;===e;case &quot;html &quot;:return &quot;head &quot;===e||&quot;body &quot;===e||&quot;frameset &quot;===e;case &quot;frameset &quot;:return &quot;frame &quot;===e;case &quot;#document &quot;:return &quot;html &quot;===e}switch(e){case &quot;h1 &quot;:case &quot;h2 &quot;:case &quot;h3 &quot;:case &quot;h4 &quot;:case &quot;h5 &quot;:case &quot;h6 &quot;:return &quot;h1 &quot;!==t &amp;&amp;&quot;h2 &quot;!==t &amp;&amp;&quot;h3 &quot;!==t &amp;&amp;&quot;h4 &quot;!==t &amp;&amp;&quot;h5 &quot;!==t &amp;&amp;&quot;h6 &quot;!==t;case &quot;rp &quot;:case &quot;rt &quot;:return-1===il.indexOf(t);case &quot;body &quot;:case &quot;caption &quot;:case &quot;col &quot;:case &quot;colgroup &quot;:case &quot;frameset &quot;:case &quot;frame &quot;:case &quot;head &quot;:case &quot;html &quot;:case &quot;tbody &quot;:case &quot;td &quot;:case &quot;tfoot &quot;:case &quot;th &quot;:case &quot;thead &quot;:case &quot;tr &quot;:return null==t}return!0}(e,a)?null:r,i=o?null:function(e,t){switch(e){case &quot;address &quot;:case &quot;article &quot;:case &quot;aside &quot;:case &quot;blockquote &quot;:case &quot;center &quot;:case &quot;details &quot;:case &quot;dialog &quot;:case &quot;dir &quot;:case &quot;div &quot;:case &quot;dl &quot;:case &quot;fieldset &quot;:case &quot;figcaption &quot;:case &quot;figure &quot;:case &quot;footer &quot;:case &quot;header &quot;:case &quot;hgroup &quot;:case &quot;main &quot;:case &quot;menu &quot;:case &quot;nav &quot;:case &quot;ol &quot;:case &quot;p &quot;:case &quot;section &quot;:case &quot;summary &quot;:case &quot;ul &quot;:case &quot;pre &quot;:case &quot;listing &quot;:case &quot;table &quot;:case &quot;hr &quot;:case &quot;xmp &quot;:case &quot;h1 &quot;:case &quot;h2 &quot;:case &quot;h3 &quot;:case &quot;h4 &quot;:case &quot;h5 &quot;:case &quot;h6 &quot;:return t.pTagInButtonScope;case &quot;form &quot;:return t.formTag||t.pTagInButtonScope;case &quot;li &quot;:return t.listItemTagAutoclosing;case &quot;dd &quot;:case &quot;dt &quot;:return t.dlItemTagAutoclosing;case &quot;button &quot;:return t.buttonTagInScope;case &quot;a &quot;:return t.aTagInScope;case &quot;nobr &quot;:return t.nobrTagInScope}return null}(e,n),l=o||i;if(l){var c=l.tag,u=!!o+&quot;|&quot;+e+&quot;|&quot;+c;if(!sl[u]){sl[u]=!0;var f=e,d=&quot;&quot;;if(&quot;#text &quot;===e?/\S/.test(t)?f=&quot;Text nodes &quot;:(f=&quot;Whitespace text nodes &quot;,d=&quot;Make sure you don &#039;t have any extra whitespace between tags on each line of your source code.&quot;):f=&quot;&lt;&quot;+e+&quot;&gt;&quot;,o){var p=&quot;&quot;;&quot;table &quot;===c &amp;&amp;&quot;tr &quot;===e &amp;&amp;(p+=&quot;Add a &lt;tbody &gt;, &lt;thead &gt;or &lt;tfoot &gt;to your code to match the DOM tree generated by the browser.&quot;),s(&quot;validateDOMNesting(...): %s cannot appear as a child of &lt;%s &gt;.%s%s &quot;,f,c,d,p)}else s(&quot;validateDOMNesting(...): %s cannot appear as a descendant of &lt;%s &gt;.&quot;,f,c)}}};var cl=&quot;$?&quot;,ul=&quot;$!&quot;,fl=null,dl=null;function pl(e,t){switch(e){case &quot;button &quot;:case &quot;input &quot;:case &quot;select &quot;:case &quot;textarea &quot;:return!!t.autoFocus}return!1}function ml(e,t){return &quot;textarea &quot;===e||&quot;option &quot;===e||&quot;noscript &quot;===e||&quot;string &quot;==typeof t.children||&quot;number &quot;==typeof t.children||&quot;object &quot;==typeof t.dangerouslySetInnerHTML &amp;&amp;null!==t.dangerouslySetInnerHTML &amp;&amp;null!=t.dangerouslySetInnerHTML.__html}var hl=&quot;function &quot;==typeof setTimeout?setTimeout:void 0,gl=&quot;function &quot;==typeof clearTimeout?clearTimeout:void 0;function vl(e){Ht(e,&quot;&quot;)}function yl(e,t){e.removeChild(t)}function El(e){var t=(e=e).style;&quot;function &quot;==typeof t.setProperty?t.setProperty(&quot;display &quot;,&quot;none &quot;,&quot;important &quot;):t.display=&quot;none &quot;}function bl(e,t){e=e;var n=t.style,r=null!=n &amp;&amp;n.hasOwnProperty(&quot;display &quot;)?n.display:null;e.style.display=Gt(&quot;display &quot;,r)}function Tl(e){if(1===e.nodeType)e.textContent=&quot;&quot;;else if(9===e.nodeType){var t=e.body;null!=t &amp;&amp;(t.textContent=&quot;&quot;)}}function Nl(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Rl(e){return Nl(e.nextSibling)}function Sl(e){return Nl(e.firstChild)}function wl(e){for(var t=e.previousSibling,n=0;t;){if(8===t.nodeType){var r=t.data;if(&quot;$ &quot;===r||r===ul||r===cl){if(0===n)return t;n--}else &quot;/$ &quot;===r &amp;&amp;n++}t=t.previousSibling}return null}var Ol=0;function Cl(e){var t=&quot;r:&quot;+(Ol++).toString(36);return{toString:function(){return e(),t},valueOf:function(){return e(),t}}}var Al=Math.random().toString(36).slice(2),Il=&quot;__reactFiber$ &quot;+Al,kl=&quot;__reactProps$ &quot;+Al,xl=&quot;__reactContainer$ &quot;+Al,_l=&quot;__reactEvents$ &quot;+Al;function Ll(e,t){t[Il]=e}function Pl(e){e[xl]=null}function Ml(e){return!!e[xl]}function Dl(e){var t=e[Il];if(t)return t;for(var n=e.parentNode;n;){if(t=n[xl]||n[Il]){var r=t.alternate;if(null!==t.child||null!==r &amp;&amp;null!==r.child)for(var a=wl(e);null!==a;){var o=a[Il];if(o)return o;a=wl(a)}return t}n=(e=n).parentNode}return null}function Ul(e){var t=e[Il]||e[xl];return!t||5!==t.tag &amp;&amp;6!==t.tag &amp;&amp;t.tag!==h &amp;&amp;3!==t.tag?null:t}function jl(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(&quot;getNodeFromInstance: Invalid argument.&quot;)}function Fl(e){return e[kl]||null}function zl(e,t){e[kl]=t}function Hl(e){var t=e[_l];return void 0===t &amp;&amp;(t=e[_l]=new Set),t}var Bl={},Vl=o.ReactDebugCurrentFrame;function Wl(e){if(e){var t=e._owner,n=ze(e.type,e._source,t?t.type:null);Vl.setExtraStackFrame(n)}else Vl.setExtraStackFrame(null)}function Gl(e,t,n,r,a){var o=Function.call.bind(Object.prototype.hasOwnProperty);for(var i in e)if(o(e,i)){var l=void 0;try{if(&quot;function &quot;!=typeof e[i]){var c=Error((r||&quot;React class &quot;)+&quot;: &quot;+n+&quot;type `&quot;+i+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+typeof e[i]+&quot;`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.&quot;);throw c.name=&quot;Invariant Violation &quot;,c}l=e[i](t,i,r,n,null,&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;)}catch(e){l=e}!l||l instanceof Error||(Wl(a),s(&quot;%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).&quot;,r||&quot;React class &quot;,n,i,typeof l),Wl(null)),l instanceof Error &amp;&amp;!(l.message in Bl)&amp;&amp;(Bl[l.message]=!0,Wl(a),s(&quot;Failed %s type: %s &quot;,n,l.message),Wl(null))}}var Yl,$l=[];Yl=[];var Xl,Kl=-1;function ql(e){return{current:e}}function Jl(e,t){Kl &lt;0?s(&quot;Unexpected pop.&quot;):(t!==Yl[Kl]&amp;&amp;s(&quot;Unexpected Fiber popped.&quot;),e.current=$l[Kl],$l[Kl]=null,Yl[Kl]=null,Kl--)}function Ql(e,t,n){Kl++,$l[Kl]=e.current,Yl[Kl]=n,e.current=t}Xl={};var Zl={};Object.freeze(Zl);var es=ql(Zl),ts=ql(!1),ns=Zl;function rs(e,t,n){return n &amp;&amp;ls(t)?ns:es.current}function as(e,t,n){var r=e.stateNode;r.__reactInternalMemoizedUnmaskedChildContext=t,r.__reactInternalMemoizedMaskedChildContext=n}function os(e,t){var n=e.type,r=n.contextTypes;if(!r)return Zl;var a=e.stateNode;if(a &amp;&amp;a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var o={};for(var i in r)o[i]=t[i];return Gl(r,o,&quot;context &quot;,We(n)||&quot;Unknown &quot;),a &amp;&amp;as(e,t,o),o}function is(){return ts.current}function ls(e){return null!=e.childContextTypes}function ss(e){Jl(ts,e),Jl(es,e)}function cs(e){Jl(ts,e),Jl(es,e)}function us(e,t,n){if(es.current!==Zl)throw Error(&quot;Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.&quot;);Ql(es,t,e),Ql(ts,n,e)}function fs(e,t,r){var a=e.stateNode,o=t.childContextTypes;if(&quot;function &quot;!=typeof a.getChildContext){var i=We(t)||&quot;Unknown &quot;;return Xl[i]||(Xl[i]=!0,s(&quot;%s.childContextTypes is specified but there is no getChildContext() method on the instance. You can either define getChildContext() on %s or remove childContextTypes from it.&quot;,i,i)),r}var l=a.getChildContext();for(var c in l)if(!(c in o))throw Error((We(t)||&quot;Unknown &quot;)+&#039;.getChildContext(): key &quot;&#039;+c+&#039;&quot;is not defined in childContextTypes.&#039;);return Gl(o,l,&quot;child context &quot;,We(t)||&quot;Unknown &quot;),n({},r,l)}function ds(e){var t=e.stateNode;return ns=es.current,Ql(es,t &amp;&amp;t.__reactInternalMemoizedMergedChildContext||Zl,e),Ql(ts,ts.current,e),!0}function ps(e,t,n){var r=e.stateNode;if(!r)throw Error(&quot;Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.&quot;);if(n){var a=fs(e,t,ns);r.__reactInternalMemoizedMergedChildContext=a,Jl(ts,e),Jl(es,e),Ql(es,a,e),Ql(ts,n,e)}else Jl(ts,e),Ql(ts,n,e)}var ms=null,hs=null,gs=!1,vs=&quot;undefined &quot;!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__;function ys(e,t){if(hs &amp;&amp;&quot;function &quot;==typeof hs.onCommitFiberRoot)try{hs.onCommitFiberRoot(ms,e,t,(e.current.flags &amp;ar)===ar)}catch(e){gs||(gs=!0,s(&quot;React instrumentation encountered an error: %s &quot;,e))}}var Es=r.unstable_runWithPriority,bs=r.unstable_scheduleCallback,Ts=r.unstable_cancelCallback,Ns=r.unstable_shouldYield,Rs=r.unstable_requestPaint,Ss=r.unstable_now,ws=r.unstable_getCurrentPriorityLevel,Os=r.unstable_ImmediatePriority,Cs=r.unstable_UserBlockingPriority,As=r.unstable_NormalPriority,Is=r.unstable_LowPriority,ks=r.unstable_IdlePriority;if(null==a.__interactionsRef||null==a.__interactionsRef.current)throw Error(&quot;It is not supported to run the profiling version of a renderer (for example, `react-dom/profiling`) without also replacing the `scheduler/tracing` module with `scheduler/tracing-profiling`. Your bundler might have a setting for aliasing both modules. Learn more at https://reactjs.org/link/profiling &quot;);var xs={},_s=99,Ls=98,Ps=97,Ms=Ns,Ds=void 0!==Rs?Rs:function(){},Us=null,js=null,Fs=!1,zs=Ss(),Hs=zs &lt;1e4?Ss:function(){return Ss()-zs};function Bs(){switch(ws()){case Os:return _s;case Cs:return Ls;case As:return Ps;case Is:return 96;case ks:return 95;default:throw Error(&quot;Unknown priority level.&quot;)}}function Vs(e){switch(e){case _s:return Os;case Ls:return Cs;case Ps:return As;case 96:return Is;case 95:return ks;default:throw Error(&quot;Unknown priority level.&quot;)}}function Ws(e,t){var n=Vs(e);return Es(n,t)}function Gs(e,t,n){var r=Vs(e);return bs(r,t,n)}function Ys(e){e!==xs &amp;&amp;Ts(e)}function $s(){if(null!==js){var e=js;js=null,Ts(e)}Xs()}function Xs(){if(!Fs &amp;&amp;null!==Us){Fs=!0;var e=0;try{var t=Us;Ws(_s,function(){for(;e &lt;t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}}),Us=null}catch(t){throw null!==Us &amp;&amp;(Us=Us.slice(e+1)),bs(Os,$s),t}finally{Fs=!1}}}var Ks=&quot;17.0.2 &quot;,qs=o.ReactCurrentBatchConfig,Js={recordUnsafeLifecycleWarnings:function(e,t){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(e,t){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},Qs=function(e){var t=[];return e.forEach(function(e){t.push(e)}),t.sort().join(&quot;, &quot;)},Zs=[],ec=[],tc=[],nc=[],rc=[],ac=[],oc=new Set;Js.recordUnsafeLifecycleWarnings=function(e,t){oc.has(e.type)||(&quot;function &quot;==typeof t.componentWillMount &amp;&amp;!0!==t.componentWillMount.__suppressDeprecationWarning &amp;&amp;Zs.push(e),1 &amp;e.mode &amp;&amp;&quot;function &quot;==typeof t.UNSAFE_componentWillMount &amp;&amp;ec.push(e),&quot;function &quot;==typeof t.componentWillReceiveProps &amp;&amp;!0!==t.componentWillReceiveProps.__suppressDeprecationWarning &amp;&amp;tc.push(e),1 &amp;e.mode &amp;&amp;&quot;function &quot;==typeof t.UNSAFE_componentWillReceiveProps &amp;&amp;nc.push(e),&quot;function &quot;==typeof t.componentWillUpdate &amp;&amp;!0!==t.componentWillUpdate.__suppressDeprecationWarning &amp;&amp;rc.push(e),1 &amp;e.mode &amp;&amp;&quot;function &quot;==typeof t.UNSAFE_componentWillUpdate &amp;&amp;ac.push(e))},Js.flushPendingUnsafeLifecycleWarnings=function(){var e=new Set;Zs.length &gt;0 &amp;&amp;(Zs.forEach(function(t){e.add(We(t.type)||&quot;Component &quot;),oc.add(t.type)}),Zs=[]);var t=new Set;ec.length &gt;0 &amp;&amp;(ec.forEach(function(e){t.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),ec=[]);var n=new Set;tc.length &gt;0 &amp;&amp;(tc.forEach(function(e){n.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),tc=[]);var r=new Set;nc.length &gt;0 &amp;&amp;(nc.forEach(function(e){r.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),nc=[]);var a=new Set;rc.length &gt;0 &amp;&amp;(rc.forEach(function(e){a.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),rc=[]);var o=new Set;ac.length &gt;0 &amp;&amp;(ac.forEach(function(e){o.add(We(e.type)||&quot;Component &quot;),oc.add(e.type)}),ac=[]),t.size &gt;0 &amp;&amp;s(&quot;Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n\nPlease update the following components: %s &quot;,Qs(t)),r.size &gt;0 &amp;&amp;s(&quot;Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you &#039;re updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state\n\nPlease update the following components: %s &quot;,Qs(r)),o.size &gt;0 &amp;&amp;s(&quot;Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n\nPlease update the following components: %s &quot;,Qs(o)),e.size &gt;0 &amp;&amp;i(&quot;componentWillMount has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s &quot;,Qs(e)),n.size &gt;0 &amp;&amp;i(&quot;componentWillReceiveProps has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you &#039;re updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state\n* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s &quot;,Qs(n)),a.size &gt;0 &amp;&amp;i(&quot;componentWillUpdate has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.\n\nPlease update the following components: %s &quot;,Qs(a))};var ic=new Map,lc=new Set;function sc(e,t){if(e &amp;&amp;e.defaultProps){var r=n({},t),a=e.defaultProps;for(var o in a)void 0===r[o]&amp;&amp;(r[o]=a[o]);return r}return t}Js.recordLegacyContextWarning=function(e,t){var n=function(e){for(var t=null,n=e;null!==n;)1 &amp;n.mode &amp;&amp;(t=n),n=n.return;return t}(e);if(null!==n){if(!lc.has(e.type)){var r=ic.get(n);(null!=e.type.contextTypes||null!=e.type.childContextTypes||null!==t &amp;&amp;&quot;function &quot;==typeof t.getChildContext)&amp;&amp;(void 0===r &amp;&amp;ic.set(n,r=[]),r.push(e))}}else s(&quot;Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.&quot;)},Js.flushLegacyContextWarning=function(){ic.forEach(function(e,t){if(0!==e.length){var n=e[0],r=new Set;e.forEach(function(e){r.add(We(e.type)||&quot;Component &quot;),lc.add(e.type)});var a=Qs(r);try{Je(n),s(&quot;Legacy context API has been detected within a strict-mode tree.\n\nThe old API will be supported in all 16.x releases, but applications using it should migrate to the new version.\n\nPlease update the following components: %s\n\nLearn more about this warning here: https://reactjs.org/link/legacy-context &quot;,a)}finally{qe()}}})},Js.discardPendingWarnings=function(){Zs=[],ec=[],tc=[],nc=[],rc=[],ac=[],ic=new Map};var cc,uc=1073741823,fc=ql(null);cc={};var dc=null,pc=null,mc=null,hc=!1;function gc(){dc=null,pc=null,mc=null,hc=!1}function vc(){hc=!0}function yc(){hc=!1}function Ec(e,t){var n=e.type._context;Ql(fc,n._currentValue,e),n._currentValue=t,null!=n._currentRenderer &amp;&amp;n._currentRenderer!==cc &amp;&amp;s(&quot;Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported.&quot;),n._currentRenderer=cc}function bc(e){var t=fc.current;Jl(fc,e),e.type._context._currentValue=t}function Tc(e,t){for(var n=e;null!==n;){var r=n.alternate;if(Ta(n.childLanes,t)){if(null===r||Ta(r.childLanes,t))break;r.childLanes=Na(r.childLanes,t)}else n.childLanes=Na(n.childLanes,t),null!==r &amp;&amp;(r.childLanes=Na(r.childLanes,t));n=n.return}}function Nc(e,t){dc=e,pc=null,mc=null;var n=e.dependencies;null!==n &amp;&amp;null!==n.firstContext &amp;&amp;(ba(n.lanes,t)&amp;&amp;hp(),n.firstContext=null)}function Rc(e,t){if(hc &amp;&amp;s(&quot;Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().&quot;),mc===e);else if(!1===t||0===t);else{var n;&quot;number &quot;!=typeof t||t===uc?(mc=e,n=uc):n=t;var r={context:e,observedBits:n,next:null};if(null===pc){if(null===dc)throw Error(&quot;Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().&quot;);pc=r,dc.dependencies={lanes:0,firstContext:r,responders:null}}else pc=pc.next=r}return e._currentValue}var Sc,wc,Oc=!1;function Cc(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function Ac(e,t){var n=e.updateQueue;t.updateQueue===n &amp;&amp;(t.updateQueue={baseState:n.baseState,firstBaseUpdate:n.firstBaseUpdate,lastBaseUpdate:n.lastBaseUpdate,shared:n.shared,effects:n.effects})}function Ic(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function kc(e,t){var n=e.updateQueue;if(null!==n){var r=n.shared,a=r.pending;null===a?t.next=t:(t.next=a.next,a.next=t),r.pending=t,wc!==r||Sc||(s(&quot;An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.&quot;),Sc=!0)}}function xc(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r){var a=r.updateQueue;if(n===a){var o=null,i=null,l=n.firstBaseUpdate;if(null!==l){var s=l;do{var c={eventTime:s.eventTime,lane:s.lane,tag:s.tag,payload:s.payload,callback:s.callback,next:null};null===i?o=i=c:(i.next=c,i=c),s=s.next}while(null!==s);null===i?o=i=t:(i.next=t,i=t)}else o=i=t;return void(e.updateQueue=n={baseState:a.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:a.shared,effects:a.effects})}}var u=n.lastBaseUpdate;null===u?n.firstBaseUpdate=t:u.next=t,n.lastBaseUpdate=t}function _c(e,t,r,a,o,i){switch(r.tag){case 1:var l=r.payload;if(&quot;function &quot;==typeof l){vc();var s=l.call(i,a,o);if(1 &amp;e.mode){ke();try{l.call(i,a,o)}finally{xe()}}return yc(),s}return l;case 3:e.flags=-4097 &amp;e.flags|ar;case 0:var c,u=r.payload;if(&quot;function &quot;==typeof u){if(vc(),c=u.call(i,a,o),1 &amp;e.mode){ke();try{u.call(i,a,o)}finally{xe()}}yc()}else c=u;return null==c?a:n({},a,c);case 2:return Oc=!0,a}return a}function Lc(e,t,n,r){var a=e.updateQueue;Oc=!1,wc=a.shared;var o=a.firstBaseUpdate,i=a.lastBaseUpdate,l=a.shared.pending;if(null!==l){a.shared.pending=null;var s=l,c=s.next;s.next=null,null===i?o=c:i.next=c,i=s;var u=e.alternate;if(null!==u){var f=u.updateQueue,d=f.lastBaseUpdate;d!==i &amp;&amp;(null===d?f.firstBaseUpdate=c:d.next=c,f.lastBaseUpdate=s)}}if(null!==o){for(var p=a.baseState,m=0,h=null,g=null,v=null,y=o;;){var E=y.lane,b=y.eventTime;if(Ta(r,E)){if(null!==v &amp;&amp;(v=v.next={eventTime:b,lane:0,tag:y.tag,payload:y.payload,callback:y.callback,next:null}),p=_c(e,0,y,p,t,n),null!==y.callback){e.flags|=32;var T=a.effects;null===T?a.effects=[y]:T.push(y)}}else{var N={eventTime:b,lane:E,tag:y.tag,payload:y.payload,callback:y.callback,next:null};null===v?(g=v=N,h=p):v=v.next=N,m=Na(m,E)}if(null===(y=y.next)){if(null===(l=a.shared.pending))break;var R=l,S=R.next;R.next=null,y=S,a.lastBaseUpdate=R,a.shared.pending=null}}null===v &amp;&amp;(h=p),a.baseState=h,a.firstBaseUpdate=g,a.lastBaseUpdate=v,ih(m),e.lanes=m,e.memoizedState=p}wc=null}function Pc(e,t){if(&quot;function &quot;!=typeof e)throw Error(&quot;Invalid argument passed as callback. Expected a function. Instead received: &quot;+e);e.call(t)}function Mc(){Oc=!1}function Dc(){return Oc}function Uc(e,t,n){var r=t.effects;if(t.effects=null,null!==r)for(var a=0;a &lt;r.length;a++){var o=r[a],i=o.callback;null!==i &amp;&amp;(o.callback=null,Pc(i,n))}}Sc=!1,wc=null;var jc,Fc,zc,Hc,Bc,Vc,Wc,Gc,Yc,$c,Xc={},Kc=Array.isArray,qc=(new e.Component).refs;jc=new Set,Fc=new Set,zc=new Set,Hc=new Set,Gc=new Set,Bc=new Set,Yc=new Set,$c=new Set;var Jc=new Set;function Qc(e,t,r,a){var o=e.memoizedState;if(1 &amp;e.mode){ke();try{r(a,o)}finally{xe()}}var i=r(a,o);Vc(t,i);var l=null==i?o:n({},o,i);e.memoizedState=l,0===e.lanes &amp;&amp;(e.updateQueue.baseState=l)}Wc=function(e,t){if(null!==e &amp;&amp;&quot;function &quot;!=typeof e){var n=t+&quot;_ &quot;+e;Jc.has(n)||(Jc.add(n),s(&quot;%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.&quot;,t,e))}},Vc=function(e,t){if(void 0===t){var n=We(e)||&quot;Component &quot;;Bc.has(n)||(Bc.add(n),s(&quot;%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.&quot;,n))}},Object.defineProperty(Xc,&quot;_processChildContext &quot;,{enumerable:!1,value:function(){throw Error(&quot;_processChildContext is not available in React 16+. This likely means you have multiple copies of React and are attempting to nest a React 15 tree inside a React 16 tree using unstable_renderSubtreeIntoContainer, which isn &#039;t supported. Try to make sure you have only one copy of React (and ideally, switch to ReactDOM.createPortal).&quot;)}}),Object.freeze(Xc);var Zc,eu,tu,nu,ru,au,ou={isMounted:function(e){var t=fr.current;if(null!==t &amp;&amp;1===t.tag){var n=t.stateNode;n._warnedAboutRefsInRender||s(&quot;%s is accessing isMounted inside its render() function. render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.&quot;,We(t.type)||&quot;A component &quot;),n._warnedAboutRefsInRender=!0}var r=Zn(e);return!!r &amp;&amp;dr(r)===r},enqueueSetState:function(e,t,n){var r=Zn(e),a=Hm(),o=Bm(r),i=Ic(a,o);i.payload=t,null!=n &amp;&amp;(Wc(n,&quot;setState &quot;),i.callback=n),kc(r,i),Vm(r,o,a)},enqueueReplaceState:function(e,t,n){var r=Zn(e),a=Hm(),o=Bm(r),i=Ic(a,o);i.tag=1,i.payload=t,null!=n &amp;&amp;(Wc(n,&quot;replaceState &quot;),i.callback=n),kc(r,i),Vm(r,o,a)},enqueueForceUpdate:function(e,t){var n=Zn(e),r=Hm(),a=Bm(n),o=Ic(r,a);o.tag=2,null!=t &amp;&amp;(Wc(t,&quot;forceUpdate &quot;),o.callback=t),kc(n,o),Vm(n,a,r)}};function iu(e,t,n,r,a,o,i){var l=e.stateNode;if(&quot;function &quot;==typeof l.shouldComponentUpdate){if(1 &amp;e.mode){ke();try{l.shouldComponentUpdate(r,o,i)}finally{xe()}}var c=l.shouldComponentUpdate(r,o,i);return void 0===c &amp;&amp;s(&quot;%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.&quot;,We(t)||&quot;Component &quot;),c}return!(t.prototype &amp;&amp;t.prototype.isPureReactComponent &amp;&amp;Xo(n,r)&amp;&amp;Xo(a,o))}function lu(e,t){t.updater=ou,e.stateNode=t,t._reactInternals=e,t._reactInternalInstance=Xc}function su(e,t,n){var r,a=!1,o=Zl,i=Zl,l=t.contextType;if(!(&quot;contextType &quot;in t)||null===l||void 0!==l &amp;&amp;l.$$typeof===oe &amp;&amp;void 0===l._context||$c.has(t)||($c.add(t),r=void 0===l?&quot;However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.&quot;:&quot;object &quot;!=typeof l?&quot;However, it is set to a &quot;+typeof l+&quot;.&quot;:l.$$typeof===ae?&quot;Did you accidentally pass the Context.Provider instead?&quot;:void 0!==l._context?&quot;Did you accidentally pass the Context.Consumer instead?&quot;:&quot;However, it is set to an object with keys {&quot;+Object.keys(l).join(&quot;, &quot;)+&quot;}.&quot;,s(&quot;%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s &quot;,We(t)||&quot;Component &quot;,r)),&quot;object &quot;==typeof l &amp;&amp;null!==l?i=Rc(l):(o=rs(0,t,!0),i=(a=null!=t.contextTypes)?os(e,o):Zl),1 &amp;e.mode){ke();try{new t(n,i)}finally{xe()}}var c=new t(n,i),u=e.memoizedState=null!=c.state?c.state:null;if(lu(e,c),&quot;function &quot;==typeof t.getDerivedStateFromProps &amp;&amp;null===u){var f=We(t)||&quot;Component &quot;;Fc.has(f)||(Fc.add(f),s(&quot;`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.&quot;,f,null===c.state?&quot;null &quot;:&quot;undefined &quot;,f))}if(&quot;function &quot;==typeof t.getDerivedStateFromProps||&quot;function &quot;==typeof c.getSnapshotBeforeUpdate){var d=null,p=null,m=null;if(&quot;function &quot;==typeof c.componentWillMount &amp;&amp;!0!==c.componentWillMount.__suppressDeprecationWarning?d=&quot;componentWillMount &quot;:&quot;function &quot;==typeof c.UNSAFE_componentWillMount &amp;&amp;(d=&quot;UNSAFE_componentWillMount &quot;),&quot;function &quot;==typeof c.componentWillReceiveProps &amp;&amp;!0!==c.componentWillReceiveProps.__suppressDeprecationWarning?p=&quot;componentWillReceiveProps &quot;:&quot;function &quot;==typeof c.UNSAFE_componentWillReceiveProps &amp;&amp;(p=&quot;UNSAFE_componentWillReceiveProps &quot;),&quot;function &quot;==typeof c.componentWillUpdate &amp;&amp;!0!==c.componentWillUpdate.__suppressDeprecationWarning?m=&quot;componentWillUpdate &quot;:&quot;function &quot;==typeof c.UNSAFE_componentWillUpdate &amp;&amp;(m=&quot;UNSAFE_componentWillUpdate &quot;),null!==d||null!==p||null!==m){var h=We(t)||&quot;Component &quot;,g=&quot;function &quot;==typeof t.getDerivedStateFromProps?&quot;getDerivedStateFromProps()&quot;:&quot;getSnapshotBeforeUpdate()&quot;;Hc.has(h)||(Hc.add(h),s(&quot;Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n%s uses %s but also contains the following legacy lifecycles:%s%s%s\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://reactjs.org/link/unsafe-component-lifecycles &quot;,h,g,null!==d?&quot;\n  &quot;+d:&quot;&quot;,null!==p?&quot;\n  &quot;+p:&quot;&quot;,null!==m?&quot;\n  &quot;+m:&quot;&quot;))}}return a &amp;&amp;as(e,o,i),c}function cu(e,t,n,r){var a=t.state;if(&quot;function &quot;==typeof t.componentWillReceiveProps &amp;&amp;t.componentWillReceiveProps(n,r),&quot;function &quot;==typeof t.UNSAFE_componentWillReceiveProps &amp;&amp;t.UNSAFE_componentWillReceiveProps(n,r),t.state!==a){var o=We(e.type)||&quot;Component &quot;;jc.has(o)||(jc.add(o),s(&quot;%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component &#039;s constructor). Use setState instead.&quot;,o)),ou.enqueueReplaceState(t,t.state,null)}}function uu(e,t,n,r){!function(e,t,n){var r=e.stateNode,a=We(t)||&quot;Component &quot;;r.render||s(t.prototype &amp;&amp;&quot;function &quot;==typeof t.prototype.render?&quot;%s(...): No `render` method found on the returned component instance: did you accidentally return an object from the constructor?&quot;:&quot;%s(...): No `render` method found on the returned component instance: you may have forgotten to define `render`.&quot;,a),!r.getInitialState||r.getInitialState.isReactClassApproved||r.state||s(&quot;getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?&quot;,a),r.getDefaultProps &amp;&amp;!r.getDefaultProps.isReactClassApproved &amp;&amp;s(&quot;getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.&quot;,a),r.propTypes &amp;&amp;s(&quot;propTypes was defined as an instance property on %s. Use a static property to define propTypes instead.&quot;,a),r.contextType &amp;&amp;s(&quot;contextType was defined as an instance property on %s. Use a static property to define contextType instead.&quot;,a),r.contextTypes &amp;&amp;s(&quot;contextTypes was defined as an instance property on %s. Use a static property to define contextTypes instead.&quot;,a),t.contextType &amp;&amp;t.contextTypes &amp;&amp;!Yc.has(t)&amp;&amp;(Yc.add(t),s(&quot;%s declares both contextTypes and contextType static properties. The legacy contextTypes property will be ignored.&quot;,a)),&quot;function &quot;==typeof r.componentShouldUpdate &amp;&amp;s(&quot;%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.&quot;,a),t.prototype &amp;&amp;t.prototype.isPureReactComponent &amp;&amp;void 0!==r.shouldComponentUpdate &amp;&amp;s(&quot;%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.&quot;,We(t)||&quot;A pure component &quot;),&quot;function &quot;==typeof r.componentDidUnmount &amp;&amp;s(&quot;%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?&quot;,a),&quot;function &quot;==typeof r.componentDidReceiveProps &amp;&amp;s(&quot;%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().&quot;,a),&quot;function &quot;==typeof r.componentWillRecieveProps &amp;&amp;s(&quot;%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?&quot;,a),&quot;function &quot;==typeof r.UNSAFE_componentWillRecieveProps &amp;&amp;s(&quot;%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?&quot;,a),void 0!==r.props &amp;&amp;r.props!==n &amp;&amp;s(&quot;%s(...): When calling super() in `%s`, make sure to pass up the same props that your component &#039;s constructor was passed.&quot;,a,a),r.defaultProps &amp;&amp;s(&quot;Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.&quot;,a,a),&quot;function &quot;!=typeof r.getSnapshotBeforeUpdate||&quot;function &quot;==typeof r.componentDidUpdate||zc.has(t)||(zc.add(t),s(&quot;%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.&quot;,We(t))),&quot;function &quot;==typeof r.getDerivedStateFromProps &amp;&amp;s(&quot;%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.&quot;,a),&quot;function &quot;==typeof r.getDerivedStateFromError &amp;&amp;s(&quot;%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.&quot;,a),&quot;function &quot;==typeof t.getSnapshotBeforeUpdate &amp;&amp;s(&quot;%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.&quot;,a);var o=r.state;o &amp;&amp;(&quot;object &quot;!=typeof o||Kc(o))&amp;&amp;s(&quot;%s.state: must be set to an object or null &quot;,a),&quot;function &quot;==typeof r.getChildContext &amp;&amp;&quot;object &quot;!=typeof t.childContextTypes &amp;&amp;s(&quot;%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().&quot;,a)}(e,t,n);var a=e.stateNode;a.props=n,a.state=e.memoizedState,a.refs=qc,Cc(e);var o=t.contextType;if(&quot;object &quot;==typeof o &amp;&amp;null!==o)a.context=Rc(o);else{var i=rs(0,t,!0);a.context=os(e,i)}if(a.state===n){var l=We(t)||&quot;Component &quot;;Gc.has(l)||(Gc.add(l),s(&quot;%s: It is not recommended to assign props directly to state because updates to props won &#039;t be reflected in state. In most cases, it is better to use props directly.&quot;,l))}1 &amp;e.mode &amp;&amp;Js.recordLegacyContextWarning(e,a),Js.recordUnsafeLifecycleWarnings(e,a),Lc(e,n,a,r),a.state=e.memoizedState;var c=t.getDerivedStateFromProps;&quot;function &quot;==typeof c &amp;&amp;(Qc(e,t,c,n),a.state=e.memoizedState),&quot;function &quot;==typeof t.getDerivedStateFromProps||&quot;function &quot;==typeof a.getSnapshotBeforeUpdate||&quot;function &quot;!=typeof a.UNSAFE_componentWillMount &amp;&amp;&quot;function &quot;!=typeof a.componentWillMount||(function(e,t){var n=t.state;&quot;function &quot;==typeof t.componentWillMount &amp;&amp;t.componentWillMount(),&quot;function &quot;==typeof t.UNSAFE_componentWillMount &amp;&amp;t.UNSAFE_componentWillMount(),n!==t.state &amp;&amp;(s(&quot;%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component &#039;s constructor). Use setState instead.&quot;,We(e.type)||&quot;Component &quot;),ou.enqueueReplaceState(t,t.state,null))}(e,a),Lc(e,n,a,r),a.state=e.memoizedState),&quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4)}Zc=!1,eu=!1,tu={},nu={},ru={},au=function(e,t){if(null!==e &amp;&amp;&quot;object &quot;==typeof e &amp;&amp;e._store &amp;&amp;!e._store.validated &amp;&amp;null==e.key){if(&quot;object &quot;!=typeof e._store)throw Error(&quot;React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.&quot;);e._store.validated=!0;var n=We(t.type)||&quot;Component &quot;;nu[n]||(nu[n]=!0,s(&#039;Each child in a list should have a unique &quot;key &quot;prop. See https://reactjs.org/link/warning-keys for more information.&#039;))}};var fu=Array.isArray;function du(e,t,n){var r=n.ref;if(null!==r &amp;&amp;&quot;function &quot;!=typeof r &amp;&amp;&quot;object &quot;!=typeof r){if(1 &amp;e.mode &amp;&amp;(!n._owner||!n._self||n._owner.stateNode===n._self)){var a=We(e.type)||&quot;Component &quot;;tu[a]||(s(&#039;A string ref, &quot;%s &quot;, has been found within a strict mode tree. String refs are a source of potential bugs and should be avoided. We recommend using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref &#039;,r),tu[a]=!0)}if(n._owner){var o,i=n._owner;if(i){var l=i;if(1!==l.tag)throw Error(&quot;Function components cannot have string refs. We recommend using useRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref &quot;);o=l.stateNode}if(!o)throw Error(&quot;Missing owner for string ref &quot;+r+&quot;. This error is likely caused by a bug in React. Please file an issue.&quot;);var c=&quot;&quot;+r;if(null!==t &amp;&amp;null!==t.ref &amp;&amp;&quot;function &quot;==typeof t.ref &amp;&amp;t.ref._stringRef===c)return t.ref;var u=function(e){var t=o.refs;t===qc &amp;&amp;(t=o.refs={}),null===e?delete t[c]:t[c]=e};return u._stringRef=c,u}if(&quot;string &quot;!=typeof r)throw Error(&quot;Expected ref to be a function, a string, an object returned by React.createRef(), or null.&quot;);if(!n._owner)throw Error(&quot;Element ref was specified as a string (&quot;+r+&quot;) but no owner was set. This could happen for one of the following reasons:\n1. You may be adding a ref to a function component\n2. You may be adding a ref to a component that was not created inside a component &#039;s render method\n3. You have multiple copies of React loaded\nSee https://reactjs.org/link/refs-must-have-owner for more information.&quot;)}return r}function pu(e,t){if(&quot;textarea &quot;!==e.type)throw Error(&quot;Objects are not valid as a React child (found: &quot;+(&quot;[object Object]&quot;===Object.prototype.toString.call(t)?&quot;object with keys {&quot;+Object.keys(t).join(&quot;, &quot;)+&quot;}&quot;:t)+&quot;). If you meant to render a collection of children, use an array instead.&quot;)}function mu(e){var t=We(e.type)||&quot;Component &quot;;ru[t]||(ru[t]=!0,s(&quot;Functions are not valid as a React child. This may happen if you return a Component instead of &lt;Component /&gt;from render. Or maybe you meant to call this function rather than return it.&quot;))}function hu(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,r){if(!e)return null;for(var a=r;null!==a;)t(n,a),a=a.sibling;return null}function r(e,t){for(var n=new Map,r=t;null!==r;)n.set(null!==r.key?r.key:r.index,r),r=r.sibling;return n}function a(e,t){var n=fg(e,t);return n.index=0,n.sibling=null,n}function o(t,n,r){if(t.index=r,!e)return n;var a=t.alternate;if(null!==a){var o=a.index;return o &lt;n?(t.flags=2,n):o}return t.flags=2,n}function i(t){return e &amp;&amp;null===t.alternate &amp;&amp;(t.flags=2),t}function l(e,t,n,r){if(null===t||6!==t.tag){var o=vg(n,e.mode,r);return o.return=e,o}var i=a(t,n);return i.return=e,i}function c(e,t,n,r){if(null!==t &amp;&amp;(t.elementType===n.type||eg(t,n))){var o=a(t,n.props);return o.ref=du(e,t,n),o.return=e,o._debugSource=n._source,o._debugOwner=n._owner,o}var i=mg(n,e.mode,r);return i.ref=du(e,t,n),i.return=e,i}function u(e,t,n,r){if(null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation){var o=yg(n,e.mode,r);return o.return=e,o}var i=a(t,n.children||[]);return i.return=e,i}function f(e,t,n,r,o){if(null===t||7!==t.tag){var i=hg(n,e.mode,r,o);return i.return=e,i}var l=a(t,n);return l.return=e,l}function d(e,t,n){if(&quot;string &quot;==typeof t||&quot;number &quot;==typeof t){var r=vg(&quot;&quot;+t,e.mode,n);return r.return=e,r}if(&quot;object &quot;==typeof t &amp;&amp;null!==t){switch(t.$$typeof){case Z:var a=mg(t,e.mode,n);return a.ref=du(e,null,t),a.return=e,a;case ee:var o=yg(t,e.mode,n);return o.return=e,o}if(fu(t)||be(t)){var i=hg(t,e.mode,n,null);return i.return=e,i}pu(e,t)}return &quot;function &quot;==typeof t &amp;&amp;mu(e),null}function m(e,t,n,r){var a=null!==t?t.key:null;if(&quot;string &quot;==typeof n||&quot;number &quot;==typeof n)return null!==a?null:l(e,t,&quot;&quot;+n,r);if(&quot;object &quot;==typeof n &amp;&amp;null!==n){switch(n.$$typeof){case Z:return n.key===a?n.type===te?f(e,t,n.props.children,r,a):c(e,t,n,r):null;case ee:return n.key===a?u(e,t,n,r):null}if(fu(n)||be(n))return null!==a?null:f(e,t,n,r,null);pu(e,n)}return &quot;function &quot;==typeof n &amp;&amp;mu(e),null}function h(e,t,n,r,a){if(&quot;string &quot;==typeof r||&quot;number &quot;==typeof r)return l(t,e.get(n)||null,&quot;&quot;+r,a);if(&quot;object &quot;==typeof r &amp;&amp;null!==r){switch(r.$$typeof){case Z:var o=e.get(null===r.key?n:r.key)||null;return r.type===te?f(t,o,r.props.children,a,r.key):c(t,o,r,a);case ee:return u(t,e.get(null===r.key?n:r.key)||null,r,a)}if(fu(r)||be(r))return f(t,e.get(n)||null,r,a,null);pu(t,r)}return &quot;function &quot;==typeof r &amp;&amp;mu(t),null}function g(e,t,n){if(&quot;object &quot;!=typeof e||null===e)return t;switch(e.$$typeof){case Z:case ee:au(e,n);var r=e.key;if(&quot;string &quot;!=typeof r)break;if(null===t){(t=new Set).add(r);break}if(!t.has(r)){t.add(r);break}s(&quot;Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted &#8212;the behavior is unsupported and could change in a future version.&quot;,r)}return t}return function(l,c,u,f){var y=&quot;object &quot;==typeof u &amp;&amp;null!==u &amp;&amp;u.type===te &amp;&amp;null===u.key;y &amp;&amp;(u=u.props.children);var E=&quot;object &quot;==typeof u &amp;&amp;null!==u;if(E)switch(u.$$typeof){case Z:return i(function(e,r,o,i){for(var l=o.key,s=r;null!==s;){if(s.key===l){switch(s.tag){case 7:if(o.type===te){n(e,s.sibling);var c=a(s,o.props.children);return c.return=e,c._debugSource=o._source,c._debugOwner=o._owner,c}break;case T:default:if(s.elementType===o.type||eg(s,o)){n(e,s.sibling);var u=a(s,o.props);return u.ref=du(e,s,o),u.return=e,u._debugSource=o._source,u._debugOwner=o._owner,u}}n(e,s);break}t(e,s),s=s.sibling}if(o.type===te){var f=hg(o.props.children,e.mode,i,o.key);return f.return=e,f}var d=mg(o,e.mode,i);return d.ref=du(e,r,o),d.return=e,d}(l,c,u,f));case ee:return i(function(e,r,o,i){for(var l=o.key,s=r;null!==s;){if(s.key===l){if(4===s.tag &amp;&amp;s.stateNode.containerInfo===o.containerInfo &amp;&amp;s.stateNode.implementation===o.implementation){n(e,s.sibling);var c=a(s,o.children||[]);return c.return=e,c}n(e,s);break}t(e,s),s=s.sibling}var u=yg(o,e.mode,i);return u.return=e,u}(l,c,u,f))}if(&quot;string &quot;==typeof u||&quot;number &quot;==typeof u)return i(function(e,t,r,o){if(null!==t &amp;&amp;6===t.tag){n(e,t.sibling);var i=a(t,r);return i.return=e,i}n(e,t);var l=vg(r,e.mode,o);return l.return=e,l}(l,c,&quot;&quot;+u,f));if(fu(u))return function(a,i,l,s){for(var c=null,u=0;u &lt;l.length;u++)c=g(l[u],c,a);for(var f=null,p=null,v=i,y=0,E=0,b=null;null!==v &amp;&amp;E &lt;l.length;E++){v.index &gt;E?(b=v,v=null):b=v.sibling;var T=m(a,v,l[E],s);if(null===T){null===v &amp;&amp;(v=b);break}e &amp;&amp;v &amp;&amp;null===T.alternate &amp;&amp;t(a,v),y=o(T,y,E),null===p?f=T:p.sibling=T,p=T,v=b}if(E===l.length)return n(a,v),f;if(null===v){for(;E &lt;l.length;E++){var N=d(a,l[E],s);null!==N &amp;&amp;(y=o(N,y,E),null===p?f=N:p.sibling=N,p=N)}return f}for(var R=r(0,v);E &lt;l.length;E++){var S=h(R,a,E,l[E],s);null!==S &amp;&amp;(e &amp;&amp;null!==S.alternate &amp;&amp;R.delete(null===S.key?E:S.key),y=o(S,y,E),null===p?f=S:p.sibling=S,p=S)}return e &amp;&amp;R.forEach(function(e){return t(a,e)}),f}(l,c,u,f);if(be(u))return function(a,i,l,c){var u=be(l);if(&quot;function &quot;!=typeof u)throw Error(&quot;An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.&quot;);&quot;function &quot;==typeof Symbol &amp;&amp;&quot;Generator &quot;===l[Symbol.toStringTag]&amp;&amp;(eu||s(&quot;Using Generators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. Keep in mind you might need to polyfill these features for older browsers.&quot;),eu=!0),l.entries===u &amp;&amp;(Zc||s(&quot;Using Maps as children is not supported. Use an array of keyed ReactElements instead.&quot;),Zc=!0);var f=u.call(l);if(f)for(var p=null,v=f.next();!v.done;v=f.next())p=g(v.value,p,a);var y=u.call(l);if(null==y)throw Error(&quot;An iterable object provided no iterator.&quot;);for(var E=null,b=null,T=i,N=0,R=0,S=null,w=y.next();null!==T &amp;&amp;!w.done;R++,w=y.next()){T.index &gt;R?(S=T,T=null):S=T.sibling;var O=m(a,T,w.value,c);if(null===O){null===T &amp;&amp;(T=S);break}e &amp;&amp;T &amp;&amp;null===O.alternate &amp;&amp;t(a,T),N=o(O,N,R),null===b?E=O:b.sibling=O,b=O,T=S}if(w.done)return n(a,T),E;if(null===T){for(;!w.done;R++,w=y.next()){var C=d(a,w.value,c);null!==C &amp;&amp;(N=o(C,N,R),null===b?E=C:b.sibling=C,b=C)}return E}for(var A=r(0,T);!w.done;R++,w=y.next()){var I=h(A,a,R,w.value,c);null!==I &amp;&amp;(e &amp;&amp;null!==I.alternate &amp;&amp;A.delete(null===I.key?R:I.key),N=o(I,N,R),null===b?E=I:b.sibling=I,b=I)}return e &amp;&amp;A.forEach(function(e){return t(a,e)}),E}(l,c,u,f);if(E &amp;&amp;pu(l,u),&quot;function &quot;==typeof u &amp;&amp;mu(l),void 0===u &amp;&amp;!y)switch(l.tag){case 1:if(l.stateNode.render._isMockFunction)break;case T:case 0:case p:case v:throw Error((We(l.type)||&quot;Component &quot;)+&quot;(...): Nothing was returned from render. This usually means a return statement is missing. Or, to render nothing, return null.&quot;)}return n(l,c)}}var gu=hu(!0),vu=hu(!1);function yu(e,t){for(var n=e.child;null!==n;)dg(n,t),n=n.sibling}var Eu={},bu=ql(Eu),Tu=ql(Eu),Nu=ql(Eu);function Ru(e){if(e===Eu)throw Error(&quot;Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.&quot;);return e}function Su(){return Ru(Nu.current)}function wu(e,t){Ql(Nu,t,e),Ql(Tu,e,e),Ql(bu,Eu,e);var n=function(e){var t,n,r=e.nodeType;switch(r){case 9:case 11:t=9===r?&quot;#document &quot;:&quot;#fragment &quot;;var a=e.documentElement;n=a?a.namespaceURI:Ut(null,&quot;&quot;);break;default:var o=8===r?e.parentNode:e;n=Ut(o.namespaceURI||null,t=o.tagName)}var i=t.toLowerCase();return{namespace:n,ancestorInfo:nl(null,i)}}(t);Jl(bu,e),Ql(bu,n,e)}function Ou(e){Jl(bu,e),Jl(Tu,e),Jl(Nu,e)}function Cu(){return Ru(bu.current)}function Au(e){Ru(Nu.current);var t,n,r=Ru(bu.current),a={namespace:Ut((n=r).namespace,t=e.type),ancestorInfo:nl(n.ancestorInfo,t)};r!==a &amp;&amp;(Ql(Tu,e,e),Ql(bu,a,e))}function Iu(e){Tu.current===e &amp;&amp;(Jl(bu,e),Jl(Tu,e))}var ku=ql(0);function xu(e,t){return 0!=(e &amp;t)}function _u(e){return 1 &amp;e}function Lu(e,t){return 1 &amp;e|t}function Pu(e,t){Ql(ku,t,e)}function Mu(e){Jl(ku,e)}function Du(e,t){var n=e.memoizedState;if(null!==n)return null!==n.dehydrated;var r=e.memoizedProps;return void 0!==r.fallback &amp;&amp;(!0!==r.unstable_avoidThisFallback||!t)}function Uu(e){for(var t=e;null!==t;){if(t.tag===h){var n=t.memoizedState;if(null!==n){var r=n.dehydrated;if(null===r||r.data===cl||r.data===ul)return t}}else if(t.tag===E &amp;&amp;void 0!==t.memoizedProps.revealOrder){if(0!=(t.flags &amp;ar))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)return null;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var ju=null,Fu=null,zu=!1;function Hu(e,t){switch(e.tag){case 3:!function(e,t){1===t.nodeType?Ji(e,t):8===t.nodeType||Qi(e,t)}(e.stateNode.containerInfo,t);break;case 5:!function(e,t,n,r){!0!==t.suppressHydrationWarning &amp;&amp;(1===r.nodeType?Ji(n,r):8===r.nodeType||Qi(n,r))}(0,e.memoizedProps,e.stateNode,t)}var n,r=((n=cg(5,null,null,0)).elementType=&quot;DELETED &quot;,n.type=&quot;DELETED &quot;,n);r.stateNode=t,r.return=e,r.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=r,e.lastEffect=r):e.firstEffect=e.lastEffect=r}function Bu(e,t){switch(t.flags=-1025 &amp;t.flags|2,e.tag){case 3:var n=e.stateNode.containerInfo;switch(t.tag){case 5:!function(e,t,n){Zi(e,t)}(n,t.type);break;case 6:!function(e,t){el(e,t)}(n,t.pendingProps)}break;case 5:var r=e.memoizedProps,a=e.stateNode;switch(t.tag){case 5:!function(e,t,n,r,a){!0!==t.suppressHydrationWarning &amp;&amp;Zi(n,r)}(0,r,a,t.type);break;case 6:!function(e,t,n,r){!0!==t.suppressHydrationWarning &amp;&amp;el(n,r)}(0,r,a,t.pendingProps)}break;default:return}}function Vu(e,t){switch(e.tag){case 5:var n=function(e,t,n){return 1!==e.nodeType||t.toLowerCase()!==e.nodeName.toLowerCase()?null:e}(t,e.type);return null!==n &amp;&amp;(e.stateNode=n,!0);case 6:var r=function(e,t){return &quot;&quot;===t||3!==e.nodeType?null:e}(t,e.pendingProps);return null!==r &amp;&amp;(e.stateNode=r,!0);case h:default:return!1}}function Wu(e){if(zu){var t=Fu;if(!t)return Bu(ju,e),zu=!1,void(ju=e);var n=t;if(!Vu(e,t)){if(!(t=Rl(n))||!Vu(e,t))return Bu(ju,e),zu=!1,void(ju=e);Hu(ju,n)}ju=e,Fu=Sl(t)}}function Gu(e){for(var t=e.return;null!==t &amp;&amp;5!==t.tag &amp;&amp;3!==t.tag &amp;&amp;t.tag!==h;)t=t.return;ju=t}function Yu(e){if(e!==ju)return!1;if(!zu)return Gu(e),zu=!0,!1;var t=e.type;if(5!==e.tag||&quot;head &quot;!==t &amp;&amp;&quot;body &quot;!==t &amp;&amp;!ml(t,e.memoizedProps))for(var n=Fu;n;)Hu(e,n),n=Rl(n);return Gu(e),Fu=e.tag===h?function(e){var t=e.memoizedState,n=null!==t?t.dehydrated:null;if(!n)throw Error(&quot;Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.&quot;);return function(e){for(var t=e.nextSibling,n=0;t;){if(8===t.nodeType){var r=t.data;if(&quot;/$ &quot;===r){if(0===n)return Rl(t);n--}else &quot;$ &quot;!==r &amp;&amp;r!==ul &amp;&amp;r!==cl||n++}t=t.nextSibling}return null}(n)}(e):ju?Rl(e.stateNode):null,!0}function $u(){ju=null,Fu=null,zu=!1}function Xu(){return zu}var Ku,qu=[];function Ju(){for(var e=0;e &lt;qu.length;e++)qu[e]._workInProgressVersionPrimary=null;qu.length=0}function Qu(e,t){e._workInProgressVersionPrimary=t,qu.push(e)}Ku={};var Zu,ef,tf=o.ReactCurrentDispatcher,nf=o.ReactCurrentBatchConfig;ef={},Zu=new Set;var rf=0,af=null,of=null,lf=null,sf=!1,cf=!1,uf=null,ff=null,df=-1,pf=!1;function mf(){null===ff?ff=[uf]:ff.push(uf)}function hf(){null!==ff &amp;&amp;(df++,ff[df]!==uf &amp;&amp;function(e){var t=We(af.type);if(!Zu.has(t)&amp;&amp;(Zu.add(t),null!==ff)){for(var n=&quot;&quot;,r=0;r &lt;=df;r++){for(var a=ff[r],o=r===df?e:a,i=r+1+&quot;. &quot;+a;i.length &lt;30;)i+=&quot;&quot;;n+=i+=o+&quot;\n &quot;}s(&quot;React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://reactjs.org/link/rules-of-hooks\n\n   Previous render            Next render\n   ------------------------------------------------------\n%s   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n &quot;,t,n)}}(uf))}function gf(e){null==e||Array.isArray(e)||s(&quot;%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.&quot;,uf,typeof e)}function vf(){throw Error(&quot;Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.&quot;)}function yf(e,t){if(pf)return!1;if(null===t)return s(&quot;%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.&quot;,uf),!1;e.length!==t.length &amp;&amp;s(&quot;The final argument passed to %s changed size between renders. The order and size of this array must remain constant.\n\nPrevious: %s\nIncoming: %s &quot;,uf,&quot;[&quot;+t.join(&quot;, &quot;)+&quot;]&quot;,&quot;[&quot;+e.join(&quot;, &quot;)+&quot;]&quot;);for(var n=0;n &lt;t.length &amp;&amp;n &lt;e.length;n++)if(!Yo(e[n],t[n]))return!1;return!0}function Ef(e,t,n,r,a,o){rf=o,af=t,ff=null!==e?e._debugHookTypes:null,df=-1,pf=null!==e &amp;&amp;e.type!==t.type,t.memoizedState=null,t.updateQueue=null,t.lanes=0,tf.current=null!==e &amp;&amp;null!==e.memoizedState?pd:null!==ff?dd:fd;var i=n(r,a);if(cf){var l=0;do{if(cf=!1,!(l &lt;25))throw Error(&quot;Too many re-renders. React limits the number of renders to prevent an infinite loop.&quot;);l+=1,pf=!1,of=null,lf=null,t.updateQueue=null,df=-1,tf.current=md,i=n(r,a)}while(cf)}tf.current=ud,t._debugHookTypes=ff;var s=null!==of &amp;&amp;null!==of.next;if(rf=0,af=null,of=null,lf=null,uf=null,ff=null,df=-1,sf=!1,s)throw Error(&quot;Rendered fewer hooks than expected. This may be caused by an accidental early return statement.&quot;);return i}function bf(e,t,n){t.updateQueue=e.updateQueue,t.flags &amp;=-517,e.lanes=Ra(e.lanes,n)}function Tf(){if(tf.current=ud,sf){for(var e=af.memoizedState;null!==e;){var t=e.queue;null!==t &amp;&amp;(t.pending=null),e=e.next}sf=!1}rf=0,af=null,of=null,lf=null,ff=null,df=-1,uf=null,ad=!1,cf=!1}function Nf(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===lf?af.memoizedState=lf=e:lf=lf.next=e,lf}function Rf(){var e,t;if(null===of){var n=af.alternate;e=null!==n?n.memoizedState:null}else e=of.next;if(null!==(t=null===lf?af.memoizedState:lf.next))t=(lf=t).next,of=e;else{if(null===e)throw Error(&quot;Rendered more hooks than during the previous render.&quot;);var r={memoizedState:(of=e).memoizedState,baseState:of.baseState,baseQueue:of.baseQueue,queue:of.queue,next:null};null===lf?af.memoizedState=lf=r:lf=lf.next=r}return lf}function Sf(e,t){return &quot;function &quot;==typeof t?t(e):t}function wf(e,t,n){var r,a=Nf();r=void 0!==n?n(t):t,a.memoizedState=a.baseState=r;var o=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:r},i=o.dispatch=cd.bind(null,af,o);return[a.memoizedState,i]}function Of(e,t,n){var r=Rf(),a=r.queue;if(null===a)throw Error(&quot;Should have a queue. This is likely a bug in React. Please file an issue.&quot;);a.lastRenderedReducer=e;var o=of,i=o.baseQueue,l=a.pending;if(null!==l){if(null!==i){var c=i.next;i.next=l.next,l.next=c}o.baseQueue!==i &amp;&amp;s(&quot;Internal error: Expected work-in-progress queue to be a clone. This is a bug in React.&quot;),o.baseQueue=i=l,a.pending=null}if(null!==i){var u=i.next,f=o.baseState,d=null,p=null,m=null,h=u;do{var g=h.lane;if(Ta(rf,g))null!==m &amp;&amp;(m=m.next={lane:0,action:h.action,eagerReducer:h.eagerReducer,eagerState:h.eagerState,next:null}),f=h.eagerReducer===e?h.eagerState:e(f,h.action);else{var v={lane:g,action:h.action,eagerReducer:h.eagerReducer,eagerState:h.eagerState,next:null};null===m?(p=m=v,d=f):m=m.next=v,af.lanes=Na(af.lanes,g),ih(g)}h=h.next}while(null!==h &amp;&amp;h!==u);null===m?d=f:m.next=p,Yo(f,r.memoizedState)||hp(),r.memoizedState=f,r.baseState=d,r.baseQueue=m,a.lastRenderedState=f}return[r.memoizedState,a.dispatch]}function Cf(e,t,n){var r=Rf(),a=r.queue;if(null===a)throw Error(&quot;Should have a queue. This is likely a bug in React. Please file an issue.&quot;);a.lastRenderedReducer=e;var o=a.dispatch,i=a.pending,l=r.memoizedState;if(null!==i){a.pending=null;var s=i.next,c=s;do{l=e(l,c.action),c=c.next}while(c!==s);Yo(l,r.memoizedState)||hp(),r.memoizedState=l,null===r.baseQueue &amp;&amp;(r.baseState=l),a.lastRenderedState=l}return[l,o]}function Af(e,t,n){var r;null==(r=t)._currentPrimaryRenderer?r._currentPrimaryRenderer=Ku:r._currentPrimaryRenderer!==Ku &amp;&amp;s(&quot;Detected multiple renderers concurrently rendering the same mutable source. This is currently unsupported.&quot;);var a=(0,t._getVersion)(t._source),o=!1,i=function(e){return e._workInProgressVersionPrimary}(t);if(null!==i?o=i===a:(o=Ta(rf,e.mutableReadLanes))&amp;&amp;Qu(t,a),o){var l=n(t._source);return &quot;function &quot;==typeof l &amp;&amp;s(&quot;Mutable source should not return a function as the snapshot value. Functions may close over mutable values and cause tearing.&quot;),l}throw function(e){qu.push(e)}(t),Error(&quot;Cannot read from mutable source during the current render without tearing. This is a bug in React. Please file an issue.&quot;)}function If(e,t,n,r){var a=im;if(null===a)throw Error(&quot;Expected a work-in-progress root. This is a bug in React. Please file an issue.&quot;);var o=t._getVersion,i=o(t._source),l=tf.current,c=l.useState(function(){return Af(a,t,n)}),u=c[1],f=c[0],d=lf,p=e.memoizedState,m=p.refs,h=m.getSnapshot,g=p.source,v=p.subscribe,y=af;if(e.memoizedState={refs:m,source:t,subscribe:r},l.useEffect(function(){m.getSnapshot=n,m.setSnapshot=u;var e=o(t._source);if(!Yo(i,e)){var r=n(t._source);if(&quot;function &quot;==typeof r &amp;&amp;s(&quot;Mutable source should not return a function as the snapshot value. Functions may close over mutable values and cause tearing.&quot;),!Yo(f,r)){u(r);var l=Bm(y);Ca(a,l)}!function(e,t){e.entangledLanes|=t;for(var n=e.entanglements,r=t;r &gt;0;){var a=Ea(r),o=1 &lt;&lt;a;n[a]|=t,r &amp;=~o}}(a,a.mutableReadLanes)}},[n,t,r]),l.useEffect(function(){var e=r(t._source,function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var r=Bm(y);Ca(a,r)}catch(e){n(function(){throw e})}});return &quot;function &quot;!=typeof e &amp;&amp;s(&quot;Mutable source subscribe function must return an unsubscribe function.&quot;),e},[t,r]),!Yo(h,n)||!Yo(g,t)||!Yo(v,r)){var E={pending:null,dispatch:null,lastRenderedReducer:Sf,lastRenderedState:f};E.dispatch=u=cd.bind(null,af,E),d.queue=E,d.baseQueue=null,f=Af(a,t,n),d.memoizedState=d.baseState=f}return f}function kf(e,t,n){var r=Nf();return r.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},If(r,e,t,n)}function xf(e,t,n){return If(Rf(),e,t,n)}function _f(e){var t=Nf();&quot;function &quot;==typeof e &amp;&amp;(e=e()),t.memoizedState=t.baseState=e;var n=t.queue={pending:null,dispatch:null,lastRenderedReducer:Sf,lastRenderedState:e},r=n.dispatch=cd.bind(null,af,n);return[t.memoizedState,r]}function Lf(e){return Of(Sf)}function Pf(e){return Cf(Sf)}function Mf(e,t,n,r){var a={tag:e,create:t,destroy:n,deps:r,next:null},o=af.updateQueue;if(null===o)af.updateQueue=o={lastEffect:null},o.lastEffect=a.next=a;else{var i=o.lastEffect;if(null===i)o.lastEffect=a.next=a;else{var l=i.next;i.next=a,a.next=l,o.lastEffect=a}}return a}function Df(e){var t=Nf(),n={current:e};return Object.seal(n),t.memoizedState=n,n}function Uf(e){return Rf().memoizedState}function jf(e,t,n,r){var a=Nf(),o=void 0===r?null:r;af.flags|=e,a.memoizedState=Mf(1|t,n,void 0,o)}function Ff(e,t,n,r){var a=Rf(),o=void 0===r?null:r,i=void 0;if(null!==of){var l=of.memoizedState;if(i=l.destroy,null!==o &amp;&amp;yf(o,l.deps))return void Mf(t,n,i,o)}af.flags|=e,a.memoizedState=Mf(1|t,n,i,o)}function zf(e,t){return &quot;undefined &quot;!=typeof jest &amp;&amp;Uh(af),jf(516,4,e,t)}function Hf(e,t){return &quot;undefined &quot;!=typeof jest &amp;&amp;Uh(af),Ff(516,4,e,t)}function Bf(e,t){return jf(4,2,e,t)}function Vf(e,t){return Ff(4,2,e,t)}function Wf(e,t){if(&quot;function &quot;==typeof t){var n=t,r=e();return n(r),function(){n(null)}}if(null!=t){var a=t;a.hasOwnProperty(&quot;current &quot;)||s(&quot;Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.&quot;,&quot;an object with keys {&quot;+Object.keys(a).join(&quot;, &quot;)+&quot;}&quot;);var o=e();return a.current=o,function(){a.current=null}}}function Gf(e,t,n){&quot;function &quot;!=typeof t &amp;&amp;s(&quot;Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.&quot;,null!==t?typeof t:&quot;null &quot;);var r=null!=n?n.concat([e]):null;return jf(4,2,Wf.bind(null,t,e),r)}function Yf(e,t,n){&quot;function &quot;!=typeof t &amp;&amp;s(&quot;Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.&quot;,null!==t?typeof t:&quot;null &quot;);var r=null!=n?n.concat([e]):null;return Ff(4,2,Wf.bind(null,t,e),r)}function $f(e,t){return Nf().memoizedState=[e,void 0===t?null:t],e}function Xf(e,t){var n=Rf(),r=void 0===t?null:t,a=n.memoizedState;return null!==a &amp;&amp;null!==r &amp;&amp;yf(r,a[1])?a[0]:(n.memoizedState=[e,r],e)}function Kf(e,t){var n=Nf(),r=void 0===t?null:t,a=e();return n.memoizedState=[a,r],a}function qf(e,t){var n=Rf(),r=void 0===t?null:t,a=n.memoizedState;if(null!==a &amp;&amp;null!==r &amp;&amp;yf(r,a[1]))return a[0];var o=e();return n.memoizedState=[o,r],o}function Jf(e){var t=_f(e),n=t[0],r=t[1];return zf(function(){var t=nf.transition;nf.transition=1;try{r(e)}finally{nf.transition=t}},[e]),n}function Qf(e){var t=Lf(),n=t[0],r=t[1];return Hf(function(){var t=nf.transition;nf.transition=1;try{r(e)}finally{nf.transition=t}},[e]),n}function Zf(e){var t=Pf(),n=t[0],r=t[1];return Hf(function(){var t=nf.transition;nf.transition=1;try{r(e)}finally{nf.transition=t}},[e]),n}function ed(e,t){var n=Bs();Ws(n &lt;Ls?Ls:n,function(){e(!0)}),Ws(n &gt;Ps?Ps:n,function(){var n=nf.transition;nf.transition=1;try{e(!1),t()}finally{nf.transition=n}})}function td(){var e=_f(!1),t=e[0],n=ed.bind(null,e[1]);return Df(n),[n,t]}function nd(){var e=Lf()[0];return[Uf().current,e]}function rd(){var e=Pf()[0];return[Uf().current,e]}var ad=!1;function od(e){var t=We(e.type)||&quot;Unknown &quot;;$e &amp;&amp;!ef[t]&amp;&amp;(s(&quot;The object passed back from useOpaqueIdentifier is meant to be passed through to attributes only. Do not read the value directly.&quot;),ef[t]=!0)}function id(){var e=Cl.bind(null,od.bind(null,af));if(Xu()){var t=!1,n=af,r={$$typeof:me,toString:o=function(){throw t||(t=!0,ad=!0,a(e()),ad=!1,od(n)),Error(&quot;The object passed back from useOpaqueIdentifier is meant to be passed through to attributes only. Do not read the value directly.&quot;)},valueOf:o},a=_f(r)[1];return 0==(2 &amp;af.mode)&amp;&amp;(af.flags|=516,Mf(5,function(){a(e())},void 0,null)),r}var o,i=e();return _f(i),i}function ld(){return Lf()[0]}function sd(){return Pf()[0]}function cd(e,t,n){&quot;function &quot;==typeof arguments[3]&amp;&amp;s(&quot;State updates from the useState() and useReducer() Hooks don &#039;t support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().&quot;);var r=Hm(),a=Bm(e),o={lane:a,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o;var l=e.alternate;if(e===af||null!==l &amp;&amp;l===af)cf=sf=!0;else{if(0===e.lanes &amp;&amp;(null===l||0===l.lanes)){var c=t.lastRenderedReducer;if(null!==c){var u;u=tf.current,tf.current=gd;try{var f=t.lastRenderedState,d=c(f,n);if(o.eagerReducer=c,o.eagerState=d,Yo(d,f))return}catch(e){}finally{tf.current=u}}}&quot;undefined &quot;!=typeof jest &amp;&amp;(Dh(e),jh(e)),Vm(e,a,r)}}var ud={readContext:Rc,useCallback:vf,useContext:vf,useEffect:vf,useImperativeHandle:vf,useLayoutEffect:vf,useMemo:vf,useReducer:vf,useRef:vf,useState:vf,useDebugValue:vf,useDeferredValue:vf,useTransition:vf,useMutableSource:vf,useOpaqueIdentifier:vf,unstable_isNewReconciler:S},fd=null,dd=null,pd=null,md=null,hd=null,gd=null,vd=null,yd=function(){s(&quot;Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().&quot;)},Ed=function(){s(&quot;Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://reactjs.org/link/rules-of-hooks &quot;)};fd={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,mf(),gf(t),$f(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,mf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,mf(),gf(t),zf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,mf(),gf(n),Gf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,mf(),gf(t),Bf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,mf(),gf(t);var n=tf.current;tf.current=hd;try{return Kf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,mf();var r=tf.current;tf.current=hd;try{return wf(e,t,n)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,mf(),Df(e)},useState:function(e){uf=&quot;useState &quot;,mf();var t=tf.current;tf.current=hd;try{return _f(e)}finally{tf.current=t}},useDebugValue:function(e,t){uf=&quot;useDebugValue &quot;,mf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,mf(),Jf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,mf(),td()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,mf(),kf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,mf(),id()},unstable_isNewReconciler:S},dd={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,hf(),$f(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,hf(),zf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,hf(),Gf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,hf(),Bf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,hf();var n=tf.current;tf.current=hd;try{return Kf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,hf();var r=tf.current;tf.current=hd;try{return wf(e,t,n)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,hf(),Df(e)},useState:function(e){uf=&quot;useState &quot;,hf();var t=tf.current;tf.current=hd;try{return _f(e)}finally{tf.current=t}},useDebugValue:function(e,t){uf=&quot;useDebugValue &quot;,hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,hf(),Jf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,hf(),td()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,hf(),kf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,hf(),id()},unstable_isNewReconciler:S},pd={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,hf();var n=tf.current;tf.current=gd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,hf();var r=tf.current;tf.current=gd;try{return Of(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,hf();var t=tf.current;tf.current=gd;try{return Lf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,hf(),Qf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,hf(),nd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,hf(),ld()},unstable_isNewReconciler:S},md={readContext:function(e,t){return Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,hf();var n=tf.current;tf.current=vd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,hf();var r=tf.current;tf.current=vd;try{return Cf(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,hf();var t=tf.current;tf.current=vd;try{return Pf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,hf(),Zf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,hf(),rd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,hf(),sd()},unstable_isNewReconciler:S},hd={readContext:function(e,t){return yd(),Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,Ed(),mf(),$f(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,Ed(),mf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,Ed(),mf(),zf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,Ed(),mf(),Gf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,Ed(),mf(),Bf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,Ed(),mf();var n=tf.current;tf.current=hd;try{return Kf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,Ed(),mf();var r=tf.current;tf.current=hd;try{return wf(e,t,n)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,Ed(),mf(),Df(e)},useState:function(e){uf=&quot;useState &quot;,Ed(),mf();var t=tf.current;tf.current=hd;try{return _f(e)}finally{tf.current=t}},useDebugValue:function(e,t){uf=&quot;useDebugValue &quot;,Ed(),mf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,Ed(),mf(),Jf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,Ed(),mf(),td()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,Ed(),mf(),kf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,Ed(),mf(),id()},unstable_isNewReconciler:S},gd={readContext:function(e,t){return yd(),Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,Ed(),hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,Ed(),hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,Ed(),hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,Ed(),hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,Ed(),hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,Ed(),hf();var n=tf.current;tf.current=gd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,Ed(),hf();var r=tf.current;tf.current=gd;try{return Of(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,Ed(),hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,Ed(),hf();var t=tf.current;tf.current=gd;try{return Lf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,Ed(),void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,Ed(),hf(),Qf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,Ed(),hf(),nd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,Ed(),hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,Ed(),hf(),ld()},unstable_isNewReconciler:S},vd={readContext:function(e,t){return yd(),Rc(e,t)},useCallback:function(e,t){return uf=&quot;useCallback &quot;,Ed(),hf(),Xf(e,t)},useContext:function(e,t){return uf=&quot;useContext &quot;,Ed(),hf(),Rc(e,t)},useEffect:function(e,t){return uf=&quot;useEffect &quot;,Ed(),hf(),Hf(e,t)},useImperativeHandle:function(e,t,n){return uf=&quot;useImperativeHandle &quot;,Ed(),hf(),Yf(e,t,n)},useLayoutEffect:function(e,t){return uf=&quot;useLayoutEffect &quot;,Ed(),hf(),Vf(e,t)},useMemo:function(e,t){uf=&quot;useMemo &quot;,Ed(),hf();var n=tf.current;tf.current=gd;try{return qf(e,t)}finally{tf.current=n}},useReducer:function(e,t,n){uf=&quot;useReducer &quot;,Ed(),hf();var r=tf.current;tf.current=gd;try{return Cf(e)}finally{tf.current=r}},useRef:function(e){return uf=&quot;useRef &quot;,Ed(),hf(),Uf()},useState:function(e){uf=&quot;useState &quot;,Ed(),hf();var t=tf.current;tf.current=gd;try{return Pf()}finally{tf.current=t}},useDebugValue:function(e,t){return uf=&quot;useDebugValue &quot;,Ed(),void hf()},useDeferredValue:function(e){return uf=&quot;useDeferredValue &quot;,Ed(),hf(),Zf(e)},useTransition:function(){return uf=&quot;useTransition &quot;,Ed(),hf(),rd()},useMutableSource:function(e,t,n){return uf=&quot;useMutableSource &quot;,Ed(),hf(),xf(e,t,n)},useOpaqueIdentifier:function(){return uf=&quot;useOpaqueIdentifier &quot;,Ed(),hf(),sd()},unstable_isNewReconciler:S};var bd=r.unstable_now,Td=0,Nd=-1;function Rd(){return Td}function Sd(){Td=bd()}function wd(e){Nd=bd(),e.actualStartTime &lt;0 &amp;&amp;(e.actualStartTime=bd())}function Od(e){Nd=-1}function Cd(e,t){if(Nd &gt;=0){var n=bd()-Nd;e.actualDuration+=n,t &amp;&amp;(e.selfBaseDuration=n),Nd=-1}}function Ad(e){for(var t=e.child;t;)e.actualDuration+=t.actualDuration,t=t.sibling}var Id,kd,xd,_d,Ld,Pd,Md,Dd,Ud=o.ReactCurrentOwner,jd=!1;function Fd(e,t,n,r){t.child=null===e?vu(t,null,n,r):gu(t,e.child,n,r)}function zd(e,t,n,r,a){if(t.type!==t.elementType){var o=n.propTypes;o &amp;&amp;Gl(o,r,&quot;prop &quot;,We(n))}var i,l=n.render,s=t.ref;if(Nc(t,a),Ud.current=t,Qe(!0),i=Ef(e,t,l,r,s,a),1 &amp;t.mode){ke();try{i=Ef(e,t,l,r,s,a)}finally{xe()}}return Qe(!1),null===e||jd?(t.flags|=1,Fd(e,t,i,a),t.child):(bf(e,t,a),gp(e,t,a))}function Hd(e,t,n,r,a,o){if(null===e){var i,l=n.type;if(function(e){return &quot;function &quot;==typeof e &amp;&amp;!ug(e)&amp;&amp;void 0===e.defaultProps}(l)&amp;&amp;null===n.compare &amp;&amp;void 0===n.defaultProps)return i=Jh(l),t.tag=v,t.type=i,qd(t,l),Bd(e,t,i,r,a,o);var s=l.propTypes;s &amp;&amp;Gl(s,r,&quot;prop &quot;,We(l));var c=pg(n.type,null,r,t,t.mode,o);return c.ref=t.ref,c.return=t,t.child=c,c}var u=n.type,f=u.propTypes;f &amp;&amp;Gl(f,r,&quot;prop &quot;,We(u));var d=e.child;if(!ba(a,o)){var p=n.compare;if((p=null!==p?p:Xo)(d.memoizedProps,r)&amp;&amp;e.ref===t.ref)return gp(e,t,o)}t.flags|=1;var m=fg(d,r);return m.ref=t.ref,m.return=t,t.child=m,m}function Bd(e,t,n,r,a,o){if(t.type!==t.elementType){var i=t.elementType;if(i.$$typeof===ue){var l=i._payload,s=i._init;try{i=s(l)}catch(e){i=null}var c=i &amp;&amp;i.propTypes;c &amp;&amp;Gl(c,r,&quot;prop &quot;,We(i))}}if(null!==e &amp;&amp;Xo(e.memoizedProps,r)&amp;&amp;e.ref===t.ref &amp;&amp;t.type===e.type){if(jd=!1,!ba(o,a))return t.lanes=e.lanes,gp(e,t,o);0!=(e.flags &amp;ur)&amp;&amp;(jd=!0)}return Yd(e,t,n,r,o)}function Vd(e,t,n){var r,a=t.pendingProps,o=a.children,i=null!==e?e.memoizedState:null;if(&quot;hidden &quot;===a.mode||&quot;unstable-defer-without-hiding &quot;===a.mode)if(0==(4 &amp;t.mode))t.memoizedState={baseLanes:0},Qm(t,n);else{var l;if(!ba(n,sa))return l=null!==i?Na(i.baseLanes,n):n,Hh(sa),t.lanes=t.childLanes=sa,t.memoizedState={baseLanes:l},Qm(t,l),null;t.memoizedState={baseLanes:0},Qm(t,null!==i?i.baseLanes:n)}else null!==i?(r=Na(i.baseLanes,n),t.memoizedState=null):r=n,Qm(t,r);return Fd(e,t,o,n),t.child}Id={},kd={},xd={},_d={},Ld={},Pd=!1,Md={},Dd={};var Wd=Vd;function Gd(e,t){var n=t.ref;(null===e &amp;&amp;null!==n||null!==e &amp;&amp;e.ref!==n)&amp;&amp;(t.flags|=or)}function Yd(e,t,n,r,a){if(t.type!==t.elementType){var o=n.propTypes;o &amp;&amp;Gl(o,r,&quot;prop &quot;,We(n))}var i,l;if(i=os(t,rs(0,n,!0)),Nc(t,a),Ud.current=t,Qe(!0),l=Ef(e,t,n,r,i,a),1 &amp;t.mode){ke();try{l=Ef(e,t,n,r,i,a)}finally{xe()}}return Qe(!1),null===e||jd?(t.flags|=1,Fd(e,t,l,a),t.child):(bf(e,t,a),gp(e,t,a))}function $d(e,t,n,r,a){if(t.type!==t.elementType){var o=n.propTypes;o &amp;&amp;Gl(o,r,&quot;prop &quot;,We(n))}var i,l;ls(n)?(i=!0,ds(t)):i=!1,Nc(t,a),null===t.stateNode?(null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2),su(t,n,r),uu(t,n,r,a),l=!0):l=null===e?function(e,t,n,r){var a=e.stateNode,o=e.memoizedProps;a.props=o;var i,l=a.context,s=t.contextType;i=&quot;object &quot;==typeof s &amp;&amp;null!==s?Rc(s):os(e,rs(0,t,!0));var c=t.getDerivedStateFromProps,u=&quot;function &quot;==typeof c||&quot;function &quot;==typeof a.getSnapshotBeforeUpdate;u||&quot;function &quot;!=typeof a.UNSAFE_componentWillReceiveProps &amp;&amp;&quot;function &quot;!=typeof a.componentWillReceiveProps||o===n &amp;&amp;l===i||cu(e,a,n,i),Mc();var f=e.memoizedState,d=a.state=f;if(Lc(e,n,a,r),d=e.memoizedState,o===n &amp;&amp;f===d &amp;&amp;!is()&amp;&amp;!Dc())return &quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4),!1;&quot;function &quot;==typeof c &amp;&amp;(Qc(e,t,c,n),d=e.memoizedState);var p=Dc()||iu(e,t,o,n,f,d,i);return p?(u||&quot;function &quot;!=typeof a.UNSAFE_componentWillMount &amp;&amp;&quot;function &quot;!=typeof a.componentWillMount||(&quot;function &quot;==typeof a.componentWillMount &amp;&amp;a.componentWillMount(),&quot;function &quot;==typeof a.UNSAFE_componentWillMount &amp;&amp;a.UNSAFE_componentWillMount()),&quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4)):(&quot;function &quot;==typeof a.componentDidMount &amp;&amp;(e.flags|=4),e.memoizedProps=n,e.memoizedState=d),a.props=n,a.state=d,a.context=i,p}(t,n,r,a):function(e,t,n,r,a){var o=t.stateNode;Ac(e,t);var i=t.memoizedProps,l=t.type===t.elementType?i:sc(t.type,i);o.props=l;var s,c=t.pendingProps,u=o.context,f=n.contextType;s=&quot;object &quot;==typeof f &amp;&amp;null!==f?Rc(f):os(t,rs(0,n,!0));var d=n.getDerivedStateFromProps,p=&quot;function &quot;==typeof d||&quot;function &quot;==typeof o.getSnapshotBeforeUpdate;p||&quot;function &quot;!=typeof o.UNSAFE_componentWillReceiveProps &amp;&amp;&quot;function &quot;!=typeof o.componentWillReceiveProps||i===c &amp;&amp;u===s||cu(t,o,r,s),Mc();var m=t.memoizedState,h=o.state=m;if(Lc(t,r,o,a),h=t.memoizedState,i===c &amp;&amp;m===h &amp;&amp;!is()&amp;&amp;!Dc())return &quot;function &quot;==typeof o.componentDidUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=4)),&quot;function &quot;==typeof o.getSnapshotBeforeUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=ir)),!1;&quot;function &quot;==typeof d &amp;&amp;(Qc(t,n,d,r),h=t.memoizedState);var g=Dc()||iu(t,n,l,r,m,h,s);return g?(p||&quot;function &quot;!=typeof o.UNSAFE_componentWillUpdate &amp;&amp;&quot;function &quot;!=typeof o.componentWillUpdate||(&quot;function &quot;==typeof o.componentWillUpdate &amp;&amp;o.componentWillUpdate(r,h,s),&quot;function &quot;==typeof o.UNSAFE_componentWillUpdate &amp;&amp;o.UNSAFE_componentWillUpdate(r,h,s)),&quot;function &quot;==typeof o.componentDidUpdate &amp;&amp;(t.flags|=4),&quot;function &quot;==typeof o.getSnapshotBeforeUpdate &amp;&amp;(t.flags|=ir)):(&quot;function &quot;==typeof o.componentDidUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=4)),&quot;function &quot;==typeof o.getSnapshotBeforeUpdate &amp;&amp;(i===e.memoizedProps &amp;&amp;m===e.memoizedState||(t.flags|=ir)),t.memoizedProps=r,t.memoizedState=h),o.props=r,o.state=h,o.context=s,g}(e,t,n,r,a);var c=Xd(e,t,n,l,i,a);return l &amp;&amp;t.stateNode.props!==r &amp;&amp;(Pd||s(&quot;It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.&quot;,We(t.type)||&quot;a component &quot;),Pd=!0),c}function Xd(e,t,n,r,a,o){Gd(e,t);var i=0!=(t.flags &amp;ar);if(!r &amp;&amp;!i)return a &amp;&amp;ps(t,n,!1),gp(e,t,o);var l,s=t.stateNode;if(Ud.current=t,i &amp;&amp;&quot;function &quot;!=typeof n.getDerivedStateFromError)l=null,Od();else{if(Qe(!0),l=s.render(),1 &amp;t.mode){ke();try{s.render()}finally{xe()}}Qe(!1)}return t.flags|=1,null!==e &amp;&amp;i?function(e,t,n,r){t.child=gu(t,e.child,null,r),t.child=gu(t,null,n,r)}(e,t,l,o):Fd(e,t,l,o),t.memoizedState=s.state,a &amp;&amp;ps(t,n,!0),t.child}function Kd(e){var t=e.stateNode;t.pendingContext?us(e,t.pendingContext,t.pendingContext!==t.context):t.context &amp;&amp;us(e,t.context,!1),wu(e,t.containerInfo)}function qd(e,t){if(t &amp;&amp;t.childContextTypes &amp;&amp;s(&quot;%s(...): childContextTypes cannot be defined on a function component.&quot;,t.displayName||t.name||&quot;Component &quot;),null!==e.ref){var n=&quot;&quot;,r=Xe();r &amp;&amp;(n+=&quot;\n\nCheck the render method of `&quot;+r+&quot;`.&quot;);var a=r||e._debugID||&quot;&quot;,o=e._debugSource;o &amp;&amp;(a=o.fileName+&quot;:&quot;+o.lineNumber),Ld[a]||(Ld[a]=!0,s(&quot;Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?%s &quot;,n))}if(&quot;function &quot;==typeof t.getDerivedStateFromProps){var i=We(t)||&quot;Unknown &quot;;_d[i]||(s(&quot;%s: Function components do not support getDerivedStateFromProps.&quot;,i),_d[i]=!0)}if(&quot;object &quot;==typeof t.contextType &amp;&amp;null!==t.contextType){var l=We(t)||&quot;Unknown &quot;;xd[l]||(s(&quot;%s: Function components do not support contextType.&quot;,l),xd[l]=!0)}}var Jd={dehydrated:null,retryLane:0};function Qd(e){return{baseLanes:e}}function Zd(e,t){return{baseLanes:Na(e.baseLanes,t)}}function ep(e,t){return Ra(e.childLanes,t)}function tp(e,t,n){var r=t.pendingProps;Dg(t)&amp;&amp;(t.flags|=ar);var a=ku.current,o=!1;if(0!=(t.flags &amp;ar)||function(e,t,n,r){return(null===t||null!==t.memoizedState)&amp;&amp;xu(e,2)}(a,e)?(o=!0,t.flags &amp;=-65):null!==e &amp;&amp;null===e.memoizedState||void 0!==r.fallback &amp;&amp;!0!==r.unstable_avoidThisFallback &amp;&amp;(a|=1),Pu(t,a=_u(a)),null===e){void 0!==r.fallback &amp;&amp;Wu(t);var i=r.children,l=r.fallback;if(o){var s=np(t,i,l,n);return t.child.memoizedState=Qd(n),t.memoizedState=Jd,s}if(&quot;number &quot;==typeof r.unstable_expectedLoadTime){var c=np(t,i,l,n);return t.child.memoizedState=Qd(n),t.memoizedState=Jd,t.lanes=ra,Hh(ra),c}return function(e,t,n){var r=gg({mode:&quot;visible &quot;,children:t},e.mode,n,null);return r.return=e,e.child=r,r}(t,i,n)}if(null!==e.memoizedState){if(o){var u=op(e,t,r.children,r.fallback,n),f=t.child,d=e.child.memoizedState;return f.memoizedState=null===d?Qd(n):Zd(d,n),f.childLanes=ep(e,n),t.memoizedState=Jd,u}var p=ap(e,t,r.children,n);return t.memoizedState=null,p}if(o){var m=op(e,t,r.children,r.fallback,n),h=t.child,g=e.child.memoizedState;return h.memoizedState=null===g?Qd(n):Zd(g,n),h.childLanes=ep(e,n),t.memoizedState=Jd,m}var v=ap(e,t,r.children,n);return t.memoizedState=null,v}function np(e,t,n,r){var a,o,i=e.mode,l=e.child,s={mode:&quot;hidden &quot;,children:t};return 0==(2 &amp;i)&amp;&amp;null!==l?((a=l).childLanes=0,a.pendingProps=s,8 &amp;e.mode &amp;&amp;(a.actualDuration=0,a.actualStartTime=-1,a.selfBaseDuration=0,a.treeBaseDuration=0),o=hg(n,i,r,null)):(a=gg(s,i,0,null),o=hg(n,i,r,null)),a.return=e,o.return=e,a.sibling=o,e.child=a,o}function rp(e,t){return fg(e,t)}function ap(e,t,n,r){var a=e.child,o=a.sibling,i=rp(a,{mode:&quot;visible &quot;,children:n});return 0==(2 &amp;t.mode)&amp;&amp;(i.lanes=r),i.return=t,i.sibling=null,null!==o &amp;&amp;(o.nextEffect=null,o.flags=8,t.firstEffect=t.lastEffect=o),t.child=i,i}function op(e,t,n,r,a){var o,i,l=t.mode,s=e.child,c=s.sibling,u={mode:&quot;hidden &quot;,children:n};if(0==(2 &amp;l)&amp;&amp;t.child!==s){(o=t.child).childLanes=0,o.pendingProps=u,8 &amp;t.mode &amp;&amp;(o.actualDuration=0,o.actualStartTime=-1,o.selfBaseDuration=s.selfBaseDuration,o.treeBaseDuration=s.treeBaseDuration);var f=o.lastEffect;null!==f?(t.firstEffect=o.firstEffect,t.lastEffect=f,f.nextEffect=null):t.firstEffect=t.lastEffect=null}else o=rp(s,u);return null!==c?i=fg(c,r):(i=hg(r,l,a,null)).flags|=2,i.return=t,o.return=t,o.sibling=i,t.child=o,i}function ip(e,t){e.lanes=Na(e.lanes,t);var n=e.alternate;null!==n &amp;&amp;(n.lanes=Na(n.lanes,t)),Tc(e.return,t)}function lp(e,t){var n=Array.isArray(e),r=!n &amp;&amp;&quot;function &quot;==typeof be(e);if(n||r){var a=n?&quot;array &quot;:&quot;iterable &quot;;return s(&quot;A nested %s was passed to row #%s in &lt;SuspenseList /&gt;. Wrap it in an additional SuspenseList to configure its revealOrder: &lt;SuspenseList revealOrder=...&gt;... &lt;SuspenseList revealOrder=...&gt;{%s}&lt;/SuspenseList &gt;... &lt;/SuspenseList &gt;&quot;,a,t,a),!1}return!0}function sp(e,t,n,r,a,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:a,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=a,i.lastEffect=o)}function cp(e,t,n){var r=t.pendingProps,a=r.revealOrder,o=r.tail,i=r.children;!function(e){if(void 0!==e &amp;&amp;&quot;forwards &quot;!==e &amp;&amp;&quot;backwards &quot;!==e &amp;&amp;&quot;together &quot;!==e &amp;&amp;!Md[e])if(Md[e]=!0,&quot;string &quot;==typeof e)switch(e.toLowerCase()){case &quot;together &quot;:case &quot;forwards &quot;:case &quot;backwards &quot;:s(&#039;&quot;%s &quot;is not a valid value for revealOrder on &lt;SuspenseList /&gt;. Use lowercase &quot;%s &quot;instead.&#039;,e,e.toLowerCase());break;case &quot;forward &quot;:case &quot;backward &quot;:s(&#039;&quot;%s &quot;is not a valid value for revealOrder on &lt;SuspenseList /&gt;. React uses the -s suffix in the spelling. Use &quot;%ss &quot;instead.&#039;,e,e.toLowerCase());break;default:s(&#039;&quot;%s &quot;is not a supported revealOrder on &lt;SuspenseList /&gt;. Did you mean &quot;together &quot;, &quot;forwards &quot;or &quot;backwards &quot;?&#039;,e)}else s(&#039;%s is not a supported value for revealOrder on &lt;SuspenseList /&gt;. Did you mean &quot;together &quot;, &quot;forwards &quot;or &quot;backwards &quot;?&#039;,e)}(a),function(e,t){void 0===e||Dd[e]||(&quot;collapsed &quot;!==e &amp;&amp;&quot;hidden &quot;!==e?(Dd[e]=!0,s(&#039;&quot;%s &quot;is not a supported value for tail on &lt;SuspenseList /&gt;. Did you mean &quot;collapsed &quot;or &quot;hidden &quot;?&#039;,e)):&quot;forwards &quot;!==t &amp;&amp;&quot;backwards &quot;!==t &amp;&amp;(Dd[e]=!0,s(&#039;&lt;SuspenseList tail=&quot;%s &quot;/&gt;is only valid if revealOrder is &quot;forwards &quot;or &quot;backwards &quot;. Did you mean to specify revealOrder=&quot;forwards &quot;?&#039;,e)))}(o,a),function(e,t){if((&quot;forwards &quot;===t||&quot;backwards &quot;===t)&amp;&amp;null!=e &amp;&amp;!1!==e)if(Array.isArray(e)){for(var n=0;n &lt;e.length;n++)if(!lp(e[n],n))return}else{var r=be(e);if(&quot;function &quot;==typeof r){var a=r.call(e);if(a)for(var o=a.next(),i=0;!o.done;o=a.next()){if(!lp(o.value,i))return;i++}}else s(&#039;A single row was passed to a &lt;SuspenseList revealOrder=&quot;%s &quot;/&gt;. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?&#039;,t)}}(i,a),Fd(e,t,i,n);var l=ku.current;if(xu(l,2)?(l=Lu(l,2),t.flags|=ar):(null!==e &amp;&amp;0!=(e.flags &amp;ar)&amp;&amp;function(e,t,n){for(var r=t;null!==r;){if(r.tag===h)null!==r.memoizedState &amp;&amp;ip(r,n);else if(r.tag===E)ip(r,n);else if(null!==r.child){r.child.return=r,r=r.child;continue}if(r===e)return;for(;null===r.sibling;){if(null===r.return||r.return===e)return;r=r.return}r.sibling.return=r.return,r=r.sibling}}(t,t.child,n),l=_u(l)),Pu(t,l),0==(2 &amp;t.mode))t.memoizedState=null;else switch(a){case &quot;forwards &quot;:var c,u=function(e){for(var t=e,n=null;null!==t;){var r=t.alternate;null!==r &amp;&amp;null===Uu(r)&amp;&amp;(n=t),t=t.sibling}return n}(t.child);null===u?(c=t.child,t.child=null):(c=u.sibling,u.sibling=null),sp(t,!1,c,u,o,t.lastEffect);break;case &quot;backwards &quot;:var f=null,d=t.child;for(t.child=null;null!==d;){var p=d.alternate;if(null!==p &amp;&amp;null===Uu(p)){t.child=d;break}var m=d.sibling;d.sibling=f,f=d,d=m}sp(t,!0,f,null,o,t.lastEffect);break;case &quot;together &quot;:sp(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}var up,fp,dp,pp=!1,mp=!1;function hp(){jd=!0}function gp(e,t,n){return null!==e &amp;&amp;(t.dependencies=e.dependencies),Od(),ih(t.lanes),ba(n,t.childLanes)?(function(e,t){if(null!==e &amp;&amp;t.child!==e.child)throw Error(&quot;Resuming work not yet implemented.&quot;);if(null!==t.child){var n=t.child,r=fg(n,n.pendingProps);for(t.child=r,r.return=t;null!==n.sibling;)(r=r.sibling=fg(n=n.sibling,n.pendingProps)).return=t;r.sibling=null}}(e,t),t.child):null}function vp(e,t,n){var r=t.lanes;if(t._debugNeedsRemount &amp;&amp;null!==e)return function(e,t,n){var r=t.return;if(null===r)throw new Error(&quot;Cannot swap the root fiber.&quot;);if(e.alternate=null,t.alternate=null,n.index=t.index,n.sibling=t.sibling,n.return=t.return,n.ref=t.ref,t===r.child)r.child=n;else{var a=r.child;if(null===a)throw new Error(&quot;Expected parent to have a child.&quot;);for(;a.sibling!==t;)if(null===(a=a.sibling))throw new Error(&quot;Expected to find the previous sibling.&quot;);a.sibling=n}var o=r.lastEffect;return null!==o?(o.nextEffect=e,r.lastEffect=e):r.firstEffect=r.lastEffect=e,e.nextEffect=null,e.flags=8,n.flags|=2,n}(e,t,pg(t.type,t.key,t.pendingProps,t._debugOwner||null,t.mode,t.lanes));if(null!==e)if(e.memoizedProps!==t.pendingProps||is()||t.type!==e.type)jd=!0;else{if(!ba(n,r)){switch(jd=!1,t.tag){case 3:Kd(t),$u();break;case 5:Au(t);break;case 1:ls(t.type)&amp;&amp;ds(t);break;case 4:wu(t,t.stateNode.containerInfo);break;case d:Ec(t,t.memoizedProps.value);break;case m:ba(n,t.childLanes)&amp;&amp;(t.flags|=4);var a=t.stateNode;a.effectDuration=0,a.passiveEffectDuration=0;break;case h:if(null!==t.memoizedState){if(ba(n,t.child.childLanes))return tp(e,t,n);Pu(t,_u(ku.current));var o=gp(e,t,n);return null!==o?o.sibling:null}Pu(t,_u(ku.current));break;case E:var i=0!=(e.flags &amp;ar),l=ba(n,t.childLanes);if(i){if(l)return cp(e,t,n);t.flags|=ar}var c=t.memoizedState;if(null!==c &amp;&amp;(c.rendering=null,c.tail=null,c.lastEffect=null),Pu(t,ku.current),l)break;return null;case N:case R:return t.lanes=0,Vd(e,t,n)}return gp(e,t,n)}jd=0!=(e.flags &amp;ur)}else jd=!1;switch(t.lanes=0,t.tag){case 2:return function(e,t,n,r){null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2);var a,o,i=t.pendingProps;if(a=os(t,rs(0,n,!1)),Nc(t,r),n.prototype &amp;&amp;&quot;function &quot;==typeof n.prototype.render){var l=We(n)||&quot;Unknown &quot;;Id[l]||(s(&quot;The &lt;%s /&gt;component appears to have a render method, but doesn &#039;t extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.&quot;,l,l),Id[l]=!0)}if(1 &amp;t.mode &amp;&amp;Js.recordLegacyContextWarning(t,null),Qe(!0),Ud.current=t,o=Ef(null,t,n,i,a,r),Qe(!1),t.flags|=1,&quot;object &quot;==typeof o &amp;&amp;null!==o &amp;&amp;&quot;function &quot;==typeof o.render &amp;&amp;void 0===o.$$typeof){var c=We(n)||&quot;Unknown &quot;;kd[c]||(s(&quot;The &lt;%s /&gt;component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can &#039;t use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don &#039;t use an arrow function since it cannot be called with `new` by React.&quot;,c,c,c),kd[c]=!0)}if(&quot;object &quot;==typeof o &amp;&amp;null!==o &amp;&amp;&quot;function &quot;==typeof o.render &amp;&amp;void 0===o.$$typeof){var u=We(n)||&quot;Unknown &quot;;kd[u]||(s(&quot;The &lt;%s /&gt;component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can &#039;t use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don &#039;t use an arrow function since it cannot be called with `new` by React.&quot;,u,u,u),kd[u]=!0),t.tag=1,t.memoizedState=null,t.updateQueue=null;var f=!1;ls(n)?(f=!0,ds(t)):f=!1,t.memoizedState=null!=o.state?o.state:null,Cc(t);var d=n.getDerivedStateFromProps;return &quot;function &quot;==typeof d &amp;&amp;Qc(t,n,d,i),lu(t,o),uu(t,n,i,r),Xd(null,t,n,!0,f,r)}if(t.tag=0,1 &amp;t.mode){ke();try{o=Ef(null,t,n,i,a,r)}finally{xe()}}return Fd(null,t,o,r),qd(t,n),t.child}(e,t,t.type,n);case 16:return function(e,t,n,r,a){null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2);var o=t.pendingProps,i=(0,n._init)(n._payload);t.type=i;var l=t.tag=function(e){if(&quot;function &quot;==typeof e)return ug(e)?1:0;if(null!=e){var t=e.$$typeof;if(t===ie)return p;if(t===ce)return g}return 2}(i),s=sc(i,o);switch(l){case 0:return qd(t,i),t.type=i=Jh(i),Yd(null,t,i,s,a);case 1:return t.type=i=Qh(i),$d(null,t,i,s,a);case p:return t.type=i=Zh(i),zd(null,t,i,s,a);case g:if(t.type!==t.elementType){var c=i.propTypes;c &amp;&amp;Gl(c,s,&quot;prop &quot;,We(i))}return Hd(null,t,i,sc(i.type,s),r,a)}var u=&quot;&quot;;throw null!==i &amp;&amp;&quot;object &quot;==typeof i &amp;&amp;i.$$typeof===ue &amp;&amp;(u=&quot;Did you wrap a component in React.lazy() more than once?&quot;),Error(&quot;Element type is invalid. Received a promise that resolves to: &quot;+i+&quot;. Lazy element type must resolve to a class or function.&quot;+u)}(e,t,t.elementType,r,n);case 0:var u=t.type,f=t.pendingProps;return Yd(e,t,u,t.elementType===u?f:sc(u,f),n);case 1:var S=t.type,w=t.pendingProps;return $d(e,t,S,t.elementType===S?w:sc(S,w),n);case 3:return function(e,t,n){if(Kd(t),null===e||null===t.updateQueue)throw Error(&quot;If the root does not have an updateQueue, we should have already bailed out. This error is likely caused by a bug in React. Please file an issue.&quot;);var r=t.pendingProps,a=t.memoizedState,o=null!==a?a.element:null;Ac(e,t),Lc(t,r,null,n);var i=t.memoizedState.element;if(i===o)return $u(),gp(e,t,n);var l,s=t.stateNode;if(s.hydrate &amp;&amp;(Fu=Sl((l=t).stateNode.containerInfo),ju=l,zu=!0,1)){var c=s.mutableSourceEagerHydrationData;if(null!=c)for(var u=0;u &lt;c.length;u+=2)Qu(c[u],c[u+1]);var f=vu(t,null,i,n);t.child=f;for(var d=f;d;)d.flags=-3 &amp;d.flags|1024,d=d.sibling}else Fd(e,t,i,n),$u();return t.child}(e,t,n);case 5:return function(e,t,n){Au(t),null===e &amp;&amp;Wu(t);var r=t.type,a=t.pendingProps,o=null!==e?e.memoizedProps:null,i=a.children;return ml(r,a)?i=null:null!==o &amp;&amp;ml(r,o)&amp;&amp;(t.flags|=16),Gd(e,t),Fd(e,t,i,n),t.child}(e,t,n);case 6:return function(e,t){return null===e &amp;&amp;Wu(t),null}(e,t);case h:return tp(e,t,n);case 4:return function(e,t,n){wu(t,t.stateNode.containerInfo);var r=t.pendingProps;return null===e?t.child=gu(t,null,r,n):Fd(e,t,r,n),t.child}(e,t,n);case p:var O=t.type,C=t.pendingProps;return zd(e,t,O,t.elementType===O?C:sc(O,C),n);case 7:return function(e,t,n){return Fd(e,t,t.pendingProps,n),t.child}(e,t,n);case 8:return function(e,t,n){return Fd(e,t,t.pendingProps.children,n),t.child}(e,t,n);case m:return function(e,t,n){t.flags|=4;var r=t.stateNode;return r.effectDuration=0,r.passiveEffectDuration=0,Fd(e,t,t.pendingProps.children,n),t.child}(e,t,n);case d:return function(e,t,n){var r=t.type._context,a=t.pendingProps,o=t.memoizedProps,i=a.value;&quot;value &quot;in a||pp||(pp=!0,s(&quot;The `value` prop is required for the `&lt;Context.Provider &gt;`. Did you misspell it or forget to pass it?&quot;));var l=t.type.propTypes;if(l &amp;&amp;Gl(l,a,&quot;prop &quot;,&quot;Context.Provider &quot;),Ec(t,i),null!==o){var c=function(e,t,n){if(Yo(n,t))return 0;var r=&quot;function &quot;==typeof e._calculateChangedBits?e._calculateChangedBits(n,t):uc;return(r &amp;uc)!==r &amp;&amp;s(&quot;calculateChangedBits: Expected the return value to be a 31-bit integer. Instead received: %s &quot;,r),0|r}(r,i,o.value);if(0===c){if(o.children===a.children &amp;&amp;!is())return gp(e,t,n)}else!function(e,t,n,r){var a=e.child;for(null!==a &amp;&amp;(a.return=e);null!==a;){var o=void 0,i=a.dependencies;if(null!==i){o=a.child;for(var l=i.firstContext;null!==l;){if(l.context===t &amp;&amp;0!=(l.observedBits &amp;n)){if(1===a.tag){var s=Ic(ca,ya(r));s.tag=2,kc(a,s)}a.lanes=Na(a.lanes,r);var c=a.alternate;null!==c &amp;&amp;(c.lanes=Na(c.lanes,r)),Tc(a.return,r),i.lanes=Na(i.lanes,r);break}l=l.next}}else o=a.tag===d &amp;&amp;a.type===e.type?null:a.child;if(null!==o)o.return=a;else for(o=a;null!==o;){if(o===e){o=null;break}var u=o.sibling;if(null!==u){u.return=o.return,o=u;break}o=o.return}a=o}}(t,r,c,n)}return Fd(e,t,a.children,n),t.child}(e,t,n);case 9:return function(e,t,n){var r=t.type;void 0===r._context?r!==r.Consumer &amp;&amp;(mp||(mp=!0,s(&quot;Rendering &lt;Context &gt;directly is not supported and will be removed in a future major release. Did you mean to render &lt;Context.Consumer &gt;instead?&quot;))):r=r._context;var a=t.pendingProps,o=a.children;&quot;function &quot;!=typeof o &amp;&amp;s(&quot;A context consumer was rendered with multiple children, or a child that isn &#039;t a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it.&quot;),Nc(t,n);var i,l=Rc(r,a.unstable_observedBits);return Ud.current=t,Qe(!0),i=o(l),Qe(!1),t.flags|=1,Fd(e,t,i,n),t.child}(e,t,n);case g:var A=t.type,I=sc(A,t.pendingProps);if(t.type!==t.elementType){var k=A.propTypes;k &amp;&amp;Gl(k,I,&quot;prop &quot;,We(A))}return Hd(e,t,A,I=sc(A.type,I),r,n);case v:return Bd(e,t,t.type,t.pendingProps,r,n);case y:var x=t.type,_=t.pendingProps;return function(e,t,n,r,a){var o;return null!==e &amp;&amp;(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,ls(n)?(o=!0,ds(t)):o=!1,Nc(t,a),su(t,n,r),uu(t,n,r,a),Xd(null,t,n,!0,o,a)}(e,t,x,t.elementType===x?_:sc(x,_),n);case E:return cp(e,t,n);case b:case 21:case T:break;case N:return Vd(e,t,n);case R:return Wd(e,t,n)}throw Error(&quot;Unknown unit of work tag (&quot;+t.tag+&quot;). This error is likely caused by a bug in React. Please file an issue.&quot;)}function yp(e){e.flags|=4}function Ep(e){e.flags|=or}function bp(e,t){if(!Xu())switch(e.tailMode){case &quot;hidden &quot;:for(var n=e.tail,r=null;null!==n;)null!==n.alternate &amp;&amp;(r=n),n=n.sibling;null===r?e.tail=null:r.sibling=null;break;case &quot;collapsed &quot;:for(var a=e.tail,o=null;null!==a;)null!==a.alternate &amp;&amp;(o=a),a=a.sibling;null===o?t||null===e.tail?e.tail=null:e.tail.sibling=null:o.sibling=null}}function Tp(e,t,n){var r,a,o=t.pendingProps;switch(t.tag){case 2:case 16:case v:case 0:case p:case 7:case 8:case m:case 9:case g:return null;case 1:return ls(t.type)&amp;&amp;ss(t),null;case 3:Ou(t),cs(t),Ju();var i=t.stateNode;return i.pendingContext &amp;&amp;(i.context=i.pendingContext,i.pendingContext=null),(null===e||null===e.child)&amp;&amp;(Yu(t)?yp(t):i.hydrate||(t.flags|=ir)),null;case 5:Iu(t);var l=Su(),c=t.type;if(null!==e &amp;&amp;null!=t.stateNode)fp(e,t,c,o),e.ref!==t.ref &amp;&amp;Ep(t);else{if(!o){if(null===t.stateNode)throw Error(&quot;We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.&quot;);return null}var u=Cu();if(Yu(t))a=function(e,t,n,r,a,o){return Ll(o,e),zl(e,n),function(e,t,n,r,a){var o,i;switch(Ai=!0===n.suppressHydrationWarning,o=sn(t,n),Ii(t,n),t){case &quot;dialog &quot;:hi(&quot;cancel &quot;,e),hi(&quot;close &quot;,e);break;case &quot;iframe &quot;:case &quot;object &quot;:case &quot;embed &quot;:hi(&quot;load &quot;,e);break;case &quot;video &quot;:case &quot;audio &quot;:for(var l=0;l &lt;ui.length;l++)hi(ui[l],e);break;case &quot;source &quot;:hi(&quot;error &quot;,e);break;case &quot;img &quot;:case &quot;image &quot;:case &quot;link &quot;:hi(&quot;error &quot;,e),hi(&quot;load &quot;,e);break;case &quot;details &quot;:hi(&quot;toggle &quot;,e);break;case &quot;input &quot;:mt(e,n),hi(&quot;invalid &quot;,e);break;case &quot;option &quot;:Nt(0,n);break;case &quot;select &quot;:At(e,n),hi(&quot;invalid &quot;,e);break;case &quot;textarea &quot;:xt(e,n),hi(&quot;invalid &quot;,e)}ln(t,n),i=new Set;for(var s=e.attributes,c=0;c &lt;s.length;c++)switch(s[c].name.toLowerCase()){case &quot;data-reactroot &quot;:case &quot;value &quot;:case &quot;checked &quot;:case &quot;selected &quot;:break;default:i.add(s[c].name)}var u,f=null;for(var d in n)if(n.hasOwnProperty(d)){var p=n[d];if(d===Bi)&quot;string &quot;==typeof p?e.textContent!==p &amp;&amp;(Ai||ki(e.textContent,p),f=[Bi,p]):&quot;number &quot;==typeof p &amp;&amp;e.textContent!==&quot;&quot;+p &amp;&amp;(Ai||ki(e.textContent,p),f=[Bi,&quot;&quot;+p]);else if(O.hasOwnProperty(d))null!=p &amp;&amp;(&quot;function &quot;!=typeof p &amp;&amp;Li(d,p),&quot;onScroll &quot;===d &amp;&amp;hi(&quot;scroll &quot;,e));else if(&quot;boolean &quot;==typeof o){var m=void 0,h=B(d);if(Ai);else if(d===Fi||d===zi||&quot;value &quot;===d||&quot;checked &quot;===d||&quot;selected &quot;===d);else if(d===ji){var g=e.innerHTML,v=p?p.__html:void 0;if(null!=v){var y=Di(e,v);y!==g &amp;&amp;xi(d,g,y)}}else if(d===Vi){if(i.delete(d),Pi){var E=nn(p);E!==(m=e.getAttribute(&quot;style &quot;))&amp;&amp;xi(d,m,E)}}else if(o)i.delete(d.toLowerCase()),p!==(m=J(e,d,p))&amp;&amp;xi(d,m,p);else if(!F(d,h,o)&amp;&amp;!H(d,p,h,o)){var b=!1;if(null!==h)i.delete(h.attributeName),m=q(e,d,p,h);else{var T=r;if(T===Wi &amp;&amp;(T=Dt(t)),T===Wi)i.delete(d.toLowerCase());else{var N=(u=d.toLowerCase(),cn.hasOwnProperty(u)&amp;&amp;cn[u]||null);null!==N &amp;&amp;N!==d &amp;&amp;(b=!0,i.delete(N)),i.delete(d)}m=J(e,d,p)}p===m||b||xi(d,m,p)}}}switch(i.size &gt;0 &amp;&amp;!Ai &amp;&amp;_i(i),t){case &quot;input &quot;:ot(e),vt(e,n,!0);break;case &quot;textarea &quot;:ot(e),Lt(e);break;case &quot;select &quot;:case &quot;option &quot;:break;default:&quot;function &quot;==typeof n.onClick &amp;&amp;Ki(e)}return f}(e,t,n,a.namespace)}((r=t).stateNode,r.type,r.memoizedProps,0,u,r),r.updateQueue=a,null!==a &amp;&amp;yp(t);else{var f=function(e,t,n,r,a){var o=r;if(tl(e,null,o.ancestorInfo),&quot;string &quot;==typeof t.children||&quot;number &quot;==typeof t.children){var i=&quot;&quot;+t.children,l=nl(o.ancestorInfo,e);tl(null,i,l)}var c=function(e,t,n,r){var a,o,i=$i(n),l=r;if(l===Wi &amp;&amp;(l=Dt(e)),l===Wi){if((a=sn(e,t))||e===e.toLowerCase()||s(&quot;&lt;%s /&gt;is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.&quot;,e),&quot;script &quot;===e){var c=i.createElement(&quot;div &quot;);c.innerHTML=&quot;&lt;script &gt;&lt;\/script &gt;&quot;,o=c.removeChild(c.firstChild)}else if(&quot;string &quot;==typeof t.is)o=i.createElement(e,{is:t.is});else if(o=i.createElement(e),&quot;select &quot;===e){var u=o;t.multiple?u.multiple=!0:t.size &amp;&amp;(u.size=t.size)}}else o=i.createElementNS(l,e);return l===Wi &amp;&amp;(a||&quot;[object HTMLUnknownElement]&quot;!==Object.prototype.toString.call(o)||Object.prototype.hasOwnProperty.call(Ci,e)||(Ci[e]=!0,s(&quot;The tag &lt;%s &gt;is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.&quot;,e))),o}(e,t,n,o.namespace);return Ll(a,c),zl(c,t),c}(c,o,l,u,t);up(f,t),t.stateNode=f,function(e,t,n,r,a){return function(e,t,n,r){var a,o=sn(t,n);switch(Ii(t,n),t){case &quot;dialog &quot;:hi(&quot;cancel &quot;,e),hi(&quot;close &quot;,e),a=n;break;case &quot;iframe &quot;:case &quot;object &quot;:case &quot;embed &quot;:hi(&quot;load &quot;,e),a=n;break;case &quot;video &quot;:case &quot;audio &quot;:for(var i=0;i &lt;ui.length;i++)hi(ui[i],e);a=n;break;case &quot;source &quot;:hi(&quot;error &quot;,e),a=n;break;case &quot;img &quot;:case &quot;image &quot;:case &quot;link &quot;:hi(&quot;error &quot;,e),hi(&quot;load &quot;,e),a=n;break;case &quot;details &quot;:hi(&quot;toggle &quot;,e),a=n;break;case &quot;input &quot;:mt(e,n),a=pt(e,n),hi(&quot;invalid &quot;,e);break;case &quot;option &quot;:Nt(0,n),a=Rt(0,n);break;case &quot;select &quot;:At(e,n),a=Ct(0,n),hi(&quot;invalid &quot;,e);break;case &quot;textarea &quot;:xt(e,n),a=kt(e,n),hi(&quot;invalid &quot;,e);break;default:a=n}switch(ln(t,a),function(e,t,n,r,a){for(var o in r)if(r.hasOwnProperty(o)){var i=r[o];if(o===Vi)i &amp;&amp;Object.freeze(i),rn(t,i);else if(o===ji){var l=i?i.__html:void 0;null!=l &amp;&amp;zt(t,l)}else o===Bi?&quot;string &quot;==typeof i?(&quot;textarea &quot;!==e||&quot;&quot;!==i)&amp;&amp;Ht(t,i):&quot;number &quot;==typeof i &amp;&amp;Ht(t,&quot;&quot;+i):o===Fi||o===zi||o===Hi||(O.hasOwnProperty(o)?null!=i &amp;&amp;(&quot;function &quot;!=typeof i &amp;&amp;Li(o,i),&quot;onScroll &quot;===o &amp;&amp;hi(&quot;scroll &quot;,t)):null!=i &amp;&amp;Q(t,o,i,a))}}(t,e,0,a,o),t){case &quot;input &quot;:ot(e),vt(e,n,!1);break;case &quot;textarea &quot;:ot(e),Lt(e);break;case &quot;option &quot;:!function(e,t){null!=t.value &amp;&amp;e.setAttribute(&quot;value &quot;,Ze(et(t.value)))}(e,n);break;case &quot;select &quot;:!function(e,t){var n=e;n.multiple=!!t.multiple;var r=t.value;null!=r?Ot(n,!!t.multiple,r,!1):null!=t.defaultValue &amp;&amp;Ot(n,!!t.multiple,t.defaultValue,!0)}(e,n);break;default:&quot;function &quot;==typeof a.onClick &amp;&amp;Ki(e)}}(e,t,n),pl(t,n)}(f,c,o)&amp;&amp;yp(t)}null!==t.ref &amp;&amp;Ep(t)}return null;case 6:var S=o;if(e &amp;&amp;null!=t.stateNode)dp(0,t,e.memoizedProps,S);else{if(&quot;string &quot;!=typeof S &amp;&amp;null===t.stateNode)throw Error(&quot;We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.&quot;);var w=Su(),C=Cu();Yu(t)?function(e){var t=e.stateNode,n=e.memoizedProps,r=function(e,t,n){return Ll(n,e),function(e,t){return e.nodeValue!==t}(e,t)}(t,n,e);if(r){var a=ju;if(null!==a)switch(a.tag){case 3:!function(e,t,n){qi(t,n)}(0,t,n);break;case 5:!function(e,t,n,r,a){!0!==t.suppressHydrationWarning &amp;&amp;qi(r,a)}(0,a.memoizedProps,0,t,n)}}return r}(t)&amp;&amp;yp(t):t.stateNode=function(e,t,n,r){tl(null,e,n.ancestorInfo);var a=function(e,t){return $i(t).createTextNode(e)}(e,t);return Ll(r,a),a}(S,w,C,t)}return null;case h:Mu(t);var A=t.memoizedState;if(0!=(t.flags &amp;ar))return t.lanes=n,0!=(8 &amp;t.mode)&amp;&amp;Ad(t),t;var I=null!==A,k=!1;return null===e?void 0!==t.memoizedProps.fallback &amp;&amp;Yu(t):k=null!==e.memoizedState,I &amp;&amp;!k &amp;&amp;0!=(2 &amp;t.mode)&amp;&amp;(null===e &amp;&amp;!0!==t.memoizedProps.unstable_avoidThisFallback||xu(ku.current,1)?0===fm &amp;&amp;(fm=3):(0!==fm &amp;&amp;3!==fm||(fm=4),null!==im &amp;&amp;(ha(mm)||ha(hm))&amp;&amp;$m(im,sm))),(I||k)&amp;&amp;(t.flags|=4),null;case 4:return Ou(t),null===e &amp;&amp;vi(t.stateNode.containerInfo),null;case d:return bc(t),null;case y:return ls(t.type)&amp;&amp;ss(t),null;case E:Mu(t);var x=t.memoizedState;if(null===x)return null;var _=0!=(t.flags &amp;ar),L=x.rendering;if(null===L)if(_)bp(x,!1);else{if(0!==fm||null!==e &amp;&amp;0!=(e.flags &amp;ar))for(var P=t.child;null!==P;){var M=Uu(P);if(null!==M){_=!0,t.flags|=ar,bp(x,!1);var D=M.updateQueue;return null!==D &amp;&amp;(t.updateQueue=D,t.flags|=4),null===x.lastEffect &amp;&amp;(t.firstEffect=null),t.lastEffect=x.lastEffect,yu(t,n),Pu(t,Lu(ku.current,2)),t.child}P=P.sibling}null!==x.tail &amp;&amp;Hs()&gt;Tm()&amp;&amp;(t.flags|=ar,_=!0,bp(x,!1),t.lanes=ra,Hh(ra))}else{if(!_){var U=Uu(L);if(null!==U){t.flags|=ar,_=!0;var j=U.updateQueue;if(null!==j &amp;&amp;(t.updateQueue=j,t.flags|=4),bp(x,!0),null===x.tail &amp;&amp;&quot;hidden &quot;===x.tailMode &amp;&amp;!L.alternate &amp;&amp;!Xu()){var z=t.lastEffect=x.lastEffect;return null!==z &amp;&amp;(z.nextEffect=null),null}}else 2*Hs()-x.renderingStartTime &gt;Tm()&amp;&amp;n!==sa &amp;&amp;(t.flags|=ar,_=!0,bp(x,!1),t.lanes=ra,Hh(ra))}if(x.isBackwards)L.sibling=t.child,t.child=L;else{var V=x.last;null!==V?V.sibling=L:t.child=L,x.last=L}}if(null!==x.tail){var W=x.tail;x.rendering=W,x.tail=W.sibling,x.lastEffect=t.lastEffect,x.renderingStartTime=Hs(),W.sibling=null;var G=ku.current;return Pu(t,G=_?Lu(G,2):_u(G)),W}return null;case b:case 21:case T:break;case N:case R:return Zm(t),null!==e &amp;&amp;null!==e.memoizedState!=(null!==t.memoizedState)&amp;&amp;&quot;unstable-defer-without-hiding &quot;!==o.mode &amp;&amp;(t.flags|=4),null}throw Error(&quot;Unknown unit of work tag (&quot;+t.tag+&quot;). This error is likely caused by a bug in React. Please file an issue.&quot;)}function Np(e,t){switch(e.tag){case 1:ls(e.type)&amp;&amp;ss(e);var n=e.flags;return n &amp;cr?(e.flags=-4097 &amp;n|ar,0!=(8 &amp;e.mode)&amp;&amp;Ad(e),e):null;case 3:Ou(e),cs(e),Ju();var r=e.flags;if(0!=(r &amp;ar))throw Error(&quot;The root failed to unmount after an error. This is likely a bug in React. Please file an issue.&quot;);return e.flags=-4097 &amp;r|ar,e;case 5:return Iu(e),null;case h:Mu(e);var a=e.flags;return a &amp;cr?(e.flags=-4097 &amp;a|ar,0!=(8 &amp;e.mode)&amp;&amp;Ad(e),e):null;case E:return Mu(e),null;case 4:return Ou(e),null;case d:return bc(e),null;case N:case R:return Zm(e),null;default:return null}}function Rp(e){switch(e.tag){case 1:null!=e.type.childContextTypes &amp;&amp;ss(e);break;case 3:Ou(e),cs(e),Ju();break;case 5:Iu(e);break;case 4:Ou(e);break;case h:case E:Mu(e);break;case d:bc(e);break;case N:case R:Zm(e)}}function Sp(e,t){return{value:e,source:t,stack:Be(t)}}function wp(e,t){try{var n=t.value,r=t.source,a=t.stack,o=null!==a?a:&quot;&quot;;if(null!=n &amp;&amp;n._suppressLogging){if(1===e.tag)return;console.error(n)}var i=r?We(r.type):null,l=i?&quot;The above error occurred in the &lt;&quot;+i+&quot;&gt;component:&quot;:&quot;The above error occurred in one of your React components:&quot;,s=We(e.type);console.error(l+&quot;\n &quot;+o+&quot;\n\n &quot;+(s?&quot;React will try to recreate this component tree from scratch using the error boundary you provided, &quot;+s+&quot;.&quot;:&quot;Consider adding an error boundary to your tree to customize error handling behavior.\nVisit https://reactjs.org/link/error-boundaries to learn more about error boundaries.&quot;))}catch(e){setTimeout(function(){throw e})}}up=function(e,t,n,r){for(var a=t.child;null!==a;){if(5===a.tag||6===a.tag)e.appendChild(a.stateNode);else if(4===a.tag);else if(null!==a.child){a.child.return=a,a=a.child;continue}if(a===t)return;for(;null===a.sibling;){if(null===a.return||a.return===t)return;a=a.return}a.sibling.return=a.return,a=a.sibling}},fp=function(e,t,n,r,a){var o=e.memoizedProps;if(o!==r){var i=function(e,t,n,r,a,o){if(typeof r.children!=typeof n.children &amp;&amp;(&quot;string &quot;==typeof r.children||&quot;number &quot;==typeof r.children)){var i=&quot;&quot;+r.children,l=nl(o.ancestorInfo,t);tl(null,i,l)}return function(e,t,n,r,a){Ii(t,r);var o,i,l,c,u=null;switch(t){case &quot;input &quot;:o=pt(e,n),i=pt(e,r),u=[];break;case &quot;option &quot;:o=Rt(0,n),i=Rt(0,r),u=[];break;case &quot;select &quot;:o=Ct(0,n),i=Ct(0,r),u=[];break;case &quot;textarea &quot;:o=kt(e,n),i=kt(e,r),u=[];break;default:i=r,&quot;function &quot;!=typeof(o=n).onClick &amp;&amp;&quot;function &quot;==typeof i.onClick &amp;&amp;Ki(e)}ln(t,i);var f=null;for(l in o)if(!i.hasOwnProperty(l)&amp;&amp;o.hasOwnProperty(l)&amp;&amp;null!=o[l])if(l===Vi){var d=o[l];for(c in d)d.hasOwnProperty(c)&amp;&amp;(f||(f={}),f[c]=&quot;&quot;)}else l===ji||l===Bi||l===Fi||l===zi||l===Hi||(O.hasOwnProperty(l)?u||(u=[]):(u=u||[]).push(l,null));for(l in i){var p=i[l],m=null!=o?o[l]:void 0;if(i.hasOwnProperty(l)&amp;&amp;p!==m &amp;&amp;(null!=p||null!=m))if(l===Vi)if(p &amp;&amp;Object.freeze(p),m){for(c in m)!m.hasOwnProperty(c)||p &amp;&amp;p.hasOwnProperty(c)||(f||(f={}),f[c]=&quot;&quot;);for(c in p)p.hasOwnProperty(c)&amp;&amp;m[c]!==p[c]&amp;&amp;(f||(f={}),f[c]=p[c])}else f||(u||(u=[]),u.push(l,f)),f=p;else if(l===ji){var h=p?p.__html:void 0;null!=h &amp;&amp;(m?m.__html:void 0)!==h &amp;&amp;(u=u||[]).push(l,h)}else l===Bi?&quot;string &quot;!=typeof p &amp;&amp;&quot;number &quot;!=typeof p||(u=u||[]).push(l,&quot;&quot;+p):l===Fi||l===zi||(O.hasOwnProperty(l)?(null!=p &amp;&amp;(&quot;function &quot;!=typeof p &amp;&amp;Li(l,p),&quot;onScroll &quot;===l &amp;&amp;hi(&quot;scroll &quot;,e)),u||m===p||(u=[])):&quot;object &quot;==typeof p &amp;&amp;null!==p &amp;&amp;p.$$typeof===me?p.toString():(u=u||[]).push(l,p))}return f &amp;&amp;(function(e,t){if(t){var n,r=an(e),a=an(t),o={};for(var i in r){var l=r[i],c=a[i];if(c &amp;&amp;l!==c){var u=l+&quot;,&quot;+c;if(o[u])continue;o[u]=!0,s(&quot;%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don &#039;t mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.&quot;,null==(n=e[l])||&quot;boolean &quot;==typeof n||&quot;&quot;===n?&quot;Removing &quot;:&quot;Updating &quot;,l,c)}}}}(f,i.style),(u=u||[]).push(Vi,f)),u}(e,t,n,r)}(t.stateNode,n,o,r,0,Cu());t.updateQueue=i,i &amp;&amp;yp(t)}},dp=function(e,t,n,r){n!==r &amp;&amp;yp(t)};var Op,Cp=&quot;function &quot;==typeof WeakMap?WeakMap:Map;function Ap(e,t,n){var r=Ic(ca,n);r.tag=3,r.payload={element:null};var a=t.value;return r.callback=function(){Sh(a),wp(e,t)},r}function Ip(e,t,n){var r=Ic(ca,n);r.tag=3;var a=e.type.getDerivedStateFromError;if(&quot;function &quot;==typeof a){var o=t.value;r.payload=function(){return wp(e,t),a(o)}}var i=e.stateNode;return r.callback=null!==i &amp;&amp;&quot;function &quot;==typeof i.componentDidCatch?function(){tg(e),&quot;function &quot;!=typeof a &amp;&amp;(null===wm?wm=new Set([this]):wm.add(this),wp(e,t));var n=t.stack;this.componentDidCatch(t.value,{componentStack:null!==n?n:&quot;&quot;}),&quot;function &quot;!=typeof a &amp;&amp;(ba(e.lanes,1)||s(&quot;%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.&quot;,We(e.type)||&quot;Unknown &quot;))}:function(){tg(e)},r}function kp(e,t,n){var r,a=e.pingCache;if(null===a?(a=e.pingCache=new Cp,r=new Set,a.set(t,r)):void 0===(r=a.get(t))&amp;&amp;(r=new Set,a.set(t,r)),!r.has(n)){r.add(n);var o=Ch.bind(null,e,t,n);t.then(o,o)}}function xp(e,t,n,r,a){if(n.flags|=sr,n.firstEffect=n.lastEffect=null,null!==r &amp;&amp;&quot;object &quot;==typeof r &amp;&amp;&quot;function &quot;==typeof r.then){var o=r;if(0==(2 &amp;n.mode)){var i=n.alternate;i?(n.updateQueue=i.updateQueue,n.memoizedState=i.memoizedState,n.lanes=i.lanes):(n.updateQueue=null,n.memoizedState=null)}var l=xu(ku.current,1),s=t;do{if(s.tag===h &amp;&amp;Du(s,l)){var c=s.updateQueue;if(null===c){var u=new Set;u.add(o),s.updateQueue=u}else c.add(o);if(0==(2 &amp;s.mode)){if(s.flags|=ar,n.flags|=ur,n.flags &amp;=-2981,1===n.tag)if(null===n.alternate)n.tag=y;else{var f=Ic(ca,1);f.tag=2,kc(n,f)}return void(n.lanes=Na(n.lanes,1))}return kp(e,o,a),s.flags|=cr,void(s.lanes=a)}s=s.return}while(null!==s);r=new Error((We(n.type)||&quot;A React component &quot;)+&quot;suspended while rendering, but no fallback UI was specified.\n\nAdd a &lt;Suspense fallback=...&gt;component higher in the tree to provide a loading indicator or placeholder to display.&quot;)}5!==fm &amp;&amp;(fm=2),r=Sp(r,n);var d=t;do{switch(d.tag){case 3:var p=r;d.flags|=cr;var m=ya(a);return d.lanes=Na(d.lanes,m),void xc(d,Ap(d,p,m));case 1:var g=r,v=d.stateNode;if(0==(d.flags &amp;ar)&amp;&amp;(&quot;function &quot;==typeof d.type.getDerivedStateFromError||null!==v &amp;&amp;&quot;function &quot;==typeof v.componentDidCatch &amp;&amp;!Rh(v))){d.flags|=cr;var E=ya(a);return d.lanes=Na(d.lanes,E),void xc(d,Ip(d,g,E))}}d=d.return}while(null!==d)}Op=new Set;var _p=&quot;function &quot;==typeof WeakSet?WeakSet:Set,Lp=function(e,t){t.props=e.memoizedProps,t.state=e.memoizedState,t.componentWillUnmount()};function Pp(e){var t=e.ref;null!==t &amp;&amp;(&quot;function &quot;==typeof t?(qn(null,t,null,null),Jn()&amp;&amp;Oh(e,Qn())):t.current=null)}function Mp(e,t){qn(null,t,null),Jn()&amp;&amp;Oh(e,Qn())}function Dp(e,t){switch(t.tag){case 0:case p:case v:case T:return;case 1:if(t.flags &amp;ir &amp;&amp;null!==e){var n=e.memoizedProps,r=e.memoizedState,a=t.stateNode;t.type!==t.elementType||Pd||(a.props!==t.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(t.type)||&quot;instance &quot;),a.state!==t.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(t.type)||&quot;instance &quot;));var o=a.getSnapshotBeforeUpdate(t.elementType===t.type?n:sc(t.type,n),r),i=Op;void 0!==o||i.has(t.type)||(i.add(t.type),s(&quot;%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.&quot;,We(t.type))),a.__reactInternalSnapshotBeforeUpdate=o}return;case 3:return void(t.flags &amp;ir &amp;&amp;Tl(t.stateNode.containerInfo));case 5:case 6:case 4:case y:return}throw Error(&quot;This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.&quot;)}function Up(e,t,n,r){switch(n.tag){case 0:case p:case v:case T:return function(e,t){var n=t.updateQueue,r=null!==n?n.lastEffect:null;if(null!==r){var a=r.next,o=a;do{if(3==(3 &amp;o.tag)){o.destroy=(0,o.create)();var i=o.destroy;void 0!==i &amp;&amp;&quot;function &quot;!=typeof i &amp;&amp;s(&quot;An effect function must not return anything besides a function, which is used for clean-up.%s &quot;,null===i?&quot;You returned null. If your effect does not require clean up, return undefined (or nothing).&quot;:&quot;function &quot;==typeof i.then?&quot;\n\nIt looks like you wrote useEffect(async () =&gt;...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:\n\nuseEffect(() =&gt;{\n  async function fetchData() {\n    // You can await here\n    const response = await MyAPI.getData(someId);\n    // ...\n  }\n  fetchData();\n}, [someId]); // Or [] if effect doesn &#039;t need props or state\n\nLearn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-fetching &quot;:&quot;You returned: &quot;+i)}o=o.next}while(o!==a)}}(0,n),void function(e){var t=e.updateQueue,n=null!==t?t.lastEffect:null;if(null!==n){var r=n.next,a=r;do{var o=a.next,i=a.tag;0!=(4 &amp;i)&amp;&amp;0!=(1 &amp;i)&amp;&amp;(bh(e,a),Eh(e,a)),a=o}while(a!==r)}}(n);case 1:var a=n.stateNode;if(4 &amp;n.flags)if(null===t)n.type!==n.elementType||Pd||(a.props!==n.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;),a.state!==n.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;)),a.componentDidMount();else{var o=n.elementType===n.type?t.memoizedProps:sc(n.type,t.memoizedProps),i=t.memoizedState;n.type!==n.elementType||Pd||(a.props!==n.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;),a.state!==n.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;)),a.componentDidUpdate(o,i,a.__reactInternalSnapshotBeforeUpdate)}var l=n.updateQueue;return void(null!==l &amp;&amp;(n.type!==n.elementType||Pd||(a.props!==n.memoizedProps &amp;&amp;s(&quot;Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;),a.state!==n.memoizedState &amp;&amp;s(&quot;Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.&quot;,We(n.type)||&quot;instance &quot;)),Uc(0,l,a)));case 3:var c=n.updateQueue;if(null!==c){var u=null;if(null!==n.child)switch(n.child.tag){case 5:case 1:u=n.child.stateNode}Uc(0,c,u)}return;case 5:return void(null===t &amp;&amp;4 &amp;n.flags &amp;&amp;(g=n.stateNode,S=n.type,w=n.memoizedProps,pl(S,w)&amp;&amp;g.focus()));case 6:case 4:return;case m:var f=n.memoizedProps.onRender,d=Rd();return void(&quot;function &quot;==typeof f &amp;&amp;f(n.memoizedProps.id,null===t?&quot;mount &quot;:&quot;update &quot;,n.actualDuration,n.treeBaseDuration,n.actualStartTime,d,e.memoizedInteractions));case h:return void function(e,t){if(null===t.memoizedState){var n=t.alternate;if(null!==n){var r=n.memoizedState;if(null!==r){var a=r.dehydrated;null!==a &amp;&amp;function(e){Ur(e)}(a)}}}}(0,n);case E:case y:case b:case 21:case N:case R:return}var g,S,w;throw Error(&quot;This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.&quot;)}function jp(e,t){for(var n=e;;){if(5===n.tag)t?El(n.stateNode):bl(n.stateNode,n.memoizedProps);else if(6===n.tag)n.stateNode.nodeValue=t?&quot;&quot;:n.memoizedProps;else if((n.tag!==N &amp;&amp;n.tag!==R||null===n.memoizedState||n===e)&amp;&amp;null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)return;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function Fp(e){var t=e.ref;if(null!==t){var n,r=e.stateNode;switch(e.tag){case 5:n=r;break;default:n=r}&quot;function &quot;==typeof t?t(n):(t.hasOwnProperty(&quot;current &quot;)||s(&quot;Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().&quot;,We(e.type)),t.current=n)}}function zp(e){var t=e.ref;null!==t &amp;&amp;(&quot;function &quot;==typeof t?t(null):t.current=null)}function Hp(e,t,n){switch(function(e){if(hs &amp;&amp;&quot;function &quot;==typeof hs.onCommitFiberUnmount)try{hs.onCommitFiberUnmount(ms,e)}catch(e){gs||(gs=!0,s(&quot;React instrumentation encountered an error: %s &quot;,e))}}(t),t.tag){case 0:case p:case g:case v:case T:var r=t.updateQueue;if(null!==r){var a=r.lastEffect;if(null!==a){var o=a.next,i=o;do{var l=i.destroy;void 0!==l &amp;&amp;(0!=(4 &amp;i.tag)?bh(t,i):Mp(t,l)),i=i.next}while(i!==o)}}return;case 1:Pp(t);var c=t.stateNode;return void(&quot;function &quot;==typeof c.componentWillUnmount &amp;&amp;function(e,t){qn(null,Lp,null,e,t),Jn()&amp;&amp;Oh(e,Qn())}(t,c));case 5:return void Pp(t);case 4:return void Xp(e,t);case b:case 18:case 21:return}}function Bp(e,t,n){for(var r=t;;)if(Hp(e,r),null===r.child||4===r.tag){if(r===t)return;for(;null===r.sibling;){if(null===r.return||r.return===t)return;r=r.return}r.sibling.return=r.return,r=r.sibling}else r.child.return=r,r=r.child}function Vp(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null,e._debugOwner=null}function Wp(e){return 5===e.tag||3===e.tag||4===e.tag}function Gp(e){var t,n,r=function(e){for(var t=e.return;null!==t;){if(Wp(t))return t;t=t.return}throw Error(&quot;Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.&quot;)}(e),a=r.stateNode;switch(r.tag){case 5:t=a,n=!1;break;case 3:case 4:t=a.containerInfo,n=!0;break;case b:default:throw Error(&quot;Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.&quot;)}16 &amp;r.flags &amp;&amp;(vl(t),r.flags &amp;=-17);var o=function(e){var t=e;e:for(;;){for(;null===t.sibling;){if(null===t.return||Wp(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;5!==t.tag &amp;&amp;6!==t.tag &amp;&amp;18!==t.tag;){if(2 &amp;t.flags)continue e;if(null===t.child||4===t.tag)continue e;t.child.return=t,t=t.child}if(!(2 &amp;t.flags))return t.stateNode}}(e);n?Yp(e,o,t):$p(e,o,t)}function Yp(e,t,n){var r=e.tag,a=5===r||6===r;if(a){var o=a?e.stateNode:e.stateNode.instance;t?function(e,t,n){8===e.nodeType?e.parentNode.insertBefore(t,n):e.insertBefore(t,n)}(n,o,t):function(e,t){var n;8===e.nodeType?(n=e.parentNode).insertBefore(t,e):(n=e).appendChild(t),null==e._reactRootContainer &amp;&amp;null===n.onclick &amp;&amp;Ki(n)}(n,o)}else if(4===r);else{var i=e.child;if(null!==i){Yp(i,t,n);for(var l=i.sibling;null!==l;)Yp(l,t,n),l=l.sibling}}}function $p(e,t,n){var r=e.tag,a=5===r||6===r;if(a){var o=a?e.stateNode:e.stateNode.instance;t?function(e,t,n){e.insertBefore(t,n)}(n,o,t):function(e,t){e.appendChild(t)}(n,o)}else if(4===r);else{var i=e.child;if(null!==i){$p(i,t,n);for(var l=i.sibling;null!==l;)$p(l,t,n),l=l.sibling}}}function Xp(e,t,n){for(var r,a,o,i,l=t,s=!1;;){if(!s){var c=l.return;e:for(;;){if(null===c)throw Error(&quot;Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.&quot;);var u=c.stateNode;switch(c.tag){case 5:r=u,a=!1;break e;case 3:case 4:r=u.containerInfo,a=!0;break e}c=c.return}s=!0}if(5===l.tag||6===l.tag)Bp(e,l),a?(i=l.stateNode,8===(o=r).nodeType?o.parentNode.removeChild(i):o.removeChild(i)):yl(r,l.stateNode);else if(4===l.tag){if(null!==l.child){r=l.stateNode.containerInfo,a=!0,l.child.return=l,l=l.child;continue}}else if(Hp(e,l),null!==l.child){l.child.return=l,l=l.child;continue}if(l===t)return;for(;null===l.sibling;){if(null===l.return||l.return===t)return;4===(l=l.return).tag &amp;&amp;(s=!1)}l.sibling.return=l.return,l=l.sibling}}function Kp(e,t,n){Xp(e,t);var r=t.alternate;Vp(t),null!==r &amp;&amp;Vp(r)}function qp(e,t){switch(t.tag){case 0:case p:case g:case v:case T:return void function(e,t){var n=t.updateQueue,r=null!==n?n.lastEffect:null;if(null!==r){var a=r.next,o=a;do{if(3==(3 &amp;o.tag)){var i=o.destroy;o.destroy=void 0,void 0!==i &amp;&amp;i()}o=o.next}while(o!==a)}}(0,t);case 1:return;case 5:var n=t.stateNode;if(null!=n){var r=t.memoizedProps,a=null!==e?e.memoizedProps:r,o=t.type,i=t.updateQueue;t.updateQueue=null,null!==i &amp;&amp;function(e,t,n,r,a,o){zl(e,a),function(e,t,n,r,a){switch(&quot;input &quot;===n &amp;&amp;&quot;radio &quot;===a.type &amp;&amp;null!=a.name &amp;&amp;ht(e,a),sn(n,r),function(e,t,n,r){for(var a=0;a &lt;t.length;a+=2){var o=t[a],i=t[a+1];o===Vi?rn(e,i):o===ji?zt(e,i):o===Bi?Ht(e,i):Q(e,o,i,r)}}(e,t,0,sn(n,a)),n){case &quot;input &quot;:gt(e,a);break;case &quot;textarea &quot;:_t(e,a);break;case &quot;select &quot;:!function(e,t){var n=e,r=n._wrapperState.wasMultiple;n._wrapperState.wasMultiple=!!t.multiple;var a=t.value;null!=a?Ot(n,!!t.multiple,a,!1):r!==!!t.multiple &amp;&amp;(null!=t.defaultValue?Ot(n,!!t.multiple,t.defaultValue,!0):Ot(n,!!t.multiple,t.multiple?[]:&quot;&quot;,!1))}(e,a)}}(e,t,n,r,a)}(n,i,o,a,r)}return;case 6:if(null===t.stateNode)throw Error(&quot;This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.&quot;);return void(t.stateNode.nodeValue=t.memoizedProps);case 3:var l=t.stateNode;return void(l.hydrate &amp;&amp;(l.hydrate=!1,Ur(l.containerInfo)));case m:return;case h:return function(e){null!==e.memoizedState &amp;&amp;(ym=Hs(),jp(e.child,!0))}(t),void Jp(t);case E:return void Jp(t);case y:return;case b:case 21:break;case N:case R:return void jp(t,null!==t.memoizedState)}throw Error(&quot;This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.&quot;)}function Jp(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n &amp;&amp;(n=e.stateNode=new _p),t.forEach(function(t){var r=Ah.bind(null,e,t);n.has(t)||(!0!==t.__reactDoNotTraceInteractions &amp;&amp;(r=a.unstable_wrap(r)),n.add(t),t.then(r,r))})}}function Qp(e){vl(e.stateNode)}if(&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for){var Zp=Symbol.for;Zp(&quot;selector.component &quot;),Zp(&quot;selector.has_pseudo_class &quot;),Zp(&quot;selector.role &quot;),Zp(&quot;selector.test_id &quot;),Zp(&quot;selector.text &quot;)}var em=[],tm=Math.ceil,nm=o.ReactCurrentDispatcher,rm=o.ReactCurrentOwner,am=o.IsSomeRendererActing,om=0,im=null,lm=null,sm=0,cm=0,um=ql(0),fm=0,dm=null,pm=0,mm=0,hm=0,gm=0,vm=null,ym=0,Em=Infinity;function bm(){Em=Hs()+500}function Tm(){return Em}var Nm=null,Rm=!1,Sm=null,wm=null,Om=!1,Cm=null,Am=90,Im=0,km=[],xm=[],_m=null,Lm=0,Pm=null,Mm=0,Dm=null,Um=ca,jm=0,Fm=0,zm=!1;function Hm(){return 0!=(48 &amp;om)?Hs():Um!==ca?Um:Um=Hs()}function Bm(e){var t,n,r=e.mode;if(0==(2 &amp;r))return 1;if(0==(4 &amp;r))return Bs()===_s?1:2;if(0===jm &amp;&amp;(jm=pm),0!==qs.transition)return 0!==Fm &amp;&amp;(Fm=null!==vm?vm.pendingLanes:0),t=jm,0===(n=ya(ta &amp;~Fm))&amp;&amp;0===(n=ya(ta &amp;~t))&amp;&amp;(n=ya(ta)),n;var a=Bs();return va(0!=(4 &amp;om)&amp;&amp;a===Ls?12:function(e){switch(e){case 99:return Qr;case 98:return Zr;case 97:case 96:return 8;case 95:return 2;default:return 0}}(a),jm)}function Vm(e,t,n){!function(){if(Lm &gt;50)throw Lm=0,Pm=null,Error(&quot;Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.&quot;);Mm &gt;50 &amp;&amp;(Mm=0,s(&quot;Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn &#039;t have a dependency array, or one of the dependencies changes on every render.&quot;))}(),function(e){if($e &amp;&amp;0!=(16 &amp;om)&amp;&amp;!ad)switch(e.tag){case 0:case p:case v:var t=lm &amp;&amp;We(lm.type)||&quot;Unknown &quot;,n=t;Lh.has(n)||(Lh.add(n),s(&quot;Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://reactjs.org/link/setstate-in-render &quot;,We(e.type)||&quot;Unknown &quot;,t,t));break;case 1:Ph||(s(&quot;Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state.&quot;),Ph=!0)}}(e);var r=Wm(e,t);if(null===r)return function(e){var t=e.tag;if((3===t||1===t||0===t||t===p||t===g||t===v||t===T)&amp;&amp;0==(e.flags &amp;lr)){var n=We(e.type)||&quot;ReactComponent &quot;;if(null!==_h){if(_h.has(n))return;_h.add(n)}else _h=new Set([n]);if(zm);else{var r=Ye;try{Je(e),s(&quot;Can &#039;t perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in %s.&quot;,1===t?&quot;the componentWillUnmount method &quot;:&quot;a useEffect cleanup function &quot;)}finally{r?Je(e):qe()}}}}(e),null;wa(r,t,n),r===im &amp;&amp;(hm=Na(hm,t),4===fm &amp;&amp;$m(r,sm));var a=Bs();1===t?0!=(8 &amp;om)&amp;&amp;0==(48 &amp;om)?(Vh(r,t),Xm(r)):(Gm(r,n),Vh(r,t),0===om &amp;&amp;(bm(),$s())):(0==(4 &amp;om)||a!==Ls &amp;&amp;a!==_s||(null===_m?_m=new Set([r]):_m.add(r)),Gm(r,n),Vh(r,t)),vm=r}function Wm(e,t){e.lanes=Na(e.lanes,t);var n=e.alternate;null!==n &amp;&amp;(n.lanes=Na(n.lanes,t)),null===n &amp;&amp;0!=(1026 &amp;e.flags)&amp;&amp;kh(e);for(var r=e,a=e.return;null!==a;)a.childLanes=Na(a.childLanes,t),null!==(n=a.alternate)?n.childLanes=Na(n.childLanes,t):0!=(1026 &amp;a.flags)&amp;&amp;kh(e),r=a,a=a.return;return 3===r.tag?r.stateNode:null}function Gm(e,t){var n=e.callbackNode;!function(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,a=e.expirationTimes,o=e.pendingLanes;o &gt;0;){var i=Ea(o),l=1 &lt;&lt;i,s=a[i];s===ca?0!=(l &amp;n)&amp;&amp;0==(l &amp;r)||(a[i]=pa(l,t)):s &lt;=t &amp;&amp;(e.expiredLanes|=l),o &amp;=~l}}(e,t);var r=da(e,e===im?sm:0),a=ua;if(0!==r){if(null!==n){if(e.callbackPriority===a)return;Ys(n)}var o,i;a===Qr?(i=Xm.bind(null,e),null===Us?(Us=[i],js=bs(Os,Xs)):Us.push(i),o=xs):o=14===a?Gs(_s,Xm.bind(null,e)):Gs(function(e){switch(e){case Qr:case 14:return 99;case 13:case 12:case 11:case Zr:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(&quot;Invalid update priority: &quot;+e+&quot;. This is a bug in React.&quot;)}}(a),Ym.bind(null,e)),e.callbackPriority=a,e.callbackNode=o}else null!==n &amp;&amp;(Ys(n),e.callbackNode=null,e.callbackPriority=0)}function Ym(e){if(Um=ca,jm=0,Fm=0,0!=(48 &amp;om))throw Error(&quot;Should not already be working.&quot;);var t=e.callbackNode;if(yh()&amp;&amp;e.callbackNode!==t)return null;var n=da(e,e===im?sm:0);if(0===n)return null;var r=function(e,t){var n=om;om|=16;var r=nh();im===e &amp;&amp;sm===t||(bm(),eh(e,t),Wh(e,t));for(var a=ah(e);;)try{ch();break}catch(t){th(e,t)}return gc(),oh(a),rh(r),om=n,null!==lm?0:(im=null,sm=0,fm)}(e,n);if(ba(pm,hm))eh(e,0);else if(0!==r){if(2===r &amp;&amp;(om|=64,e.hydrate &amp;&amp;(e.hydrate=!1,Tl(e.containerInfo)),0!==(n=ma(e))&amp;&amp;(r=lh(e,n))),1===r){var a=dm;throw eh(e,0),$m(e,n),Gm(e,Hs()),a}e.finishedWork=e.current.alternate,e.finishedLanes=n,function(e,t,n){switch(t){case 0:case 1:throw Error(&quot;Root did not complete. This is a bug in React.&quot;);case 2:ph(e);break;case 3:if($m(e,n),ga(n)&amp;&amp;!(Yh &gt;0)){var r=ym+500-Hs();if(r &gt;10){if(0!==da(e,0))break;var a=e.suspendedLanes;if(!Ta(a,n)){Hm(),Oa(e,a);break}e.timeoutHandle=hl(ph.bind(null,e),r);break}}ph(e);break;case 4:if($m(e,n),function(e){return(e &amp;ta)===e}(n))break;var o=function(e,t){for(var n=e.eventTimes,r=ca;t &gt;0;){var a=Ea(t),o=n[a];o &gt;r &amp;&amp;(r=o),t &amp;=~(1 &lt;&lt;a)}return r}(e,n),i=Hs()-o,l=((s=i)&lt;120?120:s &lt;480?480:s &lt;1080?1080:s &lt;1920?1920:s &lt;3e3?3e3:s &lt;4320?4320:1960*tm(s/1960))-i;if(l &gt;10){e.timeoutHandle=hl(ph.bind(null,e),l);break}ph(e);break;case 5:ph(e);break;default:throw Error(&quot;Unknown root exit status.&quot;)}var s}(e,r,n)}return Gm(e,Hs()),e.callbackNode===t?Ym.bind(null,e):null}function $m(e,t){t=Ra(t,gm),function(e,t){e.suspendedLanes|=t,e.pingedLanes &amp;=~t;for(var n=e.expirationTimes,r=t;r &gt;0;){var a=Ea(r),o=1 &lt;&lt;a;n[a]=ca,r &amp;=~o}}(e,t=Ra(t,hm))}function Xm(e){if(0!=(48 &amp;om))throw Error(&quot;Should not already be working.&quot;);var t,n;if(yh(),e===im &amp;&amp;ba(e.expiredLanes,sm)?(n=lh(e,t=sm),ba(pm,hm)&amp;&amp;(n=lh(e,t=da(e,t)))):n=lh(e,t=da(e,0)),0!==e.tag &amp;&amp;2===n &amp;&amp;(om|=64,e.hydrate &amp;&amp;(e.hydrate=!1,Tl(e.containerInfo)),0!==(t=ma(e))&amp;&amp;(n=lh(e,t))),1===n){var r=dm;throw eh(e,0),$m(e,t),Gm(e,Hs()),r}return e.finishedWork=e.current.alternate,e.finishedLanes=t,ph(e),Gm(e,Hs()),null}function Km(e,t){var n=om;om|=1;try{return e(t)}finally{0===(om=n)&amp;&amp;(bm(),$s())}}function qm(e,t){var n=om;om &amp;=-2,om|=8;try{return e(t)}finally{0===(om=n)&amp;&amp;(bm(),$s())}}function Jm(e,t){var n=om;if(0!=(48 &amp;n))return s(&quot;flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.&quot;),e(t);om|=1;try{return e?Ws(_s,e.bind(null,t)):void 0}finally{om=n,$s()}}function Qm(e,t){Ql(um,cm,e),cm=Na(cm,t),pm=Na(pm,t)}function Zm(e){cm=um.current,Jl(um,e)}function eh(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n &amp;&amp;(e.timeoutHandle=-1,gl(n)),null!==lm)for(var r=lm.return;null!==r;)Rp(r),r=r.return;im=e,lm=fg(e.current,null),sm=cm=pm=t,fm=0,dm=null,mm=0,hm=0,gm=0,Dm=null,Js.discardPendingWarnings()}function th(e,t){for(;;){var n=lm;try{if(gc(),Tf(),qe(),rm.current=null,null===n||null===n.return)return fm=1,dm=t,void(lm=null);8 &amp;n.mode &amp;&amp;Cd(n,!0),xp(e,n.return,n,t,sm),fh(n)}catch(e){t=e,lm===n &amp;&amp;null!==n?lm=n=n.return:n=lm;continue}return}}function nh(){var e=nm.current;return nm.current=ud,null===e?ud:e}function rh(e){nm.current=e}function ah(e){var t=a.__interactionsRef.current;return a.__interactionsRef.current=e.memoizedInteractions,t}function oh(e){a.__interactionsRef.current=e}function ih(e){mm=Na(e,mm)}function lh(e,t){var n=om;om|=16;var r=nh();im===e &amp;&amp;sm===t||(eh(e,t),Wh(e,t));for(var a=ah(e);;)try{sh();break}catch(t){th(e,t)}if(gc(),oh(a),om=n,rh(r),null!==lm)throw Error(&quot;Cannot commit an incomplete root. This error is likely caused by a bug in React. Please file an issue.&quot;);return im=null,sm=0,fm}function sh(){for(;null!==lm;)uh(lm)}function ch(){for(;null!==lm &amp;&amp;!Ms();)uh(lm)}function uh(e){var t,n=e.alternate;Je(e),0!=(8 &amp;e.mode)?(wd(e),t=xh(n,e,cm),Cd(e,!0)):t=xh(n,e,cm),qe(),e.memoizedProps=e.pendingProps,null===t?fh(e):lm=t,rm.current=null}function fh(e){var t=e;do{var n=t.alternate,r=t.return;if(0==(t.flags &amp;sr)){Je(t);var a=void 0;if(0==(8 &amp;t.mode)?a=Tp(n,t,cm):(wd(t),a=Tp(n,t,cm),Cd(t,!1)),qe(),null!==a)return void(lm=a);dh(t),null!==r &amp;&amp;0==(r.flags &amp;sr)&amp;&amp;(null===r.firstEffect &amp;&amp;(r.firstEffect=t.firstEffect),null!==t.lastEffect &amp;&amp;(null!==r.lastEffect &amp;&amp;(r.lastEffect.nextEffect=t.firstEffect),r.lastEffect=t.lastEffect),t.flags &gt;1 &amp;&amp;(null!==r.lastEffect?r.lastEffect.nextEffect=t:r.firstEffect=t,r.lastEffect=t))}else{var o=Np(t);if(null!==o)return o.flags &amp;=2047,void(lm=o);if(0!=(8 &amp;t.mode)){Cd(t,!1);for(var i=t.actualDuration,l=t.child;null!==l;)i+=l.actualDuration,l=l.sibling;t.actualDuration=i}null!==r &amp;&amp;(r.firstEffect=r.lastEffect=null,r.flags|=sr)}var s=t.sibling;if(null!==s)return void(lm=s);lm=t=r}while(null!==t);0===fm &amp;&amp;(fm=5)}function dh(e){if(e.tag!==R &amp;&amp;e.tag!==N||null===e.memoizedState||ba(cm,sa)||0==(4 &amp;e.mode)){var t=0;if(0!=(8 &amp;e.mode)){for(var n=e.actualDuration,r=e.selfBaseDuration,a=null===e.alternate||e.child!==e.alternate.child,o=e.child;null!==o;)t=Na(t,Na(o.lanes,o.childLanes)),a &amp;&amp;(n+=o.actualDuration),r+=o.treeBaseDuration,o=o.sibling;if(e.tag===h &amp;&amp;null!==e.memoizedState){var i=e.child;null!==i &amp;&amp;(r-=i.treeBaseDuration)}e.actualDuration=n,e.treeBaseDuration=r}else for(var l=e.child;null!==l;)t=Na(t,Na(l.lanes,l.childLanes)),l=l.sibling;e.childLanes=t}}function ph(e){var t=Bs();return Ws(_s,mh.bind(null,e,t)),null}function mh(e,t){do{yh()}while(null!==Cm);if(Js.flushLegacyContextWarning(),Js.flushPendingUnsafeLifecycleWarnings(),0!=(48 &amp;om))throw Error(&quot;Should not already be working.&quot;);var n=e.finishedWork,r=e.finishedLanes;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(&quot;Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.&quot;);e.callbackNode=null;var a,o,i,l,s,c,u,f=Na(n.lanes,n.childLanes);if(function(e,t){var n=e.pendingLanes &amp;~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes &amp;=t,e.mutableReadLanes &amp;=t,e.entangledLanes &amp;=t;for(var r=e.entanglements,a=e.eventTimes,o=e.expirationTimes,i=n;i &gt;0;){var l=Ea(i),s=1 &lt;&lt;l;r[l]=0,a[l]=ca,o[l]=ca,i &amp;=~s}}(e,f),null!==_m &amp;&amp;!function(e){return 0!=(24 &amp;e)}(f)&amp;&amp;_m.has(e)&amp;&amp;_m.delete(e),e===im &amp;&amp;(im=null,lm=null,sm=0),n.flags &gt;1?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){var d=om;om|=32;var p=ah(e);rm.current=null,fl=La,o=ni(),dl={focusedElem:o,selectionRange:ri(o)?(i=o,(&quot;selectionStart &quot;in i?{start:i.selectionStart,end:i.selectionEnd}:(u=(c=(s=(l=i).ownerDocument)&amp;&amp;s.defaultView||window).getSelection &amp;&amp;c.getSelection())&amp;&amp;0!==u.rangeCount?function(e,t,n,r,a){var o=0,i=-1,l=-1,s=0,c=0,u=e,f=null;e:for(;;){for(var d=null;u!==t||0!==n &amp;&amp;3!==u.nodeType||(i=o+n),u!==r||0!==a &amp;&amp;3!==u.nodeType||(l=o+a),3===u.nodeType &amp;&amp;(o+=u.nodeValue.length),null!==(d=u.firstChild);)f=u,u=d;for(;;){if(u===e)break e;if(f===t &amp;&amp;++s===n &amp;&amp;(i=o),f===r &amp;&amp;++c===a &amp;&amp;(l=o),null!==(d=u.nextSibling))break;f=(u=f).parentNode}u=d}return-1===i||-1===l?null:{start:i,end:l}}(l,u.anchorNode,u.anchorOffset,u.focusNode,u.focusOffset):null)||{start:0,end:0}):null},Pa(!1),Nm=a;do{if(qn(null,hh,null),Jn()){if(null===Nm)throw Error(&quot;Should be working on an effect.&quot;);var m=Qn();Oh(Nm,m),Nm=Nm.nextEffect}}while(null!==Nm);Sd(),Nm=a;do{if(qn(null,gh,null,e,t),Jn()){if(null===Nm)throw Error(&quot;Should be working on an effect.&quot;);var h=Qn();Oh(Nm,h),Nm=Nm.nextEffect}}while(null!==Nm);(function(e){var t=ni(),n=e.focusedElem,r=e.selectionRange;if(t!==n &amp;&amp;ei(n)){null!==r &amp;&amp;ri(n)&amp;&amp;function(e,t){var n=t.start,r=t.end;void 0===r &amp;&amp;(r=n),&quot;selectionStart &quot;in e?(e.selectionStart=n,e.selectionEnd=Math.min(r,e.value.length)):function(e,t){var n=e.ownerDocument||document,r=n &amp;&amp;n.defaultView||window;if(r.getSelection){var a=r.getSelection(),o=e.textContent.length,i=Math.min(t.start,o),l=void 0===t.end?i:Math.min(t.end,o);if(!a.extend &amp;&amp;i &gt;l){var s=l;l=i,i=s}var c=Jo(e,i),u=Jo(e,l);if(c &amp;&amp;u){if(1===a.rangeCount &amp;&amp;a.anchorNode===c.node &amp;&amp;a.anchorOffset===c.offset &amp;&amp;a.focusNode===u.node &amp;&amp;a.focusOffset===u.offset)return;var f=n.createRange();f.setStart(c.node,c.offset),a.removeAllRanges(),i &gt;l?(a.addRange(f),a.extend(u.node,u.offset)):(f.setEnd(u.node,u.offset),a.addRange(f))}}}(e,t)}(n,r);for(var a=[],o=n;o=o.parentNode;)1===o.nodeType &amp;&amp;a.push({element:o,left:o.scrollLeft,top:o.scrollTop});&quot;function &quot;==typeof n.focus &amp;&amp;n.focus();for(var i=0;i &lt;a.length;i++){var l=a[i];l.element.scrollLeft=l.left,l.element.scrollTop=l.top}}})(dl),Pa(fl),fl=null,dl=null,e.current=n,Nm=a;do{if(qn(null,vh,null,e,r),Jn()){if(null===Nm)throw Error(&quot;Should be working on an effect.&quot;);var g=Qn();Oh(Nm,g),Nm=Nm.nextEffect}}while(null!==Nm);Nm=null,Ds(),oh(p),om=d}else e.current=n,Sd();var v=Om;if(Om)Om=!1,Cm=e,Im=r,Am=t;else for(Nm=a;null!==Nm;){var y=Nm.nextEffect;Nm.nextEffect=null,8 &amp;Nm.flags &amp;&amp;$h(Nm),Nm=y}if(0!==(f=e.pendingLanes)){if(null!==Dm){var E=Dm;Dm=null;for(var b=0;b &lt;E.length;b++)Bh(e,E[b],e.memoizedInteractions)}Vh(e,f)}else wm=null;if(v||Gh(e,r),1===f?e===Pm?Lm++:(Lm=0,Pm=e):Lm=0,ys(n.stateNode,t),em.forEach(function(e){return e()}),Gm(e,Hs()),Rm){Rm=!1;var T=Sm;throw Sm=null,T}return 0!=(8 &amp;om)||$s(),null}function hh(){for(;null!==Nm;){var e=Nm.alternate,t=Nm.flags;0!=(t &amp;ir)&amp;&amp;(Je(Nm),Dp(e,Nm),qe()),0!=(512 &amp;t)&amp;&amp;(Om||(Om=!0,Gs(Ps,function(){return yh(),null}))),Nm=Nm.nextEffect}}function gh(e,t){for(;null!==Nm;){Je(Nm);var n=Nm.flags;if(16 &amp;n &amp;&amp;Qp(Nm),n &amp;or){var r=Nm.alternate;null!==r &amp;&amp;zp(r)}switch(1038 &amp;n){case 2:Gp(Nm),Nm.flags &amp;=-3;break;case 6:Gp(Nm),Nm.flags &amp;=-3,qp(Nm.alternate,Nm);break;case 1024:Nm.flags &amp;=-1025;break;case 1028:Nm.flags &amp;=-1025,qp(Nm.alternate,Nm);break;case 4:qp(Nm.alternate,Nm);break;case 8:Kp(e,Nm)}qe(),Nm=Nm.nextEffect}}function vh(e,t){for(;null!==Nm;){Je(Nm);var n=Nm.flags;36 &amp;n &amp;&amp;Up(e,Nm.alternate,Nm),n &amp;or &amp;&amp;Fp(Nm),qe(),Nm=Nm.nextEffect}}function yh(){if(90!==Am){var e=Am &gt;Ps?Ps:Am;return Am=90,Ws(e,Nh)}return!1}function Eh(e,t){km.push(t,e),Om||(Om=!0,Gs(Ps,function(){return yh(),null}))}function bh(e,t){xm.push(t,e),e.flags|=lr;var n=e.alternate;null!==n &amp;&amp;(n.flags|=lr),Om||(Om=!0,Gs(Ps,function(){return yh(),null}))}function Th(e){e.destroy=(0,e.create)()}function Nh(){if(null===Cm)return!1;var e=Cm,t=Im;if(Cm=null,Im=0,0!=(48 &amp;om))throw Error(&quot;Cannot flush passive effects while already rendering.&quot;);zm=!0;var n=om;om|=32;var r=ah(e),a=xm;xm=[];for(var o=0;o &lt;a.length;o+=2){var i=a[o],l=a[o+1],s=i.destroy;i.destroy=void 0,l.flags &amp;=-8193;var c=l.alternate;if(null!==c &amp;&amp;(c.flags &amp;=-8193),&quot;function &quot;==typeof s){if(Je(l),qn(null,s,null),Jn()){if(null===l)throw Error(&quot;Should be working on an effect.&quot;);Oh(l,Qn())}qe()}}var u=km;km=[];for(var f=0;f &lt;u.length;f+=2){var d=u[f],p=u[f+1];if(Je(p),qn(null,Th,null,d),Jn()){if(null===p)throw Error(&quot;Should be working on an effect.&quot;);Oh(p,Qn())}qe()}for(var m=e.current.firstEffect;null!==m;){var h=m.nextEffect;m.nextEffect=null,8 &amp;m.flags &amp;&amp;$h(m),m=h}return oh(r),Gh(e,t),zm=!1,om=n,$s(),Mm=null===Cm?0:Mm+1,!0}function Rh(e){return null!==wm &amp;&amp;wm.has(e)}var Sh=function(e){Rm||(Rm=!0,Sm=e)};function wh(e,t,n){kc(e,Ap(e,Sp(n,t),1));var r=Hm(),a=Wm(e,1);null!==a &amp;&amp;(wa(a,1,r),Gm(a,r),Vh(a,1))}function Oh(e,t){if(3!==e.tag)for(var n=e.return;null!==n;){if(3===n.tag)return void wh(n,e,t);if(1===n.tag){var r=n.stateNode;if(&quot;function &quot;==typeof n.type.getDerivedStateFromError||&quot;function &quot;==typeof r.componentDidCatch &amp;&amp;!Rh(r)){var a=Sp(t,e);kc(n,Ip(n,a,1));var o=Hm(),i=Wm(n,1);if(null!==i)wa(i,1,o),Gm(i,o),Vh(i,1);else if(&quot;function &quot;==typeof r.componentDidCatch &amp;&amp;!Rh(r))try{r.componentDidCatch(t,a)}catch(e){}return}}n=n.return}else wh(e,e,t)}function Ch(e,t,n){var r=e.pingCache;null!==r &amp;&amp;r.delete(t);var a=Hm();Oa(e,n),im===e &amp;&amp;Ta(sm,n)&amp;&amp;(4===fm||3===fm &amp;&amp;ga(sm)&amp;&amp;Hs()-ym &lt;500?eh(e,0):gm=Na(gm,n)),Gm(e,a),Vh(e,n)}function Ah(e,t){var n;null!==(n=e.stateNode)&amp;&amp;n.delete(t),function(e,t){var n,r;0===t &amp;&amp;(t=0==(2 &amp;(r=e.mode))?1:0==(4 &amp;r)?Bs()===_s?1:2:(0===jm &amp;&amp;(jm=pm),0===(n=ya(na &amp;~jm))&amp;&amp;(n=ya(na)),n));var a=Hm(),o=Wm(e,t);null!==o &amp;&amp;(wa(o,t,a),Gm(o,a),Vh(o,t))}(e,0)}var Ih=null;function kh(e){if(0==(16 &amp;om)&amp;&amp;6 &amp;e.mode){var t=e.tag;if(2===t||3===t||1===t||0===t||t===p||t===g||t===v||t===T){var n=We(e.type)||&quot;ReactComponent &quot;;if(null!==Ih){if(Ih.has(n))return;Ih.add(n)}else Ih=new Set([n]);var r=Ye;try{Je(e),s(&quot;Can &#039;t perform a React state update on a component that hasn &#039;t mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead.&quot;)}finally{r?Je(e):qe()}}}}var xh,_h=null;xh=function(e,t,n){var r=Eg(null,t);try{return vp(e,t,n)}catch(a){if(null!==a &amp;&amp;&quot;object &quot;==typeof a &amp;&amp;&quot;function &quot;==typeof a.then)throw a;if(gc(),Tf(),Rp(t),Eg(t,r),8 &amp;t.mode &amp;&amp;wd(t),qn(null,vp,null,e,t,n),Jn())throw Qn();throw a}};var Lh,Ph=!1;Lh=new Set;var Mh={current:!1};function Dh(e){if(!0===am.current &amp;&amp;!0!==Mh.current){var t=Ye;try{Je(e),s(&quot;It looks like you &#039;re using the wrong act() around your test interactions.\nBe sure to use the matching version of act() corresponding to your renderer:\n\n// for react-dom:\nimport {act} from &#039;react-dom/test-utils &#039;;\n// ...\nact(() =&gt;...);\n\n// for react-test-renderer:\nimport TestRenderer from react-test-renderer &#039;;\nconst {act} = TestRenderer;\n// ...\nact(() =&gt;...);&quot;)}finally{t?Je(e):qe()}}}function Uh(e){0!=(1 &amp;e.mode)&amp;&amp;!1===am.current &amp;&amp;!1===Mh.current &amp;&amp;s(&quot;An update to %s ran an effect, but was not wrapped in act(...).\n\nWhen testing, code that causes React state updates should be wrapped into act(...):\n\nact(() =&gt;{\n  /* fire events that update state */\n});\n/* assert on the output */\n\nThis ensures that you &#039;re testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act &quot;,We(e.type))}var jh=function(e){if(0===om &amp;&amp;!1===am.current &amp;&amp;!1===Mh.current){var t=Ye;try{Je(e),s(&quot;An update to %s inside a test was not wrapped in act(...).\n\nWhen testing, code that causes React state updates should be wrapped into act(...):\n\nact(() =&gt;{\n  /* fire events that update state */\n});\n/* assert on the output */\n\nThis ensures that you &#039;re testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act &quot;,We(e.type))}finally{t?Je(e):qe()}}},Fh=!1;function zh(e,t){return 1e3*t+e.interactionThreadID}function Hh(e){null===Dm?Dm=[e]:Dm.push(e)}function Bh(e,t,n){if(n.size &gt;0){var r=e.pendingInteractionMap,o=r.get(t);null!=o?n.forEach(function(e){o.has(e)||e.__count++,o.add(e)}):(r.set(t,new Set(n)),n.forEach(function(e){e.__count++}));var i=a.__subscriberRef.current;if(null!==i){var l=zh(e,t);i.onWorkScheduled(n,l)}}}function Vh(e,t){Bh(e,t,a.__interactionsRef.current)}function Wh(e,t){var n=new Set;if(e.pendingInteractionMap.forEach(function(e,r){ba(t,r)&amp;&amp;e.forEach(function(e){return n.add(e)})}),e.memoizedInteractions=n,n.size &gt;0){var r=a.__subscriberRef.current;if(null!==r){var o=zh(e,t);try{r.onWorkStarted(n,o)}catch(e){Gs(_s,function(){throw e})}}}}function Gh(e,t){var n,r=e.pendingLanes;try{if(null!==(n=a.__subscriberRef.current)&amp;&amp;e.memoizedInteractions.size &gt;0){var o=zh(e,t);n.onWorkStopped(e.memoizedInteractions,o)}}catch(e){Gs(_s,function(){throw e})}finally{var i=e.pendingInteractionMap;i.forEach(function(e,t){ba(r,t)||(i.delete(t),e.forEach(function(e){if(e.__count--,null!==n &amp;&amp;0===e.__count)try{n.onInteractionScheduledWorkCompleted(e)}catch(e){Gs(_s,function(){throw e})}}))})}}var Yh=0;function $h(e){e.sibling=null,e.stateNode=null}var Xh,Kh=null,qh=null;function Jh(e){if(null===Kh)return e;var t=Kh(e);return void 0===t?e:t.current}function Qh(e){return Jh(e)}function Zh(e){if(null===Kh)return e;var t=Kh(e);if(void 0===t){if(null!=e &amp;&amp;&quot;function &quot;==typeof e.render){var n=Jh(e.render);if(e.render!==n){var r={$$typeof:ie,render:n};return void 0!==e.displayName &amp;&amp;(r.displayName=e.displayName),r}}return e}return t.current}function eg(e,t){if(null===Kh)return!1;var n=e.elementType,r=t.type,a=!1,o=&quot;object &quot;==typeof r &amp;&amp;null!==r?r.$$typeof:null;switch(e.tag){case 1:&quot;function &quot;==typeof r &amp;&amp;(a=!0);break;case 0:(&quot;function &quot;==typeof r||o===ue)&amp;&amp;(a=!0);break;case p:(o===ie||o===ue)&amp;&amp;(a=!0);break;case g:case v:(o===ce||o===ue)&amp;&amp;(a=!0);break;default:return!1}if(a){var i=Kh(n);if(void 0!==i &amp;&amp;i===Kh(r))return!0}return!1}function tg(e){null!==Kh &amp;&amp;&quot;function &quot;==typeof WeakSet &amp;&amp;(null===qh &amp;&amp;(qh=new WeakSet),qh.add(e))}function ng(e,t,n){var r=e.alternate,a=e.child,o=e.sibling,i=e.tag,l=e.type,s=null;switch(i){case 0:case v:case 1:s=l;break;case p:s=l.render}if(null===Kh)throw new Error(&quot;Expected resolveFamily to be set during hot reload.&quot;);var c=!1,u=!1;if(null!==s){var f=Kh(s);void 0!==f &amp;&amp;(n.has(f)?u=!0:t.has(f)&amp;&amp;(1===i?u=!0:c=!0))}null!==qh &amp;&amp;(qh.has(e)||null!==r &amp;&amp;qh.has(r))&amp;&amp;(u=!0),u &amp;&amp;(e._debugNeedsRemount=!0),(u||c)&amp;&amp;Vm(e,1,ca),null===a||u||ng(a,t,n),null!==o &amp;&amp;ng(o,t,n)}function rg(e,t,n){var r=e.child,a=e.sibling,o=e.type,i=null;switch(e.tag){case 0:case v:case 1:i=o;break;case p:i=o.render}var l=!1;null!==i &amp;&amp;t.has(i)&amp;&amp;(l=!0),l?function(e,t){if(!function(e,t){for(var n=e,r=!1;;){if(5===n.tag)r=!0,t.add(n.stateNode);else if(null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)return r;for(;null===n.sibling;){if(null===n.return||n.return===e)return r;n=n.return}n.sibling.return=n.return,n=n.sibling}return!1}(e,t))for(var n=e;;){switch(n.tag){case 5:return void t.add(n.stateNode);case 4:case 3:return void t.add(n.stateNode.containerInfo)}if(null===n.return)throw new Error(&quot;Expected to reach root first.&quot;);n=n.return}}(e,n):null!==r &amp;&amp;rg(r,t,n),null!==a &amp;&amp;rg(a,t,n)}Xh=!1;try{var ag=Object.preventExtensions({});new Map([[ag,null]]),new Set([ag])}catch(e){Xh=!0}var og=1;function ig(e,t,n,r){this.tag=e,this.key=n,this.elementType=null,this.type=null,this.stateNode=null,this.return=null,this.child=null,this.sibling=null,this.index=0,this.ref=null,this.pendingProps=t,this.memoizedProps=null,this.updateQueue=null,this.memoizedState=null,this.dependencies=null,this.mode=r,this.flags=0,this.nextEffect=null,this.firstEffect=null,this.lastEffect=null,this.lanes=0,this.childLanes=0,this.alternate=null,this.actualDuration=Number.NaN,this.actualStartTime=Number.NaN,this.selfBaseDuration=Number.NaN,this.treeBaseDuration=Number.NaN,this.actualDuration=0,this.actualStartTime=-1,this.selfBaseDuration=0,this.treeBaseDuration=0,this._debugID=og++,this._debugSource=null,this._debugOwner=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,Xh||&quot;function &quot;!=typeof Object.preventExtensions||Object.preventExtensions(this)}var lg,sg,cg=function(e,t,n,r){return new ig(e,t,n,r)};function ug(e){var t=e.prototype;return!(!t||!t.isReactComponent)}function fg(e,t){var n=e.alternate;null===n?((n=cg(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n._debugID=e._debugID,n._debugSource=e._debugSource,n._debugOwner=e._debugOwner,n._debugHookTypes=e._debugHookTypes,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null,n.actualDuration=0,n.actualStartTime=-1),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue;var r=e.dependencies;switch(n.dependencies=null===r?null:{lanes:r.lanes,firstContext:r.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.selfBaseDuration=e.selfBaseDuration,n.treeBaseDuration=e.treeBaseDuration,n._debugNeedsRemount=e._debugNeedsRemount,n.tag){case 2:case 0:case v:n.type=Jh(e.type);break;case 1:n.type=Qh(e.type);break;case p:n.type=Zh(e.type)}return n}function dg(e,t){e.flags &amp;=2,e.nextEffect=null,e.firstEffect=null,e.lastEffect=null;var n=e.alternate;if(null===n)e.childLanes=0,e.lanes=t,e.child=null,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null,e.selfBaseDuration=0,e.treeBaseDuration=0;else{e.childLanes=n.childLanes,e.lanes=n.lanes,e.child=n.child,e.memoizedProps=n.memoizedProps,e.memoizedState=n.memoizedState,e.updateQueue=n.updateQueue,e.type=n.type;var r=n.dependencies;e.dependencies=null===r?null:{lanes:r.lanes,firstContext:r.firstContext},e.selfBaseDuration=n.selfBaseDuration,e.treeBaseDuration=n.treeBaseDuration}return e}function pg(e,t,n,r,a,o){var i=2,l=e;if(&quot;function &quot;==typeof e)ug(e)?(i=1,l=Qh(l)):l=Jh(l);else if(&quot;string &quot;==typeof e)i=5;else e:switch(e){case te:return hg(n.children,a,o,t);case he:i=8,a|=16;break;case ne:i=8,a|=1;break;case re:return function(e,t,n,r){&quot;string &quot;!=typeof e.id &amp;&amp;s(&#039;Profiler must specify an &quot;id &quot;as a prop &#039;);var a=cg(m,e,r,8|t);return a.elementType=re,a.type=re,a.lanes=n,a.stateNode={effectDuration:0,passiveEffectDuration:0},a}(n,a,o,t);case le:return function(e,t,n,r){var a=cg(h,e,r,t);return a.type=le,a.elementType=le,a.lanes=n,a}(n,a,o,t);case se:return function(e,t,n,r){var a=cg(E,e,r,t);return a.type=se,a.elementType=se,a.lanes=n,a}(n,a,o,t);case ge:return gg(n,a,o,t);case ve:return function(e,t,n,r){var a=cg(R,e,r,t);return a.type=ve,a.elementType=ve,a.lanes=n,a}(n,a,o,t);case de:default:if(&quot;object &quot;==typeof e &amp;&amp;null!==e)switch(e.$$typeof){case ae:i=d;break e;case oe:i=9;break e;case ie:i=p,l=Zh(l);break e;case ce:i=g;break e;case ue:i=16,l=null;break e;case fe:i=T;break e}var c=&quot;&quot;;(void 0===e||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;0===Object.keys(e).length)&amp;&amp;(c+=&quot;You likely forgot to export your component from the file it &#039;s defined in, or you might have mixed up default and named imports.&quot;);var u=r?We(r.type):null;throw u &amp;&amp;(c+=&quot;\n\nCheck the render method of `&quot;+u+&quot;`.&quot;),Error(&quot;Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: &quot;+(null==e?e:typeof e)+&quot;.&quot;+c)}var f=cg(i,n,t,a);return f.elementType=e,f.type=l,f.lanes=o,f._debugOwner=r,f}function mg(e,t,n){var r=pg(e.type,e.key,e.props,e._owner,t,n);return r._debugSource=e._source,r._debugOwner=e._owner,r}function hg(e,t,n,r){var a=cg(7,e,r,t);return a.lanes=n,a}function gg(e,t,n,r){var a=cg(N,e,r,t);return a.type=ge,a.elementType=ge,a.lanes=n,a}function vg(e,t,n){var r=cg(6,e,null,t);return r.lanes=n,r}function yg(e,t,n){var r=cg(4,null!==e.children?e.children:[],e.key,t);return r.lanes=n,r.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},r}function Eg(e,t){return null===e &amp;&amp;(e=cg(2,null,null,0)),e.tag=t.tag,e.key=t.key,e.elementType=t.elementType,e.type=t.type,e.stateNode=t.stateNode,e.return=t.return,e.child=t.child,e.sibling=t.sibling,e.index=t.index,e.ref=t.ref,e.pendingProps=t.pendingProps,e.memoizedProps=t.memoizedProps,e.updateQueue=t.updateQueue,e.memoizedState=t.memoizedState,e.dependencies=t.dependencies,e.mode=t.mode,e.flags=t.flags,e.nextEffect=t.nextEffect,e.firstEffect=t.firstEffect,e.lastEffect=t.lastEffect,e.lanes=t.lanes,e.childLanes=t.childLanes,e.alternate=t.alternate,e.actualDuration=t.actualDuration,e.actualStartTime=t.actualStartTime,e.selfBaseDuration=t.selfBaseDuration,e.treeBaseDuration=t.treeBaseDuration,e._debugID=t._debugID,e._debugSource=t._debugSource,e._debugOwner=t._debugOwner,e._debugNeedsRemount=t._debugNeedsRemount,e._debugHookTypes=t._debugHookTypes,e}function bg(e,t,n){switch(this.tag=t,this.containerInfo=e,this.pendingChildren=null,this.current=null,this.pingCache=null,this.finishedWork=null,this.timeoutHandle=-1,this.context=null,this.pendingContext=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Sa(0),this.expirationTimes=Sa(ca),this.pendingLanes=0,this.suspendedLanes=0,this.pingedLanes=0,this.expiredLanes=0,this.mutableReadLanes=0,this.finishedLanes=0,this.entangledLanes=0,this.entanglements=Sa(0),this.mutableSourceEagerHydrationData=null,this.interactionThreadID=a.unstable_getThreadID(),this.memoizedInteractions=new Set,this.pendingInteractionMap=new Map,t){case 1:this._debugRootType=&quot;createBlockingRoot()&quot;;break;case 2:this._debugRootType=&quot;createRoot()&quot;;break;case 0:this._debugRootType=&quot;createLegacyRoot()&quot;}}function Tg(e,t){var n=(0,t._getVersion)(t._source);null==e.mutableSourceEagerHydrationData?e.mutableSourceEagerHydrationData=[t,n]:e.mutableSourceEagerHydrationData.push(t,n)}function Ng(e,t,n){var r=arguments.length &gt;3 &amp;&amp;void 0!==arguments[3]?arguments[3]:null;return{$$typeof:ee,key:null==r?null:&quot;&quot;+r,children:e,containerInfo:t,implementation:n}}function Rg(e,t,n,a){!function(e,t){if(hs &amp;&amp;&quot;function &quot;==typeof hs.onScheduleFiberRoot)try{hs.onScheduleFiberRoot(ms,e,t)}catch(e){gs||(gs=!0,s(&quot;React instrumentation encountered an error: %s &quot;,e))}}(t,e);var o,i=t.current,l=Hm();&quot;undefined &quot;!=typeof jest &amp;&amp;(o=i,!1===Fh &amp;&amp;void 0===r.unstable_flushAllWithoutAsserting &amp;&amp;(2 &amp;o.mode||4 &amp;o.mode)&amp;&amp;(Fh=!0,s(&quot;In Concurrent or Sync modes, the \&quot;scheduler\&quot;module needs to be mocked to guarantee consistent behaviour across tests and browsers. For example, with jest: \njest.mock(&#039;scheduler &#039;, () =&gt;require(&#039;scheduler/unstable_mock &#039;));\n\nFor more info, visit https://reactjs.org/link/mock-scheduler &quot;)),Dh(i));var c=Bm(i),u=function(e){if(!e)return Zl;var t=Zn(e),n=function(e){if(!function(e){return dr(e)===e}(e)||1!==e.tag)throw Error(&quot;Expected subtree parent to be a mounted class component. This error is likely caused by a bug in React. Please file an issue.&quot;);var t=e;do{switch(t.tag){case 3:return t.stateNode.context;case 1:if(ls(t.type))return t.stateNode.__reactInternalMemoizedMergedChildContext}t=t.return}while(null!==t);throw Error(&quot;Found unexpected detached subtree parent. This error is likely caused by a bug in React. Please file an issue.&quot;)}(t);if(1===t.tag){var r=t.type;if(ls(r))return fs(t,r,n)}return n}(n);null===t.context?t.context=u:t.pendingContext=u,$e &amp;&amp;null!==Ye &amp;&amp;!lg &amp;&amp;(lg=!0,s(&quot;Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.\n\nCheck the render method of %s.&quot;,We(Ye.type)||&quot;Unknown &quot;));var f=Ic(l,c);return f.payload={element:e},null!==(a=void 0===a?null:a)&amp;&amp;(&quot;function &quot;!=typeof a &amp;&amp;s(&quot;render(...): Expected the last optional `callback` argument to be a function. Instead received: %s.&quot;,a),f.callback=a),kc(i,f),Vm(i,c,l),c}function Sg(e){var t=e.current;if(!t.child)return null;switch(t.child.tag){case 5:default:return t.child.stateNode}}function wg(e,t){var n=e.memoizedState;null!==n &amp;&amp;null!==n.dehydrated &amp;&amp;(n.retryLane=function(e,t){return 0!==e &amp;&amp;e &lt;t?e:t}(n.retryLane,t))}function Og(e,t){wg(e,t);var n=e.alternate;n &amp;&amp;wg(n,t)}function Cg(e){var t=function(e){var t=gr(e);if(!t)return null;for(var n=t;;){if(5===n.tag||6===n.tag)return n;if(n.child &amp;&amp;4!==n.tag)n.child.return=n,n=n.child;else{if(n===t)return null;for(;!n.sibling;){if(!n.return||n.return===t)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}}return null}(e);return null===t?null:t.tag===b?t.stateNode.instance:t.stateNode}lg=!1,sg={};var Ag,Ig,kg,xg,_g,Lg,Pg,Mg,Dg=function(e){return!1},Ug=function(e,t,r){var a=t[r],o=Array.isArray(e)?e.slice():n({},e);return r+1===t.length?(Array.isArray(o)?o.splice(a,1):delete o[a],o):(o[a]=Ug(e[a],t,r+1),o)},jg=function(e,t){return Ug(e,t,0)},Fg=function(e,t,r,a){var o=t[a],i=Array.isArray(e)?e.slice():n({},e);return a+1===t.length?(i[r[a]]=i[o],Array.isArray(i)?i.splice(o,1):delete i[o]):i[o]=Fg(e[o],t,r,a+1),i},zg=function(e,t,n){if(t.length===n.length){for(var r=0;r &lt;n.length-1;r++)if(t[r]!==n[r])return void i(&quot;copyWithRename() expects paths to be the same except for the deepest key &quot;);return Fg(e,t,n,0)}i(&quot;copyWithRename() expects paths of the same length &quot;)},Hg=function(e,t,r,a){if(r &gt;=t.length)return a;var o=t[r],i=Array.isArray(e)?e.slice():n({},e);return i[o]=Hg(e[o],t,r+1,a),i},Bg=function(e,t,n){return Hg(e,t,0,n)},Vg=function(e,t){for(var n=e.memoizedState;null!==n &amp;&amp;t &gt;0;)n=n.next,t--;return n};function Wg(e,t,n){this._internalRoot=function(e,t,n){var r=null!=n &amp;&amp;null!=n.hydrationOptions &amp;&amp;n.hydrationOptions.mutableSources||null,a=function(e,t,n,r){return function(e,t,n,r){var a=new bg(e,t,n),o=function(e){var t;return t=2===e?7:1===e?3:0,vs &amp;&amp;(t|=8),cg(3,null,null,t)}(t);return a.current=o,o.stateNode=a,Cc(o),a}(e,t,n)}(e,t,null!=n &amp;&amp;!0===n.hydrate);if(function(e,t){t[xl]=e}(a.current,e),vi(8===e.nodeType?e.parentNode:e),r)for(var o=0;o &lt;r.length;o++)Tg(a,r[o]);return a}(e,t,n)}function Gg(e){return!(!e||1!==e.nodeType &amp;&amp;9!==e.nodeType &amp;&amp;11!==e.nodeType &amp;&amp;(8!==e.nodeType||&quot;react-mount-point-unstable &quot;!==e.nodeValue))}Ag=function(e,t,r,a){var o=Vg(e,t);if(null!==o){var i=Bg(o.memoizedState,r,a);o.memoizedState=i,o.baseState=i,e.memoizedProps=n({},e.memoizedProps),Vm(e,1,ca)}},Ig=function(e,t,r){var a=Vg(e,t);if(null!==a){var o=jg(a.memoizedState,r);a.memoizedState=o,a.baseState=o,e.memoizedProps=n({},e.memoizedProps),Vm(e,1,ca)}},kg=function(e,t,r,a){var o=Vg(e,t);if(null!==o){var i=zg(o.memoizedState,r,a);o.memoizedState=i,o.baseState=i,e.memoizedProps=n({},e.memoizedProps),Vm(e,1,ca)}},xg=function(e,t,n){e.pendingProps=Bg(e.memoizedProps,t,n),e.alternate &amp;&amp;(e.alternate.pendingProps=e.pendingProps),Vm(e,1,ca)},_g=function(e,t){e.pendingProps=jg(e.memoizedProps,t),e.alternate &amp;&amp;(e.alternate.pendingProps=e.pendingProps),Vm(e,1,ca)},Lg=function(e,t,n){e.pendingProps=zg(e.memoizedProps,t,n),e.alternate &amp;&amp;(e.alternate.pendingProps=e.pendingProps),Vm(e,1,ca)},Pg=function(e){Vm(e,1,ca)},Mg=function(e){Dg=e},Wg.prototype.render=function(e){var t=this._internalRoot;&quot;function &quot;==typeof arguments[1]&amp;&amp;s(&quot;render(...): does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().&quot;);var n=t.containerInfo;if(8!==n.nodeType){var r=Cg(t.current);r &amp;&amp;r.parentNode!==n &amp;&amp;s(&quot;render(...): It looks like the React-rendered content of the root container was removed without using React. This is not supported and will cause errors. Instead, call root.unmount() to empty a root &#039;s container.&quot;)}Rg(e,t,null,null)},Wg.prototype.unmount=function(){&quot;function &quot;==typeof arguments[0]&amp;&amp;s(&quot;unmount(...): does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().&quot;);var e=this._internalRoot,t=e.containerInfo;Rg(null,e,null,function(){Pl(t)})};var Yg,$g=o.ReactCurrentOwner,Xg=!1;function Kg(e){return e?9===e.nodeType?e.documentElement:e.firstChild:null}function qg(e,t,n,r,a){Yg(n),function(e,t){null!==e &amp;&amp;&quot;function &quot;!=typeof e &amp;&amp;s(&quot;%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.&quot;,&quot;render &quot;,e)}(void 0===a?null:a);var o,l=n._reactRootContainer;if(l){if(&quot;function &quot;==typeof a){var c=a;a=function(){var e=Sg(o);c.call(e)}}Rg(t,o=l._internalRoot,e,a)}else{if(l=n._reactRootContainer=function(e,t){var n=t||function(e){var t=Kg(e);return!(!t||1!==t.nodeType||!t.hasAttribute(L))}(e);if(!n)for(var r,a=!1;r=e.lastChild;)!a &amp;&amp;1===r.nodeType &amp;&amp;r.hasAttribute(L)&amp;&amp;(a=!0,s(&quot;render(): Target node has markup rendered by React, but there are unrelated nodes as well. This is most commonly caused by white-space inserted around server-rendered markup.&quot;)),e.removeChild(r);return!n||t||Xg||(Xg=!0,i(&quot;render(): Calling ReactDOM.render() to hydrate server-rendered markup will stop working in React v18. Replace the ReactDOM.render() call with ReactDOM.hydrate() if you want React to attach to the server HTML.&quot;)),function(e,t){return new Wg(e,0,t)}(e,n?{hydrate:!0}:void 0)}(n,r),o=l._internalRoot,&quot;function &quot;==typeof a){var u=a;a=function(){var e=Sg(o);u.call(e)}}qm(function(){Rg(t,o,e,a)})}return Sg(o)}Yg=function(e){if(e._reactRootContainer &amp;&amp;8!==e.nodeType){var t=Cg(e._reactRootContainer._internalRoot.current);t &amp;&amp;t.parentNode!==e &amp;&amp;s(&quot;render(...): It looks like the React-rendered content of this container was removed without using React. This is not supported and will cause errors. Instead, call ReactDOM.unmountComponentAtNode to empty a container.&quot;)}var n=!!e._reactRootContainer,r=Kg(e);!(!r||!Ul(r))&amp;&amp;!n &amp;&amp;s(&quot;render(...): Replacing React-rendered children with a new root component. If you intended to update the children of this node, you should instead have the existing children update their state and render the new components instead of calling ReactDOM.render.&quot;),1===e.nodeType &amp;&amp;e.tagName &amp;&amp;&quot;BODY &quot;===e.tagName.toUpperCase()&amp;&amp;s(&quot;render(): Rendering components directly into document.body is discouraged, since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try rendering into a container element created for your app.&quot;)},er=function(e){e.tag===h &amp;&amp;(Vm(e,4,Hm()),Og(e,4))},tr=function(e){if(e.tag===h){var t=Hm(),n=aa;Vm(e,n,t),Og(e,n)}},nr=function(e){if(e.tag===h){var t=Hm(),n=Bm(e);Vm(e,n,t),Og(e,n)}},rr=function(e,t){try{return t()}finally{}};var Jg=!1;function Qg(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:null;if(!Gg(t))throw Error(&quot;Target container is not a DOM element.&quot;);return Ng(e,t,null,n)}&quot;function &quot;==typeof Map &amp;&amp;null!=Map.prototype &amp;&amp;&quot;function &quot;==typeof Map.prototype.forEach &amp;&amp;&quot;function &quot;==typeof Set &amp;&amp;null!=Set.prototype &amp;&amp;&quot;function &quot;==typeof Set.prototype.clear &amp;&amp;&quot;function &quot;==typeof Set.prototype.forEach||s(&quot;React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills &quot;),wn=function(e,t,n){switch(t){case &quot;input &quot;:return void function(e,t){var n=e;gt(n,t),function(e,t){var n=t.name;if(&quot;radio &quot;===t.type &amp;&amp;null!=n){for(var r=e;r.parentNode;)r=r.parentNode;for(var a=r.querySelectorAll(&quot;input[name=&quot;+JSON.stringify(&quot;&quot;+n)+&#039;][type=&quot;radio &quot;]&#039;),o=0;o &lt;a.length;o++){var i=a[o];if(i!==e &amp;&amp;i.form===e.form){var l=Fl(i);if(!l)throw Error(&quot;ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.&quot;);it(i),gt(i,l)}}}}(n,t)}(e,n);case &quot;textarea &quot;:return void function(e,t){_t(e,t)}(e,n);case &quot;select &quot;:return void function(e,t){var n=t.value;null!=n &amp;&amp;Ot(e,!!t.multiple,n,!1)}(e,n)}},xn=Km,_n=function(e,t,n,r,a){var o=om;om|=4;try{return Ws(Ls,e.bind(null,t,n,r,a))}finally{0===(om=o)&amp;&amp;(bm(),$s())}},Ln=function(){0==(49 &amp;om)?(function(){if(null!==_m){var e=_m;_m=null,e.forEach(function(e){!function(e){e.expiredLanes|=24 &amp;e.pendingLanes}(e),Gm(e,Hs())})}$s()}(),yh()):0!=(16 &amp;om)&amp;&amp;s(&quot;unstable_flushDiscreteUpdates: Cannot flush updates when React is already rendering.&quot;)},Pn=function(e,t){var n=om;om|=2;try{return e(t)}finally{0===(om=n)&amp;&amp;(bm(),$s())}};var Zg,ev={Events:[Ul,jl,Fl,In,kn,yh,Mh]};if(!function(e){if(&quot;undefined &quot;==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled)return!0;if(!t.supportsFiber)return s(&quot;The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://reactjs.org/link/react-devtools &quot;),!0;try{ms=t.inject(e),hs=t}catch(e){s(&quot;React instrumentation encountered an error: %s.&quot;,e)}return!0}({bundleType:(Zg={findFiberByHostInstance:Dl,bundleType:1,version:Ks,rendererPackageName:&quot;react-dom &quot;}).bundleType,version:Zg.version,rendererPackageName:Zg.rendererPackageName,rendererConfig:Zg.rendererConfig,overrideHookState:Ag,overrideHookStateDeletePath:Ig,overrideHookStateRenamePath:kg,overrideProps:xg,overridePropsDeletePath:_g,overridePropsRenamePath:Lg,setSuspenseHandler:Mg,scheduleUpdate:Pg,currentDispatcherRef:o.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){var t=vr(e);return null===t?null:t.stateNode},findFiberByHostInstance:Zg.findFiberByHostInstance||function(e){return null},findHostInstancesForRefresh:function(e,t){var n=new Set,r=new Set(t.map(function(e){return e.current}));return rg(e.current,r,n),n},scheduleRefresh:function(e,t){if(null!==Kh){var n=t.staleFamilies,r=t.updatedFamilies;yh(),Jm(function(){ng(e.current,r,n)})}},scheduleRoot:function(e,t){e.context===Zl &amp;&amp;(yh(),Jm(function(){Rg(t,e,null,null)}))},setRefreshHandler:function(e){Kh=e},getCurrentFiber:function(){return Ye}})&amp;&amp;k &amp;&amp;window.top===window.self &amp;&amp;(navigator.userAgent.indexOf(&quot;Chrome &quot;)&gt;-1 &amp;&amp;-1===navigator.userAgent.indexOf(&quot;Edge &quot;)||navigator.userAgent.indexOf(&quot;Firefox &quot;)&gt;-1)){var tv=window.location.protocol;/^(https?|file):$/.test(tv)&amp;&amp;console.info(&quot;%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools &quot;+(&quot;file:&quot;===tv?&quot;\nYou might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq &quot;:&quot;&quot;),&quot;font-weight:bold &quot;)}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ev,t.createPortal=Qg,t.findDOMNode=function(e){var t=$g.current;return null!==t &amp;&amp;null!==t.stateNode &amp;&amp;(t.stateNode._warnedAboutRefsInRender||s(&quot;%s is accessing findDOMNode inside its render(). render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.&quot;,We(t.type)||&quot;A component &quot;),t.stateNode._warnedAboutRefsInRender=!0),null==e?null:1===e.nodeType?e:function(e,t){var n=Zn(e);if(void 0===n)throw &quot;function &quot;==typeof e.render?Error(&quot;Unable to find node on an unmounted component.&quot;):Error(&quot;Argument appears to not be a ReactComponent. Keys: &quot;+Object.keys(e));var r=vr(n);if(null===r)return null;if(1 &amp;r.mode){var a=We(n.type)||&quot;Component &quot;;if(!sg[a]){sg[a]=!0;var o=Ye;try{Je(r),s(1 &amp;n.mode?&quot;%s is deprecated in StrictMode. %s was passed an instance of %s which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node &quot;:&quot;%s is deprecated in StrictMode. %s was passed an instance of %s which renders StrictMode children. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node &quot;,t,t,a)}finally{o?Je(o):qe()}}}return r.stateNode}(e,&quot;findDOMNode &quot;)},t.flushSync=Jm,t.hydrate=function(e,t,n){if(!Gg(t))throw Error(&quot;Target container is not a DOM element.&quot;);return Ml(t)&amp;&amp;void 0===t._reactRootContainer &amp;&amp;s(&quot;You are calling ReactDOM.hydrate() on a container that was previously passed to ReactDOM.createRoot(). This is not supported. Did you mean to call createRoot(container, {hydrate: true}).render(element)?&quot;),qg(null,e,t,!0,n)},t.render=function(e,t,n){if(!Gg(t))throw Error(&quot;Target container is not a DOM element.&quot;);return Ml(t)&amp;&amp;void 0===t._reactRootContainer &amp;&amp;s(&quot;You are calling ReactDOM.render() on a container that was previously passed to ReactDOM.createRoot(). This is not supported. Did you mean to call root.render(element)?&quot;),qg(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!Gg(e))throw Error(&quot;unmountComponentAtNode(...): Target container is not a DOM element.&quot;);if(Ml(e)&amp;&amp;void 0===e._reactRootContainer &amp;&amp;s(&quot;You are calling ReactDOM.unmountComponentAtNode() on a container that was previously passed to ReactDOM.createRoot(). This is not supported. Did you mean to call root.unmount()?&quot;),e._reactRootContainer){var t=Kg(e);return t &amp;&amp;!Ul(t)&amp;&amp;s(&quot;unmountComponentAtNode(): The node you &#039;re attempting to unmount was rendered by another copy of React.&quot;),qm(function(){qg(null,null,e,!1,function(){e._reactRootContainer=null,Pl(e)})}),!0}var n=Kg(e),r=!(!n||!Ul(n)),a=1===e.nodeType &amp;&amp;Gg(e.parentNode)&amp;&amp;!!e.parentNode._reactRootContainer;return r &amp;&amp;s(&quot;unmountComponentAtNode(): The node you &#039;re attempting to unmount was rendered by React and is not a top-level container. %s &quot;,a?&quot;You may have accidentally passed in a React root node instead of its container.&quot;:&quot;Instead, have the parent component update its state and rerender in order to remove this component.&quot;),!1},t.unstable_batchedUpdates=Km,t.unstable_createPortal=function(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:null;return Jg||(Jg=!0,i(&#039;The ReactDOM.unstable_createPortal() alias has been deprecated, and will be removed in React 18+. Update your code to use ReactDOM.createPortal() instead. It has the exact same API, but without the &quot;unstable_ &quot;prefix.&#039;)),Qg(e,t,n)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){return function(e,t,n,r){if(!Gg(n))throw Error(&quot;Target container is not a DOM element.&quot;);if(null==e||void 0===e._reactInternals)throw Error(&quot;parentComponent must be a valid React Component &quot;);return qg(e,t,n,!1,r)}(e,t,n,r)},t.version=Ks}()}),he=n(function(e){e.exports=me});Sfdump=window.Sfdump||function(e){var t=e.createElement(&quot;style &quot;),n=/([.*+?^${}()|\[\]\/\\])/g,r=/\bsf-dump-\d+-ref[012]\w+\b/,a=0 &lt;=navigator.platform.toUpperCase().indexOf(&quot;MAC &quot;)?&quot;Cmd &quot;:&quot;Ctrl &quot;,o=function(e,t,n){e.addEventListener(t,n,!1)};function i(t,n){var r,a,o=t.nextSibling||{},i=o.className;if(/\bsf-dump-compact\b/.test(i))r=&quot;&#9660;&quot;,a=&quot;sf-dump-expanded &quot;;else{if(!/\bsf-dump-expanded\b/.test(i))return!1;r=&quot;&#9654;&quot;,a=&quot;sf-dump-compact &quot;}if(e.createEvent &amp;&amp;o.dispatchEvent){var l=e.createEvent(&quot;Event &quot;);l.initEvent(&quot;sf-dump-expanded &quot;===a?&quot;sfbeforedumpexpand &quot;:&quot;sfbeforedumpcollapse &quot;,!0,!1),o.dispatchEvent(l)}if(t.lastChild.innerHTML=r,o.className=o.className.replace(/\bsf-dump-(compact|expanded)\b/,a),n)try{for(t=o.querySelectorAll(&quot;.&quot;+i),o=0;o &lt;t.length;++o)-1==t[o].className.indexOf(a)&amp;&amp;(t[o].className=a,t[o].previousSibling.lastChild.innerHTML=r)}catch(e){}return!0}function l(e,t){return!!/\bsf-dump-compact\b/.test((e.nextSibling||{}).className)&amp;&amp;(i(e,t),!0)}function s(e){var t=e.querySelector(&quot;a.sf-dump-toggle &quot;);return!!t &amp;&amp;(function(e,t){/\bsf-dump-expanded\b/.test((e.nextSibling||{}).className)&amp;&amp;i(e,!0)}(t),l(t),!0)}function c(e){Array.from(e.querySelectorAll(&quot;.sf-dump-str, .sf-dump-key, .sf-dump-public, .sf-dump-protected, .sf-dump-private &quot;)).forEach(function(e){e.className=e.className.replace(/\bsf-dump-highlight\b/,&quot;&quot;),e.className=e.className.replace(/\bsf-dump-highlight-active\b/,&quot;&quot;)})}return t.innerHTML=&quot;pre.sf-dump .sf-dump-compact, .sf-dump-str-collapse .sf-dump-str-collapse, .sf-dump-str-expand .sf-dump-str-expand { display: none; }&quot;,(e.documentElement.firstElementChild||e.documentElement.children[0]).appendChild(t),t=e.createElement(&quot;style &quot;),(e.documentElement.firstElementChild||e.documentElement.children[0]).appendChild(t),e.addEventListener||(o=function(e,t,n){e.attachEvent(&quot;on &quot;+t,function(e){e.preventDefault=function(){e.returnValue=!1},e.target=e.srcElement,n(e)})}),function(u,f){u=e.getElementById(u);for(var d,p,m=new RegExp(&quot;^(&quot;+(u.getAttribute(&quot;data-indent-pad &quot;)||&quot;&quot;).replace(n,&quot;\\$1 &quot;)+&quot;)+&quot;,&quot;m &quot;),h={maxDepth:1,maxStringLength:160,fileLinkFormat:null},g=u.getElementsByTagName(&quot;A &quot;),v=g.length,y=0,E=[];y &lt;v;)E.push(g[y++]);for(y in f)h[y]=f[y];function b(e,t){o(u,e,function(e,n){&quot;A &quot;==e.target.tagName?t(e.target,e):&quot;A &quot;==e.target.parentNode.tagName?t(e.target.parentNode,e):(n=(n=/\bsf-dump-ellipsis\b/.test(e.target.className)?e.target.parentNode:e.target).nextElementSibling)&amp;&amp;&quot;A &quot;==n.tagName &amp;&amp;(/\bsf-dump-toggle\b/.test(n.className)||(n=n.nextElementSibling||n),t(n,e,!0))})}function T(e){return e.ctrlKey||e.metaKey}function N(e){return &quot;concat(&quot;+e.match(/[^&#039;&quot;]+|[&#039;&quot;]/g).map(function(e){return &quot;&#039;&quot;==e?&#039;&quot;\&#039;&quot;&#039;:&#039;&quot;&#039;==e?&quot;&#039;\&quot;&#039;&quot;:&quot;&#039;&quot;+e+&quot;&#039;&quot;}).join(&quot;,&quot;)+&quot;, &#039;&#039;)&quot;}function R(e){return &quot;contains(concat(&#039;&#039;, normalize-space(@class), &#039;&#039;), &#039;&quot;+e+&quot;&#039;)&quot;}for(o(u,&quot;mouseover &quot;,function(e){&quot;&quot;!=t.innerHTML &amp;&amp;(t.innerHTML=&quot;&quot;)}),b(&quot;mouseover &quot;,function(e,n,a){if(a)n.target.style.cursor=&quot;pointer &quot;;else if(e=r.exec(e.className))try{t.innerHTML=&quot;pre.sf-dump .&quot;+e[0]+&quot;{background-color: #B729D9; color: #FFF !important; border-radius: 2px}&quot;}catch(n){}}),b(&quot;click &quot;,function(t,r,a){if(/\bsf-dump-toggle\b/.test(t.className)){if(r.preventDefault(),!i(t,T(r))){var o=e.getElementById(t.getAttribute(&quot;href &quot;).substr(1)),l=o.previousSibling,s=o.parentNode,c=t.parentNode;c.replaceChild(o,t),s.replaceChild(t,l),c.insertBefore(l,o),s=s.firstChild.nodeValue.match(m),c=c.firstChild.nodeValue.match(m),s &amp;&amp;c &amp;&amp;s[0]!==c[0]&amp;&amp;(o.innerHTML=o.innerHTML.replace(new RegExp(&quot;^&quot;+s[0].replace(n,&quot;\\$1 &quot;),&quot;mg &quot;),c[0])),/\bsf-dump-compact\b/.test(o.className)&amp;&amp;i(l,T(r))}if(a);else if(e.getSelection)try{e.getSelection().removeAllRanges()}catch(r){e.getSelection().empty()}else e.selection.empty()}else/\bsf-dump-str-toggle\b/.test(t.className)&amp;&amp;(r.preventDefault(),(r=t.parentNode.parentNode).className=r.className.replace(/\bsf-dump-str-(expand|collapse)\b/,t.parentNode.className))}),v=(g=u.getElementsByTagName(&quot;SAMP &quot;)).length,y=0;y &lt;v;)E.push(g[y++]);for(v=E.length,y=0;y &lt;v;++y)if(&quot;SAMP &quot;==(g=E[y]).tagName)&quot;A &quot;!=(b=g.previousSibling||{}).tagName?((b=e.createElement(&quot;A &quot;)).className=&quot;sf-dump-ref &quot;,g.parentNode.insertBefore(b,g)):b.innerHTML+=&quot;&quot;,b.title=(b.title?b.title+&quot;\n[&quot;:&quot;[&quot;)+a+&quot;+click] Expand all children &quot;,b.innerHTML+=&quot;sf-dump-compact &quot;==g.className?&quot;&lt;span &gt;&#9654;&lt;/span &gt;&quot;:&quot;&lt;span &gt;&#9660;&lt;/span &gt;&quot;,b.className+=&quot;sf-dump-toggle &quot;,f=1,&quot;sf-dump &quot;!=g.parentNode.className &amp;&amp;(f+=g.parentNode.getAttribute(&quot;data-depth &quot;)/1);else if(/\bsf-dump-ref\b/.test(g.className)&amp;&amp;(b=g.getAttribute(&quot;href &quot;))&amp;&amp;(b=b.substr(1),g.className+=&quot;&quot;+b,/[\[{]$/.test(g.previousSibling.nodeValue))){b=b!=g.nextSibling.id &amp;&amp;e.getElementById(b);try{d=b.nextSibling,g.appendChild(b),d.parentNode.insertBefore(b,d),/^[@#]/.test(g.innerHTML)?g.innerHTML+=&quot;&lt;span &gt;&#9654;&lt;/span &gt;&quot;:(g.innerHTML=&quot;&lt;span &gt;&#9654;&lt;/span &gt;&quot;,g.className=&quot;sf-dump-ref &quot;),g.className+=&quot;sf-dump-toggle &quot;}catch(e){&quot;&amp;&quot;==g.innerHTML.charAt(0)&amp;&amp;(g.innerHTML=&quot;&#8230;&quot;,g.className=&quot;sf-dump-ref &quot;)}}if(e.evaluate &amp;&amp;Array.from &amp;&amp;u.children.length &gt;1){var S=function(e){var t,n,r=e.current();r &amp;&amp;(function(e){for(var t,n=[];(e=e.parentNode||{})&amp;&amp;(t=e.previousSibling)&amp;&amp;&quot;A &quot;===t.tagName;)n.push(t);0!==n.length &amp;&amp;n.forEach(function(e){l(e)})}(r),function(e,t,n){c(e),Array.from(n||[]).forEach(function(e){/\bsf-dump-highlight\b/.test(e.className)||(e.className=e.className+&quot;sf-dump-highlight &quot;)}),/\bsf-dump-highlight-active\b/.test(t.className)||(t.className=t.className+&quot;sf-dump-highlight-active &quot;)}(u,r,e.nodes),&quot;scrollIntoView &quot;in r &amp;&amp;(r.scrollIntoView(!0),t=r.getBoundingClientRect(),n=w.getBoundingClientRect(),t.top &lt;n.top+n.height &amp;&amp;window.scrollBy(0,-(n.top+n.height+5)))),A.textContent=(e.isEmpty()?0:e.idx+1)+&quot;of &quot;+e.count()};u.setAttribute(&quot;tabindex &quot;,0),SearchState=function(){this.nodes=[],this.idx=0},SearchState.prototype={next:function(){return this.isEmpty()||(this.idx=this.idx &lt;this.nodes.length-1?this.idx+1:0),this.current()},previous:function(){return this.isEmpty()||(this.idx=this.idx &gt;0?this.idx-1:this.nodes.length-1),this.current()},isEmpty:function(){return 0===this.count()},current:function(){return this.isEmpty()?null:this.nodes[this.idx]},reset:function(){this.nodes=[],this.idx=0},count:function(){return this.nodes.length}};var w=e.createElement(&quot;div &quot;);w.className=&quot;sf-dump-search-wrapper sf-dump-search-hidden &quot;,w.innerHTML=&#039;\n                    &lt;input type=&quot;text &quot;class=&quot;sf-dump-search-input &quot;&gt;\n                    &lt;span class=&quot;sf-dump-search-count &quot;&gt;0 of 0 &lt;/span &gt;\n                    &lt;button type=&quot;button &quot;class=&quot;sf-dump-search-input-previous &quot;tabindex=&quot;-1 &quot;&gt;\n                        &lt;svg viewBox=&quot;0 0 1792 1792 &quot;xmlns=&quot;http://www.w3.org/2000/svg &quot;&gt;&lt;path d=&quot;M1683 1331l-166 165q-19 19-45 19t-45-19L896 965l-531 531q-19 19-45 19t-45-19l-166-165q-19-19-19-45.5t19-45.5l742-741q19-19 45-19t45 19l742 741q19 19 19 45.5t-19 45.5z &quot;/&gt;&lt;/svg &gt;\n                    &lt;/button &gt;\n                    &lt;button type=&quot;button &quot;class=&quot;sf-dump-search-input-next &quot;tabindex=&quot;-1 &quot;&gt;\n                        &lt;svg viewBox=&quot;0 0 1792 1792 &quot;xmlns=&quot;http://www.w3.org/2000/svg &quot;&gt;&lt;path d=&quot;M1683 808l-742 741q-19 19-45 19t-45-19L109 808q-19-19-19-45.5t19-45.5l166-165q19-19 45-19t45 19l531 531 531-531q19-19 45-19t45 19l166 165q19 19 19 45.5t-19 45.5z &quot;/&gt;&lt;/svg &gt;\n                    &lt;/button &gt;\n                &#039;,u.insertBefore(w,u.firstChild);var O=new SearchState,C=w.querySelector(&quot;.sf-dump-search-input &quot;),A=w.querySelector(&quot;.sf-dump-search-count &quot;),I=0,k=&quot;&quot;;o(C,&quot;keyup &quot;,function(t){var n=t.target.value;n!==k &amp;&amp;(k=n,clearTimeout(I),I=setTimeout(function(){if(O.reset(),s(u),c(u),&quot;&quot;!==n){for(var t=[&quot;sf-dump-str &quot;,&quot;sf-dump-key &quot;,&quot;sf-dump-public &quot;,&quot;sf-dump-protected &quot;,&quot;sf-dump-private &quot;].map(R).join(&quot;or &quot;),r=e.evaluate(&quot;.//span[&quot;+t+&quot;][contains(translate(child::text(), &quot;+N(n.toUpperCase())+&quot;, &quot;+N(n.toLowerCase())+&quot;), &quot;+N(n.toLowerCase())+&quot;)]&quot;,u,null,XPathResult.ORDERED_NODE_ITERATOR_TYPE,null);node=r.iterateNext();)O.nodes.push(node);S(O)}else A.textContent=&quot;0 of 0 &quot;},400))}),Array.from(w.querySelectorAll(&quot;.sf-dump-search-input-next, .sf-dump-search-input-previous &quot;)).forEach(function(e){o(e,&quot;click &quot;,function(e){e.preventDefault(),-1!==e.target.className.indexOf(&quot;next &quot;)?O.next():O.previous(),C.focus(),s(u),S(O)})}),o(u,&quot;keydown &quot;,function(e){var t=!/\bsf-dump-search-hidden\b/.test(w.className);if(114===e.keyCode &amp;&amp;!t||T(e)&amp;&amp;70===e.keyCode){if(70===e.keyCode &amp;&amp;document.activeElement===C)return;e.preventDefault(),w.className=w.className.replace(/\bsf-dump-search-hidden\b/,&quot;&quot;),C.focus()}else t &amp;&amp;(27===e.keyCode?(w.className+=&quot;sf-dump-search-hidden &quot;,e.preventDefault(),c(u),C.value=&quot;&quot;):(T(e)&amp;&amp;71===e.keyCode||13===e.keyCode||114===e.keyCode)&amp;&amp;(e.preventDefault(),e.shiftKey?O.previous():O.next(),s(u),S(O)))})}if(!(0 &gt;=h.maxStringLength))try{for(v=(g=u.querySelectorAll(&quot;.sf-dump-str &quot;)).length,y=0,E=[];y &lt;v;)E.push(g[y++]);for(v=E.length,y=0;y &lt;v;++y)0 &lt;(f=(d=(g=E[y]).innerText||g.textContent).length-h.maxStringLength)&amp;&amp;(p=g.innerHTML,g[g.innerText?&quot;innerText &quot;:&quot;textContent &quot;]=d.substring(0,h.maxStringLength),g.className+=&quot;sf-dump-str-collapse &quot;,g.innerHTML=&#039;&lt;span class=&quot;sf-dump-str-collapse &quot;&gt;&#039;+p+&#039;&lt;a class=&quot;sf-dump-ref sf-dump-str-toggle &quot;title=&quot;Collapse &quot;&gt;&#9664;&lt;/a &gt;&lt;/span &gt;&lt;span class=&quot;sf-dump-str-expand &quot;&gt;&#039;+g.innerHTML+&#039;&lt;a class=&quot;sf-dump-ref sf-dump-str-toggle &quot;title=&quot;&#039;+f+&#039;remaining characters &quot;&gt;&#9654;&lt;/a &gt;&lt;/span &gt;&#039;)}catch(e){}}}(document);var ge=c.createContext({inView:[],setInView:function(){}});function ve(e){var t=e.children,n=c.useState([]);return c.createElement(ge.Provider,{value:{inView:n[0],setInView:n[1]}},t)}function ye(e){var t,n,r=e.name,a=e.href,o=void 0===a?null:a,i=e.icon,l=e.iconOpacity,s=void 0===l?&quot;opacity-50 &quot;:l,u=e.important,f=void 0!==u &amp;&amp;u,d=e.children,p=void 0===d?null:d,m=e.onClick,h=void 0===m?null:m,g=e.label,v=void 0===g||g,y=e.navRef,E=c.useContext(ge);return c.createElement(&quot;li &quot;,{ref:y},c.createElement(&quot;a &quot;,{href:o||&quot;#&quot;+r,target:o?&quot;_blank &quot;:&quot;_self &quot;,onClick:function(e){h &amp;&amp;(e.preventDefault(),h())}},c.createElement(&quot;button &quot;,{className:&quot;\n                    group px-3 sm:px-5 h-10 uppercase tracking-wider text-xs font-medium\n                    hover:text-red-500\n                    &quot;+(t=E.inView,n=null==t?0:t.length,((n?t[n-1]:void 0)===r?&quot;text-red-500 &quot;:&quot;&quot;)+&quot;\n                &quot;)},i &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;mr-1.5 &quot;+(null!=s?s:&quot;opacity-50 &quot;)},i),v &amp;&amp;c.createElement(&quot;span &quot;,null,r.charAt(0).toUpperCase()+r.slice(1)),f &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;right-2 top-2.5 absolute w-2 h-2 bg-red-500 rounded-full shadow &quot;}))),p)}var Ee=c.createContext(),be=function(){},Te=c.createContext({ignitionConfig:{},setIgnitionConfig:be});function Ne({children:e,ignitionConfig:t}){const[n,r]=c.useState(t),a=(()=&gt;{let[e,t]=c.useState(()=&gt;{if(&quot;function &quot;!=typeof window.matchMedia)return &quot;no-preference &quot;;let e=window.matchMedia(&quot;(prefers-color-scheme: dark)&quot;),t=window.matchMedia(&quot;(prefers-color-scheme: light)&quot;);return e.matches?&quot;dark &quot;:t.matches?&quot;light &quot;:&quot;no-preference &quot;});return c.useEffect(()=&gt;{if(&quot;function &quot;!=typeof window.matchMedia)return;let e=window.matchMedia(&quot;(prefers-color-scheme: dark)&quot;),n=window.matchMedia(&quot;(prefers-color-scheme: light)&quot;);if(&quot;function &quot;==typeof n.addEventListener){let r=({matches:e})=&gt;{e &amp;&amp;t(&quot;dark &quot;)},a=({matches:e})=&gt;{e &amp;&amp;t(&quot;light &quot;)};return e.addEventListener(&quot;change &quot;,r),n.addEventListener(&quot;change &quot;,a),()=&gt;{e.removeEventListener(&quot;change &quot;,r),n.removeEventListener(&quot;change &quot;,a)}}if(&quot;function &quot;==typeof n.addListener){let r=()=&gt;t(e.matches?&quot;dark &quot;:n.matches?&quot;light &quot;:&quot;no-preference &quot;);return e.addListener(r),n.addListener(r),()=&gt;{e.removeListener(r),n.removeListener(r)}}},[]),e})(),o=&quot;auto &quot;===n.theme?&quot;no-preference &quot;!==a?a:&quot;light &quot;:n.theme;return c.useEffect(()=&gt;{document.documentElement.classList.remove(&quot;light &quot;,&quot;dark &quot;,&quot;auto &quot;),document.documentElement.classList.add(o)},[o]),c.createElement(Te.Provider,{value:{ignitionConfig:n,setIgnitionConfig:r,theme:o}},e)}var Re=&quot;undefined &quot;!=typeof globalThis?globalThis:&quot;undefined &quot;!=typeof window?window:&quot;undefined &quot;!=typeof global?global:&quot;undefined &quot;!=typeof self?self:{};function Se(e){return e &amp;&amp;e.__esModule &amp;&amp;Object.prototype.hasOwnProperty.call(e,&quot;default &quot;)?e.default:e}function we(e){var t={exports:{}};return e(t,t.exports),t.exports}var Oe,Ce=&quot;object &quot;==typeof Re &amp;&amp;Re &amp;&amp;Re.Object===Object &amp;&amp;Re,Ae=&quot;object &quot;==typeof self &amp;&amp;self &amp;&amp;self.Object===Object &amp;&amp;self,Ie=Ce||Ae||Function(&quot;return this &quot;)(),ke=Ie.Symbol,xe=Object.prototype,_e=xe.hasOwnProperty,Le=xe.toString,Pe=ke?ke.toStringTag:void 0,Me=Object.prototype.toString,De=ke?ke.toStringTag:void 0,Ue=function(e){return null==e?void 0===e?&quot;[object Undefined]&quot;:&quot;[object Null]&quot;:De &amp;&amp;De in Object(e)?function(e){var t=_e.call(e,Pe),n=e[Pe];try{e[Pe]=void 0;var r=!0}catch(e){}var a=Le.call(e);return r &amp;&amp;(t?e[Pe]=n:delete e[Pe]),a}(e):function(e){return Me.call(e)}(e)},je=function(e){var t=typeof e;return null!=e &amp;&amp;(&quot;object &quot;==t||&quot;function &quot;==t)},Fe=function(e){if(!je(e))return!1;var t=Ue(e);return &quot;[object Function]&quot;==t||&quot;[object GeneratorFunction]&quot;==t||&quot;[object AsyncFunction]&quot;==t||&quot;[object Proxy]&quot;==t},ze=Ie[&quot;__core-js_shared__ &quot;],He=(Oe=/[^.]+$/.exec(ze &amp;&amp;ze.keys &amp;&amp;ze.keys.IE_PROTO||&quot;&quot;))?&quot;Symbol(src)_1.&quot;+Oe:&quot;&quot;,Be=Function.prototype.toString,Ve=function(e){if(null!=e){try{return Be.call(e)}catch(e){}try{return e+&quot;&quot;}catch(e){}}return &quot;&quot;},We=/^\[object .+?Constructor\]$/,Ge=RegExp(&quot;^&quot;+Function.prototype.toString.call(Object.prototype.hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g,&quot;\\$ &amp;&quot;).replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,&quot;$1.*?&quot;)+&quot;$ &quot;),Ye=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return function(e){return!(!je(e)||(t=e,He &amp;&amp;He in t))&amp;&amp;(Fe(e)?Ge:We).test(Ve(e));var t}(n)?n:void 0},$e=function(){try{var e=Ye(Object,&quot;defineProperty &quot;);return e({},&quot;&quot;,{}),e}catch(e){}}(),Xe=function(e,t,n){&quot;__proto__ &quot;==t &amp;&amp;$e?$e(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n},Ke=function(e){return null!=e &amp;&amp;&quot;object &quot;==typeof e},qe=function(e){return Ke(e)&amp;&amp;&quot;[object Arguments]&quot;==Ue(e)},Je=Object.prototype,Qe=Je.hasOwnProperty,Ze=Je.propertyIsEnumerable,et=qe(function(){return arguments}())?qe:function(e){return Ke(e)&amp;&amp;Qe.call(e,&quot;callee &quot;)&amp;&amp;!Ze.call(e,&quot;callee &quot;)},tt=Array.isArray,nt=function(){return!1},rt=we(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n?Ie.Buffer:void 0;e.exports=(a?a.isBuffer:void 0)||nt}),at=/^(?:0|[1-9]\d*)$/,ot=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&amp;&amp;(&quot;number &quot;==n||&quot;symbol &quot;!=n &amp;&amp;at.test(e))&amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;t},it=function(e){return &quot;number &quot;==typeof e &amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;=9007199254740991},lt={};lt[&quot;[object Float32Array]&quot;]=lt[&quot;[object Float64Array]&quot;]=lt[&quot;[object Int8Array]&quot;]=lt[&quot;[object Int16Array]&quot;]=lt[&quot;[object Int32Array]&quot;]=lt[&quot;[object Uint8Array]&quot;]=lt[&quot;[object Uint8ClampedArray]&quot;]=lt[&quot;[object Uint16Array]&quot;]=lt[&quot;[object Uint32Array]&quot;]=!0,lt[&quot;[object Arguments]&quot;]=lt[&quot;[object Array]&quot;]=lt[&quot;[object ArrayBuffer]&quot;]=lt[&quot;[object Boolean]&quot;]=lt[&quot;[object DataView]&quot;]=lt[&quot;[object Date]&quot;]=lt[&quot;[object Error]&quot;]=lt[&quot;[object Function]&quot;]=lt[&quot;[object Map]&quot;]=lt[&quot;[object Number]&quot;]=lt[&quot;[object Object]&quot;]=lt[&quot;[object RegExp]&quot;]=lt[&quot;[object Set]&quot;]=lt[&quot;[object String]&quot;]=lt[&quot;[object WeakMap]&quot;]=!1;var st,ct=we(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n &amp;&amp;Ce.process,o=function(){try{return r &amp;&amp;r.require &amp;&amp;r.require(&quot;util &quot;).types||a &amp;&amp;a.binding &amp;&amp;a.binding(&quot;util &quot;)}catch(e){}}();e.exports=o}),ut=ct &amp;&amp;ct.isTypedArray,ft=ut?(st=ut,function(e){return st(e)}):function(e){return Ke(e)&amp;&amp;it(e.length)&amp;&amp;!!lt[Ue(e)]},dt=Object.prototype.hasOwnProperty,pt=function(e,t){var n=tt(e),r=!n &amp;&amp;et(e),a=!n &amp;&amp;!r &amp;&amp;rt(e),o=!n &amp;&amp;!r &amp;&amp;!a &amp;&amp;ft(e),i=n||r||a||o,l=i?function(e,t){for(var n=-1,r=Array(e);++n &lt;e;)r[n]=t(n);return r}(e.length,String):[],s=l.length;for(var c in e)!t &amp;&amp;!dt.call(e,c)||i &amp;&amp;(&quot;length &quot;==c||a &amp;&amp;(&quot;offset &quot;==c||&quot;parent &quot;==c)||o &amp;&amp;(&quot;buffer &quot;==c||&quot;byteLength &quot;==c||&quot;byteOffset &quot;==c)||ot(c,s))||l.push(c);return l},mt=Object.prototype,ht=function(e){var t=e &amp;&amp;e.constructor;return e===(&quot;function &quot;==typeof t &amp;&amp;t.prototype||mt)},gt=function(e,t){return function(n){return e(t(n))}},vt=gt(Object.keys,Object),yt=Object.prototype.hasOwnProperty,Et=function(e){if(!ht(e))return vt(e);var t=[];for(var n in Object(e))yt.call(e,n)&amp;&amp;&quot;constructor &quot;!=n &amp;&amp;t.push(n);return t},bt=function(e){return null!=e &amp;&amp;it(e.length)&amp;&amp;!Fe(e)},Tt=function(e){return bt(e)?pt(e):Et(e)},Nt=function(e,t){return e===t||e!=e &amp;&amp;t!=t},Rt=function(e,t){for(var n=e.length;n--;)if(Nt(e[n][0],t))return n;return-1},St=Array.prototype.splice;function wt(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}wt.prototype.clear=function(){this.__data__=[],this.size=0},wt.prototype.delete=function(e){var t=this.__data__,n=Rt(t,e);return!(n &lt;0||(n==t.length-1?t.pop():St.call(t,n,1),--this.size,0))},wt.prototype.get=function(e){var t=this.__data__,n=Rt(t,e);return n &lt;0?void 0:t[n][1]},wt.prototype.has=function(e){return Rt(this.__data__,e)&gt;-1},wt.prototype.set=function(e,t){var n=this.__data__,r=Rt(n,e);return r &lt;0?(++this.size,n.push([e,t])):n[r][1]=t,this};var Ot=wt,Ct=Ye(Ie,&quot;Map &quot;),At=Ye(Object,&quot;create &quot;),It=Object.prototype.hasOwnProperty,kt=Object.prototype.hasOwnProperty;function xt(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}xt.prototype.clear=function(){this.__data__=At?At(null):{},this.size=0},xt.prototype.delete=function(e){var t=this.has(e)&amp;&amp;delete this.__data__[e];return this.size-=t?1:0,t},xt.prototype.get=function(e){var t=this.__data__;if(At){var n=t[e];return &quot;__lodash_hash_undefined__ &quot;===n?void 0:n}return It.call(t,e)?t[e]:void 0},xt.prototype.has=function(e){var t=this.__data__;return At?void 0!==t[e]:kt.call(t,e)},xt.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=At &amp;&amp;void 0===t?&quot;__lodash_hash_undefined__ &quot;:t,this};var _t=xt,Lt=function(e,t){var n,r,a=e.__data__;return(&quot;string &quot;==(r=typeof(n=t))||&quot;number &quot;==r||&quot;symbol &quot;==r||&quot;boolean &quot;==r?&quot;__proto__ &quot;!==n:null===n)?a[&quot;string &quot;==typeof t?&quot;string &quot;:&quot;hash &quot;]:a.map};function Pt(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}Pt.prototype.clear=function(){this.size=0,this.__data__={hash:new _t,map:new(Ct||Ot),string:new _t}},Pt.prototype.delete=function(e){var t=Lt(this,e).delete(e);return this.size-=t?1:0,t},Pt.prototype.get=function(e){return Lt(this,e).get(e)},Pt.prototype.has=function(e){return Lt(this,e).has(e)},Pt.prototype.set=function(e,t){var n=Lt(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};var Mt=Pt;function Dt(e){var t=this.__data__=new Ot(e);this.size=t.size}Dt.prototype.clear=function(){this.__data__=new Ot,this.size=0},Dt.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Dt.prototype.get=function(e){return this.__data__.get(e)},Dt.prototype.has=function(e){return this.__data__.has(e)},Dt.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Ot){var r=n.__data__;if(!Ct||r.length &lt;199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Mt(r)}return n.set(e,t),this.size=n.size,this};var Ut=Dt;function jt(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Mt;++t &lt;n;)this.add(e[t])}jt.prototype.add=jt.prototype.push=function(e){return this.__data__.set(e,&quot;__lodash_hash_undefined__ &quot;),this},jt.prototype.has=function(e){return this.__data__.has(e)};var Ft=jt,zt=function(e,t){for(var n=-1,r=null==e?0:e.length;++n &lt;r;)if(t(e[n],n,e))return!0;return!1},Ht=function(e,t){return e.has(t)},Bt=function(e,t,n,r,a,o){var i=1 &amp;n,l=e.length,s=t.length;if(l!=s &amp;&amp;!(i &amp;&amp;s &gt;l))return!1;var c=o.get(e),u=o.get(t);if(c &amp;&amp;u)return c==t &amp;&amp;u==e;var f=-1,d=!0,p=2 &amp;n?new Ft:void 0;for(o.set(e,t),o.set(t,e);++f &lt;l;){var m=e[f],h=t[f];if(r)var g=i?r(h,m,f,t,e,o):r(m,h,f,e,t,o);if(void 0!==g){if(g)continue;d=!1;break}if(p){if(!zt(t,function(e,t){if(!Ht(p,t)&amp;&amp;(m===e||a(m,e,n,r,o)))return p.push(t)})){d=!1;break}}else if(m!==h &amp;&amp;!a(m,h,n,r,o)){d=!1;break}}return o.delete(e),o.delete(t),d},Vt=Ie.Uint8Array,Wt=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n},Gt=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n},Yt=ke?ke.prototype:void 0,$t=Yt?Yt.valueOf:void 0,Xt=function(e,t){for(var n=-1,r=t.length,a=e.length;++n &lt;r;)e[a+n]=t[n];return e},Kt=function(e,t,n){var r=t(e);return tt(e)?r:Xt(r,n(e))},qt=function(){return[]},Jt=Object.prototype.propertyIsEnumerable,Qt=Object.getOwnPropertySymbols,Zt=Qt?function(e){return null==e?[]:(e=Object(e),function(t,n){for(var r=-1,a=null==t?0:t.length,o=0,i=[];++r &lt;a;){var l=t[r];Jt.call(e,l)&amp;&amp;(i[o++]=l)}return i}(Qt(e)))}:qt,en=function(e){return Kt(e,Tt,Zt)},tn=Object.prototype.hasOwnProperty,nn=Ye(Ie,&quot;DataView &quot;),rn=Ye(Ie,&quot;Promise &quot;),an=Ye(Ie,&quot;Set &quot;),on=Ye(Ie,&quot;WeakMap &quot;),ln=Ve(nn),sn=Ve(Ct),cn=Ve(rn),un=Ve(an),fn=Ve(on),dn=Ue;(nn &amp;&amp;&quot;[object DataView]&quot;!=dn(new nn(new ArrayBuffer(1)))||Ct &amp;&amp;&quot;[object Map]&quot;!=dn(new Ct)||rn &amp;&amp;&quot;[object Promise]&quot;!=dn(rn.resolve())||an &amp;&amp;&quot;[object Set]&quot;!=dn(new an)||on &amp;&amp;&quot;[object WeakMap]&quot;!=dn(new on))&amp;&amp;(dn=function(e){var t=Ue(e),n=&quot;[object Object]&quot;==t?e.constructor:void 0,r=n?Ve(n):&quot;&quot;;if(r)switch(r){case ln:return &quot;[object DataView]&quot;;case sn:return &quot;[object Map]&quot;;case cn:return &quot;[object Promise]&quot;;case un:return &quot;[object Set]&quot;;case fn:return &quot;[object WeakMap]&quot;}return t});var pn=dn,mn=Object.prototype.hasOwnProperty,hn=function e(t,n,r,a,o){return t===n||(null==t||null==n||!Ke(t)&amp;&amp;!Ke(n)?t!=t &amp;&amp;n!=n:function(e,t,n,r,a,o){var i=tt(e),l=tt(t),s=i?&quot;[object Array]&quot;:pn(e),c=l?&quot;[object Array]&quot;:pn(t),u=&quot;[object Object]&quot;==(s=&quot;[object Arguments]&quot;==s?&quot;[object Object]&quot;:s),f=&quot;[object Object]&quot;==(c=&quot;[object Arguments]&quot;==c?&quot;[object Object]&quot;:c),d=s==c;if(d &amp;&amp;rt(e)){if(!rt(t))return!1;i=!0,u=!1}if(d &amp;&amp;!u)return o||(o=new Ut),i||ft(e)?Bt(e,t,n,r,a,o):function(e,t,n,r,a,o,i){switch(n){case &quot;[object DataView]&quot;:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case &quot;[object ArrayBuffer]&quot;:return!(e.byteLength!=t.byteLength||!o(new Vt(e),new Vt(t)));case &quot;[object Boolean]&quot;:case &quot;[object Date]&quot;:case &quot;[object Number]&quot;:return Nt(+e,+t);case &quot;[object Error]&quot;:return e.name==t.name &amp;&amp;e.message==t.message;case &quot;[object RegExp]&quot;:case &quot;[object String]&quot;:return e==t+&quot;&quot;;case &quot;[object Map]&quot;:var l=Wt;case &quot;[object Set]&quot;:if(l||(l=Gt),e.size!=t.size &amp;&amp;!(1 &amp;r))return!1;var s=i.get(e);if(s)return s==t;r|=2,i.set(e,t);var c=Bt(l(e),l(t),r,a,o,i);return i.delete(e),c;case &quot;[object Symbol]&quot;:if($t)return $t.call(e)==$t.call(t)}return!1}(e,t,s,n,r,a,o);if(!(1 &amp;n)){var p=u &amp;&amp;mn.call(e,&quot;__wrapped__ &quot;),m=f &amp;&amp;mn.call(t,&quot;__wrapped__ &quot;);if(p||m){var h=p?e.value():e,g=m?t.value():t;return o||(o=new Ut),a(h,g,n,r,o)}}return!!d &amp;&amp;(o||(o=new Ut),function(e,t,n,r,a,o){var i=1 &amp;n,l=en(e),s=l.length;if(s!=en(t).length &amp;&amp;!i)return!1;for(var c=s;c--;){var u=l[c];if(!(i?u in t:tn.call(t,u)))return!1}var f=o.get(e),d=o.get(t);if(f &amp;&amp;d)return f==t &amp;&amp;d==e;var p=!0;o.set(e,t),o.set(t,e);for(var m=i;++c &lt;s;){var h=e[u=l[c]],g=t[u];if(r)var v=i?r(g,h,u,t,e,o):r(h,g,u,e,t,o);if(!(void 0===v?h===g||a(h,g,n,r,o):v)){p=!1;break}m||(m=&quot;constructor &quot;==u)}if(p &amp;&amp;!m){var y=e.constructor,E=t.constructor;y==E||!(&quot;constructor &quot;in e)||!(&quot;constructor &quot;in t)||&quot;function &quot;==typeof y &amp;&amp;y instanceof y &amp;&amp;&quot;function &quot;==typeof E &amp;&amp;E instanceof E||(p=!1)}return o.delete(e),o.delete(t),p}(e,t,n,r,a,o))}(t,n,r,a,e,o))},gn=function(e){return e==e &amp;&amp;!je(e)},vn=function(e,t){return function(n){return null!=n &amp;&amp;n[e]===t &amp;&amp;(void 0!==t||e in Object(n))}},yn=function(e){return &quot;symbol &quot;==typeof e||Ke(e)&amp;&amp;&quot;[object Symbol]&quot;==Ue(e)},En=/\.|\[(?:[^[\]]*|([&quot;&#039;])(?:(?!\1)[^\\]|\\.)*?\1)\]/,bn=/^\w*$/,Tn=function(e,t){if(tt(e))return!1;var n=typeof e;return!(&quot;number &quot;!=n &amp;&amp;&quot;symbol &quot;!=n &amp;&amp;&quot;boolean &quot;!=n &amp;&amp;null!=e &amp;&amp;!yn(e))||bn.test(e)||!En.test(e)||null!=t &amp;&amp;e in Object(t)};function Nn(e,t){if(&quot;function &quot;!=typeof e||null!=t &amp;&amp;&quot;function &quot;!=typeof t)throw new TypeError(&quot;Expected a function &quot;);var n=function n(){var r=arguments,a=t?t.apply(this,r):r[0],o=n.cache;if(o.has(a))return o.get(a);var i=e.apply(this,r);return n.cache=o.set(a,i)||o,i};return n.cache=new(Nn.Cache||Mt),n}Nn.Cache=Mt;var Rn,Sn,wn=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|([&quot;&#039;])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,On=/\\(\\)?/g,Cn=(Rn=Nn(function(e){var t=[];return 46===e.charCodeAt(0)&amp;&amp;t.push(&quot;&quot;),e.replace(wn,function(e,n,r,a){t.push(r?a.replace(On,&quot;$1 &quot;):n||e)}),t},function(e){return 500===Sn.size &amp;&amp;Sn.clear(),e}),Sn=Rn.cache,Rn),An=function(e,t){for(var n=-1,r=null==e?0:e.length,a=Array(r);++n &lt;r;)a[n]=t(e[n],n,e);return a},In=ke?ke.prototype:void 0,kn=In?In.toString:void 0,xn=function e(t){if(&quot;string &quot;==typeof t)return t;if(tt(t))return An(t,e)+&quot;&quot;;if(yn(t))return kn?kn.call(t):&quot;&quot;;var n=t+&quot;&quot;;return &quot;0 &quot;==n &amp;&amp;1/t==-Infinity?&quot;-0 &quot;:n},_n=function(e){return null==e?&quot;&quot;:xn(e)},Ln=function(e,t){return tt(e)?e:Tn(e,t)?[e]:Cn(_n(e))},Pn=function(e){if(&quot;string &quot;==typeof e||yn(e))return e;var t=e+&quot;&quot;;return &quot;0 &quot;==t &amp;&amp;1/e==-Infinity?&quot;-0 &quot;:t},Mn=function(e,t){for(var n=0,r=(t=Ln(t,e)).length;null!=e &amp;&amp;n &lt;r;)e=e[Pn(t[n++])];return n &amp;&amp;n==r?e:void 0},Dn=function(e,t){return null!=e &amp;&amp;t in Object(e)},Un=function(e){return e},jn=function(e){return &quot;function &quot;==typeof e?e:null==e?Un:&quot;object &quot;==typeof e?tt(e)?function(e,t){return Tn(e)&amp;&amp;gn(t)?vn(Pn(e),t):function(n){var r=function(e,t,n){var r=null==e?void 0:Mn(e,t);return void 0===r?void 0:r}(n,e);return void 0===r &amp;&amp;r===t?function(e,t){return null!=e &amp;&amp;function(e,t,n){for(var r=-1,a=(t=Ln(t,e)).length,o=!1;++r &lt;a;){var i=Pn(t[r]);if(!(o=null!=e &amp;&amp;n(e,i)))break;e=e[i]}return o||++r!=a?o:!!(a=null==e?0:e.length)&amp;&amp;it(a)&amp;&amp;ot(i,a)&amp;&amp;(tt(e)||et(e))}(e,t,Dn)}(n,e):hn(t,r,3)}}(e[0],e[1]):function(e){var t=function(e){for(var t=Tt(e),n=t.length;n--;){var r=t[n],a=e[r];t[n]=[r,a,gn(a)]}return t}(e);return 1==t.length &amp;&amp;t[0][2]?vn(t[0][0],t[0][1]):function(n){return n===e||function(e,t,n,r){var a=n.length,o=a;if(null==e)return!o;for(e=Object(e);a--;){var i=n[a];if(i[2]?i[1]!==e[i[0]]:!(i[0]in e))return!1}for(;++a &lt;o;){var l=(i=n[a])[0],s=e[l],c=i[1];if(i[2]){if(void 0===s &amp;&amp;!(l in e))return!1}else{var u=new Ut;if(!hn(c,s,3,void 0,u))return!1}}return!0}(n,0,t)}}(e):Tn(t=e)?(n=Pn(t),function(e){return null==e?void 0:e[n]}):function(e){return function(t){return Mn(t,e)}}(t);var t,n};function Fn({file:e,lineNumber:t=1}){const{ignitionConfig:n}=c.useContext(Te),r=n.editor,a=function(e,t){var n={};return t=jn(t),function(e,t){e &amp;&amp;function(e,t,n){for(var r=-1,a=Object(e),o=n(e),i=o.length;i--;){var l=o[++r];if(!1===t(a[l],l,a))break}}(e,t,Tt)}(e,function(e,r,a){Xe(n,r,t(e,r,a))}),n}(n.editorOptions,e=&gt;e.url);return e=(n.remoteSitesPath||&quot;&quot;).length &gt;0 &amp;&amp;(n.localSitesPath||&quot;&quot;).length &gt;0?e.replace(n.remoteSitesPath,n.localSitesPath):e,Object.keys(a).includes(r)?a[r].replace(&quot;%path &quot;,encodeURIComponent(e)).replace(&quot;%line &quot;,encodeURIComponent(t)):(console.warn(`Editor &#039;${r}&#039;is not supported. Support editors are: ${Object.keys(a).join(&quot;, &quot;)}`),null)}function zn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Hn(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?zn(Object(n),!0).forEach(function(t){Vn(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):zn(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Bn(e){return(Bn=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Vn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Wn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:&quot;undefined &quot;!=typeof Symbol &amp;&amp;e[Symbol.iterator]||e[&quot;@@iterator &quot;];if(null!=n){var r,a,o=[],i=!0,l=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&amp;&amp;(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){l=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(l)throw a}}return o}}(e,t)||Yn(e,t)||function(){throw new TypeError(&quot;Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Gn(e){return function(e){if(Array.isArray(e))return $n(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||Yn(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Yn(e,t){if(e){if(&quot;string &quot;==typeof e)return $n(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?$n(e,t):void 0}}function $n(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}var Xn=function(){},Kn={},qn={},Jn=null,Qn={mark:Xn,measure:Xn};try{&quot;undefined &quot;!=typeof window &amp;&amp;(Kn=window),&quot;undefined &quot;!=typeof document &amp;&amp;(qn=document),&quot;undefined &quot;!=typeof MutationObserver &amp;&amp;(Jn=MutationObserver),&quot;undefined &quot;!=typeof performance &amp;&amp;(Qn=performance)}catch(Ro){}var Zn=(Kn.navigator||{}).userAgent,er=void 0===Zn?&quot;&quot;:Zn,tr=Kn,nr=qn,rr=Jn,ar=Qn,or=!!nr.documentElement &amp;&amp;!!nr.head &amp;&amp;&quot;function &quot;==typeof nr.addEventListener &amp;&amp;&quot;function &quot;==typeof nr.createElement,ir=~er.indexOf(&quot;MSIE &quot;)||~er.indexOf(&quot;Trident/&quot;),lr=[&quot;HTML &quot;,&quot;HEAD &quot;,&quot;STYLE &quot;,&quot;SCRIPT &quot;],sr=function(){try{return!0}catch(e){return!1}}(),cr={fas:&quot;solid &quot;,&quot;fa-solid &quot;:&quot;solid &quot;,far:&quot;regular &quot;,&quot;fa-regular &quot;:&quot;regular &quot;,fal:&quot;light &quot;,&quot;fa-light &quot;:&quot;light &quot;,fat:&quot;thin &quot;,&quot;fa-thin &quot;:&quot;thin &quot;,fad:&quot;duotone &quot;,&quot;fa-duotone &quot;:&quot;duotone &quot;,fab:&quot;brands &quot;,&quot;fa-brands &quot;:&quot;brands &quot;,fak:&quot;kit &quot;,&quot;fa-kit &quot;:&quot;kit &quot;,fa:&quot;solid &quot;},ur={solid:&quot;fas &quot;,regular:&quot;far &quot;,light:&quot;fal &quot;,thin:&quot;fat &quot;,duotone:&quot;fad &quot;,brands:&quot;fab &quot;,kit:&quot;fak &quot;},fr={fab:&quot;fa-brands &quot;,fad:&quot;fa-duotone &quot;,fak:&quot;fa-kit &quot;,fal:&quot;fa-light &quot;,far:&quot;fa-regular &quot;,fas:&quot;fa-solid &quot;,fat:&quot;fa-thin &quot;},dr={&quot;fa-brands &quot;:&quot;fab &quot;,&quot;fa-duotone &quot;:&quot;fad &quot;,&quot;fa-kit &quot;:&quot;fak &quot;,&quot;fa-light &quot;:&quot;fal &quot;,&quot;fa-regular &quot;:&quot;far &quot;,&quot;fa-solid &quot;:&quot;fas &quot;,&quot;fa-thin &quot;:&quot;fat &quot;},pr=/fa[srltdbk\-\ ]/,mr=/Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Kit)?.*/i,hr={900:&quot;fas &quot;,400:&quot;far &quot;,normal:&quot;far &quot;,300:&quot;fal &quot;,100:&quot;fat &quot;},gr=[1,2,3,4,5,6,7,8,9,10],vr=gr.concat([11,12,13,14,15,16,17,18,19,20]),yr=[&quot;class &quot;,&quot;data-prefix &quot;,&quot;data-icon &quot;,&quot;data-fa-transform &quot;,&quot;data-fa-mask &quot;],Er=[].concat(Gn(Object.keys(ur)),[&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;beat &quot;,&quot;border &quot;,&quot;fade &quot;,&quot;beat-fade &quot;,&quot;bounce &quot;,&quot;flip-both &quot;,&quot;flip-horizontal &quot;,&quot;flip-vertical &quot;,&quot;flip &quot;,&quot;fw &quot;,&quot;inverse &quot;,&quot;layers-counter &quot;,&quot;layers-text &quot;,&quot;layers &quot;,&quot;li &quot;,&quot;pull-left &quot;,&quot;pull-right &quot;,&quot;pulse &quot;,&quot;rotate-180 &quot;,&quot;rotate-270 &quot;,&quot;rotate-90 &quot;,&quot;rotate-by &quot;,&quot;shake &quot;,&quot;spin-pulse &quot;,&quot;spin-reverse &quot;,&quot;spin &quot;,&quot;stack-1x &quot;,&quot;stack-2x &quot;,&quot;stack &quot;,&quot;ul &quot;,&quot;duotone-group &quot;,&quot;swap-opacity &quot;,&quot;primary &quot;,&quot;secondary &quot;]).concat(gr.map(function(e){return &quot;&quot;.concat(e,&quot;x &quot;)})).concat(vr.map(function(e){return &quot;w-&quot;.concat(e)})),br=tr.FontAwesomeConfig||{};nr &amp;&amp;&quot;function &quot;==typeof nr.querySelector &amp;&amp;[[&quot;data-family-prefix &quot;,&quot;familyPrefix &quot;],[&quot;data-style-default &quot;,&quot;styleDefault &quot;],[&quot;data-replacement-class &quot;,&quot;replacementClass &quot;],[&quot;data-auto-replace-svg &quot;,&quot;autoReplaceSvg &quot;],[&quot;data-auto-add-css &quot;,&quot;autoAddCss &quot;],[&quot;data-auto-a11y &quot;,&quot;autoA11y &quot;],[&quot;data-search-pseudo-elements &quot;,&quot;searchPseudoElements &quot;],[&quot;data-observe-mutations &quot;,&quot;observeMutations &quot;],[&quot;data-mutate-approach &quot;,&quot;mutateApproach &quot;],[&quot;data-keep-original-source &quot;,&quot;keepOriginalSource &quot;],[&quot;data-measure-performance &quot;,&quot;measurePerformance &quot;],[&quot;data-show-missing-icons &quot;,&quot;showMissingIcons &quot;]].forEach(function(e){var t=Wn(e,2),n=t[1],r=function(e){return &quot;&quot;===e||&quot;false &quot;!==e &amp;&amp;(&quot;true &quot;===e||e)}(function(e){var t=nr.querySelector(&quot;script[&quot;+e+&quot;]&quot;);if(t)return t.getAttribute(e)}(t[0]));null!=r &amp;&amp;(br[n]=r)});var Tr=Hn(Hn({},{familyPrefix:&quot;fa &quot;,styleDefault:&quot;solid &quot;,replacementClass:&quot;svg-inline--fa &quot;,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:&quot;async &quot;,keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0}),br);Tr.autoReplaceSvg||(Tr.observeMutations=!1);var Nr={};Object.keys(Tr).forEach(function(e){Object.defineProperty(Nr,e,{enumerable:!0,set:function(t){Tr[e]=t,Rr.forEach(function(e){return e(Nr)})},get:function(){return Tr[e]}})}),tr.FontAwesomeConfig=Nr;var Rr=[],Sr={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function wr(){for(var e=12,t=&quot;&quot;;e-- &gt;0;)t+=&quot;0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ &quot;[62*Math.random()|0];return t}function Or(e){for(var t=[],n=(e||[]).length &gt;&gt;&gt;0;n--;)t[n]=e[n];return t}function Cr(e){return e.classList?Or(e.classList):(e.getAttribute(&quot;class &quot;)||&quot;&quot;).split(&quot;&quot;).filter(function(e){return e})}function Ar(e){return &quot;&quot;.concat(e).replace(/&amp;/g,&quot;&amp;amp;&quot;).replace(/&quot;/g,&quot;&amp;quot;&quot;).replace(/&#039;/g,&quot;&amp;#39;&quot;).replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;)}function Ir(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&quot;: &quot;).concat(e[n].trim(),&quot;;&quot;)},&quot;&quot;)}function kr(e){return e.size!==Sr.size||e.x!==Sr.x||e.y!==Sr.y||e.rotate!==Sr.rotate||e.flipX||e.flipY}function xr(){var e=&quot;fa &quot;,t=&quot;svg-inline--fa &quot;,n=Nr.familyPrefix,r=Nr.replacementClass,a=&#039;:root, :host {\n  --fa-font-solid: normal 900 1em/1 &quot;Font Awesome 6 Solid &quot;;\n  --fa-font-regular: normal 400 1em/1 &quot;Font Awesome 6 Regular &quot;;\n  --fa-font-light: normal 300 1em/1 &quot;Font Awesome 6 Light &quot;;\n  --fa-font-thin: normal 100 1em/1 &quot;Font Awesome 6 Thin &quot;;\n  --fa-font-duotone: normal 900 1em/1 &quot;Font Awesome 6 Duotone &quot;;\n  --fa-font-brands: normal 400 1em/1 &quot;Font Awesome 6 Brands &quot;;\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n  overflow: visible;\n  box-sizing: content-box;\n}\n\n.svg-inline--fa {\n  display: var(--fa-display, inline-block);\n  height: 1em;\n  overflow: visible;\n  vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n  vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n  vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n  vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n  vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n  vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n  vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n  margin-right: var(--fa-pull-margin, 0.3em);\n  width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n  margin-left: var(--fa-pull-margin, 0.3em);\n  width: auto;\n}\n.svg-inline--fa.fa-li {\n  width: var(--fa-li-width, 2em);\n  top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n  width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  position: absolute;\n  right: 0;\n  top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n  display: inline-block;\n  position: absolute;\n  text-align: center;\n}\n\n.fa-layers {\n  display: inline-block;\n  height: 1em;\n  position: relative;\n  text-align: center;\n  vertical-align: -0.125em;\n  width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n  -webkit-transform-origin: center center;\n          transform-origin: center center;\n}\n\n.fa-layers-text {\n  left: 50%;\n  top: 50%;\n  -webkit-transform: translate(-50%, -50%);\n          transform: translate(-50%, -50%);\n  -webkit-transform-origin: center center;\n          transform-origin: center center;\n}\n\n.fa-layers-counter {\n  background-color: var(--fa-counter-background-color, #ff253a);\n  border-radius: var(--fa-counter-border-radius, 1em);\n  box-sizing: border-box;\n  color: var(--fa-inverse, #fff);\n  line-height: var(--fa-counter-line-height, 1);\n  max-width: var(--fa-counter-max-width, 5em);\n  min-width: var(--fa-counter-min-width, 1.5em);\n  overflow: hidden;\n  padding: var(--fa-counter-padding, 0.25em 0.5em);\n  right: var(--fa-right, 0);\n  text-overflow: ellipsis;\n  top: var(--fa-top, 0);\n  -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n          transform: scale(var(--fa-counter-scale, 0.25));\n  -webkit-transform-origin: top right;\n          transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n  bottom: var(--fa-bottom, 0);\n  right: var(--fa-right, 0);\n  top: auto;\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: bottom right;\n          transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n  bottom: var(--fa-bottom, 0);\n  left: var(--fa-left, 0);\n  right: auto;\n  top: auto;\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: bottom left;\n          transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n  top: var(--fa-top, 0);\n  right: var(--fa-right, 0);\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: top right;\n          transform-origin: top right;\n}\n\n.fa-layers-top-left {\n  left: var(--fa-left, 0);\n  right: auto;\n  top: var(--fa-top, 0);\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: top left;\n          transform-origin: top left;\n}\n\n.fa-1x {\n  font-size: 1em;\n}\n\n.fa-2x {\n  font-size: 2em;\n}\n\n.fa-3x {\n  font-size: 3em;\n}\n\n.fa-4x {\n  font-size: 4em;\n}\n\n.fa-5x {\n  font-size: 5em;\n}\n\n.fa-6x {\n  font-size: 6em;\n}\n\n.fa-7x {\n  font-size: 7em;\n}\n\n.fa-8x {\n  font-size: 8em;\n}\n\n.fa-9x {\n  font-size: 9em;\n}\n\n.fa-10x {\n  font-size: 10em;\n}\n\n.fa-2xs {\n  font-size: 0.625em;\n  line-height: 0.1em;\n  vertical-align: 0.225em;\n}\n\n.fa-xs {\n  font-size: 0.75em;\n  line-height: 0.0833333337em;\n  vertical-align: 0.125em;\n}\n\n.fa-sm {\n  font-size: 0.875em;\n  line-height: 0.0714285718em;\n  vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n  font-size: 1.25em;\n  line-height: 0.05em;\n  vertical-align: -0.075em;\n}\n\n.fa-xl {\n  font-size: 1.5em;\n  line-height: 0.0416666682em;\n  vertical-align: -0.125em;\n}\n\n.fa-2xl {\n  font-size: 2em;\n  line-height: 0.03125em;\n  vertical-align: -0.1875em;\n}\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em;\n}\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: var(--fa-li-margin, 2.5em);\n  padding-left: 0;\n}\n.fa-ul &gt;li {\n  position: relative;\n}\n\n.fa-li {\n  left: calc(var(--fa-li-width, 2em) * -1);\n  position: absolute;\n  text-align: center;\n  width: var(--fa-li-width, 2em);\n  line-height: inherit;\n}\n\n.fa-border {\n  border-color: var(--fa-border-color, #eee);\n  border-radius: var(--fa-border-radius, 0.1em);\n  border-style: var(--fa-border-style, solid);\n  border-width: var(--fa-border-width, 0.08em);\n  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n  float: left;\n  margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n  float: right;\n  margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n  -webkit-animation-name: fa-beat;\n          animation-name: fa-beat;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n  -webkit-animation-name: fa-bounce;\n          animation-name: fa-bounce;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n  -webkit-animation-name: fa-fade;\n          animation-name: fa-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n  -webkit-animation-name: fa-beat-fade;\n          animation-name: fa-beat-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n  -webkit-animation-name: fa-flip;\n          animation-name: fa-flip;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n  -webkit-animation-name: fa-shake;\n          animation-name: fa-shake;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 2s);\n          animation-duration: var(--fa-animation-duration, 2s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n  --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n          animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n  .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n    -webkit-animation-delay: -1ms;\n            animation-delay: -1ms;\n    -webkit-animation-duration: 1ms;\n            animation-duration: 1ms;\n    -webkit-animation-iteration-count: 1;\n            animation-iteration-count: 1;\n    transition-delay: 0s;\n    transition-duration: 0s;\n  }\n}\n@-webkit-keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25));\n  }\n}\n@keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25));\n  }\n}\n@-webkit-keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n  }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n  }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n  }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n  }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n}\n@keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n  }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n  }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n  }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n  }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n}\n@-webkit-keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4);\n  }\n}\n@keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4);\n  }\n}\n@-webkit-keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125));\n  }\n}\n@keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125));\n  }\n}\n@-webkit-keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n  }\n}\n@keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n  }\n}\n@-webkit-keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg);\n  }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg);\n  }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg);\n  }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg);\n  }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg);\n  }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg);\n  }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg);\n  }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg);\n  }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n}\n@keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg);\n  }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg);\n  }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg);\n  }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg);\n  }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg);\n  }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg);\n  }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg);\n  }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg);\n  }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg);\n  }\n}\n.fa-rotate-90 {\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n  -webkit-transform: rotate(var(--fa-rotate-angle, none));\n          transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n  display: inline-block;\n  vertical-align: middle;\n  height: 2em;\n  position: relative;\n  width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  position: absolute;\n  right: 0;\n  top: 0;\n  z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n  height: 1em;\n  width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n  height: 2em;\n  width: 2.5em;\n}\n\n.fa-inverse {\n  color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n  fill: var(--fa-primary-color, currentColor);\n  opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n  fill: var(--fa-secondary-color, currentColor);\n  opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n  opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n  opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n  fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n  color: var(--fa-inverse, #fff);\n}&#039;;if(n!==e||r!==t){var o=new RegExp(&quot;\\.&quot;.concat(e,&quot;\\-&quot;),&quot;g &quot;),i=new RegExp(&quot;\\--&quot;.concat(e,&quot;\\-&quot;),&quot;g &quot;),l=new RegExp(&quot;\\.&quot;.concat(t),&quot;g &quot;);a=a.replace(o,&quot;.&quot;.concat(n,&quot;-&quot;)).replace(i,&quot;--&quot;.concat(n,&quot;-&quot;)).replace(l,&quot;.&quot;.concat(r))}return a}var _r=!1;function Lr(){Nr.autoAddCss &amp;&amp;!_r &amp;&amp;(function(e){if(e &amp;&amp;or){var t=nr.createElement(&quot;style &quot;);t.setAttribute(&quot;type &quot;,&quot;text/css &quot;),t.innerHTML=e;for(var n=nr.head.childNodes,r=null,a=n.length-1;a &gt;-1;a--){var o=n[a],i=(o.tagName||&quot;&quot;).toUpperCase();[&quot;STYLE &quot;,&quot;LINK &quot;].indexOf(i)&gt;-1 &amp;&amp;(r=o)}nr.head.insertBefore(t,r)}}(xr()),_r=!0)}var Pr={mixout:function(){return{dom:{css:xr,insertCss:Lr}}},hooks:function(){return{beforeDOMElementCreation:function(){Lr()},beforeI2svg:function(){Lr()}}}},Mr=tr||{};Mr.___FONT_AWESOME___||(Mr.___FONT_AWESOME___={}),Mr.___FONT_AWESOME___.styles||(Mr.___FONT_AWESOME___.styles={}),Mr.___FONT_AWESOME___.hooks||(Mr.___FONT_AWESOME___.hooks={}),Mr.___FONT_AWESOME___.shims||(Mr.___FONT_AWESOME___.shims=[]);var Dr=Mr.___FONT_AWESOME___,Ur=[],jr=!1;function Fr(e){or &amp;&amp;(jr?setTimeout(e,0):Ur.push(e))}function zr(e){var t=e.tag,n=e.attributes,r=void 0===n?{}:n,a=e.children,o=void 0===a?[]:a;return &quot;string &quot;==typeof e?Ar(e):&quot;&lt;&quot;.concat(t,&quot;&quot;).concat(function(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&#039;=&quot;&#039;).concat(Ar(e[n]),&#039;&quot;&#039;)},&quot;&quot;).trim()}(r),&quot;&gt;&quot;).concat(o.map(zr).join(&quot;&quot;),&quot;&lt;/&quot;).concat(t,&quot;&gt;&quot;)}function Hr(e,t,n){if(e &amp;&amp;e[t]&amp;&amp;e[t][n])return{prefix:t,iconName:n,icon:e[t][n]}}or &amp;&amp;((jr=(nr.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(nr.readyState))||nr.addEventListener(&quot;DOMContentLoaded &quot;,function e(){nr.removeEventListener(&quot;DOMContentLoaded &quot;,e),jr=1,Ur.map(function(e){return e()})}));var Br=function(e,t,n,r){var a,o,i,l=Object.keys(e),s=l.length,c=void 0!==r?function(e,t){return function(n,r,a,o){return e.call(t,n,r,a,o)}}(t,r):t;for(void 0===n?(a=1,i=e[l[0]]):(a=0,i=n);a &lt;s;a++)i=c(i,e[o=l[a]],o,e);return i};function Vr(e){var t=function(e){for(var t=[],n=0,r=e.length;n &lt;r;){var a=e.charCodeAt(n++);if(a &gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;n &lt;r){var o=e.charCodeAt(n++);56320==(64512 &amp;o)?t.push(((1023 &amp;a)&lt;&lt;10)+(1023 &amp;o)+65536):(t.push(a),n--)}else t.push(a)}return t}(e);return 1===t.length?t[0].toString(16):null}function Wr(e){return Object.keys(e).reduce(function(t,n){var r=e[n];return r.icon?t[r.iconName]=r.icon:t[n]=r,t},{})}function Gr(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{},r=n.skipHooks,a=void 0!==r &amp;&amp;r,o=Wr(t);&quot;function &quot;!=typeof Dr.hooks.addPack||a?Dr.styles[e]=Hn(Hn({},Dr.styles[e]||{}),o):Dr.hooks.addPack(e,Wr(t)),&quot;fas &quot;===e &amp;&amp;Gr(&quot;fa &quot;,t)}var Yr=Dr.styles,$r=Dr.shims,Xr=Object.values(fr),Kr=null,qr={},Jr={},Qr={},Zr={},ea={},ta=Object.keys(cr);function na(e,t){var n=t.split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);return r!==e||&quot;&quot;===a||~Er.indexOf(a)?null:a}var ra=function(){var e=function(e){return Br(Yr,function(t,n,r){return t[r]=Br(n,e,{}),t},{})};qr=e(function(e,t,n){return t[3]&amp;&amp;(e[t[3]]=n),t[2]&amp;&amp;t[2].filter(function(e){return &quot;number &quot;==typeof e}).forEach(function(t){e[t.toString(16)]=n}),e}),Jr=e(function(e,t,n){return e[n]=n,t[2]&amp;&amp;t[2].filter(function(e){return &quot;string &quot;==typeof e}).forEach(function(t){e[t]=n}),e}),ea=e(function(e,t,n){var r=t[2];return e[n]=n,r.forEach(function(t){e[t]=n}),e});var t=&quot;far &quot;in Yr||Nr.autoFetchSvg,n=Br($r,function(e,n){var r=n[0],a=n[1],o=n[2];return &quot;far &quot;!==a||t||(a=&quot;fas &quot;),&quot;string &quot;==typeof r &amp;&amp;(e.names[r]={prefix:a,iconName:o}),&quot;number &quot;==typeof r &amp;&amp;(e.unicodes[r.toString(16)]={prefix:a,iconName:o}),e},{names:{},unicodes:{}});Qr=n.names,Zr=n.unicodes,Kr=sa(Nr.styleDefault)};function aa(e,t){return(qr[e]||{})[t]}function oa(e,t){return(ea[e]||{})[t]}function ia(e){return Qr[e]||{prefix:null,iconName:null}}function la(){return Kr}function sa(e){return ur[e]||ur[cr[e]]||(e in Dr.styles?e:null)||null}function ca(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.skipLookups,r=void 0!==n &amp;&amp;n,a=null,o=e.reduce(function(e,t){var n=na(Nr.familyPrefix,t);if(Yr[t]?(t=Xr.includes(t)?dr[t]:t,a=t,e.prefix=t):ta.indexOf(t)&gt;-1?(a=t,e.prefix=sa(t)):n?e.iconName=n:t!==Nr.replacementClass &amp;&amp;e.rest.push(t),!r &amp;&amp;e.prefix &amp;&amp;e.iconName){var o=&quot;fa &quot;===a?ia(e.iconName):{},i=oa(e.prefix,e.iconName);o.prefix &amp;&amp;(a=null),e.iconName=o.iconName||i||e.iconName,e.prefix=o.prefix||e.prefix,&quot;far &quot;!==e.prefix||Yr.far||!Yr.fas||Nr.autoFetchSvg||(e.prefix=&quot;fas &quot;)}return e},{prefix:null,iconName:null,rest:[]});return &quot;fa &quot;!==o.prefix &amp;&amp;&quot;fa &quot;!==a||(o.prefix=la()||&quot;fas &quot;),o}Rr.push(function(e){Kr=sa(e.styleDefault)}),ra();var ua=/*#__PURE__*/function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.definitions={}}var t,n;return t=e,(n=[{key:&quot;add &quot;,value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r &lt;t;r++)n[r]=arguments[r];var a=n.reduce(this._pullDefinitions,{});Object.keys(a).forEach(function(t){e.definitions[t]=Hn(Hn({},e.definitions[t]||{}),a[t]),Gr(t,a[t]);var n=fr[t];n &amp;&amp;Gr(n,a[t]),ra()})}},{key:&quot;reset &quot;,value:function(){this.definitions={}}},{key:&quot;_pullDefinitions &quot;,value:function(e,t){var n=t.prefix &amp;&amp;t.iconName &amp;&amp;t.icon?{0:t}:t;return Object.keys(n).map(function(t){var r=n[t],a=r.prefix,o=r.iconName,i=r.icon,l=i[2];e[a]||(e[a]={}),l.length &gt;0 &amp;&amp;l.forEach(function(t){&quot;string &quot;==typeof t &amp;&amp;(e[a][t]=i)}),e[a][o]=i}),e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(t.prototype,n),Object.defineProperty(t,&quot;prototype &quot;,{writable:!1}),e}(),fa=[],da={},pa={},ma=Object.keys(pa);function ha(e,t){for(var n=arguments.length,r=new Array(n &gt;2?n-2:0),a=2;a &lt;n;a++)r[a-2]=arguments[a];var o=da[e]||[];return o.forEach(function(e){t=e.apply(null,[t].concat(r))}),t}function ga(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];var a=da[e]||[];a.forEach(function(e){e.apply(null,n)})}function va(){var e=arguments[0],t=Array.prototype.slice.call(arguments,1);return pa[e]?pa[e].apply(null,t):void 0}function ya(e){&quot;fa &quot;===e.prefix &amp;&amp;(e.prefix=&quot;fas &quot;);var t=e.iconName,n=e.prefix||la();if(t)return t=oa(n,t)||t,Hr(Ea.definitions,n,t)||Hr(Dr.styles,n,t)}var Ea=new ua,ba={i2svg:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{};return or?(ga(&quot;beforeI2svg &quot;,e),va(&quot;pseudoElements2svg &quot;,e),va(&quot;i2svg &quot;,e)):Promise.reject(&quot;Operation requires a DOM of some kind.&quot;)},watch:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot;!1===Nr.autoReplaceSvg &amp;&amp;(Nr.autoReplaceSvg=!0),Nr.observeMutations=!0,Fr(function(){Na({autoReplaceSvgRoot:t}),ga(&quot;watch &quot;,e)})}},Ta={noAuto:function(){Nr.autoReplaceSvg=!1,Nr.observeMutations=!1,ga(&quot;noAuto &quot;)},config:Nr,dom:ba,parse:{icon:function(e){if(null===e)return null;if(&quot;object &quot;===Bn(e)&amp;&amp;e.prefix &amp;&amp;e.iconName)return{prefix:e.prefix,iconName:oa(e.prefix,e.iconName)||e.iconName};if(Array.isArray(e)&amp;&amp;2===e.length){var t=0===e[1].indexOf(&quot;fa-&quot;)?e[1].slice(3):e[1],n=sa(e[0]);return{prefix:n,iconName:oa(n,t)||t}}if(&quot;string &quot;==typeof e &amp;&amp;(e.indexOf(&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;))&gt;-1||e.match(pr))){var r=ca(e.split(&quot;&quot;),{skipLookups:!0});return{prefix:r.prefix||la(),iconName:oa(r.prefix,r.iconName)||r.iconName}}if(&quot;string &quot;==typeof e){var a=la();return{prefix:a,iconName:oa(a,e)||e}}}},library:Ea,findIconDefinition:ya,toHtml:zr},Na=function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot,n=void 0===t?nr:t;(Object.keys(Dr.styles).length &gt;0||Nr.autoFetchSvg)&amp;&amp;or &amp;&amp;Nr.autoReplaceSvg &amp;&amp;Ta.dom.i2svg({node:n})};function Ra(e,t){return Object.defineProperty(e,&quot;abstract &quot;,{get:t}),Object.defineProperty(e,&quot;html &quot;,{get:function(){return e.abstract.map(function(e){return zr(e)})}}),Object.defineProperty(e,&quot;node &quot;,{get:function(){if(or){var t=nr.createElement(&quot;div &quot;);return t.innerHTML=e.html,t.children}}}),e}function Sa(e){var t=e.icons,n=t.main,r=t.mask,a=e.prefix,o=e.iconName,i=e.transform,l=e.symbol,s=e.title,c=e.maskId,u=e.titleId,f=e.extra,d=e.watchable,p=void 0!==d &amp;&amp;d,m=r.found?r:n,h=m.width,g=m.height,v=&quot;fak &quot;===a,y=[Nr.replacementClass,o?&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(o):&quot;&quot;].filter(function(e){return-1===f.classes.indexOf(e)}).filter(function(e){return &quot;&quot;!==e||!!e}).concat(f.classes).join(&quot;&quot;),E={children:[],attributes:Hn(Hn({},f.attributes),{},{&quot;data-prefix &quot;:a,&quot;data-icon &quot;:o,class:y,role:f.attributes.role||&quot;img &quot;,xmlns:&quot;http://www.w3.org/2000/svg &quot;,viewBox:&quot;0 0 &quot;.concat(h,&quot;&quot;).concat(g)})},b=v &amp;&amp;!~f.classes.indexOf(&quot;fa-fw &quot;)?{width:&quot;&quot;.concat(h/g*16*.0625,&quot;em &quot;)}:{};p &amp;&amp;(E.attributes[&quot;data-fa-i2svg &quot;]=&quot;&quot;),s &amp;&amp;(E.children.push({tag:&quot;title &quot;,attributes:{id:E.attributes[&quot;aria-labelledby &quot;]||&quot;title-&quot;.concat(u||wr())},children:[s]}),delete E.attributes.title);var T=Hn(Hn({},E),{},{prefix:a,iconName:o,main:n,mask:r,maskId:c,transform:i,symbol:l,styles:Hn(Hn({},b),f.styles)}),N=r.found &amp;&amp;n.found?va(&quot;generateAbstractMask &quot;,T)||{children:[],attributes:{}}:va(&quot;generateAbstractIcon &quot;,T)||{children:[],attributes:{}},R=N.attributes;return T.children=N.children,T.attributes=R,l?function(e){var t=e.iconName,n=e.children,r=e.attributes,a=e.symbol,o=!0===a?&quot;&quot;.concat(e.prefix,&quot;-&quot;).concat(Nr.familyPrefix,&quot;-&quot;).concat(t):a;return[{tag:&quot;svg &quot;,attributes:{style:&quot;display: none;&quot;},children:[{tag:&quot;symbol &quot;,attributes:Hn(Hn({},r),{},{id:o}),children:n}]}]}(T):function(e){var t=e.children,n=e.main,r=e.mask,a=e.attributes,o=e.styles,i=e.transform;if(kr(i)&amp;&amp;n.found &amp;&amp;!r.found){var l={x:n.width/n.height/2,y:.5};a.style=Ir(Hn(Hn({},o),{},{&quot;transform-origin &quot;:&quot;&quot;.concat(l.x+i.x/16,&quot;em &quot;).concat(l.y+i.y/16,&quot;em &quot;)}))}return[{tag:&quot;svg &quot;,attributes:a,children:t}]}(T)}function wa(e){var t=e.content,n=e.width,r=e.height,a=e.transform,o=e.title,i=e.extra,l=e.watchable,s=void 0!==l &amp;&amp;l,c=Hn(Hn(Hn({},i.attributes),o?{title:o}:{}),{},{class:i.classes.join(&quot;&quot;)});s &amp;&amp;(c[&quot;data-fa-i2svg &quot;]=&quot;&quot;);var u=Hn({},i.styles);kr(a)&amp;&amp;(u.transform=function(e){var t=e.transform,n=e.width,r=e.height,a=void 0===r?16:r,o=e.startCentered,i=void 0!==o &amp;&amp;o,l=&quot;&quot;;return l+=i &amp;&amp;ir?&quot;translate(&quot;.concat(t.x/16-(void 0===n?16:n)/2,&quot;em, &quot;).concat(t.y/16-a/2,&quot;em) &quot;):i?&quot;translate(calc(-50% + &quot;.concat(t.x/16,&quot;em), calc(-50% + &quot;).concat(t.y/16,&quot;em)) &quot;):&quot;translate(&quot;.concat(t.x/16,&quot;em, &quot;).concat(t.y/16,&quot;em) &quot;),(l+=&quot;scale(&quot;.concat(t.size/16*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/16*(t.flipY?-1:1),&quot;) &quot;))+&quot;rotate(&quot;.concat(t.rotate,&quot;deg) &quot;)}({transform:a,startCentered:!0,width:n,height:r}),u[&quot;-webkit-transform &quot;]=u.transform);var f=Ir(u);f.length &gt;0 &amp;&amp;(c.style=f);var d=[];return d.push({tag:&quot;span &quot;,attributes:c,children:[t]}),o &amp;&amp;d.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[o]}),d}function Oa(e){var t=e.content,n=e.title,r=e.extra,a=Hn(Hn(Hn({},r.attributes),n?{title:n}:{}),{},{class:r.classes.join(&quot;&quot;)}),o=Ir(r.styles);o.length &gt;0 &amp;&amp;(a.style=o);var i=[];return i.push({tag:&quot;span &quot;,attributes:a,children:[t]}),n &amp;&amp;i.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[n]}),i}var Ca=Dr.styles;function Aa(e){var t=e[0],n=e[1],r=Wn(e.slice(4),1)[0];return{found:!0,width:t,height:n,icon:Array.isArray(r)?{tag:&quot;g &quot;,attributes:{class:&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(&quot;duotone-group &quot;)},children:[{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(&quot;secondary &quot;),fill:&quot;currentColor &quot;,d:r[0]}},{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(Nr.familyPrefix,&quot;-&quot;).concat(&quot;primary &quot;),fill:&quot;currentColor &quot;,d:r[1]}}]}:{tag:&quot;path &quot;,attributes:{fill:&quot;currentColor &quot;,d:r}}}}var Ia={found:!1,width:512,height:512};function ka(e,t){var n=t;return &quot;fa &quot;===t &amp;&amp;null!==Nr.styleDefault &amp;&amp;(t=la()),new Promise(function(r,a){if(va(&quot;missingIconAbstract &quot;),&quot;fa &quot;===n){var o=ia(e)||{};e=o.iconName||e,t=o.prefix||t}if(e &amp;&amp;t &amp;&amp;Ca[t]&amp;&amp;Ca[t][e])return r(Aa(Ca[t][e]));!function(e,t){sr||Nr.showMissingIcons||!e||console.error(&#039;Icon with name &quot;&#039;.concat(e,&#039;&quot;and prefix &quot;&#039;).concat(t,&#039;&quot;is missing.&#039;))}(e,t),r(Hn(Hn({},Ia),{},{icon:Nr.showMissingIcons &amp;&amp;e &amp;&amp;va(&quot;missingIconAbstract &quot;)||{}}))})}var xa=function(){},_a=Nr.measurePerformance &amp;&amp;ar &amp;&amp;ar.mark &amp;&amp;ar.measure?ar:{mark:xa,measure:xa},La=function(e){return _a.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;)),function(){return function(e){_a.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;)),_a.measure(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;))}(e)}},Pa=function(){};function Ma(e){return &quot;string &quot;==typeof(e.getAttribute?e.getAttribute(&quot;data-fa-i2svg &quot;):null)}function Da(e){return nr.createElementNS(&quot;http://www.w3.org/2000/svg &quot;,e)}function Ua(e){return nr.createElement(e)}function ja(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.ceFn,r=void 0===n?&quot;svg &quot;===e.tag?Da:Ua:n;if(&quot;string &quot;==typeof e)return nr.createTextNode(e);var a=r(e.tag);Object.keys(e.attributes||[]).forEach(function(t){a.setAttribute(t,e.attributes[t])});var o=e.children||[];return o.forEach(function(e){a.appendChild(ja(e,{ceFn:r}))}),a}var Fa={replace:function(e){var t=e[0];if(t.parentNode)if(e[1].forEach(function(e){t.parentNode.insertBefore(ja(e),t)}),null===t.getAttribute(&quot;data-fa-i2svg &quot;)&amp;&amp;Nr.keepOriginalSource){var n=nr.createComment(function(e){var t=&quot;&quot;.concat(e.outerHTML,&quot;&quot;);return &quot;&quot;.concat(t,&quot;Font Awesome fontawesome.com &quot;)}(t));t.parentNode.replaceChild(n,t)}else t.remove()},nest:function(e){var t=e[0],n=e[1];if(~Cr(t).indexOf(Nr.replacementClass))return Fa.replace(e);var r=new RegExp(&quot;&quot;.concat(Nr.familyPrefix,&quot;-.*&quot;));if(delete n[0].attributes.id,n[0].attributes.class){var a=n[0].attributes.class.split(&quot;&quot;).reduce(function(e,t){return t===Nr.replacementClass||t.match(r)?e.toSvg.push(t):e.toNode.push(t),e},{toNode:[],toSvg:[]});n[0].attributes.class=a.toSvg.join(&quot;&quot;),0===a.toNode.length?t.removeAttribute(&quot;class &quot;):t.setAttribute(&quot;class &quot;,a.toNode.join(&quot;&quot;))}var o=n.map(function(e){return zr(e)}).join(&quot;\n &quot;);t.setAttribute(&quot;data-fa-i2svg &quot;,&quot;&quot;),t.innerHTML=o}};function za(e){e()}function Ha(e,t){var n=&quot;function &quot;==typeof t?t:Pa;if(0===e.length)n();else{var r=za;&quot;async &quot;===Nr.mutateApproach &amp;&amp;(r=tr.requestAnimationFrame||za),r(function(){var t=!0===Nr.autoReplaceSvg?Fa.replace:Fa[Nr.autoReplaceSvg]||Fa.replace,r=La(&quot;mutate &quot;);e.map(t),r(),n()})}}var Ba=!1;function Va(){Ba=!0}function Wa(){Ba=!1}var Ga=null;function Ya(e){if(rr &amp;&amp;Nr.observeMutations){var t=e.treeCallback,n=void 0===t?Pa:t,r=e.nodeCallback,a=void 0===r?Pa:r,o=e.pseudoElementsCallback,i=void 0===o?Pa:o,l=e.observeMutationsRoot,s=void 0===l?nr:l;Ga=new rr(function(e){if(!Ba){var t=la();Or(e).forEach(function(e){if(&quot;childList &quot;===e.type &amp;&amp;e.addedNodes.length &gt;0 &amp;&amp;!Ma(e.addedNodes[0])&amp;&amp;(Nr.searchPseudoElements &amp;&amp;i(e.target),n(e.target)),&quot;attributes &quot;===e.type &amp;&amp;e.target.parentNode &amp;&amp;Nr.searchPseudoElements &amp;&amp;i(e.target.parentNode),&quot;attributes &quot;===e.type &amp;&amp;Ma(e.target)&amp;&amp;~yr.indexOf(e.attributeName))if(&quot;class &quot;===e.attributeName &amp;&amp;function(e){var t=e.getAttribute?e.getAttribute(&quot;data-prefix &quot;):null,n=e.getAttribute?e.getAttribute(&quot;data-icon &quot;):null;return t &amp;&amp;n}(e.target)){var r=ca(Cr(e.target)),o=r.iconName;e.target.setAttribute(&quot;data-prefix &quot;,r.prefix||t),o &amp;&amp;e.target.setAttribute(&quot;data-icon &quot;,o)}else(function(e){return e &amp;&amp;e.classList &amp;&amp;e.classList.contains &amp;&amp;e.classList.contains(Nr.replacementClass)})(e.target)&amp;&amp;a(e.target)})}}),or &amp;&amp;Ga.observe(s,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function $a(e){var t=e.getAttribute(&quot;style &quot;),n=[];return t &amp;&amp;(n=t.split(&quot;;&quot;).reduce(function(e,t){var n=t.split(&quot;:&quot;),r=n[0],a=n.slice(1);return r &amp;&amp;a.length &gt;0 &amp;&amp;(e[r]=a.join(&quot;:&quot;).trim()),e},{})),n}function Xa(e){var t=e.getAttribute(&quot;data-prefix &quot;),n=e.getAttribute(&quot;data-icon &quot;),r=void 0!==e.innerText?e.innerText.trim():&quot;&quot;,a=ca(Cr(e));return a.prefix||(a.prefix=la()),t &amp;&amp;n &amp;&amp;(a.prefix=t,a.iconName=n),a.iconName &amp;&amp;a.prefix||a.prefix &amp;&amp;r.length &gt;0 &amp;&amp;(a.iconName=(Jr[a.prefix]||{})[e.innerText]||aa(a.prefix,Vr(e.innerText))),a}function Ka(e){var t=Or(e.attributes).reduce(function(e,t){return &quot;class &quot;!==e.name &amp;&amp;&quot;style &quot;!==e.name &amp;&amp;(e[t.name]=t.value),e},{}),n=e.getAttribute(&quot;title &quot;),r=e.getAttribute(&quot;data-fa-title-id &quot;);return Nr.autoA11y &amp;&amp;(n?t[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(Nr.replacementClass,&quot;-title-&quot;).concat(r||wr()):(t[&quot;aria-hidden &quot;]=&quot;true &quot;,t.focusable=&quot;false &quot;)),t}function qa(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{styleParser:!0},n=Xa(e),r=n.iconName,a=n.prefix,o=n.rest,i=Ka(e),l=ha(&quot;parseNodeAttributes &quot;,{},e),s=t.styleParser?$a(e):[];return Hn({iconName:r,title:e.getAttribute(&quot;title &quot;),titleId:e.getAttribute(&quot;data-fa-title-id &quot;),prefix:a,transform:Sr,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:o,styles:s,attributes:i}},l)}var Ja=Dr.styles;function Qa(e){var t=&quot;nest &quot;===Nr.autoReplaceSvg?qa(e,{styleParser:!1}):qa(e);return~t.extra.classes.indexOf(&quot;fa-layers-text &quot;)?va(&quot;generateLayersText &quot;,e,t):va(&quot;generateSvgReplacementMutation &quot;,e,t)}function Za(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;if(!or)return Promise.resolve();var n=nr.documentElement.classList,r=function(e){return n.add(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},a=function(e){return n.remove(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},o=Object.keys(Nr.autoFetchSvg?cr:Ja),i=[&quot;.&quot;.concat(&quot;fa-layers-text &quot;,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)].concat(o.map(function(e){return &quot;.&quot;.concat(e,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)})).join(&quot;, &quot;);if(0===i.length)return Promise.resolve();var l=[];try{l=Or(e.querySelectorAll(i))}catch(e){}if(!(l.length &gt;0))return Promise.resolve();r(&quot;pending &quot;),a(&quot;complete &quot;);var s=La(&quot;onTree &quot;),c=l.reduce(function(e,t){try{var n=Qa(t);n &amp;&amp;e.push(n)}catch(e){sr||&quot;MissingIcon &quot;===e.name &amp;&amp;console.error(e)}return e},[]);return new Promise(function(e,n){Promise.all(c).then(function(n){Ha(n,function(){r(&quot;active &quot;),r(&quot;complete &quot;),a(&quot;pending &quot;),&quot;function &quot;==typeof t &amp;&amp;t(),s(),e()})}).catch(function(e){s(),n(e)})})}function eo(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;Qa(e).then(function(e){e &amp;&amp;Ha([e],t)})}var to=function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Sr:n,a=t.symbol,o=void 0!==a &amp;&amp;a,i=t.mask,l=void 0===i?null:i,s=t.maskId,c=void 0===s?null:s,u=t.title,f=void 0===u?null:u,d=t.titleId,p=void 0===d?null:d,m=t.classes,h=void 0===m?[]:m,g=t.attributes,v=void 0===g?{}:g,y=t.styles,E=void 0===y?{}:y;if(e){var b=e.prefix,T=e.iconName,N=e.icon;return Ra(Hn({type:&quot;icon &quot;},e),function(){return ga(&quot;beforeDOMElementCreation &quot;,{iconDefinition:e,params:t}),Nr.autoA11y &amp;&amp;(f?v[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(Nr.replacementClass,&quot;-title-&quot;).concat(p||wr()):(v[&quot;aria-hidden &quot;]=&quot;true &quot;,v.focusable=&quot;false &quot;)),Sa({icons:{main:Aa(N),mask:l?Aa(l.icon):{found:!1,width:null,height:null,icon:{}}},prefix:b,iconName:T,transform:Hn(Hn({},Sr),r),symbol:o,title:f,maskId:c,titleId:p,extra:{attributes:v,styles:E,classes:h}})})}},no={mixout:function(){return{icon:(e=to,function(t){var n=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},r=(t||{}).icon?t:ya(t||{}),a=n.mask;return a &amp;&amp;(a=(a||{}).icon?a:ya(a||{})),e(r,Hn(Hn({},n),{},{mask:a}))})};var e},hooks:function(){return{mutationObserverCallbacks:function(e){return e.treeCallback=Za,e.nodeCallback=eo,e}}},provides:function(e){e.i2svg=function(e){var t=e.node,n=e.callback;return Za(void 0===t?nr:t,void 0===n?function(){}:n)},e.generateSvgReplacementMutation=function(e,t){var n=t.iconName,r=t.title,a=t.titleId,o=t.prefix,i=t.transform,l=t.symbol,s=t.mask,c=t.maskId,u=t.extra;return new Promise(function(t,f){Promise.all([ka(n,o),s.iconName?ka(s.iconName,s.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(s){var f=Wn(s,2);t([e,Sa({icons:{main:f[0],mask:f[1]},prefix:o,iconName:n,transform:i,symbol:l,maskId:c,title:r,titleId:a,extra:u,watchable:!0})])}).catch(f)})},e.generateAbstractIcon=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.transform,i=Ir(e.styles);return i.length &gt;0 &amp;&amp;(r.style=i),kr(o)&amp;&amp;(t=va(&quot;generateAbstractTransformGrouping &quot;,{main:a,transform:o,containerWidth:a.width,iconWidth:a.width})),n.push(t||a.icon),{children:n,attributes:r}}}},ro={mixout:function(){return{layer:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.classes,r=void 0===n?[]:n;return Ra({type:&quot;layer &quot;},function(){ga(&quot;beforeDOMElementCreation &quot;,{assembler:e,params:t});var n=[];return e(function(e){Array.isArray(e)?e.map(function(e){n=n.concat(e.abstract)}):n=n.concat(e.abstract)}),[{tag:&quot;span &quot;,attributes:{class:[&quot;&quot;.concat(Nr.familyPrefix,&quot;-layers &quot;)].concat(Gn(r)).join(&quot;&quot;)},children:n}]})}}}},ao={mixout:function(){return{counter:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.title,r=void 0===n?null:n,a=t.classes,o=void 0===a?[]:a,i=t.attributes,l=void 0===i?{}:i,s=t.styles,c=void 0===s?{}:s;return Ra({type:&quot;counter &quot;,content:e},function(){return ga(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),Oa({content:e.toString(),title:r,extra:{attributes:l,styles:c,classes:[&quot;&quot;.concat(Nr.familyPrefix,&quot;-layers-counter &quot;)].concat(Gn(o))}})})}}}},oo={mixout:function(){return{text:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Sr:n,a=t.title,o=void 0===a?null:a,i=t.classes,l=void 0===i?[]:i,s=t.attributes,c=void 0===s?{}:s,u=t.styles,f=void 0===u?{}:u;return Ra({type:&quot;text &quot;,content:e},function(){return ga(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),wa({content:e,transform:Hn(Hn({},Sr),r),title:o,extra:{attributes:c,styles:f,classes:[&quot;&quot;.concat(Nr.familyPrefix,&quot;-layers-text &quot;)].concat(Gn(l))}})})}}},provides:function(e){e.generateLayersText=function(e,t){var n=t.title,r=t.transform,a=t.extra,o=null,i=null;if(ir){var l=parseInt(getComputedStyle(e).fontSize,10),s=e.getBoundingClientRect();o=s.width/l,i=s.height/l}return Nr.autoA11y &amp;&amp;!n &amp;&amp;(a.attributes[&quot;aria-hidden &quot;]=&quot;true &quot;),Promise.resolve([e,wa({content:e.innerHTML,width:o,height:i,transform:r,title:n,extra:a,watchable:!0})])}}},io=new RegExp(&#039;&quot;&#039;,&quot;ug &quot;),lo=[1105920,1112319];function so(e,t){var n=&quot;&quot;.concat(&quot;data-fa-pseudo-element-pending &quot;).concat(t.replace(&quot;:&quot;,&quot;-&quot;));return new Promise(function(r,a){if(null!==e.getAttribute(n))return r();var o,i,l,s=Or(e.children).filter(function(e){return e.getAttribute(&quot;data-fa-pseudo-element &quot;)===t})[0],c=tr.getComputedStyle(e,t),u=c.getPropertyValue(&quot;font-family &quot;).match(mr),f=c.getPropertyValue(&quot;font-weight &quot;),d=c.getPropertyValue(&quot;content &quot;);if(s &amp;&amp;!u)return e.removeChild(s),r();if(u &amp;&amp;&quot;none &quot;!==d &amp;&amp;&quot;&quot;!==d){var p=c.getPropertyValue(&quot;content &quot;),m=~[&quot;Solid &quot;,&quot;Regular &quot;,&quot;Light &quot;,&quot;Thin &quot;,&quot;Duotone &quot;,&quot;Brands &quot;,&quot;Kit &quot;].indexOf(u[2])?ur[u[2].toLowerCase()]:hr[f],h=function(e){var t,n,r,a,o=e.replace(io,&quot;&quot;),i=(r=(t=o).length,(a=t.charCodeAt(0))&gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;r &gt;1 &amp;&amp;(n=t.charCodeAt(1))&gt;=56320 &amp;&amp;n &lt;=57343?1024*(a-55296)+n-56320+65536:a),l=i &gt;=lo[0]&amp;&amp;i &lt;=lo[1],s=2===o.length &amp;&amp;o[0]===o[1];return{value:Vr(s?o[0]:o),isSecondary:l||s}}(p),g=h.value,v=h.isSecondary,y=u[0].startsWith(&quot;FontAwesome &quot;),E=aa(m,g),b=E;if(y){var T=(i=Zr[o=g],l=aa(&quot;fas &quot;,o),i||(l?{prefix:&quot;fas &quot;,iconName:l}:null)||{prefix:null,iconName:null});T.iconName &amp;&amp;T.prefix &amp;&amp;(E=T.iconName,m=T.prefix)}if(!E||v||s &amp;&amp;s.getAttribute(&quot;data-prefix &quot;)===m &amp;&amp;s.getAttribute(&quot;data-icon &quot;)===b)r();else{e.setAttribute(n,b),s &amp;&amp;e.removeChild(s);var N={iconName:null,title:null,titleId:null,prefix:null,transform:Sr,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}},R=N.extra;R.attributes[&quot;data-fa-pseudo-element &quot;]=t,ka(E,m).then(function(a){var o=Sa(Hn(Hn({},N),{},{icons:{main:a,mask:{prefix:null,iconName:null,rest:[]}},prefix:m,iconName:b,extra:R,watchable:!0})),i=nr.createElement(&quot;svg &quot;);&quot;::before &quot;===t?e.insertBefore(i,e.firstChild):e.appendChild(i),i.outerHTML=o.map(function(e){return zr(e)}).join(&quot;\n &quot;),e.removeAttribute(n),r()}).catch(a)}}else r()})}function co(e){return Promise.all([so(e,&quot;::before &quot;),so(e,&quot;::after &quot;)])}function uo(e){return!(e.parentNode===document.head||~lr.indexOf(e.tagName.toUpperCase())||e.getAttribute(&quot;data-fa-pseudo-element &quot;)||e.parentNode &amp;&amp;&quot;svg &quot;===e.parentNode.tagName)}function fo(e){if(or)return new Promise(function(t,n){var r=Or(e.querySelectorAll(&quot;*&quot;)).filter(uo).map(co),a=La(&quot;searchPseudoElements &quot;);Va(),Promise.all(r).then(function(){a(),Wa(),t()}).catch(function(){a(),Wa(),n()})})}var po,mo=!1,ho=function(e){return e.toLowerCase().split(&quot;&quot;).reduce(function(e,t){var n=t.toLowerCase().split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);if(r &amp;&amp;&quot;h &quot;===a)return e.flipX=!0,e;if(r &amp;&amp;&quot;v &quot;===a)return e.flipY=!0,e;if(a=parseFloat(a),isNaN(a))return e;switch(r){case &quot;grow &quot;:e.size=e.size+a;break;case &quot;shrink &quot;:e.size=e.size-a;break;case &quot;left &quot;:e.x=e.x-a;break;case &quot;right &quot;:e.x=e.x+a;break;case &quot;up &quot;:e.y=e.y-a;break;case &quot;down &quot;:e.y=e.y+a;break;case &quot;rotate &quot;:e.rotate=e.rotate+a}return e},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},go={x:0,y:0,width:&quot;100%&quot;,height:&quot;100%&quot;};function vo(e){var t=!(arguments.length &gt;1 &amp;&amp;void 0!==arguments[1])||arguments[1];return e.attributes &amp;&amp;(e.attributes.fill||t)&amp;&amp;(e.attributes.fill=&quot;black &quot;),e}po=Ta,fa=[Pr,no,ro,ao,oo,{hooks:function(){return{mutationObserverCallbacks:function(e){return e.pseudoElementsCallback=fo,e}}},provides:function(e){e.pseudoElements2svg=function(e){var t=e.node;Nr.searchPseudoElements &amp;&amp;fo(void 0===t?nr:t)}}},{mixout:function(){return{dom:{unwatch:function(){Va(),mo=!0}}}},hooks:function(){return{bootstrap:function(){Ya(ha(&quot;mutationObserverCallbacks &quot;,{}))},noAuto:function(){Ga &amp;&amp;Ga.disconnect()},watch:function(e){var t=e.observeMutationsRoot;mo?Wa():Ya(ha(&quot;mutationObserverCallbacks &quot;,{observeMutationsRoot:t}))}}}},{mixout:function(){return{parse:{transform:function(e){return ho(e)}}}},hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-transform &quot;);return n &amp;&amp;(e.transform=ho(n)),e}}},provides:function(e){e.generateAbstractTransformGrouping=function(e){var t=e.main,n=e.transform,r=e.iconWidth,a={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},o=&quot;translate(&quot;.concat(32*n.x,&quot;, &quot;).concat(32*n.y,&quot;) &quot;),i=&quot;scale(&quot;.concat(n.size/16*(n.flipX?-1:1),&quot;, &quot;).concat(n.size/16*(n.flipY?-1:1),&quot;) &quot;),l=&quot;rotate(&quot;.concat(n.rotate,&quot;0 0)&quot;),s={outer:a,inner:{transform:&quot;&quot;.concat(o,&quot;&quot;).concat(i,&quot;&quot;).concat(l)},path:{transform:&quot;translate(&quot;.concat(r/2*-1,&quot;-256)&quot;)}};return{tag:&quot;g &quot;,attributes:Hn({},s.outer),children:[{tag:&quot;g &quot;,attributes:Hn({},s.inner),children:[{tag:t.icon.tag,children:t.icon.children,attributes:Hn(Hn({},t.icon.attributes),s.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-mask &quot;),r=n?ca(n.split(&quot;&quot;).map(function(e){return e.trim()})):{prefix:null,iconName:null,rest:[]};return r.prefix||(r.prefix=la()),e.mask=r,e.maskId=t.getAttribute(&quot;data-fa-mask-id &quot;),e}}},provides:function(e){e.generateAbstractMask=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.mask,i=e.maskId,l=a.icon,s=o.icon,c=function(e){var t=e.transform,n=e.iconWidth,r={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},a=&quot;translate(&quot;.concat(32*t.x,&quot;, &quot;).concat(32*t.y,&quot;) &quot;),o=&quot;scale(&quot;.concat(t.size/16*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/16*(t.flipY?-1:1),&quot;) &quot;),i=&quot;rotate(&quot;.concat(t.rotate,&quot;0 0)&quot;);return{outer:r,inner:{transform:&quot;&quot;.concat(a,&quot;&quot;).concat(o,&quot;&quot;).concat(i)},path:{transform:&quot;translate(&quot;.concat(n/2*-1,&quot;-256)&quot;)}}}({transform:e.transform,containerWidth:o.width,iconWidth:a.width}),u={tag:&quot;rect &quot;,attributes:Hn(Hn({},go),{},{fill:&quot;white &quot;})},f=l.children?{children:l.children.map(vo)}:{},d={tag:&quot;g &quot;,attributes:Hn({},c.inner),children:[vo(Hn({tag:l.tag,attributes:Hn(Hn({},l.attributes),c.path)},f))]},p={tag:&quot;g &quot;,attributes:Hn({},c.outer),children:[d]},m=&quot;mask-&quot;.concat(i||wr()),h=&quot;clip-&quot;.concat(i||wr()),g={tag:&quot;mask &quot;,attributes:Hn(Hn({},go),{},{id:m,maskUnits:&quot;userSpaceOnUse &quot;,maskContentUnits:&quot;userSpaceOnUse &quot;}),children:[u,p]},v={tag:&quot;defs &quot;,children:[{tag:&quot;clipPath &quot;,attributes:{id:h},children:(t=s,&quot;g &quot;===t.tag?t.children:[t])},g]};return n.push(v,{tag:&quot;rect &quot;,attributes:Hn({fill:&quot;currentColor &quot;,&quot;clip-path &quot;:&quot;url(#&quot;.concat(h,&quot;)&quot;),mask:&quot;url(#&quot;.concat(m,&quot;)&quot;)},go)}),{children:n,attributes:r}}}},{provides:function(e){var t=!1;tr.matchMedia &amp;&amp;(t=tr.matchMedia(&quot;(prefers-reduced-motion: reduce)&quot;).matches),e.missingIconAbstract=function(){var e=[],n={fill:&quot;currentColor &quot;},r={attributeType:&quot;XML &quot;,repeatCount:&quot;indefinite &quot;,dur:&quot;2s &quot;};e.push({tag:&quot;path &quot;,attributes:Hn(Hn({},n),{},{d:&quot;M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z &quot;})});var a=Hn(Hn({},r),{},{attributeName:&quot;opacity &quot;}),o={tag:&quot;circle &quot;,attributes:Hn(Hn({},n),{},{cx:&quot;256 &quot;,cy:&quot;364 &quot;,r:&quot;28 &quot;}),children:[]};return t||o.children.push({tag:&quot;animate &quot;,attributes:Hn(Hn({},r),{},{attributeName:&quot;r &quot;,values:&quot;28;14;28;28;14;28;&quot;})},{tag:&quot;animate &quot;,attributes:Hn(Hn({},a),{},{values:&quot;1;0;1;1;0;1;&quot;})}),e.push(o),e.push({tag:&quot;path &quot;,attributes:Hn(Hn({},n),{},{opacity:&quot;1 &quot;,d:&quot;M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z &quot;}),children:t?[]:[{tag:&quot;animate &quot;,attributes:Hn(Hn({},a),{},{values:&quot;1;0;0;0;0;1;&quot;})}]}),t||e.push({tag:&quot;path &quot;,attributes:Hn(Hn({},n),{},{opacity:&quot;0 &quot;,d:&quot;M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z &quot;}),children:[{tag:&quot;animate &quot;,attributes:Hn(Hn({},a),{},{values:&quot;0;0;1;1;0;0;&quot;})}]}),{tag:&quot;g &quot;,attributes:{class:&quot;missing &quot;},children:e}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-symbol &quot;);return e.symbol=null!==n &amp;&amp;(&quot;&quot;===n||n),e}}}}],da={},Object.keys(pa).forEach(function(e){-1===ma.indexOf(e)&amp;&amp;delete pa[e]}),fa.forEach(function(e){var t=e.mixout?e.mixout():{};if(Object.keys(t).forEach(function(e){&quot;function &quot;==typeof t[e]&amp;&amp;(po[e]=t[e]),&quot;object &quot;===Bn(t[e])&amp;&amp;Object.keys(t[e]).forEach(function(n){po[e]||(po[e]={}),po[e][n]=t[e][n]})}),e.hooks){var n=e.hooks();Object.keys(n).forEach(function(e){da[e]||(da[e]=[]),da[e].push(n[e])})}e.provides &amp;&amp;e.provides(pa)});var yo=Ta.parse,Eo=Ta.icon,bo=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for,To=bo?Symbol.for(&quot;react.element &quot;):60103,No=bo?Symbol.for(&quot;react.portal &quot;):60106,Ro=bo?Symbol.for(&quot;react.fragment &quot;):60107,So=bo?Symbol.for(&quot;react.strict_mode &quot;):60108,wo=bo?Symbol.for(&quot;react.profiler &quot;):60114,Oo=bo?Symbol.for(&quot;react.provider &quot;):60109,Co=bo?Symbol.for(&quot;react.context &quot;):60110,Ao=bo?Symbol.for(&quot;react.async_mode &quot;):60111,Io=bo?Symbol.for(&quot;react.concurrent_mode &quot;):60111,ko=bo?Symbol.for(&quot;react.forward_ref &quot;):60112,xo=bo?Symbol.for(&quot;react.suspense &quot;):60113,_o=bo?Symbol.for(&quot;react.suspense_list &quot;):60120,Lo=bo?Symbol.for(&quot;react.memo &quot;):60115,Po=bo?Symbol.for(&quot;react.lazy &quot;):60116,Mo=bo?Symbol.for(&quot;react.block &quot;):60121,Do=bo?Symbol.for(&quot;react.fundamental &quot;):60117,Uo=bo?Symbol.for(&quot;react.responder &quot;):60118,jo=bo?Symbol.for(&quot;react.scope &quot;):60119;function Fo(e){if(&quot;object &quot;==typeof e &amp;&amp;null!==e){var t=e.$$typeof;switch(t){case To:switch(e=e.type){case Ao:case Io:case Ro:case wo:case So:case xo:return e;default:switch(e=e &amp;&amp;e.$$typeof){case Co:case ko:case Po:case Lo:case Oo:return e;default:return t}}case No:return t}}}function zo(e){return Fo(e)===Io}var Ho={AsyncMode:Ao,ConcurrentMode:Io,ContextConsumer:Co,ContextProvider:Oo,Element:To,ForwardRef:ko,Fragment:Ro,Lazy:Po,Memo:Lo,Portal:No,Profiler:wo,StrictMode:So,Suspense:xo,isAsyncMode:function(e){return zo(e)||Fo(e)===Ao},isConcurrentMode:zo,isContextConsumer:function(e){return Fo(e)===Co},isContextProvider:function(e){return Fo(e)===Oo},isElement:function(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===To},isForwardRef:function(e){return Fo(e)===ko},isFragment:function(e){return Fo(e)===Ro},isLazy:function(e){return Fo(e)===Po},isMemo:function(e){return Fo(e)===Lo},isPortal:function(e){return Fo(e)===No},isProfiler:function(e){return Fo(e)===wo},isStrictMode:function(e){return Fo(e)===So},isSuspense:function(e){return Fo(e)===xo},isValidElementType:function(e){return &quot;string &quot;==typeof e||&quot;function &quot;==typeof e||e===Ro||e===Io||e===wo||e===So||e===xo||e===_o||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;(e.$$typeof===Po||e.$$typeof===Lo||e.$$typeof===Oo||e.$$typeof===Co||e.$$typeof===ko||e.$$typeof===Do||e.$$typeof===Uo||e.$$typeof===jo||e.$$typeof===Mo)},typeOf:Fo};function Bo(){}function Vo(){}we(function(e,t){}),we(function(e){e.exports=Ho}),Vo.resetWarningCache=Bo;var Wo=we(function(e){e.exports=function(){function e(e,t,n,r,a,o){if(&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;!==o){var i=new Error(&quot;Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types &quot;);throw i.name=&quot;Invariant Violation &quot;,i}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:Vo,resetWarningCache:Bo};return n.PropTypes=n,n}()});function Go(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Yo(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Go(Object(n),!0).forEach(function(t){Xo(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Go(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function $o(e){return($o=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Xo(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ko(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||Object.prototype.propertyIsEnumerable.call(e,n)&amp;&amp;(a[n]=e[n])}return a}function qo(e){return function(e){if(Array.isArray(e))return Jo(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return Jo(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Jo(e,t):void 0}}(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Jo(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}function Qo(e){return t=e,(t-=0)==t?e:(e=e.replace(/[\-_\s]+(.)?/g,function(e,t){return t?t.toUpperCase():&quot;&quot;})).substr(0,1).toLowerCase()+e.substr(1);var t}var Zo=[&quot;style &quot;];function ei(e){return e.split(&quot;;&quot;).map(function(e){return e.trim()}).filter(function(e){return e}).reduce(function(e,t){var n,r=t.indexOf(&quot;:&quot;),a=Qo(t.slice(0,r)),o=t.slice(r+1).trim();return a.startsWith(&quot;webkit &quot;)?e[(n=a,n.charAt(0).toUpperCase()+n.slice(1))]=o:e[a]=o,e},{})}var ti=!1;try{ti=!0}catch(Ro){}function ni(e){return e &amp;&amp;&quot;object &quot;===$o(e)&amp;&amp;e.prefix &amp;&amp;e.iconName &amp;&amp;e.icon?e:yo.icon?yo.icon(e):null===e?null:e &amp;&amp;&quot;object &quot;===$o(e)&amp;&amp;e.prefix &amp;&amp;e.iconName?e:Array.isArray(e)&amp;&amp;2===e.length?{prefix:e[0],iconName:e[1]}:&quot;string &quot;==typeof e?{prefix:&quot;fas &quot;,iconName:e}:void 0}function ri(e,t){return Array.isArray(t)&amp;&amp;t.length &gt;0||!Array.isArray(t)&amp;&amp;t?Xo({},e,t):{}}var ai=[&quot;forwardedRef &quot;];function oi(e){var t=e.forwardedRef,n=Ko(e,ai),r=n.mask,a=n.symbol,o=n.className,i=n.title,l=n.titleId,s=n.maskId,c=ni(n.icon),u=ri(&quot;classes &quot;,[].concat(qo(function(e){var t,n=e.flip,r=e.size,a=e.rotation,o=e.pull,i=(Xo(t={&quot;fa-beat &quot;:e.beat,&quot;fa-fade &quot;:e.fade,&quot;fa-beat-fade &quot;:e.beatFade,&quot;fa-bounce &quot;:e.bounce,&quot;fa-shake &quot;:e.shake,&quot;fa-flash &quot;:e.flash,&quot;fa-spin &quot;:e.spin,&quot;fa-spin-reverse &quot;:e.spinReverse,&quot;fa-spin-pulse &quot;:e.spinPulse,&quot;fa-pulse &quot;:e.pulse,&quot;fa-fw &quot;:e.fixedWidth,&quot;fa-inverse &quot;:e.inverse,&quot;fa-border &quot;:e.border,&quot;fa-li &quot;:e.listItem,&quot;fa-flip-horizontal &quot;:&quot;horizontal &quot;===n||&quot;both &quot;===n,&quot;fa-flip-vertical &quot;:&quot;vertical &quot;===n||&quot;both &quot;===n},&quot;fa-&quot;.concat(r),null!=r),Xo(t,&quot;fa-rotate-&quot;.concat(a),null!=a &amp;&amp;0!==a),Xo(t,&quot;fa-pull-&quot;.concat(o),null!=o),Xo(t,&quot;fa-swap-opacity &quot;,e.swapOpacity),t);return Object.keys(i).map(function(e){return i[e]?e:null}).filter(function(e){return e})}(n)),qo(o.split(&quot;&quot;)))),f=ri(&quot;transform &quot;,&quot;string &quot;==typeof n.transform?yo.transform(n.transform):n.transform),d=ri(&quot;mask &quot;,ni(r)),p=Eo(c,Yo(Yo(Yo(Yo({},u),f),d),{},{symbol:a,title:i,titleId:l,maskId:s}));if(!p)return function(){var e;!ti &amp;&amp;console &amp;&amp;&quot;function &quot;==typeof console.error &amp;&amp;(e=console).error.apply(e,arguments)}(&quot;Could not find icon &quot;,c),null;var m=p.abstract,h={ref:t};return Object.keys(n).forEach(function(e){oi.defaultProps.hasOwnProperty(e)||(h[e]=n[e])}),ii(m[0],h)}oi.displayName=&quot;FontAwesomeIcon &quot;,oi.propTypes={beat:Wo.bool,border:Wo.bool,bounce:Wo.bool,className:Wo.string,fade:Wo.bool,flash:Wo.bool,mask:Wo.oneOfType([Wo.object,Wo.array,Wo.string]),maskId:Wo.string,fixedWidth:Wo.bool,inverse:Wo.bool,flip:Wo.oneOf([&quot;horizontal &quot;,&quot;vertical &quot;,&quot;both &quot;]),icon:Wo.oneOfType([Wo.object,Wo.array,Wo.string]),listItem:Wo.bool,pull:Wo.oneOf([&quot;right &quot;,&quot;left &quot;]),pulse:Wo.bool,rotation:Wo.oneOf([0,90,180,270]),shake:Wo.bool,size:Wo.oneOf([&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;1x &quot;,&quot;2x &quot;,&quot;3x &quot;,&quot;4x &quot;,&quot;5x &quot;,&quot;6x &quot;,&quot;7x &quot;,&quot;8x &quot;,&quot;9x &quot;,&quot;10x &quot;]),spin:Wo.bool,spinPulse:Wo.bool,spinReverse:Wo.bool,symbol:Wo.oneOfType([Wo.bool,Wo.string]),title:Wo.string,titleId:Wo.string,transform:Wo.oneOfType([Wo.string,Wo.object]),swapOpacity:Wo.bool},oi.defaultProps={border:!1,className:&quot;&quot;,mask:null,maskId:null,fixedWidth:!1,inverse:!1,flip:null,icon:null,listItem:!1,pull:null,pulse:!1,rotation:null,size:null,spin:!1,beat:!1,fade:!1,beatFade:!1,bounce:!1,shake:!1,symbol:!1,title:&quot;&quot;,titleId:null,transform:null,swapOpacity:!1};var ii=function e(t,n){var r=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{};if(&quot;string &quot;==typeof n)return n;var a=(n.children||[]).map(function(n){return e(t,n)}),o=Object.keys(n.attributes||{}).reduce(function(e,t){var r=n.attributes[t];switch(t){case &quot;class &quot;:e.attrs.className=r,delete n.attributes.class;break;case &quot;style &quot;:e.attrs.style=ei(r);break;default:0===t.indexOf(&quot;aria-&quot;)||0===t.indexOf(&quot;data-&quot;)?e.attrs[t.toLowerCase()]=r:e.attrs[Qo(t)]=r}return e},{attrs:{}}),i=r.style,l=void 0===i?{}:i,s=Ko(r,Zo);return o.attrs.style=Yo(Yo({},o.attrs.style),l),t.apply(void 0,[n.tag,Yo(Yo({},o.attrs),s)].concat(qo(a)))}.bind(null,c.createElement),li={prefix:&quot;fas &quot;,iconName:&quot;angle-down &quot;,icon:[384,512,[8964],&quot;f107 &quot;,&quot;M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z &quot;]},si={prefix:&quot;fas &quot;,iconName:&quot;angle-up &quot;,icon:[384,512,[8963],&quot;f106 &quot;,&quot;M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z &quot;]},ci={prefix:&quot;fas &quot;,iconName:&quot;check &quot;,icon:[448,512,[10004,10003],&quot;f00c &quot;,&quot;M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z &quot;]},ui={prefix:&quot;fas &quot;,iconName:&quot;circle-question &quot;,icon:[512,512,[62108,&quot;question-circle &quot;],&quot;f059 &quot;,&quot;M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 400c-18 0-32-14-32-32s13.1-32 32-32c17.1 0 32 14 32 32S273.1 400 256 400zM325.1 258L280 286V288c0 13-11 24-24 24S232 301 232 288V272c0-8 4-16 12-21l57-34C308 213 312 206 312 198C312 186 301.1 176 289.1 176h-51.1C225.1 176 216 186 216 198c0 13-11 24-24 24s-24-11-24-24C168 159 199 128 237.1 128h51.1C329 128 360 159 360 198C360 222 347 245 325.1 258z &quot;]},fi={prefix:&quot;fas &quot;,iconName:&quot;code &quot;,icon:[640,512,[],&quot;f121 &quot;,&quot;M414.8 40.79L286.8 488.8C281.9 505.8 264.2 515.6 247.2 510.8C230.2 505.9 220.4 488.2 225.2 471.2L353.2 23.21C358.1 6.216 375.8-3.624 392.8 1.232C409.8 6.087 419.6 23.8 414.8 40.79H414.8zM518.6 121.4L630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L518.6 390.6C506.1 403.1 485.9 403.1 473.4 390.6C460.9 378.1 460.9 357.9 473.4 345.4L562.7 256L473.4 166.6C460.9 154.1 460.9 133.9 473.4 121.4C485.9 108.9 506.1 108.9 518.6 121.4V121.4zM166.6 166.6L77.25 256L166.6 345.4C179.1 357.9 179.1 378.1 166.6 390.6C154.1 403.1 133.9 403.1 121.4 390.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4L121.4 121.4C133.9 108.9 154.1 108.9 166.6 121.4C179.1 133.9 179.1 154.1 166.6 166.6V166.6z &quot;]},di={prefix:&quot;fas &quot;,iconName:&quot;code-branch &quot;,icon:[448,512,[],&quot;f126 &quot;,&quot;M160 80C160 112.8 140.3 140.1 112 153.3V241.1C130.8 230.2 152.7 224 176 224H272C307.3 224 336 195.3 336 160V153.3C307.7 140.1 288 112.8 288 80C288 35.82 323.8 0 368 0C412.2 0 448 35.82 448 80C448 112.8 428.3 140.1 400 153.3V160C400 230.7 342.7 288 272 288H176C140.7 288 112 316.7 112 352V358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 0 80 0C124.2 0 160 35.82 160 80V80zM80 104C93.25 104 104 93.25 104 80C104 66.75 93.25 56 80 56C66.75 56 56 66.75 56 80C56 93.25 66.75 104 80 104zM368 56C354.7 56 344 66.75 344 80C344 93.25 354.7 104 368 104C381.3 104 392 93.25 392 80C392 66.75 381.3 56 368 56zM80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408C66.75 408 56 418.7 56 432C56 445.3 66.75 456 80 456z &quot;]},pi={prefix:&quot;fas &quot;,iconName:&quot;cookie-bite &quot;,icon:[512,512,[],&quot;f564 &quot;,&quot;M494.6 255.9c-65.63-.8203-118.6-54.14-118.6-119.9c-65.74 0-119.1-52.97-119.8-118.6c-25.66-3.867-51.8 .2346-74.77 12.07L116.7 62.41C93.35 74.36 74.36 93.35 62.41 116.7L29.6 181.2c-11.95 23.44-16.17 49.92-12.07 75.94l11.37 71.48c4.102 25.9 16.29 49.8 34.81 68.32l51.36 51.39C133.6 466.9 157.3 479 183.2 483.1l71.84 11.37c25.9 4.101 52.27-.1172 75.59-11.95l64.81-33.05c23.32-11.84 42.31-30.82 54.14-54.14l32.93-64.57C494.3 307.7 498.5 281.4 494.6 255.9zM176 367.1c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S193.6 367.1 176 367.1zM208 208c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S225.6 208 208 208zM368 335.1c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S385.6 335.1 368 335.1z &quot;]},mi={prefix:&quot;fas &quot;,iconName:&quot;copy &quot;,icon:[512,512,[],&quot;f0c5 &quot;,&quot;M384 96L384 0h-112c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48H464c26.51 0 48-21.49 48-48V128h-95.1C398.4 128 384 113.6 384 96zM416 0v96h96L416 0zM192 352V128h-144c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h192c26.51 0 48-21.49 48-48L288 416h-32C220.7 416 192 387.3 192 352z &quot;]},hi={prefix:&quot;fas &quot;,iconName:&quot;database &quot;,icon:[448,512,[],&quot;f1c0 &quot;,&quot;M448 80V128C448 172.2 347.7 208 224 208C100.3 208 0 172.2 0 128V80C0 35.82 100.3 0 224 0C347.7 0 448 35.82 448 80zM393.2 214.7C413.1 207.3 433.1 197.8 448 186.1V288C448 332.2 347.7 368 224 368C100.3 368 0 332.2 0 288V186.1C14.93 197.8 34.02 207.3 54.85 214.7C99.66 230.7 159.5 240 224 240C288.5 240 348.3 230.7 393.2 214.7V214.7zM54.85 374.7C99.66 390.7 159.5 400 224 400C288.5 400 348.3 390.7 393.2 374.7C413.1 367.3 433.1 357.8 448 346.1V432C448 476.2 347.7 512 224 512C100.3 512 0 476.2 0 432V346.1C14.93 357.8 34.02 367.3 54.85 374.7z &quot;]},gi={prefix:&quot;fas &quot;,iconName:&quot;file &quot;,icon:[384,512,[128459,61462,128196],&quot;f15b &quot;,&quot;M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256z &quot;]},vi={prefix:&quot;fas &quot;,iconName:&quot;hourglass &quot;,icon:[384,512,[62032,9203,&quot;hourglass-2 &quot;,&quot;hourglass-half &quot;],&quot;f254 &quot;,&quot;M352 0C369.7 0 384 14.33 384 32C384 49.67 369.7 64 352 64V74.98C352 117.4 335.1 158.1 305.1 188.1L237.3 256L305.1 323.9C335.1 353.9 352 394.6 352 437V448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V437C32 394.6 48.86 353.9 78.86 323.9L146.7 256L78.86 188.1C48.86 158.1 32 117.4 32 74.98V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H352zM111.1 128H272C282.4 112.4 288 93.98 288 74.98V64H96V74.98C96 93.98 101.6 112.4 111.1 128zM111.1 384H272C268.5 378.7 264.5 373.7 259.9 369.1L192 301.3L124.1 369.1C119.5 373.7 115.5 378.7 111.1 384V384z &quot;]},yi={prefix:&quot;fas &quot;,iconName:&quot;lightbulb &quot;,icon:[384,512,[128161],&quot;f0eb &quot;,&quot;M112.1 454.3c0 6.297 1.816 12.44 5.284 17.69l17.14 25.69c5.25 7.875 17.17 14.28 26.64 14.28h61.67c9.438 0 21.36-6.401 26.61-14.28l17.08-25.68c2.938-4.438 5.348-12.37 5.348-17.7L272 415.1h-160L112.1 454.3zM191.4 .0132C89.44 .3257 16 82.97 16 175.1c0 44.38 16.44 84.84 43.56 115.8c16.53 18.84 42.34 58.23 52.22 91.45c.0313 .25 .0938 .5166 .125 .7823h160.2c.0313-.2656 .0938-.5166 .125-.7823c9.875-33.22 35.69-72.61 52.22-91.45C351.6 260.8 368 220.4 368 175.1C368 78.61 288.9-.2837 191.4 .0132zM192 96.01c-44.13 0-80 35.89-80 79.1C112 184.8 104.8 192 96 192S80 184.8 80 176c0-61.76 50.25-111.1 112-111.1c8.844 0 16 7.159 16 16S200.8 96.01 192 96.01z &quot;]},Ei={prefix:&quot;fas &quot;,iconName:&quot;list-ul &quot;,icon:[512,512,[&quot;list-dots &quot;],&quot;f0ca &quot;,&quot;M16 96C16 69.49 37.49 48 64 48C90.51 48 112 69.49 112 96C112 122.5 90.51 144 64 144C37.49 144 16 122.5 16 96zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H192C174.3 128 160 113.7 160 96C160 78.33 174.3 64 192 64H480zM480 224C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H192C174.3 288 160 273.7 160 256C160 238.3 174.3 224 192 224H480zM480 384C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416C160 398.3 174.3 384 192 384H480zM16 416C16 389.5 37.49 368 64 368C90.51 368 112 389.5 112 416C112 442.5 90.51 464 64 464C37.49 464 16 442.5 16 416zM112 256C112 282.5 90.51 304 64 304C37.49 304 16 282.5 16 256C16 229.5 37.49 208 64 208C90.51 208 112 229.5 112 256z &quot;]},bi={prefix:&quot;fas &quot;,iconName:&quot;paint-roller &quot;,icon:[512,512,[],&quot;f5aa &quot;,&quot;M0 64C0 28.65 28.65 0 64 0H352C387.3 0 416 28.65 416 64V128C416 163.3 387.3 192 352 192H64C28.65 192 0 163.3 0 128V64zM160 352C160 334.3 174.3 320 192 320V304C192 259.8 227.8 224 272 224H416C433.7 224 448 209.7 448 192V69.46C485.3 82.64 512 118.2 512 160V192C512 245 469 288 416 288H272C263.2 288 256 295.2 256 304V320C273.7 320 288 334.3 288 352V480C288 497.7 273.7 512 256 512H192C174.3 512 160 497.7 160 480V352z &quot;]},Ti={prefix:&quot;fas &quot;,iconName:&quot;pencil &quot;,icon:[512,512,[61504,9999,&quot;pencil-alt &quot;],&quot;f303 &quot;,&quot;M421.7 220.3L188.5 453.4L154.6 419.5L158.1 416H112C103.2 416 96 408.8 96 400V353.9L92.51 357.4C87.78 362.2 84.31 368 82.42 374.4L59.44 452.6L137.6 429.6C143.1 427.7 149.8 424.2 154.6 419.5L188.5 453.4C178.1 463.8 165.2 471.5 151.1 475.6L30.77 511C22.35 513.5 13.24 511.2 7.03 504.1C.8198 498.8-1.502 489.7 .976 481.2L36.37 360.9C40.53 346.8 48.16 333.9 58.57 323.5L291.7 90.34L421.7 220.3zM492.7 58.75C517.7 83.74 517.7 124.3 492.7 149.3L444.3 197.7L314.3 67.72L362.7 19.32C387.7-5.678 428.3-5.678 453.3 19.32L492.7 58.75z &quot;]},Ni={prefix:&quot;fas &quot;,iconName:&quot;right-left &quot;,icon:[512,512,[&quot;exchange-alt &quot;],&quot;f362 &quot;,&quot;M32 160h319.9l.0791 72c0 9.547 5.652 18.19 14.41 22c8.754 3.812 18.93 2.078 25.93-4.406l112-104c10.24-9.5 10.24-25.69 0-35.19l-112-104c-6.992-6.484-17.17-8.217-25.93-4.408c-8.758 3.816-14.41 12.46-14.41 22L351.9 96H32C14.31 96 0 110.3 0 127.1S14.31 160 32 160zM480 352H160.1L160 279.1c0-9.547-5.652-18.19-14.41-22C136.9 254.2 126.7 255.9 119.7 262.4l-112 104c-10.24 9.5-10.24 25.69 0 35.19l112 104c6.992 6.484 17.17 8.219 25.93 4.406C154.4 506.2 160 497.5 160 488L160.1 416H480c17.69 0 32-14.31 32-32S497.7 352 480 352z &quot;]},Ri={prefix:&quot;fas &quot;,iconName:&quot;rotate-right &quot;,icon:[512,512,[&quot;redo-alt &quot;,&quot;rotate-forward &quot;],&quot;f2f9 &quot;,&quot;M468.9 32.11c13.87 0 27.18 10.77 27.18 27.04v145.9c0 10.59-8.584 19.17-19.17 19.17h-145.7c-16.28 0-27.06-13.32-27.06-27.2c0-6.634 2.461-13.4 7.96-18.9l45.12-45.14c-28.22-23.14-63.85-36.64-101.3-36.64c-88.09 0-159.8 71.69-159.8 159.8S167.8 415.9 255.9 415.9c73.14 0 89.44-38.31 115.1-38.31c18.48 0 31.97 15.04 31.97 31.96c0 35.04-81.59 70.41-147 70.41c-123.4 0-223.9-100.5-223.9-223.9S132.6 32.44 256 32.44c54.6 0 106.2 20.39 146.4 55.26l47.6-47.63C455.5 34.57 462.3 32.11 468.9 32.11z &quot;]},Si={prefix:&quot;fas &quot;,iconName:&quot;satellite-dish &quot;,icon:[512,512,[128225],&quot;f7c0 &quot;,&quot;M216 104C202.8 104 192 114.8 192 128s10.75 24 24 24c79.41 0 144 64.59 144 144C360 309.3 370.8 320 384 320s24-10.75 24-24C408 190.1 321.9 104 216 104zM224 0C206.3 0 192 14.31 192 32s14.33 32 32 32c123.5 0 224 100.5 224 224c0 17.69 14.33 32 32 32s32-14.31 32-32C512 129.2 382.8 0 224 0zM188.9 346l27.37-27.37c2.625 .625 5.059 1.506 7.809 1.506c17.75 0 31.99-14.26 31.99-32c0-17.62-14.24-32.01-31.99-32.01c-17.62 0-31.99 14.38-31.99 32.01c0 2.875 .8099 5.25 1.56 7.875L166.2 323.4L49.37 206.5c-7.25-7.25-20.12-6-24.1 3c-41.75 77.88-29.88 176.7 35.75 242.4c65.62 65.62 164.6 77.5 242.4 35.75c9.125-5 10.38-17.75 3-25L188.9 346z &quot;]},wi={prefix:&quot;fas &quot;,iconName:&quot;shuffle &quot;,icon:[512,512,[128256,&quot;random &quot;],&quot;f074 &quot;,&quot;M424.1 287c-15.13-15.12-40.1-4.426-40.1 16.97V352H336L153.6 108.8C147.6 100.8 138.1 96 128 96H32C14.31 96 0 110.3 0 128s14.31 32 32 32h80l182.4 243.2C300.4 411.3 309.9 416 320 416h63.97v47.94c0 21.39 25.86 32.12 40.99 17l79.1-79.98c9.387-9.387 9.387-24.59 0-33.97L424.1 287zM336 160h47.97v48.03c0 21.39 25.87 32.09 40.1 16.97l79.1-79.98c9.387-9.391 9.385-24.59-.0013-33.97l-79.1-79.98c-15.13-15.12-40.99-4.391-40.99 17V96H320c-10.06 0-19.56 4.75-25.59 12.81L254 162.7L293.1 216L336 160zM112 352H32c-17.69 0-32 14.31-32 32s14.31 32 32 32h96c10.06 0 19.56-4.75 25.59-12.81l40.4-53.87L154 296L112 352z &quot;]},Oi={prefix:&quot;fas &quot;,iconName:&quot;sliders &quot;,icon:[512,512,[&quot;sliders-h &quot;],&quot;f1de &quot;,&quot;M0 416C0 398.3 14.33 384 32 384H86.66C99 355.7 127.2 336 160 336C192.8 336 220.1 355.7 233.3 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H233.3C220.1 476.3 192.8 496 160 496C127.2 496 99 476.3 86.66 448H32C14.33 448 0 433.7 0 416V416zM192 416C192 398.3 177.7 384 160 384C142.3 384 128 398.3 128 416C128 433.7 142.3 448 160 448C177.7 448 192 433.7 192 416zM352 176C384.8 176 412.1 195.7 425.3 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H425.3C412.1 316.3 384.8 336 352 336C319.2 336 291 316.3 278.7 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H278.7C291 195.7 319.2 176 352 176zM384 256C384 238.3 369.7 224 352 224C334.3 224 320 238.3 320 256C320 273.7 334.3 288 352 288C369.7 288 384 273.7 384 256zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H265.3C252.1 156.3 224.8 176 192 176C159.2 176 131 156.3 118.7 128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H118.7C131 35.75 159.2 16 192 16C224.8 16 252.1 35.75 265.3 64H480zM160 96C160 113.7 174.3 128 192 128C209.7 128 224 113.7 224 96C224 78.33 209.7 64 192 64C174.3 64 160 78.33 160 96z &quot;]},Ci={prefix:&quot;fas &quot;,iconName:&quot;stopwatch &quot;,icon:[448,512,[9201],&quot;f2f2 &quot;,&quot;M272 0C289.7 0 304 14.33 304 32C304 49.67 289.7 64 272 64H256V98.45C293.5 104.2 327.7 120 355.7 143L377.4 121.4C389.9 108.9 410.1 108.9 422.6 121.4C435.1 133.9 435.1 154.1 422.6 166.6L398.5 190.8C419.7 223.3 432 262.2 432 304C432 418.9 338.9 512 224 512C109.1 512 16 418.9 16 304C16 200 92.32 113.8 192 98.45V64H176C158.3 64 144 49.67 144 32C144 14.33 158.3 0 176 0L272 0zM248 192C248 178.7 237.3 168 224 168C210.7 168 200 178.7 200 192V320C200 333.3 210.7 344 224 344C237.3 344 248 333.3 248 320V192z &quot;]},Ai={prefix:&quot;fas &quot;,iconName:&quot;table-cells &quot;,icon:[512,512,[&quot;th &quot;],&quot;f00a &quot;,&quot;M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM152 96H64V160H152V96zM208 160H296V96H208V160zM448 96H360V160H448V96zM64 288H152V224H64V288zM296 224H208V288H296V224zM360 288H448V224H360V288zM152 352H64V416H152V352zM208 416H296V352H208V416zM448 352H360V416H448V352z &quot;]},Ii={prefix:&quot;fas &quot;,iconName:&quot;triangle-exclamation &quot;,icon:[512,512,[9888,&quot;exclamation-triangle &quot;,&quot;warning &quot;],&quot;f071 &quot;,&quot;M506.3 417l-213.3-364c-16.33-28-57.54-28-73.98 0l-213.2 364C-10.59 444.9 9.849 480 42.74 480h426.6C502.1 480 522.6 445 506.3 417zM232 168c0-13.25 10.75-24 24-24S280 154.8 280 168v128c0 13.25-10.75 24-23.1 24S232 309.3 232 296V168zM256 416c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 401.9 273.4 416 256 416z &quot;]},ki={prefix:&quot;fas &quot;,iconName:&quot;up-right-from-square &quot;,icon:[512,512,[&quot;external-link-alt &quot;],&quot;f35d &quot;,&quot;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z &quot;]},xi={prefix:&quot;fas &quot;,iconName:&quot;user &quot;,icon:[448,512,[62144,128100],&quot;f007 &quot;,&quot;M224 256c70.7 0 128-57.31 128-128s-57.3-128-128-128C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3C77.61 304 0 381.6 0 477.3c0 19.14 15.52 34.67 34.66 34.67h378.7C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304z &quot;]},_i={prefix:&quot;fas &quot;,iconName:&quot;wrench &quot;,icon:[512,512,[128295],&quot;f0ad &quot;,&quot;M507.6 122.8c-2.904-12.09-18.25-16.13-27.04-7.338l-76.55 76.56l-83.1-.0002l0-83.1l76.55-76.56c8.791-8.789 4.75-24.14-7.336-27.04c-23.69-5.693-49.34-6.111-75.92 .2484c-61.45 14.7-109.4 66.9-119.2 129.3C189.8 160.8 192.3 186.7 200.1 210.1l-178.1 178.1c-28.12 28.12-28.12 73.69 0 101.8C35.16 504.1 53.56 512 71.1 512s36.84-7.031 50.91-21.09l178.1-178.1c23.46 7.736 49.31 10.24 76.17 6.004c62.41-9.84 114.6-57.8 129.3-119.2C513.7 172.1 513.3 146.5 507.6 122.8zM80 456c-13.25 0-24-10.75-24-24c0-13.26 10.75-24 24-24s24 10.74 24 24C104 445.3 93.25 456 80 456z &quot;]},Li={prefix:&quot;fas &quot;,iconName:&quot;xmark &quot;,icon:[320,512,[128473,10005,10006,10060,215,&quot;close &quot;,&quot;multiply &quot;,&quot;remove &quot;,&quot;times &quot;],&quot;f00d &quot;,&quot;M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z &quot;]};function Pi(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}function Mi(e){return function(e){if(Array.isArray(e))return Pi(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return Pi(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Pi(e,t):void 0}}(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Di(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ui(){return(Ui=Object.assign||function(e){for(var t=1;t &lt;arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&amp;&amp;(e[r]=n[r])}return e}).apply(this,arguments)}function ji(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Fi(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ji(Object(n),!0).forEach(function(t){Di(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ji(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}var zi={};function Hi(e){if(0===e.length||1===e.length)return e;var t,n,r=e.join(&quot;.&quot;);return zi[r]||(zi[r]=0===(n=(t=e).length)||1===n?t:2===n?[t[0],t[1],&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0])]:3===n?[t[0],t[1],t[2],&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0])]:n &gt;=4?[t[0],t[1],t[2],t[3],&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[3]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[2],&quot;.&quot;).concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[2]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[0],&quot;.&quot;).concat(t[1]),&quot;&quot;.concat(t[3],&quot;.&quot;).concat(t[2],&quot;.&quot;).concat(t[1],&quot;.&quot;).concat(t[0])]:void 0),zi[r]}function Bi(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=arguments.length &gt;2?arguments[2]:void 0,r=e.filter(function(e){return &quot;token &quot;!==e}),a=Hi(r);return a.reduce(function(e,t){return Fi(Fi({},e),n[t])},t)}function Vi(e){return e.join(&quot;&quot;)}function Wi(e){var t=e.node,n=e.stylesheet,r=e.style,a=void 0===r?{}:r,o=e.useInlineStyles,i=e.key,l=t.properties,s=t.tagName;if(&quot;text &quot;===t.type)return t.value;if(s){var u,f=function(e,t){var n=0;return function(r){return n+=1,r.map(function(r,a){return Wi({node:r,stylesheet:e,useInlineStyles:t,key:&quot;code-segment-&quot;.concat(n,&quot;-&quot;).concat(a)})})}}(n,o);if(o){var d=Object.keys(n).reduce(function(e,t){return t.split(&quot;.&quot;).forEach(function(t){e.includes(t)||e.push(t)}),e},[]),p=l.className &amp;&amp;l.className.includes(&quot;token &quot;)?[&quot;token &quot;]:[],m=l.className &amp;&amp;p.concat(l.className.filter(function(e){return!d.includes(e)}));u=Fi(Fi({},l),{},{className:Vi(m)||void 0,style:Bi(l.className,Object.assign({},l.style,a),n)})}else u=Fi(Fi({},l),{},{className:Vi(l.className)});var h=f(t.children);/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        return c.createElement(s,Ui({key:i},u),h)}}var Gi=[&quot;language &quot;,&quot;children &quot;,&quot;style &quot;,&quot;customStyle &quot;,&quot;codeTagProps &quot;,&quot;useInlineStyles &quot;,&quot;showLineNumbers &quot;,&quot;showInlineLineNumbers &quot;,&quot;startingLineNumber &quot;,&quot;lineNumberContainerStyle &quot;,&quot;lineNumberStyle &quot;,&quot;wrapLines &quot;,&quot;wrapLongLines &quot;,&quot;lineProps &quot;,&quot;renderer &quot;,&quot;PreTag &quot;,&quot;CodeTag &quot;,&quot;code &quot;,&quot;astGenerator &quot;];function Yi(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function $i(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Yi(Object(n),!0).forEach(function(t){Di(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Yi(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}var Xi=/\n/g;function Ki(e){var t=e.codeString,n=e.containerStyle,r=e.numberStyle,a=void 0===r?{}:r,o=e.startingLineNumber;/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        return c.createElement(&quot;code &quot;,{style:Object.assign({},e.codeStyle,void 0===n?{float:&quot;left &quot;,paddingRight:&quot;10px &quot;}:n)},function(e){var t=e.startingLineNumber,n=e.style;return e.lines.map(function(e,r){var a=r+t;/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        return c.createElement(&quot;span &quot;,{key:&quot;line-&quot;.concat(r),className:&quot;react-syntax-highlighter-line-number &quot;,style:&quot;function &quot;==typeof n?n(a):n},&quot;&quot;.concat(a,&quot;\n &quot;))})}({lines:t.replace(/\n$/,&quot;&quot;).split(&quot;\n &quot;),style:a,startingLineNumber:o}))}function qi(e,t){return{type:&quot;element &quot;,tagName:&quot;span &quot;,properties:{key:&quot;line-number--&quot;.concat(e),className:[&quot;comment &quot;,&quot;linenumber &quot;,&quot;react-syntax-highlighter-line-number &quot;],style:t},children:[{type:&quot;text &quot;,value:e}]}}function Ji(e,t,n){var r,a={display:&quot;inline-block &quot;,minWidth:(r=n,&quot;&quot;.concat(r.toString().length,&quot;.25em &quot;)),paddingRight:&quot;1em &quot;,textAlign:&quot;right &quot;,userSelect:&quot;none &quot;},o=&quot;function &quot;==typeof e?e(t):e;return $i($i({},a),o)}function Qi(e){var t=e.children,n=e.lineNumber,r=e.lineNumberStyle,a=e.largestLineNumber,o=e.showInlineLineNumbers,i=e.lineProps,l=void 0===i?{}:i,s=e.className,c=void 0===s?[]:s,u=e.showLineNumbers,f=e.wrapLongLines,d=&quot;function &quot;==typeof l?l(n):l;if(d.className=c,n &amp;&amp;o){var p=Ji(r,n,a);t.unshift(qi(n,p))}return f &amp;u &amp;&amp;(d.style=$i($i({},d.style),{},{display:&quot;flex &quot;})),{type:&quot;element &quot;,tagName:&quot;span &quot;,properties:d,children:t}}function Zi(e){for(var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:[],n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:[],r=0;r &lt;e.length;r++){var a=e[r];if(&quot;text &quot;===a.type)n.push(Qi({children:[a],className:Mi(new Set(t))}));else if(a.children){var o=t.concat(a.properties.className);Zi(a.children,o).forEach(function(e){return n.push(e)})}}return n}function el(e,t,n,r,a,o,i,l,s){var c,u=Zi(e.value),f=[],d=-1,p=0;function m(e,t){var o=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:[];return Qi({children:e,lineNumber:t,lineNumberStyle:l,largestLineNumber:i,showInlineLineNumbers:a,lineProps:n,className:o,showLineNumbers:r,wrapLongLines:s})}function h(e,t){if(r &amp;&amp;t &amp;&amp;a){var n=Ji(l,t,i);e.unshift(qi(t,n))}return e}function g(e,n){var r=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:[];return t||r.length &gt;0?m(e,n,r):h(e,n)}for(var v=function(){var e=u[p],t=e.children[0].value;if(t.match(Xi)){var n=t.split(&quot;\n &quot;);n.forEach(function(t,a){var i=r &amp;&amp;f.length+o,l={type:&quot;text &quot;,value:&quot;&quot;.concat(t,&quot;\n &quot;)};if(0===a){var s=g(u.slice(d+1,p).concat(Qi({children:[l],className:e.properties.className})),i);f.push(s)}else if(a===n.length-1){var c=u[p+1]&amp;&amp;u[p+1].children &amp;&amp;u[p+1].children[0],m={type:&quot;text &quot;,value:&quot;&quot;.concat(t)};if(c){var h=Qi({children:[m],className:e.properties.className});u.splice(p+1,0,h)}else{var v=g([m],i,e.properties.className);f.push(v)}}else{var y=g([l],i,e.properties.className);f.push(y)}}),d=p}p++};p &lt;u.length;)v();if(d!==u.length-1){var y=u.slice(d+1,u.length);if(y &amp;&amp;y.length){var E=g(y,r &amp;&amp;f.length+o);f.push(E)}}return t?f:(c=[]).concat.apply(c,f)}function tl(e){var t=e.stylesheet,n=e.useInlineStyles;return e.rows.map(function(e,r){return Wi({node:e,stylesheet:t,useInlineStyles:n,key:&quot;code-segement &quot;.concat(r)})})}function nl(e){return e &amp;&amp;void 0!==e.highlightAuto}function rl(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error(&quot;map is read-only &quot;)}:e instanceof Set &amp;&amp;(e.add=e.clear=e.delete=function(){throw new Error(&quot;set is read-only &quot;)}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach(function(t){var n=e[t];&quot;object &quot;!=typeof n||Object.isFrozen(n)||rl(n)}),e}var al=rl;al.default=rl;class ol{constructor(e){void 0===e.data &amp;&amp;(e.data={}),this.data=e.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function il(e){return e.replace(/&amp;/g,&quot;&amp;amp;&quot;).replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;).replace(/&quot;/g,&quot;&amp;quot;&quot;).replace(/&#039;/g,&quot;&amp;#x27;&quot;)}function ll(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t];return t.forEach(function(e){for(const t in e)n[t]=e[t]}),n}const sl=e=&gt;!!e.kind;class cl{constructor(e,t){this.buffer=&quot;&quot;,this.classPrefix=t.classPrefix,e.walk(this)}addText(e){this.buffer+=il(e)}openNode(e){if(!sl(e))return;let t=e.kind;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){sl(e)&amp;&amp;(this.buffer+=&quot;&lt;/span &gt;&quot;)}value(){return this.buffer}span(e){this.buffer+=`&lt;span class=&quot;${e}&quot;&gt;`}}class ul{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const t={kind:e,children:[]};this.add(t),this.stack.push(t)}closeNode(){if(this.stack.length &gt;1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){return &quot;string &quot;==typeof t?e.addText(t):t.children &amp;&amp;(e.openNode(t),t.children.forEach(t=&gt;this._walk(e,t)),e.closeNode(t)),e}static _collapse(e){&quot;string &quot;!=typeof e &amp;&amp;e.children &amp;&amp;(e.children.every(e=&gt;&quot;string &quot;==typeof e)?e.children=[e.children.join(&quot;&quot;)]:e.children.forEach(e=&gt;{ul._collapse(e)}))}}class fl extends ul{constructor(e){super(),this.options=e}addKeyword(e,t){&quot;&quot;!==e &amp;&amp;(this.openNode(t),this.addText(e),this.closeNode())}addText(e){&quot;&quot;!==e &amp;&amp;this.add(e)}addSublanguage(e,t){const n=e.root;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){return new cl(this,this.options).value()}finalize(){return!0}}function dl(e){return e?&quot;string &quot;==typeof e?e:e.source:null}const pl=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,ml=&quot;(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)&quot;,hl={begin:&quot;\\\\[\\s\\S]&quot;,relevance:0},gl={className:&quot;string &quot;,begin:&quot;&#039;&quot;,end:&quot;&#039;&quot;,illegal:&quot;\\n &quot;,contains:[hl]},vl={className:&quot;string &quot;,begin:&#039;&quot;&#039;,end:&#039;&quot;&#039;,illegal:&quot;\\n &quot;,contains:[hl]},yl={begin:/\b(a|an|the|are|I &#039;m|isn &#039;t|don &#039;t|doesn &#039;t|won &#039;t|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},El=function(e,t,n={}){const r=ll({className:&quot;comment &quot;,begin:e,end:t,contains:[]},n);return r.contains.push(yl),r.contains.push({className:&quot;doctag &quot;,begin:&quot;(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):&quot;,relevance:0}),r},bl=El(&quot;//&quot;,&quot;$ &quot;),Tl=El(&quot;/\\*&quot;,&quot;\\*/&quot;),Nl=El(&quot;#&quot;,&quot;$ &quot;);var Rl=/*#__PURE__*/Object.freeze({__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:&quot;[a-zA-Z]\\w*&quot;,UNDERSCORE_IDENT_RE:&quot;[a-zA-Z_]\\w*&quot;,NUMBER_RE:&quot;\\b\\d+(\\.\\d+)?&quot;,C_NUMBER_RE:ml,BINARY_NUMBER_RE:&quot;\\b(0b[01]+)&quot;,RE_STARTERS_RE:&quot;!|!=|!==|%|%=|&amp;|&amp;&amp;|&amp;=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|&lt;&lt;|&lt;&lt;=|&lt;=|&lt;|===|==|=|&gt;&gt;&gt;=|&gt;&gt;=|&gt;=|&gt;&gt;&gt;|&gt;&gt;|&gt;|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~&quot;,SHEBANG:(e={})=&gt;{const t=/^#![ ]*\//;return e.binary &amp;&amp;(e.begin=function(...e){return e.map(e=&gt;dl(e)).join(&quot;&quot;)}(t,/.*\b/,e.binary,/\b.*/)),ll({className:&quot;meta &quot;,begin:t,end:/$/,relevance:0,&quot;on:begin &quot;:(e,t)=&gt;{0!==e.index &amp;&amp;t.ignoreMatch()}},e)},BACKSLASH_ESCAPE:hl,APOS_STRING_MODE:gl,QUOTE_STRING_MODE:vl,PHRASAL_WORDS_MODE:yl,COMMENT:El,C_LINE_COMMENT_MODE:bl,C_BLOCK_COMMENT_MODE:Tl,HASH_COMMENT_MODE:Nl,NUMBER_MODE:{className:&quot;number &quot;,begin:&quot;\\b\\d+(\\.\\d+)?&quot;,relevance:0},C_NUMBER_MODE:{className:&quot;number &quot;,begin:ml,relevance:0},BINARY_NUMBER_MODE:{className:&quot;number &quot;,begin:&quot;\\b(0b[01]+)&quot;,relevance:0},CSS_NUMBER_MODE:{className:&quot;number &quot;,begin:&quot;\\b\\d+(\\.\\d+)?(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?&quot;,relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:&quot;regexp &quot;,begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[hl,{begin:/\[/,end:/\]/,relevance:0,contains:[hl]}]}]},TITLE_MODE:{className:&quot;title &quot;,begin:&quot;[a-zA-Z]\\w*&quot;,relevance:0},UNDERSCORE_TITLE_MODE:{className:&quot;title &quot;,begin:&quot;[a-zA-Z_]\\w*&quot;,relevance:0},METHOD_GUARD:{begin:&quot;\\.\\s*[a-zA-Z_]\\w*&quot;,relevance:0},END_SAME_AS_BEGIN:function(e){return Object.assign(e,{&quot;on:begin &quot;:(e,t)=&gt;{t.data._beginMatch=e[1]},&quot;on:end &quot;:(e,t)=&gt;{t.data._beginMatch!==e[1]&amp;&amp;t.ignoreMatch()}})}});function Sl(e,t){&quot;.&quot;===e.input[e.index-1]&amp;&amp;t.ignoreMatch()}function wl(e,t){t &amp;&amp;e.beginKeywords &amp;&amp;(e.begin=&quot;\\b(&quot;+e.beginKeywords.split(&quot;&quot;).join(&quot;|&quot;)+&quot;)(?!\\.)(?=\\b|\\s)&quot;,e.__beforeBegin=Sl,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance &amp;&amp;(e.relevance=0))}function Ol(e,t){Array.isArray(e.illegal)&amp;&amp;(e.illegal=function(...e){return &quot;(&quot;+e.map(e=&gt;dl(e)).join(&quot;|&quot;)+&quot;)&quot;}(...e.illegal))}function Cl(e,t){if(e.match){if(e.begin||e.end)throw new Error(&quot;begin &amp;end are not supported with match &quot;);e.begin=e.match,delete e.match}}function Al(e,t){void 0===e.relevance &amp;&amp;(e.relevance=1)}const Il=[&quot;of &quot;,&quot;and &quot;,&quot;for &quot;,&quot;in &quot;,&quot;not &quot;,&quot;or &quot;,&quot;if &quot;,&quot;then &quot;,&quot;parent &quot;,&quot;list &quot;,&quot;value &quot;];function kl(e,t,n=&quot;keyword &quot;){const r={};return &quot;string &quot;==typeof e?a(n,e.split(&quot;&quot;)):Array.isArray(e)?a(n,e):Object.keys(e).forEach(function(n){Object.assign(r,kl(e[n],t,n))}),r;function a(e,n){t &amp;&amp;(n=n.map(e=&gt;e.toLowerCase())),n.forEach(function(t){const n=t.split(&quot;|&quot;);r[n[0]]=[e,xl(n[0],n[1])]})}}function xl(e,t){return t?Number(t):function(e){return Il.includes(e.toLowerCase())}(e)?0:1}function _l(e,{}){function t(t,n){return new RegExp(dl(t),&quot;m &quot;+(e.case_insensitive?&quot;i &quot;:&quot;&quot;)+(n?&quot;g &quot;:&quot;&quot;))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,t){t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]),this.matchAt+=function(e){return new RegExp(e.toString()+&quot;|&quot;).exec(&quot;&quot;).length-1}(e)+1}compile(){0===this.regexes.length &amp;&amp;(this.exec=()=&gt;null);const e=this.regexes.map(e=&gt;e[1]);this.matcherRe=t(function(e,t=&quot;|&quot;){let n=0;return e.map(e=&gt;{n+=1;const t=n;let r=dl(e),a=&quot;&quot;;for(;r.length &gt;0;){const e=pl.exec(r);if(!e){a+=r;break}a+=r.substring(0,e.index),r=r.substring(e.index+e[0].length),&quot;\\&quot;===e[0][0]&amp;&amp;e[1]?a+=&quot;\\&quot;+String(Number(e[1])+t):(a+=e[0],&quot;(&quot;===e[0]&amp;&amp;n++)}return a}).map(e=&gt;`(${e})`).join(t)}(e),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e);if(!t)return null;const n=t.findIndex((e,t)=&gt;t &gt;0 &amp;&amp;void 0!==e),r=this.matchIndexes[n];return t.splice(0,n),Object.assign(t,r)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const t=new n;return this.rules.slice(e).forEach(([e,n])=&gt;t.addRule(e,n)),t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){this.rules.push([e,t]),&quot;begin &quot;===t.type &amp;&amp;this.count++}exec(e){const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex;let n=t.exec(e);if(this.resumingScanAtSamePosition())if(n &amp;&amp;n.index===this.lastIndex);else{const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)}return n &amp;&amp;(this.regexIndex+=n.position+1,this.regexIndex===this.count &amp;&amp;this.considerAll()),n}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains &amp;&amp;e.contains.includes(&quot;self &quot;))throw new Error(&quot;ERR: contains `self` is not supported at the top-level of a language.  See documentation.&quot;);return e.classNameAliases=ll(e.classNameAliases||{}),function n(a,o){const i=a;if(a.isCompiled)return i;[Cl].forEach(e=&gt;e(a,o)),e.compilerExtensions.forEach(e=&gt;e(a,o)),a.__beforeBegin=null,[wl,Ol,Al].forEach(e=&gt;e(a,o)),a.isCompiled=!0;let l=null;if(&quot;object &quot;==typeof a.keywords &amp;&amp;(l=a.keywords.$pattern,delete a.keywords.$pattern),a.keywords &amp;&amp;(a.keywords=kl(a.keywords,e.case_insensitive)),a.lexemes &amp;&amp;l)throw new Error(&quot;ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) &quot;);return l=l||a.lexemes||/\w+/,i.keywordPatternRe=t(l,!0),o &amp;&amp;(a.begin||(a.begin=/\B|\b/),i.beginRe=t(a.begin),a.endSameAsBegin &amp;&amp;(a.end=a.begin),a.end||a.endsWithParent||(a.end=/\B|\b/),a.end &amp;&amp;(i.endRe=t(a.end)),i.terminatorEnd=dl(a.end)||&quot;&quot;,a.endsWithParent &amp;&amp;o.terminatorEnd &amp;&amp;(i.terminatorEnd+=(a.end?&quot;|&quot;:&quot;&quot;)+o.terminatorEnd)),a.illegal &amp;&amp;(i.illegalRe=t(a.illegal)),a.contains||(a.contains=[]),a.contains=[].concat(...a.contains.map(function(e){return function(e){return e.variants &amp;&amp;!e.cachedVariants &amp;&amp;(e.cachedVariants=e.variants.map(function(t){return ll(e,{variants:null},t)})),e.cachedVariants?e.cachedVariants:Ll(e)?ll(e,{starts:e.starts?ll(e.starts):null}):Object.isFrozen(e)?ll(e):e}(&quot;self &quot;===e?a:e)})),a.contains.forEach(function(e){n(e,i)}),a.starts &amp;&amp;n(a.starts,o),i.matcher=function(e){const t=new r;return e.contains.forEach(e=&gt;t.addRule(e.begin,{rule:e,type:&quot;begin &quot;})),e.terminatorEnd &amp;&amp;t.addRule(e.terminatorEnd,{type:&quot;end &quot;}),e.illegal &amp;&amp;t.addRule(e.illegal,{type:&quot;illegal &quot;}),t}(i),i}(e)}function Ll(e){return!!e &amp;&amp;(e.endsWithParent||Ll(e.starts))}function Pl(e){const t={props:[&quot;language &quot;,&quot;code &quot;,&quot;autodetect &quot;],data:function(){return{detectedLanguage:&quot;&quot;,unknownLanguage:!1}},computed:{className(){return this.unknownLanguage?&quot;&quot;:&quot;hljs &quot;+this.detectedLanguage},highlighted(){if(!this.autoDetect &amp;&amp;!e.getLanguage(this.language))return console.warn(`The language &quot;${this.language}&quot;you specified could not be found.`),this.unknownLanguage=!0,il(this.code);let t={};return this.autoDetect?(t=e.highlightAuto(this.code),this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals),this.detectedLanguage=this.language),t.value},autoDetect(){return!this.language||(e=this.autodetect,Boolean(e||&quot;&quot;===e));var e},ignoreIllegals:()=&gt;!0},render(e){return e(&quot;pre &quot;,{},[e(&quot;code &quot;,{class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{Component:t,VuePlugin:{install(e){e.component(&quot;highlightjs &quot;,t)}}}}const Ml={&quot;after:highlightElement &quot;:({el:e,result:t,text:n})=&gt;{const r=Ul(e);if(!r.length)return;const a=document.createElement(&quot;div &quot;);a.innerHTML=t.value,t.value=function(e,t,n){let r=0,a=&quot;&quot;;const o=[];function i(){return e.length &amp;&amp;t.length?e[0].offset!==t[0].offset?e[0].offset &lt;t[0].offset?e:t:&quot;start &quot;===t[0].event?e:t:e.length?e:t}function l(e){a+=&quot;&lt;&quot;+Dl(e)+[].map.call(e.attributes,function(e){return &quot;&quot;+e.nodeName+&#039;=&quot;&#039;+il(e.value)+&#039;&quot;&#039;}).join(&quot;&quot;)+&quot;&gt;&quot;}function s(e){a+=&quot;&lt;/&quot;+Dl(e)+&quot;&gt;&quot;}function c(e){(&quot;start &quot;===e.event?l:s)(e.node)}for(;e.length||t.length;){let t=i();if(a+=il(n.substring(r,t[0].offset)),r=t[0].offset,t===e){o.reverse().forEach(s);do{c(t.splice(0,1)[0]),t=i()}while(t===e &amp;&amp;t.length &amp;&amp;t[0].offset===r);o.reverse().forEach(l)}else &quot;start &quot;===t[0].event?o.push(t[0].node):o.pop(),c(t.splice(0,1)[0])}return a+il(n.substr(r))}(r,Ul(a),n)}};function Dl(e){return e.nodeName.toLowerCase()}function Ul(e){const t=[];return function e(n,r){for(let a=n.firstChild;a;a=a.nextSibling)3===a.nodeType?r+=a.nodeValue.length:1===a.nodeType &amp;&amp;(t.push({event:&quot;start &quot;,offset:r,node:a}),r=e(a,r),Dl(a).match(/br|hr|img|input/)||t.push({event:&quot;stop &quot;,offset:r,node:a}));return r}(e,0),t}const jl={},Fl=e=&gt;{console.error(e)},zl=(e,...t)=&gt;{console.log(`WARN: ${e}`,...t)},Hl=(e,t)=&gt;{jl[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),jl[`${e}/${t}`]=!0)},Bl=il,Vl=ll,Wl=Symbol(&quot;nomatch &quot;);var Gl=function(e){const t=Object.create(null),n=Object.create(null),r=[];let a=!0;const o=/(^(&lt;[^&gt;]+&gt;|\t|)+|\n)/gm,i=&quot;Could not find the language &#039;{}&#039;, did you forget to load/include a language module?&quot;,l={disableAutodetect:!0,name:&quot;Plain text &quot;,contains:[]};let s={noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:&quot;hljs-&quot;,tabReplace:null,useBR:!1,languages:null,__emitter:fl};function c(e){return s.noHighlightRe.test(e)}function u(e,t,n,r){let a=&quot;&quot;,o=&quot;&quot;;&quot;object &quot;==typeof t?(a=e,n=t.ignoreIllegals,o=t.language,r=void 0):(Hl(&quot;10.7.0 &quot;,&quot;highlight(lang, code, ...args) has been deprecated.&quot;),Hl(&quot;10.7.0 &quot;,&quot;Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277 &quot;),o=e,a=t);const i={code:a,language:o};R(&quot;before:highlight &quot;,i);const l=i.result?i.result:f(i.language,i.code,n,r);return l.code=i.code,R(&quot;after:highlight &quot;,l),l}function f(e,n,o,l){function c(e,t){const n=E.case_insensitive?t[0].toLowerCase():t[0];return Object.prototype.hasOwnProperty.call(e.keywords,n)&amp;&amp;e.keywords[n]}function u(){null!=R.subLanguage?function(){if(&quot;&quot;===O)return;let e=null;if(&quot;string &quot;==typeof R.subLanguage){if(!t[R.subLanguage])return void w.addText(O);e=f(R.subLanguage,O,!0,S[R.subLanguage]),S[R.subLanguage]=e.top}else e=d(O,R.subLanguage.length?R.subLanguage:null);R.relevance &gt;0 &amp;&amp;(C+=e.relevance),w.addSublanguage(e.emitter,e.language)}():function(){if(!R.keywords)return void w.addText(O);let e=0;R.keywordPatternRe.lastIndex=0;let t=R.keywordPatternRe.exec(O),n=&quot;&quot;;for(;t;){n+=O.substring(e,t.index);const r=c(R,t);if(r){const[e,a]=r;w.addText(n),n=&quot;&quot;,C+=a,e.startsWith(&quot;_ &quot;)?n+=t[0]:w.addKeyword(t[0],E.classNameAliases[e]||e)}else n+=t[0];e=R.keywordPatternRe.lastIndex,t=R.keywordPatternRe.exec(O)}n+=O.substr(e),w.addText(n)}(),O=&quot;&quot;}function p(e){return e.className &amp;&amp;w.openNode(E.classNameAliases[e.className]||e.className),R=Object.create(e,{parent:{value:R}}),R}function m(e,t,n){let r=function(e,t){const n=e &amp;&amp;e.exec(t);return n &amp;&amp;0===n.index}(e.endRe,n);if(r){if(e[&quot;on:end &quot;]){const n=new ol(e);e[&quot;on:end &quot;](t,n),n.isMatchIgnored &amp;&amp;(r=!1)}if(r){for(;e.endsParent &amp;&amp;e.parent;)e=e.parent;return e}}if(e.endsWithParent)return m(e.parent,t,n)}function h(e){return 0===R.matcher.regexIndex?(O+=e[0],1):(k=!0,0)}function g(e){const t=e[0],r=n.substr(e.index),a=m(R,e,r);if(!a)return Wl;const o=R;o.skip?O+=t:(o.returnEnd||o.excludeEnd||(O+=t),u(),o.excludeEnd &amp;&amp;(O=t));do{R.className &amp;&amp;w.closeNode(),R.skip||R.subLanguage||(C+=R.relevance),R=R.parent}while(R!==a.parent);return a.starts &amp;&amp;(a.endSameAsBegin &amp;&amp;(a.starts.endRe=a.endRe),p(a.starts)),o.returnEnd?0:t.length}let v={};function y(t,r){const i=r &amp;&amp;r[0];if(O+=t,null==i)return u(),0;if(&quot;begin &quot;===v.type &amp;&amp;&quot;end &quot;===r.type &amp;&amp;v.index===r.index &amp;&amp;&quot;&quot;===i){if(O+=n.slice(r.index,r.index+1),!a){const t=new Error(&quot;0 width match regex &quot;);throw t.languageName=e,t.badRule=v.rule,t}return 1}if(v=r,&quot;begin &quot;===r.type)return function(e){const t=e[0],n=e.rule,r=new ol(n),a=[n.__beforeBegin,n[&quot;on:begin &quot;]];for(const n of a)if(n &amp;&amp;(n(e,r),r.isMatchIgnored))return h(t);return n &amp;&amp;n.endSameAsBegin &amp;&amp;(n.endRe=new RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,&quot;\\$ &amp;&quot;),&quot;m &quot;)),n.skip?O+=t:(n.excludeBegin &amp;&amp;(O+=t),u(),n.returnBegin||n.excludeBegin||(O=t)),p(n),n.returnBegin?0:t.length}(r);if(&quot;illegal &quot;===r.type &amp;&amp;!o){const e=new Error(&#039;Illegal lexeme &quot;&#039;+i+&#039;&quot;for mode &quot;&#039;+(R.className||&quot;&lt;unnamed &gt;&quot;)+&#039;&quot;&#039;);throw e.mode=R,e}if(&quot;end &quot;===r.type){const e=g(r);if(e!==Wl)return e}if(&quot;illegal &quot;===r.type &amp;&amp;&quot;&quot;===i)return 1;if(I &gt;1e5 &amp;&amp;I &gt;3*r.index)throw new Error(&quot;potential infinite loop, way more iterations than matches &quot;);return O+=i,i.length}const E=b(e);if(!E)throw Fl(i.replace(&quot;{}&quot;,e)),new Error(&#039;Unknown language: &quot;&#039;+e+&#039;&quot;&#039;);const T=_l(E,{plugins:r});let N=&quot;&quot;,R=l||T;const S={},w=new s.__emitter(s);!function(){const e=[];for(let t=R;t!==E;t=t.parent)t.className &amp;&amp;e.unshift(t.className);e.forEach(e=&gt;w.openNode(e))}();let O=&quot;&quot;,C=0,A=0,I=0,k=!1;try{for(R.matcher.considerAll();;){I++,k?k=!1:R.matcher.considerAll(),R.matcher.lastIndex=A;const e=R.matcher.exec(n);if(!e)break;const t=y(n.substring(A,e.index),e);A=e.index+t}return y(n.substr(A)),w.closeAllNodes(),w.finalize(),N=w.toHTML(),{relevance:Math.floor(C),value:N,language:e,illegal:!1,emitter:w,top:R}}catch(t){if(t.message &amp;&amp;t.message.includes(&quot;Illegal &quot;))return{illegal:!0,illegalBy:{msg:t.message,context:n.slice(A-100,A+100),mode:t.mode},sofar:N,relevance:0,value:Bl(n),emitter:w};if(a)return{illegal:!1,relevance:0,value:Bl(n),emitter:w,language:e,top:R,errorRaised:t};throw t}}function d(e,n){n=n||s.languages||Object.keys(t);const r=function(e){const t={relevance:0,emitter:new s.__emitter(s),value:Bl(e),illegal:!1,top:l};return t.emitter.addText(e),t}(e),a=n.filter(b).filter(N).map(t=&gt;f(t,e,!1));a.unshift(r);const o=a.sort((e,t)=&gt;{if(e.relevance!==t.relevance)return t.relevance-e.relevance;if(e.language &amp;&amp;t.language){if(b(e.language).supersetOf===t.language)return 1;if(b(t.language).supersetOf===e.language)return-1}return 0}),[i,c]=o,u=i;return u.second_best=c,u}const p={&quot;before:highlightElement &quot;:({el:e})=&gt;{s.useBR &amp;&amp;(e.innerHTML=e.innerHTML.replace(/\n/g,&quot;&quot;).replace(/&lt;br[ /]*&gt;/g,&quot;\n &quot;))},&quot;after:highlightElement &quot;:({result:e})=&gt;{s.useBR &amp;&amp;(e.value=e.value.replace(/\n/g,&quot;&lt;br &gt;&quot;))}},m=/^(&lt;[^&gt;]+&gt;|\t)+/gm,h={&quot;after:highlightElement &quot;:({result:e})=&gt;{s.tabReplace &amp;&amp;(e.value=e.value.replace(m,e=&gt;e.replace(/\t/g,s.tabReplace)))}};function g(e){let t=null;const r=function(e){let t=e.className+&quot;&quot;;t+=e.parentNode?e.parentNode.className:&quot;&quot;;const n=s.languageDetectRe.exec(t);if(n){const t=b(n[1]);return t||(zl(i.replace(&quot;{}&quot;,n[1])),zl(&quot;Falling back to no-highlight mode for this block.&quot;,e)),t?n[1]:&quot;no-highlight &quot;}return t.split(/\s+/).find(e=&gt;c(e)||b(e))}(e);if(c(r))return;R(&quot;before:highlightElement &quot;,{el:e,language:r}),t=e;const a=t.textContent,o=r?u(a,{language:r,ignoreIllegals:!0}):d(a);R(&quot;after:highlightElement &quot;,{el:e,result:o,text:a}),e.innerHTML=o.value,function(e,t,r){const a=t?n[t]:r;e.classList.add(&quot;hljs &quot;),a &amp;&amp;e.classList.add(a)}(e,r,o.language),e.result={language:o.language,re:o.relevance,relavance:o.relevance},o.second_best &amp;&amp;(e.second_best={language:o.second_best.language,re:o.second_best.relevance,relavance:o.second_best.relevance})}const v=()=&gt;{v.called||(v.called=!0,Hl(&quot;10.6.0 &quot;,&quot;initHighlighting() is deprecated.  Use highlightAll() instead.&quot;),document.querySelectorAll(&quot;pre code &quot;).forEach(g))};let y=!1;function E(){&quot;loading &quot;!==document.readyState?document.querySelectorAll(&quot;pre code &quot;).forEach(g):y=!0}function b(e){return e=(e||&quot;&quot;).toLowerCase(),t[e]||t[n[e]]}function T(e,{languageName:t}){&quot;string &quot;==typeof e &amp;&amp;(e=[e]),e.forEach(e=&gt;{n[e.toLowerCase()]=t})}function N(e){const t=b(e);return t &amp;&amp;!t.disableAutodetect}function R(e,t){const n=e;r.forEach(function(e){e[n]&amp;&amp;e[n](t)})}&quot;undefined &quot;!=typeof window &amp;&amp;window.addEventListener &amp;&amp;window.addEventListener(&quot;DOMContentLoaded &quot;,function(){y &amp;&amp;E()},!1),Object.assign(e,{highlight:u,highlightAuto:d,highlightAll:E,fixMarkup:function(e){return Hl(&quot;10.2.0 &quot;,&quot;fixMarkup will be removed entirely in v11.0 &quot;),Hl(&quot;10.2.0 &quot;,&quot;Please see https://github.com/highlightjs/highlight.js/issues/2534 &quot;),t=e,s.tabReplace||s.useBR?t.replace(o,e=&gt;&quot;\n &quot;===e?s.useBR?&quot;&lt;br &gt;&quot;:e:s.tabReplace?e.replace(/\t/g,s.tabReplace):e):t;var t},highlightElement:g,highlightBlock:function(e){return Hl(&quot;10.7.0 &quot;,&quot;highlightBlock will be removed entirely in v12.0 &quot;),Hl(&quot;10.7.0 &quot;,&quot;Please use highlightElement now.&quot;),g(e)},configure:function(e){e.useBR &amp;&amp;(Hl(&quot;10.3.0 &quot;,&quot;&#039;useBR &#039;will be removed entirely in v11.0 &quot;),Hl(&quot;10.3.0 &quot;,&quot;Please see https://github.com/highlightjs/highlight.js/issues/2559 &quot;)),s=Vl(s,e)},initHighlighting:v,initHighlightingOnLoad:function(){Hl(&quot;10.6.0 &quot;,&quot;initHighlightingOnLoad() is deprecated.  Use highlightAll() instead.&quot;),y=!0},registerLanguage:function(n,r){let o=null;try{o=r(e)}catch(e){if(Fl(&quot;Language definition for &#039;{}&#039;could not be registered.&quot;.replace(&quot;{}&quot;,n)),!a)throw e;Fl(e),o=l}o.name||(o.name=n),t[n]=o,o.rawDefinition=r.bind(null,e),o.aliases &amp;&amp;T(o.aliases,{languageName:n})},unregisterLanguage:function(e){delete t[e];for(const t of Object.keys(n))n[t]===e &amp;&amp;delete n[t]},listLanguages:function(){return Object.keys(t)},getLanguage:b,registerAliases:T,requireLanguage:function(e){Hl(&quot;10.4.0 &quot;,&quot;requireLanguage will be removed entirely in v11.&quot;),Hl(&quot;10.4.0 &quot;,&quot;Please see https://github.com/highlightjs/highlight.js/pull/2844 &quot;);const t=b(e);if(t)return t;throw new Error(&quot;The &#039;{}&#039;language is required, but not loaded.&quot;.replace(&quot;{}&quot;,e))},autoDetection:N,inherit:Vl,addPlugin:function(e){!function(e){e[&quot;before:highlightBlock &quot;]&amp;&amp;!e[&quot;before:highlightElement &quot;]&amp;&amp;(e[&quot;before:highlightElement &quot;]=t=&gt;{e[&quot;before:highlightBlock &quot;](Object.assign({block:t.el},t))}),e[&quot;after:highlightBlock &quot;]&amp;&amp;!e[&quot;after:highlightElement &quot;]&amp;&amp;(e[&quot;after:highlightElement &quot;]=t=&gt;{e[&quot;after:highlightBlock &quot;](Object.assign({block:t.el},t))})}(e),r.push(e)},vuePlugin:Pl(e).VuePlugin}),e.debugMode=function(){a=!1},e.safeMode=function(){a=!0},e.versionString=&quot;10.7.3 &quot;;for(const e in Rl)&quot;object &quot;==typeof Rl[e]&amp;&amp;al(Rl[e]);return Object.assign(e,Rl),e.addPlugin(p),e.addPlugin(Ml),e.addPlugin(h),e}({}),Yl=we(function(e){!function(){var t;function n(e){for(var t,n,r,a,o=1,i=[].slice.call(arguments),l=0,s=e.length,c=&quot;&quot;,u=!1,f=!1,d=function(){return i[o++]},p=function(){for(var n=&quot;&quot;;/\d/.test(e[l]);)n+=e[l++],t=e[l];return n.length &gt;0?parseInt(n):null};l &lt;s;++l)if(t=e[l],u)switch(u=!1,&quot;.&quot;==t?(f=!1,t=e[++l]):&quot;0 &quot;==t &amp;&amp;&quot;.&quot;==e[l+1]?(f=!0,t=e[l+=2]):f=!0,a=p(),t){case &quot;b &quot;:c+=parseInt(d(),10).toString(2);break;case &quot;c &quot;:c+=&quot;string &quot;==typeof(n=d())||n instanceof String?n:String.fromCharCode(parseInt(n,10));break;case &quot;d &quot;:c+=parseInt(d(),10);break;case &quot;f &quot;:r=String(parseFloat(d()).toFixed(a||6)),c+=f?r:r.replace(/^0/,&quot;&quot;);break;case &quot;j &quot;:c+=JSON.stringify(d());break;case &quot;o &quot;:c+=&quot;0 &quot;+parseInt(d(),10).toString(8);break;case &quot;s &quot;:c+=d();break;case &quot;x &quot;:c+=&quot;0x &quot;+parseInt(d(),10).toString(16);break;case &quot;X &quot;:c+=&quot;0x &quot;+parseInt(d(),10).toString(16).toUpperCase();break;default:c+=t}else &quot;%&quot;===t?u=!0:c+=t;return c}(t=e.exports=n).format=n,t.vsprintf=function(e,t){return n.apply(null,[e].concat(t))},&quot;undefined &quot;!=typeof console &amp;&amp;&quot;function &quot;==typeof console.log &amp;&amp;(t.printf=function(){console.log(n.apply(null,arguments))})}()}),$l=Kl(Error),Xl=$l;function Kl(e){return t.displayName=e.displayName||e.name,t;function t(t){return t &amp;&amp;(t=Yl.apply(null,arguments)),new e(t)}}$l.eval=Kl(EvalError),$l.range=Kl(RangeError),$l.reference=Kl(ReferenceError),$l.syntax=Kl(SyntaxError),$l.type=Kl(TypeError),$l.uri=Kl(URIError),$l.create=Kl;var ql=Jl;function Jl(e,t,n){var r,a=Gl.configure({}),o=(n||{}).prefix;if(&quot;string &quot;!=typeof e)throw Xl(&quot;Expected `string` for name, got `%s`&quot;,e);if(!Gl.getLanguage(e))throw Xl(&quot;Unknown language: `%s` is not registered &quot;,e);if(&quot;string &quot;!=typeof t)throw Xl(&quot;Expected `string` for value, got `%s`&quot;,t);if(null==o &amp;&amp;(o=&quot;hljs-&quot;),Gl.configure({__emitter:Ql,classPrefix:o}),r=Gl.highlight(t,{language:e,ignoreIllegals:!0}),Gl.configure(a||{}),r.errorRaised)throw r.errorRaised;return{relevance:r.relevance,language:r.language,value:r.emitter.rootNode.children}}function Ql(e){this.options=e,this.rootNode={children:[]},this.stack=[this.rootNode]}function Zl(){}Ql.prototype.addText=function(e){var t,n,r=this.stack;&quot;&quot;!==e &amp;&amp;((n=(t=r[r.length-1]).children[t.children.length-1])&amp;&amp;&quot;text &quot;===n.type?n.value+=e:t.children.push({type:&quot;text &quot;,value:e}))},Ql.prototype.addKeyword=function(e,t){this.openNode(t),this.addText(e),this.closeNode()},Ql.prototype.addSublanguage=function(e,t){var n=this.stack,r=n[n.length-1],a=e.rootNode.children;r.children=r.children.concat(t?{type:&quot;element &quot;,tagName:&quot;span &quot;,properties:{className:[t]},children:a}:a)},Ql.prototype.openNode=function(e){var t=this.stack,n={type:&quot;element &quot;,tagName:&quot;span &quot;,properties:{className:[this.options.classPrefix+e]},children:[]};t[t.length-1].children.push(n),t.push(n)},Ql.prototype.closeNode=function(){this.stack.pop()},Ql.prototype.closeAllNodes=Zl,Ql.prototype.finalize=Zl,Ql.prototype.toHTML=function(){return &quot;&quot;};var es={highlight:ql,highlightAuto:function(e,t){var n,r,a,o,i=(t||{}).subset||Gl.listLanguages(),l=i.length,s=-1;if(&quot;string &quot;!=typeof e)throw Xl(&quot;Expected `string` for value, got `%s`&quot;,e);for(r={relevance:0,language:null,value:[]},n={relevance:0,language:null,value:[]};++s &lt;l;)Gl.getLanguage(o=i[s])&amp;&amp;((a=Jl(o,e,t)).language=o,a.relevance &gt;r.relevance &amp;&amp;(r=a),a.relevance &gt;n.relevance &amp;&amp;(r=n,n=a));return r.language &amp;&amp;(n.secondBest=r),n},registerLanguage:function(e,t){Gl.registerLanguage(e,t)},listLanguages:function(){return Gl.listLanguages()},registerAlias:function(e,t){var n,r=e;for(n in t &amp;&amp;((r={})[e]=t),r)Gl.registerAliases(r[n],{languageName:n})}};function ts(e){return e?&quot;string &quot;==typeof e?e:e.source:null}function ns(e){return rs(&quot;(?=&quot;,e,&quot;)&quot;)}function rs(...e){return e.map(e=&gt;ts(e)).join(&quot;&quot;)}function as(...e){return &quot;(&quot;+e.map(e=&gt;ts(e)).join(&quot;|&quot;)+&quot;)&quot;}const os=[&quot;a &quot;,&quot;abbr &quot;,&quot;address &quot;,&quot;article &quot;,&quot;aside &quot;,&quot;audio &quot;,&quot;b &quot;,&quot;blockquote &quot;,&quot;body &quot;,&quot;button &quot;,&quot;canvas &quot;,&quot;caption &quot;,&quot;cite &quot;,&quot;code &quot;,&quot;dd &quot;,&quot;del &quot;,&quot;details &quot;,&quot;dfn &quot;,&quot;div &quot;,&quot;dl &quot;,&quot;dt &quot;,&quot;em &quot;,&quot;fieldset &quot;,&quot;figcaption &quot;,&quot;figure &quot;,&quot;footer &quot;,&quot;form &quot;,&quot;h1 &quot;,&quot;h2 &quot;,&quot;h3 &quot;,&quot;h4 &quot;,&quot;h5 &quot;,&quot;h6 &quot;,&quot;header &quot;,&quot;hgroup &quot;,&quot;html &quot;,&quot;i &quot;,&quot;iframe &quot;,&quot;img &quot;,&quot;input &quot;,&quot;ins &quot;,&quot;kbd &quot;,&quot;label &quot;,&quot;legend &quot;,&quot;li &quot;,&quot;main &quot;,&quot;mark &quot;,&quot;menu &quot;,&quot;nav &quot;,&quot;object &quot;,&quot;ol &quot;,&quot;p &quot;,&quot;q &quot;,&quot;quote &quot;,&quot;samp &quot;,&quot;section &quot;,&quot;span &quot;,&quot;strong &quot;,&quot;summary &quot;,&quot;sup &quot;,&quot;table &quot;,&quot;tbody &quot;,&quot;td &quot;,&quot;textarea &quot;,&quot;tfoot &quot;,&quot;th &quot;,&quot;thead &quot;,&quot;time &quot;,&quot;tr &quot;,&quot;ul &quot;,&quot;var &quot;,&quot;video &quot;],is=[&quot;any-hover &quot;,&quot;any-pointer &quot;,&quot;aspect-ratio &quot;,&quot;color &quot;,&quot;color-gamut &quot;,&quot;color-index &quot;,&quot;device-aspect-ratio &quot;,&quot;device-height &quot;,&quot;device-width &quot;,&quot;display-mode &quot;,&quot;forced-colors &quot;,&quot;grid &quot;,&quot;height &quot;,&quot;hover &quot;,&quot;inverted-colors &quot;,&quot;monochrome &quot;,&quot;orientation &quot;,&quot;overflow-block &quot;,&quot;overflow-inline &quot;,&quot;pointer &quot;,&quot;prefers-color-scheme &quot;,&quot;prefers-contrast &quot;,&quot;prefers-reduced-motion &quot;,&quot;prefers-reduced-transparency &quot;,&quot;resolution &quot;,&quot;scan &quot;,&quot;scripting &quot;,&quot;update &quot;,&quot;width &quot;,&quot;min-width &quot;,&quot;max-width &quot;,&quot;min-height &quot;,&quot;max-height &quot;],ls=[&quot;active &quot;,&quot;any-link &quot;,&quot;blank &quot;,&quot;checked &quot;,&quot;current &quot;,&quot;default &quot;,&quot;defined &quot;,&quot;dir &quot;,&quot;disabled &quot;,&quot;drop &quot;,&quot;empty &quot;,&quot;enabled &quot;,&quot;first &quot;,&quot;first-child &quot;,&quot;first-of-type &quot;,&quot;fullscreen &quot;,&quot;future &quot;,&quot;focus &quot;,&quot;focus-visible &quot;,&quot;focus-within &quot;,&quot;has &quot;,&quot;host &quot;,&quot;host-context &quot;,&quot;hover &quot;,&quot;indeterminate &quot;,&quot;in-range &quot;,&quot;invalid &quot;,&quot;is &quot;,&quot;lang &quot;,&quot;last-child &quot;,&quot;last-of-type &quot;,&quot;left &quot;,&quot;link &quot;,&quot;local-link &quot;,&quot;not &quot;,&quot;nth-child &quot;,&quot;nth-col &quot;,&quot;nth-last-child &quot;,&quot;nth-last-col &quot;,&quot;nth-last-of-type &quot;,&quot;nth-of-type &quot;,&quot;only-child &quot;,&quot;only-of-type &quot;,&quot;optional &quot;,&quot;out-of-range &quot;,&quot;past &quot;,&quot;placeholder-shown &quot;,&quot;read-only &quot;,&quot;read-write &quot;,&quot;required &quot;,&quot;right &quot;,&quot;root &quot;,&quot;scope &quot;,&quot;target &quot;,&quot;target-within &quot;,&quot;user-invalid &quot;,&quot;valid &quot;,&quot;visited &quot;,&quot;where &quot;],ss=[&quot;after &quot;,&quot;backdrop &quot;,&quot;before &quot;,&quot;cue &quot;,&quot;cue-region &quot;,&quot;first-letter &quot;,&quot;first-line &quot;,&quot;grammar-error &quot;,&quot;marker &quot;,&quot;part &quot;,&quot;placeholder &quot;,&quot;selection &quot;,&quot;slotted &quot;,&quot;spelling-error &quot;],cs=[&quot;align-content &quot;,&quot;align-items &quot;,&quot;align-self &quot;,&quot;animation &quot;,&quot;animation-delay &quot;,&quot;animation-direction &quot;,&quot;animation-duration &quot;,&quot;animation-fill-mode &quot;,&quot;animation-iteration-count &quot;,&quot;animation-name &quot;,&quot;animation-play-state &quot;,&quot;animation-timing-function &quot;,&quot;auto &quot;,&quot;backface-visibility &quot;,&quot;background &quot;,&quot;background-attachment &quot;,&quot;background-clip &quot;,&quot;background-color &quot;,&quot;background-image &quot;,&quot;background-origin &quot;,&quot;background-position &quot;,&quot;background-repeat &quot;,&quot;background-size &quot;,&quot;border &quot;,&quot;border-bottom &quot;,&quot;border-bottom-color &quot;,&quot;border-bottom-left-radius &quot;,&quot;border-bottom-right-radius &quot;,&quot;border-bottom-style &quot;,&quot;border-bottom-width &quot;,&quot;border-collapse &quot;,&quot;border-color &quot;,&quot;border-image &quot;,&quot;border-image-outset &quot;,&quot;border-image-repeat &quot;,&quot;border-image-slice &quot;,&quot;border-image-source &quot;,&quot;border-image-width &quot;,&quot;border-left &quot;,&quot;border-left-color &quot;,&quot;border-left-style &quot;,&quot;border-left-width &quot;,&quot;border-radius &quot;,&quot;border-right &quot;,&quot;border-right-color &quot;,&quot;border-right-style &quot;,&quot;border-right-width &quot;,&quot;border-spacing &quot;,&quot;border-style &quot;,&quot;border-top &quot;,&quot;border-top-color &quot;,&quot;border-top-left-radius &quot;,&quot;border-top-right-radius &quot;,&quot;border-top-style &quot;,&quot;border-top-width &quot;,&quot;border-width &quot;,&quot;bottom &quot;,&quot;box-decoration-break &quot;,&quot;box-shadow &quot;,&quot;box-sizing &quot;,&quot;break-after &quot;,&quot;break-before &quot;,&quot;break-inside &quot;,&quot;caption-side &quot;,&quot;clear &quot;,&quot;clip &quot;,&quot;clip-path &quot;,&quot;color &quot;,&quot;column-count &quot;,&quot;column-fill &quot;,&quot;column-gap &quot;,&quot;column-rule &quot;,&quot;column-rule-color &quot;,&quot;column-rule-style &quot;,&quot;column-rule-width &quot;,&quot;column-span &quot;,&quot;column-width &quot;,&quot;columns &quot;,&quot;content &quot;,&quot;counter-increment &quot;,&quot;counter-reset &quot;,&quot;cursor &quot;,&quot;direction &quot;,&quot;display &quot;,&quot;empty-cells &quot;,&quot;filter &quot;,&quot;flex &quot;,&quot;flex-basis &quot;,&quot;flex-direction &quot;,&quot;flex-flow &quot;,&quot;flex-grow &quot;,&quot;flex-shrink &quot;,&quot;flex-wrap &quot;,&quot;float &quot;,&quot;font &quot;,&quot;font-display &quot;,&quot;font-family &quot;,&quot;font-feature-settings &quot;,&quot;font-kerning &quot;,&quot;font-language-override &quot;,&quot;font-size &quot;,&quot;font-size-adjust &quot;,&quot;font-smoothing &quot;,&quot;font-stretch &quot;,&quot;font-style &quot;,&quot;font-variant &quot;,&quot;font-variant-ligatures &quot;,&quot;font-variation-settings &quot;,&quot;font-weight &quot;,&quot;height &quot;,&quot;hyphens &quot;,&quot;icon &quot;,&quot;image-orientation &quot;,&quot;image-rendering &quot;,&quot;image-resolution &quot;,&quot;ime-mode &quot;,&quot;inherit &quot;,&quot;initial &quot;,&quot;justify-content &quot;,&quot;left &quot;,&quot;letter-spacing &quot;,&quot;line-height &quot;,&quot;list-style &quot;,&quot;list-style-image &quot;,&quot;list-style-position &quot;,&quot;list-style-type &quot;,&quot;margin &quot;,&quot;margin-bottom &quot;,&quot;margin-left &quot;,&quot;margin-right &quot;,&quot;margin-top &quot;,&quot;marks &quot;,&quot;mask &quot;,&quot;max-height &quot;,&quot;max-width &quot;,&quot;min-height &quot;,&quot;min-width &quot;,&quot;nav-down &quot;,&quot;nav-index &quot;,&quot;nav-left &quot;,&quot;nav-right &quot;,&quot;nav-up &quot;,&quot;none &quot;,&quot;normal &quot;,&quot;object-fit &quot;,&quot;object-position &quot;,&quot;opacity &quot;,&quot;order &quot;,&quot;orphans &quot;,&quot;outline &quot;,&quot;outline-color &quot;,&quot;outline-offset &quot;,&quot;outline-style &quot;,&quot;outline-width &quot;,&quot;overflow &quot;,&quot;overflow-wrap &quot;,&quot;overflow-x &quot;,&quot;overflow-y &quot;,&quot;padding &quot;,&quot;padding-bottom &quot;,&quot;padding-left &quot;,&quot;padding-right &quot;,&quot;padding-top &quot;,&quot;page-break-after &quot;,&quot;page-break-before &quot;,&quot;page-break-inside &quot;,&quot;perspective &quot;,&quot;perspective-origin &quot;,&quot;pointer-events &quot;,&quot;position &quot;,&quot;quotes &quot;,&quot;resize &quot;,&quot;right &quot;,&quot;src &quot;,&quot;tab-size &quot;,&quot;table-layout &quot;,&quot;text-align &quot;,&quot;text-align-last &quot;,&quot;text-decoration &quot;,&quot;text-decoration-color &quot;,&quot;text-decoration-line &quot;,&quot;text-decoration-style &quot;,&quot;text-indent &quot;,&quot;text-overflow &quot;,&quot;text-rendering &quot;,&quot;text-shadow &quot;,&quot;text-transform &quot;,&quot;text-underline-position &quot;,&quot;top &quot;,&quot;transform &quot;,&quot;transform-origin &quot;,&quot;transform-style &quot;,&quot;transition &quot;,&quot;transition-delay &quot;,&quot;transition-duration &quot;,&quot;transition-property &quot;,&quot;transition-timing-function &quot;,&quot;unicode-bidi &quot;,&quot;vertical-align &quot;,&quot;visibility &quot;,&quot;white-space &quot;,&quot;widows &quot;,&quot;width &quot;,&quot;word-break &quot;,&quot;word-spacing &quot;,&quot;word-wrap &quot;,&quot;z-index &quot;].reverse();function us(e){return e?&quot;string &quot;==typeof e?e:e.source:null}function fs(...e){return e.map(e=&gt;us(e)).join(&quot;&quot;)}const ds=[&quot;as &quot;,&quot;in &quot;,&quot;of &quot;,&quot;if &quot;,&quot;for &quot;,&quot;while &quot;,&quot;finally &quot;,&quot;var &quot;,&quot;new &quot;,&quot;function &quot;,&quot;do &quot;,&quot;return &quot;,&quot;void &quot;,&quot;else &quot;,&quot;break &quot;,&quot;catch &quot;,&quot;instanceof &quot;,&quot;with &quot;,&quot;throw &quot;,&quot;case &quot;,&quot;default &quot;,&quot;try &quot;,&quot;switch &quot;,&quot;continue &quot;,&quot;typeof &quot;,&quot;delete &quot;,&quot;let &quot;,&quot;yield &quot;,&quot;const &quot;,&quot;class &quot;,&quot;debugger &quot;,&quot;async &quot;,&quot;await &quot;,&quot;static &quot;,&quot;import &quot;,&quot;from &quot;,&quot;export &quot;,&quot;extends &quot;],ps=[&quot;true &quot;,&quot;false &quot;,&quot;null &quot;,&quot;undefined &quot;,&quot;NaN &quot;,&quot;Infinity &quot;],ms=[].concat([&quot;setInterval &quot;,&quot;setTimeout &quot;,&quot;clearInterval &quot;,&quot;clearTimeout &quot;,&quot;require &quot;,&quot;exports &quot;,&quot;eval &quot;,&quot;isFinite &quot;,&quot;isNaN &quot;,&quot;parseFloat &quot;,&quot;parseInt &quot;,&quot;decodeURI &quot;,&quot;decodeURIComponent &quot;,&quot;encodeURI &quot;,&quot;encodeURIComponent &quot;,&quot;escape &quot;,&quot;unescape &quot;],[&quot;arguments &quot;,&quot;this &quot;,&quot;super &quot;,&quot;console &quot;,&quot;window &quot;,&quot;document &quot;,&quot;localStorage &quot;,&quot;module &quot;,&quot;global &quot;],[&quot;Intl &quot;,&quot;DataView &quot;,&quot;Number &quot;,&quot;Math &quot;,&quot;Date &quot;,&quot;String &quot;,&quot;RegExp &quot;,&quot;Object &quot;,&quot;Function &quot;,&quot;Boolean &quot;,&quot;Error &quot;,&quot;Symbol &quot;,&quot;Set &quot;,&quot;Map &quot;,&quot;WeakSet &quot;,&quot;WeakMap &quot;,&quot;Proxy &quot;,&quot;Reflect &quot;,&quot;JSON &quot;,&quot;Promise &quot;,&quot;Float64Array &quot;,&quot;Int16Array &quot;,&quot;Int32Array &quot;,&quot;Int8Array &quot;,&quot;Uint16Array &quot;,&quot;Uint32Array &quot;,&quot;Float32Array &quot;,&quot;Array &quot;,&quot;Uint8Array &quot;,&quot;Uint8ClampedArray &quot;,&quot;ArrayBuffer &quot;,&quot;BigInt64Array &quot;,&quot;BigUint64Array &quot;,&quot;BigInt &quot;],[&quot;EvalError &quot;,&quot;InternalError &quot;,&quot;RangeError &quot;,&quot;ReferenceError &quot;,&quot;SyntaxError &quot;,&quot;TypeError &quot;,&quot;URIError &quot;]);function hs(e){return gs(&quot;(?=&quot;,e,&quot;)&quot;)}function gs(...e){return e.map(e=&gt;{return(t=e)?&quot;string &quot;==typeof t?t:t.source:null;var t}).join(&quot;&quot;)}function vs(e){return e?&quot;string &quot;==typeof e?e:e.source:null}function ys(...e){return e.map(e=&gt;vs(e)).join(&quot;&quot;)}function Es(...e){return &quot;(&quot;+e.map(e=&gt;vs(e)).join(&quot;|&quot;)+&quot;)&quot;}var bs,Ts,Ns=(bs=es,Ts={},function(e){var t=e.language,n=e.children,r=e.style,a=void 0===r?Ts:r,o=e.customStyle,i=void 0===o?{}:o,l=e.codeTagProps,s=void 0===l?{className:t?&quot;language-&quot;.concat(t):void 0,style:$i($i({},a[&#039;code[class*=&quot;language-&quot;]&#039;]),a[&#039;code[class*=&quot;language-&#039;.concat(t,&#039;&quot;]&#039;)])}:l,u=e.useInlineStyles,f=void 0===u||u,d=e.showLineNumbers,p=void 0!==d &amp;&amp;d,m=e.showInlineLineNumbers,h=void 0===m||m,g=e.startingLineNumber,v=void 0===g?1:g,y=e.lineNumberContainerStyle,E=e.lineNumberStyle,b=void 0===E?{}:E,T=e.wrapLines,N=e.wrapLongLines,R=void 0!==N &amp;&amp;N,S=e.lineProps,w=void 0===S?{}:S,O=e.renderer,C=e.PreTag,A=void 0===C?&quot;pre &quot;:C,I=e.CodeTag,k=void 0===I?&quot;code &quot;:I,x=e.code,_=void 0===x?(Array.isArray(n)?n[0]:n)||&quot;&quot;:x,L=e.astGenerator,P=function(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||Object.prototype.propertyIsEnumerable.call(e,n)&amp;&amp;(a[n]=e[n])}return a}(e,Gi);L=L||bs;var M=p?/*#__PURE__*/c.createElement(Ki,{containerStyle:y,codeStyle:s.style||{},numberStyle:b,startingLineNumber:v,codeString:_}):null,D=a.hljs||a[&#039;pre[class*=&quot;language-&quot;]&#039;]||{backgroundColor:&quot;#fff &quot;},U=nl(L)?&quot;hljs &quot;:&quot;prismjs &quot;,j=Object.assign({},P,f?{style:Object.assign({},D,i)}:{className:P.className?&quot;&quot;.concat(U,&quot;&quot;).concat(P.className):U,style:Object.assign({},i)});if(s.style=$i($i({},s.style),{},R?{whiteSpace:&quot;pre-wrap &quot;}:{whiteSpace:&quot;pre &quot;}),!L)/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        return c.createElement(A,j,M,/*#__PURE__*/c.createElement(k,s,_));(void 0===T &amp;&amp;O||R)&amp;&amp;(T=!0),O=O||tl;var F=[{type:&quot;text &quot;,value:_}],z=function(e){var t=e.astGenerator,n=e.language,r=e.code,a=e.defaultCodeValue;if(nl(t)){var o=function(e,t){return-1!==e.listLanguages().indexOf(t)}(t,n);return &quot;text &quot;===n?{value:a,language:&quot;text &quot;}:o?t.highlight(n,r):t.highlightAuto(r)}try{return n &amp;&amp;&quot;text &quot;!==n?{value:t.highlight(r,n)}:{value:a}}catch(e){return{value:a}}}({astGenerator:L,language:t,code:_,defaultCodeValue:F});null===z.language &amp;&amp;(z.value=F);var H=el(z,T,w,p,h,v,z.value.length+v,b,R);/*#__PURE__*/<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        return c.createElement(A,j,/*#__PURE__*/c.createElement(k,s,!h &amp;&amp;M,O({rows:H,stylesheet:a,useInlineStyles:f})))});Ns.registerLanguage=es.registerLanguage;var Rs=Ns;function Ss(){Ss=function(e,t){return new n(e,void 0,t)};var e=RegExp.prototype,t=new WeakMap;function n(e,r,a){var o=new RegExp(e,r);return t.set(o,a||t.get(e)),Cs(o,n.prototype)}function r(e,n){var r=t.get(n);return Object.keys(r).reduce(function(t,n){return t[n]=e[r[n]],t},Object.create(null))}return Os(n,RegExp),n.prototype.exec=function(t){var n=e.exec.call(this,t);return n &amp;&amp;(n.groups=r(n,this)),n},n.prototype[Symbol.replace]=function(n,a){if(&quot;string &quot;==typeof a){var o=t.get(this);return e[Symbol.replace].call(this,n,a.replace(/\$ &lt;([^&gt;]+)&gt;/g,function(e,t){return &quot;$ &quot;+o[t]}))}if(&quot;function &quot;==typeof a){var i=this;return e[Symbol.replace].call(this,n,function(){var e=arguments;return &quot;object &quot;!=typeof e[e.length-1]&amp;&amp;(e=[].slice.call(e)).push(r(e,i)),a.apply(this,e)})}return e[Symbol.replace].call(this,n,a)},Ss.apply(this,arguments)}function ws(){return(ws=Object.assign||function(e){for(var t=1;t &lt;arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&amp;&amp;(e[r]=n[r])}return e}).apply(this,arguments)}function Os(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,&quot;prototype &quot;,{writable:!1}),t &amp;&amp;Cs(e,t)}function Cs(e,t){return(Cs=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function As(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}const Is=[&quot;children &quot;,&quot;className &quot;];function ks(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,Is);return c.createElement(&quot;button &quot;,ws({type:r.type||&quot;button &quot;,className:`w-6 h-6 rounded-full flex items-center justify-center\n            text-xs ~bg-white text-indigo-500 hover:~text-indigo-600 \n            transform transition-animation shadow-md hover:shadow-lg\n            active:shadow-sm active:translate-y-px &quot;\n                ${n}\n            `},r),t)}function xs({highlight:e,row:t,frame:n,lineNumber:r}){const a=Fn({file:n.file,lineNumber:r});return c.createElement(&quot;span &quot;,{className:`\n                flex group leading-loose hover:~bg-red-500/10\n                ${e?&quot;~bg-red-500/20 &quot;:&quot;&quot;}\n            `},a &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;z-30 opacity-0 group-hover:opacity-100 sticky left-10 w-0 h-full &quot;},c.createElement(&quot;a &quot;,{href:a,className:&quot;-ml-3 block &quot;},c.createElement(ks,null,c.createElement(oi,{className:&quot;text-xs &quot;,icon:Ti})))),c.createElement(&quot;span &quot;,{className:&quot;pl-6 &quot;},Wi({node:t,useInlineStyles:!1,key:`code-segement-${r}`})))}function _s({frame:e}){const t=Object.values(e.code_snippet).join(&quot;\n &quot;),n=Object.keys(e.code_snippet).map(e=&gt;Number(e)),r=n.indexOf(e.line_number),a=c.useMemo(()=&gt;({rows:t})=&gt;t.map((t,a)=&gt;c.createElement(xs,{key:n[a],frame:e,highlight:a===r,row:t,lineNumber:n[a]})),[e]);return c.createElement(&quot;main &quot;,{className:&quot;flex items-stretch flex-grow overflow-x-auto overflow-y-hidden scrollbar-hidden-x mask-fade-r text-sm &quot;},c.createElement(&quot;nav &quot;,{className:&quot;sticky left-0 flex flex-none z-20 ~bg-white &quot;},c.createElement(&quot;div &quot;,{className:&quot;select-none text-right &quot;},n.map(t=&gt;c.createElement(&quot;p &quot;,{key:t,className:`\n                                px-2 font-mono leading-loose select-none\n                                ${Number(t)===e.line_number?&quot;text-opacity-75 ~text-red-700 ~bg-red-500/30 &quot;:&quot;&quot;}\n                            `},c.createElement(&quot;span &quot;,{className:&quot;~text-gray-500 &quot;},t))))),c.createElement(&quot;div &quot;,{className:&quot;flex-grow pr-10 &quot;},c.createElement(Rs,{language:(o=e.relative_file,o.endsWith(&quot;.blade.php &quot;)?&quot;blade &quot;:o.match(/^resources\/views\//)?&quot;php-template &quot;:&quot;php &quot;),renderer:a,customStyle:{background:&quot;transparent &quot;}},t)));var o}function Ls(e,t){c.useEffect(()=&gt;{function n(n){document.activeElement &amp;&amp;&quot;INPUT &quot;===document.activeElement.tagName||n.key===e &amp;&amp;t(n)}return window.addEventListener(&quot;keyup &quot;,n),()=&gt;{window.removeEventListener(&quot;keyup &quot;,n)}},[e,t])}function Ps(e){return e.map((t,n)=&gt;ws({},t,{frame_number:e.length-n}))}function Ms(e){return e.relative_file.startsWith(&quot;vendor/&quot;)?&quot;vendor &quot;:&quot;unknown &quot;===e.relative_file?&quot;unknown &quot;:&quot;application &quot;}Rs.registerLanguage(&quot;php &quot;,function(e){const t={className:&quot;variable &quot;,begin:&quot;\\$+[a-zA-Z_<span class="sf-dump-default">\x7F</span>
        -&#255;][a-zA-Z0-9_<span class="sf-dump-default">\x7F</span>
        -&#255;]*(?![A-Za-z0-9])(?![$])&quot;},n={className:&quot;meta &quot;,variants:[{begin:/&lt;\?php/,relevance:10},{begin:/&lt;\?[=]?/},{begin:/\?&gt;/}]},r={className:&quot;subst &quot;,variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},a=e.inherit(e.APOS_STRING_MODE,{illegal:null}),o=e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(r)}),i=e.END_SAME_AS_BEGIN({begin:/&lt;&lt;&lt;[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(r)}),l={className:&quot;string &quot;,contains:[e.BACKSLASH_ESCAPE,n],variants:[e.inherit(a,{begin:&quot;b &#039;&quot;,end:&quot;&#039;&quot;}),e.inherit(o,{begin:&#039;b &quot;&#039;,end:&#039;&quot;&#039;}),o,a,i]},s={className:&quot;number &quot;,variants:[{begin:&quot;\\b0b[01]+(?:_[01]+)*\\b &quot;},{begin:&quot;\\b0o[0-7]+(?:_[0-7]+)*\\b &quot;},{begin:&quot;\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b &quot;},{begin:&quot;(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?&quot;}],relevance:0},c={keyword:&quot;__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield &quot;,literal:&quot;false null true &quot;,built_in:&quot;Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass &quot;};return{aliases:[&quot;php3 &quot;,&quot;php4 &quot;,&quot;php5 &quot;,&quot;php6 &quot;,&quot;php7 &quot;,&quot;php8 &quot;],case_insensitive:!0,keywords:c,contains:[e.HASH_COMMENT_MODE,e.COMMENT(&quot;//&quot;,&quot;$ &quot;,{contains:[n]}),e.COMMENT(&quot;/\\*&quot;,&quot;\\*/&quot;,{contains:[{className:&quot;doctag &quot;,begin:&quot;@[A-Za-z]+&quot;}]}),e.COMMENT(&quot;__halt_compiler.+?;&quot;,!1,{endsWithParent:!0,keywords:&quot;__halt_compiler &quot;}),n,{className:&quot;keyword &quot;,begin:/\$this\b/},t,{begin:/(::|-&gt;)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:&quot;function &quot;,relevance:0,beginKeywords:&quot;fn function &quot;,end:/[;{]/,excludeEnd:!0,illegal:&quot;[$%\\[]&quot;,contains:[{beginKeywords:&quot;use &quot;},e.UNDERSCORE_TITLE_MODE,{begin:&quot;=&gt;&quot;,endsParent:!0},{className:&quot;params &quot;,begin:&quot;\\(&quot;,end:&quot;\\)&quot;,excludeBegin:!0,excludeEnd:!0,keywords:c,contains:[&quot;self &quot;,t,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className:&quot;class &quot;,variants:[{beginKeywords:&quot;enum &quot;,illegal:/[($ &quot;]/},{beginKeywords:&quot;class interface trait &quot;,illegal:/[:($ &quot;]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:&quot;extends implements &quot;},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:&quot;namespace &quot;,relevance:0,end:&quot;;&quot;,illegal:/[.&#039;]/,contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:&quot;use &quot;,relevance:0,end:&quot;;&quot;,contains:[e.UNDERSCORE_TITLE_MODE]},l,s]}}),Rs.registerLanguage(&quot;php-template &quot;,function(e){return{name:&quot;PHP template &quot;,subLanguage:&quot;xml &quot;,contains:[{begin:/&lt;\?(php|=)?/,end:/\?&gt;/,subLanguage:&quot;php &quot;,contains:[{begin:&quot;/\\*&quot;,end:&quot;\\*/&quot;,skip:!0},{begin:&#039;b &quot;&#039;,end:&#039;&quot;&#039;,skip:!0},{begin:&quot;b &#039;&quot;,end:&quot;&#039;&quot;,skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}}),Rs.registerLanguage(&quot;blade &quot;,function(e){return{name:&quot;Blade &quot;,case_insensitive:!0,subLanguage:&quot;php-template &quot;,contains:[e.COMMENT(/\{\{--/,/--\}\}/),{className:&quot;template-variable &quot;,begin:/\{\{/,starts:{end:/\}\}/,returnEnd:!0,subLanguage:&quot;php &quot;}},{className:&quot;template-variable &quot;,begin:/\}\}/},{className:&quot;template-variable &quot;,begin:/\{\{\{/,starts:{end:/\}\}\}/,returnEnd:!0,subLanguage:&quot;php &quot;}},{className:&quot;template-variable &quot;,begin:/\}\}\}/},{className:&quot;template-variable &quot;,begin:/\{!!/,starts:{end:/!!\}/,returnEnd:!0,subLanguage:&quot;php &quot;}},{className:&quot;template-variable &quot;,begin:/!!\}/},{className:&quot;template-tag &quot;,begin:/@php\(/,starts:{end:/\)/,returnEnd:!0,subLanguage:&quot;php &quot;},relevance:15},{className:&quot;template-tag &quot;,begin:/@php/,starts:{end:/@endphp/,returnEnd:!0,subLanguage:&quot;php &quot;},relevance:10},{className:&quot;attr &quot;,begin:/:[\w-]+=&quot;/,starts:{end:/&quot;(?=\s|\n|\/)/,returnEnd:!0,subLanguage:&quot;php &quot;}},{begin:/@\w+/,end:/\W/,excludeEnd:!0,className:&quot;template-tag &quot;}]}}),Rs.registerLanguage(&quot;xml &quot;,function(e){const t=rs(/[A-Z_]/,rs(&quot;(&quot;,/[A-Z0-9_.-]*:/,&quot;)?&quot;),/[A-Z0-9_.-]*/),n={className:&quot;symbol &quot;,begin:/&amp;[a-z]+;|&amp;#[0-9]+;|&amp;#x[a-f0-9]+;/},r={begin:/\s/,contains:[{className:&quot;meta-keyword &quot;,begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},a=e.inherit(r,{begin:/\(/,end:/\)/}),o=e.inherit(e.APOS_STRING_MODE,{className:&quot;meta-string &quot;}),i=e.inherit(e.QUOTE_STRING_MODE,{className:&quot;meta-string &quot;}),l={endsWithParent:!0,illegal:/&lt;/,relevance:0,contains:[{className:&quot;attr &quot;,begin:/[A-Za-z0-9._:-]+/,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:&quot;string &quot;,endsParent:!0,variants:[{begin:/&quot;/,end:/&quot;/,contains:[n]},{begin:/&#039;/,end:/&#039;/,contains:[n]},{begin:/[^\s &quot;&#039;=&lt;&gt;`]+/}]}]}]};return{name:&quot;HTML, XML &quot;,aliases:[&quot;html &quot;,&quot;xhtml &quot;,&quot;rss &quot;,&quot;atom &quot;,&quot;xjb &quot;,&quot;xsd &quot;,&quot;xsl &quot;,&quot;plist &quot;,&quot;wsf &quot;,&quot;svg &quot;],case_insensitive:!0,contains:[{className:&quot;meta &quot;,begin:/&lt;![a-z]/,end:/&gt;/,relevance:10,contains:[r,i,o,a,{begin:/\[/,end:/\]/,contains:[{className:&quot;meta &quot;,begin:/&lt;![a-z]/,end:/&gt;/,contains:[r,a,i,o]}]}]},e.COMMENT(/&lt;!--/,/--&gt;/,{relevance:10}),{begin:/&lt;!\[CDATA\[/,end:/\]\]&gt;/,relevance:10},n,{className:&quot;meta &quot;,begin:/&lt;\?xml/,end:/\?&gt;/,relevance:10},{className:&quot;tag &quot;,begin:/&lt;style(?=\s|&gt;)/,end:/&gt;/,keywords:{name:&quot;style &quot;},contains:[l],starts:{end:/&lt;\/style &gt;/,returnEnd:!0,subLanguage:[&quot;css &quot;,&quot;xml &quot;]}},{className:&quot;tag &quot;,begin:/&lt;script(?=\s|&gt;)/,end:/&gt;/,keywords:{name:&quot;script &quot;},contains:[l],starts:{end:/&lt;\/script &gt;/,returnEnd:!0,subLanguage:[&quot;javascript &quot;,&quot;handlebars &quot;,&quot;xml &quot;]}},{className:&quot;tag &quot;,begin:/&lt;&gt;|&lt;\/&gt;/},{className:&quot;tag &quot;,begin:rs(/&lt;/,ns(rs(t,as(/\/&gt;/,/&gt;/,/\s/)))),end:/\/?&gt;/,contains:[{className:&quot;name &quot;,begin:t,relevance:0,starts:l}]},{className:&quot;tag &quot;,begin:rs(/&lt;\//,ns(rs(t,/&gt;/))),contains:[{className:&quot;name &quot;,begin:t,relevance:0},{begin:/&gt;/,relevance:0,endsParent:!0}]}]}}),Rs.registerLanguage(&quot;css &quot;,function(e){const t=(e=&gt;({IMPORTANT:{className:&quot;meta &quot;,begin:&quot;!important &quot;},HEXCOLOR:{className:&quot;number &quot;,begin:&quot;#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})&quot;},ATTRIBUTE_SELECTOR_MODE:{className:&quot;selector-attr &quot;,begin:/\[/,end:/\]/,illegal:&quot;$ &quot;,contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]}}))(e),n=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:&quot;CSS &quot;,case_insensitive:!0,illegal:/[=|&#039;\$]/,keywords:{keyframePosition:&quot;from to &quot;},classNameAliases:{keyframePosition:&quot;selector-tag &quot;},contains:[e.C_BLOCK_COMMENT_MODE,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/},e.CSS_NUMBER_MODE,{className:&quot;selector-id &quot;,begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:&quot;selector-class &quot;,begin:&quot;\\.[a-zA-Z-][a-zA-Z0-9_-]*&quot;,relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:&quot;selector-pseudo &quot;,variants:[{begin:&quot;:(&quot;+ls.join(&quot;|&quot;)+&quot;)&quot;},{begin:&quot;::(&quot;+ss.join(&quot;|&quot;)+&quot;)&quot;}]},{className:&quot;attribute &quot;,begin:&quot;\\b(&quot;+cs.join(&quot;|&quot;)+&quot;)\\b &quot;},{begin:&quot;:&quot;,end:&quot;[;}]&quot;,contains:[t.HEXCOLOR,t.IMPORTANT,e.CSS_NUMBER_MODE,...n,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:&quot;url data-uri &quot;},contains:[{className:&quot;string &quot;,begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},{className:&quot;built_in &quot;,begin:/[\w-]+(?=\()/}]},{begin:(r=/@/,function(...e){return e.map(e=&gt;function(e){return e?&quot;string &quot;==typeof e?e:e.source:null}(e)).join(&quot;&quot;)}(&quot;(?=&quot;,r,&quot;)&quot;)),end:&quot;[{;]&quot;,relevance:0,illegal:/:/,contains:[{className:&quot;keyword &quot;,begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:&quot;and or not only &quot;,attribute:is.join(&quot;&quot;)},contains:[{begin:/[a-z-]+(?=:)/,className:&quot;attribute &quot;},...n,e.CSS_NUMBER_MODE]}]},{className:&quot;selector-tag &quot;,begin:&quot;\\b(&quot;+os.join(&quot;|&quot;)+&quot;)\\b &quot;}]};var r}),Rs.registerLanguage(&quot;javascript &quot;,function(e){const t=&quot;[A-Za-z$_][0-9A-Za-z$_]*&quot;,n={begin:/&lt;[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+&gt;|\/&gt;/,isTrulyOpeningTag:(e,t)=&gt;{const n=e[0].length+e.index,r=e.input[n];&quot;&lt;&quot;!==r?&quot;&gt;&quot;===r &amp;&amp;(((e,{after:t})=&gt;{const n=&quot;&lt;/&quot;+e[0].slice(1);return-1!==e.input.indexOf(n,t)})(e,{after:n})||t.ignoreMatch()):t.ignoreMatch()}},r={$pattern:&quot;[A-Za-z$_][0-9A-Za-z$_]*&quot;,keyword:ds,literal:ps,built_in:ms},a=&quot;\\.([0-9](_?[0-9])*)&quot;,o=&quot;0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*&quot;,i={className:&quot;number &quot;,variants:[{begin:`(\\b(${o})((${a})|\\.)?|(${a}))[eE][+-]?([0-9](_?[0-9])*)\\b`},{begin:`\\b(${o})\\b((${a})\\b|\\.)?|(${a})\\b`},{begin:&quot;\\b(0|[1-9](_?[0-9])*)n\\b &quot;},{begin:&quot;\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b &quot;},{begin:&quot;\\b0[bB][0-1](_?[0-1])*n?\\b &quot;},{begin:&quot;\\b0[oO][0-7](_?[0-7])*n?\\b &quot;},{begin:&quot;\\b0[0-7]+n?\\b &quot;}],relevance:0},l={className:&quot;subst &quot;,begin:&quot;\\$\\{&quot;,end:&quot;\\}&quot;,keywords:r,contains:[]},s={begin:&quot;html`&quot;,end:&quot;&quot;,starts:{end:&quot;`&quot;,returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,l],subLanguage:&quot;xml &quot;}},c={begin:&quot;css`&quot;,end:&quot;&quot;,starts:{end:&quot;`&quot;,returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,l],subLanguage:&quot;css &quot;}},u={className:&quot;string &quot;,begin:&quot;`&quot;,end:&quot;`&quot;,contains:[e.BACKSLASH_ESCAPE,l]},f={className:&quot;comment &quot;,variants:[e.COMMENT(/\/\*\*(?!\/)/,&quot;\\*/&quot;,{relevance:0,contains:[{className:&quot;doctag &quot;,begin:&quot;@[A-Za-z]+&quot;,contains:[{className:&quot;type &quot;,begin:&quot;\\{&quot;,end:&quot;\\}&quot;,relevance:0},{className:&quot;variable &quot;,begin:t+&quot;(?=\\s*(-)|$)&quot;,endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},d=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,s,c,u,i,e.REGEXP_MODE];l.contains=d.concat({begin:/\{/,end:/\}/,keywords:r,contains:[&quot;self &quot;].concat(d)});const p=[].concat(f,l.contains),m=p.concat([{begin:/\(/,end:/\)/,keywords:r,contains:[&quot;self &quot;].concat(p)}]),h={className:&quot;params &quot;,begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:m};return{name:&quot;Javascript &quot;,aliases:[&quot;js &quot;,&quot;jsx &quot;,&quot;mjs &quot;,&quot;cjs &quot;],keywords:r,exports:{PARAMS_CONTAINS:m},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:&quot;shebang &quot;,binary:&quot;node &quot;,relevance:5}),{label:&quot;use_strict &quot;,className:&quot;meta &quot;,relevance:10,begin:/^\s*[&#039;&quot;]use (strict|asm)[&#039;&quot;]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,s,c,u,f,i,{begin:gs(/[{,\n]\s*/,hs(gs(/(((\/\/.*$)|(\/\*(\*[^/]|[^*])*\*\/))\s*)*/,t+&quot;\\s*:&quot;))),relevance:0,contains:[{className:&quot;attr &quot;,begin:t+hs(&quot;\\s*:&quot;),relevance:0}]},{begin:&quot;(&quot;+e.RE_STARTERS_RE+&quot;|\\b(case|return|throw)\\b)\\s*&quot;,keywords:&quot;return throw case &quot;,contains:[f,e.REGEXP_MODE,{className:&quot;function &quot;,begin:&quot;(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|&quot;+e.UNDERSCORE_IDENT_RE+&quot;)\\s*=&gt;&quot;,returnBegin:!0,end:&quot;\\s*=&gt;&quot;,contains:[{className:&quot;params &quot;,variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:r,contains:m}]}]},{begin:/,/,relevance:0},{className:&quot;&quot;,begin:/\s/,end:/\s*/,skip:!0},{variants:[{begin:&quot;&lt;&gt;&quot;,end:&quot;&lt;/&gt;&quot;},{begin:n.begin,&quot;on:begin &quot;:n.isTrulyOpeningTag,end:n.end}],subLanguage:&quot;xml &quot;,contains:[{begin:n.begin,end:n.end,skip:!0,contains:[&quot;self &quot;]}]}],relevance:0},{className:&quot;function &quot;,beginKeywords:&quot;function &quot;,end:/[{;]/,excludeEnd:!0,keywords:r,contains:[&quot;self &quot;,e.inherit(e.TITLE_MODE,{begin:t}),h],illegal:/%/},{beginKeywords:&quot;while if switch catch for &quot;},{className:&quot;function &quot;,begin:e.UNDERSCORE_IDENT_RE+&quot;\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{&quot;,returnBegin:!0,contains:[h,e.inherit(e.TITLE_MODE,{begin:t})]},{variants:[{begin:&quot;\\.&quot;+t},{begin:&quot;\\$ &quot;+t}],relevance:0},{className:&quot;class &quot;,beginKeywords:&quot;class &quot;,end:/[{;=]/,excludeEnd:!0,illegal:/[:&quot;[\]]/,contains:[{beginKeywords:&quot;extends &quot;},e.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/,end:/[{;]/,excludeEnd:!0,contains:[e.inherit(e.TITLE_MODE,{begin:t}),&quot;self &quot;,h]},{begin:&quot;(get|set)\\s+(?=&quot;+t+&quot;\\()&quot;,end:/\{/,keywords:&quot;get set &quot;,contains:[e.inherit(e.TITLE_MODE,{begin:t}),{begin:/\(\)/},h]},{begin:/\$[(.]/}]}}),Rs.registerLanguage(&quot;handlebars &quot;,function(e){const t={&quot;builtin-name &quot;:[&quot;action &quot;,&quot;bindattr &quot;,&quot;collection &quot;,&quot;component &quot;,&quot;concat &quot;,&quot;debugger &quot;,&quot;each &quot;,&quot;each-in &quot;,&quot;get &quot;,&quot;hash &quot;,&quot;if &quot;,&quot;in &quot;,&quot;input &quot;,&quot;link-to &quot;,&quot;loc &quot;,&quot;log &quot;,&quot;lookup &quot;,&quot;mut &quot;,&quot;outlet &quot;,&quot;partial &quot;,&quot;query-params &quot;,&quot;render &quot;,&quot;template &quot;,&quot;textarea &quot;,&quot;unbound &quot;,&quot;unless &quot;,&quot;view &quot;,&quot;with &quot;,&quot;yield &quot;]},n=/\[\]|\[[^\]]+\]/,r=/[^\s!&quot;#%&amp;&#039;()*+,.\/;&lt;=&gt;@\[\\\]^`{|}~]+/,a=function(...e){return &quot;(&quot;+e.map(e=&gt;us(e)).join(&quot;|&quot;)+&quot;)&quot;}(/&quot;&quot;|&quot;[^&quot;]+&quot;/,/&#039;&#039;|&#039;[^&#039;]+&#039;/,n,r),o=fs(fs(&quot;(&quot;,/\.|\.\/|\//,&quot;)?&quot;),a,(d=fs(/(\.|\/)/,a),fs(&quot;(&quot;,d,&quot;)*&quot;))),i=fs(&quot;(&quot;,n,&quot;|&quot;,r,&quot;)(?==)&quot;),l={begin:o,lexemes:/[\w.\/]+/},s=e.inherit(l,{keywords:{literal:[&quot;true &quot;,&quot;false &quot;,&quot;undefined &quot;,&quot;null &quot;]}}),c={begin:/\(/,end:/\)/},u={contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:/as\s+\|/,keywords:{keyword:&quot;as &quot;},end:/\|/,contains:[{begin:/\w+/}]},{className:&quot;attr &quot;,begin:i,relevance:0,starts:{begin:/=/,end:/=/,starts:{contains:[e.NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,s,c]}}},s,c],returnEnd:!0},f=e.inherit(l,{className:&quot;name &quot;,keywords:t,starts:e.inherit(u,{end:/\)/})});var d;c.contains=[f];const p=e.inherit(l,{keywords:t,className:&quot;name &quot;,starts:e.inherit(u,{end:/\}\}/})}),m=e.inherit(l,{keywords:t,className:&quot;name &quot;}),h=e.inherit(l,{className:&quot;name &quot;,keywords:t,starts:e.inherit(u,{end:/\}\}/})});return{name:&quot;Handlebars &quot;,aliases:[&quot;hbs &quot;,&quot;html.hbs &quot;,&quot;html.handlebars &quot;,&quot;htmlbars &quot;],case_insensitive:!0,subLanguage:&quot;xml &quot;,contains:[{begin:/\\\{\{/,skip:!0},{begin:/\\\\(?=\{\{)/,skip:!0},e.COMMENT(/\{\{!--/,/--\}\}/),e.COMMENT(/\{\{!/,/\}\}/),{className:&quot;template-tag &quot;,begin:/\{\{\{\{(?!\/)/,end:/\}\}\}\}/,contains:[p],starts:{end:/\{\{\{\{\//,returnEnd:!0,subLanguage:&quot;xml &quot;}},{className:&quot;template-tag &quot;,begin:/\{\{\{\{\//,end:/\}\}\}\}/,contains:[m]},{className:&quot;template-tag &quot;,begin:/\{\{#/,end:/\}\}/,contains:[p]},{className:&quot;template-tag &quot;,begin:/\{\{(?=else\}\})/,end:/\}\}/,keywords:&quot;else &quot;},{className:&quot;template-tag &quot;,begin:/\{\{(?=else if)/,end:/\}\}/,keywords:&quot;else if &quot;},{className:&quot;template-tag &quot;,begin:/\{\{\//,end:/\}\}/,contains:[m]},{className:&quot;template-variable &quot;,begin:/\{\{\{/,end:/\}\}\}/,contains:[h]},{className:&quot;template-variable &quot;,begin:/\{\{/,end:/\}\}/,contains:[h]}]}});var Ds=function(e,t,n,r){for(var a=e.length,o=n+(r?1:-1);r?o--:++o &lt;a;)if(t(e[o],o,e))return o;return-1},Us=function(e){return e!=e},js=function(e,t){return!(null==e||!e.length)&amp;&amp;function(e,t,n){return t==t?function(e,t,n){for(var r=-1,a=e.length;++r &lt;a;)if(e[r]===t)return r;return-1}(e,t):Ds(e,Us,0)}(e,t)&gt;-1},Fs=an &amp;&amp;1/Gt(new an([,-0]))[1]==1/0?function(e){return new an(e)}:be,zs=function(e){return e &amp;&amp;e.length?function(e,t,n){var r=-1,a=js,o=e.length,i=!0,l=[],s=l;if(o &gt;=200){var c=Fs(e);if(c)return Gt(c);i=!1,a=Ht,s=new Ft}else s=l;e:for(;++r &lt;o;){var u=e[r],f=u;if(u=0!==u?u:0,i &amp;&amp;f==f){for(var d=s.length;d--;)if(s[d]===f)continue e;l.push(u)}else a(s,f,void 0)||(s!==l &amp;&amp;s.push(f),l.push(u))}return l}(e):[]};function Hs(e,t){switch(t.type){case &quot;EXPAND_FRAMES &quot;:return ws({},e,{expanded:zs([...e.expanded,...t.frames])});case &quot;EXPAND_ALL_VENDOR_FRAMES &quot;:return ws({},e,{expanded:Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number)});case &quot;COLLAPSE_ALL_VENDOR_FRAMES &quot;:{const t=Ps(e.frames).filter(e=&gt;!e.relative_file.startsWith(&quot;vendor/&quot;)&amp;&amp;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number);return ws({},e,{expanded:zs([...t])})}case &quot;SELECT_FRAME &quot;:{const n=Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number).includes(t.frame)?t.frame:e.selected;return ws({},e,{expanded:zs([...e.expanded,n]),selected:n})}case &quot;SELECT_NEXT_FRAME &quot;:{const t=Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number),n=t.indexOf(e.selected),r=n===t.length-1?t[0]:t[n+1];return ws({},e,{expanded:zs([...e.expanded,r]),selected:r})}case &quot;SELECT_PREVIOUS_FRAME &quot;:{const t=Ps(e.frames).filter(e=&gt;&quot;unknown &quot;!==e.relative_file).map(e=&gt;e.frame_number),n=t.indexOf(e.selected),r=0===n?t[t.length-1]:t[n-1];return ws({},e,{expanded:zs([...e.expanded,r]),selected:r})}default:return e}}const Bs={type:&quot;application &quot;,relative_file:&quot;&quot;,expanded:!0,frames:[]};function Vs({path:e,lineNumber:t=null}){const n=e.split(&quot;\\&quot;),r=String.fromCharCode(8201);return c.createElement(&quot;span &quot;,{className:&quot;inline-flex flex-wrap items-baseline &quot;},n.map((e,t)=&gt;c.createElement(c.Fragment,{key:t},c.createElement(&quot;span &quot;,{key:t},e),t!==n.length-1 &amp;&amp;c.createElement(&quot;span &quot;,null,r,&quot;\\&quot;,r))),t &amp;&amp;c.createElement(c.Fragment,null,r,c.createElement(&quot;span &quot;,{className:&quot;whitespace-nowrap &quot;},&quot;:&quot;,r,c.createElement(&quot;span &quot;,{className:&quot;font-mono text-xs &quot;},t))))}function Ws({path:e,lineNumber:t=null}){var n;const{application_path:r}=c.useContext(Ee),a=e.replace(r+&quot;/&quot;,&quot;&quot;).replace(/\/Users\/.*?\//,&quot;~/&quot;).split(&quot;/&quot;),o=(null==(n=a.pop())?void 0:n.split(&quot;.&quot;))||[],i=o.pop(),l=o.join(&quot;.&quot;),s=String.fromCharCode(8201);return c.createElement(&quot;span &quot;,{className:&quot;inline-flex flex-wrap items-baseline &quot;},a.map((e,t)=&gt;c.createElement(c.Fragment,{key:t},c.createElement(&quot;span &quot;,{key:t},e),c.createElement(&quot;span &quot;,null,s,&quot;/&quot;,s))),c.createElement(&quot;span &quot;,{className:&quot;font-semibold &quot;},l),c.createElement(&quot;span &quot;,null,&quot;.&quot;,i),t &amp;&amp;c.createElement(c.Fragment,null,s,c.createElement(&quot;span &quot;,{className:&quot;whitespace-nowrap &quot;},&quot;:&quot;,s,c.createElement(&quot;span &quot;,{className:&quot;font-mono text-xs &quot;},t))))}function Gs({frameGroup:e,onExpand:t,onSelect:n}){return &quot;vendor &quot;!==e.type||e.expanded?c.createElement(c.Fragment,null,e.frames.map((e,t)=&gt;c.createElement(c.Fragment,{key:t},c.createElement(&quot;li &quot;,{key:e.frame_number,className:`px-6 sm:px-10 py-4\n                            ${e.selected?&quot;bg-red-500 text-white &quot;:&quot;cursor-pointer border-b ~border-gray-200 hover:~bg-red-500/10 &quot;}\n                        `,onClick:()=&gt;n(e.frame_number)},c.createElement(&quot;div &quot;,{className:&quot;flex items-baseline &quot;},e.class?c.createElement(Vs,{path:e.class,lineNumber:e.line_number}):c.createElement(Ws,{path:e.file,lineNumber:e.line_number})),c.createElement(&quot;div &quot;,{className:&quot;font-semibold &quot;},e.method)),e.selected &amp;&amp;c.createElement(&quot;li &quot;,{className:&quot;z-10 mt-[-4px] sticky top-0 bg-red-500 h-[4px]&quot;})))):c.createElement(&quot;li &quot;,{className:&quot;group cursor-pointer px-6 sm:px-10 py-4 flex gap-2 lg:justify-start border-b ~border-gray-200 hover:~bg-gray-500/5 items-center &quot;,onClick:t},e.frames.length &gt;1?`${e.frames.length} vendor frames`:&quot;1 vendor frame &quot;,c.createElement(oi,{icon:li,className:&quot;~text-gray-500 group-hover:text-indigo-500 &quot;}))}function Ys({path:e,lineNumber:t,className:n}){const r=Fn({file:e,lineNumber:t});return c.createElement(&quot;a &quot;,{href:r||&quot;#&quot;,className:`hover:underline ${n}`},c.createElement(Ws,{path:e,lineNumber:t}))}parseInt;var $s=Math.max;const Xs=[&quot;children &quot;,&quot;className &quot;];function Ks(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,Xs);return c.createElement(&quot;button &quot;,ws({type:r.type||&quot;button &quot;,className:`group inline-flex gap-2 items-center h-6 px-2 rounded-sm ~bg-white shadow text-xs font-medium whitespace-nowrap\n            transform\n            transition-animation\n            hover:shadow-md\n            active:shadow-inner\n            active:translate-y-px\n                ${n}\n            `},r),t)}function qs({openFrameIndex:e}){const{frames:t}=c.useContext(Ee),n=c.useMemo(()=&gt;{let n=1;const r=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var a=0;return a &lt;0 &amp;&amp;(a=$s(r+a,0)),Ds(e,jn(e=&gt;&quot;application &quot;===Ms(e)),a)}(t);return-1!==r &amp;&amp;(n=t.length-r),e &amp;&amp;(n=t.length-e),Hs({frames:t,expanded:[],selected:n},{type:&quot;COLLAPSE_ALL_VENDOR_FRAMES &quot;})},[t]),[r,a]=c.useReducer(Hs,n),o=c.useMemo(()=&gt;function(e){return Ps(e.frames).filter(e=&gt;&quot;vendor &quot;===Ms(e)).every(t=&gt;e.expanded.includes(t.frame_number))}(r),[r]),i=c.useMemo(()=&gt;function({frames:e,selected:t,expanded:n}){return e.reduce((r,a,o)=&gt;{const i={current:a,previous:r[r.length-1]||Bs,isFirstFrame:0===o,frameNumber:e.length-o,expanded:n,selected:t};return i.expanded.includes(i.frameNumber)?r.concat(function(e){return e.current.relative_file!==e.previous.relative_file?[{type:Ms(e.current),relative_file:e.current.relative_file,expanded:!0,frames:[ws({},e.current,{frame_number:e.frameNumber,selected:e.selected===e.frameNumber})]}]:(e.previous.frames.push(ws({},e.current,{frame_number:e.frameNumber,selected:e.selected===e.frameNumber})),[])}(i)):r.concat(function(e){const t=Ms(e.current);return e.previous.expanded||t!==e.previous.type?[{type:t,relative_file:e.current.relative_file,expanded:!1,frames:[ws({},e.current,{frame_number:e.frameNumber,selected:e.selected===e.frameNumber})]}]:(e.previous.frames.push(ws({},e.current,{selected:!1,frame_number:e.frameNumber})),[])}(i))},[])}(r),[r]),l=c.useMemo(()=&gt;function(e){const t=Ps(e.frames);return t.find(t=&gt;t.frame_number===e.selected)||t[0]||null}(r),[r]);return Ls(&quot;j &quot;,()=&gt;{a({type:&quot;SELECT_NEXT_FRAME &quot;})}),Ls(&quot;k &quot;,()=&gt;{a({type:&quot;SELECT_PREVIOUS_FRAME &quot;})}),c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 lg:grid-cols-[33.33%,66.66%] lg:grid-rows-[57rem] items-stretch bg-white dark:shadow-none dark:bg-gray-800/50 dark:bg-gradient-to-bl from-gray-700/50 via-transparent dark:ring-1 dark:ring-inset dark:ring-white/5 rounded-lg shadow-2xl shadow-gray-500/20 overflow-hidden &quot;},c.createElement(&quot;aside &quot;,{className:&quot;z-30 flex flex-col border-r ~border-gray-200 &quot;},c.createElement(&quot;div &quot;,{className:&quot;max-h-[33vh] lg:max-h-[none] lg:absolute inset-0 flex flex-col overflow-hidden ~bg-white &quot;},c.createElement(&quot;header &quot;,{className:&quot;flex-none px-6 sm:px-10 h-16 flex items-center justify-start ~bg-white border-b ~border-gray-200 &quot;},c.createElement(Ks,{onClick:()=&gt;a({type:o?&quot;COLLAPSE_ALL_VENDOR_FRAMES &quot;:&quot;EXPAND_ALL_VENDOR_FRAMES &quot;})},c.createElement(&quot;div &quot;,{className:&quot;flex &quot;+(o?&quot;flex-col-reverse &quot;:&quot;flex-col &quot;)},c.createElement(oi,{icon:si,className:&quot;-my-px text-[8px] ~text-gray-500 group-hover:text-indigo-500 &quot;}),c.createElement(oi,{icon:li,className:&quot;-my-px text-[8px] ~text-gray-500 group-hover:text-indigo-500 &quot;})),o?&quot;Collapse vendor frames &quot;:&quot;Expand vendor frames &quot;)),c.createElement(&quot;div &quot;,{id:&quot;frames &quot;,className:&quot;flex-grow overflow-auto scrollbar-hidden-y mask-fade-frames &quot;},c.createElement(&quot;ol &quot;,{className:&quot;text-sm pb-16 &quot;},i.map((e,t)=&gt;c.createElement(Gs,{key:t,frameGroup:e,onExpand:()=&gt;a({type:&quot;EXPAND_FRAMES &quot;,frames:e.frames.map(e=&gt;e.frame_number)}),onSelect:e=&gt;{a({type:&quot;SELECT_FRAME &quot;,frame:e})}})))))),c.createElement(&quot;section &quot;,{className:&quot;flex flex-col border-t lg:border-t-0 ~border-gray-200 &quot;},l &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;header &quot;,{className:&quot;~text-gray-500 flex-none z-30 h-16 px-6 sm:px-10 flex items-center justify-end &quot;},c.createElement(Ys,{path:l.file,lineNumber:l.line_number,className:&quot;flex items-center text-sm &quot;})),c.createElement(_s,{frame:l}))))}function Js({message:e,className:t=&quot;&quot;}){const[n,r]=c.useState(!1);return c.createElement(&quot;div &quot;,{className:`\n                my-4 font-semibold leading-snug text-xl\n                ${t}\n            `,onClick:function(){var e;n &amp;&amp;null!=(e=window.getSelection())&amp;&amp;e.toString().length||r(!n)}},c.createElement(&quot;div &quot;,{className:n?&quot;line-clamp-none &quot;:&quot;line-clamp-2 &quot;},e))}var Qs=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0,t.default={WORD:&quot;word &quot;,STRING:&quot;string &quot;,RESERVED:&quot;reserved &quot;,RESERVED_TOP_LEVEL:&quot;reserved-top-level &quot;,RESERVED_TOP_LEVEL_NO_INDENT:&quot;reserved-top-level-no-indent &quot;,RESERVED_NEWLINE:&quot;reserved-newline &quot;,OPERATOR:&quot;operator &quot;,OPEN_PAREN:&quot;open-paren &quot;,CLOSE_PAREN:&quot;close-paren &quot;,LINE_COMMENT:&quot;line-comment &quot;,BLOCK_COMMENT:&quot;block-comment &quot;,NUMBER:&quot;number &quot;,PLACEHOLDER:&quot;placeholder &quot;},e.exports=t.default}),Zs=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.sortByLengthDesc=t.escapeRegExp=t.isEmpty=t.last=t.trimSpacesEnd=void 0,t.trimSpacesEnd=function(e){return e.replace(/[\t ]+$/,&quot;&quot;)},t.last=function(e){return e[e.length-1]},t.isEmpty=function(e){return!Array.isArray(e)||0===e.length},t.escapeRegExp=function(e){return e.replace(/[\$\(-\+\.\?\[-\^\{-\}]/g,&quot;\\$ &amp;&quot;)},t.sortByLengthDesc=function(e){return e.sort(function(e,t){return t.length-e.length||e.localeCompare(t)})}}),ec=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var n=&quot;top-level &quot;;t.default=/*#__PURE__*/function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.indent=t||&quot;&quot;,this.indentTypes=[]}var t;return(t=[{key:&quot;getIndent &quot;,value:function(){return this.indent.repeat(this.indentTypes.length)}},{key:&quot;increaseTopLevel &quot;,value:function(){this.indentTypes.push(n)}},{key:&quot;increaseBlockLevel &quot;,value:function(){this.indentTypes.push(&quot;block-level &quot;)}},{key:&quot;decreaseTopLevel &quot;,value:function(){this.indentTypes.length &gt;0 &amp;&amp;(0,Zs.last)(this.indentTypes)===n &amp;&amp;this.indentTypes.pop()}},{key:&quot;decreaseBlockLevel &quot;,value:function(){for(;this.indentTypes.length &gt;0 &amp;&amp;this.indentTypes.pop()===n;);}},{key:&quot;resetIndentation &quot;,value:function(){this.indentTypes=[]}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),tc=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var n,r=(n=Qs)&amp;&amp;n.__esModule?n:{default:n};t.default=/*#__PURE__*/function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.level=0}var t;return(t=[{key:&quot;beginIfPossible &quot;,value:function(e,t){0===this.level &amp;&amp;this.isInlineBlock(e,t)?this.level=1:this.level &gt;0?this.level++:this.level=0}},{key:&quot;end &quot;,value:function(){this.level--}},{key:&quot;isActive &quot;,value:function(){return this.level &gt;0}},{key:&quot;isInlineBlock &quot;,value:function(e,t){for(var n=0,a=0,o=t;o &lt;e.length;o++){var i=e[o];if((n+=i.value.length)&gt;50)return!1;if(i.type===r.default.OPEN_PAREN)a++;else if(i.type===r.default.CLOSE_PAREN &amp;&amp;0==--a)return!0;if(this.isForbiddenToken(i))return!1}return!1}},{key:&quot;isForbiddenToken &quot;,value:function(e){var t=e.type;return t===r.default.RESERVED_TOP_LEVEL||t===r.default.RESERVED_NEWLINE||t===r.default.COMMENT||t===r.default.BLOCK_COMMENT||&quot;;&quot;===e.value}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),nc=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0,t.default=/*#__PURE__*/function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.params=t,this.index=0}var t;return(t=[{key:&quot;get &quot;,value:function(e){var t=e.key,n=e.value;return this.params?t?this.params[t]:this.params[this.index++]:n}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),rc=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.isEnd=t.isWindow=t.isBy=t.isSet=t.isLimit=t.isBetween=t.isAnd=void 0;var n,r=(n=Qs)&amp;&amp;n.__esModule?n:{default:n},a=function(e,t){return function(n){return(null==n?void 0:n.type)===e &amp;&amp;t.test(null==n?void 0:n.value)}},o=a(r.default.RESERVED_NEWLINE,/^AND$/i);t.isAnd=o;var i=a(r.default.RESERVED,/^BETWEEN$/i);t.isBetween=i;var l=a(r.default.RESERVED_TOP_LEVEL,/^LIMIT$/i);t.isLimit=l;var s=a(r.default.RESERVED_TOP_LEVEL,/^[S\u017F]ET$/i);t.isSet=s;var c=a(r.default.RESERVED,/^BY$/i);t.isBy=c;var u=a(r.default.RESERVED_TOP_LEVEL,/^WINDOW$/i);t.isWindow=u;var f=a(r.default.CLOSE_PAREN,/^END$/i);t.isEnd=f}),ac=we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var n=i(Qs),r=i(ec),a=i(tc),o=i(nc);function i(e){return e &amp;&amp;e.__esModule?e:{default:e}}function l(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}t.default=/*#__PURE__*/function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.cfg=t,this.indentation=new r.default(this.cfg.indent),this.inlineBlock=new a.default,this.params=new o.default(this.cfg.params),this.previousReservedToken={},this.tokens=[],this.index=0}var t;return(t=[{key:&quot;tokenizer &quot;,value:function(){throw new Error(&quot;tokenizer() not implemented by subclass &quot;)}},{key:&quot;tokenOverride &quot;,value:function(e){return e}},{key:&quot;format &quot;,value:function(e){return this.tokens=this.tokenizer().tokenize(e),this.getFormattedQueryFromTokens().trim()}},{key:&quot;getFormattedQueryFromTokens &quot;,value:function(){var e=this,t=&quot;&quot;;return this.tokens.forEach(function(r,a){e.index=a,(r=e.tokenOverride(r)).type===n.default.LINE_COMMENT?t=e.formatLineComment(r,t):r.type===n.default.BLOCK_COMMENT?t=e.formatBlockComment(r,t):r.type===n.default.RESERVED_TOP_LEVEL?(t=e.formatTopLevelReservedWord(r,t),e.previousReservedToken=r):r.type===n.default.RESERVED_TOP_LEVEL_NO_INDENT?(t=e.formatTopLevelReservedWordNoIndent(r,t),e.previousReservedToken=r):r.type===n.default.RESERVED_NEWLINE?(t=e.formatNewlineReservedWord(r,t),e.previousReservedToken=r):r.type===n.default.RESERVED?(t=e.formatWithSpaces(r,t),e.previousReservedToken=r):t=r.type===n.default.OPEN_PAREN?e.formatOpeningParentheses(r,t):r.type===n.default.CLOSE_PAREN?e.formatClosingParentheses(r,t):r.type===n.default.PLACEHOLDER?e.formatPlaceholder(r,t):&quot;,&quot;===r.value?e.formatComma(r,t):&quot;:&quot;===r.value?e.formatWithSpaceAfter(r,t):&quot;.&quot;===r.value?e.formatWithoutSpaces(r,t):&quot;;&quot;===r.value?e.formatQuerySeparator(r,t):e.formatWithSpaces(r,t)}),t}},{key:&quot;formatLineComment &quot;,value:function(e,t){return this.addNewline(t+this.show(e))}},{key:&quot;formatBlockComment &quot;,value:function(e,t){return this.addNewline(this.addNewline(t)+this.indentComment(e.value))}},{key:&quot;indentComment &quot;,value:function(e){return e.replace(/\n[\t ]*/g,&quot;\n &quot;+this.indentation.getIndent()+&quot;&quot;)}},{key:&quot;formatTopLevelReservedWordNoIndent &quot;,value:function(e,t){return this.indentation.decreaseTopLevel(),t=this.addNewline(t)+this.equalizeWhitespace(this.show(e)),this.addNewline(t)}},{key:&quot;formatTopLevelReservedWord &quot;,value:function(e,t){return this.indentation.decreaseTopLevel(),t=this.addNewline(t),this.indentation.increaseTopLevel(),t+=this.equalizeWhitespace(this.show(e)),this.addNewline(t)}},{key:&quot;formatNewlineReservedWord &quot;,value:function(e,t){return(0,rc.isAnd)(e)&amp;&amp;(0,rc.isBetween)(this.tokenLookBehind(2))?this.formatWithSpaces(e,t):this.addNewline(t)+this.equalizeWhitespace(this.show(e))+&quot;&quot;}},{key:&quot;equalizeWhitespace &quot;,value:function(e){return e.replace(/[\t-\r \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]+/g,&quot;&quot;)}},{key:&quot;formatOpeningParentheses &quot;,value:function(e,t){var r,a,o=(l(r={},n.default.OPEN_PAREN,!0),l(r,n.default.LINE_COMMENT,!0),l(r,n.default.OPERATOR,!0),r);return 0!==e.whitespaceBefore.length||o[null===(a=this.tokenLookBehind())||void 0===a?void 0:a.type]||(t=(0,Zs.trimSpacesEnd)(t)),t+=this.show(e),this.inlineBlock.beginIfPossible(this.tokens,this.index),this.inlineBlock.isActive()||(this.indentation.increaseBlockLevel(),t=this.addNewline(t)),t}},{key:&quot;formatClosingParentheses &quot;,value:function(e,t){return this.inlineBlock.isActive()?(this.inlineBlock.end(),this.formatWithSpaceAfter(e,t)):(this.indentation.decreaseBlockLevel(),this.formatWithSpaces(e,this.addNewline(t)))}},{key:&quot;formatPlaceholder &quot;,value:function(e,t){return t+this.params.get(e)+&quot;&quot;}},{key:&quot;formatComma &quot;,value:function(e,t){return t=(0,Zs.trimSpacesEnd)(t)+this.show(e)+&quot;&quot;,this.inlineBlock.isActive()||(0,rc.isLimit)(this.previousReservedToken)?t:this.addNewline(t)}},{key:&quot;formatWithSpaceAfter &quot;,value:function(e,t){return(0,Zs.trimSpacesEnd)(t)+this.show(e)+&quot;&quot;}},{key:&quot;formatWithoutSpaces &quot;,value:function(e,t){return(0,Zs.trimSpacesEnd)(t)+this.show(e)}},{key:&quot;formatWithSpaces &quot;,value:function(e,t){return t+this.show(e)+&quot;&quot;}},{key:&quot;formatQuerySeparator &quot;,value:function(e,t){return this.indentation.resetIndentation(),(0,Zs.trimSpacesEnd)(t)+this.show(e)+&quot;\n &quot;.repeat(this.cfg.linesBetweenQueries||1)}},{key:&quot;show &quot;,value:function(e){var t=e.type,r=e.value;return!this.cfg.uppercase||t!==n.default.RESERVED &amp;&amp;t!==n.default.RESERVED_TOP_LEVEL &amp;&amp;t!==n.default.RESERVED_TOP_LEVEL_NO_INDENT &amp;&amp;t!==n.default.RESERVED_NEWLINE &amp;&amp;t!==n.default.OPEN_PAREN &amp;&amp;t!==n.default.CLOSE_PAREN?r:r.toUpperCase()}},{key:&quot;addNewline &quot;,value:function(e){return(e=(0,Zs.trimSpacesEnd)(e)).endsWith(&quot;\n &quot;)||(e+=&quot;\n &quot;),e+this.indentation.getIndent()}},{key:&quot;tokenLookBehind &quot;,value:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:1;return this.tokens[this.index-e]}},{key:&quot;tokenLookAhead &quot;,value:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:1;return this.tokens[this.index+e]}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default});function oc(e){var t={&quot;``&quot;:&quot;((`[^`]*($|`))+)&quot;,&quot;{}&quot;:&quot;((\\{[^\\}]*($|\\}))+)&quot;,&quot;[]&quot;:&quot;((\\[[^\\]]*($|\\]))(\\][^\\]]*($|\\]))*)&quot;,&#039;&quot;&quot;&#039;:&#039;((&quot;[^&quot;\\\\]*(?:\\\\.[^&quot;\\\\]*)*(&quot;|$))+)&#039;,&quot;&#039;&#039;&quot;:&quot;((&#039;[^&#039;\\\\]*(?:\\\\.[^&#039;\\\\]*)*(&#039;|$))+)&quot;,&quot;N &#039;&#039;&quot;:&quot;((N &#039;[^&#039;\\\\]*(?:\\\\.[^&#039;\\\\]*)*(&#039;|$))+)&quot;,&quot;U &amp;&#039;&#039;&quot;:&quot;((U &amp;&#039;[^&#039;\\\\]*(?:\\\\.[^&#039;\\\\]*)*(&#039;|$))+)&quot;,&#039;U &amp;&quot;&quot;&#039;:&#039;((U &amp;&quot;[^&quot;\\\\]*(?:\\\\.[^&quot;\\\\]*)*(&quot;|$))+)&#039;,$$:&quot;((?&lt;tag &gt;\\$\\w*\\$)[\\s\\S]*?(?:\\k &lt;tag &gt;|$))&quot;};return e.map(function(e){return t[e]}).join(&quot;|&quot;)}function ic(e){return 1===e.length?(0,Zs.escapeRegExp)(e):&quot;\\b &quot;+e+&quot;\\b &quot;}var lc=/*#__PURE__*/Object.defineProperty({createOperatorRegex:function(e){return new RegExp(&quot;^(&quot;.concat((0,Zs.sortByLengthDesc)(e).map(Zs.escapeRegExp).join(&quot;|&quot;),&quot;|.)&quot;),&quot;u &quot;)},createLineCommentRegex:function(e){return new RegExp(&quot;^((?:&quot;.concat(e.map(function(e){return(0,Zs.escapeRegExp)(e)}).join(&quot;|&quot;),&quot;).*?)(?:\r\n|\r|\n|$)&quot;),&quot;u &quot;)},createReservedWordRegex:function(e){if(0===e.length)return new RegExp(&quot;^\b$ &quot;,&quot;u &quot;);var t=(0,Zs.sortByLengthDesc)(e).join(&quot;|&quot;).replace(/ /g,&quot;\\s+&quot;);return new RegExp(&quot;^(&quot;.concat(t,&quot;)\\b &quot;),&quot;iu &quot;)},createWordRegex:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:[];return new RegExp(&quot;^([\\p{Alphabetic}\\p{Mark}\\p{Decimal_Number}\\p{Connector_Punctuation}\\p{Join_Control}&quot;.concat(e.join(&quot;&quot;),&quot;]+)&quot;),&quot;u &quot;)},createStringRegex:function(e){return new RegExp(&quot;^(&quot;+oc(e)+&quot;)&quot;,&quot;u &quot;)},createStringPattern:oc,createParenRegex:function(e){return new RegExp(&quot;^(&quot;+e.map(ic).join(&quot;|&quot;)+&quot;)&quot;,&quot;iu &quot;)},createPlaceholderRegex:function(e,t){if((0,Zs.isEmpty)(e))return!1;var n=e.map(Zs.escapeRegExp).join(&quot;|&quot;);return new RegExp(&quot;^((?:&quot;.concat(n,&quot;)(?:&quot;).concat(t,&quot;))&quot;),&quot;u &quot;)}},&quot;__esModule &quot;,{value:!0}),sc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r,a=(r=Qs)&amp;&amp;r.__esModule?r:{default:r},o=function(e){if(e &amp;&amp;e.__esModule)return e;if(null===e||&quot;object &quot;!==n(e)&amp;&amp;&quot;function &quot;!=typeof e)return{default:e};var t=i();if(t &amp;&amp;t.has(e))return t.get(e);var r={},a=Object.defineProperty &amp;&amp;Object.getOwnPropertyDescriptor;for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){var l=a?Object.getOwnPropertyDescriptor(e,o):null;l &amp;&amp;(l.get||l.set)?Object.defineProperty(r,o,l):r[o]=e[o]}return r.default=e,t &amp;&amp;t.set(e,r),r}(lc);function i(){if(&quot;function &quot;!=typeof WeakMap)return null;var e=new WeakMap;return i=function(){return e},e}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function s(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?l(Object(n),!0).forEach(function(t){c(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function c(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function u(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}t.default=/*#__PURE__*/function(){function e(t){var n;!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.WHITESPACE_REGEX=/^([\t-\r \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]+)/,this.NUMBER_REGEX=/^((\x2D[\t-\r \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000\uFEFF]*)?[0-9]+(\.[0-9]+)?([Ee]\x2D?[0-9]+(\.[0-9]+)?)?|0x[0-9A-Fa-f]+|0b[01]+)\b/,this.OPERATOR_REGEX=o.createOperatorRegex([&quot;&lt;&gt;&quot;,&quot;&lt;=&quot;,&quot;&gt;=&quot;].concat(function(e){if(Array.isArray(e))return u(e)}(n=t.operators||[])||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;Symbol.iterator in Object(e))return Array.from(e)}(n)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?u(e,t):void 0}}(n)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}())),this.BLOCK_COMMENT_REGEX=/^(\/\*(?:(?![])[\s\S])*?(?:\*\/|$))/,this.LINE_COMMENT_REGEX=o.createLineCommentRegex(t.lineCommentTypes),this.RESERVED_TOP_LEVEL_REGEX=o.createReservedWordRegex(t.reservedTopLevelWords),this.RESERVED_TOP_LEVEL_NO_INDENT_REGEX=o.createReservedWordRegex(t.reservedTopLevelWordsNoIndent),this.RESERVED_NEWLINE_REGEX=o.createReservedWordRegex(t.reservedNewlineWords),this.RESERVED_PLAIN_REGEX=o.createReservedWordRegex(t.reservedWords),this.WORD_REGEX=o.createWordRegex(t.specialWordChars),this.STRING_REGEX=o.createStringRegex(t.stringTypes),this.OPEN_PAREN_REGEX=o.createParenRegex(t.openParens),this.CLOSE_PAREN_REGEX=o.createParenRegex(t.closeParens),this.INDEXED_PLACEHOLDER_REGEX=o.createPlaceholderRegex(t.indexedPlaceholderTypes,&quot;[0-9]*&quot;),this.IDENT_NAMED_PLACEHOLDER_REGEX=o.createPlaceholderRegex(t.namedPlaceholderTypes,&quot;[a-zA-Z0-9._$]+&quot;),this.STRING_NAMED_PLACEHOLDER_REGEX=o.createPlaceholderRegex(t.namedPlaceholderTypes,o.createStringPattern(t.stringTypes))}var t;return(t=[{key:&quot;tokenize &quot;,value:function(e){for(var t,n=[];e.length;){var r=this.getWhitespace(e);(e=e.substring(r.length)).length &amp;&amp;(t=this.getNextToken(e,t),e=e.substring(t.value.length),n.push(s(s({},t),{},{whitespaceBefore:r})))}return n}},{key:&quot;getWhitespace &quot;,value:function(e){var t=e.match(this.WHITESPACE_REGEX);return t?t[1]:&quot;&quot;}},{key:&quot;getNextToken &quot;,value:function(e,t){return this.getCommentToken(e)||this.getStringToken(e)||this.getOpenParenToken(e)||this.getCloseParenToken(e)||this.getPlaceholderToken(e)||this.getNumberToken(e)||this.getReservedWordToken(e,t)||this.getWordToken(e)||this.getOperatorToken(e)}},{key:&quot;getCommentToken &quot;,value:function(e){return this.getLineCommentToken(e)||this.getBlockCommentToken(e)}},{key:&quot;getLineCommentToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.LINE_COMMENT,regex:this.LINE_COMMENT_REGEX})}},{key:&quot;getBlockCommentToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.BLOCK_COMMENT,regex:this.BLOCK_COMMENT_REGEX})}},{key:&quot;getStringToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.STRING,regex:this.STRING_REGEX})}},{key:&quot;getOpenParenToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.OPEN_PAREN,regex:this.OPEN_PAREN_REGEX})}},{key:&quot;getCloseParenToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.CLOSE_PAREN,regex:this.CLOSE_PAREN_REGEX})}},{key:&quot;getPlaceholderToken &quot;,value:function(e){return this.getIdentNamedPlaceholderToken(e)||this.getStringNamedPlaceholderToken(e)||this.getIndexedPlaceholderToken(e)}},{key:&quot;getIdentNamedPlaceholderToken &quot;,value:function(e){return this.getPlaceholderTokenWithKey({input:e,regex:this.IDENT_NAMED_PLACEHOLDER_REGEX,parseKey:function(e){return e.slice(1)}})}},{key:&quot;getStringNamedPlaceholderToken &quot;,value:function(e){var t=this;return this.getPlaceholderTokenWithKey({input:e,regex:this.STRING_NAMED_PLACEHOLDER_REGEX,parseKey:function(e){return t.getEscapedPlaceholderKey({key:e.slice(2,-1),quoteChar:e.slice(-1)})}})}},{key:&quot;getIndexedPlaceholderToken &quot;,value:function(e){return this.getPlaceholderTokenWithKey({input:e,regex:this.INDEXED_PLACEHOLDER_REGEX,parseKey:function(e){return e.slice(1)}})}},{key:&quot;getPlaceholderTokenWithKey &quot;,value:function(e){var t=e.parseKey,n=this.getTokenOnFirstMatch({input:e.input,regex:e.regex,type:a.default.PLACEHOLDER});return n &amp;&amp;(n.key=t(n.value)),n}},{key:&quot;getEscapedPlaceholderKey &quot;,value:function(e){var t=e.quoteChar;return e.key.replace(new RegExp((0,Zs.escapeRegExp)(&quot;\\&quot;+t),&quot;gu &quot;),t)}},{key:&quot;getNumberToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.NUMBER,regex:this.NUMBER_REGEX})}},{key:&quot;getOperatorToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.OPERATOR,regex:this.OPERATOR_REGEX})}},{key:&quot;getReservedWordToken &quot;,value:function(e,t){if(!t||!t.value||&quot;.&quot;!==t.value)return this.getTopLevelReservedToken(e)||this.getNewlineReservedToken(e)||this.getTopLevelReservedTokenNoIndent(e)||this.getPlainReservedToken(e)}},{key:&quot;getTopLevelReservedToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED_TOP_LEVEL,regex:this.RESERVED_TOP_LEVEL_REGEX})}},{key:&quot;getNewlineReservedToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED_NEWLINE,regex:this.RESERVED_NEWLINE_REGEX})}},{key:&quot;getTopLevelReservedTokenNoIndent &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED_TOP_LEVEL_NO_INDENT,regex:this.RESERVED_TOP_LEVEL_NO_INDENT_REGEX})}},{key:&quot;getPlainReservedToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.RESERVED,regex:this.RESERVED_PLAIN_REGEX})}},{key:&quot;getWordToken &quot;,value:function(e){return this.getTokenOnFirstMatch({input:e,type:a.default.WORD,regex:this.WORD_REGEX})}},{key:&quot;getTokenOnFirstMatch &quot;,value:function(e){var t=e.type,n=e.input.match(e.regex);return n?{type:t,value:n[1]}:void 0}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(e.prototype,t),e}(),e.exports=t.default}),cc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ABS &quot;,&quot;ACTIVATE &quot;,&quot;ALIAS &quot;,&quot;ALL &quot;,&quot;ALLOCATE &quot;,&quot;ALLOW &quot;,&quot;ALTER &quot;,&quot;ANY &quot;,&quot;ARE &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASENSITIVE &quot;,&quot;ASSOCIATE &quot;,&quot;ASUTIME &quot;,&quot;ASYMMETRIC &quot;,&quot;AT &quot;,&quot;ATOMIC &quot;,&quot;ATTRIBUTES &quot;,&quot;AUDIT &quot;,&quot;AUTHORIZATION &quot;,&quot;AUX &quot;,&quot;AUXILIARY &quot;,&quot;AVG &quot;,&quot;BEFORE &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BUFFERPOOL &quot;,&quot;BY &quot;,&quot;CACHE &quot;,&quot;CALL &quot;,&quot;CALLED &quot;,&quot;CAPTURE &quot;,&quot;CARDINALITY &quot;,&quot;CASCADED &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CCSID &quot;,&quot;CEIL &quot;,&quot;CEILING &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHARACTER_LENGTH &quot;,&quot;CHAR_LENGTH &quot;,&quot;CHECK &quot;,&quot;CLOB &quot;,&quot;CLONE &quot;,&quot;CLOSE &quot;,&quot;CLUSTER &quot;,&quot;COALESCE &quot;,&quot;COLLATE &quot;,&quot;COLLECT &quot;,&quot;COLLECTION &quot;,&quot;COLLID &quot;,&quot;COLUMN &quot;,&quot;COMMENT &quot;,&quot;COMMIT &quot;,&quot;CONCAT &quot;,&quot;CONDITION &quot;,&quot;CONNECT &quot;,&quot;CONNECTION &quot;,&quot;CONSTRAINT &quot;,&quot;CONTAINS &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;CORR &quot;,&quot;CORRESPONDING &quot;,&quot;COUNT &quot;,&quot;COUNT_BIG &quot;,&quot;COVAR_POP &quot;,&quot;COVAR_SAMP &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CUBE &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_DEFAULT_TRANSFORM_GROUP &quot;,&quot;CURRENT_LC_CTYPE &quot;,&quot;CURRENT_PATH &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_SCHEMA &quot;,&quot;CURRENT_SERVER &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_TIMEZONE &quot;,&quot;CURRENT_TRANSFORM_GROUP_FOR_TYPE &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;CYCLE &quot;,&quot;DATA &quot;,&quot;DATABASE &quot;,&quot;DATAPARTITIONNAME &quot;,&quot;DATAPARTITIONNUM &quot;,&quot;DATE &quot;,&quot;DAY &quot;,&quot;DAYS &quot;,&quot;DB2GENERAL &quot;,&quot;DB2GENRL &quot;,&quot;DB2SQL &quot;,&quot;DBINFO &quot;,&quot;DBPARTITIONNAME &quot;,&quot;DBPARTITIONNUM &quot;,&quot;DEALLOCATE &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DEFAULTS &quot;,&quot;DEFINITION &quot;,&quot;DELETE &quot;,&quot;DENSERANK &quot;,&quot;DENSE_RANK &quot;,&quot;DEREF &quot;,&quot;DESCRIBE &quot;,&quot;DESCRIPTOR &quot;,&quot;DETERMINISTIC &quot;,&quot;DIAGNOSTICS &quot;,&quot;DISABLE &quot;,&quot;DISALLOW &quot;,&quot;DISCONNECT &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DOCUMENT &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DSSIZE &quot;,&quot;DYNAMIC &quot;,&quot;EACH &quot;,&quot;EDITPROC &quot;,&quot;ELEMENT &quot;,&quot;ELSE &quot;,&quot;ELSEIF &quot;,&quot;ENABLE &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTION &quot;,&quot;END &quot;,&quot;END-EXEC &quot;,&quot;ENDING &quot;,&quot;ERASE &quot;,&quot;ESCAPE &quot;,&quot;EVERY &quot;,&quot;EXCEPTION &quot;,&quot;EXCLUDING &quot;,&quot;EXCLUSIVE &quot;,&quot;EXEC &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXP &quot;,&quot;EXPLAIN &quot;,&quot;EXTENDED &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FENCED &quot;,&quot;FETCH &quot;,&quot;FIELDPROC &quot;,&quot;FILE &quot;,&quot;FILTER &quot;,&quot;FINAL &quot;,&quot;FIRST &quot;,&quot;FLOAT &quot;,&quot;FLOOR &quot;,&quot;FOR &quot;,&quot;FOREIGN &quot;,&quot;FREE &quot;,&quot;FULL &quot;,&quot;FUNCTION &quot;,&quot;FUSION &quot;,&quot;GENERAL &quot;,&quot;GENERATED &quot;,&quot;GET &quot;,&quot;GLOBAL &quot;,&quot;GOTO &quot;,&quot;GRANT &quot;,&quot;GRAPHIC &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;HANDLER &quot;,&quot;HASH &quot;,&quot;HASHED_VALUE &quot;,&quot;HINT &quot;,&quot;HOLD &quot;,&quot;HOUR &quot;,&quot;HOURS &quot;,&quot;IDENTITY &quot;,&quot;IF &quot;,&quot;IMMEDIATE &quot;,&quot;IN &quot;,&quot;INCLUDING &quot;,&quot;INCLUSIVE &quot;,&quot;INCREMENT &quot;,&quot;INDEX &quot;,&quot;INDICATOR &quot;,&quot;INDICATORS &quot;,&quot;INF &quot;,&quot;INFINITY &quot;,&quot;INHERIT &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTEGRITY &quot;,&quot;INTERSECTION &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;ISOBID &quot;,&quot;ISOLATION &quot;,&quot;ITERATE &quot;,&quot;JAR &quot;,&quot;JAVA &quot;,&quot;KEEP &quot;,&quot;KEY &quot;,&quot;LABEL &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LATERAL &quot;,&quot;LC_CTYPE &quot;,&quot;LEADING &quot;,&quot;LEAVE &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LINKTYPE &quot;,&quot;LN &quot;,&quot;LOCAL &quot;,&quot;LOCALDATE &quot;,&quot;LOCALE &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCATOR &quot;,&quot;LOCATORS &quot;,&quot;LOCK &quot;,&quot;LOCKMAX &quot;,&quot;LOCKSIZE &quot;,&quot;LONG &quot;,&quot;LOOP &quot;,&quot;LOWER &quot;,&quot;MAINTAINED &quot;,&quot;MATCH &quot;,&quot;MATERIALIZED &quot;,&quot;MAX &quot;,&quot;MAXVALUE &quot;,&quot;MEMBER &quot;,&quot;MERGE &quot;,&quot;METHOD &quot;,&quot;MICROSECOND &quot;,&quot;MICROSECONDS &quot;,&quot;MIN &quot;,&quot;MINUTE &quot;,&quot;MINUTES &quot;,&quot;MINVALUE &quot;,&quot;MOD &quot;,&quot;MODE &quot;,&quot;MODIFIES &quot;,&quot;MODULE &quot;,&quot;MONTH &quot;,&quot;MONTHS &quot;,&quot;MULTISET &quot;,&quot;NAN &quot;,&quot;NATIONAL &quot;,&quot;NATURAL &quot;,&quot;NCHAR &quot;,&quot;NCLOB &quot;,&quot;NEW &quot;,&quot;NEW_TABLE &quot;,&quot;NEXTVAL &quot;,&quot;NO &quot;,&quot;NOCACHE &quot;,&quot;NOCYCLE &quot;,&quot;NODENAME &quot;,&quot;NODENUMBER &quot;,&quot;NOMAXVALUE &quot;,&quot;NOMINVALUE &quot;,&quot;NONE &quot;,&quot;NOORDER &quot;,&quot;NORMALIZE &quot;,&quot;NORMALIZED &quot;,&quot;NOT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NULLS &quot;,&quot;NUMERIC &quot;,&quot;NUMPARTS &quot;,&quot;OBID &quot;,&quot;OCTET_LENGTH &quot;,&quot;OF &quot;,&quot;OFFSET &quot;,&quot;OLD &quot;,&quot;OLD_TABLE &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPEN &quot;,&quot;OPTIMIZATION &quot;,&quot;OPTIMIZE &quot;,&quot;OPTION &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;OVERLAPS &quot;,&quot;OVERLAY &quot;,&quot;OVERRIDING &quot;,&quot;PACKAGE &quot;,&quot;PADDED &quot;,&quot;PAGESIZE &quot;,&quot;PARAMETER &quot;,&quot;PART &quot;,&quot;PARTITION &quot;,&quot;PARTITIONED &quot;,&quot;PARTITIONING &quot;,&quot;PARTITIONS &quot;,&quot;PASSWORD &quot;,&quot;PATH &quot;,&quot;PERCENTILE_CONT &quot;,&quot;PERCENTILE_DISC &quot;,&quot;PERCENT_RANK &quot;,&quot;PIECESIZE &quot;,&quot;PLAN &quot;,&quot;POSITION &quot;,&quot;POWER &quot;,&quot;PRECISION &quot;,&quot;PREPARE &quot;,&quot;PREVVAL &quot;,&quot;PRIMARY &quot;,&quot;PRIQTY &quot;,&quot;PRIVILEGES &quot;,&quot;PROCEDURE &quot;,&quot;PROGRAM &quot;,&quot;PSID &quot;,&quot;PUBLIC &quot;,&quot;QUERY &quot;,&quot;QUERYNO &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;READ &quot;,&quot;READS &quot;,&quot;REAL &quot;,&quot;RECOVERY &quot;,&quot;RECURSIVE &quot;,&quot;REF &quot;,&quot;REFERENCES &quot;,&quot;REFERENCING &quot;,&quot;REFRESH &quot;,&quot;REGR_AVGX &quot;,&quot;REGR_AVGY &quot;,&quot;REGR_COUNT &quot;,&quot;REGR_INTERCEPT &quot;,&quot;REGR_R2 &quot;,&quot;REGR_SLOPE &quot;,&quot;REGR_SXX &quot;,&quot;REGR_SXY &quot;,&quot;REGR_SYY &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEAT &quot;,&quot;RESET &quot;,&quot;RESIGNAL &quot;,&quot;RESTART &quot;,&quot;RESTRICT &quot;,&quot;RESULT &quot;,&quot;RESULT_SET_LOCATOR &quot;,&quot;RETURN &quot;,&quot;RETURNS &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLE &quot;,&quot;ROLLBACK &quot;,&quot;ROLLUP &quot;,&quot;ROUND_CEILING &quot;,&quot;ROUND_DOWN &quot;,&quot;ROUND_FLOOR &quot;,&quot;ROUND_HALF_DOWN &quot;,&quot;ROUND_HALF_EVEN &quot;,&quot;ROUND_HALF_UP &quot;,&quot;ROUND_UP &quot;,&quot;ROUTINE &quot;,&quot;ROW &quot;,&quot;ROWNUMBER &quot;,&quot;ROWS &quot;,&quot;ROWSET &quot;,&quot;ROW_NUMBER &quot;,&quot;RRN &quot;,&quot;RUN &quot;,&quot;SAVEPOINT &quot;,&quot;SCHEMA &quot;,&quot;SCOPE &quot;,&quot;SCRATCHPAD &quot;,&quot;SCROLL &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SECONDS &quot;,&quot;SECQTY &quot;,&quot;SECURITY &quot;,&quot;SENSITIVE &quot;,&quot;SEQUENCE &quot;,&quot;SESSION &quot;,&quot;SESSION_USER &quot;,&quot;SIGNAL &quot;,&quot;SIMILAR &quot;,&quot;SIMPLE &quot;,&quot;SMALLINT &quot;,&quot;SNAN &quot;,&quot;SOME &quot;,&quot;SOURCE &quot;,&quot;SPECIFIC &quot;,&quot;SPECIFICTYPE &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLID &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQRT &quot;,&quot;STACKED &quot;,&quot;STANDARD &quot;,&quot;START &quot;,&quot;STARTING &quot;,&quot;STATEMENT &quot;,&quot;STATIC &quot;,&quot;STATMENT &quot;,&quot;STAY &quot;,&quot;STDDEV_POP &quot;,&quot;STDDEV_SAMP &quot;,&quot;STOGROUP &quot;,&quot;STORES &quot;,&quot;STYLE &quot;,&quot;SUBMULTISET &quot;,&quot;SUBSTRING &quot;,&quot;SUM &quot;,&quot;SUMMARY &quot;,&quot;SYMMETRIC &quot;,&quot;SYNONYM &quot;,&quot;SYSFUN &quot;,&quot;SYSIBM &quot;,&quot;SYSPROC &quot;,&quot;SYSTEM &quot;,&quot;SYSTEM_USER &quot;,&quot;TABLE &quot;,&quot;TABLESAMPLE &quot;,&quot;TABLESPACE &quot;,&quot;THEN &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TIMEZONE_HOUR &quot;,&quot;TIMEZONE_MINUTE &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSACTION &quot;,&quot;TRANSLATE &quot;,&quot;TRANSLATION &quot;,&quot;TREAT &quot;,&quot;TRIGGER &quot;,&quot;TRIM &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;TYPE &quot;,&quot;UESCAPE &quot;,&quot;UNDO &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNNEST &quot;,&quot;UNTIL &quot;,&quot;UPPER &quot;,&quot;USAGE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALIDPROC &quot;,&quot;VALUE &quot;,&quot;VARCHAR &quot;,&quot;VARIABLE &quot;,&quot;VARIANT &quot;,&quot;VARYING &quot;,&quot;VAR_POP &quot;,&quot;VAR_SAMP &quot;,&quot;VCAT &quot;,&quot;VERSION &quot;,&quot;VIEW &quot;,&quot;VOLATILE &quot;,&quot;VOLUMES &quot;,&quot;WHEN &quot;,&quot;WHENEVER &quot;,&quot;WHILE &quot;,&quot;WIDTH_BUCKET &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WITHOUT &quot;,&quot;WLM &quot;,&quot;WRITE &quot;,&quot;XMLELEMENT &quot;,&quot;XMLEXISTS &quot;,&quot;XMLNAMESPACES &quot;,&quot;YEAR &quot;,&quot;YEARS &quot;],f=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FETCH FIRST &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;GO &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INTERSECT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;OR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;,&quot;[]&quot;],openParens:[&quot;(&quot;],closeParens:[&quot;)&quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;:&quot;],lineCommentTypes:[&quot;--&quot;],specialWordChars:[&quot;#&quot;,&quot;@&quot;],operators:[&quot;**&quot;,&quot;!=&quot;,&quot;!&gt;&quot;,&quot;!&gt;&quot;,&quot;||&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),uc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ACCESSIBLE &quot;,&quot;ADD &quot;,&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASENSITIVE &quot;,&quot;BEFORE &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CHANGE &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHECK &quot;,&quot;COLLATE &quot;,&quot;COLUMN &quot;,&quot;CONDITION &quot;,&quot;CONSTRAINT &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;DATABASE &quot;,&quot;DATABASES &quot;,&quot;DAY_HOUR &quot;,&quot;DAY_MICROSECOND &quot;,&quot;DAY_MINUTE &quot;,&quot;DAY_SECOND &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DELAYED &quot;,&quot;DELETE &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DETERMINISTIC &quot;,&quot;DISTINCT &quot;,&quot;DISTINCTROW &quot;,&quot;DIV &quot;,&quot;DO_DOMAIN_IDS &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DUAL &quot;,&quot;EACH &quot;,&quot;ELSE &quot;,&quot;ELSEIF &quot;,&quot;ENCLOSED &quot;,&quot;ESCAPED &quot;,&quot;EXCEPT &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXPLAIN &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FLOAT &quot;,&quot;FLOAT4 &quot;,&quot;FLOAT8 &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FOREIGN &quot;,&quot;FROM &quot;,&quot;FULLTEXT &quot;,&quot;GENERAL &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;HAVING &quot;,&quot;HIGH_PRIORITY &quot;,&quot;HOUR_MICROSECOND &quot;,&quot;HOUR_MINUTE &quot;,&quot;HOUR_SECOND &quot;,&quot;IF &quot;,&quot;IGNORE &quot;,&quot;IGNORE_DOMAIN_IDS &quot;,&quot;IGNORE_SERVER_IDS &quot;,&quot;IN &quot;,&quot;INDEX &quot;,&quot;INFILE &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INT1 &quot;,&quot;INT2 &quot;,&quot;INT3 &quot;,&quot;INT4 &quot;,&quot;INT8 &quot;,&quot;INTEGER &quot;,&quot;INTERSECT &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;ITERATE &quot;,&quot;JOIN &quot;,&quot;KEY &quot;,&quot;KEYS &quot;,&quot;KILL &quot;,&quot;LEADING &quot;,&quot;LEAVE &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LINEAR &quot;,&quot;LINES &quot;,&quot;LOAD &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCK &quot;,&quot;LONG &quot;,&quot;LONGBLOB &quot;,&quot;LONGTEXT &quot;,&quot;LOOP &quot;,&quot;LOW_PRIORITY &quot;,&quot;MASTER_HEARTBEAT_PERIOD &quot;,&quot;MASTER_SSL_VERIFY_SERVER_CERT &quot;,&quot;MATCH &quot;,&quot;MAXVALUE &quot;,&quot;MEDIUMBLOB &quot;,&quot;MEDIUMINT &quot;,&quot;MEDIUMTEXT &quot;,&quot;MIDDLEINT &quot;,&quot;MINUTE_MICROSECOND &quot;,&quot;MINUTE_SECOND &quot;,&quot;MOD &quot;,&quot;MODIFIES &quot;,&quot;NATURAL &quot;,&quot;NOT &quot;,&quot;NO_WRITE_TO_BINLOG &quot;,&quot;NULL &quot;,&quot;NUMERIC &quot;,&quot;ON &quot;,&quot;OPTIMIZE &quot;,&quot;OPTION &quot;,&quot;OPTIONALLY &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OUTFILE &quot;,&quot;OVER &quot;,&quot;PAGE_CHECKSUM &quot;,&quot;PARSE_VCOL_EXPR &quot;,&quot;PARTITION &quot;,&quot;POSITION &quot;,&quot;PRECISION &quot;,&quot;PRIMARY &quot;,&quot;PROCEDURE &quot;,&quot;PURGE &quot;,&quot;RANGE &quot;,&quot;READ &quot;,&quot;READS &quot;,&quot;READ_WRITE &quot;,&quot;REAL &quot;,&quot;RECURSIVE &quot;,&quot;REF_SYSTEM_ID &quot;,&quot;REFERENCES &quot;,&quot;REGEXP &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEAT &quot;,&quot;REPLACE &quot;,&quot;REQUIRE &quot;,&quot;RESIGNAL &quot;,&quot;RESTRICT &quot;,&quot;RETURN &quot;,&quot;RETURNING &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;RLIKE &quot;,&quot;ROWS &quot;,&quot;SCHEMA &quot;,&quot;SCHEMAS &quot;,&quot;SECOND_MICROSECOND &quot;,&quot;SELECT &quot;,&quot;SENSITIVE &quot;,&quot;SEPARATOR &quot;,&quot;SET &quot;,&quot;SHOW &quot;,&quot;SIGNAL &quot;,&quot;SLOW &quot;,&quot;SMALLINT &quot;,&quot;SPATIAL &quot;,&quot;SPECIFIC &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQL_BIG_RESULT &quot;,&quot;SQL_CALC_FOUND_ROWS &quot;,&quot;SQL_SMALL_RESULT &quot;,&quot;SSL &quot;,&quot;STARTING &quot;,&quot;STATS_AUTO_RECALC &quot;,&quot;STATS_PERSISTENT &quot;,&quot;STATS_SAMPLE_PAGES &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;TABLE &quot;,&quot;TERMINATED &quot;,&quot;THEN &quot;,&quot;TINYBLOB &quot;,&quot;TINYINT &quot;,&quot;TINYTEXT &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;UNDO &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNLOCK &quot;,&quot;UNSIGNED &quot;,&quot;UPDATE &quot;,&quot;USAGE &quot;,&quot;USE &quot;,&quot;USING &quot;,&quot;UTC_DATE &quot;,&quot;UTC_TIME &quot;,&quot;UTC_TIMESTAMP &quot;,&quot;VALUES &quot;,&quot;VARBINARY &quot;,&quot;VARCHAR &quot;,&quot;VARCHARACTER &quot;,&quot;VARYING &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHILE &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WRITE &quot;,&quot;XOR &quot;,&quot;YEAR_MONTH &quot;,&quot;ZEROFILL &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;NATURAL LEFT JOIN &quot;,&quot;NATURAL LEFT OUTER JOIN &quot;,&quot;NATURAL RIGHT JOIN &quot;,&quot;NATURAL RIGHT OUTER JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&quot;``&quot;,&quot;&#039;&#039;&quot;,&#039;&quot;&quot;&#039;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[],lineCommentTypes:[&quot;--&quot;,&quot;#&quot;],specialWordChars:[&quot;@&quot;],operators:[&quot;:=&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;!=&quot;,&quot;&lt;&gt;&quot;,&quot;&lt;=&gt;&quot;,&quot;&amp;&amp;&quot;,&quot;||&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),fc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ACCESSIBLE &quot;,&quot;ADD &quot;,&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASENSITIVE &quot;,&quot;BEFORE &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CHANGE &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHECK &quot;,&quot;COLLATE &quot;,&quot;COLUMN &quot;,&quot;CONDITION &quot;,&quot;CONSTRAINT &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CUBE &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;DATABASE &quot;,&quot;DATABASES &quot;,&quot;DAY_HOUR &quot;,&quot;DAY_MICROSECOND &quot;,&quot;DAY_MINUTE &quot;,&quot;DAY_SECOND &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DELAYED &quot;,&quot;DELETE &quot;,&quot;DENSE_RANK &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DETERMINISTIC &quot;,&quot;DISTINCT &quot;,&quot;DISTINCTROW &quot;,&quot;DIV &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DUAL &quot;,&quot;EACH &quot;,&quot;ELSE &quot;,&quot;ELSEIF &quot;,&quot;EMPTY &quot;,&quot;ENCLOSED &quot;,&quot;ESCAPED &quot;,&quot;EXCEPT &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXPLAIN &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FIRST_VALUE &quot;,&quot;FLOAT &quot;,&quot;FLOAT4 &quot;,&quot;FLOAT8 &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FOREIGN &quot;,&quot;FROM &quot;,&quot;FULLTEXT &quot;,&quot;FUNCTION &quot;,&quot;GENERATED &quot;,&quot;GET &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;GROUPS &quot;,&quot;HAVING &quot;,&quot;HIGH_PRIORITY &quot;,&quot;HOUR_MICROSECOND &quot;,&quot;HOUR_MINUTE &quot;,&quot;HOUR_SECOND &quot;,&quot;IF &quot;,&quot;IGNORE &quot;,&quot;IN &quot;,&quot;INDEX &quot;,&quot;INFILE &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INT1 &quot;,&quot;INT2 &quot;,&quot;INT3 &quot;,&quot;INT4 &quot;,&quot;INT8 &quot;,&quot;INTEGER &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IO_AFTER_GTIDS &quot;,&quot;IO_BEFORE_GTIDS &quot;,&quot;IS &quot;,&quot;ITERATE &quot;,&quot;JOIN &quot;,&quot;JSON_TABLE &quot;,&quot;KEY &quot;,&quot;KEYS &quot;,&quot;KILL &quot;,&quot;LAG &quot;,&quot;LAST_VALUE &quot;,&quot;LATERAL &quot;,&quot;LEAD &quot;,&quot;LEADING &quot;,&quot;LEAVE &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LINEAR &quot;,&quot;LINES &quot;,&quot;LOAD &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCK &quot;,&quot;LONG &quot;,&quot;LONGBLOB &quot;,&quot;LONGTEXT &quot;,&quot;LOOP &quot;,&quot;LOW_PRIORITY &quot;,&quot;MASTER_BIND &quot;,&quot;MASTER_SSL_VERIFY_SERVER_CERT &quot;,&quot;MATCH &quot;,&quot;MAXVALUE &quot;,&quot;MEDIUMBLOB &quot;,&quot;MEDIUMINT &quot;,&quot;MEDIUMTEXT &quot;,&quot;MIDDLEINT &quot;,&quot;MINUTE_MICROSECOND &quot;,&quot;MINUTE_SECOND &quot;,&quot;MOD &quot;,&quot;MODIFIES &quot;,&quot;NATURAL &quot;,&quot;NOT &quot;,&quot;NO_WRITE_TO_BINLOG &quot;,&quot;NTH_VALUE &quot;,&quot;NTILE &quot;,&quot;NULL &quot;,&quot;NUMERIC &quot;,&quot;OF &quot;,&quot;ON &quot;,&quot;OPTIMIZE &quot;,&quot;OPTIMIZER_COSTS &quot;,&quot;OPTION &quot;,&quot;OPTIONALLY &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OUTFILE &quot;,&quot;OVER &quot;,&quot;PARTITION &quot;,&quot;PERCENT_RANK &quot;,&quot;PRECISION &quot;,&quot;PRIMARY &quot;,&quot;PROCEDURE &quot;,&quot;PURGE &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;READ &quot;,&quot;READS &quot;,&quot;READ_WRITE &quot;,&quot;REAL &quot;,&quot;RECURSIVE &quot;,&quot;REFERENCES &quot;,&quot;REGEXP &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEAT &quot;,&quot;REPLACE &quot;,&quot;REQUIRE &quot;,&quot;RESIGNAL &quot;,&quot;RESTRICT &quot;,&quot;RETURN &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;RLIKE &quot;,&quot;ROW &quot;,&quot;ROWS &quot;,&quot;ROW_NUMBER &quot;,&quot;SCHEMA &quot;,&quot;SCHEMAS &quot;,&quot;SECOND_MICROSECOND &quot;,&quot;SELECT &quot;,&quot;SENSITIVE &quot;,&quot;SEPARATOR &quot;,&quot;SET &quot;,&quot;SHOW &quot;,&quot;SIGNAL &quot;,&quot;SMALLINT &quot;,&quot;SPATIAL &quot;,&quot;SPECIFIC &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQL_BIG_RESULT &quot;,&quot;SQL_CALC_FOUND_ROWS &quot;,&quot;SQL_SMALL_RESULT &quot;,&quot;SSL &quot;,&quot;STARTING &quot;,&quot;STORED &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;SYSTEM &quot;,&quot;TABLE &quot;,&quot;TERMINATED &quot;,&quot;THEN &quot;,&quot;TINYBLOB &quot;,&quot;TINYINT &quot;,&quot;TINYTEXT &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;UNDO &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNLOCK &quot;,&quot;UNSIGNED &quot;,&quot;UPDATE &quot;,&quot;USAGE &quot;,&quot;USE &quot;,&quot;USING &quot;,&quot;UTC_DATE &quot;,&quot;UTC_TIME &quot;,&quot;UTC_TIMESTAMP &quot;,&quot;VALUES &quot;,&quot;VARBINARY &quot;,&quot;VARCHAR &quot;,&quot;VARCHARACTER &quot;,&quot;VARYING &quot;,&quot;VIRTUAL &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHILE &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WRITE &quot;,&quot;XOR &quot;,&quot;YEAR_MONTH &quot;,&quot;ZEROFILL &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;,&quot;STRAIGHT_JOIN &quot;,&quot;NATURAL LEFT JOIN &quot;,&quot;NATURAL LEFT OUTER JOIN &quot;,&quot;NATURAL RIGHT JOIN &quot;,&quot;NATURAL RIGHT OUTER JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&quot;``&quot;,&quot;&#039;&#039;&quot;,&#039;&quot;&quot;&#039;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[],lineCommentTypes:[&quot;--&quot;,&quot;#&quot;],specialWordChars:[&quot;@&quot;],operators:[&quot;:=&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;!=&quot;,&quot;&lt;&gt;&quot;,&quot;&lt;=&gt;&quot;,&quot;&amp;&amp;&quot;,&quot;||&quot;,&quot;-&gt;&quot;,&quot;-&gt;&gt;&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),dc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;ANY &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BINARY &quot;,&quot;BOOLEAN &quot;,&quot;BREAK &quot;,&quot;BUCKET &quot;,&quot;BUILD &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CLUSTER &quot;,&quot;COLLATE &quot;,&quot;COLLECTION &quot;,&quot;COMMIT &quot;,&quot;CONNECT &quot;,&quot;CONTINUE &quot;,&quot;CORRELATE &quot;,&quot;COVER &quot;,&quot;CREATE &quot;,&quot;DATABASE &quot;,&quot;DATASET &quot;,&quot;DATASTORE &quot;,&quot;DECLARE &quot;,&quot;DECREMENT &quot;,&quot;DELETE &quot;,&quot;DERIVED &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DROP &quot;,&quot;EACH &quot;,&quot;ELEMENT &quot;,&quot;ELSE &quot;,&quot;END &quot;,&quot;EVERY &quot;,&quot;EXCEPT &quot;,&quot;EXCLUDE &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXPLAIN &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FIRST &quot;,&quot;FLATTEN &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FROM &quot;,&quot;FUNCTION &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;GSI &quot;,&quot;HAVING &quot;,&quot;IF &quot;,&quot;IGNORE &quot;,&quot;ILIKE &quot;,&quot;IN &quot;,&quot;INCLUDE &quot;,&quot;INCREMENT &quot;,&quot;INDEX &quot;,&quot;INFER &quot;,&quot;INLINE &quot;,&quot;INNER &quot;,&quot;INSERT &quot;,&quot;INTERSECT &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;JOIN &quot;,&quot;KEY &quot;,&quot;KEYS &quot;,&quot;KEYSPACE &quot;,&quot;KNOWN &quot;,&quot;LAST &quot;,&quot;LEFT &quot;,&quot;LET &quot;,&quot;LETTING &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LSM &quot;,&quot;MAP &quot;,&quot;MAPPING &quot;,&quot;MATCHED &quot;,&quot;MATERIALIZED &quot;,&quot;MERGE &quot;,&quot;MISSING &quot;,&quot;NAMESPACE &quot;,&quot;NEST &quot;,&quot;NOT &quot;,&quot;NULL &quot;,&quot;NUMBER &quot;,&quot;OBJECT &quot;,&quot;OFFSET &quot;,&quot;ON &quot;,&quot;OPTION &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;PARSE &quot;,&quot;PARTITION &quot;,&quot;PASSWORD &quot;,&quot;PATH &quot;,&quot;POOL &quot;,&quot;PREPARE &quot;,&quot;PRIMARY &quot;,&quot;PRIVATE &quot;,&quot;PRIVILEGE &quot;,&quot;PROCEDURE &quot;,&quot;PUBLIC &quot;,&quot;RAW &quot;,&quot;REALM &quot;,&quot;REDUCE &quot;,&quot;RENAME &quot;,&quot;RETURN &quot;,&quot;RETURNING &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLE &quot;,&quot;ROLLBACK &quot;,&quot;SATISFIES &quot;,&quot;SCHEMA &quot;,&quot;SELECT &quot;,&quot;SELF &quot;,&quot;SEMI &quot;,&quot;SET &quot;,&quot;SHOW &quot;,&quot;SOME &quot;,&quot;START &quot;,&quot;STATISTICS &quot;,&quot;STRING &quot;,&quot;SYSTEM &quot;,&quot;THEN &quot;,&quot;TO &quot;,&quot;TRANSACTION &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;UNDER &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNNEST &quot;,&quot;UNSET &quot;,&quot;UPDATE &quot;,&quot;UPSERT &quot;,&quot;USE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALIDATE &quot;,&quot;VALUE &quot;,&quot;VALUED &quot;,&quot;VALUES &quot;,&quot;VIA &quot;,&quot;VIEW &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHILE &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WORK &quot;,&quot;XOR &quot;],f=[&quot;DELETE FROM &quot;,&quot;EXCEPT ALL &quot;,&quot;EXCEPT &quot;,&quot;EXPLAIN DELETE FROM &quot;,&quot;EXPLAIN UPDATE &quot;,&quot;EXPLAIN UPSERT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INFER &quot;,&quot;INSERT INTO &quot;,&quot;LET &quot;,&quot;LIMIT &quot;,&quot;MERGE &quot;,&quot;NEST &quot;,&quot;ORDER BY &quot;,&quot;PREPARE &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UNNEST &quot;,&quot;UPDATE &quot;,&quot;UPSERT &quot;,&quot;USE KEYS &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;OR &quot;,&quot;XOR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;],openParens:[&quot;(&quot;,&quot;[&quot;,&quot;{&quot;],closeParens:[&quot;)&quot;,&quot;]&quot;,&quot;}&quot;],namedPlaceholderTypes:[&quot;$ &quot;],lineCommentTypes:[&quot;#&quot;,&quot;--&quot;],operators:[&quot;==&quot;,&quot;!=&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),pc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=i(ac),a=i(sc),o=i(Qs);function i(e){return e &amp;&amp;e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function c(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function u(e){return(u=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var f=[&quot;A &quot;,&quot;ACCESSIBLE &quot;,&quot;AGENT &quot;,&quot;AGGREGATE &quot;,&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANY &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;AT &quot;,&quot;ATTRIBUTE &quot;,&quot;AUTHID &quot;,&quot;AVG &quot;,&quot;BETWEEN &quot;,&quot;BFILE_BASE &quot;,&quot;BINARY_INTEGER &quot;,&quot;BINARY &quot;,&quot;BLOB_BASE &quot;,&quot;BLOCK &quot;,&quot;BODY &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BOUND &quot;,&quot;BREADTH &quot;,&quot;BULK &quot;,&quot;BY &quot;,&quot;BYTE &quot;,&quot;C &quot;,&quot;CALL &quot;,&quot;CALLING &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CHAR_BASE &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHARSET &quot;,&quot;CHARSETFORM &quot;,&quot;CHARSETID &quot;,&quot;CHECK &quot;,&quot;CLOB_BASE &quot;,&quot;CLONE &quot;,&quot;CLOSE &quot;,&quot;CLUSTER &quot;,&quot;CLUSTERS &quot;,&quot;COALESCE &quot;,&quot;COLAUTH &quot;,&quot;COLLECT &quot;,&quot;COLUMNS &quot;,&quot;COMMENT &quot;,&quot;COMMIT &quot;,&quot;COMMITTED &quot;,&quot;COMPILED &quot;,&quot;COMPRESS &quot;,&quot;CONNECT &quot;,&quot;CONSTANT &quot;,&quot;CONSTRUCTOR &quot;,&quot;CONTEXT &quot;,&quot;CONTINUE &quot;,&quot;CONVERT &quot;,&quot;COUNT &quot;,&quot;CRASH &quot;,&quot;CREATE &quot;,&quot;CREDENTIAL &quot;,&quot;CURRENT &quot;,&quot;CURRVAL &quot;,&quot;CURSOR &quot;,&quot;CUSTOMDATUM &quot;,&quot;DANGLING &quot;,&quot;DATA &quot;,&quot;DATE_BASE &quot;,&quot;DATE &quot;,&quot;DAY &quot;,&quot;DECIMAL &quot;,&quot;DEFAULT &quot;,&quot;DEFINE &quot;,&quot;DELETE &quot;,&quot;DEPTH &quot;,&quot;DESC &quot;,&quot;DETERMINISTIC &quot;,&quot;DIRECTORY &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DURATION &quot;,&quot;ELEMENT &quot;,&quot;ELSIF &quot;,&quot;EMPTY &quot;,&quot;END &quot;,&quot;ESCAPE &quot;,&quot;EXCEPTIONS &quot;,&quot;EXCLUSIVE &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXIT &quot;,&quot;EXTENDS &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FINAL &quot;,&quot;FIRST &quot;,&quot;FIXED &quot;,&quot;FLOAT &quot;,&quot;FOR &quot;,&quot;FORALL &quot;,&quot;FORCE &quot;,&quot;FROM &quot;,&quot;FUNCTION &quot;,&quot;GENERAL &quot;,&quot;GOTO &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;HASH &quot;,&quot;HEAP &quot;,&quot;HIDDEN &quot;,&quot;HOUR &quot;,&quot;IDENTIFIED &quot;,&quot;IF &quot;,&quot;IMMEDIATE &quot;,&quot;IN &quot;,&quot;INCLUDING &quot;,&quot;INDEX &quot;,&quot;INDEXES &quot;,&quot;INDICATOR &quot;,&quot;INDICES &quot;,&quot;INFINITE &quot;,&quot;INSTANTIABLE &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTERFACE &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;INVALIDATE &quot;,&quot;IS &quot;,&quot;ISOLATION &quot;,&quot;JAVA &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LEADING &quot;,&quot;LENGTH &quot;,&quot;LEVEL &quot;,&quot;LIBRARY &quot;,&quot;LIKE &quot;,&quot;LIKE2 &quot;,&quot;LIKE4 &quot;,&quot;LIKEC &quot;,&quot;LIMITED &quot;,&quot;LOCAL &quot;,&quot;LOCK &quot;,&quot;LONG &quot;,&quot;MAP &quot;,&quot;MAX &quot;,&quot;MAXLEN &quot;,&quot;MEMBER &quot;,&quot;MERGE &quot;,&quot;MIN &quot;,&quot;MINUTE &quot;,&quot;MLSLABEL &quot;,&quot;MOD &quot;,&quot;MODE &quot;,&quot;MONTH &quot;,&quot;MULTISET &quot;,&quot;NAME &quot;,&quot;NAN &quot;,&quot;NATIONAL &quot;,&quot;NATIVE &quot;,&quot;NATURAL &quot;,&quot;NATURALN &quot;,&quot;NCHAR &quot;,&quot;NEW &quot;,&quot;NEXTVAL &quot;,&quot;NOCOMPRESS &quot;,&quot;NOCOPY &quot;,&quot;NOT &quot;,&quot;NOWAIT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NUMBER_BASE &quot;,&quot;NUMBER &quot;,&quot;OBJECT &quot;,&quot;OCICOLL &quot;,&quot;OCIDATE &quot;,&quot;OCIDATETIME &quot;,&quot;OCIDURATION &quot;,&quot;OCIINTERVAL &quot;,&quot;OCILOBLOCATOR &quot;,&quot;OCINUMBER &quot;,&quot;OCIRAW &quot;,&quot;OCIREF &quot;,&quot;OCIREFCURSOR &quot;,&quot;OCIROWID &quot;,&quot;OCISTRING &quot;,&quot;OCITYPE &quot;,&quot;OF &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPAQUE &quot;,&quot;OPEN &quot;,&quot;OPERATOR &quot;,&quot;OPTION &quot;,&quot;ORACLE &quot;,&quot;ORADATA &quot;,&quot;ORDER &quot;,&quot;ORGANIZATION &quot;,&quot;ORLANY &quot;,&quot;ORLVARY &quot;,&quot;OTHERS &quot;,&quot;OUT &quot;,&quot;OVERLAPS &quot;,&quot;OVERRIDING &quot;,&quot;PACKAGE &quot;,&quot;PARALLEL_ENABLE &quot;,&quot;PARAMETER &quot;,&quot;PARAMETERS &quot;,&quot;PARENT &quot;,&quot;PARTITION &quot;,&quot;PASCAL &quot;,&quot;PCTFREE &quot;,&quot;PIPE &quot;,&quot;PIPELINED &quot;,&quot;PLS_INTEGER &quot;,&quot;PLUGGABLE &quot;,&quot;POSITIVE &quot;,&quot;POSITIVEN &quot;,&quot;PRAGMA &quot;,&quot;PRECISION &quot;,&quot;PRIOR &quot;,&quot;PRIVATE &quot;,&quot;PROCEDURE &quot;,&quot;PUBLIC &quot;,&quot;RAISE &quot;,&quot;RANGE &quot;,&quot;RAW &quot;,&quot;READ &quot;,&quot;REAL &quot;,&quot;RECORD &quot;,&quot;REF &quot;,&quot;REFERENCE &quot;,&quot;RELEASE &quot;,&quot;RELIES_ON &quot;,&quot;REM &quot;,&quot;REMAINDER &quot;,&quot;RENAME &quot;,&quot;RESOURCE &quot;,&quot;RESULT_CACHE &quot;,&quot;RESULT &quot;,&quot;RETURN &quot;,&quot;RETURNING &quot;,&quot;REVERSE &quot;,&quot;REVOKE &quot;,&quot;ROLLBACK &quot;,&quot;ROW &quot;,&quot;ROWID &quot;,&quot;ROWNUM &quot;,&quot;ROWTYPE &quot;,&quot;SAMPLE &quot;,&quot;SAVE &quot;,&quot;SAVEPOINT &quot;,&quot;SB1 &quot;,&quot;SB2 &quot;,&quot;SB4 &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SEGMENT &quot;,&quot;SELF &quot;,&quot;SEPARATE &quot;,&quot;SEQUENCE &quot;,&quot;SERIALIZABLE &quot;,&quot;SHARE &quot;,&quot;SHORT &quot;,&quot;SIZE_T &quot;,&quot;SIZE &quot;,&quot;SMALLINT &quot;,&quot;SOME &quot;,&quot;SPACE &quot;,&quot;SPARSE &quot;,&quot;SQL &quot;,&quot;SQLCODE &quot;,&quot;SQLDATA &quot;,&quot;SQLERRM &quot;,&quot;SQLNAME &quot;,&quot;SQLSTATE &quot;,&quot;STANDARD &quot;,&quot;START &quot;,&quot;STATIC &quot;,&quot;STDDEV &quot;,&quot;STORED &quot;,&quot;STRING &quot;,&quot;STRUCT &quot;,&quot;STYLE &quot;,&quot;SUBMULTISET &quot;,&quot;SUBPARTITION &quot;,&quot;SUBSTITUTABLE &quot;,&quot;SUBTYPE &quot;,&quot;SUCCESSFUL &quot;,&quot;SUM &quot;,&quot;SYNONYM &quot;,&quot;SYSDATE &quot;,&quot;TABAUTH &quot;,&quot;TABLE &quot;,&quot;TDO &quot;,&quot;THE &quot;,&quot;THEN &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TIMEZONE_ABBR &quot;,&quot;TIMEZONE_HOUR &quot;,&quot;TIMEZONE_MINUTE &quot;,&quot;TIMEZONE_REGION &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSACTION &quot;,&quot;TRANSACTIONAL &quot;,&quot;TRIGGER &quot;,&quot;TRUE &quot;,&quot;TRUSTED &quot;,&quot;TYPE &quot;,&quot;UB1 &quot;,&quot;UB2 &quot;,&quot;UB4 &quot;,&quot;UID &quot;,&quot;UNDER &quot;,&quot;UNIQUE &quot;,&quot;UNPLUG &quot;,&quot;UNSIGNED &quot;,&quot;UNTRUSTED &quot;,&quot;USE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALIDATE &quot;,&quot;VALIST &quot;,&quot;VALUE &quot;,&quot;VARCHAR &quot;,&quot;VARCHAR2 &quot;,&quot;VARIABLE &quot;,&quot;VARIANCE &quot;,&quot;VARRAY &quot;,&quot;VARYING &quot;,&quot;VIEW &quot;,&quot;VIEWS &quot;,&quot;VOID &quot;,&quot;WHENEVER &quot;,&quot;WHILE &quot;,&quot;WITH &quot;,&quot;WORK &quot;,&quot;WRAPPED &quot;,&quot;WRITE &quot;,&quot;YEAR &quot;,&quot;ZONE &quot;],d=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;BEGIN &quot;,&quot;CONNECT BY &quot;,&quot;DECLARE &quot;,&quot;DELETE FROM &quot;,&quot;DELETE &quot;,&quot;END &quot;,&quot;EXCEPT &quot;,&quot;EXCEPTION &quot;,&quot;FETCH FIRST &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;LOOP &quot;,&quot;MODIFY &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;START WITH &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],p=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],m=[&quot;AND &quot;,&quot;CROSS APPLY &quot;,&quot;ELSE &quot;,&quot;END &quot;,&quot;OR &quot;,&quot;OUTER APPLY &quot;,&quot;WHEN &quot;,&quot;XOR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;s(e,t)}(h,e);var t,n,r,i=(n=h,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=u(n);if(r){var a=u(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return c(this,e)});function h(){return l(this,h),i.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:f,reservedTopLevelWords:d,reservedNewlineWords:m,reservedTopLevelWordsNoIndent:p,stringTypes:[&#039;&quot;&quot;&#039;,&quot;N &#039;&#039;&quot;,&quot;&#039;&#039;&quot;,&quot;``&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;:&quot;],lineCommentTypes:[&quot;--&quot;],specialWordChars:[&quot;_ &quot;,&quot;$ &quot;,&quot;#&quot;,&quot;.&quot;,&quot;@&quot;],operators:[&quot;||&quot;,&quot;**&quot;,&quot;!=&quot;,&quot;:=&quot;]})}},{key:&quot;tokenOverride &quot;,value:function(e){return(0,rc.isSet)(e)&amp;&amp;(0,rc.isBy)(this.previousReservedToken)?{type:o.default.RESERVED,value:e.value}:e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(h.prototype,t),h}(r.default),e.exports=t.default}),mc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ABORT &quot;,&quot;ABSOLUTE &quot;,&quot;ACCESS &quot;,&quot;ACTION &quot;,&quot;ADD &quot;,&quot;ADMIN &quot;,&quot;AFTER &quot;,&quot;AGGREGATE &quot;,&quot;ALL &quot;,&quot;ALSO &quot;,&quot;ALTER &quot;,&quot;ALWAYS &quot;,&quot;ANALYSE &quot;,&quot;ANALYZE &quot;,&quot;AND &quot;,&quot;ANY &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;ASSERTION &quot;,&quot;ASSIGNMENT &quot;,&quot;ASYMMETRIC &quot;,&quot;AT &quot;,&quot;ATTACH &quot;,&quot;ATTRIBUTE &quot;,&quot;AUTHORIZATION &quot;,&quot;BACKWARD &quot;,&quot;BEFORE &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BIT &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CACHE &quot;,&quot;CALL &quot;,&quot;CALLED &quot;,&quot;CASCADE &quot;,&quot;CASCADED &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CATALOG &quot;,&quot;CHAIN &quot;,&quot;CHAR &quot;,&quot;CHARACTER &quot;,&quot;CHARACTERISTICS &quot;,&quot;CHECK &quot;,&quot;CHECKPOINT &quot;,&quot;CLASS &quot;,&quot;CLOSE &quot;,&quot;CLUSTER &quot;,&quot;COALESCE &quot;,&quot;COLLATE &quot;,&quot;COLLATION &quot;,&quot;COLUMN &quot;,&quot;COLUMNS &quot;,&quot;COMMENT &quot;,&quot;COMMENTS &quot;,&quot;COMMIT &quot;,&quot;COMMITTED &quot;,&quot;CONCURRENTLY &quot;,&quot;CONFIGURATION &quot;,&quot;CONFLICT &quot;,&quot;CONNECTION &quot;,&quot;CONSTRAINT &quot;,&quot;CONSTRAINTS &quot;,&quot;CONTENT &quot;,&quot;CONTINUE &quot;,&quot;CONVERSION &quot;,&quot;COPY &quot;,&quot;COST &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CSV &quot;,&quot;CUBE &quot;,&quot;CURRENT &quot;,&quot;CURRENT_CATALOG &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_SCHEMA &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;CYCLE &quot;,&quot;DATA &quot;,&quot;DATABASE &quot;,&quot;DAY &quot;,&quot;DEALLOCATE &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DEFAULTS &quot;,&quot;DEFERRABLE &quot;,&quot;DEFERRED &quot;,&quot;DEFINER &quot;,&quot;DELETE &quot;,&quot;DELIMITER &quot;,&quot;DELIMITERS &quot;,&quot;DEPENDS &quot;,&quot;DESC &quot;,&quot;DETACH &quot;,&quot;DICTIONARY &quot;,&quot;DISABLE &quot;,&quot;DISCARD &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;DOCUMENT &quot;,&quot;DOMAIN &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;EACH &quot;,&quot;ELSE &quot;,&quot;ENABLE &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTED &quot;,&quot;END &quot;,&quot;ENUM &quot;,&quot;ESCAPE &quot;,&quot;EVENT &quot;,&quot;EXCEPT &quot;,&quot;EXCLUDE &quot;,&quot;EXCLUDING &quot;,&quot;EXCLUSIVE &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXPLAIN &quot;,&quot;EXPRESSION &quot;,&quot;EXTENSION &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FAMILY &quot;,&quot;FETCH &quot;,&quot;FILTER &quot;,&quot;FIRST &quot;,&quot;FLOAT &quot;,&quot;FOLLOWING &quot;,&quot;FOR &quot;,&quot;FORCE &quot;,&quot;FOREIGN &quot;,&quot;FORWARD &quot;,&quot;FREEZE &quot;,&quot;FROM &quot;,&quot;FULL &quot;,&quot;FUNCTION &quot;,&quot;FUNCTIONS &quot;,&quot;GENERATED &quot;,&quot;GLOBAL &quot;,&quot;GRANT &quot;,&quot;GRANTED &quot;,&quot;GREATEST &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;GROUPS &quot;,&quot;HANDLER &quot;,&quot;HAVING &quot;,&quot;HEADER &quot;,&quot;HOLD &quot;,&quot;HOUR &quot;,&quot;IDENTITY &quot;,&quot;IF &quot;,&quot;ILIKE &quot;,&quot;IMMEDIATE &quot;,&quot;IMMUTABLE &quot;,&quot;IMPLICIT &quot;,&quot;IMPORT &quot;,&quot;IN &quot;,&quot;INCLUDE &quot;,&quot;INCLUDING &quot;,&quot;INCREMENT &quot;,&quot;INDEX &quot;,&quot;INDEXES &quot;,&quot;INHERIT &quot;,&quot;INHERITS &quot;,&quot;INITIALLY &quot;,&quot;INLINE &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INPUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INSTEAD &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTERSECT &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;INVOKER &quot;,&quot;IS &quot;,&quot;ISNULL &quot;,&quot;ISOLATION &quot;,&quot;JOIN &quot;,&quot;KEY &quot;,&quot;LABEL &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LAST &quot;,&quot;LATERAL &quot;,&quot;LEADING &quot;,&quot;LEAKPROOF &quot;,&quot;LEAST &quot;,&quot;LEFT &quot;,&quot;LEVEL &quot;,&quot;LIKE &quot;,&quot;LIMIT &quot;,&quot;LISTEN &quot;,&quot;LOAD &quot;,&quot;LOCAL &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOCATION &quot;,&quot;LOCK &quot;,&quot;LOCKED &quot;,&quot;LOGGED &quot;,&quot;MAPPING &quot;,&quot;MATCH &quot;,&quot;MATERIALIZED &quot;,&quot;MAXVALUE &quot;,&quot;METHOD &quot;,&quot;MINUTE &quot;,&quot;MINVALUE &quot;,&quot;MODE &quot;,&quot;MONTH &quot;,&quot;MOVE &quot;,&quot;NAME &quot;,&quot;NAMES &quot;,&quot;NATIONAL &quot;,&quot;NATURAL &quot;,&quot;NCHAR &quot;,&quot;NEW &quot;,&quot;NEXT &quot;,&quot;NFC &quot;,&quot;NFD &quot;,&quot;NFKC &quot;,&quot;NFKD &quot;,&quot;NO &quot;,&quot;NONE &quot;,&quot;NORMALIZE &quot;,&quot;NORMALIZED &quot;,&quot;NOT &quot;,&quot;NOTHING &quot;,&quot;NOTIFY &quot;,&quot;NOTNULL &quot;,&quot;NOWAIT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NULLS &quot;,&quot;NUMERIC &quot;,&quot;OBJECT &quot;,&quot;OF &quot;,&quot;OFF &quot;,&quot;OFFSET &quot;,&quot;OIDS &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPERATOR &quot;,&quot;OPTION &quot;,&quot;OPTIONS &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;ORDINALITY &quot;,&quot;OTHERS &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;OVERLAPS &quot;,&quot;OVERLAY &quot;,&quot;OVERRIDING &quot;,&quot;OWNED &quot;,&quot;OWNER &quot;,&quot;PARALLEL &quot;,&quot;PARSER &quot;,&quot;PARTIAL &quot;,&quot;PARTITION &quot;,&quot;PASSING &quot;,&quot;PASSWORD &quot;,&quot;PLACING &quot;,&quot;PLANS &quot;,&quot;POLICY &quot;,&quot;POSITION &quot;,&quot;PRECEDING &quot;,&quot;PRECISION &quot;,&quot;PREPARE &quot;,&quot;PREPARED &quot;,&quot;PRESERVE &quot;,&quot;PRIMARY &quot;,&quot;PRIOR &quot;,&quot;PRIVILEGES &quot;,&quot;PROCEDURAL &quot;,&quot;PROCEDURE &quot;,&quot;PROCEDURES &quot;,&quot;PROGRAM &quot;,&quot;PUBLICATION &quot;,&quot;QUOTE &quot;,&quot;RANGE &quot;,&quot;READ &quot;,&quot;REAL &quot;,&quot;REASSIGN &quot;,&quot;RECHECK &quot;,&quot;RECURSIVE &quot;,&quot;REF &quot;,&quot;REFERENCES &quot;,&quot;REFERENCING &quot;,&quot;REFRESH &quot;,&quot;REINDEX &quot;,&quot;RELATIVE &quot;,&quot;RELEASE &quot;,&quot;RENAME &quot;,&quot;REPEATABLE &quot;,&quot;REPLACE &quot;,&quot;REPLICA &quot;,&quot;RESET &quot;,&quot;RESTART &quot;,&quot;RESTRICT &quot;,&quot;RETURNING &quot;,&quot;RETURNS &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLE &quot;,&quot;ROLLBACK &quot;,&quot;ROLLUP &quot;,&quot;ROUTINE &quot;,&quot;ROUTINES &quot;,&quot;ROW &quot;,&quot;ROWS &quot;,&quot;RULE &quot;,&quot;SAVEPOINT &quot;,&quot;SCHEMA &quot;,&quot;SCHEMAS &quot;,&quot;SCROLL &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SECURITY &quot;,&quot;SELECT &quot;,&quot;SEQUENCE &quot;,&quot;SEQUENCES &quot;,&quot;SERIALIZABLE &quot;,&quot;SERVER &quot;,&quot;SESSION &quot;,&quot;SESSION_USER &quot;,&quot;SET &quot;,&quot;SETOF &quot;,&quot;SETS &quot;,&quot;SHARE &quot;,&quot;SHOW &quot;,&quot;SIMILAR &quot;,&quot;SIMPLE &quot;,&quot;SKIP &quot;,&quot;SMALLINT &quot;,&quot;SNAPSHOT &quot;,&quot;SOME &quot;,&quot;SQL &quot;,&quot;STABLE &quot;,&quot;STANDALONE &quot;,&quot;START &quot;,&quot;STATEMENT &quot;,&quot;STATISTICS &quot;,&quot;STDIN &quot;,&quot;STDOUT &quot;,&quot;STORAGE &quot;,&quot;STORED &quot;,&quot;STRICT &quot;,&quot;STRIP &quot;,&quot;SUBSCRIPTION &quot;,&quot;SUBSTRING &quot;,&quot;SUPPORT &quot;,&quot;SYMMETRIC &quot;,&quot;SYSID &quot;,&quot;SYSTEM &quot;,&quot;TABLE &quot;,&quot;TABLES &quot;,&quot;TABLESAMPLE &quot;,&quot;TABLESPACE &quot;,&quot;TEMP &quot;,&quot;TEMPLATE &quot;,&quot;TEMPORARY &quot;,&quot;TEXT &quot;,&quot;THEN &quot;,&quot;TIES &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSACTION &quot;,&quot;TRANSFORM &quot;,&quot;TREAT &quot;,&quot;TRIGGER &quot;,&quot;TRIM &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;TRUSTED &quot;,&quot;TYPE &quot;,&quot;TYPES &quot;,&quot;UESCAPE &quot;,&quot;UNBOUNDED &quot;,&quot;UNCOMMITTED &quot;,&quot;UNENCRYPTED &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNLISTEN &quot;,&quot;UNLOGGED &quot;,&quot;UNTIL &quot;,&quot;UPDATE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VACUUM &quot;,&quot;VALID &quot;,&quot;VALIDATE &quot;,&quot;VALIDATOR &quot;,&quot;VALUE &quot;,&quot;VALUES &quot;,&quot;VARCHAR &quot;,&quot;VARIADIC &quot;,&quot;VARYING &quot;,&quot;VERBOSE &quot;,&quot;VERSION &quot;,&quot;VIEW &quot;,&quot;VIEWS &quot;,&quot;VOLATILE &quot;,&quot;WHEN &quot;,&quot;WHERE &quot;,&quot;WHITESPACE &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WITHOUT &quot;,&quot;WORK &quot;,&quot;WRAPPER &quot;,&quot;WRITE &quot;,&quot;XML &quot;,&quot;XMLATTRIBUTES &quot;,&quot;XMLCONCAT &quot;,&quot;XMLELEMENT &quot;,&quot;XMLEXISTS &quot;,&quot;XMLFOREST &quot;,&quot;XMLNAMESPACES &quot;,&quot;XMLPARSE &quot;,&quot;XMLPI &quot;,&quot;XMLROOT &quot;,&quot;XMLSERIALIZE &quot;,&quot;XMLTABLE &quot;,&quot;YEAR &quot;,&quot;YES &quot;,&quot;ZONE &quot;],f=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;CASE &quot;,&quot;DELETE FROM &quot;,&quot;END &quot;,&quot;EXCEPT &quot;,&quot;FETCH FIRST &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;U &amp;&#039;&#039;&quot;,&#039;U &amp;&quot;&quot;&#039;,&quot;$$ &quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;$ &quot;],namedPlaceholderTypes:[&quot;:&quot;],lineCommentTypes:[&quot;--&quot;],operators:[&quot;!=&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;||/&quot;,&quot;|/&quot;,&quot;::&quot;,&quot;-&gt;&gt;&quot;,&quot;-&gt;&quot;,&quot;~~*&quot;,&quot;~~&quot;,&quot;!~~*&quot;,&quot;!~~&quot;,&quot;~*&quot;,&quot;!~*&quot;,&quot;!~&quot;,&quot;!!&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),hc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;AES128 &quot;,&quot;AES256 &quot;,&quot;ALLOWOVERWRITE &quot;,&quot;ANALYSE &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;AUTHORIZATION &quot;,&quot;BACKUP &quot;,&quot;BINARY &quot;,&quot;BLANKSASNULL &quot;,&quot;BOTH &quot;,&quot;BYTEDICT &quot;,&quot;BZIP2 &quot;,&quot;CAST &quot;,&quot;CHECK &quot;,&quot;COLLATE &quot;,&quot;COLUMN &quot;,&quot;CONSTRAINT &quot;,&quot;CREATE &quot;,&quot;CREDENTIALS &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_USER &quot;,&quot;CURRENT_USER_ID &quot;,&quot;DEFAULT &quot;,&quot;DEFERRABLE &quot;,&quot;DEFLATE &quot;,&quot;DEFRAG &quot;,&quot;DELTA &quot;,&quot;DELTA32K &quot;,&quot;DESC &quot;,&quot;DISABLE &quot;,&quot;DISTINCT &quot;,&quot;DO &quot;,&quot;ELSE &quot;,&quot;EMPTYASNULL &quot;,&quot;ENABLE &quot;,&quot;ENCODE &quot;,&quot;ENCRYPT &quot;,&quot;ENCRYPTION &quot;,&quot;END &quot;,&quot;EXPLICIT &quot;,&quot;FALSE &quot;,&quot;FOR &quot;,&quot;FOREIGN &quot;,&quot;FREEZE &quot;,&quot;FULL &quot;,&quot;GLOBALDICT256 &quot;,&quot;GLOBALDICT64K &quot;,&quot;GRANT &quot;,&quot;GZIP &quot;,&quot;IDENTITY &quot;,&quot;IGNORE &quot;,&quot;ILIKE &quot;,&quot;INITIALLY &quot;,&quot;INTO &quot;,&quot;LEADING &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LUN &quot;,&quot;LUNS &quot;,&quot;LZO &quot;,&quot;LZOP &quot;,&quot;MINUS &quot;,&quot;MOSTLY13 &quot;,&quot;MOSTLY32 &quot;,&quot;MOSTLY8 &quot;,&quot;NATURAL &quot;,&quot;NEW &quot;,&quot;NULLS &quot;,&quot;OFF &quot;,&quot;OFFLINE &quot;,&quot;OFFSET &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPEN &quot;,&quot;ORDER &quot;,&quot;OVERLAPS &quot;,&quot;PARALLEL &quot;,&quot;PARTITION &quot;,&quot;PERCENT &quot;,&quot;PERMISSIONS &quot;,&quot;PLACING &quot;,&quot;PRIMARY &quot;,&quot;RAW &quot;,&quot;READRATIO &quot;,&quot;RECOVER &quot;,&quot;REFERENCES &quot;,&quot;REJECTLOG &quot;,&quot;RESORT &quot;,&quot;RESTORE &quot;,&quot;SESSION_USER &quot;,&quot;SIMILAR &quot;,&quot;SYSDATE &quot;,&quot;SYSTEM &quot;,&quot;TABLE &quot;,&quot;TAG &quot;,&quot;TDES &quot;,&quot;TEXT255 &quot;,&quot;TEXT32K &quot;,&quot;THEN &quot;,&quot;TIMESTAMP &quot;,&quot;TO &quot;,&quot;TOP &quot;,&quot;TRAILING &quot;,&quot;TRUE &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;UNIQUE &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VERBOSE &quot;,&quot;WALLET &quot;,&quot;WHEN &quot;,&quot;WITH &quot;,&quot;WITHOUT &quot;,&quot;PREDICATE &quot;,&quot;COLUMNS &quot;,&quot;COMPROWS &quot;,&quot;COMPRESSION &quot;,&quot;COPY &quot;,&quot;FORMAT &quot;,&quot;DELIMITER &quot;,&quot;FIXEDWIDTH &quot;,&quot;AVRO &quot;,&quot;JSON &quot;,&quot;ENCRYPTED &quot;,&quot;BZIP2 &quot;,&quot;GZIP &quot;,&quot;LZOP &quot;,&quot;PARQUET &quot;,&quot;ORC &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;BLANKSASNULL &quot;,&quot;DATEFORMAT &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;NULL AS &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;TIMEFORMAT &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;STATUPDATE &quot;,&quot;MANIFEST &quot;,&quot;REGION &quot;,&quot;IAM_ROLE &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;SSH &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;ACCESS_KEY_ID &quot;,&quot;SECRET_ACCESS_KEY &quot;,&quot;AVRO &quot;,&quot;BLANKSASNULL &quot;,&quot;BZIP2 &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;CREDENTIALS &quot;,&quot;DATEFORMAT &quot;,&quot;DELIMITER &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTED &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;FIXEDWIDTH &quot;,&quot;FORMAT &quot;,&quot;IAM_ROLE &quot;,&quot;GZIP &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;JSON &quot;,&quot;LZOP &quot;,&quot;MANIFEST &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;NULL AS &quot;,&quot;READRATIO &quot;,&quot;REGION &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;SSH &quot;,&quot;STATUPDATE &quot;,&quot;TIMEFORMAT &quot;,&quot;SESSION_TOKEN &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;EXTERNAL &quot;,&quot;DATA CATALOG &quot;,&quot;HIVE METASTORE &quot;,&quot;CATALOG_ROLE &quot;,&quot;VACUUM &quot;,&quot;COPY &quot;,&quot;UNLOAD &quot;,&quot;EVEN &quot;,&quot;ALL &quot;],f=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;DELETE FROM &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;INTERSECT &quot;,&quot;TOP &quot;,&quot;LIMIT &quot;,&quot;MODIFY &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UNION ALL &quot;,&quot;UNION &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;,&quot;VACUUM &quot;,&quot;COPY &quot;,&quot;UNLOAD &quot;,&quot;ANALYZE &quot;,&quot;ANALYSE &quot;,&quot;DISTKEY &quot;,&quot;SORTKEY &quot;,&quot;COMPOUND &quot;,&quot;INTERLEAVED &quot;,&quot;FORMAT &quot;,&quot;DELIMITER &quot;,&quot;FIXEDWIDTH &quot;,&quot;AVRO &quot;,&quot;JSON &quot;,&quot;ENCRYPTED &quot;,&quot;BZIP2 &quot;,&quot;GZIP &quot;,&quot;LZOP &quot;,&quot;PARQUET &quot;,&quot;ORC &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;BLANKSASNULL &quot;,&quot;DATEFORMAT &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;NULL AS &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;TIMEFORMAT &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;STATUPDATE &quot;,&quot;MANIFEST &quot;,&quot;REGION &quot;,&quot;IAM_ROLE &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;SSH &quot;,&quot;ACCEPTANYDATE &quot;,&quot;ACCEPTINVCHARS &quot;,&quot;ACCESS_KEY_ID &quot;,&quot;SECRET_ACCESS_KEY &quot;,&quot;AVRO &quot;,&quot;BLANKSASNULL &quot;,&quot;BZIP2 &quot;,&quot;COMPROWS &quot;,&quot;COMPUPDATE &quot;,&quot;CREDENTIALS &quot;,&quot;DATEFORMAT &quot;,&quot;DELIMITER &quot;,&quot;EMPTYASNULL &quot;,&quot;ENCODING &quot;,&quot;ENCRYPTED &quot;,&quot;ESCAPE &quot;,&quot;EXPLICIT_IDS &quot;,&quot;FILLRECORD &quot;,&quot;FIXEDWIDTH &quot;,&quot;FORMAT &quot;,&quot;IAM_ROLE &quot;,&quot;GZIP &quot;,&quot;IGNOREBLANKLINES &quot;,&quot;IGNOREHEADER &quot;,&quot;JSON &quot;,&quot;LZOP &quot;,&quot;MANIFEST &quot;,&quot;MASTER_SYMMETRIC_KEY &quot;,&quot;MAXERROR &quot;,&quot;NOLOAD &quot;,&quot;NULL AS &quot;,&quot;READRATIO &quot;,&quot;REGION &quot;,&quot;REMOVEQUOTES &quot;,&quot;ROUNDEC &quot;,&quot;SSH &quot;,&quot;STATUPDATE &quot;,&quot;TIMEFORMAT &quot;,&quot;SESSION_TOKEN &quot;,&quot;TRIMBLANKS &quot;,&quot;TRUNCATECOLUMNS &quot;,&quot;EXTERNAL &quot;,&quot;DATA CATALOG &quot;,&quot;HIVE METASTORE &quot;,&quot;CATALOG_ROLE &quot;],d=[],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;OUTER APPLY &quot;,&quot;WHEN &quot;,&quot;VACUUM &quot;,&quot;COPY &quot;,&quot;UNLOAD &quot;,&quot;ANALYZE &quot;,&quot;ANALYSE &quot;,&quot;DISTKEY &quot;,&quot;SORTKEY &quot;,&quot;COMPOUND &quot;,&quot;INTERLEAVED &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;],openParens:[&quot;(&quot;],closeParens:[&quot;)&quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;@&quot;,&quot;#&quot;,&quot;$ &quot;],lineCommentTypes:[&quot;--&quot;],operators:[&quot;|/&quot;,&quot;||/&quot;,&quot;&lt;&lt;&quot;,&quot;&gt;&gt;&quot;,&quot;!=&quot;,&quot;||&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),gc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=i(ac),a=i(sc),o=i(Qs);function i(e){return e &amp;&amp;e.__esModule?e:{default:e}}function l(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function s(e,t){return(s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function c(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function u(e){return(u=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var f=[&quot;ALL &quot;,&quot;ALTER &quot;,&quot;ANALYSE &quot;,&quot;ANALYZE &quot;,&quot;ARRAY_ZIP &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASC &quot;,&quot;AVG &quot;,&quot;BETWEEN &quot;,&quot;CASCADE &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;COALESCE &quot;,&quot;COLLECT_LIST &quot;,&quot;COLLECT_SET &quot;,&quot;COLUMN &quot;,&quot;COLUMNS &quot;,&quot;COMMENT &quot;,&quot;CONSTRAINT &quot;,&quot;CONTAINS &quot;,&quot;CONVERT &quot;,&quot;COUNT &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT ROW &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;DATABASE &quot;,&quot;DATABASES &quot;,&quot;DATE_ADD &quot;,&quot;DATE_SUB &quot;,&quot;DATE_TRUNC &quot;,&quot;DAY_HOUR &quot;,&quot;DAY_MINUTE &quot;,&quot;DAY_SECOND &quot;,&quot;DAY &quot;,&quot;DAYS &quot;,&quot;DECODE &quot;,&quot;DEFAULT &quot;,&quot;DELETE &quot;,&quot;DENSE_RANK &quot;,&quot;DESC &quot;,&quot;DESCRIBE &quot;,&quot;DISTINCT &quot;,&quot;DISTINCTROW &quot;,&quot;DIV &quot;,&quot;DROP &quot;,&quot;ELSE &quot;,&quot;ENCODE &quot;,&quot;END &quot;,&quot;EXISTS &quot;,&quot;EXPLAIN &quot;,&quot;EXPLODE_OUTER &quot;,&quot;EXPLODE &quot;,&quot;FILTER &quot;,&quot;FIRST_VALUE &quot;,&quot;FIRST &quot;,&quot;FIXED &quot;,&quot;FLATTEN &quot;,&quot;FOLLOWING &quot;,&quot;FROM_UNIXTIME &quot;,&quot;FULL &quot;,&quot;GREATEST &quot;,&quot;GROUP_CONCAT &quot;,&quot;HOUR_MINUTE &quot;,&quot;HOUR_SECOND &quot;,&quot;HOUR &quot;,&quot;HOURS &quot;,&quot;IF &quot;,&quot;IFNULL &quot;,&quot;IN &quot;,&quot;INSERT &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;LAG &quot;,&quot;LAST_VALUE &quot;,&quot;LAST &quot;,&quot;LEAD &quot;,&quot;LEADING &quot;,&quot;LEAST &quot;,&quot;LEVEL &quot;,&quot;LIKE &quot;,&quot;MAX &quot;,&quot;MERGE &quot;,&quot;MIN &quot;,&quot;MINUTE_SECOND &quot;,&quot;MINUTE &quot;,&quot;MONTH &quot;,&quot;NATURAL &quot;,&quot;NOT &quot;,&quot;NOW()&quot;,&quot;NTILE &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;OFFSET &quot;,&quot;ON DELETE &quot;,&quot;ON UPDATE &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPTIMIZE &quot;,&quot;OVER &quot;,&quot;PERCENT_RANK &quot;,&quot;PRECEDING &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;REGEXP &quot;,&quot;RENAME &quot;,&quot;RLIKE &quot;,&quot;ROW &quot;,&quot;ROWS &quot;,&quot;SECOND &quot;,&quot;SEPARATOR &quot;,&quot;SEQUENCE &quot;,&quot;SIZE &quot;,&quot;STRING &quot;,&quot;STRUCT &quot;,&quot;SUM &quot;,&quot;TABLE &quot;,&quot;TABLES &quot;,&quot;TEMPORARY &quot;,&quot;THEN &quot;,&quot;TO_DATE &quot;,&quot;TO_JSON &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSFORM &quot;,&quot;TRUE &quot;,&quot;TRUNCATE &quot;,&quot;TYPE &quot;,&quot;TYPES &quot;,&quot;UNBOUNDED &quot;,&quot;UNIQUE &quot;,&quot;UNIX_TIMESTAMP &quot;,&quot;UNLOCK &quot;,&quot;UNSIGNED &quot;,&quot;USING &quot;,&quot;VARIABLES &quot;,&quot;VIEW &quot;,&quot;WHEN &quot;,&quot;WITH &quot;,&quot;YEAR_MONTH &quot;],d=[&quot;ADD &quot;,&quot;AFTER &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER DATABASE &quot;,&quot;ALTER SCHEMA &quot;,&quot;ALTER TABLE &quot;,&quot;CLUSTER BY &quot;,&quot;CLUSTERED BY &quot;,&quot;DELETE FROM &quot;,&quot;DISTRIBUTE BY &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;OPTIONS &quot;,&quot;ORDER BY &quot;,&quot;PARTITION BY &quot;,&quot;PARTITIONED BY &quot;,&quot;RANGE &quot;,&quot;ROWS &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;TBLPROPERTIES &quot;,&quot;UPDATE &quot;,&quot;USING &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;,&quot;WINDOW &quot;],p=[&quot;EXCEPT ALL &quot;,&quot;EXCEPT &quot;,&quot;INTERSECT ALL &quot;,&quot;INTERSECT &quot;,&quot;UNION ALL &quot;,&quot;UNION &quot;],m=[&quot;AND &quot;,&quot;CREATE OR &quot;,&quot;CREATE &quot;,&quot;ELSE &quot;,&quot;LATERAL VIEW &quot;,&quot;OR &quot;,&quot;OUTER APPLY &quot;,&quot;WHEN &quot;,&quot;XOR &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;,&quot;ANTI JOIN &quot;,&quot;SEMI JOIN &quot;,&quot;LEFT ANTI JOIN &quot;,&quot;LEFT SEMI JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;RIGHT SEMI JOIN &quot;,&quot;NATURAL ANTI JOIN &quot;,&quot;NATURAL FULL OUTER JOIN &quot;,&quot;NATURAL INNER JOIN &quot;,&quot;NATURAL LEFT ANTI JOIN &quot;,&quot;NATURAL LEFT OUTER JOIN &quot;,&quot;NATURAL LEFT SEMI JOIN &quot;,&quot;NATURAL OUTER JOIN &quot;,&quot;NATURAL RIGHT OUTER JOIN &quot;,&quot;NATURAL RIGHT SEMI JOIN &quot;,&quot;NATURAL SEMI JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;s(e,t)}(h,e);var t,n,r,i=(n=h,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=u(n);if(r){var a=u(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return c(this,e)});function h(){return l(this,h),i.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:f,reservedTopLevelWords:d,reservedNewlineWords:m,reservedTopLevelWordsNoIndent:p,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;,&quot;``&quot;,&quot;{}&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[&quot;$ &quot;],lineCommentTypes:[&quot;--&quot;],operators:[&quot;!=&quot;,&quot;&lt;=&gt;&quot;,&quot;&amp;&amp;&quot;,&quot;||&quot;,&quot;==&quot;]})}},{key:&quot;tokenOverride &quot;,value:function(e){if((0,rc.isWindow)(e)){var t=this.tokenLookAhead();if(t &amp;&amp;t.type===o.default.OPEN_PAREN)return{type:o.default.RESERVED,value:e.value}}if((0,rc.isEnd)(e)){var n=this.tokenLookBehind();if(n &amp;&amp;n.type===o.default.OPERATOR &amp;&amp;&quot;.&quot;===n.value)return{type:o.default.WORD,value:e.value}}return e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(h.prototype,t),h}(r.default),e.exports=t.default}),vc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ABS &quot;,&quot;ALL &quot;,&quot;ALLOCATE &quot;,&quot;ALTER &quot;,&quot;AND &quot;,&quot;ANY &quot;,&quot;ARE &quot;,&quot;ARRAY &quot;,&quot;AS &quot;,&quot;ASENSITIVE &quot;,&quot;ASYMMETRIC &quot;,&quot;AT &quot;,&quot;ATOMIC &quot;,&quot;AUTHORIZATION &quot;,&quot;AVG &quot;,&quot;BEGIN &quot;,&quot;BETWEEN &quot;,&quot;BIGINT &quot;,&quot;BINARY &quot;,&quot;BLOB &quot;,&quot;BOOLEAN &quot;,&quot;BOTH &quot;,&quot;BY &quot;,&quot;CALL &quot;,&quot;CALLED &quot;,&quot;CARDINALITY &quot;,&quot;CASCADED &quot;,&quot;CASE &quot;,&quot;CAST &quot;,&quot;CEIL &quot;,&quot;CEILING &quot;,&quot;CHAR &quot;,&quot;CHAR_LENGTH &quot;,&quot;CHARACTER &quot;,&quot;CHARACTER_LENGTH &quot;,&quot;CHECK &quot;,&quot;CLOB &quot;,&quot;CLOSE &quot;,&quot;COALESCE &quot;,&quot;COLLATE &quot;,&quot;COLLECT &quot;,&quot;COLUMN &quot;,&quot;COMMIT &quot;,&quot;CONDITION &quot;,&quot;CONNECT &quot;,&quot;CONSTRAINT &quot;,&quot;CONVERT &quot;,&quot;CORR &quot;,&quot;CORRESPONDING &quot;,&quot;COUNT &quot;,&quot;COVAR_POP &quot;,&quot;COVAR_SAMP &quot;,&quot;CREATE &quot;,&quot;CROSS &quot;,&quot;CUBE &quot;,&quot;CUME_DIST &quot;,&quot;CURRENT &quot;,&quot;CURRENT_CATALOG &quot;,&quot;CURRENT_DATE &quot;,&quot;CURRENT_DEFAULT_TRANSFORM_GROUP &quot;,&quot;CURRENT_PATH &quot;,&quot;CURRENT_ROLE &quot;,&quot;CURRENT_SCHEMA &quot;,&quot;CURRENT_TIME &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;CURRENT_TRANSFORM_GROUP_FOR_TYPE &quot;,&quot;CURRENT_USER &quot;,&quot;CURSOR &quot;,&quot;CYCLE &quot;,&quot;DATE &quot;,&quot;DAY &quot;,&quot;DEALLOCATE &quot;,&quot;DEC &quot;,&quot;DECIMAL &quot;,&quot;DECLARE &quot;,&quot;DEFAULT &quot;,&quot;DELETE &quot;,&quot;DENSE_RANK &quot;,&quot;DEREF &quot;,&quot;DESCRIBE &quot;,&quot;DETERMINISTIC &quot;,&quot;DISCONNECT &quot;,&quot;DISTINCT &quot;,&quot;DOUBLE &quot;,&quot;DROP &quot;,&quot;DYNAMIC &quot;,&quot;EACH &quot;,&quot;ELEMENT &quot;,&quot;ELSE &quot;,&quot;END &quot;,&quot;END-EXEC &quot;,&quot;ESCAPE &quot;,&quot;EVERY &quot;,&quot;EXCEPT &quot;,&quot;EXEC &quot;,&quot;EXECUTE &quot;,&quot;EXISTS &quot;,&quot;EXP &quot;,&quot;EXTERNAL &quot;,&quot;EXTRACT &quot;,&quot;FALSE &quot;,&quot;FETCH &quot;,&quot;FILTER &quot;,&quot;FLOAT &quot;,&quot;FLOOR &quot;,&quot;FOR &quot;,&quot;FOREIGN &quot;,&quot;FREE &quot;,&quot;FROM &quot;,&quot;FULL &quot;,&quot;FUNCTION &quot;,&quot;FUSION &quot;,&quot;GET &quot;,&quot;GLOBAL &quot;,&quot;GRANT &quot;,&quot;GROUP &quot;,&quot;GROUPING &quot;,&quot;HAVING &quot;,&quot;HOLD &quot;,&quot;HOUR &quot;,&quot;IDENTITY &quot;,&quot;IN &quot;,&quot;INDICATOR &quot;,&quot;INNER &quot;,&quot;INOUT &quot;,&quot;INSENSITIVE &quot;,&quot;INSERT &quot;,&quot;INT &quot;,&quot;INTEGER &quot;,&quot;INTERSECT &quot;,&quot;INTERSECTION &quot;,&quot;INTERVAL &quot;,&quot;INTO &quot;,&quot;IS &quot;,&quot;JOIN &quot;,&quot;LANGUAGE &quot;,&quot;LARGE &quot;,&quot;LATERAL &quot;,&quot;LEADING &quot;,&quot;LEFT &quot;,&quot;LIKE &quot;,&quot;LIKE_REGEX &quot;,&quot;LN &quot;,&quot;LOCAL &quot;,&quot;LOCALTIME &quot;,&quot;LOCALTIMESTAMP &quot;,&quot;LOWER &quot;,&quot;MATCH &quot;,&quot;MAX &quot;,&quot;MEMBER &quot;,&quot;MERGE &quot;,&quot;METHOD &quot;,&quot;MIN &quot;,&quot;MINUTE &quot;,&quot;MOD &quot;,&quot;MODIFIES &quot;,&quot;MODULE &quot;,&quot;MONTH &quot;,&quot;MULTISET &quot;,&quot;NATIONAL &quot;,&quot;NATURAL &quot;,&quot;NCHAR &quot;,&quot;NCLOB &quot;,&quot;NEW &quot;,&quot;NO &quot;,&quot;NONE &quot;,&quot;NORMALIZE &quot;,&quot;NOT &quot;,&quot;NULL &quot;,&quot;NULLIF &quot;,&quot;NUMERIC &quot;,&quot;OCTET_LENGTH &quot;,&quot;OCCURRENCES_REGEX &quot;,&quot;OF &quot;,&quot;OLD &quot;,&quot;ON &quot;,&quot;ONLY &quot;,&quot;OPEN &quot;,&quot;OR &quot;,&quot;ORDER &quot;,&quot;OUT &quot;,&quot;OUTER &quot;,&quot;OVER &quot;,&quot;OVERLAPS &quot;,&quot;OVERLAY &quot;,&quot;PARAMETER &quot;,&quot;PARTITION &quot;,&quot;PERCENT_RANK &quot;,&quot;PERCENTILE_CONT &quot;,&quot;PERCENTILE_DISC &quot;,&quot;POSITION &quot;,&quot;POSITION_REGEX &quot;,&quot;POWER &quot;,&quot;PRECISION &quot;,&quot;PREPARE &quot;,&quot;PRIMARY &quot;,&quot;PROCEDURE &quot;,&quot;RANGE &quot;,&quot;RANK &quot;,&quot;READS &quot;,&quot;REAL &quot;,&quot;RECURSIVE &quot;,&quot;REF &quot;,&quot;REFERENCES &quot;,&quot;REFERENCING &quot;,&quot;REGR_AVGX &quot;,&quot;REGR_AVGY &quot;,&quot;REGR_COUNT &quot;,&quot;REGR_INTERCEPT &quot;,&quot;REGR_R2 &quot;,&quot;REGR_SLOPE &quot;,&quot;REGR_SXX &quot;,&quot;REGR_SXY &quot;,&quot;REGR_SYY &quot;,&quot;RELEASE &quot;,&quot;RESULT &quot;,&quot;RETURN &quot;,&quot;RETURNS &quot;,&quot;REVOKE &quot;,&quot;RIGHT &quot;,&quot;ROLLBACK &quot;,&quot;ROLLUP &quot;,&quot;ROW &quot;,&quot;ROW_NUMBER &quot;,&quot;ROWS &quot;,&quot;SAVEPOINT &quot;,&quot;SCOPE &quot;,&quot;SCROLL &quot;,&quot;SEARCH &quot;,&quot;SECOND &quot;,&quot;SELECT &quot;,&quot;SENSITIVE &quot;,&quot;SESSION_USER &quot;,&quot;SET &quot;,&quot;SIMILAR &quot;,&quot;SMALLINT &quot;,&quot;SOME &quot;,&quot;SPECIFIC &quot;,&quot;SPECIFICTYPE &quot;,&quot;SQL &quot;,&quot;SQLEXCEPTION &quot;,&quot;SQLSTATE &quot;,&quot;SQLWARNING &quot;,&quot;SQRT &quot;,&quot;START &quot;,&quot;STATIC &quot;,&quot;STDDEV_POP &quot;,&quot;STDDEV_SAMP &quot;,&quot;SUBMULTISET &quot;,&quot;SUBSTRING &quot;,&quot;SUBSTRING_REGEX &quot;,&quot;SUM &quot;,&quot;SYMMETRIC &quot;,&quot;SYSTEM &quot;,&quot;SYSTEM_USER &quot;,&quot;TABLE &quot;,&quot;TABLESAMPLE &quot;,&quot;THEN &quot;,&quot;TIME &quot;,&quot;TIMESTAMP &quot;,&quot;TIMEZONE_HOUR &quot;,&quot;TIMEZONE_MINUTE &quot;,&quot;TO &quot;,&quot;TRAILING &quot;,&quot;TRANSLATE &quot;,&quot;TRANSLATE_REGEX &quot;,&quot;TRANSLATION &quot;,&quot;TREAT &quot;,&quot;TRIGGER &quot;,&quot;TRIM &quot;,&quot;TRUE &quot;,&quot;UESCAPE &quot;,&quot;UNION &quot;,&quot;UNIQUE &quot;,&quot;UNKNOWN &quot;,&quot;UNNEST &quot;,&quot;UPDATE &quot;,&quot;UPPER &quot;,&quot;USER &quot;,&quot;USING &quot;,&quot;VALUE &quot;,&quot;VALUES &quot;,&quot;VAR_POP &quot;,&quot;VAR_SAMP &quot;,&quot;VARBINARY &quot;,&quot;VARCHAR &quot;,&quot;VARYING &quot;,&quot;WHEN &quot;,&quot;WHENEVER &quot;,&quot;WHERE &quot;,&quot;WIDTH_BUCKET &quot;,&quot;WINDOW &quot;,&quot;WITH &quot;,&quot;WITHIN &quot;,&quot;WITHOUT &quot;,&quot;YEAR &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;CASE &quot;,&quot;DELETE FROM &quot;,&quot;END &quot;,&quot;FETCH FIRST &quot;,&quot;FETCH NEXT &quot;,&quot;FETCH PRIOR &quot;,&quot;FETCH LAST &quot;,&quot;FETCH ABSOLUTE &quot;,&quot;FETCH RELATIVE &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;INTERSECT DISTINCT &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;,&quot;UNION DISTINCT &quot;,&quot;EXCEPT &quot;,&quot;EXCEPT ALL &quot;,&quot;EXCEPT DISTINCT &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;,&quot;NATURAL JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;&#039;&#039;&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[&quot;?&quot;],namedPlaceholderTypes:[],lineCommentTypes:[&quot;--&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),yc=we(function(e,t){function n(e){return(n=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.default=void 0;var r=o(ac),a=o(sc);function o(e){return e &amp;&amp;e.__esModule?e:{default:e}}function i(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}function l(e,t){return(l=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function s(e,t){return!t||&quot;object &quot;!==n(t)&amp;&amp;&quot;function &quot;!=typeof t?function(e){if(void 0===e)throw new ReferenceError(&quot;this hasn &#039;t been initialised - super() hasn &#039;t been called &quot;);return e}(e):t}function c(e){return(c=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var u=[&quot;ADD &quot;,&quot;EXTERNAL &quot;,&quot;PROCEDURE &quot;,&quot;ALL &quot;,&quot;FETCH &quot;,&quot;PUBLIC &quot;,&quot;ALTER &quot;,&quot;FILE &quot;,&quot;RAISERROR &quot;,&quot;AND &quot;,&quot;FILLFACTOR &quot;,&quot;READ &quot;,&quot;ANY &quot;,&quot;FOR &quot;,&quot;READTEXT &quot;,&quot;AS &quot;,&quot;FOREIGN &quot;,&quot;RECONFIGURE &quot;,&quot;ASC &quot;,&quot;FREETEXT &quot;,&quot;REFERENCES &quot;,&quot;AUTHORIZATION &quot;,&quot;FREETEXTTABLE &quot;,&quot;REPLICATION &quot;,&quot;BACKUP &quot;,&quot;FROM &quot;,&quot;RESTORE &quot;,&quot;BEGIN &quot;,&quot;FULL &quot;,&quot;RESTRICT &quot;,&quot;BETWEEN &quot;,&quot;FUNCTION &quot;,&quot;RETURN &quot;,&quot;BREAK &quot;,&quot;GOTO &quot;,&quot;REVERT &quot;,&quot;BROWSE &quot;,&quot;GRANT &quot;,&quot;REVOKE &quot;,&quot;BULK &quot;,&quot;GROUP &quot;,&quot;RIGHT &quot;,&quot;BY &quot;,&quot;HAVING &quot;,&quot;ROLLBACK &quot;,&quot;CASCADE &quot;,&quot;HOLDLOCK &quot;,&quot;ROWCOUNT &quot;,&quot;CASE &quot;,&quot;IDENTITY &quot;,&quot;ROWGUIDCOL &quot;,&quot;CHECK &quot;,&quot;IDENTITY_INSERT &quot;,&quot;RULE &quot;,&quot;CHECKPOINT &quot;,&quot;IDENTITYCOL &quot;,&quot;SAVE &quot;,&quot;CLOSE &quot;,&quot;IF &quot;,&quot;SCHEMA &quot;,&quot;CLUSTERED &quot;,&quot;IN &quot;,&quot;SECURITYAUDIT &quot;,&quot;COALESCE &quot;,&quot;INDEX &quot;,&quot;SELECT &quot;,&quot;COLLATE &quot;,&quot;INNER &quot;,&quot;SEMANTICKEYPHRASETABLE &quot;,&quot;COLUMN &quot;,&quot;INSERT &quot;,&quot;SEMANTICSIMILARITYDETAILSTABLE &quot;,&quot;COMMIT &quot;,&quot;INTERSECT &quot;,&quot;SEMANTICSIMILARITYTABLE &quot;,&quot;COMPUTE &quot;,&quot;INTO &quot;,&quot;SESSION_USER &quot;,&quot;CONSTRAINT &quot;,&quot;IS &quot;,&quot;SET &quot;,&quot;CONTAINS &quot;,&quot;JOIN &quot;,&quot;SETUSER &quot;,&quot;CONTAINSTABLE &quot;,&quot;KEY &quot;,&quot;SHUTDOWN &quot;,&quot;CONTINUE &quot;,&quot;KILL &quot;,&quot;SOME &quot;,&quot;CONVERT &quot;,&quot;LEFT &quot;,&quot;STATISTICS &quot;,&quot;CREATE &quot;,&quot;LIKE &quot;,&quot;SYSTEM_USER &quot;,&quot;CROSS &quot;,&quot;LINENO &quot;,&quot;TABLE &quot;,&quot;CURRENT &quot;,&quot;LOAD &quot;,&quot;TABLESAMPLE &quot;,&quot;CURRENT_DATE &quot;,&quot;MERGE &quot;,&quot;TEXTSIZE &quot;,&quot;CURRENT_TIME &quot;,&quot;NATIONAL &quot;,&quot;THEN &quot;,&quot;CURRENT_TIMESTAMP &quot;,&quot;NOCHECK &quot;,&quot;TO &quot;,&quot;CURRENT_USER &quot;,&quot;NONCLUSTERED &quot;,&quot;TOP &quot;,&quot;CURSOR &quot;,&quot;NOT &quot;,&quot;TRAN &quot;,&quot;DATABASE &quot;,&quot;NULL &quot;,&quot;TRANSACTION &quot;,&quot;DBCC &quot;,&quot;NULLIF &quot;,&quot;TRIGGER &quot;,&quot;DEALLOCATE &quot;,&quot;OF &quot;,&quot;TRUNCATE &quot;,&quot;DECLARE &quot;,&quot;OFF &quot;,&quot;TRY_CONVERT &quot;,&quot;DEFAULT &quot;,&quot;OFFSETS &quot;,&quot;TSEQUAL &quot;,&quot;DELETE &quot;,&quot;ON &quot;,&quot;UNION &quot;,&quot;DENY &quot;,&quot;OPEN &quot;,&quot;UNIQUE &quot;,&quot;DESC &quot;,&quot;OPENDATASOURCE &quot;,&quot;UNPIVOT &quot;,&quot;DISK &quot;,&quot;OPENQUERY &quot;,&quot;UPDATE &quot;,&quot;DISTINCT &quot;,&quot;OPENROWSET &quot;,&quot;UPDATETEXT &quot;,&quot;DISTRIBUTED &quot;,&quot;OPENXML &quot;,&quot;USE &quot;,&quot;DOUBLE &quot;,&quot;OPTION &quot;,&quot;USER &quot;,&quot;DROP &quot;,&quot;OR &quot;,&quot;VALUES &quot;,&quot;DUMP &quot;,&quot;ORDER &quot;,&quot;VARYING &quot;,&quot;ELSE &quot;,&quot;OUTER &quot;,&quot;VIEW &quot;,&quot;END &quot;,&quot;OVER &quot;,&quot;WAITFOR &quot;,&quot;ERRLVL &quot;,&quot;PERCENT &quot;,&quot;WHEN &quot;,&quot;ESCAPE &quot;,&quot;PIVOT &quot;,&quot;WHERE &quot;,&quot;EXCEPT &quot;,&quot;PLAN &quot;,&quot;WHILE &quot;,&quot;EXEC &quot;,&quot;PRECISION &quot;,&quot;WITH &quot;,&quot;EXECUTE &quot;,&quot;PRIMARY &quot;,&quot;WITHIN GROUP &quot;,&quot;EXISTS &quot;,&quot;PRINT &quot;,&quot;WRITETEXT &quot;,&quot;EXIT &quot;,&quot;PROC &quot;],f=[&quot;ADD &quot;,&quot;ALTER COLUMN &quot;,&quot;ALTER TABLE &quot;,&quot;CASE &quot;,&quot;DELETE FROM &quot;,&quot;END &quot;,&quot;EXCEPT &quot;,&quot;FROM &quot;,&quot;GROUP BY &quot;,&quot;HAVING &quot;,&quot;INSERT INTO &quot;,&quot;INSERT &quot;,&quot;LIMIT &quot;,&quot;ORDER BY &quot;,&quot;SELECT &quot;,&quot;SET CURRENT SCHEMA &quot;,&quot;SET SCHEMA &quot;,&quot;SET &quot;,&quot;UPDATE &quot;,&quot;VALUES &quot;,&quot;WHERE &quot;],d=[&quot;INTERSECT &quot;,&quot;INTERSECT ALL &quot;,&quot;MINUS &quot;,&quot;UNION &quot;,&quot;UNION ALL &quot;],p=[&quot;AND &quot;,&quot;ELSE &quot;,&quot;OR &quot;,&quot;WHEN &quot;,&quot;JOIN &quot;,&quot;INNER JOIN &quot;,&quot;LEFT JOIN &quot;,&quot;LEFT OUTER JOIN &quot;,&quot;RIGHT JOIN &quot;,&quot;RIGHT OUTER JOIN &quot;,&quot;FULL JOIN &quot;,&quot;FULL OUTER JOIN &quot;,&quot;CROSS JOIN &quot;];t.default=/*#__PURE__*/function(e){!function(e,t){if(&quot;function &quot;!=typeof t &amp;&amp;null!==t)throw new TypeError(&quot;Super expression must either be null or a function &quot;);e.prototype=Object.create(t &amp;&amp;t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t &amp;&amp;l(e,t)}(m,e);var t,n,r,o=(n=m,r=function(){if(&quot;undefined &quot;==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(&quot;function &quot;==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}(),function(){var e,t=c(n);if(r){var a=c(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return s(this,e)});function m(){return i(this,m),o.apply(this,arguments)}return(t=[{key:&quot;tokenizer &quot;,value:function(){return new a.default({reservedWords:u,reservedTopLevelWords:f,reservedNewlineWords:p,reservedTopLevelWordsNoIndent:d,stringTypes:[&#039;&quot;&quot;&#039;,&quot;N &#039;&#039;&quot;,&quot;&#039;&#039;&quot;,&quot;[]&quot;],openParens:[&quot;(&quot;,&quot;CASE &quot;],closeParens:[&quot;)&quot;,&quot;END &quot;],indexedPlaceholderTypes:[],namedPlaceholderTypes:[&quot;@&quot;],lineCommentTypes:[&quot;--&quot;],specialWordChars:[&quot;#&quot;,&quot;@&quot;],operators:[&quot;&gt;=&quot;,&quot;&lt;=&quot;,&quot;&lt;&gt;&quot;,&quot;!=&quot;,&quot;!&lt;&quot;,&quot;!&gt;&quot;,&quot;+=&quot;,&quot;-=&quot;,&quot;*=&quot;,&quot;/=&quot;,&quot;%=&quot;,&quot;|=&quot;,&quot;&amp;=&quot;,&quot;^=&quot;,&quot;::&quot;]})}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(m.prototype,t),m}(r.default),e.exports=t.default}),Ec=/*@__PURE__*/Se(we(function(e,t){Object.defineProperty(t,&quot;__esModule &quot;,{value:!0}),t.supportedDialects=t.format=void 0;var n=d(cc),r=d(uc),a=d(fc),o=d(dc),i=d(pc),l=d(mc),s=d(hc),c=d(gc),u=d(vc),f=d(yc);function d(e){return e &amp;&amp;e.__esModule?e:{default:e}}function p(e){return(p=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}var m={db2:n.default,mariadb:r.default,mysql:a.default,n1ql:o.default,plsql:i.default,postgresql:l.default,redshift:s.default,spark:c.default,sql:u.default,tsql:f.default};t.format=function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{};if(&quot;string &quot;!=typeof e)throw new Error(&quot;Invalid query argument. Extected string, instead got &quot;+p(e));var n=u.default;if(void 0!==t.language &amp;&amp;(n=m[t.language]),void 0===n)throw Error(&quot;Unsupported SQL dialect: &quot;.concat(t.language));return new n(t).format(e)};var h=Object.keys(m);t.supportedDialects=h}));function bc(e){return new Date(1e3*e)}function Tc(e){return JSON.stringify(e,null,4)}function Nc(e){return!!(e.glows.length||Object.values(e.context_items.dumps||[]).length||Object.values(e.context_items.logs||[]).length||Object.values(e.context_items.queries||[]).length)}function Rc({value:e,className:t=&quot;&quot;,alwaysVisible:n=!1,direction:r=&quot;right &quot;}){const[a,o]=c.useState(!1);return c.useEffect(()=&gt;{let e;return a &amp;&amp;(e=window.setTimeout(()=&gt;o(!1),3e3)),()=&gt;window.clearTimeout(e)},[a]),c.createElement(&quot;div &quot;,{className:t},c.createElement(ks,{onClick:function(t){t.preventDefault(),function(e){const t=document.createElement(&quot;textarea &quot;);t.value=e,document.body.appendChild(t),t.select(),document.execCommand(&quot;copy &quot;),document.body.removeChild(t)}(e),o(!0)},title:&quot;Copy to clipboard &quot;,className:`\n                    ${n?&quot;&quot;:&quot;opacity-0 transform scale-80 transition-animation delay-100 &quot;}\n                    ${a?&quot;opacity-0 &quot;:&quot;group-hover:opacity-100 group-hover:scale-100 &quot;}\n                `},c.createElement(oi,{icon:mi})),a &amp;&amp;c.createElement(&quot;p &quot;,{className:`absolute top-0 ${&quot;right &quot;==r?&quot;right-0 &quot;:&quot;left-0 &quot;} hidden z-10 sm:inline-flex gap-2 items-center h-6 px-2 rounded-sm ~bg-white shadow text-xs font-medium whitespace-nowrap text-emerald-500`,onClick:()=&gt;o(!1)},&quot;Copied!&quot;))}function Sc({children:e,language:t}){return c.createElement(Rs,{language:t,customStyle:{background:&quot;transparent &quot;}},e)}function wc({value:e,limitHeight:t=!0,language:n=null,transparent:r=!1,overflowX:a=!0}){const[o,i]=c.useState(t),[l,s]=c.useState(&quot;sql &quot;===n),u=c.useRef(null),f=c.useRef(null);return c.useEffect(()=&gt;{u.current &amp;&amp;s(u.current.scrollHeight &gt;u.current.clientHeight)},[u.current,o,e,t]),c.createElement(&quot;div &quot;,{ref:f,className:`\n                ${l?&quot;cursor-pointer &quot;:&quot;&quot;}\n                ${r?&quot;&quot;:&quot;~bg-gray-500/5 &quot;}\n                group py-2`,onClick:function(e){var t;3!==e.detail?l &amp;&amp;(!o &amp;&amp;null!=(t=window.getSelection())&amp;&amp;t.toString().length||i(!o)):function(){const e=document.createRange();e.selectNodeContents(f.current);const t=window.getSelection();t.removeAllRanges(),t.addRange(e)}()}},c.createElement(&quot;div &quot;,{className:a?&quot;mask-fade-x &quot;:&quot;&quot;},&quot;sql &quot;===n &amp;&amp;c.createElement(c.Fragment,null,o?c.createElement(&quot;pre &quot;,{className:&quot;pl-4 &quot;+(a?&quot;overflow-x-scroll scrollbar-hidden-x pr-12 &quot;:&quot;truncate pr-8 &quot;)},c.createElement(&quot;code &quot;,{className:&quot;font-mono leading-relaxed text-sm font-normal &quot;},c.createElement(Sc,{language:&quot;sql &quot;},e))):c.createElement(&quot;pre &quot;,{className:&quot;pl-4 &quot;+(a?&quot;overflow-x-scroll scrollbar-hidden-x pr-12 &quot;:&quot;pr-8 &quot;)},c.createElement(&quot;code &quot;,{className:&quot;font-mono leading-relaxed text-sm font-normal &quot;},c.createElement(Sc,{language:&quot;sql &quot;},Ec.format(e,{language:&quot;mysql &quot;}))))),&quot;sql &quot;!==n &amp;&amp;c.createElement(&quot;pre &quot;,{ref:u,className:`\n                            pl-4\n                            ${l?&quot;mask-fade-y -mb-2 &quot;:&quot;&quot;}\n                            ${o?&quot;overflow-y-hidden max-h-32 &quot;:&quot;&quot;}\n                            ${a?&quot;overflow-x-scroll scrollbar-hidden-x pr-12 &quot;:&quot;pr-8 &quot;}\n                        `},c.createElement(&quot;code &quot;,{className:&quot;font-mono leading-relaxed text-sm font-normal &quot;},n?c.createElement(Sc,{language:n},e):e))),c.createElement(Rc,{className:&quot;absolute top-2 right-3 &quot;,value:e}),l &amp;&amp;c.createElement(ks,{onClick:()=&gt;i(!o),className:&quot;\n                        absolute -bottom-3 left-1/2 -translate-x-1/2\n                        opacity-0 group-hover:opacity-100 scale-80 group-hover:scale-100 delay-100\n                    &quot;},c.createElement(oi,{icon:li,className:&quot;transition-transform duration-300 transform &quot;+(o?&quot;&quot;:&quot;rotate-180 &quot;)})))}function Oc({message:e,exceptionClass:t,className:n=&quot;&quot;}){const[r,a]=c.useState(e),[o,i]=c.useState(null);return c.useEffect(()=&gt;{if(&quot;Illuminate\\Database\\QueryException &quot;===t||e.match(/SQLSTATE\[.*\].*\(SQL: .*\)/)){const t=/*#__PURE__*/Ss(/\(SQL: (.*?)\)($| \(View: .*\)$)/,{query:1}),[,n]=e.match(t)||[];i(n),a(e.replace(t,&quot;$2 &quot;))}},[e,t]),c.createElement(c.Fragment,null,c.createElement(Js,{message:r,className:n}),o &amp;&amp;c.createElement(wc,{value:o,language:&quot;sql &quot;}))}Rs.registerLanguage(&quot;sql &quot;,function(e){const t=e.COMMENT(&quot;--&quot;,&quot;$ &quot;),n=[&quot;true &quot;,&quot;false &quot;,&quot;unknown &quot;],r=[&quot;bigint &quot;,&quot;binary &quot;,&quot;blob &quot;,&quot;boolean &quot;,&quot;char &quot;,&quot;character &quot;,&quot;clob &quot;,&quot;date &quot;,&quot;dec &quot;,&quot;decfloat &quot;,&quot;decimal &quot;,&quot;float &quot;,&quot;int &quot;,&quot;integer &quot;,&quot;interval &quot;,&quot;nchar &quot;,&quot;nclob &quot;,&quot;national &quot;,&quot;numeric &quot;,&quot;real &quot;,&quot;row &quot;,&quot;smallint &quot;,&quot;time &quot;,&quot;timestamp &quot;,&quot;varchar &quot;,&quot;varying &quot;,&quot;varbinary &quot;],a=[&quot;abs &quot;,&quot;acos &quot;,&quot;array_agg &quot;,&quot;asin &quot;,&quot;atan &quot;,&quot;avg &quot;,&quot;cast &quot;,&quot;ceil &quot;,&quot;ceiling &quot;,&quot;coalesce &quot;,&quot;corr &quot;,&quot;cos &quot;,&quot;cosh &quot;,&quot;count &quot;,&quot;covar_pop &quot;,&quot;covar_samp &quot;,&quot;cume_dist &quot;,&quot;dense_rank &quot;,&quot;deref &quot;,&quot;element &quot;,&quot;exp &quot;,&quot;extract &quot;,&quot;first_value &quot;,&quot;floor &quot;,&quot;json_array &quot;,&quot;json_arrayagg &quot;,&quot;json_exists &quot;,&quot;json_object &quot;,&quot;json_objectagg &quot;,&quot;json_query &quot;,&quot;json_table &quot;,&quot;json_table_primitive &quot;,&quot;json_value &quot;,&quot;lag &quot;,&quot;last_value &quot;,&quot;lead &quot;,&quot;listagg &quot;,&quot;ln &quot;,&quot;log &quot;,&quot;log10 &quot;,&quot;lower &quot;,&quot;max &quot;,&quot;min &quot;,&quot;mod &quot;,&quot;nth_value &quot;,&quot;ntile &quot;,&quot;nullif &quot;,&quot;percent_rank &quot;,&quot;percentile_cont &quot;,&quot;percentile_disc &quot;,&quot;position &quot;,&quot;position_regex &quot;,&quot;power &quot;,&quot;rank &quot;,&quot;regr_avgx &quot;,&quot;regr_avgy &quot;,&quot;regr_count &quot;,&quot;regr_intercept &quot;,&quot;regr_r2 &quot;,&quot;regr_slope &quot;,&quot;regr_sxx &quot;,&quot;regr_sxy &quot;,&quot;regr_syy &quot;,&quot;row_number &quot;,&quot;sin &quot;,&quot;sinh &quot;,&quot;sqrt &quot;,&quot;stddev_pop &quot;,&quot;stddev_samp &quot;,&quot;substring &quot;,&quot;substring_regex &quot;,&quot;sum &quot;,&quot;tan &quot;,&quot;tanh &quot;,&quot;translate &quot;,&quot;translate_regex &quot;,&quot;treat &quot;,&quot;trim &quot;,&quot;trim_array &quot;,&quot;unnest &quot;,&quot;upper &quot;,&quot;value_of &quot;,&quot;var_pop &quot;,&quot;var_samp &quot;,&quot;width_bucket &quot;],o=[&quot;create table &quot;,&quot;insert into &quot;,&quot;primary key &quot;,&quot;foreign key &quot;,&quot;not null &quot;,&quot;alter table &quot;,&quot;add constraint &quot;,&quot;grouping sets &quot;,&quot;on overflow &quot;,&quot;character set &quot;,&quot;respect nulls &quot;,&quot;ignore nulls &quot;,&quot;nulls first &quot;,&quot;nulls last &quot;,&quot;depth first &quot;,&quot;breadth first &quot;],i=a,l=[&quot;abs &quot;,&quot;acos &quot;,&quot;all &quot;,&quot;allocate &quot;,&quot;alter &quot;,&quot;and &quot;,&quot;any &quot;,&quot;are &quot;,&quot;array &quot;,&quot;array_agg &quot;,&quot;array_max_cardinality &quot;,&quot;as &quot;,&quot;asensitive &quot;,&quot;asin &quot;,&quot;asymmetric &quot;,&quot;at &quot;,&quot;atan &quot;,&quot;atomic &quot;,&quot;authorization &quot;,&quot;avg &quot;,&quot;begin &quot;,&quot;begin_frame &quot;,&quot;begin_partition &quot;,&quot;between &quot;,&quot;bigint &quot;,&quot;binary &quot;,&quot;blob &quot;,&quot;boolean &quot;,&quot;both &quot;,&quot;by &quot;,&quot;call &quot;,&quot;called &quot;,&quot;cardinality &quot;,&quot;cascaded &quot;,&quot;case &quot;,&quot;cast &quot;,&quot;ceil &quot;,&quot;ceiling &quot;,&quot;char &quot;,&quot;char_length &quot;,&quot;character &quot;,&quot;character_length &quot;,&quot;check &quot;,&quot;classifier &quot;,&quot;clob &quot;,&quot;close &quot;,&quot;coalesce &quot;,&quot;collate &quot;,&quot;collect &quot;,&quot;column &quot;,&quot;commit &quot;,&quot;condition &quot;,&quot;connect &quot;,&quot;constraint &quot;,&quot;contains &quot;,&quot;convert &quot;,&quot;copy &quot;,&quot;corr &quot;,&quot;corresponding &quot;,&quot;cos &quot;,&quot;cosh &quot;,&quot;count &quot;,&quot;covar_pop &quot;,&quot;covar_samp &quot;,&quot;create &quot;,&quot;cross &quot;,&quot;cube &quot;,&quot;cume_dist &quot;,&quot;current &quot;,&quot;current_catalog &quot;,&quot;current_date &quot;,&quot;current_default_transform_group &quot;,&quot;current_path &quot;,&quot;current_role &quot;,&quot;current_row &quot;,&quot;current_schema &quot;,&quot;current_time &quot;,&quot;current_timestamp &quot;,&quot;current_path &quot;,&quot;current_role &quot;,&quot;current_transform_group_for_type &quot;,&quot;current_user &quot;,&quot;cursor &quot;,&quot;cycle &quot;,&quot;date &quot;,&quot;day &quot;,&quot;deallocate &quot;,&quot;dec &quot;,&quot;decimal &quot;,&quot;decfloat &quot;,&quot;declare &quot;,&quot;default &quot;,&quot;define &quot;,&quot;delete &quot;,&quot;dense_rank &quot;,&quot;deref &quot;,&quot;describe &quot;,&quot;deterministic &quot;,&quot;disconnect &quot;,&quot;distinct &quot;,&quot;double &quot;,&quot;drop &quot;,&quot;dynamic &quot;,&quot;each &quot;,&quot;element &quot;,&quot;else &quot;,&quot;empty &quot;,&quot;end &quot;,&quot;end_frame &quot;,&quot;end_partition &quot;,&quot;end-exec &quot;,&quot;equals &quot;,&quot;escape &quot;,&quot;every &quot;,&quot;except &quot;,&quot;exec &quot;,&quot;execute &quot;,&quot;exists &quot;,&quot;exp &quot;,&quot;external &quot;,&quot;extract &quot;,&quot;false &quot;,&quot;fetch &quot;,&quot;filter &quot;,&quot;first_value &quot;,&quot;float &quot;,&quot;floor &quot;,&quot;for &quot;,&quot;foreign &quot;,&quot;frame_row &quot;,&quot;free &quot;,&quot;from &quot;,&quot;full &quot;,&quot;function &quot;,&quot;fusion &quot;,&quot;get &quot;,&quot;global &quot;,&quot;grant &quot;,&quot;group &quot;,&quot;grouping &quot;,&quot;groups &quot;,&quot;having &quot;,&quot;hold &quot;,&quot;hour &quot;,&quot;identity &quot;,&quot;in &quot;,&quot;indicator &quot;,&quot;initial &quot;,&quot;inner &quot;,&quot;inout &quot;,&quot;insensitive &quot;,&quot;insert &quot;,&quot;int &quot;,&quot;integer &quot;,&quot;intersect &quot;,&quot;intersection &quot;,&quot;interval &quot;,&quot;into &quot;,&quot;is &quot;,&quot;join &quot;,&quot;json_array &quot;,&quot;json_arrayagg &quot;,&quot;json_exists &quot;,&quot;json_object &quot;,&quot;json_objectagg &quot;,&quot;json_query &quot;,&quot;json_table &quot;,&quot;json_table_primitive &quot;,&quot;json_value &quot;,&quot;lag &quot;,&quot;language &quot;,&quot;large &quot;,&quot;last_value &quot;,&quot;lateral &quot;,&quot;lead &quot;,&quot;leading &quot;,&quot;left &quot;,&quot;like &quot;,&quot;like_regex &quot;,&quot;listagg &quot;,&quot;ln &quot;,&quot;local &quot;,&quot;localtime &quot;,&quot;localtimestamp &quot;,&quot;log &quot;,&quot;log10 &quot;,&quot;lower &quot;,&quot;match &quot;,&quot;match_number &quot;,&quot;match_recognize &quot;,&quot;matches &quot;,&quot;max &quot;,&quot;member &quot;,&quot;merge &quot;,&quot;method &quot;,&quot;min &quot;,&quot;minute &quot;,&quot;mod &quot;,&quot;modifies &quot;,&quot;module &quot;,&quot;month &quot;,&quot;multiset &quot;,&quot;national &quot;,&quot;natural &quot;,&quot;nchar &quot;,&quot;nclob &quot;,&quot;new &quot;,&quot;no &quot;,&quot;none &quot;,&quot;normalize &quot;,&quot;not &quot;,&quot;nth_value &quot;,&quot;ntile &quot;,&quot;null &quot;,&quot;nullif &quot;,&quot;numeric &quot;,&quot;octet_length &quot;,&quot;occurrences_regex &quot;,&quot;of &quot;,&quot;offset &quot;,&quot;old &quot;,&quot;omit &quot;,&quot;on &quot;,&quot;one &quot;,&quot;only &quot;,&quot;open &quot;,&quot;or &quot;,&quot;order &quot;,&quot;out &quot;,&quot;outer &quot;,&quot;over &quot;,&quot;overlaps &quot;,&quot;overlay &quot;,&quot;parameter &quot;,&quot;partition &quot;,&quot;pattern &quot;,&quot;per &quot;,&quot;percent &quot;,&quot;percent_rank &quot;,&quot;percentile_cont &quot;,&quot;percentile_disc &quot;,&quot;period &quot;,&quot;portion &quot;,&quot;position &quot;,&quot;position_regex &quot;,&quot;power &quot;,&quot;precedes &quot;,&quot;precision &quot;,&quot;prepare &quot;,&quot;primary &quot;,&quot;procedure &quot;,&quot;ptf &quot;,&quot;range &quot;,&quot;rank &quot;,&quot;reads &quot;,&quot;real &quot;,&quot;recursive &quot;,&quot;ref &quot;,&quot;references &quot;,&quot;referencing &quot;,&quot;regr_avgx &quot;,&quot;regr_avgy &quot;,&quot;regr_count &quot;,&quot;regr_intercept &quot;,&quot;regr_r2 &quot;,&quot;regr_slope &quot;,&quot;regr_sxx &quot;,&quot;regr_sxy &quot;,&quot;regr_syy &quot;,&quot;release &quot;,&quot;result &quot;,&quot;return &quot;,&quot;returns &quot;,&quot;revoke &quot;,&quot;right &quot;,&quot;rollback &quot;,&quot;rollup &quot;,&quot;row &quot;,&quot;row_number &quot;,&quot;rows &quot;,&quot;running &quot;,&quot;savepoint &quot;,&quot;scope &quot;,&quot;scroll &quot;,&quot;search &quot;,&quot;second &quot;,&quot;seek &quot;,&quot;select &quot;,&quot;sensitive &quot;,&quot;session_user &quot;,&quot;set &quot;,&quot;show &quot;,&quot;similar &quot;,&quot;sin &quot;,&quot;sinh &quot;,&quot;skip &quot;,&quot;smallint &quot;,&quot;some &quot;,&quot;specific &quot;,&quot;specifictype &quot;,&quot;sql &quot;,&quot;sqlexception &quot;,&quot;sqlstate &quot;,&quot;sqlwarning &quot;,&quot;sqrt &quot;,&quot;start &quot;,&quot;static &quot;,&quot;stddev_pop &quot;,&quot;stddev_samp &quot;,&quot;submultiset &quot;,&quot;subset &quot;,&quot;substring &quot;,&quot;substring_regex &quot;,&quot;succeeds &quot;,&quot;sum &quot;,&quot;symmetric &quot;,&quot;system &quot;,&quot;system_time &quot;,&quot;system_user &quot;,&quot;table &quot;,&quot;tablesample &quot;,&quot;tan &quot;,&quot;tanh &quot;,&quot;then &quot;,&quot;time &quot;,&quot;timestamp &quot;,&quot;timezone_hour &quot;,&quot;timezone_minute &quot;,&quot;to &quot;,&quot;trailing &quot;,&quot;translate &quot;,&quot;translate_regex &quot;,&quot;translation &quot;,&quot;treat &quot;,&quot;trigger &quot;,&quot;trim &quot;,&quot;trim_array &quot;,&quot;true &quot;,&quot;truncate &quot;,&quot;uescape &quot;,&quot;union &quot;,&quot;unique &quot;,&quot;unknown &quot;,&quot;unnest &quot;,&quot;update   &quot;,&quot;upper &quot;,&quot;user &quot;,&quot;using &quot;,&quot;value &quot;,&quot;values &quot;,&quot;value_of &quot;,&quot;var_pop &quot;,&quot;var_samp &quot;,&quot;varbinary &quot;,&quot;varchar &quot;,&quot;varying &quot;,&quot;versioning &quot;,&quot;when &quot;,&quot;whenever &quot;,&quot;where &quot;,&quot;width_bucket &quot;,&quot;window &quot;,&quot;with &quot;,&quot;within &quot;,&quot;without &quot;,&quot;year &quot;,&quot;add &quot;,&quot;asc &quot;,&quot;collation &quot;,&quot;desc &quot;,&quot;final &quot;,&quot;first &quot;,&quot;last &quot;,&quot;view &quot;].filter(e=&gt;!a.includes(e)),s={begin:ys(/\b/,Es(...i),/\s*\(/),keywords:{built_in:i}};return{name:&quot;SQL &quot;,case_insensitive:!0,illegal:/[{}]|&lt;\//,keywords:{$pattern:/\b[\w\.]+/,keyword:function(e,{exceptions:t,when:n}={}){const r=n;return t=t||[],e.map(e=&gt;e.match(/\|\d+$/)||t.includes(e)?e:r(e)?`${e}|0`:e)}(l,{when:e=&gt;e.length &lt;3}),literal:n,type:r,built_in:[&quot;current_catalog &quot;,&quot;current_date &quot;,&quot;current_default_transform_group &quot;,&quot;current_path &quot;,&quot;current_role &quot;,&quot;current_schema &quot;,&quot;current_transform_group_for_type &quot;,&quot;current_user &quot;,&quot;session_user &quot;,&quot;system_time &quot;,&quot;system_user &quot;,&quot;current_time &quot;,&quot;localtime &quot;,&quot;current_timestamp &quot;,&quot;localtimestamp &quot;]},contains:[{begin:Es(...o),keywords:{$pattern:/[\w\.]+/,keyword:l.concat(o),literal:n,type:r}},{className:&quot;type &quot;,begin:Es(&quot;double precision &quot;,&quot;large object &quot;,&quot;with timezone &quot;,&quot;without timezone &quot;)},s,{className:&quot;variable &quot;,begin:/@[a-z0-9]+/},{className:&quot;string &quot;,variants:[{begin:/&#039;/,end:/&#039;/,contains:[{begin:/&#039;&#039;/}]}]},{begin:/&quot;/,end:/&quot;/,contains:[{begin:/&quot;&quot;/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:&quot;operator &quot;,begin:/[-+*/=%^~]|&amp;&amp;?|\|\|?|!=?|&lt;(?:=&gt;?|&lt;|&gt;)?|&gt;[&gt;=]?/,relevance:0}]}}),Rs.registerLanguage(&quot;curl &quot;,function(e){return{name:&quot;curl &quot;,aliases:[&quot;curl &quot;],keywords:&quot;curl &quot;,case_insensitive:!0,contains:[{className:&quot;literal &quot;,begin:/(--request|-X)\s/,contains:[{className:&quot;symbol &quot;,begin:/(get|post|delete|options|head|put|patch|trace|connect)/,end:/\s/,returnEnd:!0}],returnEnd:!0,relevance:10},{className:&quot;literal &quot;,begin:/--/,end:/[\s &quot;]/,returnEnd:!0,relevance:0},{className:&quot;literal &quot;,begin:/-\w/,end:/[\s &quot;]/,returnEnd:!0,relevance:0},{className:&quot;string &quot;,begin:/&quot;/,end:/&quot;/,contains:[e.BACKSLASH_ESCAPE,{className:&quot;variable &quot;,begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]}],relevance:0},{className:&quot;string &quot;,begin:/\\&quot;/,relevance:0},{className:&quot;string &quot;,begin:/&#039;/,end:/&#039;/,relevance:0},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:&quot;number &quot;,variants:[{begin:e.C_NUMBER_RE}],relevance:0},{match:/(\/[a-z._-]+)+/}]}}),Rs.registerLanguage(&quot;json &quot;,function(e){const t={literal:&quot;true false null &quot;},n=[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],r=[e.QUOTE_STRING_MODE,e.C_NUMBER_MODE],a={end:&quot;,&quot;,endsWithParent:!0,excludeEnd:!0,contains:r,keywords:t},o={begin:/\{/,end:/\}/,contains:[{className:&quot;attr &quot;,begin:/&quot;/,end:/&quot;/,contains:[e.BACKSLASH_ESCAPE],illegal:&quot;\\n &quot;},e.inherit(a,{begin:/:/})].concat(n),illegal:&quot;\\S &quot;},i={begin:&quot;\\[&quot;,end:&quot;\\]&quot;,contains:[e.inherit(a)],illegal:&quot;\\S &quot;};return r.push(o,i),n.forEach(function(e){r.push(e)}),{name:&quot;JSON &quot;,contains:r,keywords:t,illegal:&quot;\\S &quot;}});const Cc=[&quot;children &quot;,&quot;className &quot;,&quot;disabled &quot;];function Ac(e){let{children:t,className:n=&quot;&quot;,disabled:r=!1}=e,a=As(e,Cc);return c.createElement(&quot;button &quot;,ws({disabled:r,className:`px-4 h-8 whitespace-nowrap border-b\n            text-xs uppercase tracking-wider font-bold rounded-sm\n            shadow-md\n            transform\n            transition-animation\n            hover:shadow-lg\n            active:shadow-inner\n            active:translate-y-px\n            ${r?&quot;opacity-50 &quot;:&quot;opacity-100 &quot;}\n            ${n}\n            `},a),t)}function Ic({solution:e}){return c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 gap-2 &quot;},e.description &amp;&amp;c.createElement(&quot;p &quot;,null,e.description),e.action_description &amp;&amp;c.createElement(&quot;p &quot;,null,e.action_description),c.createElement(&quot;ul &quot;,{className:&quot;grid grid-cols-1 gap-1 text-sm &quot;},Object.entries(e.links).map(([e,t],n)=&gt;c.createElement(&quot;li &quot;,{key:n},c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;underline text-emerald-700 hover:text-emerald-800 &quot;},e)))))}function kc({solution:e}){const[t,n]=c.useState(!1),[r,a]=c.useState(null);function o(e){e.preventDefault(),location.reload()}return c.createElement(c.Fragment,null,null===r &amp;&amp;c.createElement(c.Fragment,null,c.createElement(Ac,{onClick:async function(){if(!t)try{if(n(!0),!e.execute_endpoint)return;const t=await fetch(e.execute_endpoint,{method:&quot;POST &quot;,headers:{&quot;Content-Type &quot;:&quot;application/json &quot;,Accept:&quot;application/json &quot;},body:JSON.stringify({solution:e.class,parameters:e.run_parameters})});a(t.status &gt;=200 &amp;&amp;t.status &lt;300)}catch(e){console.error(e),a(!1)}finally{n(!1)}},disabled:t,className:&quot;mb-4 inline-flex items-center gap-2 bg-emerald-600 border-emerald-500/25 text-white &quot;},t?c.createElement(&quot;span &quot;,null,&quot;Running...&quot;):c.createElement(c.Fragment,null,c.createElement(oi,{className:&quot;opacity-50 &quot;,icon:_i}),e.run_button_text||&quot;Run &quot;)),c.createElement(Ic,{solution:e})),!0===r &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;&quot;},&quot;The solution was executed &quot;,c.createElement(&quot;strong &quot;,null,&quot;successfully &quot;),&quot;.&quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;a &quot;,{href:&quot;#&quot;,className:&quot;mt-2 inline-flex items-center gap-2 underline text-emerald-700 hover:text-emerald-800 &quot;,onClick:o},c.createElement(oi,{icon:Ri,className:&quot;text-sm opacity-50 &quot;}),&quot;Refresh now &quot;)),!1===r &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;p &quot;,{className:&quot;bg-red-200 px-4 py-2 &quot;},&quot;Something &quot;,c.createElement(&quot;strong &quot;,null,&quot;went wrong &quot;),&quot;. Please try refreshing the page and try again.&quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;a &quot;,{href:&quot;#&quot;,className:&quot;mt-2 inline-flex items-center gap-2 underline text-red-700 hover:text-red-800 &quot;,onClick:o},c.createElement(oi,{icon:Ri,className:&quot;text-sm opacity-50 &quot;}),&quot;Refresh now &quot;))))}function xc({solution:e,isOpen:t=!1,isCollapsible:n=!0,canExecute:r=!1}){const[a,o]=c.useState(t);return c.createElement(&quot;section &quot;,null,c.createElement(&quot;header &quot;,{className:&quot;group mb-4 &quot;},n?c.createElement(&quot;button &quot;,{className:&quot;flex items-center justify-start &quot;,onClick:()=&gt;{o(!a)}},c.createElement(&quot;span &quot;,{className:&quot;w-6 -ml-6 &quot;},c.createElement(oi,{icon:li,className:&quot;group-hover:opacity-50 opacity-0 text-sm transform transition &quot;+(a?&quot;&quot;:&quot;-rotate-90 &quot;)})),c.createElement(&quot;h2 &quot;,{className:&quot;min-w-0 truncate font-semibold leading-snug &quot;},e.title)):c.createElement(&quot;h2 &quot;,{className:&quot;truncate font-semibold leading-snug &quot;},e.title)),c.createElement(&quot;div &quot;,{className:a?&quot;&quot;:&quot;hidden &quot;},c.createElement(e.is_runnable &amp;&amp;r?kc:Ic,{solution:e})))}function _c(){const{solutions:e}=c.useContext(Ee),[t,n]=c.useState(!1),[r,a]=c.useState(!0);return c.useEffect(()=&gt;{try{(async()=&gt;{var t;if(null==(t=e[0])||!t.execute_endpoint)return;const r=await(await fetch(e[0].execute_endpoint.replace(&quot;execute-solution &quot;,&quot;health-check &quot;))).json();n(r.can_execute_commands)})()}catch(e){console.error(e),n(!1)}},[]),c.createElement(c.Fragment,null,r?c.createElement(&quot;aside &quot;,{id:&quot;solution &quot;,className:&quot;flex flex-col lg:w-2/5 flex-none &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex-grow px-6 sm:px-10 py-8 bg-emerald-300 text-gray-800 &quot;},c.createElement(&quot;button &quot;,{onClick:()=&gt;a(!1),className:&quot;absolute top-3 right-4 leading-none text-emerald-500 hover:text-emerald-700 text-sm &quot;},c.createElement(oi,{icon:Li})),e.map((n,r)=&gt;c.createElement(&quot;div &quot;,{key:r},c.createElement(xc,{solution:n,canExecute:t,isOpen:0===r,isCollapsible:e.length &gt;1}),r!==e.length-1 &amp;&amp;c.createElement(&quot;hr &quot;,{className:&quot;my-4 border-t border-gray-800/20 &quot;}))))):c.createElement(&quot;button &quot;,{onClick:()=&gt;a(!0),className:&quot;\n        absolute -top-3 -right-3 z-20\n        w-6 h-6 rounded-full flex items-center justify-center\n        text-xs bg-emerald-500 text-white hover:shadow-lg\n        shadow-md\n        active:shadow-sm active:translate-y-px &quot;},c.createElement(oi,{icon:yi})))}var Lc={prefix:&quot;fab &quot;,iconName:&quot;laravel &quot;,icon:[512,512,[],&quot;f3bd &quot;,&quot;M504.4 115.8a5.72 5.72 0 0 0 -.28-.68 8.52 8.52 0 0 0 -.53-1.25 6 6 0 0 0 -.54-.71 9.36 9.36 0 0 0 -.72-.94c-.23-.22-.52-.4-.77-.6a8.84 8.84 0 0 0 -.9-.68L404.4 55.55a8 8 0 0 0 -8 0L300.1 111h0a8.07 8.07 0 0 0 -.88 .69 7.68 7.68 0 0 0 -.78 .6 8.23 8.23 0 0 0 -.72 .93c-.17 .24-.39 .45-.54 .71a9.7 9.7 0 0 0 -.52 1.25c-.08 .23-.21 .44-.28 .68a8.08 8.08 0 0 0 -.28 2.08V223.2l-80.22 46.19V63.44a7.8 7.8 0 0 0 -.28-2.09c-.06-.24-.2-.45-.28-.68a8.35 8.35 0 0 0 -.52-1.24c-.14-.26-.37-.47-.54-.72a9.36 9.36 0 0 0 -.72-.94 9.46 9.46 0 0 0 -.78-.6 9.8 9.8 0 0 0 -.88-.68h0L115.6 1.07a8 8 0 0 0 -8 0L11.34 56.49h0a6.52 6.52 0 0 0 -.88 .69 7.81 7.81 0 0 0 -.79 .6 8.15 8.15 0 0 0 -.71 .93c-.18 .25-.4 .46-.55 .72a7.88 7.88 0 0 0 -.51 1.24 6.46 6.46 0 0 0 -.29 .67 8.18 8.18 0 0 0 -.28 2.1v329.7a8 8 0 0 0 4 6.95l192.5 110.8a8.83 8.83 0 0 0 1.33 .54c.21 .08 .41 .2 .63 .26a7.92 7.92 0 0 0 4.1 0c.2-.05 .37-.16 .55-.22a8.6 8.6 0 0 0 1.4-.58L404.4 400.1a8 8 0 0 0 4-6.95V287.9l92.24-53.11a8 8 0 0 0 4-7V117.9A8.63 8.63 0 0 0 504.4 115.8zM111.6 17.28h0l80.19 46.15-80.2 46.18L31.41 63.44zm88.25 60V278.6l-46.53 26.79-33.69 19.4V123.5l46.53-26.79zm0 412.8L23.37 388.5V77.32L57.06 96.7l46.52 26.8V338.7a6.94 6.94 0 0 0 .12 .9 8 8 0 0 0 .16 1.18h0a5.92 5.92 0 0 0 .38 .9 6.38 6.38 0 0 0 .42 1v0a8.54 8.54 0 0 0 .6 .78 7.62 7.62 0 0 0 .66 .84l0 0c.23 .22 .52 .38 .77 .58a8.93 8.93 0 0 0 .86 .66l0 0 0 0 92.19 52.18zm8-106.2-80.06-45.32 84.09-48.41 92.26-53.11 80.13 46.13-58.8 33.56zm184.5 4.57L215.9 490.1V397.8L346.6 323.2l45.77-26.15zm0-119.1L358.7 250l-46.53-26.79V131.8l33.69 19.4L392.4 178zm8-105.3-80.2-46.17 80.2-46.16 80.18 46.15zm8 105.3V178L455 151.2l33.68-19.4v91.39h0z &quot;]};function Pc(){const e=c.useContext(Ee);return c.createElement(&quot;span &quot;,{className:&quot;py-1 px-4 items-center flex gap-3 rounded-sm ~bg-gray-500/5 &quot;},c.createElement(Vs,{path:e.exception_class}))}function Mc({githubLink:e}){return c.createElement(&quot;section &quot;,{className:&quot;flex flex-col flex-grow px-6 sm:px-10 py-8 bg-red-600 text-red-100 shadow-lg gap-3 &quot;},c.createElement(&quot;h2 &quot;,{className:&quot;text-xl font-semibold leading-snug &quot;},&quot;Something went wrong in Ignition!&quot;),c.createElement(&quot;p &quot;,{className:&quot;text-base &quot;},&quot;An error occurred in Ignition &#039;s UI. Please open an issue on &quot;,&quot;&quot;,c.createElement(&quot;a &quot;,{href:e,target:&quot;_blank &quot;,className:&quot;underline &quot;},&quot;the Ignition GitHub repo &quot;),&quot;&quot;,&quot;and make sure to include any errors or warnings in the developer console.&quot;))}class Dc extends c.Component{constructor(e){super(e),this.state={error:null}}static getDerivedStateFromError(e){return{error:e}}render(){const{error:e}=this.state;if(e){var t,n;let r=&quot;https://github.com/spatie/ignition/issues &quot;;if(e instanceof Error){const t=`\n**Please include some context and the contents of the console in your browser &#039;s developer tools.**\n\n## JavaScript Error\n\`\`\`\n${e.stack}\n\`\`\`\n\n## Reproduction Steps\nPlease tell us what you were doing when this error occurred, so we can more easily debug it and find a solution.\n\n1. &#8230;\n\n## User Agent\n\`\`\`\n${navigator.userAgent}\n\`\`\`\n`;r=`https://github.com/spatie/ignition/issues/new?title=${e.name}: ${e.message}&amp;labels=bug &amp;body=${encodeURIComponent(t)}`}return(null==(t=(n=this.props).fallbackComponent)?void 0:t.call(n,r))||c.createElement(Mc,{githubLink:r})}return this.props.children}}function Uc(){var e;const t=c.useContext(Ee),n=t.solutions.length &gt;0,r=!(null==(e=t.context_items.env)||!e.laravel_version);return c.createElement(Dc,null,c.createElement(&quot;section &quot;,{className:&quot;lg:flex items-stretch bg-white dark:shadow-none dark:bg-gray-800/50 dark:bg-gradient-to-bl from-gray-700/50 via-transparent dark:ring-1 dark:ring-inset dark:ring-white/5 rounded-lg shadow-2xl shadow-gray-500/20 &quot;},c.createElement(&quot;main &quot;,{id:&quot;exception &quot;,className:&quot;z-10 flex-grow min-w-0 &quot;},c.createElement(&quot;div &quot;,{className:&quot;overflow-hidden &quot;},c.createElement(&quot;div &quot;,{className:&quot;px-6 sm:px-10 py-8 overflow-x-auto &quot;},c.createElement(&quot;header &quot;,{className:&quot;flex items-center justify-between gap-2 &quot;},c.createElement(Pc,null),c.createElement(&quot;div &quot;,{className:&quot;grid grid-flow-col justify-end gap-4 text-sm ~text-gray-500 &quot;},c.createElement(&quot;span &quot;,null,c.createElement(&quot;span &quot;,{className:&quot;tracking-wider &quot;},&quot;PHP &quot;),&quot;&#160;&quot;,t.language_version),t.framework_version &amp;&amp;c.createElement(&quot;span &quot;,{className:&quot;inline-flex items-center gap-1 &quot;},c.createElement(oi,{icon:r?Lc:di}),t.framework_version))),c.createElement(Oc,{exceptionClass:t.exception_class,message:t.exception_message})))),n &amp;&amp;c.createElement(_c,null)))}function jc({className:e=&quot;&quot;,githubLink:t}){return c.createElement(&quot;div &quot;,{className:`${e} flex flex-col gap-2 bg-red-50 dark:bg-red-500/10 px-6 py-4`},c.createElement(&quot;h2 &quot;,{className:&quot;font-semibold leading-snug &quot;},&quot;Something went wrong in Ignition!&quot;),c.createElement(&quot;p &quot;,{className:&quot;text-base &quot;},&quot;An error occurred in Ignition &#039;s UI. Please open an issue on &quot;,&quot;&quot;,c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;underline &quot;},&quot;the Ignition GitHub repo &quot;),&quot;&quot;,&quot;and make sure to include any errors or warnings in the developer console.&quot;))}function Fc({title:e,children:t,anchor:n}){return c.createElement(&quot;section &quot;,{className:&quot;py-10 ~bg-white px-6 sm:px-10 min-w-0 &quot;},c.createElement(&quot;a &quot;,{id:`context-${n}`,className:&quot;scroll-target &quot;}),c.createElement(&quot;h2 &quot;,{className:&quot;font-bold text-xs ~text-gray-500 uppercase tracking-wider &quot;},e),c.createElement(&quot;div &quot;,{className:&quot;mt-3 grid grid-cols-1 gap-10 &quot;},c.createElement(Dc,{fallbackComponent:e=&gt;c.createElement(jc,{githubLink:e})},t)))}var zc=new Map,Hc=new WeakMap,Bc=0,Vc=c.createContext({inView:[],setInView:be});function Wc({icon:e,title:t,children:n,anchor:r}){const a=function(e){const{setInView:t}=c.useContext(Vc),{ref:n,inView:r}=function(e){var t=void 0===e?{}:e,n=t.threshold,r=t.delay,a=t.trackVisibility,o=t.rootMargin,i=t.root,l=t.triggerOnce,s=t.skip,u=t.initialInView,f=t.fallbackInView,d=c.useRef(),p=c.useState({inView:!!u}),m=p[0],h=p[1],g=c.useCallback(function(e){void 0!==d.current &amp;&amp;(d.current(),d.current=void 0),s||e &amp;&amp;(d.current=function(e,t,n,r){if(void 0===n &amp;&amp;(n={}),void 0===r &amp;&amp;(r=void 0),void 0===window.IntersectionObserver &amp;&amp;void 0!==r){var a=e.getBoundingClientRect();return t(r,{isIntersecting:r,target:e,intersectionRatio:&quot;number &quot;==typeof n.threshold?n.threshold:0,time:0,boundingClientRect:a,intersectionRect:a,rootBounds:a}),function(){}}var o=function(e){var t=function(e){return Object.keys(e).sort().filter(function(t){return void 0!==e[t]}).map(function(t){return t+&quot;_ &quot;+(&quot;root &quot;===t?(n=e.root)?(Hc.has(n)||Hc.set(n,(Bc+=1).toString()),Hc.get(n)):&quot;0 &quot;:e[t]);var n}).toString()}(e),n=zc.get(t);if(!n){var r,a=new Map,o=new IntersectionObserver(function(t){t.forEach(function(t){var n,o=t.isIntersecting &amp;&amp;r.some(function(e){return t.intersectionRatio &gt;=e});e.trackVisibility &amp;&amp;void 0===t.isVisible &amp;&amp;(t.isVisible=o),null==(n=a.get(t.target))||n.forEach(function(e){e(o,t)})})},e);r=o.thresholds||(Array.isArray(e.threshold)?e.threshold:[e.threshold||0]),zc.set(t,n={id:t,observer:o,elements:a})}return n}(n),i=o.id,l=o.observer,s=o.elements,c=s.get(e)||[];return s.has(e)||s.set(e,c),c.push(t),l.observe(e),function(){c.splice(c.indexOf(t),1),0===c.length &amp;&amp;(s.delete(e),l.unobserve(e)),0===s.size &amp;&amp;(l.disconnect(),zc.delete(i))}}(e,function(e,t){h({inView:e,entry:t}),t.isIntersecting &amp;&amp;l &amp;&amp;d.current &amp;&amp;(d.current(),d.current=void 0)},{root:i,rootMargin:o,threshold:n,trackVisibility:a,delay:r},f))},[Array.isArray(n)?n.toString():n,i,o,l,s,a,f,r]);c.useEffect(function(){d.current||!m.entry||l||s||h({inView:!!u})});var v=[g,m.inView,m.entry];return v.ref=v[0],v.inView=v[1],v.entry=v[2],v}({rootMargin:&quot;-45% 0px -45%&quot;});return c.useEffect(()=&gt;{t(r?t=&gt;[...t,e]:t=&gt;t.filter(t=&gt;t!==e))},[r]),n}(t);return c.createElement(&quot;div &quot;,{ref:a},c.createElement(&quot;a &quot;,{id:`context-${r}`,className:&quot;scroll-target &quot;}),c.createElement(&quot;h1 &quot;,{className:&quot;mb-2 flex items-center gap-2 font-semibold text-lg ~text-indigo-600 &quot;},t,c.createElement(&quot;span &quot;,{className:&quot;opacity-50 ~text-indigo-600 text-sm &quot;},e)),c.createElement(Dc,{fallbackComponent:e=&gt;c.createElement(jc,{githubLink:e})},n))}function Gc({children:e,className:t=&quot;&quot;,color:n=&quot;gray &quot;}){return c.createElement(&quot;div &quot;,{className:`${t} ${{red:&quot;~text-red-600 border-red-500/50 &quot;,orange:&quot;~text-orange-600 border-orange-500/50 &quot;,green:&quot;~text-emerald-600 border-emerald-500/50 &quot;,blue:&quot;~text-indigo-600 border-indigo-500/50 &quot;,purple:&quot;~text-violet-600 border-violet-600/50 &quot;,gray:&quot;~text-gray-500 border-gray-500/50 &quot;}[n]} px-1.5 py-0.5 rounded-sm bg-opacity-20 border text-xs font-medium uppercase tracking-wider`},e)}function Yc({request:e,requestData:t,headers:n}){const r=c.useMemo(()=&gt;function(e,t,n){if(!e.url||!e.method)return null;const r=[`curl &quot;${e.url}&quot;`];r.push(`   -X ${e.method}`),Object.entries(n||{}).map(function([e,t]){r.push(`   -H &#039;${e}: ${t}&#039;`)});const a=function(e,t){var n,r;return e.body?null!=(n=t[&quot;content-type &quot;])&amp;&amp;null!=(r=n[0])&amp;&amp;r.includes(&quot;application/json &quot;)?`   -d ${JSON.stringify(e.body)}`:`   ${Object.entries(e.body||{}).map(function([e,t]){return`-F &#039;${e}=${t}&#039;`}).join(&quot;&quot;)}`:null}(t,n);return a &amp;&amp;r.push(a),r.join(&quot;\\\n &quot;).trimEnd().replace(/\s\\$/g,&quot;;&quot;)}(e,t,n),[e,t,n]);return c.createElement(&quot;div &quot;,null,c.createElement(&quot;div &quot;,{className:&quot;text-lg font-semibold flex items-center gap-2 &quot;},c.createElement(&quot;span &quot;,{className:&quot;~text-indigo-600 &quot;},e.url),c.createElement(Gc,{color:&quot;DELETE &quot;==e.method.toUpperCase()?&quot;red &quot;:&quot;blue &quot;},e.method.toUpperCase())),r &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;mt-2 &quot;},c.createElement(wc,{value:r,language:&quot;curl &quot;})))}const $c=[&quot;children &quot;,&quot;className &quot;];function Xc(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,$c);return t?c.createElement(&quot;dl &quot;,ws({className:`grid grid-cols-1 gap-2 ${n}`},r),t):null}function Kc({items:e}){return c.createElement(Xc,null,Object.entries(e||{}).map(([e,t])=&gt;c.createElement(Xc.Row,{key:e,label:e,value:t})))}Xc.Row=function({value:e=&quot;&quot;,label:t=&quot;&quot;,className:n=&quot;&quot;,stacked:r=!1}){let a=e;const[o,i]=c.useState(!1);let l;return c.isValidElement(e)?a=e:&quot;boolean &quot;==typeof e?a=c.createElement(&quot;span &quot;,{className:(e?&quot;text-emerald-500 bg-emerald-500/5 &quot;:&quot;text-red-500 bg-red-800/5 &quot;)+&quot;text-sm px-3 py-2 inline-flex gap-2 items-center justify-center &quot;},c.createElement(oi,{className:`${e} ? &#039;text-emerald-500 &#039;: &#039;text-red-500`,icon:e?ci:Li}),c.createElement(&quot;span &quot;,{className:&quot;font-mono &quot;},e?&quot;true &quot;:&quot;false &quot;)):&quot;object &quot;==typeof e?a=c.createElement(wc,{value:Tc(e),language:&quot;json &quot;}):&quot;string &quot;==typeof e?a=c.createElement(wc,{value:e}):&quot;number &quot;==typeof e &amp;&amp;(a=c.createElement(wc,{value:String(e)})),c.createElement(&quot;div &quot;,{className:`${r?&quot;flex flex-col &quot;:&quot;flex items-baseline gap-10 &quot;}  ${n}`},c.createElement(&quot;dt &quot;,{className:`\n                ${r?&quot;self-start pt-2 pb-1.5 leading-tight &quot;:o?&quot;flex-grow truncate min-w-[8rem] max-w-max &quot;:&quot;flex-none truncate w-32 &quot;}\n            `,onMouseOver:()=&gt;{l=setTimeout(()=&gt;i(!0),500)},onMouseOut:()=&gt;{clearTimeout(l),i(!1)}},t),c.createElement(&quot;dd &quot;,{className:&quot;flex-grow min-w-0 &quot;},a))};var qc=function(e){return null==e},Jc=Object.prototype.hasOwnProperty,Qc=function(e){if(null==e)return!0;if(bt(e)&amp;&amp;(tt(e)||&quot;string &quot;==typeof e||&quot;function &quot;==typeof e.splice||rt(e)||ft(e)||et(e)))return!e.length;var t=pn(e);if(&quot;[object Map]&quot;==t||&quot;[object Set]&quot;==t)return!e.size;if(ht(e))return!Et(e).length;for(var n in e)if(Jc.call(e,n))return!1;return!0},Zc=Object.prototype.hasOwnProperty,eu=function(e,t,n){var r=e[t];Zc.call(e,t)&amp;&amp;Nt(r,n)&amp;&amp;(void 0!==n||t in e)||Xe(e,t,n)},tu=function(e,t,n,r){if(!je(e))return e;for(var a=-1,o=(t=Ln(t,e)).length,i=o-1,l=e;null!=l &amp;&amp;++a &lt;o;){var s=Pn(t[a]),c=n;if(&quot;__proto__ &quot;===s||&quot;constructor &quot;===s||&quot;prototype &quot;===s)return e;if(a!=i){var u=l[s];void 0===(c=r?r(u,s,l):void 0)&amp;&amp;(c=je(u)?u:ot(t[a+1])?[]:{})}eu(l,s,c),l=l[s]}return e},nu=gt(Object.getPrototypeOf,Object),ru=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)Xt(t,Zt(e)),e=nu(e);return t}:qt,au=Object.prototype.hasOwnProperty,ou=function(e){return bt(e)?pt(e,!0):function(e){if(!je(e))return function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}(e);var t=ht(e),n=[];for(var r in e)(&quot;constructor &quot;!=r||!t &amp;&amp;au.call(e,r))&amp;&amp;n.push(r);return n}(e)},iu=function(e,t){return function(e,t){if(null==e)return{};var n=An(function(e){return Kt(e,ou,ru)}(e),function(e){return[e]});return t=jn(t),function(e,t,n){for(var r=-1,a=t.length,o={};++r &lt;a;){var i=t[r],l=Mn(e,i);n(l,i)&amp;&amp;tu(o,Ln(i,e),l)}return o}(e,n,function(e,n){return t(e,n[0])})}(e,function(e){if(&quot;function &quot;!=typeof e)throw new TypeError(&quot;Expected a function &quot;);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}(jn(t)))};function lu({headers:e}){let t=iu(e,qc);return t=iu(t,Qc),c.createElement(Kc,{items:t})}function su({requestData:e}){return c.createElement(Kc,{items:e.queryString||{}})}function cu(){var e,t;const n=null==(e=c.useContext(Ee).context_items)||null==(t=e.request_data)?void 0:t.body;return n?c.createElement(wc,{value:Tc(n)}):null}function uu(){var e,t;const n=null==(e=c.useContext(Ee).context_items)||null==(t=e.request_data)?void 0:t.files;return n?c.createElement(&quot;div &quot;,{className:&quot;col-span-2 &quot;},c.createElement(wc,{value:Tc(n)})):null}function fu({session:e}){return c.createElement(Kc,{items:e})}function du({cookies:e}){return c.createElement(Kc,{items:e})}function pu(){const e=c.useContext(Ee).context_items.livewire;return e?c.createElement(Kc,{items:e.data}):null}function mu(){const e=c.useContext(Ee).context_items.livewire;return e?c.createElement(Kc,{items:{Component:e.component_class,Alias:e.component_alias,ID:e.component_id}}):null}function hu(){const e=c.useContext(Ee).context_items.livewire;return e?c.createElement(Xc,null,e.updates.map(({payload:e,type:t},n)=&gt;c.createElement(Xc.Row,{key:n,label:t,value:e}))):null}const gu=[&quot;children &quot;,&quot;className &quot;];function vu(e){let{children:t,className:n=&quot;&quot;}=e,r=As(e,gu);return c.createElement(c.Fragment,null,t &amp;&amp;c.createElement(&quot;ul &quot;,ws({className:`gap-y-2 flex flex-col ${n}`},r),t))}function yu({route:e}){var t;return c.createElement(Xc,null,c.createElement(Xc.Row,{value:e.controllerAction,label:&quot;Controller &quot;}),e.route &amp;&amp;c.createElement(Xc.Row,{value:e.route,label:&quot;Route name &quot;}),!(null==(t=e.routeParameters)||!t.length)&amp;&amp;c.createElement(Xc.Row,{value:c.createElement(Xc,null,Object.entries(e.routeParameters).map(([e,t])=&gt;c.createElement(Xc.Row,{stacked:!0,key:e,label:e,value:t}))),label:&quot;Route parameters &quot;}),e.middleware &amp;&amp;c.createElement(Xc.Row,{value:c.createElement(vu,null,(e.middleware||[]).map((e,t)=&gt;c.createElement(vu.Item,{key:t,value:e}))),label:&quot;Middleware &quot;}))}vu.Item=function({value:e=&quot;&quot;}){let t=e;return c.isValidElement(e)?t=e:&quot;object &quot;==typeof e?t=c.createElement(wc,{value:Tc(e),language:&quot;json &quot;}):&quot;string &quot;==typeof e &amp;&amp;(t=c.createElement(wc,{value:e})),c.createElement(&quot;li &quot;,null,t)};const Eu=[&quot;value &quot;];function bu(e){let{value:t}=e,n=As(e,Eu);return c.useEffect(()=&gt;{const e=t.match(/sf-dump-\d+/);e &amp;&amp;window.Sfdump(e[0])},[t]),c.createElement(&quot;div &quot;,ws({className:&quot;~bg-gray-500/5 px-4 py-2 &quot;,dangerouslySetInnerHTML:{__html:t}},n))}function Tu(){const e=c.useContext(Ee).context_items.view;return e?c.createElement(Xc,null,c.createElement(Xc.Row,{value:c.createElement(Ys,{path:e.view}),label:&quot;View &quot;}),e.data &amp;&amp;c.createElement(Xc.Row,{value:c.createElement(Xc,null,Object.entries(e.data).map(([e,t])=&gt;c.createElement(Xc.Row,{stacked:!0,key:e,label:e,value:c.createElement(bu,{value:t})}))),label:&quot;Data &quot;})):null}var Nu=we(function(e){!function(){var t=&quot;ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/&quot;,n={rotl:function(e,t){return e &lt;&lt;t|e &gt;&gt;&gt;32-t},rotr:function(e,t){return e &lt;&lt;32-t|e &gt;&gt;&gt;t},endian:function(e){if(e.constructor==Number)return 16711935 &amp;n.rotl(e,8)|4278255360 &amp;n.rotl(e,24);for(var t=0;t &lt;e.length;t++)e[t]=n.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e &gt;0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],n=0,r=0;n &lt;e.length;n++,r+=8)t[r &gt;&gt;&gt;5]|=e[n]&lt;&lt;24-r%32;return t},wordsToBytes:function(e){for(var t=[],n=0;n &lt;32*e.length;n+=8)t.push(e[n &gt;&gt;&gt;5]&gt;&gt;&gt;24-n%32 &amp;255);return t},bytesToHex:function(e){for(var t=[],n=0;n &lt;e.length;n++)t.push((e[n]&gt;&gt;&gt;4).toString(16)),t.push((15 &amp;e[n]).toString(16));return t.join(&quot;&quot;)},hexToBytes:function(e){for(var t=[],n=0;n &lt;e.length;n+=2)t.push(parseInt(e.substr(n,2),16));return t},bytesToBase64:function(e){for(var n=[],r=0;r &lt;e.length;r+=3)for(var a=e[r]&lt;&lt;16|e[r+1]&lt;&lt;8|e[r+2],o=0;o &lt;4;o++)n.push(8*r+6*o &lt;=8*e.length?t.charAt(a &gt;&gt;&gt;6*(3-o)&amp;63):&quot;=&quot;);return n.join(&quot;&quot;)},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,&quot;&quot;);for(var n=[],r=0,a=0;r &lt;e.length;a=++r%4)0!=a &amp;&amp;n.push((t.indexOf(e.charAt(r-1))&amp;Math.pow(2,-2*a+8)-1)&lt;&lt;2*a|t.indexOf(e.charAt(r))&gt;&gt;&gt;6-2*a);return n}};e.exports=n}()}),Ru={utf8:{stringToBytes:function(e){return Ru.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(Ru.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n &lt;e.length;n++)t.push(255 &amp;e.charCodeAt(n));return t},bytesToString:function(e){for(var t=[],n=0;n &lt;e.length;n++)t.push(String.fromCharCode(e[n]));return t.join(&quot;&quot;)}}},Su=Ru,wu=function(e){return null!=e &amp;&amp;(Ou(e)||function(e){return &quot;function &quot;==typeof e.readFloatLE &amp;&amp;&quot;function &quot;==typeof e.slice &amp;&amp;Ou(e.slice(0,0))}(e)||!!e._isBuffer)};function Ou(e){return!!e.constructor &amp;&amp;&quot;function &quot;==typeof e.constructor.isBuffer &amp;&amp;e.constructor.isBuffer(e)}var Cu=we(function(e){!function(){var t=Nu,n=Su.utf8,r=wu,a=Su.bin,o=function e(o,i){o.constructor==String?o=i &amp;&amp;&quot;binary &quot;===i.encoding?a.stringToBytes(o):n.stringToBytes(o):r(o)?o=Array.prototype.slice.call(o,0):Array.isArray(o)||o.constructor===Uint8Array||(o=o.toString());for(var l=t.bytesToWords(o),s=8*o.length,c=1732584193,u=-271733879,f=-1732584194,d=271733878,p=0;p &lt;l.length;p++)l[p]=16711935 &amp;(l[p]&lt;&lt;8|l[p]&gt;&gt;&gt;24)|4278255360 &amp;(l[p]&lt;&lt;24|l[p]&gt;&gt;&gt;8);l[s &gt;&gt;&gt;5]|=128 &lt;&lt;s%32,l[14+(s+64 &gt;&gt;&gt;9 &lt;&lt;4)]=s;var m=e._ff,h=e._gg,g=e._hh,v=e._ii;for(p=0;p &lt;l.length;p+=16){var y=c,E=u,b=f,T=d;c=m(c,u,f,d,l[p+0],7,-680876936),d=m(d,c,u,f,l[p+1],12,-389564586),f=m(f,d,c,u,l[p+2],17,606105819),u=m(u,f,d,c,l[p+3],22,-1044525330),c=m(c,u,f,d,l[p+4],7,-176418897),d=m(d,c,u,f,l[p+5],12,1200080426),f=m(f,d,c,u,l[p+6],17,-1473231341),u=m(u,f,d,c,l[p+7],22,-45705983),c=m(c,u,f,d,l[p+8],7,1770035416),d=m(d,c,u,f,l[p+9],12,-1958414417),f=m(f,d,c,u,l[p+10],17,-42063),u=m(u,f,d,c,l[p+11],22,-1990404162),c=m(c,u,f,d,l[p+12],7,1804603682),d=m(d,c,u,f,l[p+13],12,-40341101),f=m(f,d,c,u,l[p+14],17,-1502002290),c=h(c,u=m(u,f,d,c,l[p+15],22,1236535329),f,d,l[p+1],5,-165796510),d=h(d,c,u,f,l[p+6],9,-1069501632),f=h(f,d,c,u,l[p+11],14,643717713),u=h(u,f,d,c,l[p+0],20,-373897302),c=h(c,u,f,d,l[p+5],5,-701558691),d=h(d,c,u,f,l[p+10],9,38016083),f=h(f,d,c,u,l[p+15],14,-660478335),u=h(u,f,d,c,l[p+4],20,-405537848),c=h(c,u,f,d,l[p+9],5,568446438),d=h(d,c,u,f,l[p+14],9,-1019803690),f=h(f,d,c,u,l[p+3],14,-187363961),u=h(u,f,d,c,l[p+8],20,1163531501),c=h(c,u,f,d,l[p+13],5,-1444681467),d=h(d,c,u,f,l[p+2],9,-51403784),f=h(f,d,c,u,l[p+7],14,1735328473),c=g(c,u=h(u,f,d,c,l[p+12],20,-1926607734),f,d,l[p+5],4,-378558),d=g(d,c,u,f,l[p+8],11,-2022574463),f=g(f,d,c,u,l[p+11],16,1839030562),u=g(u,f,d,c,l[p+14],23,-35309556),c=g(c,u,f,d,l[p+1],4,-1530992060),d=g(d,c,u,f,l[p+4],11,1272893353),f=g(f,d,c,u,l[p+7],16,-155497632),u=g(u,f,d,c,l[p+10],23,-1094730640),c=g(c,u,f,d,l[p+13],4,681279174),d=g(d,c,u,f,l[p+0],11,-358537222),f=g(f,d,c,u,l[p+3],16,-722521979),u=g(u,f,d,c,l[p+6],23,76029189),c=g(c,u,f,d,l[p+9],4,-640364487),d=g(d,c,u,f,l[p+12],11,-421815835),f=g(f,d,c,u,l[p+15],16,530742520),c=v(c,u=g(u,f,d,c,l[p+2],23,-995338651),f,d,l[p+0],6,-198630844),d=v(d,c,u,f,l[p+7],10,1126891415),f=v(f,d,c,u,l[p+14],15,-1416354905),u=v(u,f,d,c,l[p+5],21,-57434055),c=v(c,u,f,d,l[p+12],6,1700485571),d=v(d,c,u,f,l[p+3],10,-1894986606),f=v(f,d,c,u,l[p+10],15,-1051523),u=v(u,f,d,c,l[p+1],21,-2054922799),c=v(c,u,f,d,l[p+8],6,1873313359),d=v(d,c,u,f,l[p+15],10,-30611744),f=v(f,d,c,u,l[p+6],15,-1560198380),u=v(u,f,d,c,l[p+13],21,1309151649),c=v(c,u,f,d,l[p+4],6,-145523070),d=v(d,c,u,f,l[p+11],10,-1120210379),f=v(f,d,c,u,l[p+2],15,718787259),u=v(u,f,d,c,l[p+9],21,-343485551),c=c+y &gt;&gt;&gt;0,u=u+E &gt;&gt;&gt;0,f=f+b &gt;&gt;&gt;0,d=d+T &gt;&gt;&gt;0}return t.endian([c,u,f,d])};o._ff=function(e,t,n,r,a,o,i){var l=e+(t &amp;n|~t &amp;r)+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._gg=function(e,t,n,r,a,o,i){var l=e+(t &amp;r|n &amp;~r)+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._hh=function(e,t,n,r,a,o,i){var l=e+(t^n^r)+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._ii=function(e,t,n,r,a,o,i){var l=e+(n^(t|~r))+(a &gt;&gt;&gt;0)+i;return(l &lt;&lt;o|l &gt;&gt;&gt;32-o)+t},o._blocksize=16,o._digestsize=16,e.exports=function(e,n){if(null==e)throw new Error(&quot;Illegal argument &quot;+e);var r=t.wordsToBytes(o(e,n));return n &amp;&amp;n.asBytes?r:n &amp;&amp;n.asString?a.bytesToString(r):t.bytesToHex(r)}}()});function Au({user:e}){return c.createElement(c.Fragment,null,e.email &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;mb-2 flex items-center gap-3 &quot;},c.createElement(&quot;div &quot;,null,c.createElement(&quot;img &quot;,{className:&quot;inline-block h-9 w-9 rounded-full &quot;,alt:e.email,src:`https://gravatar.com/avatar/${Cu(e.email)}/?s=240`})),c.createElement(&quot;div &quot;,{className:&quot;leading-tight &quot;},e.name &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;font-semibold &quot;},e.name),c.createElement(&quot;p &quot;,{className:&quot;text-sm &quot;},e.email))),c.createElement(wc,{value:Tc(e),language:&quot;json &quot;}))}function Iu({children:e,className:t=&quot;&quot;}){return c.createElement(&quot;div &quot;,{className:`${t}`},c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-2 bg-yellow-50 dark:bg-yellow-500/10 px-4 py-2 &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex-shrink-0 &quot;,&quot;aria-hidden &quot;:&quot;true &quot;},c.createElement(oi,{className:&quot;text-yellow-500 &quot;,icon:Ii})),c.createElement(&quot;p &quot;,{className:&quot;text-sm &quot;},e)))}var ku=function(e,t){!0===t &amp;&amp;(t=0);var n=e.indexOf(&quot;://&quot;),r=e.substring(0,n).split(&quot;+&quot;).filter(Boolean);return &quot;number &quot;==typeof t?r[t]:r},xu=function e(t){if(Array.isArray(t))return-1!==t.indexOf(&quot;ssh &quot;)||-1!==t.indexOf(&quot;rsync &quot;);if(&quot;string &quot;!=typeof t)return!1;var n=ku(t);if(t=t.substring(t.indexOf(&quot;://&quot;)+3),e(n))return!0;var r=new RegExp(&quot;.([a-zA-Z\\d]+):(\\d+)/&quot;);return!t.match(r)&amp;&amp;t.indexOf(&quot;@&quot;)&lt;t.indexOf(&quot;:&quot;)},_u=new RegExp(&quot;%[a-f0-9]{2}&quot;,&quot;gi &quot;),Lu=new RegExp(&quot;(%[a-f0-9]{2})+&quot;,&quot;gi &quot;);function Pu(e,t){try{return decodeURIComponent(e.join(&quot;&quot;))}catch(e){}if(1===e.length)return e;var n=e.slice(0,t=t||1),r=e.slice(t);return Array.prototype.concat.call([],Pu(n),Pu(r))}function Mu(e){try{return decodeURIComponent(e)}catch(r){for(var t=e.match(_u),n=1;n &lt;t.length;n++)t=(e=Pu(t,n).join(&quot;&quot;)).match(_u);return e}}var Du=function(e){if(&quot;string &quot;!=typeof e)throw new TypeError(&quot;Expected `encodedURI` to be of type `string`, got `&quot;+typeof e+&quot;`&quot;);try{return e=e.replace(/\+/g,&quot;&quot;),decodeURIComponent(e)}catch(t){return function(e){for(var t={&quot;%FE%FF &quot;:&quot;&#65533;&#65533;&quot;,&quot;%FF%FE &quot;:&quot;&#65533;&#65533;&quot;},n=Lu.exec(e);n;){try{t[n[0]]=decodeURIComponent(n[0])}catch(e){var r=Mu(n[0]);r!==n[0]&amp;&amp;(t[n[0]]=r)}n=Lu.exec(e)}t[&quot;%C2 &quot;]=&quot;&#65533;&quot;;for(var a=Object.keys(t),o=0;o &lt;a.length;o++){var i=a[o];e=e.replace(new RegExp(i,&quot;g &quot;),t[i])}return e}(e)}},Uu=(e,t)=&gt;{if(&quot;string &quot;!=typeof e||&quot;string &quot;!=typeof t)throw new TypeError(&quot;Expected the arguments to be of type `string`&quot;);if(&quot;&quot;===t)return[e];const n=e.indexOf(t);return-1===n?[e]:[e.slice(0,n),e.slice(n+t.length)]},ju=function(e,t){for(var n={},r=Object.keys(e),a=Array.isArray(t),o=0;o &lt;r.length;o++){var i=r[o],l=e[i];(a?-1!==t.indexOf(i):t(i,l,e))&amp;&amp;(n[i]=l)}return n},Fu=we(function(e,t){function n(e){if(&quot;string &quot;!=typeof e||1!==e.length)throw new TypeError(&quot;arrayFormatSeparator must be single character string &quot;)}function r(e,t){return t.encode?t.strict?encodeURIComponent(e).replace(/[!&#039;()*]/g,e=&gt;`%${e.charCodeAt(0).toString(16).toUpperCase()}`):encodeURIComponent(e):e}function a(e,t){return t.decode?Du(e):e}function o(e){return Array.isArray(e)?e.sort():&quot;object &quot;==typeof e?o(Object.keys(e)).sort((e,t)=&gt;Number(e)-Number(t)).map(t=&gt;e[t]):e}function i(e){const t=e.indexOf(&quot;#&quot;);return-1!==t &amp;&amp;(e=e.slice(0,t)),e}function l(e){const t=(e=i(e)).indexOf(&quot;?&quot;);return-1===t?&quot;&quot;:e.slice(t+1)}function s(e,t){return t.parseNumbers &amp;&amp;!Number.isNaN(Number(e))&amp;&amp;&quot;string &quot;==typeof e &amp;&amp;&quot;&quot;!==e.trim()?e=Number(e):!t.parseBooleans||null===e||&quot;true &quot;!==e.toLowerCase()&amp;&amp;&quot;false &quot;!==e.toLowerCase()||(e=&quot;true &quot;===e.toLowerCase()),e}function c(e,t){n((t=Object.assign({decode:!0,sort:!0,arrayFormat:&quot;none &quot;,arrayFormatSeparator:&quot;,&quot;,parseNumbers:!1,parseBooleans:!1},t)).arrayFormatSeparator);const r=function(e){let t;switch(e.arrayFormat){case &quot;index &quot;:return(e,n,r)=&gt;{t=/\[(\d*)\]$/.exec(e),e=e.replace(/\[\d*\]$/,&quot;&quot;),t?(void 0===r[e]&amp;&amp;(r[e]={}),r[e][t[1]]=n):r[e]=n};case &quot;bracket &quot;:return(e,n,r)=&gt;{t=/(\[\])$/.exec(e),r[e=e.replace(/\[\]$/,&quot;&quot;)]=t?void 0!==r[e]?[].concat(r[e],n):[n]:n};case &quot;comma &quot;:case &quot;separator &quot;:return(t,n,r)=&gt;{const o=&quot;string &quot;==typeof n &amp;&amp;n.includes(e.arrayFormatSeparator),i=&quot;string &quot;==typeof n &amp;&amp;!o &amp;&amp;a(n,e).includes(e.arrayFormatSeparator);n=i?a(n,e):n;const l=o||i?n.split(e.arrayFormatSeparator).map(t=&gt;a(t,e)):null===n?n:a(n,e);r[t]=l};default:return(e,t,n)=&gt;{n[e]=void 0!==n[e]?[].concat(n[e],t):t}}}(t),i=Object.create(null);if(&quot;string &quot;!=typeof e)return i;if(!(e=e.trim().replace(/^[?#&amp;]/,&quot;&quot;)))return i;for(const n of e.split(&quot;&amp;&quot;)){if(&quot;&quot;===n)continue;let[e,o]=Uu(t.decode?n.replace(/\+/g,&quot;&quot;):n,&quot;=&quot;);o=void 0===o?null:[&quot;comma &quot;,&quot;separator &quot;].includes(t.arrayFormat)?o:a(o,t),r(a(e,t),o,i)}for(const e of Object.keys(i)){const n=i[e];if(&quot;object &quot;==typeof n &amp;&amp;null!==n)for(const e of Object.keys(n))n[e]=s(n[e],t);else i[e]=s(n,t)}return!1===t.sort?i:(!0===t.sort?Object.keys(i).sort():Object.keys(i).sort(t.sort)).reduce((e,t)=&gt;{const n=i[t];return e[t]=Boolean(n)&amp;&amp;&quot;object &quot;==typeof n &amp;&amp;!Array.isArray(n)?o(n):n,e},Object.create(null))}t.extract=l,t.parse=c,t.stringify=(e,t)=&gt;{if(!e)return &quot;&quot;;n((t=Object.assign({encode:!0,strict:!0,arrayFormat:&quot;none &quot;,arrayFormatSeparator:&quot;,&quot;},t)).arrayFormatSeparator);const a=n=&gt;t.skipNull &amp;&amp;null==e[n]||t.skipEmptyString &amp;&amp;&quot;&quot;===e[n],o=function(e){switch(e.arrayFormat){case &quot;index &quot;:return t=&gt;(n,a)=&gt;{const o=n.length;return void 0===a||e.skipNull &amp;&amp;null===a||e.skipEmptyString &amp;&amp;&quot;&quot;===a?n:null===a?[...n,[r(t,e),&quot;[&quot;,o,&quot;]&quot;].join(&quot;&quot;)]:[...n,[r(t,e),&quot;[&quot;,r(o,e),&quot;]=&quot;,r(a,e)].join(&quot;&quot;)]};case &quot;bracket &quot;:return t=&gt;(n,a)=&gt;void 0===a||e.skipNull &amp;&amp;null===a||e.skipEmptyString &amp;&amp;&quot;&quot;===a?n:null===a?[...n,[r(t,e),&quot;[]&quot;].join(&quot;&quot;)]:[...n,[r(t,e),&quot;[]=&quot;,r(a,e)].join(&quot;&quot;)];case &quot;comma &quot;:case &quot;separator &quot;:return t=&gt;(n,a)=&gt;null==a||0===a.length?n:0===n.length?[[r(t,e),&quot;=&quot;,r(a,e)].join(&quot;&quot;)]:[[n,r(a,e)].join(e.arrayFormatSeparator)];default:return t=&gt;(n,a)=&gt;void 0===a||e.skipNull &amp;&amp;null===a||e.skipEmptyString &amp;&amp;&quot;&quot;===a?n:null===a?[...n,r(t,e)]:[...n,[r(t,e),&quot;=&quot;,r(a,e)].join(&quot;&quot;)]}}(t),i={};for(const t of Object.keys(e))a(t)||(i[t]=e[t]);const l=Object.keys(i);return!1!==t.sort &amp;&amp;l.sort(t.sort),l.map(n=&gt;{const a=e[n];return void 0===a?&quot;&quot;:null===a?r(n,t):Array.isArray(a)?a.reduce(o(n),[]).join(&quot;&amp;&quot;):r(n,t)+&quot;=&quot;+r(a,t)}).filter(e=&gt;e.length &gt;0).join(&quot;&amp;&quot;)},t.parseUrl=(e,t)=&gt;{t=Object.assign({decode:!0},t);const[n,r]=Uu(e,&quot;#&quot;);return Object.assign({url:n.split(&quot;?&quot;)[0]||&quot;&quot;,query:c(l(e),t)},t &amp;&amp;t.parseFragmentIdentifier &amp;&amp;r?{fragmentIdentifier:a(r,t)}:{})},t.stringifyUrl=(e,n)=&gt;{n=Object.assign({encode:!0,strict:!0},n);const a=i(e.url).split(&quot;?&quot;)[0]||&quot;&quot;,o=t.extract(e.url),l=t.parse(o,{sort:!1}),s=Object.assign(l,e.query);let c=t.stringify(s,n);c &amp;&amp;(c=`?${c}`);let u=function(e){let t=&quot;&quot;;const n=e.indexOf(&quot;#&quot;);return-1!==n &amp;&amp;(t=e.slice(n)),t}(e.url);return e.fragmentIdentifier &amp;&amp;(u=`#${r(e.fragmentIdentifier,n)}`),`${a}${c}${u}`},t.pick=(e,n,r)=&gt;{r=Object.assign({parseFragmentIdentifier:!0},r);const{url:a,query:o,fragmentIdentifier:i}=t.parseUrl(e,r);return t.stringifyUrl({url:a,query:ju(o,n),fragmentIdentifier:i},r)},t.exclude=(e,n,r)=&gt;{const a=Array.isArray(n)?e=&gt;!n.includes(e):(e,t)=&gt;!n(e,t);return t.pick(e,a,r)}});function zu(e){if(&quot;string &quot;!=typeof e)throw new Error(&quot;The url must be a string.&quot;);let t=function(e){let t=function(e){if(&quot;string &quot;!=typeof e||!e.trim())throw new Error(&quot;Invalid url.&quot;);return function(e){e=(e||&quot;&quot;).trim();var t={protocols:ku(e),protocol:null,port:null,resource:&quot;&quot;,user:&quot;&quot;,pathname:&quot;&quot;,hash:&quot;&quot;,search:&quot;&quot;,href:e,query:Object.create(null)},n=e.indexOf(&quot;://&quot;),r=null,a=null;e.startsWith(&quot;.&quot;)&amp;&amp;(e.startsWith(&quot;./&quot;)&amp;&amp;(e=e.substring(2)),t.pathname=e,t.protocol=&quot;file &quot;);var o=e.charAt(1);return t.protocol||(t.protocol=t.protocols[0],t.protocol||(xu(e)?t.protocol=&quot;ssh &quot;:&quot;/&quot;===o||&quot;~&quot;===o?(e=e.substring(2),t.protocol=&quot;file &quot;):t.protocol=&quot;file &quot;)),-1!==n &amp;&amp;(e=e.substring(n+3)),a=e.split(/\/|\\/),t.resource=&quot;file &quot;!==t.protocol?a.shift():&quot;&quot;,2===(r=t.resource.split(&quot;@&quot;)).length &amp;&amp;(t.user=r[0],t.resource=r[1]),2===(r=t.resource.split(&quot;:&quot;)).length &amp;&amp;(t.resource=r[0],r[1]?(t.port=Number(r[1]),isNaN(t.port)&amp;&amp;(t.port=null,a.unshift(r[1]))):t.port=null),a=a.filter(Boolean),t.pathname=&quot;file &quot;===t.protocol?t.href:t.pathname||(&quot;file &quot;!==t.protocol||&quot;/&quot;===t.href[0]?&quot;/&quot;:&quot;&quot;)+a.join(&quot;/&quot;),2===(r=t.pathname.split(&quot;#&quot;)).length &amp;&amp;(t.pathname=r[0],t.hash=r[1]),2===(r=t.pathname.split(&quot;?&quot;)).length &amp;&amp;(t.pathname=r[0],t.search=r[1]),t.query=Fu.parse(t.search),t.href=t.href.replace(/\/$/,&quot;&quot;),t.pathname=t.pathname.replace(/\/$/,&quot;&quot;),t}(e)}(e);t.token=&quot;&quot;;let n=t.user.split(&quot;:&quot;);return 2===n.length &amp;&amp;(&quot;x-oauth-basic &quot;===n[1]?t.token=n[0]:&quot;x-token-auth &quot;===n[0]&amp;&amp;(t.token=n[1])),t.protocol=xu(t.protocols)||xu(e)?&quot;ssh &quot;:t.protocols.length?t.protocols[0]:&quot;file &quot;,t.href=t.href.replace(/\/$/,&quot;&quot;),t}(e),n=t.resource.split(&quot;.&quot;),r=null;switch(t.toString=function(e){return zu.stringify(this,e)},t.source=n.length &gt;2?n.slice(1-n.length).join(&quot;.&quot;):t.source=t.resource,t.git_suffix=/\.git$/.test(t.pathname),t.name=decodeURIComponent(t.pathname.replace(/^\//,&quot;&quot;).replace(/\.git$/,&quot;&quot;)),t.owner=decodeURIComponent(t.user),t.source){case &quot;git.cloudforge.com &quot;:t.owner=t.user,t.organization=n[0],t.source=&quot;cloudforge.com &quot;;break;case &quot;visualstudio.com &quot;:if(&quot;vs-ssh.visualstudio.com &quot;===t.resource){r=t.name.split(&quot;/&quot;),4===r.length &amp;&amp;(t.organization=r[1],t.owner=r[2],t.name=r[3],t.full_name=r[2]+&quot;/&quot;+r[3]);break}r=t.name.split(&quot;/&quot;),2===r.length?(t.owner=r[1],t.name=r[1],t.full_name=&quot;_git/&quot;+t.name):3===r.length?(t.name=r[2],&quot;DefaultCollection &quot;===r[0]?(t.owner=r[2],t.organization=r[0],t.full_name=t.organization+&quot;/_git/&quot;+t.name):(t.owner=r[0],t.full_name=t.owner+&quot;/_git/&quot;+t.name)):4===r.length &amp;&amp;(t.organization=r[0],t.owner=r[1],t.name=r[3],t.full_name=t.organization+&quot;/&quot;+t.owner+&quot;/_git/&quot;+t.name);break;case &quot;dev.azure.com &quot;:case &quot;azure.com &quot;:if(&quot;ssh.dev.azure.com &quot;===t.resource){r=t.name.split(&quot;/&quot;),4===r.length &amp;&amp;(t.organization=r[1],t.owner=r[2],t.name=r[3]);break}r=t.name.split(&quot;/&quot;),5===r.length?(t.organization=r[0],t.owner=r[1],t.name=r[4],t.full_name=&quot;_git/&quot;+t.name):3===r.length?(t.name=r[2],&quot;DefaultCollection &quot;===r[0]?(t.owner=r[2],t.organization=r[0],t.full_name=t.organization+&quot;/_git/&quot;+t.name):(t.owner=r[0],t.full_name=t.owner+&quot;/_git/&quot;+t.name)):4===r.length &amp;&amp;(t.organization=r[0],t.owner=r[1],t.name=r[3],t.full_name=t.organization+&quot;/&quot;+t.owner+&quot;/_git/&quot;+t.name),t.query &amp;&amp;t.query.path &amp;&amp;(t.filepath=t.query.path.replace(/^\/+/g,&quot;&quot;)),t.query &amp;&amp;t.query.version &amp;&amp;(t.ref=t.query.version.replace(/^GB/,&quot;&quot;));break;default:r=t.name.split(&quot;/&quot;);let e=r.length-1;if(r.length &gt;=2){const n=r.indexOf(&quot;-&quot;,2),a=r.indexOf(&quot;blob &quot;,2),o=r.indexOf(&quot;tree &quot;,2),i=r.indexOf(&quot;commit &quot;,2),l=r.indexOf(&quot;src &quot;,2),s=r.indexOf(&quot;raw &quot;,2);e=n &gt;0?n-1:a &gt;0?a-1:o &gt;0?o-1:i &gt;0?i-1:l &gt;0?l-1:s &gt;0?s-1:e,t.owner=r.slice(0,e).join(&quot;/&quot;),t.name=r[e],i &amp;&amp;(t.commit=r[e+2])}t.ref=&quot;&quot;,t.filepathtype=&quot;&quot;,t.filepath=&quot;&quot;;const a=r.length &gt;e &amp;&amp;&quot;-&quot;===r[e+1]?e+1:e;r.length &gt;a+2 &amp;&amp;[&quot;raw &quot;,&quot;src &quot;,&quot;blob &quot;,&quot;tree &quot;].indexOf(r[a+1])&gt;=0 &amp;&amp;(t.filepathtype=r[a+1],t.ref=r[a+2],r.length &gt;a+3 &amp;&amp;(t.filepath=r.slice(a+3).join(&quot;/&quot;))),t.organization=t.owner}t.full_name||(t.full_name=t.owner,t.name &amp;&amp;(t.full_name &amp;&amp;(t.full_name+=&quot;/&quot;),t.full_name+=t.name)),t.owner.startsWith(&quot;scm/&quot;)&amp;&amp;(t.source=&quot;bitbucket-server &quot;,t.owner=t.owner.replace(&quot;scm/&quot;,&quot;&quot;),t.organization=t.owner,t.full_name=`${t.owner}/${t.name}`);const a=/(projects|users)\/(.*?)\/repos\/(.*?)((\/.*$)|$)/.exec(t.pathname);return null!=a &amp;&amp;(t.source=&quot;bitbucket-server &quot;,t.owner=&quot;users &quot;===a[1]?&quot;~&quot;+a[2]:a[2],t.organization=t.owner,t.name=a[3],r=a[4].split(&quot;/&quot;),r.length &gt;1 &amp;&amp;([&quot;raw &quot;,&quot;browse &quot;].indexOf(r[1])&gt;=0?(t.filepathtype=r[1],r.length &gt;2 &amp;&amp;(t.filepath=r[2])):&quot;commits &quot;===r[1]&amp;&amp;r.length &gt;2 &amp;&amp;(t.commit=r[2])),t.full_name=`${t.owner}/${t.name}`,t.ref=t.query.at?t.query.at:&quot;&quot;),t}function Hu({git:e}){const{commitUrl:t}=function(e,t){if(!e)return{resource:null,repoUrl:null,commitUrl:null};const n=zu(e),r=zu.stringify(ws({},n,{git_suffix:!1}),&quot;https &quot;);return{repoUrl:r,resource:n.resource,commitUrl:`${r}/commit/${t}`}}(e.remote,e.hash);return c.createElement(c.Fragment,null,e.hash &amp;&amp;e.message &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-4 &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex-grow font-semibold &quot;},e.message),c.createElement(&quot;div &quot;,{className:&quot;~bg-gray-500/5 flex items-center &quot;},c.createElement(wc,{transparent:!0,overflowX:!1,value:e.hash}),t &amp;&amp;c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;mr-4 &quot;},c.createElement(Ks,null,c.createElement(oi,{className:&quot;group-hover:text-indigo-500 &quot;,icon:ki}),&quot;View commit &quot;,e.hash.substr(0,7))))),e.isDirty &amp;&amp;c.createElement(&quot;div &quot;,null,c.createElement(Iu,{className:&quot;mt-4 &quot;},&quot;Last commit is dirty. (Un)staged changes have been made since this commit.&quot;)),e.tag &amp;&amp;c.createElement(Xc,null,c.createElement(Xc.Row,{label:&quot;Latest tag &quot;,value:e.tag})))}zu.stringify=function(e,t){t=t||(e.protocols &amp;&amp;e.protocols.length?e.protocols.join(&quot;+&quot;):e.protocol);const n=e.port?`:${e.port}`:&quot;&quot;,r=e.user||&quot;git &quot;,a=e.git_suffix?&quot;.git &quot;:&quot;&quot;;switch(t){case &quot;ssh &quot;:return n?`ssh://${r}@${e.resource}${n}/${e.full_name}${a}`:`${r}@${e.resource}:${e.full_name}${a}`;case &quot;git+ssh &quot;:case &quot;ssh+git &quot;:case &quot;ftp &quot;:case &quot;ftps &quot;:return`${t}://${r}@${e.resource}${n}/${e.full_name}${a}`;case &quot;http &quot;:case &quot;https &quot;:return`${t}://${e.token?function(e){switch(e.source){case &quot;bitbucket.org &quot;:return`x-token-auth:${e.token}@`;default:return`${e.token}@`}}(e):e.user &amp;&amp;(e.protocols.includes(&quot;http &quot;)||e.protocols.includes(&quot;https &quot;))?`${e.user}@`:&quot;&quot;}${e.resource}${n}/${function(e){switch(e.source){case &quot;bitbucket-server &quot;:return`scm/${e.full_name}`;default:return`${e.full_name}`}}(e)}${a}`;default:return e.href}};var Bu,Vu,Wu=(Bu={&quot;&#192;&quot;:&quot;A &quot;,&quot;&#193;&quot;:&quot;A &quot;,&quot;&#194;&quot;:&quot;A &quot;,&quot;&#195;&quot;:&quot;A &quot;,&quot;&#196;&quot;:&quot;A &quot;,&quot;&#197;&quot;:&quot;A &quot;,&quot;&#224;&quot;:&quot;a &quot;,&quot;&#225;&quot;:&quot;a &quot;,&quot;&#226;&quot;:&quot;a &quot;,&quot;&#227;&quot;:&quot;a &quot;,&quot;&#228;&quot;:&quot;a &quot;,&quot;&#229;&quot;:&quot;a &quot;,&quot;&#199;&quot;:&quot;C &quot;,&quot;&#231;&quot;:&quot;c &quot;,&quot;&#208;&quot;:&quot;D &quot;,&quot;&#240;&quot;:&quot;d &quot;,&quot;&#200;&quot;:&quot;E &quot;,&quot;&#201;&quot;:&quot;E &quot;,&quot;&#202;&quot;:&quot;E &quot;,&quot;&#203;&quot;:&quot;E &quot;,&quot;&#232;&quot;:&quot;e &quot;,&quot;&#233;&quot;:&quot;e &quot;,&quot;&#234;&quot;:&quot;e &quot;,&quot;&#235;&quot;:&quot;e &quot;,&quot;&#204;&quot;:&quot;I &quot;,&quot;&#205;&quot;:&quot;I &quot;,&quot;&#206;&quot;:&quot;I &quot;,&quot;&#207;&quot;:&quot;I &quot;,&quot;&#236;&quot;:&quot;i &quot;,&quot;&#237;&quot;:&quot;i &quot;,&quot;&#238;&quot;:&quot;i &quot;,&quot;&#239;&quot;:&quot;i &quot;,&quot;&#209;&quot;:&quot;N &quot;,&quot;&#241;&quot;:&quot;n &quot;,&quot;&#210;&quot;:&quot;O &quot;,&quot;&#211;&quot;:&quot;O &quot;,&quot;&#212;&quot;:&quot;O &quot;,&quot;&#213;&quot;:&quot;O &quot;,&quot;&#214;&quot;:&quot;O &quot;,&quot;&#216;&quot;:&quot;O &quot;,&quot;&#242;&quot;:&quot;o &quot;,&quot;&#243;&quot;:&quot;o &quot;,&quot;&#244;&quot;:&quot;o &quot;,&quot;&#245;&quot;:&quot;o &quot;,&quot;&#246;&quot;:&quot;o &quot;,&quot;&#248;&quot;:&quot;o &quot;,&quot;&#217;&quot;:&quot;U &quot;,&quot;&#218;&quot;:&quot;U &quot;,&quot;&#219;&quot;:&quot;U &quot;,&quot;&#220;&quot;:&quot;U &quot;,&quot;&#249;&quot;:&quot;u &quot;,&quot;&#250;&quot;:&quot;u &quot;,&quot;&#251;&quot;:&quot;u &quot;,&quot;&#252;&quot;:&quot;u &quot;,&quot;&#221;&quot;:&quot;Y &quot;,&quot;&#253;&quot;:&quot;y &quot;,&quot;&#255;&quot;:&quot;y &quot;,&quot;&#198;&quot;:&quot;Ae &quot;,&quot;&#230;&quot;:&quot;ae &quot;,&quot;&#222;&quot;:&quot;Th &quot;,&quot;&#254;&quot;:&quot;th &quot;,&quot;&#223;&quot;:&quot;ss &quot;,&quot;&#256;&quot;:&quot;A &quot;,&quot;&#258;&quot;:&quot;A &quot;,&quot;&#260;&quot;:&quot;A &quot;,&quot;&#257;&quot;:&quot;a &quot;,&quot;&#259;&quot;:&quot;a &quot;,&quot;&#261;&quot;:&quot;a &quot;,&quot;&#262;&quot;:&quot;C &quot;,&quot;&#264;&quot;:&quot;C &quot;,&quot;&#266;&quot;:&quot;C &quot;,&quot;&#268;&quot;:&quot;C &quot;,&quot;&#263;&quot;:&quot;c &quot;,&quot;&#265;&quot;:&quot;c &quot;,&quot;&#267;&quot;:&quot;c &quot;,&quot;&#269;&quot;:&quot;c &quot;,&quot;&#270;&quot;:&quot;D &quot;,&quot;&#272;&quot;:&quot;D &quot;,&quot;&#271;&quot;:&quot;d &quot;,&quot;&#273;&quot;:&quot;d &quot;,&quot;&#274;&quot;:&quot;E &quot;,&quot;&#276;&quot;:&quot;E &quot;,&quot;&#278;&quot;:&quot;E &quot;,&quot;&#280;&quot;:&quot;E &quot;,&quot;&#282;&quot;:&quot;E &quot;,&quot;&#275;&quot;:&quot;e &quot;,&quot;&#277;&quot;:&quot;e &quot;,&quot;&#279;&quot;:&quot;e &quot;,&quot;&#281;&quot;:&quot;e &quot;,&quot;&#283;&quot;:&quot;e &quot;,&quot;&#284;&quot;:&quot;G &quot;,&quot;&#286;&quot;:&quot;G &quot;,&quot;&#288;&quot;:&quot;G &quot;,&quot;&#290;&quot;:&quot;G &quot;,&quot;&#285;&quot;:&quot;g &quot;,&quot;&#287;&quot;:&quot;g &quot;,&quot;&#289;&quot;:&quot;g &quot;,&quot;&#291;&quot;:&quot;g &quot;,&quot;&#292;&quot;:&quot;H &quot;,&quot;&#294;&quot;:&quot;H &quot;,&quot;&#293;&quot;:&quot;h &quot;,&quot;&#295;&quot;:&quot;h &quot;,&quot;&#296;&quot;:&quot;I &quot;,&quot;&#298;&quot;:&quot;I &quot;,&quot;&#300;&quot;:&quot;I &quot;,&quot;&#302;&quot;:&quot;I &quot;,&quot;&#304;&quot;:&quot;I &quot;,&quot;&#297;&quot;:&quot;i &quot;,&quot;&#299;&quot;:&quot;i &quot;,&quot;&#301;&quot;:&quot;i &quot;,&quot;&#303;&quot;:&quot;i &quot;,&quot;&#305;&quot;:&quot;i &quot;,&quot;&#308;&quot;:&quot;J &quot;,&quot;&#309;&quot;:&quot;j &quot;,&quot;&#310;&quot;:&quot;K &quot;,&quot;&#311;&quot;:&quot;k &quot;,&quot;&#312;&quot;:&quot;k &quot;,&quot;&#313;&quot;:&quot;L &quot;,&quot;&#315;&quot;:&quot;L &quot;,&quot;&#317;&quot;:&quot;L &quot;,&quot;&#319;&quot;:&quot;L &quot;,&quot;&#321;&quot;:&quot;L &quot;,&quot;&#314;&quot;:&quot;l &quot;,&quot;&#316;&quot;:&quot;l &quot;,&quot;&#318;&quot;:&quot;l &quot;,&quot;&#320;&quot;:&quot;l &quot;,&quot;&#322;&quot;:&quot;l &quot;,&quot;&#323;&quot;:&quot;N &quot;,&quot;&#325;&quot;:&quot;N &quot;,&quot;&#327;&quot;:&quot;N &quot;,&quot;&#330;&quot;:&quot;N &quot;,&quot;&#324;&quot;:&quot;n &quot;,&quot;&#326;&quot;:&quot;n &quot;,&quot;&#328;&quot;:&quot;n &quot;,&quot;&#331;&quot;:&quot;n &quot;,&quot;&#332;&quot;:&quot;O &quot;,&quot;&#334;&quot;:&quot;O &quot;,&quot;&#336;&quot;:&quot;O &quot;,&quot;&#333;&quot;:&quot;o &quot;,&quot;&#335;&quot;:&quot;o &quot;,&quot;&#337;&quot;:&quot;o &quot;,&quot;&#340;&quot;:&quot;R &quot;,&quot;&#342;&quot;:&quot;R &quot;,&quot;&#344;&quot;:&quot;R &quot;,&quot;&#341;&quot;:&quot;r &quot;,&quot;&#343;&quot;:&quot;r &quot;,&quot;&#345;&quot;:&quot;r &quot;,&quot;&#346;&quot;:&quot;S &quot;,&quot;&#348;&quot;:&quot;S &quot;,&quot;&#350;&quot;:&quot;S &quot;,&quot;&#352;&quot;:&quot;S &quot;,&quot;&#347;&quot;:&quot;s &quot;,&quot;&#349;&quot;:&quot;s &quot;,&quot;&#351;&quot;:&quot;s &quot;,&quot;&#353;&quot;:&quot;s &quot;,&quot;&#354;&quot;:&quot;T &quot;,&quot;&#356;&quot;:&quot;T &quot;,&quot;&#358;&quot;:&quot;T &quot;,&quot;&#355;&quot;:&quot;t &quot;,&quot;&#357;&quot;:&quot;t &quot;,&quot;&#359;&quot;:&quot;t &quot;,&quot;&#360;&quot;:&quot;U &quot;,&quot;&#362;&quot;:&quot;U &quot;,&quot;&#364;&quot;:&quot;U &quot;,&quot;&#366;&quot;:&quot;U &quot;,&quot;&#368;&quot;:&quot;U &quot;,&quot;&#370;&quot;:&quot;U &quot;,&quot;&#361;&quot;:&quot;u &quot;,&quot;&#363;&quot;:&quot;u &quot;,&quot;&#365;&quot;:&quot;u &quot;,&quot;&#367;&quot;:&quot;u &quot;,&quot;&#369;&quot;:&quot;u &quot;,&quot;&#371;&quot;:&quot;u &quot;,&quot;&#372;&quot;:&quot;W &quot;,&quot;&#373;&quot;:&quot;w &quot;,&quot;&#374;&quot;:&quot;Y &quot;,&quot;&#375;&quot;:&quot;y &quot;,&quot;&#376;&quot;:&quot;Y &quot;,&quot;&#377;&quot;:&quot;Z &quot;,&quot;&#379;&quot;:&quot;Z &quot;,&quot;&#381;&quot;:&quot;Z &quot;,&quot;&#378;&quot;:&quot;z &quot;,&quot;&#380;&quot;:&quot;z &quot;,&quot;&#382;&quot;:&quot;z &quot;,&quot;&#306;&quot;:&quot;IJ &quot;,&quot;&#307;&quot;:&quot;ij &quot;,&quot;&#338;&quot;:&quot;Oe &quot;,&quot;&#339;&quot;:&quot;oe &quot;,&quot;&#329;&quot;:&quot;&#039;n &quot;,&quot;&#383;&quot;:&quot;s &quot;},function(e){return null==Bu?void 0:Bu[e]}),Gu=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Yu=RegExp(&quot;[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]&quot;,&quot;g &quot;),$u=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Xu=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ku=&quot;\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000 &quot;,qu=&quot;[&quot;+Ku+&quot;]&quot;,Ju=&quot;\\d+&quot;,Qu=&quot;[a-z\\xdf-\\xf6\\xf8-\\xff]&quot;,Zu=&quot;[^\\ud800-\\udfff &quot;+Ku+Ju+&quot;\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]&quot;,ef=&quot;(?:\\ud83c[\\udde6-\\uddff]){2}&quot;,tf=&quot;[\\ud800-\\udbff][\\udc00-\\udfff]&quot;,nf=&quot;[A-Z\\xc0-\\xd6\\xd8-\\xde]&quot;,rf=&quot;(?:&quot;+Qu+&quot;|&quot;+Zu+&quot;)&quot;,af=&quot;(?:&quot;+nf+&quot;|&quot;+Zu+&quot;)&quot;,of=&quot;(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?&quot;,lf=&quot;[\\ufe0e\\ufe0f]?&quot;+of+&quot;(?:\\u200d(?:&quot;+[&quot;[^\\ud800-\\udfff]&quot;,ef,tf].join(&quot;|&quot;)+&quot;)[\\ufe0e\\ufe0f]?&quot;+of+&quot;)*&quot;,sf=&quot;(?:&quot;+[&quot;[\\u2700-\\u27bf]&quot;,ef,tf].join(&quot;|&quot;)+&quot;)&quot;+lf,cf=RegExp([nf+&quot;?&quot;+Qu+&quot;+(?:[&#039;&#8217;](?:d|ll|m|re|s|t|ve))?(?=&quot;+[qu,nf,&quot;$ &quot;].join(&quot;|&quot;)+&quot;)&quot;,af+&quot;+(?:[&#039;&#8217;](?:D|LL|M|RE|S|T|VE))?(?=&quot;+[qu,nf+rf,&quot;$ &quot;].join(&quot;|&quot;)+&quot;)&quot;,nf+&quot;?&quot;+rf+&quot;+(?:[&#039;&#8217;](?:d|ll|m|re|s|t|ve))?&quot;,nf+&quot;+(?:[&#039;&#8217;](?:D|LL|M|RE|S|T|VE))?&quot;,&quot;\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])&quot;,&quot;\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])&quot;,Ju,sf].join(&quot;|&quot;),&quot;g &quot;),uf=RegExp(&quot;[&#039;&#8217;]&quot;,&quot;g &quot;),ff=RegExp(&quot;[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]&quot;),df=function(e){return ff.test(e)},pf=&quot;[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]&quot;,mf=&quot;\\ud83c[\\udffb-\\udfff]&quot;,hf=&quot;[^\\ud800-\\udfff]&quot;,gf=&quot;(?:\\ud83c[\\udde6-\\uddff]){2}&quot;,vf=&quot;[\\ud800-\\udbff][\\udc00-\\udfff]&quot;,yf=&quot;(?:&quot;+pf+&quot;|&quot;+mf+&quot;)?&quot;,Ef=&quot;[\\ufe0e\\ufe0f]?&quot;+yf+&quot;(?:\\u200d(?:&quot;+[hf,gf,vf].join(&quot;|&quot;)+&quot;)[\\ufe0e\\ufe0f]?&quot;+yf+&quot;)*&quot;,bf=&quot;(?:&quot;+[hf+pf+&quot;?&quot;,pf,gf,vf,&quot;[\\ud800-\\udfff]&quot;].join(&quot;|&quot;)+&quot;)&quot;,Tf=RegExp(mf+&quot;(?=&quot;+mf+&quot;)|&quot;+bf+Ef,&quot;g &quot;),Nf=(Vu=function(e,t,n){return e+(n?&quot;&quot;:&quot;&quot;)+function(e){e=_n(e);var t,n,r,a=df(e)?function(e){return df(e)?function(e){return e.match(Tf)||[]}(e):function(e){return e.split(&quot;&quot;)}(e)}(e):void 0,o=a?a[0]:e.charAt(0),i=a?(t=a,r=t.length,n=void 0===n?r:n,function(e,t,n){var r=-1,a=e.length;t &lt;0 &amp;&amp;(t=-t &gt;a?0:a+t),(n=n &gt;a?a:n)&lt;0 &amp;&amp;(n+=a),a=t &gt;n?0:n-t &gt;&gt;&gt;0,t &gt;&gt;&gt;=0;for(var o=Array(a);++r &lt;a;)o[r]=e[r+t];return o}(t,1,n)).join(&quot;&quot;):e.slice(1);return o.toUpperCase()+i}(t)},function(e){return function(e,t,n,r){for(var a=-1,o=null==e?0:e.length;++a &lt;o;)n=t(n,e[a],a,e);return n}(function(e,t,n){return e=_n(e),void 0===(t=t)?function(e){return Xu.test(e)}(e)?function(e){return e.match(cf)||[]}(e):function(e){return e.match($u)||[]}(e):e.match(t)||[]}(function(e){return(e=_n(e))&amp;&amp;e.replace(Gu,Wu).replace(Yu,&quot;&quot;)}(e).replace(uf,&quot;&quot;)),Vu,&quot;&quot;)});function Rf({env:e}){const t=c.useContext(Ee);return c.createElement(Xc,null,t.application_version &amp;&amp;c.createElement(Xc.Row,{key:&quot;app_version &quot;,value:t.application_version,label:&quot;App Version &quot;}),Object.entries(e).map(([e,t])=&gt;c.createElement(Xc.Row,{key:e,value:t,label:Nf(e)})))}function Sf({children:e}){return c.createElement(&quot;ul &quot;,{className:&quot;grid grid-cols-1 gap-10 &quot;},e)}function wf({title:e,children:t,anchor:n}){return c.createElement(&quot;li &quot;,null,c.createElement(&quot;a &quot;,{href:`#context-${n}`,className:&quot;uppercase tracking-wider ~text-gray-500 text-xs font-bold &quot;},e),c.createElement(&quot;ul &quot;,{className:&quot;mt-3 grid grid-cols-1 gap-3 &quot;},t))}function Of({icon:e,title:t,anchor:n,active:r=!1}){return c.createElement(&quot;li &quot;,null,c.createElement(&quot;a &quot;,{href:`#context-${n}`,className:`\n                flex items-center gap-3\n                group text-base hover:text-indigo-500\n                ${r?&quot;~text-indigo-600 &quot;:&quot;&quot;}\n            `},c.createElement(&quot;span &quot;,{className:&quot;opacity-50 &quot;},e),c.createElement(&quot;span &quot;,null,t)))}function Cf({children:e}){const{inView:t}=c.useContext(Vc);return c.createElement(c.Fragment,null,c.createElement(&quot;nav &quot;,{className:&quot;hidden sm:block min-w-[8rem] flex-none mr-10 lg:mr-20 &quot;},c.createElement(&quot;div &quot;,{className:&quot;sticky top-[7.5rem]&quot;},c.createElement(Sf,null,c.Children.map(e,e=&gt;c.createElement(c.Fragment,null,e &amp;&amp;c.createElement(wf,{title:e.props.title,anchor:e.props.anchor},c.Children.map(e.props.children,e=&gt;c.createElement(c.Fragment,null,e &amp;&amp;e.type===Wc &amp;&amp;c.createElement(Of,{icon:e.props.icon,active:t[t.length-1]===e.props.title,title:e.props.title,anchor:e.props.anchor}))))))))),c.createElement(&quot;div &quot;,{className:&quot;overflow-hidden grid grid-cols-1 gap-px bg-white dark:shadow-none dark:bg-gray-800/50 dark:bg-gradient-to-bl from-gray-700/50 via-transparent dark:ring-1 dark:ring-inset dark:ring-white/5 rounded-lg shadow-2xl shadow-gray-500/20 flex-grow &quot;},e))}function Af({children:e}){const[t,n]=c.useState([]);return c.createElement(Vc.Provider,{value:{inView:t,setInView:n}},e)}function If({className:e=&quot;&quot;}){return c.createElement(&quot;svg &quot;,{version:&quot;1.1 &quot;,xmlns:&quot;http://www.w3.org/2000/svg &quot;,x:&quot;0px &quot;,y:&quot;0px &quot;,viewBox:&quot;0 0 512 512 &quot;,enableBackground:&quot;new 0 0 512 512 &quot;,className:`${e}`},c.createElement(&quot;path &quot;,{fill:&quot;currentcolor &quot;,d:&quot;M381.6,334.8c-24.7,0-27.7,33.6-45.2,44.6v52c0,17.6,14.2,31.8,31.8,31.8c17.6,0,31.8-14.2,31.8-31.8v-88.6\n        C395,338.1,389.2,334.8,381.6,334.8z &quot;}),c.createElement(&quot;path &quot;,{fill:&quot;currentcolor &quot;,d:&quot;M263.2,334.8c-25.5,0-27.8,35.8-46.9,45.7v96.2c0,19.5,15.8,35.3,35.3,35.3s35.3-15.8,35.3-35.3V349.1\n        C280.9,341.1,273.9,334.8,263.2,334.8z &quot;}),c.createElement(&quot;path &quot;,{fill:&quot;currentcolor &quot;,d:&quot;M144.8,334.8c-22.9,0-27.1,28.9-41.6,41.9l0,38c0,17.6,14.2,31.8,31.8,31.8c17.6,0,31.8-14.2,31.8-31.8v-67.9\n        C161.2,339.9,154.5,334.8,144.8,334.8z &quot;}),c.createElement(&quot;path &quot;,{id:&quot;Body-Copy-4 &quot;,fill:&quot;currentcolor &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,d:&quot;M458.9,340.2c-8.3,12.6-14.7,28.2-31.7,28.2\n\t\tc-28.6,0-30.1-44-58.7-44c-28.6,0-27,44-55.6,44c-28.6,0-30.1-44-58.7-44s-27,44-55.6,44s-30.1-44-58.7-44s-27,44-55.6,44\n\t\tc-9,0-15.3-4.4-20.6-10.3c-20.4-35.6-32.2-77.2-32.2-121.8C31.6,105.8,132.4,0,256.7,0s225.1,105.8,225.1,236.2\n\t\tC481.8,273.5,473.6,308.8,458.9,340.2z &quot;}),c.createElement(&quot;path &quot;,{id:&quot;Oval &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,fill:&quot;#FFFFFF &quot;,d:&quot;M244.6,295.1c78.3,0,111.2-45.4,111.2-109.9\n\t\tS306.1,61.4,244.6,61.4s-111.2,59.4-111.2,123.9S166.4,295.1,244.6,295.1z &quot;}),c.createElement(&quot;ellipse &quot;,{id:&quot;Oval_1_ &quot;,fill:&quot;currentcolor &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,cx:&quot;214.7 &quot;,cy:&quot;142.9 &quot;,rx:&quot;41.7 &quot;,ry:&quot;46 &quot;}),c.createElement(&quot;ellipse &quot;,{id:&quot;Oval_2_ &quot;,fillRule:&quot;evenodd &quot;,clipRule:&quot;evenodd &quot;,fill:&quot;#FFFFFF &quot;,cx:&quot;207.8 &quot;,cy:&quot;132.2 &quot;,rx:&quot;20.9 &quot;,ry:&quot;21.3 &quot;}))}function kf(){var e,t,n;const r=c.useContext(Ee).context_items,a=r.request_data;return c.createElement(Dc,null,c.createElement(&quot;div &quot;,{className:&quot;flex items-stretch &quot;},c.createElement(Af,null,c.createElement(Cf,null,r.request_data &amp;&amp;r.request &amp;&amp;r.headers &amp;&amp;c.createElement(Fc,{title:&quot;Request &quot;,anchor:&quot;request &quot;},c.createElement(Yc,{request:r.request,requestData:r.request_data,headers:r.headers}),c.createElement(Wc,{title:&quot;Headers &quot;,anchor:&quot;request-headers &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Ni}),children:c.createElement(lu,{headers:r.headers})}),!!Object.values(r.request_data.queryString||[]).length &amp;&amp;c.createElement(Wc,{title:&quot;Query String &quot;,anchor:&quot;request-query-string &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:ui}),children:c.createElement(su,{requestData:r.request_data})}),c.createElement(Wc,{title:&quot;Body &quot;,anchor:&quot;request-body &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:fi}),children:c.createElement(cu,null)}),!(null==a||null==(e=a.files)||!e.length)&amp;&amp;c.createElement(Wc,{title:&quot;Files &quot;,anchor:&quot;request-files &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:gi}),children:c.createElement(uu,null)}),!(null==(t=r.session)||!t.length)&amp;&amp;c.createElement(Wc,{title:&quot;Session &quot;,anchor:&quot;request-session &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:vi}),children:c.createElement(fu,{session:r.session})}),!(null==(n=r.cookies)||!n.length)&amp;&amp;c.createElement(Wc,{title:&quot;Cookies &quot;,anchor:&quot;request-cookies &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:pi}),children:c.createElement(du,{cookies:r.cookies})})),c.createElement(Fc,{title:&quot;App &quot;,anchor:&quot;app &quot;},r.route &amp;&amp;c.createElement(Wc,{title:&quot;Routing &quot;,anchor:&quot;app-routing &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:wi}),children:c.createElement(yu,{route:r.route})}),r.view &amp;&amp;c.createElement(Wc,{title:&quot;Views &quot;,anchor:&quot;app-views &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:bi}),children:c.createElement(Tu,null)})),r.livewire &amp;&amp;c.createElement(Fc,{title:&quot;Livewire &quot;,anchor:&quot;livewire &quot;},c.createElement(Wc,{title:&quot;Component &quot;,anchor:&quot;livewire-component &quot;,icon:c.createElement(If,{className:&quot;svg-inline--fa fa-w-16 fa-fw &quot;}),children:c.createElement(mu,null)}),c.createElement(Wc,{title:&quot;Updates &quot;,anchor:&quot;livewire-updates &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Si}),children:c.createElement(hu,null)}),c.createElement(Wc,{title:&quot;Data &quot;,anchor:&quot;livewire-data &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Ai}),children:c.createElement(pu,null)})),c.createElement(Fc,{title:&quot;Context &quot;,anchor:&quot;context &quot;},r.user &amp;&amp;c.createElement(Wc,{title:&quot;User &quot;,anchor:&quot;user-user &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:xi}),children:c.createElement(Au,{user:r.user})}),r.git &amp;&amp;c.createElement(Wc,{title:&quot;Git &quot;,anchor:&quot;context-git &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:di}),children:c.createElement(Hu,{git:r.git})}),c.createElement(Wc,{title:&quot;Versions &quot;,anchor:&quot;context-versions &quot;,icon:c.createElement(oi,{fixedWidth:!0,icon:Oi}),children:c.createElement(Rf,{env:r.env||{}})}))))))}function xf({children:e}){const[t,n]=c.useState(0),r=e.filter(e=&gt;!1!==e),a=c.Children.map(r,e=&gt;({name:e.props.name,component:e.props.component,count:e.props.count,checked:e.props.checked,onChange:e.props.onChange})).filter(e=&gt;e.count),o=a[t].component;return c.createElement(&quot;div &quot;,{className:&quot;bg-gray-300/50 dark:bg-black/10 shadow-inner rounded-lg &quot;},c.createElement(&quot;nav &quot;,{className:&quot;z-10 flex justify-center items-center &quot;},c.createElement(&quot;ul &quot;,{className:&quot;-my-5 flex justify-start items-center rounded-full shadow-lg bg-indigo-500 text-white space-x-px &quot;},a.map((e,r)=&gt;c.createElement(&quot;li &quot;,{key:r,className:`\n                                    ${r===t?&quot;bg-indigo-600 &quot;:&quot;bg-indigo-500 text-indigo-100 &quot;}\n                                    ${0===r?&quot;rounded-l-full &quot;:&quot;&quot;}\n                                    ${r===a.length-1?&quot;rounded-r-full &quot;:&quot;&quot;}\n                                    hover:text-white\n                                `},c.createElement(&quot;button &quot;,{onClick:()=&gt;n(r),className:&quot;group flex items-center px-3 sm:px-5 h-10 uppercase tracking-wider text-xs font-medium &quot;},c.createElement(&quot;span &quot;,{className:&quot;mr-1.5 inline-flex items-center justify-center px-1 min-w-[1rem] h-4 bg-gray-900/30 text-white rounded-full text-xs &quot;},e.count),c.createElement(&quot;span &quot;,null,e.name)))))),c.createElement(Dc,{fallbackComponent:e=&gt;c.createElement(jc,{githubLink:e,className:&quot;pt-10 &quot;})},c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 gap-10 py-10 px-6 sm:px-10 &quot;},c.createElement(o,null))))}function _f({children:e,context:t=null,level:n=null,meta:r=null,time:a}){const[o,i]=c.useState(!1),l={error:&quot;red &quot;,warn:&quot;orange &quot;,warning:&quot;orange &quot;,info:&quot;blue &quot;,debug:&quot;green &quot;,trace:&quot;gray &quot;,notice:&quot;purple &quot;,critical:&quot;red &quot;,alert:&quot;red &quot;,emergency:&quot;red &quot;};return c.createElement(&quot;div &quot;,{className:&quot;min-w-0 grid grid-cols-1 gap-2 &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-1 &quot;},c.createElement(Gc,{color:n?l[n]:&quot;gray &quot;,className:&quot;font-mono &quot;},a.toLocaleTimeString()),n &amp;&amp;c.createElement(Gc,{color:l[n]},n),r &amp;&amp;Object.entries(r).map(([e,t])=&gt;c.createElement(c.Fragment,{key:e},&quot;runtime &quot;===e &amp;&amp;c.createElement(Gc,{className:&quot;inline-flex items-center gap-2 &quot;},c.createElement(oi,{title:&quot;Runtime &quot;,className:&quot;opacity-50 &quot;,icon:Ci}),&quot;&quot;,t),&quot;connection &quot;===e &amp;&amp;c.createElement(Gc,{className:&quot;inline-flex items-center gap-2 &quot;},c.createElement(oi,{title:&quot;Connection &quot;,className:&quot;opacity-50 &quot;,icon:hi}),&quot;&quot;,t),&quot;runtime &quot;!==e &amp;&amp;&quot;connection &quot;!==e &amp;&amp;c.createElement(Gc,null,e,&quot;: &quot;,t))),t &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;div &quot;,{className:&quot;ml-auto &quot;},c.createElement(Ks,{onClick:()=&gt;i(!o)},c.createElement(oi,{icon:o?Ei:fi,className:&quot;text-[8px] ~text-gray-500 group-hover:text-indigo-500 &quot;}),o?&quot;As list &quot;:&quot;Raw &quot;)))),c.createElement(&quot;div &quot;,null,e),t &amp;&amp;c.createElement(c.Fragment,null,o?c.createElement(wc,{value:Tc(t),language:&quot;json &quot;}):c.createElement(&quot;div &quot;,{className:&quot;pl-4 &quot;},c.createElement(Kc,{items:t}))))}function Lf(){const e=c.useContext(Ee),t=Object.values(e.context_items.logs);return c.createElement(c.Fragment,null,t.map((e,t)=&gt;c.createElement(_f,{key:t,context:e.context,level:e.level,time:bc(e.microtime)},c.createElement(wc,{value:e.message}))))}function Pf(){const e=c.useContext(Ee),t=Object.values(e.context_items.dumps);return c.createElement(c.Fragment,null,t.map((e,t)=&gt;c.createElement(_f,{key:t,time:bc(e.microtime)},c.createElement(&quot;div &quot;,{className:&quot;mb-2 &quot;},c.createElement(Ys,{path:e.file,lineNumber:e.line_number,className:&quot;text-sm &quot;})),c.createElement(bu,{value:e.html_dump}))))}function Mf(){const e=c.useContext(Ee),t=Object.values(e.context_items.queries);return c.createElement(c.Fragment,null,t.map((e,t)=&gt;c.createElement(_f,{key:t,time:bc(e.microtime),meta:{runtime:`${e.time}ms`,connection:e.connection_name}},c.createElement(wc,{value:e.sql,language:&quot;sql &quot;}))))}function Df(){const e=c.useContext(Ee);return c.createElement(c.Fragment,null,e.glows.map((e,t)=&gt;c.createElement(_f,{key:t,level:e.message_level,context:e.meta_data,time:bc(e.microtime)},c.createElement(wc,{value:e.name}))))}function Uf(){const e=c.useContext(Ee),t=e.context_items.queries,n=e.context_items.logs,r=e.glows;return c.createElement(Dc,null,c.createElement(xf,null,c.createElement(xf.Tab,{component:Pf,name:&quot;Dumps &quot;,count:Object.keys(e.context_items.dumps||[]).length}),c.createElement(xf.Tab,{component:Df,name:&quot;Glows &quot;,count:r.length}),c.createElement(xf.Tab,{component:Mf,name:&quot;Queries &quot;,count:Object.keys(t||[]).length}),c.createElement(xf.Tab,{component:Lf,name:&quot;Logs &quot;,count:Object.keys(n||[]).length})))}function jf({children:e,className:t=&quot;&quot;}){return c.createElement(&quot;code &quot;,{className:`font-mono leading-relaxed font-normal ~bg-gray-500/5 px-1 py-1 ${t}`},e)}function Ff(){return c.createElement(&quot;svg &quot;,{viewBox:&quot;0 0 682 1024 &quot;,className:&quot;w-4 h-5 ml-1.5 &quot;},c.createElement(&quot;polygon &quot;,{points:&quot;235.3,510.5 21.5,387 21.5,140.2 236.5,264.1 &quot;,style:{fill:&quot;rgb(81, 219, 158)&quot;}}),c.createElement(&quot;polygon &quot;,{points:&quot;235.3,1004.8 21.5,881.4 21.5,634.5 234.8,757.9 &quot;,style:{fill:&quot;rgb(121, 0, 245)&quot;}}),c.createElement(&quot;polygon &quot;,{points:&quot;448.9,386.9 21.5,140.2 235.3,16.7 663.2,263.4 &quot;,style:{fill:&quot;rgb(148, 242, 200)&quot;}}),c.createElement(&quot;polygon &quot;,{points:&quot;234.8,757.9 21.5,634.5 235.3,511 449.1,634.5 &quot;,style:{fill:&quot;rgb(164, 117, 244)&quot;}}))}function zf(){return c.createElement(&quot;svg &quot;,{id:&quot;ignition &quot;,className:&quot;w-8 h-8 -ml-1 &quot;,viewBox:&quot;0 0 500 500 &quot;},c.createElement(&quot;g &quot;,null,c.createElement(&quot;polygon &quot;,{style:{fill:&quot;transparent &quot;},points:&quot;466.5,375 466.5,125 250,0 33.5,125 33.5,375 250,500 \t &quot;}),c.createElement(&quot;g &quot;,null,c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#ff4590 &quot;},points:&quot;314.2,176 314.2,250 250,287 250,212.6 \t\t &quot;}),c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#ffd000 &quot;},points:&quot;185.9,398.1 185.9,324.1 250,287 249.9,360.9 \t\t &quot;}),c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#de075d &quot;},points:&quot;250,139.1 250,287 185.9,250 185.8,101.9 \t\t &quot;}),c.createElement(&quot;polygon &quot;,{style:{fill:&quot;#e0b800 &quot;},points:&quot;249.9,360.9 250,287 314.1,324 314.1,398.1 \t\t &quot;}))))}function Hf(e){var t=e.label,n=e.onChange;return c.createElement(&quot;label &quot;,{className:&quot;flex items-center &quot;},c.createElement(&quot;input &quot;,{type:&quot;checkbox &quot;,checked:e.checked,onChange:function(e){return n(e.target.checked)},className:&quot;sr-only peer &quot;}),c.createElement(&quot;span &quot;,{className:&quot;mr-2 flex items-center w-6 h-4 ~bg-gray-100 peer-checked:bg-emerald-300 rounded-full shadow-inner transition-colors &quot;}),c.createElement(&quot;span &quot;,{className:&quot;absolute left-0.5 top-0.5 w-3 h-3 ~bg-dropdown rounded-full shadow-md transform peer-checked:translate-x-2 transition-transform &quot;}),c.createElement(&quot;span &quot;,{className:&quot;uppercase tracking-wider text-xs font-medium &quot;},t))}xf.Tab=e=&gt;null;var Bf=c.createContext();function Vf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Wf(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Vf(Object(n),!0).forEach(function(t){Yf(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Vf(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Gf(e){return(Gf=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Yf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function $f(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:&quot;undefined &quot;!=typeof Symbol &amp;&amp;e[Symbol.iterator]||e[&quot;@@iterator &quot;];if(null!=n){var r,a,o=[],i=!0,l=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&amp;&amp;(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){l=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(l)throw a}}return o}}(e,t)||Kf(e,t)||function(){throw new TypeError(&quot;Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Xf(e){return function(e){if(Array.isArray(e))return qf(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||Kf(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function Kf(e,t){if(e){if(&quot;string &quot;==typeof e)return qf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?qf(e,t):void 0}}function qf(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}var Jf=function(){},Qf={},Zf={},ed=null,td={mark:Jf,measure:Jf};try{&quot;undefined &quot;!=typeof window &amp;&amp;(Qf=window),&quot;undefined &quot;!=typeof document &amp;&amp;(Zf=document),&quot;undefined &quot;!=typeof MutationObserver &amp;&amp;(ed=MutationObserver),&quot;undefined &quot;!=typeof performance &amp;&amp;(td=performance)}catch(Ro){}var nd=(Qf.navigator||{}).userAgent,rd=void 0===nd?&quot;&quot;:nd,ad=Qf,od=Zf,id=ed,ld=td,sd=!!od.documentElement &amp;&amp;!!od.head &amp;&amp;&quot;function &quot;==typeof od.addEventListener &amp;&amp;&quot;function &quot;==typeof od.createElement,cd=~rd.indexOf(&quot;MSIE &quot;)||~rd.indexOf(&quot;Trident/&quot;),ud=[&quot;HTML &quot;,&quot;HEAD &quot;,&quot;STYLE &quot;,&quot;SCRIPT &quot;],fd=function(){try{return!1}catch(e){return!1}}(),dd={fas:&quot;solid &quot;,&quot;fa-solid &quot;:&quot;solid &quot;,far:&quot;regular &quot;,&quot;fa-regular &quot;:&quot;regular &quot;,fal:&quot;light &quot;,&quot;fa-light &quot;:&quot;light &quot;,fat:&quot;thin &quot;,&quot;fa-thin &quot;:&quot;thin &quot;,fad:&quot;duotone &quot;,&quot;fa-duotone &quot;:&quot;duotone &quot;,fab:&quot;brands &quot;,&quot;fa-brands &quot;:&quot;brands &quot;,fak:&quot;kit &quot;,&quot;fa-kit &quot;:&quot;kit &quot;,fa:&quot;solid &quot;},pd={solid:&quot;fas &quot;,regular:&quot;far &quot;,light:&quot;fal &quot;,thin:&quot;fat &quot;,duotone:&quot;fad &quot;,brands:&quot;fab &quot;,kit:&quot;fak &quot;},md={fab:&quot;fa-brands &quot;,fad:&quot;fa-duotone &quot;,fak:&quot;fa-kit &quot;,fal:&quot;fa-light &quot;,far:&quot;fa-regular &quot;,fas:&quot;fa-solid &quot;,fat:&quot;fa-thin &quot;},hd={&quot;fa-brands &quot;:&quot;fab &quot;,&quot;fa-duotone &quot;:&quot;fad &quot;,&quot;fa-kit &quot;:&quot;fak &quot;,&quot;fa-light &quot;:&quot;fal &quot;,&quot;fa-regular &quot;:&quot;far &quot;,&quot;fa-solid &quot;:&quot;fas &quot;,&quot;fa-thin &quot;:&quot;fat &quot;},gd=/fa[srltdbk\-\ ]/,vd=/Font ?Awesome ?([56 ]*)(Solid|Regular|Light|Thin|Duotone|Brands|Free|Pro|Kit)?.*/i,yd={900:&quot;fas &quot;,400:&quot;far &quot;,normal:&quot;far &quot;,300:&quot;fal &quot;,100:&quot;fat &quot;},Ed=[1,2,3,4,5,6,7,8,9,10],bd=Ed.concat([11,12,13,14,15,16,17,18,19,20]),Td=[&quot;class &quot;,&quot;data-prefix &quot;,&quot;data-icon &quot;,&quot;data-fa-transform &quot;,&quot;data-fa-mask &quot;],Nd=[].concat(Xf(Object.keys(pd)),[&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;beat &quot;,&quot;border &quot;,&quot;fade &quot;,&quot;beat-fade &quot;,&quot;bounce &quot;,&quot;flip-both &quot;,&quot;flip-horizontal &quot;,&quot;flip-vertical &quot;,&quot;flip &quot;,&quot;fw &quot;,&quot;inverse &quot;,&quot;layers-counter &quot;,&quot;layers-text &quot;,&quot;layers &quot;,&quot;li &quot;,&quot;pull-left &quot;,&quot;pull-right &quot;,&quot;pulse &quot;,&quot;rotate-180 &quot;,&quot;rotate-270 &quot;,&quot;rotate-90 &quot;,&quot;rotate-by &quot;,&quot;shake &quot;,&quot;spin-pulse &quot;,&quot;spin-reverse &quot;,&quot;spin &quot;,&quot;stack-1x &quot;,&quot;stack-2x &quot;,&quot;stack &quot;,&quot;ul &quot;,&quot;duotone-group &quot;,&quot;swap-opacity &quot;,&quot;primary &quot;,&quot;secondary &quot;]).concat(Ed.map(function(e){return &quot;&quot;.concat(e,&quot;x &quot;)})).concat(bd.map(function(e){return &quot;w-&quot;.concat(e)})),Rd=ad.FontAwesomeConfig||{};od &amp;&amp;&quot;function &quot;==typeof od.querySelector &amp;&amp;[[&quot;data-family-prefix &quot;,&quot;familyPrefix &quot;],[&quot;data-style-default &quot;,&quot;styleDefault &quot;],[&quot;data-replacement-class &quot;,&quot;replacementClass &quot;],[&quot;data-auto-replace-svg &quot;,&quot;autoReplaceSvg &quot;],[&quot;data-auto-add-css &quot;,&quot;autoAddCss &quot;],[&quot;data-auto-a11y &quot;,&quot;autoA11y &quot;],[&quot;data-search-pseudo-elements &quot;,&quot;searchPseudoElements &quot;],[&quot;data-observe-mutations &quot;,&quot;observeMutations &quot;],[&quot;data-mutate-approach &quot;,&quot;mutateApproach &quot;],[&quot;data-keep-original-source &quot;,&quot;keepOriginalSource &quot;],[&quot;data-measure-performance &quot;,&quot;measurePerformance &quot;],[&quot;data-show-missing-icons &quot;,&quot;showMissingIcons &quot;]].forEach(function(e){var t=$f(e,2),n=t[1],r=function(e){return &quot;&quot;===e||&quot;false &quot;!==e &amp;&amp;(&quot;true &quot;===e||e)}(function(e){var t=od.querySelector(&quot;script[&quot;+e+&quot;]&quot;);if(t)return t.getAttribute(e)}(t[0]));null!=r &amp;&amp;(Rd[n]=r)});var Sd=Wf(Wf({},{familyPrefix:&quot;fa &quot;,styleDefault:&quot;solid &quot;,replacementClass:&quot;svg-inline--fa &quot;,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:&quot;async &quot;,keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0}),Rd);Sd.autoReplaceSvg||(Sd.observeMutations=!1);var wd={};Object.keys(Sd).forEach(function(e){Object.defineProperty(wd,e,{enumerable:!0,set:function(t){Sd[e]=t,Od.forEach(function(e){return e(wd)})},get:function(){return Sd[e]}})}),ad.FontAwesomeConfig=wd;var Od=[],Cd=16,Ad={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};function Id(){for(var e=12,t=&quot;&quot;;e-- &gt;0;)t+=&quot;0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ &quot;[62*Math.random()|0];return t}function kd(e){for(var t=[],n=(e||[]).length &gt;&gt;&gt;0;n--;)t[n]=e[n];return t}function xd(e){return e.classList?kd(e.classList):(e.getAttribute(&quot;class &quot;)||&quot;&quot;).split(&quot;&quot;).filter(function(e){return e})}function _d(e){return &quot;&quot;.concat(e).replace(/&amp;/g,&quot;&amp;amp;&quot;).replace(/&quot;/g,&quot;&amp;quot;&quot;).replace(/&#039;/g,&quot;&amp;#39;&quot;).replace(/&lt;/g,&quot;&amp;lt;&quot;).replace(/&gt;/g,&quot;&amp;gt;&quot;)}function Ld(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&quot;: &quot;).concat(e[n].trim(),&quot;;&quot;)},&quot;&quot;)}function Pd(e){return e.size!==Ad.size||e.x!==Ad.x||e.y!==Ad.y||e.rotate!==Ad.rotate||e.flipX||e.flipY}function Md(){var e=&quot;fa &quot;,t=&quot;svg-inline--fa &quot;,n=wd.familyPrefix,r=wd.replacementClass,a=&#039;:root, :host {\n  --fa-font-solid: normal 900 1em/1 &quot;Font Awesome 6 Solid &quot;;\n  --fa-font-regular: normal 400 1em/1 &quot;Font Awesome 6 Regular &quot;;\n  --fa-font-light: normal 300 1em/1 &quot;Font Awesome 6 Light &quot;;\n  --fa-font-thin: normal 100 1em/1 &quot;Font Awesome 6 Thin &quot;;\n  --fa-font-duotone: normal 900 1em/1 &quot;Font Awesome 6 Duotone &quot;;\n  --fa-font-brands: normal 400 1em/1 &quot;Font Awesome 6 Brands &quot;;\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n  overflow: visible;\n  box-sizing: content-box;\n}\n\n.svg-inline--fa {\n  display: var(--fa-display, inline-block);\n  height: 1em;\n  overflow: visible;\n  vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n  vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n  vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n  vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n  vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n  vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n  vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n  margin-right: var(--fa-pull-margin, 0.3em);\n  width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n  margin-left: var(--fa-pull-margin, 0.3em);\n  width: auto;\n}\n.svg-inline--fa.fa-li {\n  width: var(--fa-li-width, 2em);\n  top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n  width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  position: absolute;\n  right: 0;\n  top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n  display: inline-block;\n  position: absolute;\n  text-align: center;\n}\n\n.fa-layers {\n  display: inline-block;\n  height: 1em;\n  position: relative;\n  text-align: center;\n  vertical-align: -0.125em;\n  width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n  -webkit-transform-origin: center center;\n          transform-origin: center center;\n}\n\n.fa-layers-text {\n  left: 50%;\n  top: 50%;\n  -webkit-transform: translate(-50%, -50%);\n          transform: translate(-50%, -50%);\n  -webkit-transform-origin: center center;\n          transform-origin: center center;\n}\n\n.fa-layers-counter {\n  background-color: var(--fa-counter-background-color, #ff253a);\n  border-radius: var(--fa-counter-border-radius, 1em);\n  box-sizing: border-box;\n  color: var(--fa-inverse, #fff);\n  line-height: var(--fa-counter-line-height, 1);\n  max-width: var(--fa-counter-max-width, 5em);\n  min-width: var(--fa-counter-min-width, 1.5em);\n  overflow: hidden;\n  padding: var(--fa-counter-padding, 0.25em 0.5em);\n  right: var(--fa-right, 0);\n  text-overflow: ellipsis;\n  top: var(--fa-top, 0);\n  -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n          transform: scale(var(--fa-counter-scale, 0.25));\n  -webkit-transform-origin: top right;\n          transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n  bottom: var(--fa-bottom, 0);\n  right: var(--fa-right, 0);\n  top: auto;\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: bottom right;\n          transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n  bottom: var(--fa-bottom, 0);\n  left: var(--fa-left, 0);\n  right: auto;\n  top: auto;\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: bottom left;\n          transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n  top: var(--fa-top, 0);\n  right: var(--fa-right, 0);\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: top right;\n          transform-origin: top right;\n}\n\n.fa-layers-top-left {\n  left: var(--fa-left, 0);\n  right: auto;\n  top: var(--fa-top, 0);\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: top left;\n          transform-origin: top left;\n}\n\n.fa-1x {\n  font-size: 1em;\n}\n\n.fa-2x {\n  font-size: 2em;\n}\n\n.fa-3x {\n  font-size: 3em;\n}\n\n.fa-4x {\n  font-size: 4em;\n}\n\n.fa-5x {\n  font-size: 5em;\n}\n\n.fa-6x {\n  font-size: 6em;\n}\n\n.fa-7x {\n  font-size: 7em;\n}\n\n.fa-8x {\n  font-size: 8em;\n}\n\n.fa-9x {\n  font-size: 9em;\n}\n\n.fa-10x {\n  font-size: 10em;\n}\n\n.fa-2xs {\n  font-size: 0.625em;\n  line-height: 0.1em;\n  vertical-align: 0.225em;\n}\n\n.fa-xs {\n  font-size: 0.75em;\n  line-height: 0.0833333337em;\n  vertical-align: 0.125em;\n}\n\n.fa-sm {\n  font-size: 0.875em;\n  line-height: 0.0714285718em;\n  vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n  font-size: 1.25em;\n  line-height: 0.05em;\n  vertical-align: -0.075em;\n}\n\n.fa-xl {\n  font-size: 1.5em;\n  line-height: 0.0416666682em;\n  vertical-align: -0.125em;\n}\n\n.fa-2xl {\n  font-size: 2em;\n  line-height: 0.03125em;\n  vertical-align: -0.1875em;\n}\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em;\n}\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: var(--fa-li-margin, 2.5em);\n  padding-left: 0;\n}\n.fa-ul &gt;li {\n  position: relative;\n}\n\n.fa-li {\n  left: calc(var(--fa-li-width, 2em) * -1);\n  position: absolute;\n  text-align: center;\n  width: var(--fa-li-width, 2em);\n  line-height: inherit;\n}\n\n.fa-border {\n  border-color: var(--fa-border-color, #eee);\n  border-radius: var(--fa-border-radius, 0.1em);\n  border-style: var(--fa-border-style, solid);\n  border-width: var(--fa-border-width, 0.08em);\n  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n  float: left;\n  margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n  float: right;\n  margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n  -webkit-animation-name: fa-beat;\n          animation-name: fa-beat;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n  -webkit-animation-name: fa-bounce;\n          animation-name: fa-bounce;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n  -webkit-animation-name: fa-fade;\n          animation-name: fa-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n  -webkit-animation-name: fa-beat-fade;\n          animation-name: fa-beat-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n  -webkit-animation-name: fa-flip;\n          animation-name: fa-flip;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n  -webkit-animation-name: fa-shake;\n          animation-name: fa-shake;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-delay: var(--fa-animation-delay, 0);\n          animation-delay: var(--fa-animation-delay, 0);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 2s);\n          animation-duration: var(--fa-animation-duration, 2s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n  --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n          animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n  .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n    -webkit-animation-delay: -1ms;\n            animation-delay: -1ms;\n    -webkit-animation-duration: 1ms;\n            animation-duration: 1ms;\n    -webkit-animation-iteration-count: 1;\n            animation-iteration-count: 1;\n    transition-delay: 0s;\n    transition-duration: 0s;\n  }\n}\n@-webkit-keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25));\n  }\n}\n@keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25));\n  }\n}\n@-webkit-keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n  }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n  }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n  }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n  }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n}\n@keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n  }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n  }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n  }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n  }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0);\n  }\n}\n@-webkit-keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4);\n  }\n}\n@keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4);\n  }\n}\n@-webkit-keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125));\n  }\n}\n@keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1);\n  }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125));\n  }\n}\n@-webkit-keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n  }\n}\n@keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n  }\n}\n@-webkit-keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg);\n  }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg);\n  }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg);\n  }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg);\n  }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg);\n  }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg);\n  }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg);\n  }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg);\n  }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n}\n@keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg);\n  }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg);\n  }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg);\n  }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg);\n  }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg);\n  }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg);\n  }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg);\n  }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg);\n  }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg);\n  }\n}\n.fa-rotate-90 {\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n  -webkit-transform: rotate(var(--fa-rotate-angle, none));\n          transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n  display: inline-block;\n  vertical-align: middle;\n  height: 2em;\n  position: relative;\n  width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  position: absolute;\n  right: 0;\n  top: 0;\n  z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n  height: 1em;\n  width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n  height: 2em;\n  width: 2.5em;\n}\n\n.fa-inverse {\n  color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n  fill: var(--fa-primary-color, currentColor);\n  opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n  fill: var(--fa-secondary-color, currentColor);\n  opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n  opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n  opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n  fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n  color: var(--fa-inverse, #fff);\n}&#039;;if(n!==e||r!==t){var o=new RegExp(&quot;\\.&quot;.concat(e,&quot;\\-&quot;),&quot;g &quot;),i=new RegExp(&quot;\\--&quot;.concat(e,&quot;\\-&quot;),&quot;g &quot;),l=new RegExp(&quot;\\.&quot;.concat(t),&quot;g &quot;);a=a.replace(o,&quot;.&quot;.concat(n,&quot;-&quot;)).replace(i,&quot;--&quot;.concat(n,&quot;-&quot;)).replace(l,&quot;.&quot;.concat(r))}return a}var Dd=!1;function Ud(){wd.autoAddCss &amp;&amp;!Dd &amp;&amp;(function(e){if(e &amp;&amp;sd){var t=od.createElement(&quot;style &quot;);t.setAttribute(&quot;type &quot;,&quot;text/css &quot;),t.innerHTML=e;for(var n=od.head.childNodes,r=null,a=n.length-1;a &gt;-1;a--){var o=n[a],i=(o.tagName||&quot;&quot;).toUpperCase();[&quot;STYLE &quot;,&quot;LINK &quot;].indexOf(i)&gt;-1 &amp;&amp;(r=o)}od.head.insertBefore(t,r)}}(Md()),Dd=!0)}var jd={mixout:function(){return{dom:{css:Md,insertCss:Ud}}},hooks:function(){return{beforeDOMElementCreation:function(){Ud()},beforeI2svg:function(){Ud()}}}},Fd=ad||{};Fd.___FONT_AWESOME___||(Fd.___FONT_AWESOME___={}),Fd.___FONT_AWESOME___.styles||(Fd.___FONT_AWESOME___.styles={}),Fd.___FONT_AWESOME___.hooks||(Fd.___FONT_AWESOME___.hooks={}),Fd.___FONT_AWESOME___.shims||(Fd.___FONT_AWESOME___.shims=[]);var zd=Fd.___FONT_AWESOME___,Hd=[],Bd=!1;function Vd(e){sd &amp;&amp;(Bd?setTimeout(e,0):Hd.push(e))}function Wd(e){var t=e.tag,n=e.attributes,r=void 0===n?{}:n,a=e.children,o=void 0===a?[]:a;return &quot;string &quot;==typeof e?_d(e):&quot;&lt;&quot;.concat(t,&quot;&quot;).concat(function(e){return Object.keys(e||{}).reduce(function(t,n){return t+&quot;&quot;.concat(n,&#039;=&quot;&#039;).concat(_d(e[n]),&#039;&quot;&#039;)},&quot;&quot;).trim()}(r),&quot;&gt;&quot;).concat(o.map(Wd).join(&quot;&quot;),&quot;&lt;/&quot;).concat(t,&quot;&gt;&quot;)}function Gd(e,t,n){if(e &amp;&amp;e[t]&amp;&amp;e[t][n])return{prefix:t,iconName:n,icon:e[t][n]}}sd &amp;&amp;((Bd=(od.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(od.readyState))||od.addEventListener(&quot;DOMContentLoaded &quot;,function e(){od.removeEventListener(&quot;DOMContentLoaded &quot;,e),Bd=1,Hd.map(function(e){return e()})}));var Yd=function(e,t,n,r){var a,o,i,l=Object.keys(e),s=l.length,c=void 0!==r?function(e,t){return function(n,r,a,o){return e.call(t,n,r,a,o)}}(t,r):t;for(void 0===n?(a=1,i=e[l[0]]):(a=0,i=n);a &lt;s;a++)i=c(i,e[o=l[a]],o,e);return i};function $d(e){var t=function(e){for(var t=[],n=0,r=e.length;n &lt;r;){var a=e.charCodeAt(n++);if(a &gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;n &lt;r){var o=e.charCodeAt(n++);56320==(64512 &amp;o)?t.push(((1023 &amp;a)&lt;&lt;10)+(1023 &amp;o)+65536):(t.push(a),n--)}else t.push(a)}return t}(e);return 1===t.length?t[0].toString(16):null}function Xd(e){return Object.keys(e).reduce(function(t,n){var r=e[n];return r.icon?t[r.iconName]=r.icon:t[n]=r,t},{})}function Kd(e,t){var n=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{},r=n.skipHooks,a=void 0!==r &amp;&amp;r,o=Xd(t);&quot;function &quot;!=typeof zd.hooks.addPack||a?zd.styles[e]=Wf(Wf({},zd.styles[e]||{}),o):zd.hooks.addPack(e,Xd(t)),&quot;fas &quot;===e &amp;&amp;Kd(&quot;fa &quot;,t)}var qd=zd.styles,Jd=zd.shims,Qd=Object.values(md),Zd=null,ep={},tp={},np={},rp={},ap={},op=Object.keys(dd);function ip(e,t){var n=t.split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);return r!==e||&quot;&quot;===a||~Nd.indexOf(a)?null:a}var lp=function(){var e=function(e){return Yd(qd,function(t,n,r){return t[r]=Yd(n,e,{}),t},{})};ep=e(function(e,t,n){return t[3]&amp;&amp;(e[t[3]]=n),t[2]&amp;&amp;t[2].filter(function(e){return &quot;number &quot;==typeof e}).forEach(function(t){e[t.toString(16)]=n}),e}),tp=e(function(e,t,n){return e[n]=n,t[2]&amp;&amp;t[2].filter(function(e){return &quot;string &quot;==typeof e}).forEach(function(t){e[t]=n}),e}),ap=e(function(e,t,n){var r=t[2];return e[n]=n,r.forEach(function(t){e[t]=n}),e});var t=&quot;far &quot;in qd||wd.autoFetchSvg,n=Yd(Jd,function(e,n){var r=n[0],a=n[1],o=n[2];return &quot;far &quot;!==a||t||(a=&quot;fas &quot;),&quot;string &quot;==typeof r &amp;&amp;(e.names[r]={prefix:a,iconName:o}),&quot;number &quot;==typeof r &amp;&amp;(e.unicodes[r.toString(16)]={prefix:a,iconName:o}),e},{names:{},unicodes:{}});np=n.names,rp=n.unicodes,Zd=dp(wd.styleDefault)};function sp(e,t){return(ep[e]||{})[t]}function cp(e,t){return(ap[e]||{})[t]}function up(e){return np[e]||{prefix:null,iconName:null}}function fp(){return Zd}function dp(e){return pd[e]||pd[dd[e]]||(e in zd.styles?e:null)||null}function pp(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.skipLookups,r=void 0!==n &amp;&amp;n,a=null,o=e.reduce(function(e,t){var n=ip(wd.familyPrefix,t);if(qd[t]?(t=Qd.includes(t)?hd[t]:t,a=t,e.prefix=t):op.indexOf(t)&gt;-1?(a=t,e.prefix=dp(t)):n?e.iconName=n:t!==wd.replacementClass &amp;&amp;e.rest.push(t),!r &amp;&amp;e.prefix &amp;&amp;e.iconName){var o=&quot;fa &quot;===a?up(e.iconName):{},i=cp(e.prefix,e.iconName);o.prefix &amp;&amp;(a=null),e.iconName=o.iconName||i||e.iconName,e.prefix=o.prefix||e.prefix,&quot;far &quot;!==e.prefix||qd.far||!qd.fas||wd.autoFetchSvg||(e.prefix=&quot;fas &quot;)}return e},{prefix:null,iconName:null,rest:[]});return &quot;fa &quot;!==o.prefix &amp;&amp;&quot;fa &quot;!==a||(o.prefix=fp()||&quot;fas &quot;),o}Od.push(function(e){Zd=dp(e.styleDefault)}),lp();var mp=/*#__PURE__*/function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError(&quot;Cannot call a class as a function &quot;)}(this,e),this.definitions={}}var t,n;return t=e,(n=[{key:&quot;add &quot;,value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r &lt;t;r++)n[r]=arguments[r];var a=n.reduce(this._pullDefinitions,{});Object.keys(a).forEach(function(t){e.definitions[t]=Wf(Wf({},e.definitions[t]||{}),a[t]),Kd(t,a[t]);var n=md[t];n &amp;&amp;Kd(n,a[t]),lp()})}},{key:&quot;reset &quot;,value:function(){this.definitions={}}},{key:&quot;_pullDefinitions &quot;,value:function(e,t){var n=t.prefix &amp;&amp;t.iconName &amp;&amp;t.icon?{0:t}:t;return Object.keys(n).map(function(t){var r=n[t],a=r.prefix,o=r.iconName,i=r.icon,l=i[2];e[a]||(e[a]={}),l.length &gt;0 &amp;&amp;l.forEach(function(t){&quot;string &quot;==typeof t &amp;&amp;(e[a][t]=i)}),e[a][o]=i}),e}}])&amp;&amp;function(e,t){for(var n=0;n &lt;t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,&quot;value &quot;in r &amp;&amp;(r.writable=!0),Object.defineProperty(e,r.key,r)}}(t.prototype,n),Object.defineProperty(t,&quot;prototype &quot;,{writable:!1}),e}(),hp=[],gp={},vp={},yp=Object.keys(vp);function Ep(e,t){for(var n=arguments.length,r=new Array(n &gt;2?n-2:0),a=2;a &lt;n;a++)r[a-2]=arguments[a];var o=gp[e]||[];return o.forEach(function(e){t=e.apply(null,[t].concat(r))}),t}function bp(e){for(var t=arguments.length,n=new Array(t &gt;1?t-1:0),r=1;r &lt;t;r++)n[r-1]=arguments[r];var a=gp[e]||[];a.forEach(function(e){e.apply(null,n)})}function Tp(){var e=arguments[0],t=Array.prototype.slice.call(arguments,1);return vp[e]?vp[e].apply(null,t):void 0}function Np(e){&quot;fa &quot;===e.prefix &amp;&amp;(e.prefix=&quot;fas &quot;);var t=e.iconName,n=e.prefix||fp();if(t)return t=cp(n,t)||t,Gd(Rp.definitions,n,t)||Gd(zd.styles,n,t)}var Rp=new mp,Sp={i2svg:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{};return sd?(bp(&quot;beforeI2svg &quot;,e),Tp(&quot;pseudoElements2svg &quot;,e),Tp(&quot;i2svg &quot;,e)):Promise.reject(&quot;Operation requires a DOM of some kind.&quot;)},watch:function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot;!1===wd.autoReplaceSvg &amp;&amp;(wd.autoReplaceSvg=!0),wd.observeMutations=!0,Vd(function(){Op({autoReplaceSvgRoot:t}),bp(&quot;watch &quot;,e)})}},wp={noAuto:function(){wd.autoReplaceSvg=!1,wd.observeMutations=!1,bp(&quot;noAuto &quot;)},config:wd,dom:Sp,parse:{icon:function(e){if(null===e)return null;if(&quot;object &quot;===Gf(e)&amp;&amp;e.prefix &amp;&amp;e.iconName)return{prefix:e.prefix,iconName:cp(e.prefix,e.iconName)||e.iconName};if(Array.isArray(e)&amp;&amp;2===e.length){var t=0===e[1].indexOf(&quot;fa-&quot;)?e[1].slice(3):e[1],n=dp(e[0]);return{prefix:n,iconName:cp(n,t)||t}}if(&quot;string &quot;==typeof e &amp;&amp;(e.indexOf(&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;))&gt;-1||e.match(gd))){var r=pp(e.split(&quot;&quot;),{skipLookups:!0});return{prefix:r.prefix||fp(),iconName:cp(r.prefix,r.iconName)||r.iconName}}if(&quot;string &quot;==typeof e){var a=fp();return{prefix:a,iconName:cp(a,e)||e}}}},library:Rp,findIconDefinition:Np,toHtml:Wd},Op=function(){var e=arguments.length &gt;0 &amp;&amp;void 0!==arguments[0]?arguments[0]:{},t=e.autoReplaceSvgRoot,n=void 0===t?od:t;(Object.keys(zd.styles).length &gt;0||wd.autoFetchSvg)&amp;&amp;sd &amp;&amp;wd.autoReplaceSvg &amp;&amp;wp.dom.i2svg({node:n})};function Cp(e,t){return Object.defineProperty(e,&quot;abstract &quot;,{get:t}),Object.defineProperty(e,&quot;html &quot;,{get:function(){return e.abstract.map(function(e){return Wd(e)})}}),Object.defineProperty(e,&quot;node &quot;,{get:function(){if(sd){var t=od.createElement(&quot;div &quot;);return t.innerHTML=e.html,t.children}}}),e}function Ap(e){var t=e.icons,n=t.main,r=t.mask,a=e.prefix,o=e.iconName,i=e.transform,l=e.symbol,s=e.title,c=e.maskId,u=e.titleId,f=e.extra,d=e.watchable,p=void 0!==d &amp;&amp;d,m=r.found?r:n,h=m.width,g=m.height,v=&quot;fak &quot;===a,y=[wd.replacementClass,o?&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(o):&quot;&quot;].filter(function(e){return-1===f.classes.indexOf(e)}).filter(function(e){return &quot;&quot;!==e||!!e}).concat(f.classes).join(&quot;&quot;),E={children:[],attributes:Wf(Wf({},f.attributes),{},{&quot;data-prefix &quot;:a,&quot;data-icon &quot;:o,class:y,role:f.attributes.role||&quot;img &quot;,xmlns:&quot;http://www.w3.org/2000/svg &quot;,viewBox:&quot;0 0 &quot;.concat(h,&quot;&quot;).concat(g)})},b=v &amp;&amp;!~f.classes.indexOf(&quot;fa-fw &quot;)?{width:&quot;&quot;.concat(h/g*16*.0625,&quot;em &quot;)}:{};p &amp;&amp;(E.attributes[&quot;data-fa-i2svg &quot;]=&quot;&quot;),s &amp;&amp;(E.children.push({tag:&quot;title &quot;,attributes:{id:E.attributes[&quot;aria-labelledby &quot;]||&quot;title-&quot;.concat(u||Id())},children:[s]}),delete E.attributes.title);var T=Wf(Wf({},E),{},{prefix:a,iconName:o,main:n,mask:r,maskId:c,transform:i,symbol:l,styles:Wf(Wf({},b),f.styles)}),N=r.found &amp;&amp;n.found?Tp(&quot;generateAbstractMask &quot;,T)||{children:[],attributes:{}}:Tp(&quot;generateAbstractIcon &quot;,T)||{children:[],attributes:{}},R=N.attributes;return T.children=N.children,T.attributes=R,l?function(e){var t=e.iconName,n=e.children,r=e.attributes,a=e.symbol,o=!0===a?&quot;&quot;.concat(e.prefix,&quot;-&quot;).concat(wd.familyPrefix,&quot;-&quot;).concat(t):a;return[{tag:&quot;svg &quot;,attributes:{style:&quot;display: none;&quot;},children:[{tag:&quot;symbol &quot;,attributes:Wf(Wf({},r),{},{id:o}),children:n}]}]}(T):function(e){var t=e.children,n=e.main,r=e.mask,a=e.attributes,o=e.styles,i=e.transform;if(Pd(i)&amp;&amp;n.found &amp;&amp;!r.found){var l={x:n.width/n.height/2,y:.5};a.style=Ld(Wf(Wf({},o),{},{&quot;transform-origin &quot;:&quot;&quot;.concat(l.x+i.x/16,&quot;em &quot;).concat(l.y+i.y/16,&quot;em &quot;)}))}return[{tag:&quot;svg &quot;,attributes:a,children:t}]}(T)}function Ip(e){var t=e.content,n=e.width,r=e.height,a=e.transform,o=e.title,i=e.extra,l=e.watchable,s=void 0!==l &amp;&amp;l,c=Wf(Wf(Wf({},i.attributes),o?{title:o}:{}),{},{class:i.classes.join(&quot;&quot;)});s &amp;&amp;(c[&quot;data-fa-i2svg &quot;]=&quot;&quot;);var u=Wf({},i.styles);Pd(a)&amp;&amp;(u.transform=function(e){var t=e.transform,n=e.width,r=e.height,a=void 0===r?16:r,o=e.startCentered,i=void 0!==o &amp;&amp;o,l=&quot;&quot;;return l+=i &amp;&amp;cd?&quot;translate(&quot;.concat(t.x/Cd-(void 0===n?16:n)/2,&quot;em, &quot;).concat(t.y/Cd-a/2,&quot;em) &quot;):i?&quot;translate(calc(-50% + &quot;.concat(t.x/Cd,&quot;em), calc(-50% + &quot;).concat(t.y/Cd,&quot;em)) &quot;):&quot;translate(&quot;.concat(t.x/Cd,&quot;em, &quot;).concat(t.y/Cd,&quot;em) &quot;),(l+=&quot;scale(&quot;.concat(t.size/Cd*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/Cd*(t.flipY?-1:1),&quot;) &quot;))+&quot;rotate(&quot;.concat(t.rotate,&quot;deg) &quot;)}({transform:a,startCentered:!0,width:n,height:r}),u[&quot;-webkit-transform &quot;]=u.transform);var f=Ld(u);f.length &gt;0 &amp;&amp;(c.style=f);var d=[];return d.push({tag:&quot;span &quot;,attributes:c,children:[t]}),o &amp;&amp;d.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[o]}),d}function kp(e){var t=e.content,n=e.title,r=e.extra,a=Wf(Wf(Wf({},r.attributes),n?{title:n}:{}),{},{class:r.classes.join(&quot;&quot;)}),o=Ld(r.styles);o.length &gt;0 &amp;&amp;(a.style=o);var i=[];return i.push({tag:&quot;span &quot;,attributes:a,children:[t]}),n &amp;&amp;i.push({tag:&quot;span &quot;,attributes:{class:&quot;sr-only &quot;},children:[n]}),i}var xp=zd.styles;function _p(e){var t=e[0],n=e[1],r=$f(e.slice(4),1)[0];return{found:!0,width:t,height:n,icon:Array.isArray(r)?{tag:&quot;g &quot;,attributes:{class:&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(&quot;duotone-group &quot;)},children:[{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(&quot;secondary &quot;),fill:&quot;currentColor &quot;,d:r[0]}},{tag:&quot;path &quot;,attributes:{class:&quot;&quot;.concat(wd.familyPrefix,&quot;-&quot;).concat(&quot;primary &quot;),fill:&quot;currentColor &quot;,d:r[1]}}]}:{tag:&quot;path &quot;,attributes:{fill:&quot;currentColor &quot;,d:r}}}}var Lp={found:!1,width:512,height:512};function Pp(e,t){var n=t;return &quot;fa &quot;===t &amp;&amp;null!==wd.styleDefault &amp;&amp;(t=fp()),new Promise(function(r,a){if(Tp(&quot;missingIconAbstract &quot;),&quot;fa &quot;===n){var o=up(e)||{};e=o.iconName||e,t=o.prefix||t}if(e &amp;&amp;t &amp;&amp;xp[t]&amp;&amp;xp[t][e])return r(_p(xp[t][e]));!function(e,t){fd||wd.showMissingIcons||!e||console.error(&#039;Icon with name &quot;&#039;.concat(e,&#039;&quot;and prefix &quot;&#039;).concat(t,&#039;&quot;is missing.&#039;))}(e,t),r(Wf(Wf({},Lp),{},{icon:wd.showMissingIcons &amp;&amp;e &amp;&amp;Tp(&quot;missingIconAbstract &quot;)||{}}))})}var Mp=function(){},Dp=wd.measurePerformance &amp;&amp;ld &amp;&amp;ld.mark &amp;&amp;ld.measure?ld:{mark:Mp,measure:Mp},Up=function(e){return Dp.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;)),function(){return function(e){Dp.mark(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;)),Dp.measure(&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;begins &quot;),&quot;&quot;.concat(&#039;FA &quot;6.1.1 &quot;&#039;,&quot;&quot;).concat(e,&quot;ends &quot;))}(e)}},jp=function(){};function Fp(e){return &quot;string &quot;==typeof(e.getAttribute?e.getAttribute(&quot;data-fa-i2svg &quot;):null)}function zp(e){return od.createElementNS(&quot;http://www.w3.org/2000/svg &quot;,e)}function Hp(e){return od.createElement(e)}function Bp(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.ceFn,r=void 0===n?&quot;svg &quot;===e.tag?zp:Hp:n;if(&quot;string &quot;==typeof e)return od.createTextNode(e);var a=r(e.tag);Object.keys(e.attributes||[]).forEach(function(t){a.setAttribute(t,e.attributes[t])});var o=e.children||[];return o.forEach(function(e){a.appendChild(Bp(e,{ceFn:r}))}),a}var Vp={replace:function(e){var t=e[0];if(t.parentNode)if(e[1].forEach(function(e){t.parentNode.insertBefore(Bp(e),t)}),null===t.getAttribute(&quot;data-fa-i2svg &quot;)&amp;&amp;wd.keepOriginalSource){var n=od.createComment(function(e){var t=&quot;&quot;.concat(e.outerHTML,&quot;&quot;);return &quot;&quot;.concat(t,&quot;Font Awesome fontawesome.com &quot;)}(t));t.parentNode.replaceChild(n,t)}else t.remove()},nest:function(e){var t=e[0],n=e[1];if(~xd(t).indexOf(wd.replacementClass))return Vp.replace(e);var r=new RegExp(&quot;&quot;.concat(wd.familyPrefix,&quot;-.*&quot;));if(delete n[0].attributes.id,n[0].attributes.class){var a=n[0].attributes.class.split(&quot;&quot;).reduce(function(e,t){return t===wd.replacementClass||t.match(r)?e.toSvg.push(t):e.toNode.push(t),e},{toNode:[],toSvg:[]});n[0].attributes.class=a.toSvg.join(&quot;&quot;),0===a.toNode.length?t.removeAttribute(&quot;class &quot;):t.setAttribute(&quot;class &quot;,a.toNode.join(&quot;&quot;))}var o=n.map(function(e){return Wd(e)}).join(&quot;\n &quot;);t.setAttribute(&quot;data-fa-i2svg &quot;,&quot;&quot;),t.innerHTML=o}};function Wp(e){e()}function Gp(e,t){var n=&quot;function &quot;==typeof t?t:jp;if(0===e.length)n();else{var r=Wp;&quot;async &quot;===wd.mutateApproach &amp;&amp;(r=ad.requestAnimationFrame||Wp),r(function(){var t=!0===wd.autoReplaceSvg?Vp.replace:Vp[wd.autoReplaceSvg]||Vp.replace,r=Up(&quot;mutate &quot;);e.map(t),r(),n()})}}var Yp=!1;function $p(){Yp=!0}function Xp(){Yp=!1}var Kp=null;function qp(e){if(id &amp;&amp;wd.observeMutations){var t=e.treeCallback,n=void 0===t?jp:t,r=e.nodeCallback,a=void 0===r?jp:r,o=e.pseudoElementsCallback,i=void 0===o?jp:o,l=e.observeMutationsRoot,s=void 0===l?od:l;Kp=new id(function(e){if(!Yp){var t=fp();kd(e).forEach(function(e){if(&quot;childList &quot;===e.type &amp;&amp;e.addedNodes.length &gt;0 &amp;&amp;!Fp(e.addedNodes[0])&amp;&amp;(wd.searchPseudoElements &amp;&amp;i(e.target),n(e.target)),&quot;attributes &quot;===e.type &amp;&amp;e.target.parentNode &amp;&amp;wd.searchPseudoElements &amp;&amp;i(e.target.parentNode),&quot;attributes &quot;===e.type &amp;&amp;Fp(e.target)&amp;&amp;~Td.indexOf(e.attributeName))if(&quot;class &quot;===e.attributeName &amp;&amp;function(e){var t=e.getAttribute?e.getAttribute(&quot;data-prefix &quot;):null,n=e.getAttribute?e.getAttribute(&quot;data-icon &quot;):null;return t &amp;&amp;n}(e.target)){var r=pp(xd(e.target)),o=r.iconName;e.target.setAttribute(&quot;data-prefix &quot;,r.prefix||t),o &amp;&amp;e.target.setAttribute(&quot;data-icon &quot;,o)}else(function(e){return e &amp;&amp;e.classList &amp;&amp;e.classList.contains &amp;&amp;e.classList.contains(wd.replacementClass)})(e.target)&amp;&amp;a(e.target)})}}),sd &amp;&amp;Kp.observe(s,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Jp(e){var t=e.getAttribute(&quot;style &quot;),n=[];return t &amp;&amp;(n=t.split(&quot;;&quot;).reduce(function(e,t){var n=t.split(&quot;:&quot;),r=n[0],a=n.slice(1);return r &amp;&amp;a.length &gt;0 &amp;&amp;(e[r]=a.join(&quot;:&quot;).trim()),e},{})),n}function Qp(e){var t=e.getAttribute(&quot;data-prefix &quot;),n=e.getAttribute(&quot;data-icon &quot;),r=void 0!==e.innerText?e.innerText.trim():&quot;&quot;,a=pp(xd(e));return a.prefix||(a.prefix=fp()),t &amp;&amp;n &amp;&amp;(a.prefix=t,a.iconName=n),a.iconName &amp;&amp;a.prefix||a.prefix &amp;&amp;r.length &gt;0 &amp;&amp;(a.iconName=(tp[a.prefix]||{})[e.innerText]||sp(a.prefix,$d(e.innerText))),a}function Zp(e){var t=kd(e.attributes).reduce(function(e,t){return &quot;class &quot;!==e.name &amp;&amp;&quot;style &quot;!==e.name &amp;&amp;(e[t.name]=t.value),e},{}),n=e.getAttribute(&quot;title &quot;),r=e.getAttribute(&quot;data-fa-title-id &quot;);return wd.autoA11y &amp;&amp;(n?t[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(wd.replacementClass,&quot;-title-&quot;).concat(r||Id()):(t[&quot;aria-hidden &quot;]=&quot;true &quot;,t.focusable=&quot;false &quot;)),t}function em(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{styleParser:!0},n=Qp(e),r=n.iconName,a=n.prefix,o=n.rest,i=Zp(e),l=Ep(&quot;parseNodeAttributes &quot;,{},e),s=t.styleParser?Jp(e):[];return Wf({iconName:r,title:e.getAttribute(&quot;title &quot;),titleId:e.getAttribute(&quot;data-fa-title-id &quot;),prefix:a,transform:Ad,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:o,styles:s,attributes:i}},l)}var tm=zd.styles;function nm(e){var t=&quot;nest &quot;===wd.autoReplaceSvg?em(e,{styleParser:!1}):em(e);return~t.extra.classes.indexOf(&quot;fa-layers-text &quot;)?Tp(&quot;generateLayersText &quot;,e,t):Tp(&quot;generateSvgReplacementMutation &quot;,e,t)}function rm(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;if(!sd)return Promise.resolve();var n=od.documentElement.classList,r=function(e){return n.add(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},a=function(e){return n.remove(&quot;&quot;.concat(&quot;fontawesome-i2svg &quot;,&quot;-&quot;).concat(e))},o=Object.keys(wd.autoFetchSvg?dd:tm),i=[&quot;.&quot;.concat(&quot;fa-layers-text &quot;,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)].concat(o.map(function(e){return &quot;.&quot;.concat(e,&quot;:not([&quot;).concat(&quot;data-fa-i2svg &quot;,&quot;])&quot;)})).join(&quot;, &quot;);if(0===i.length)return Promise.resolve();var l=[];try{l=kd(e.querySelectorAll(i))}catch(e){}if(!(l.length &gt;0))return Promise.resolve();r(&quot;pending &quot;),a(&quot;complete &quot;);var s=Up(&quot;onTree &quot;),c=l.reduce(function(e,t){try{var n=nm(t);n &amp;&amp;e.push(n)}catch(e){fd||&quot;MissingIcon &quot;===e.name &amp;&amp;console.error(e)}return e},[]);return new Promise(function(e,n){Promise.all(c).then(function(n){Gp(n,function(){r(&quot;active &quot;),r(&quot;complete &quot;),a(&quot;pending &quot;),&quot;function &quot;==typeof t &amp;&amp;t(),s(),e()})}).catch(function(e){s(),n(e)})})}function am(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:null;nm(e).then(function(e){e &amp;&amp;Gp([e],t)})}var om=function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Ad:n,a=t.symbol,o=void 0!==a &amp;&amp;a,i=t.mask,l=void 0===i?null:i,s=t.maskId,c=void 0===s?null:s,u=t.title,f=void 0===u?null:u,d=t.titleId,p=void 0===d?null:d,m=t.classes,h=void 0===m?[]:m,g=t.attributes,v=void 0===g?{}:g,y=t.styles,E=void 0===y?{}:y;if(e){var b=e.prefix,T=e.iconName,N=e.icon;return Cp(Wf({type:&quot;icon &quot;},e),function(){return bp(&quot;beforeDOMElementCreation &quot;,{iconDefinition:e,params:t}),wd.autoA11y &amp;&amp;(f?v[&quot;aria-labelledby &quot;]=&quot;&quot;.concat(wd.replacementClass,&quot;-title-&quot;).concat(p||Id()):(v[&quot;aria-hidden &quot;]=&quot;true &quot;,v.focusable=&quot;false &quot;)),Ap({icons:{main:_p(N),mask:l?_p(l.icon):{found:!1,width:null,height:null,icon:{}}},prefix:b,iconName:T,transform:Wf(Wf({},Ad),r),symbol:o,title:f,maskId:c,titleId:p,extra:{attributes:v,styles:E,classes:h}})})}},im={mixout:function(){return{icon:(e=om,function(t){var n=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},r=(t||{}).icon?t:Np(t||{}),a=n.mask;return a &amp;&amp;(a=(a||{}).icon?a:Np(a||{})),e(r,Wf(Wf({},n),{},{mask:a}))})};var e},hooks:function(){return{mutationObserverCallbacks:function(e){return e.treeCallback=rm,e.nodeCallback=am,e}}},provides:function(e){e.i2svg=function(e){var t=e.node,n=e.callback;return rm(void 0===t?od:t,void 0===n?function(){}:n)},e.generateSvgReplacementMutation=function(e,t){var n=t.iconName,r=t.title,a=t.titleId,o=t.prefix,i=t.transform,l=t.symbol,s=t.mask,c=t.maskId,u=t.extra;return new Promise(function(t,f){Promise.all([Pp(n,o),s.iconName?Pp(s.iconName,s.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(s){var f=$f(s,2);t([e,Ap({icons:{main:f[0],mask:f[1]},prefix:o,iconName:n,transform:i,symbol:l,maskId:c,title:r,titleId:a,extra:u,watchable:!0})])}).catch(f)})},e.generateAbstractIcon=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.transform,i=Ld(e.styles);return i.length &gt;0 &amp;&amp;(r.style=i),Pd(o)&amp;&amp;(t=Tp(&quot;generateAbstractTransformGrouping &quot;,{main:a,transform:o,containerWidth:a.width,iconWidth:a.width})),n.push(t||a.icon),{children:n,attributes:r}}}},lm={mixout:function(){return{layer:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.classes,r=void 0===n?[]:n;return Cp({type:&quot;layer &quot;},function(){bp(&quot;beforeDOMElementCreation &quot;,{assembler:e,params:t});var n=[];return e(function(e){Array.isArray(e)?e.map(function(e){n=n.concat(e.abstract)}):n=n.concat(e.abstract)}),[{tag:&quot;span &quot;,attributes:{class:[&quot;&quot;.concat(wd.familyPrefix,&quot;-layers &quot;)].concat(Xf(r)).join(&quot;&quot;)},children:n}]})}}}},sm={mixout:function(){return{counter:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.title,r=void 0===n?null:n,a=t.classes,o=void 0===a?[]:a,i=t.attributes,l=void 0===i?{}:i,s=t.styles,c=void 0===s?{}:s;return Cp({type:&quot;counter &quot;,content:e},function(){return bp(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),kp({content:e.toString(),title:r,extra:{attributes:l,styles:c,classes:[&quot;&quot;.concat(wd.familyPrefix,&quot;-layers-counter &quot;)].concat(Xf(o))}})})}}}},cm={mixout:function(){return{text:function(e){var t=arguments.length &gt;1 &amp;&amp;void 0!==arguments[1]?arguments[1]:{},n=t.transform,r=void 0===n?Ad:n,a=t.title,o=void 0===a?null:a,i=t.classes,l=void 0===i?[]:i,s=t.attributes,c=void 0===s?{}:s,u=t.styles,f=void 0===u?{}:u;return Cp({type:&quot;text &quot;,content:e},function(){return bp(&quot;beforeDOMElementCreation &quot;,{content:e,params:t}),Ip({content:e,transform:Wf(Wf({},Ad),r),title:o,extra:{attributes:c,styles:f,classes:[&quot;&quot;.concat(wd.familyPrefix,&quot;-layers-text &quot;)].concat(Xf(l))}})})}}},provides:function(e){e.generateLayersText=function(e,t){var n=t.title,r=t.transform,a=t.extra,o=null,i=null;if(cd){var l=parseInt(getComputedStyle(e).fontSize,10),s=e.getBoundingClientRect();o=s.width/l,i=s.height/l}return wd.autoA11y &amp;&amp;!n &amp;&amp;(a.attributes[&quot;aria-hidden &quot;]=&quot;true &quot;),Promise.resolve([e,Ip({content:e.innerHTML,width:o,height:i,transform:r,title:n,extra:a,watchable:!0})])}}},um=new RegExp(&#039;&quot;&#039;,&quot;ug &quot;),fm=[1105920,1112319];function dm(e,t){var n=&quot;&quot;.concat(&quot;data-fa-pseudo-element-pending &quot;).concat(t.replace(&quot;:&quot;,&quot;-&quot;));return new Promise(function(r,a){if(null!==e.getAttribute(n))return r();var o,i,l,s=kd(e.children).filter(function(e){return e.getAttribute(&quot;data-fa-pseudo-element &quot;)===t})[0],c=ad.getComputedStyle(e,t),u=c.getPropertyValue(&quot;font-family &quot;).match(vd),f=c.getPropertyValue(&quot;font-weight &quot;),d=c.getPropertyValue(&quot;content &quot;);if(s &amp;&amp;!u)return e.removeChild(s),r();if(u &amp;&amp;&quot;none &quot;!==d &amp;&amp;&quot;&quot;!==d){var p=c.getPropertyValue(&quot;content &quot;),m=~[&quot;Solid &quot;,&quot;Regular &quot;,&quot;Light &quot;,&quot;Thin &quot;,&quot;Duotone &quot;,&quot;Brands &quot;,&quot;Kit &quot;].indexOf(u[2])?pd[u[2].toLowerCase()]:yd[f],h=function(e){var t,n,r,a,o=e.replace(um,&quot;&quot;),i=(r=(t=o).length,(a=t.charCodeAt(0))&gt;=55296 &amp;&amp;a &lt;=56319 &amp;&amp;r &gt;1 &amp;&amp;(n=t.charCodeAt(1))&gt;=56320 &amp;&amp;n &lt;=57343?1024*(a-55296)+n-56320+65536:a),l=i &gt;=fm[0]&amp;&amp;i &lt;=fm[1],s=2===o.length &amp;&amp;o[0]===o[1];return{value:$d(s?o[0]:o),isSecondary:l||s}}(p),g=h.value,v=h.isSecondary,y=u[0].startsWith(&quot;FontAwesome &quot;),E=sp(m,g),b=E;if(y){var T=(i=rp[o=g],l=sp(&quot;fas &quot;,o),i||(l?{prefix:&quot;fas &quot;,iconName:l}:null)||{prefix:null,iconName:null});T.iconName &amp;&amp;T.prefix &amp;&amp;(E=T.iconName,m=T.prefix)}if(!E||v||s &amp;&amp;s.getAttribute(&quot;data-prefix &quot;)===m &amp;&amp;s.getAttribute(&quot;data-icon &quot;)===b)r();else{e.setAttribute(n,b),s &amp;&amp;e.removeChild(s);var N={iconName:null,title:null,titleId:null,prefix:null,transform:Ad,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}},R=N.extra;R.attributes[&quot;data-fa-pseudo-element &quot;]=t,Pp(E,m).then(function(a){var o=Ap(Wf(Wf({},N),{},{icons:{main:a,mask:{prefix:null,iconName:null,rest:[]}},prefix:m,iconName:b,extra:R,watchable:!0})),i=od.createElement(&quot;svg &quot;);&quot;::before &quot;===t?e.insertBefore(i,e.firstChild):e.appendChild(i),i.outerHTML=o.map(function(e){return Wd(e)}).join(&quot;\n &quot;),e.removeAttribute(n),r()}).catch(a)}}else r()})}function pm(e){return Promise.all([dm(e,&quot;::before &quot;),dm(e,&quot;::after &quot;)])}function mm(e){return!(e.parentNode===document.head||~ud.indexOf(e.tagName.toUpperCase())||e.getAttribute(&quot;data-fa-pseudo-element &quot;)||e.parentNode &amp;&amp;&quot;svg &quot;===e.parentNode.tagName)}function hm(e){if(sd)return new Promise(function(t,n){var r=kd(e.querySelectorAll(&quot;*&quot;)).filter(mm).map(pm),a=Up(&quot;searchPseudoElements &quot;);$p(),Promise.all(r).then(function(){a(),Xp(),t()}).catch(function(){a(),Xp(),n()})})}var gm=!1,vm=function(e){return e.toLowerCase().split(&quot;&quot;).reduce(function(e,t){var n=t.toLowerCase().split(&quot;-&quot;),r=n[0],a=n.slice(1).join(&quot;-&quot;);if(r &amp;&amp;&quot;h &quot;===a)return e.flipX=!0,e;if(r &amp;&amp;&quot;v &quot;===a)return e.flipY=!0,e;if(a=parseFloat(a),isNaN(a))return e;switch(r){case &quot;grow &quot;:e.size=e.size+a;break;case &quot;shrink &quot;:e.size=e.size-a;break;case &quot;left &quot;:e.x=e.x-a;break;case &quot;right &quot;:e.x=e.x+a;break;case &quot;up &quot;:e.y=e.y-a;break;case &quot;down &quot;:e.y=e.y+a;break;case &quot;rotate &quot;:e.rotate=e.rotate+a}return e},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},ym={x:0,y:0,width:&quot;100%&quot;,height:&quot;100%&quot;};function Em(e){var t=!(arguments.length &gt;1 &amp;&amp;void 0!==arguments[1])||arguments[1];return e.attributes &amp;&amp;(e.attributes.fill||t)&amp;&amp;(e.attributes.fill=&quot;black &quot;),e}!function(e,t){var n=wp;hp=e,gp={},Object.keys(vp).forEach(function(e){-1===yp.indexOf(e)&amp;&amp;delete vp[e]}),hp.forEach(function(e){var t=e.mixout?e.mixout():{};if(Object.keys(t).forEach(function(e){&quot;function &quot;==typeof t[e]&amp;&amp;(n[e]=t[e]),&quot;object &quot;===Gf(t[e])&amp;&amp;Object.keys(t[e]).forEach(function(r){n[e]||(n[e]={}),n[e][r]=t[e][r]})}),e.hooks){var r=e.hooks();Object.keys(r).forEach(function(e){gp[e]||(gp[e]=[]),gp[e].push(r[e])})}e.provides &amp;&amp;e.provides(vp)})}([jd,im,lm,sm,cm,{hooks:function(){return{mutationObserverCallbacks:function(e){return e.pseudoElementsCallback=hm,e}}},provides:function(e){e.pseudoElements2svg=function(e){var t=e.node;wd.searchPseudoElements &amp;&amp;hm(void 0===t?od:t)}}},{mixout:function(){return{dom:{unwatch:function(){$p(),gm=!0}}}},hooks:function(){return{bootstrap:function(){qp(Ep(&quot;mutationObserverCallbacks &quot;,{}))},noAuto:function(){Kp &amp;&amp;Kp.disconnect()},watch:function(e){var t=e.observeMutationsRoot;gm?Xp():qp(Ep(&quot;mutationObserverCallbacks &quot;,{observeMutationsRoot:t}))}}}},{mixout:function(){return{parse:{transform:function(e){return vm(e)}}}},hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-transform &quot;);return n &amp;&amp;(e.transform=vm(n)),e}}},provides:function(e){e.generateAbstractTransformGrouping=function(e){var t=e.main,n=e.transform,r=e.iconWidth,a={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},o=&quot;translate(&quot;.concat(32*n.x,&quot;, &quot;).concat(32*n.y,&quot;) &quot;),i=&quot;scale(&quot;.concat(n.size/16*(n.flipX?-1:1),&quot;, &quot;).concat(n.size/16*(n.flipY?-1:1),&quot;) &quot;),l=&quot;rotate(&quot;.concat(n.rotate,&quot;0 0)&quot;),s={outer:a,inner:{transform:&quot;&quot;.concat(o,&quot;&quot;).concat(i,&quot;&quot;).concat(l)},path:{transform:&quot;translate(&quot;.concat(r/2*-1,&quot;-256)&quot;)}};return{tag:&quot;g &quot;,attributes:Wf({},s.outer),children:[{tag:&quot;g &quot;,attributes:Wf({},s.inner),children:[{tag:t.icon.tag,children:t.icon.children,attributes:Wf(Wf({},t.icon.attributes),s.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-mask &quot;),r=n?pp(n.split(&quot;&quot;).map(function(e){return e.trim()})):{prefix:null,iconName:null,rest:[]};return r.prefix||(r.prefix=fp()),e.mask=r,e.maskId=t.getAttribute(&quot;data-fa-mask-id &quot;),e}}},provides:function(e){e.generateAbstractMask=function(e){var t,n=e.children,r=e.attributes,a=e.main,o=e.mask,i=e.maskId,l=a.icon,s=o.icon,c=function(e){var t=e.transform,n=e.iconWidth,r={transform:&quot;translate(&quot;.concat(e.containerWidth/2,&quot;256)&quot;)},a=&quot;translate(&quot;.concat(32*t.x,&quot;, &quot;).concat(32*t.y,&quot;) &quot;),o=&quot;scale(&quot;.concat(t.size/16*(t.flipX?-1:1),&quot;, &quot;).concat(t.size/16*(t.flipY?-1:1),&quot;) &quot;),i=&quot;rotate(&quot;.concat(t.rotate,&quot;0 0)&quot;);return{outer:r,inner:{transform:&quot;&quot;.concat(a,&quot;&quot;).concat(o,&quot;&quot;).concat(i)},path:{transform:&quot;translate(&quot;.concat(n/2*-1,&quot;-256)&quot;)}}}({transform:e.transform,containerWidth:o.width,iconWidth:a.width}),u={tag:&quot;rect &quot;,attributes:Wf(Wf({},ym),{},{fill:&quot;white &quot;})},f=l.children?{children:l.children.map(Em)}:{},d={tag:&quot;g &quot;,attributes:Wf({},c.inner),children:[Em(Wf({tag:l.tag,attributes:Wf(Wf({},l.attributes),c.path)},f))]},p={tag:&quot;g &quot;,attributes:Wf({},c.outer),children:[d]},m=&quot;mask-&quot;.concat(i||Id()),h=&quot;clip-&quot;.concat(i||Id()),g={tag:&quot;mask &quot;,attributes:Wf(Wf({},ym),{},{id:m,maskUnits:&quot;userSpaceOnUse &quot;,maskContentUnits:&quot;userSpaceOnUse &quot;}),children:[u,p]},v={tag:&quot;defs &quot;,children:[{tag:&quot;clipPath &quot;,attributes:{id:h},children:(t=s,&quot;g &quot;===t.tag?t.children:[t])},g]};return n.push(v,{tag:&quot;rect &quot;,attributes:Wf({fill:&quot;currentColor &quot;,&quot;clip-path &quot;:&quot;url(#&quot;.concat(h,&quot;)&quot;),mask:&quot;url(#&quot;.concat(m,&quot;)&quot;)},ym)}),{children:n,attributes:r}}}},{provides:function(e){var t=!1;ad.matchMedia &amp;&amp;(t=ad.matchMedia(&quot;(prefers-reduced-motion: reduce)&quot;).matches),e.missingIconAbstract=function(){var e=[],n={fill:&quot;currentColor &quot;},r={attributeType:&quot;XML &quot;,repeatCount:&quot;indefinite &quot;,dur:&quot;2s &quot;};e.push({tag:&quot;path &quot;,attributes:Wf(Wf({},n),{},{d:&quot;M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z &quot;})});var a=Wf(Wf({},r),{},{attributeName:&quot;opacity &quot;}),o={tag:&quot;circle &quot;,attributes:Wf(Wf({},n),{},{cx:&quot;256 &quot;,cy:&quot;364 &quot;,r:&quot;28 &quot;}),children:[]};return t||o.children.push({tag:&quot;animate &quot;,attributes:Wf(Wf({},r),{},{attributeName:&quot;r &quot;,values:&quot;28;14;28;28;14;28;&quot;})},{tag:&quot;animate &quot;,attributes:Wf(Wf({},a),{},{values:&quot;1;0;1;1;0;1;&quot;})}),e.push(o),e.push({tag:&quot;path &quot;,attributes:Wf(Wf({},n),{},{opacity:&quot;1 &quot;,d:&quot;M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z &quot;}),children:t?[]:[{tag:&quot;animate &quot;,attributes:Wf(Wf({},a),{},{values:&quot;1;0;0;0;0;1;&quot;})}]}),t||e.push({tag:&quot;path &quot;,attributes:Wf(Wf({},n),{},{opacity:&quot;0 &quot;,d:&quot;M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z &quot;}),children:[{tag:&quot;animate &quot;,attributes:Wf(Wf({},a),{},{values:&quot;0;0;1;1;0;0;&quot;})}]}),{tag:&quot;g &quot;,attributes:{class:&quot;missing &quot;},children:e}}}},{hooks:function(){return{parseNodeAttributes:function(e,t){var n=t.getAttribute(&quot;data-fa-symbol &quot;);return e.symbol=null!==n &amp;&amp;(&quot;&quot;===n||n),e}}}}]);var bm,Tm=wp.parse,Nm=wp.icon,Rm=n(function(e,t){!function(){var e=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.for,n=e?Symbol.for(&quot;react.element &quot;):60103,r=e?Symbol.for(&quot;react.portal &quot;):60106,a=e?Symbol.for(&quot;react.fragment &quot;):60107,o=e?Symbol.for(&quot;react.strict_mode &quot;):60108,i=e?Symbol.for(&quot;react.profiler &quot;):60114,l=e?Symbol.for(&quot;react.provider &quot;):60109,s=e?Symbol.for(&quot;react.context &quot;):60110,c=e?Symbol.for(&quot;react.async_mode &quot;):60111,u=e?Symbol.for(&quot;react.concurrent_mode &quot;):60111,f=e?Symbol.for(&quot;react.forward_ref &quot;):60112,d=e?Symbol.for(&quot;react.suspense &quot;):60113,p=e?Symbol.for(&quot;react.suspense_list &quot;):60120,m=e?Symbol.for(&quot;react.memo &quot;):60115,h=e?Symbol.for(&quot;react.lazy &quot;):60116,g=e?Symbol.for(&quot;react.block &quot;):60121,v=e?Symbol.for(&quot;react.fundamental &quot;):60117,y=e?Symbol.for(&quot;react.responder &quot;):60118,E=e?Symbol.for(&quot;react.scope &quot;):60119;function b(e){if(&quot;object &quot;==typeof e &amp;&amp;null!==e){var t=e.$$typeof;switch(t){case n:var p=e.type;switch(p){case c:case u:case a:case i:case o:case d:return p;default:var g=p &amp;&amp;p.$$typeof;switch(g){case s:case f:case h:case m:case l:return g;default:return t}}case r:return t}}}var T=u,N=s,R=l,S=n,w=f,O=a,C=h,A=m,I=r,k=i,x=o,_=d,L=!1;function P(e){return b(e)===u}t.AsyncMode=c,t.ConcurrentMode=T,t.ContextConsumer=N,t.ContextProvider=R,t.Element=S,t.ForwardRef=w,t.Fragment=O,t.Lazy=C,t.Memo=A,t.Portal=I,t.Profiler=k,t.StrictMode=x,t.Suspense=_,t.isAsyncMode=function(e){return L||(L=!0,console.warn(&quot;The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.&quot;)),P(e)||b(e)===c},t.isConcurrentMode=P,t.isContextConsumer=function(e){return b(e)===s},t.isContextProvider=function(e){return b(e)===l},t.isElement=function(e){return &quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;e.$$typeof===n},t.isForwardRef=function(e){return b(e)===f},t.isFragment=function(e){return b(e)===a},t.isLazy=function(e){return b(e)===h},t.isMemo=function(e){return b(e)===m},t.isPortal=function(e){return b(e)===r},t.isProfiler=function(e){return b(e)===i},t.isStrictMode=function(e){return b(e)===o},t.isSuspense=function(e){return b(e)===d},t.isValidElementType=function(e){return &quot;string &quot;==typeof e||&quot;function &quot;==typeof e||e===a||e===u||e===i||e===o||e===d||e===p||&quot;object &quot;==typeof e &amp;&amp;null!==e &amp;&amp;(e.$$typeof===h||e.$$typeof===m||e.$$typeof===l||e.$$typeof===s||e.$$typeof===f||e.$$typeof===v||e.$$typeof===y||e.$$typeof===E||e.$$typeof===g)},t.typeOf=b}()}),Sm=n(function(e){e.exports=Rm}),wm=&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;,Om=Function.call.bind(Object.prototype.hasOwnProperty),Cm={},Am=Om;function Im(e,t,n,r,a){for(var o in e)if(Am(e,o)){var i;try{if(&quot;function &quot;!=typeof e[o]){var l=Error((r||&quot;React class &quot;)+&quot;: &quot;+n+&quot;type `&quot;+o+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+typeof e[o]+&quot;`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.&quot;);throw l.name=&quot;Invariant Violation &quot;,l}i=e[o](t,o,r,n,null,&quot;SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED &quot;)}catch(e){i=e}if(!i||i instanceof Error||bm((r||&quot;React class &quot;)+&quot;: type specification of &quot;+n+&quot;`&quot;+o+&quot;` is invalid; the type checker function must return `null` or an `Error` but returned a &quot;+typeof i+&quot;. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).&quot;),i instanceof Error &amp;&amp;!(i.message in Cm)){Cm[i.message]=!0;var s=a?a():&quot;&quot;;bm(&quot;Failed &quot;+n+&quot;type: &quot;+i.message+(null!=s?s:&quot;&quot;))}}}bm=function(e){var t=&quot;Warning: &quot;+e;&quot;undefined &quot;!=typeof console &amp;&amp;console.error(t);try{throw new Error(t)}catch(e){}},Im.resetWarningCache=function(){Cm={}};var km,xm=Im;function _m(){return null}km=function(e){var t=&quot;Warning: &quot;+e;&quot;undefined &quot;!=typeof console &amp;&amp;console.error(t);try{throw new Error(t)}catch(e){}};var Lm=n(function(e){e.exports=function(e,t){var n=&quot;function &quot;==typeof Symbol &amp;&amp;Symbol.iterator,r=&quot;&lt;&lt;anonymous &gt;&gt;&quot;,a={array:c(&quot;array &quot;),bigint:c(&quot;bigint &quot;),bool:c(&quot;boolean &quot;),func:c(&quot;function &quot;),number:c(&quot;number &quot;),object:c(&quot;object &quot;),string:c(&quot;string &quot;),symbol:c(&quot;symbol &quot;),any:s(_m),arrayOf:function(e){return s(function(t,n,r,a,o){if(&quot;function &quot;!=typeof e)return new i(&quot;Property `&quot;+o+&quot;` of component `&quot;+r+&quot;` has invalid PropType notation inside arrayOf.&quot;);var l=t[n];if(!Array.isArray(l))return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+d(l)+&quot;` supplied to `&quot;+r+&quot;`, expected an array.&quot;);for(var s=0;s &lt;l.length;s++){var c=e(l,s,r,a,o+&quot;[&quot;+s+&quot;]&quot;,wm);if(c instanceof Error)return c}return null})},element:s(function(t,n,r,a,o){var l=t[n];return e(l)?null:new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+d(l)+&quot;` supplied to `&quot;+r+&quot;`, expected a single ReactElement.&quot;)}),elementType:s(function(e,t,n,r,a){var o=e[t];return Sm.isValidElementType(o)?null:new i(&quot;Invalid &quot;+r+&quot;`&quot;+a+&quot;` of type `&quot;+d(o)+&quot;` supplied to `&quot;+n+&quot;`, expected a single ReactElement type.&quot;)}),instanceOf:function(e){return s(function(t,n,a,o,l){return t[n]instanceof e?null:new i(&quot;Invalid &quot;+o+&quot;`&quot;+l+&quot;` of type `&quot;+((s=t[n]).constructor &amp;&amp;s.constructor.name?s.constructor.name:r)+&quot;` supplied to `&quot;+a+&quot;`, expected instance of `&quot;+(e.name||r)+&quot;`.&quot;);var s})},node:s(function(e,t,n,r,a){return f(e[t])?null:new i(&quot;Invalid &quot;+r+&quot;`&quot;+a+&quot;` supplied to `&quot;+n+&quot;`, expected a ReactNode.&quot;)}),objectOf:function(e){return s(function(t,n,r,a,o){if(&quot;function &quot;!=typeof e)return new i(&quot;Property `&quot;+o+&quot;` of component `&quot;+r+&quot;` has invalid PropType notation inside objectOf.&quot;);var l=t[n],s=d(l);if(&quot;object &quot;!==s)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+s+&quot;` supplied to `&quot;+r+&quot;`, expected an object.&quot;);for(var c in l)if(Om(l,c)){var u=e(l,c,r,a,o+&quot;.&quot;+c,wm);if(u instanceof Error)return u}return null})},oneOf:function(e){if(!Array.isArray(e))return km(arguments.length &gt;1?&quot;Invalid arguments supplied to oneOf, expected an array, got &quot;+arguments.length+&quot;arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).&quot;:&quot;Invalid argument supplied to oneOf, expected an array.&quot;),_m;function t(t,n,r,a,l){for(var s=t[n],c=0;c &lt;e.length;c++)if(o(s,e[c]))return null;var u=JSON.stringify(e,function(e,t){return &quot;symbol &quot;===p(t)?String(t):t});return new i(&quot;Invalid &quot;+a+&quot;`&quot;+l+&quot;` of value `&quot;+String(s)+&quot;` supplied to `&quot;+r+&quot;`, expected one of &quot;+u+&quot;.&quot;)}return s(t)},oneOfType:function(e){if(!Array.isArray(e))return km(&quot;Invalid argument supplied to oneOfType, expected an instance of array.&quot;),_m;for(var t=0;t &lt;e.length;t++){var n=e[t];if(&quot;function &quot;!=typeof n)return km(&quot;Invalid argument supplied to oneOfType. Expected an array of check functions, but received &quot;+m(n)+&quot;at index &quot;+t+&quot;.&quot;),_m}return s(function(t,n,r,a,o){for(var l=[],s=0;s &lt;e.length;s++){var c=(0,e[s])(t,n,r,a,o,wm);if(null==c)return null;c.data &amp;&amp;Om(c.data,&quot;expectedType &quot;)&amp;&amp;l.push(c.data.expectedType)}return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` supplied to `&quot;+r+&quot;`&quot;+(l.length &gt;0?&quot;, expected one of type [&quot;+l.join(&quot;, &quot;)+&quot;]&quot;:&quot;&quot;)+&quot;.&quot;)})},shape:function(e){return s(function(t,n,r,a,o){var l=t[n],s=d(l);if(&quot;object &quot;!==s)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+s+&quot;` supplied to `&quot;+r+&quot;`, expected `object`.&quot;);for(var c in e){var f=e[c];if(&quot;function &quot;!=typeof f)return u(r,a,o,c,p(f));var m=f(l,c,r,a,o+&quot;.&quot;+c,wm);if(m)return m}return null})},exact:function(e){return s(function(t,n,r,a,o){var s=t[n],c=d(s);if(&quot;object &quot;!==c)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+c+&quot;` supplied to `&quot;+r+&quot;`, expected `object`.&quot;);var f=l({},t[n],e);for(var m in f){var h=e[m];if(Om(e,m)&amp;&amp;&quot;function &quot;!=typeof h)return u(r,a,o,m,p(h));if(!h)return new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` key `&quot;+m+&quot;` supplied to `&quot;+r+&quot;`.\nBad object: &quot;+JSON.stringify(t[n],null,&quot;&quot;)+&quot;\nValid keys: &quot;+JSON.stringify(Object.keys(e),null,&quot;&quot;));var g=h(s,m,r,a,o+&quot;.&quot;+m,wm);if(g)return g}return null})}};function o(e,t){return e===t?0!==e||1/e==1/t:e!=e &amp;&amp;t!=t}function i(e,t){this.message=e,this.data=t &amp;&amp;&quot;object &quot;==typeof t?t:{},this.stack=&quot;&quot;}function s(e){function t(t,n,a,o,l,s,c){if(o=o||r,s=s||a,c!==wm){var u=new Error(&quot;Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types &quot;);throw u.name=&quot;Invariant Violation &quot;,u}return null==n[a]?t?new i(null===n[a]?&quot;The &quot;+l+&quot;`&quot;+s+&quot;` is marked as required in `&quot;+o+&quot;`, but its value is `null`.&quot;:&quot;The &quot;+l+&quot;`&quot;+s+&quot;` is marked as required in `&quot;+o+&quot;`, but its value is `undefined`.&quot;):null:e(n,a,o,l,s)}var n=t.bind(null,!1);return n.isRequired=t.bind(null,!0),n}function c(e){return s(function(t,n,r,a,o,l){var s=t[n];return d(s)!==e?new i(&quot;Invalid &quot;+a+&quot;`&quot;+o+&quot;` of type `&quot;+p(s)+&quot;` supplied to `&quot;+r+&quot;`, expected `&quot;+e+&quot;`.&quot;,{expectedType:e}):null})}function u(e,t,n,r,a){return new i((e||&quot;React class &quot;)+&quot;: &quot;+t+&quot;type `&quot;+n+&quot;.&quot;+r+&quot;` is invalid; it must be a function, usually from the `prop-types` package, but received `&quot;+a+&quot;`.&quot;)}function f(t){switch(typeof t){case &quot;number &quot;:case &quot;string &quot;:case &quot;undefined &quot;:return!0;case &quot;boolean &quot;:return!t;case &quot;object &quot;:if(Array.isArray(t))return t.every(f);if(null===t||e(t))return!0;var r=function(e){var t=e &amp;&amp;(n &amp;&amp;e[n]||e[&quot;@@iterator &quot;]);if(&quot;function &quot;==typeof t)return t}(t);if(!r)return!1;var a,o=r.call(t);if(r!==t.entries){for(;!(a=o.next()).done;)if(!f(a.value))return!1}else for(;!(a=o.next()).done;){var i=a.value;if(i &amp;&amp;!f(i[1]))return!1}return!0;default:return!1}}function d(e){var t=typeof e;return Array.isArray(e)?&quot;array &quot;:e instanceof RegExp?&quot;object &quot;:function(e,t){return &quot;symbol &quot;===e||!!t &amp;&amp;(&quot;Symbol &quot;===t[&quot;@@toStringTag &quot;]||&quot;function &quot;==typeof Symbol &amp;&amp;t instanceof Symbol)}(t,e)?&quot;symbol &quot;:t}function p(e){if(null==e)return &quot;&quot;+e;var t=d(e);if(&quot;object &quot;===t){if(e instanceof Date)return &quot;date &quot;;if(e instanceof RegExp)return &quot;regexp &quot;}return t}function m(e){var t=p(e);switch(t){case &quot;array &quot;:case &quot;object &quot;:return &quot;an &quot;+t;case &quot;boolean &quot;:case &quot;date &quot;:case &quot;regexp &quot;:return &quot;a &quot;+t;default:return t}}return i.prototype=Error.prototype,a.checkPropTypes=xm,a.resetWarningCache=xm.resetWarningCache,a.PropTypes=a,a}(Sm.isElement)});function Pm(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t &amp;&amp;(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function Mm(e){for(var t=1;t &lt;arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Pm(Object(n),!0).forEach(function(t){Um(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Pm(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function Dm(e){return(Dm=&quot;function &quot;==typeof Symbol &amp;&amp;&quot;symbol &quot;==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e &amp;&amp;&quot;function &quot;==typeof Symbol &amp;&amp;e.constructor===Symbol &amp;&amp;e!==Symbol.prototype?&quot;symbol &quot;:typeof e})(e)}function Um(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function jm(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||(a[n]=e[n]);return a}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r &lt;o.length;r++)t.indexOf(n=o[r])&gt;=0||Object.prototype.propertyIsEnumerable.call(e,n)&amp;&amp;(a[n]=e[n])}return a}function Fm(e){return function(e){if(Array.isArray(e))return zm(e)}(e)||function(e){if(&quot;undefined &quot;!=typeof Symbol &amp;&amp;null!=e[Symbol.iterator]||null!=e[&quot;@@iterator &quot;])return Array.from(e)}(e)||function(e,t){if(e){if(&quot;string &quot;==typeof e)return zm(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return &quot;Object &quot;===n &amp;&amp;e.constructor &amp;&amp;(n=e.constructor.name),&quot;Map &quot;===n||&quot;Set &quot;===n?Array.from(e):&quot;Arguments &quot;===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?zm(e,t):void 0}}(e)||function(){throw new TypeError(&quot;Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.&quot;)}()}function zm(e,t){(null==t||t &gt;e.length)&amp;&amp;(t=e.length);for(var n=0,r=new Array(t);n &lt;t;n++)r[n]=e[n];return r}function Hm(e){return t=e,(t-=0)==t?e:(e=e.replace(/[\-_\s]+(.)?/g,function(e,t){return t?t.toUpperCase():&quot;&quot;})).substr(0,1).toLowerCase()+e.substr(1);var t}var Bm=[&quot;style &quot;];function Vm(e){return e.split(&quot;;&quot;).map(function(e){return e.trim()}).filter(function(e){return e}).reduce(function(e,t){var n,r=t.indexOf(&quot;:&quot;),a=Hm(t.slice(0,r)),o=t.slice(r+1).trim();return a.startsWith(&quot;webkit &quot;)?e[(n=a,n.charAt(0).toUpperCase()+n.slice(1))]=o:e[a]=o,e},{})}var Wm=!1;try{Wm=!1}catch(Ro){}function Gm(e){return e &amp;&amp;&quot;object &quot;===Dm(e)&amp;&amp;e.prefix &amp;&amp;e.iconName &amp;&amp;e.icon?e:Tm.icon?Tm.icon(e):null===e?null:e &amp;&amp;&quot;object &quot;===Dm(e)&amp;&amp;e.prefix &amp;&amp;e.iconName?e:Array.isArray(e)&amp;&amp;2===e.length?{prefix:e[0],iconName:e[1]}:&quot;string &quot;==typeof e?{prefix:&quot;fas &quot;,iconName:e}:void 0}function Ym(e,t){return Array.isArray(t)&amp;&amp;t.length &gt;0||!Array.isArray(t)&amp;&amp;t?Um({},e,t):{}}var $m=[&quot;forwardedRef &quot;];function Xm(e){var t=e.forwardedRef,n=jm(e,$m),r=n.mask,a=n.symbol,o=n.className,i=n.title,l=n.titleId,s=n.maskId,c=Gm(n.icon),u=Ym(&quot;classes &quot;,[].concat(Fm(function(e){var t,n=e.flip,r=e.size,a=e.rotation,o=e.pull,i=(Um(t={&quot;fa-beat &quot;:e.beat,&quot;fa-fade &quot;:e.fade,&quot;fa-beat-fade &quot;:e.beatFade,&quot;fa-bounce &quot;:e.bounce,&quot;fa-shake &quot;:e.shake,&quot;fa-flash &quot;:e.flash,&quot;fa-spin &quot;:e.spin,&quot;fa-spin-reverse &quot;:e.spinReverse,&quot;fa-spin-pulse &quot;:e.spinPulse,&quot;fa-pulse &quot;:e.pulse,&quot;fa-fw &quot;:e.fixedWidth,&quot;fa-inverse &quot;:e.inverse,&quot;fa-border &quot;:e.border,&quot;fa-li &quot;:e.listItem,&quot;fa-flip-horizontal &quot;:&quot;horizontal &quot;===n||&quot;both &quot;===n,&quot;fa-flip-vertical &quot;:&quot;vertical &quot;===n||&quot;both &quot;===n},&quot;fa-&quot;.concat(r),null!=r),Um(t,&quot;fa-rotate-&quot;.concat(a),null!=a &amp;&amp;0!==a),Um(t,&quot;fa-pull-&quot;.concat(o),null!=o),Um(t,&quot;fa-swap-opacity &quot;,e.swapOpacity),t);return Object.keys(i).map(function(e){return i[e]?e:null}).filter(function(e){return e})}(n)),Fm(o.split(&quot;&quot;)))),f=Ym(&quot;transform &quot;,&quot;string &quot;==typeof n.transform?Tm.transform(n.transform):n.transform),d=Ym(&quot;mask &quot;,Gm(r)),p=Nm(c,Mm(Mm(Mm(Mm({},u),f),d),{},{symbol:a,title:i,titleId:l,maskId:s}));if(!p)return function(){var e;!Wm &amp;&amp;console &amp;&amp;&quot;function &quot;==typeof console.error &amp;&amp;(e=console).error.apply(e,arguments)}(&quot;Could not find icon &quot;,c),null;var m=p.abstract,h={ref:t};return Object.keys(n).forEach(function(e){Xm.defaultProps.hasOwnProperty(e)||(h[e]=n[e])}),Km(m[0],h)}Xm.displayName=&quot;FontAwesomeIcon &quot;,Xm.propTypes={beat:Lm.bool,border:Lm.bool,bounce:Lm.bool,className:Lm.string,fade:Lm.bool,flash:Lm.bool,mask:Lm.oneOfType([Lm.object,Lm.array,Lm.string]),maskId:Lm.string,fixedWidth:Lm.bool,inverse:Lm.bool,flip:Lm.oneOf([&quot;horizontal &quot;,&quot;vertical &quot;,&quot;both &quot;]),icon:Lm.oneOfType([Lm.object,Lm.array,Lm.string]),listItem:Lm.bool,pull:Lm.oneOf([&quot;right &quot;,&quot;left &quot;]),pulse:Lm.bool,rotation:Lm.oneOf([0,90,180,270]),shake:Lm.bool,size:Lm.oneOf([&quot;2xs &quot;,&quot;xs &quot;,&quot;sm &quot;,&quot;lg &quot;,&quot;xl &quot;,&quot;2xl &quot;,&quot;1x &quot;,&quot;2x &quot;,&quot;3x &quot;,&quot;4x &quot;,&quot;5x &quot;,&quot;6x &quot;,&quot;7x &quot;,&quot;8x &quot;,&quot;9x &quot;,&quot;10x &quot;]),spin:Lm.bool,spinPulse:Lm.bool,spinReverse:Lm.bool,symbol:Lm.oneOfType([Lm.bool,Lm.string]),title:Lm.string,titleId:Lm.string,transform:Lm.oneOfType([Lm.string,Lm.object]),swapOpacity:Lm.bool},Xm.defaultProps={border:!1,className:&quot;&quot;,mask:null,maskId:null,fixedWidth:!1,inverse:!1,flip:null,icon:null,listItem:!1,pull:null,pulse:!1,rotation:null,size:null,spin:!1,beat:!1,fade:!1,beatFade:!1,bounce:!1,shake:!1,symbol:!1,title:&quot;&quot;,titleId:null,transform:null,swapOpacity:!1};var Km=function e(t,n){var r=arguments.length &gt;2 &amp;&amp;void 0!==arguments[2]?arguments[2]:{};if(&quot;string &quot;==typeof n)return n;var a=(n.children||[]).map(function(n){return e(t,n)}),o=Object.keys(n.attributes||{}).reduce(function(e,t){var r=n.attributes[t];switch(t){case &quot;class &quot;:e.attrs.className=r,delete n.attributes.class;break;case &quot;style &quot;:e.attrs.style=Vm(r);break;default:0===t.indexOf(&quot;aria-&quot;)||0===t.indexOf(&quot;data-&quot;)?e.attrs[t.toLowerCase()]=r:e.attrs[Hm(t)]=r}return e},{attrs:{}}),i=r.style,l=void 0===i?{}:i,s=jm(r,Bm);return o.attrs.style=Mm(Mm({},o.attrs.style),l),t.apply(void 0,[n.tag,Mm(Mm({},o.attrs),s)].concat(Fm(a)))}.bind(null,c.createElement),qm={prefix:&quot;fas &quot;,iconName:&quot;align-left &quot;,icon:[448,512,[],&quot;f036 &quot;,&quot;M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z &quot;]},Jm={prefix:&quot;fas &quot;,iconName:&quot;angle-down &quot;,icon:[384,512,[8964],&quot;f107 &quot;,&quot;M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z &quot;]},Qm={prefix:&quot;fas &quot;,iconName:&quot;bug &quot;,icon:[512,512,[],&quot;f188 &quot;,&quot;M352 96V99.56C352 115.3 339.3 128 323.6 128H188.4C172.7 128 159.1 115.3 159.1 99.56V96C159.1 42.98 202.1 0 255.1 0C309 0 352 42.98 352 96zM41.37 105.4C53.87 92.88 74.13 92.88 86.63 105.4L150.6 169.4C151.3 170 151.9 170.7 152.5 171.4C166.8 164.1 182.9 160 199.1 160H312C329.1 160 345.2 164.1 359.5 171.4C360.1 170.7 360.7 170 361.4 169.4L425.4 105.4C437.9 92.88 458.1 92.88 470.6 105.4C483.1 117.9 483.1 138.1 470.6 150.6L406.6 214.6C405.1 215.3 405.3 215.9 404.6 216.5C410.7 228.5 414.6 241.9 415.7 256H480C497.7 256 512 270.3 512 288C512 305.7 497.7 320 480 320H416C416 344.6 410.5 367.8 400.6 388.6C402.7 389.9 404.8 391.5 406.6 393.4L470.6 457.4C483.1 469.9 483.1 490.1 470.6 502.6C458.1 515.1 437.9 515.1 425.4 502.6L362.3 439.6C337.8 461.4 306.5 475.8 272 479.2V240C272 231.2 264.8 224 255.1 224C247.2 224 239.1 231.2 239.1 240V479.2C205.5 475.8 174.2 461.4 149.7 439.6L86.63 502.6C74.13 515.1 53.87 515.1 41.37 502.6C28.88 490.1 28.88 469.9 41.37 457.4L105.4 393.4C107.2 391.5 109.3 389.9 111.4 388.6C101.5 367.8 96 344.6 96 320H32C14.33 320 0 305.7 0 288C0 270.3 14.33 256 32 256H96.3C97.38 241.9 101.3 228.5 107.4 216.5C106.7 215.9 106 215.3 105.4 214.6L41.37 150.6C28.88 138.1 28.88 117.9 41.37 105.4H41.37z &quot;]},Zm={prefix:&quot;fas &quot;,iconName:&quot;circle-half-stroke &quot;,icon:[512,512,[9680,&quot;adjust &quot;],&quot;f042 &quot;,&quot;M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 64V448C362 448 448 362 448 256C448 149.1 362 64 256 64z &quot;]},eh={prefix:&quot;fas &quot;,iconName:&quot;expand &quot;,icon:[448,512,[],&quot;f065 &quot;,&quot;M128 32H32C14.31 32 0 46.31 0 64v96c0 17.69 14.31 32 32 32s32-14.31 32-32V96h64c17.69 0 32-14.31 32-32S145.7 32 128 32zM416 32h-96c-17.69 0-32 14.31-32 32s14.31 32 32 32h64v64c0 17.69 14.31 32 32 32s32-14.31 32-32V64C448 46.31 433.7 32 416 32zM128 416H64v-64c0-17.69-14.31-32-32-32s-32 14.31-32 32v96c0 17.69 14.31 32 32 32h96c17.69 0 32-14.31 32-32S145.7 416 128 416zM416 320c-17.69 0-32 14.31-32 32v64h-64c-17.69 0-32 14.31-32 32s14.31 32 32 32h96c17.69 0 32-14.31 32-32v-96C448 334.3 433.7 320 416 320z &quot;]},th={prefix:&quot;fas &quot;,iconName:&quot;gear &quot;,icon:[512,512,[9881,&quot;cog &quot;],&quot;f013 &quot;,&quot;M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z &quot;]},nh={prefix:&quot;fas &quot;,iconName:&quot;moon &quot;,icon:[512,512,[127769,9214],&quot;f186 &quot;,&quot;M32 256c0-123.8 100.3-224 223.8-224c11.36 0 29.7 1.668 40.9 3.746c9.616 1.777 11.75 14.63 3.279 19.44C245 86.5 211.2 144.6 211.2 207.8c0 109.7 99.71 193 208.3 172.3c9.561-1.805 16.28 9.324 10.11 16.95C387.9 448.6 324.8 480 255.8 480C132.1 480 32 379.6 32 256z &quot;]},rh={prefix:&quot;fas &quot;,iconName:&quot;share &quot;,icon:[512,512,[&quot;arrow-turn-right &quot;,&quot;mail-forward &quot;],&quot;f064 &quot;,&quot;M503.7 226.2l-176 151.1c-15.38 13.3-39.69 2.545-39.69-18.16V272.1C132.9 274.3 66.06 312.8 111.4 457.8c5.031 16.09-14.41 28.56-28.06 18.62C39.59 444.6 0 383.8 0 322.3c0-152.2 127.4-184.4 288-186.3V56.02c0-20.67 24.28-31.46 39.69-18.16l176 151.1C514.8 199.4 514.8 216.6 503.7 226.2z &quot;]},ah={prefix:&quot;fas &quot;,iconName:&quot;shield-halved &quot;,icon:[512,512,[&quot;shield-alt &quot;],&quot;f3ed &quot;,&quot;M256-.0078C260.7-.0081 265.2 1.008 269.4 2.913L457.7 82.79C479.7 92.12 496.2 113.8 496 139.1C495.5 239.2 454.7 420.7 282.4 503.2C265.7 511.1 246.3 511.1 229.6 503.2C57.25 420.7 16.49 239.2 15.1 139.1C15.87 113.8 32.32 92.12 54.3 82.79L242.7 2.913C246.8 1.008 251.4-.0081 256-.0078V-.0078zM256 444.8C393.1 378 431.1 230.1 432 141.4L256 66.77L256 444.8z &quot;]},oh={prefix:&quot;fas &quot;,iconName:&quot;sun &quot;,icon:[512,512,[9728],&quot;f185 &quot;,&quot;M256 159.1c-53.02 0-95.1 42.98-95.1 95.1S202.1 351.1 256 351.1s95.1-42.98 95.1-95.1S309 159.1 256 159.1zM509.3 347L446.1 255.1l63.15-91.01c6.332-9.125 1.104-21.74-9.826-23.72l-109-19.7l-19.7-109c-1.975-10.93-14.59-16.16-23.72-9.824L256 65.89L164.1 2.736c-9.125-6.332-21.74-1.107-23.72 9.824L121.6 121.6L12.56 141.3C1.633 143.2-3.596 155.9 2.736 164.1L65.89 256l-63.15 91.01c-6.332 9.125-1.105 21.74 9.824 23.72l109 19.7l19.7 109c1.975 10.93 14.59 16.16 23.72 9.824L256 446.1l91.01 63.15c9.127 6.334 21.75 1.107 23.72-9.822l19.7-109l109-19.7C510.4 368.8 515.6 356.1 509.3 347zM256 383.1c-70.69 0-127.1-57.31-127.1-127.1c0-70.69 57.31-127.1 127.1-127.1s127.1 57.3 127.1 127.1C383.1 326.7 326.7 383.1 256 383.1z &quot;]},ih={prefix:&quot;fas &quot;,iconName:&quot;up-right-from-square &quot;,icon:[512,512,[&quot;external-link-alt &quot;],&quot;f35d &quot;,&quot;M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z &quot;]};function lh(e){var t=e.url,n=e.openText;return c.createElement(&quot;div &quot;,null,c.createElement(&quot;p &quot;,{className:&quot;text-sm mb-1 &quot;},e.helpText),c.createElement(&quot;div &quot;,{className:&quot;flex gap-3 &quot;},c.createElement(&quot;a &quot;,{href:t,target:&quot;_blank &quot;,className:&quot;underline ~text-violet-500 hover:~text-violet-600 &quot;},c.createElement(Xm,{icon:ih,className:&quot;opacity-50 text-xs mr-1 &quot;}),n),c.createElement(Rc,{alwaysVisible:!0,direction:&quot;left &quot;,value:t})))}function sh(e){var t=[];return e.includes(&quot;stackTrace &quot;)&amp;&amp;t.push(&quot;stackTraceTab &quot;),e.includes(&quot;context &quot;)&amp;&amp;t.push(&quot;requestTab &quot;,&quot;appTab &quot;,&quot;userTab &quot;,&quot;contextTab &quot;),e.includes(&quot;debug &quot;)&amp;&amp;t.push(&quot;debugTab &quot;),t}function ch(e,t){return t.includes(&quot;stackTrace &quot;)||(e.stacktrace=e.stacktrace.slice(0,1)),t.includes(&quot;debug &quot;)||(e.glows=[],e.context.dumps=[],e.context.queries=[],e.context.logs=[]),t.includes(&quot;context &quot;)||(e.context.request_data={queryString:{},body:{},files:[]},e.context.headers={},e.context.cookies={},e.context.session={},e.context.route=null,e.context.user=null,delete e.context.git,delete e.context.livewire,e.context.view=null),e}function uh(t){var n=t.isOpen,r=c.useContext(Bf),a=c.useState(null),o=a[0],i=a[1],l=c.useState(null),s=l[0],u=l[1],f=c.useState(!1),d=f[0],p=f[1],m=c.useState([{name:&quot;stackTrace &quot;,label:&quot;Stack &quot;,selected:!0},{name:&quot;context &quot;,label:&quot;Context &quot;,selected:!0},{name:&quot;debug &quot;,label:&quot;Debug &quot;,selected:!0}]),h=m[0],g=m[1];return c.createElement(&quot;div &quot;,{className:&quot;block absolute mt-2 top-10 left-1/2 transform -translate-x-6 transition-all duration-150 origin-top-left\n                 &quot;+(n?&quot;&quot;:&quot;opacity-0 pointer-events-none scale-90 &quot;)},c.createElement(&quot;div &quot;,{className:&quot;flex px-4 justify-start &quot;},c.createElement(&quot;div &quot;,{className:&quot;w-0 h-0 border-[10px] border-t-0 border-transparent ~border-b-dropdown &quot;})),c.createElement(&quot;div &quot;,{className:&quot;flex flex-col gap-6 ~bg-dropdown px-10 py-8 shadow-2xl &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center justify-between gap-6 &quot;},c.createElement(&quot;h4 &quot;,{className:&quot;whitespace-nowrap font-semibold &quot;},&quot;Share with Flare &quot;),c.createElement(&quot;a &quot;,{className:&quot;text-xs ~text-gray-500 hover:text-violet-500 flex items-center underline transition-colors &quot;,href:&quot;https://flareapp.io/docs/ignition-for-laravel/sharing-errors &quot;,target:&quot;_blank &quot;},&quot;Docs &quot;,c.createElement(Ff,null))),!o &amp;&amp;c.createElement(c.Fragment,null,c.createElement(&quot;ul &quot;,{className:&quot;grid justify-start gap-3 &quot;},h.map(function(t){var n=t.name;return c.createElement(&quot;li &quot;,{key:n},c.createElement(Hf,{onChange:function(){return t=n,void(h.find(function(e){return e.name===t})&amp;&amp;g(h.map(function(n){return n.name===t?e({},n,{selected:!n.selected}):n})));var t},checked:t.selected,label:t.label}))})),c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-4 &quot;},c.createElement(Ac,{disabled:d||!h.some(function(e){return e.selected}),className:&quot;bg-violet-500 border-violet-500/25 CopyButton text-white &quot;,onClick:function(){try{var e=function(){p(!1)};if(!r.config.shareEndpoint)return Promise.resolve();u(null),p(!0);var t=h.filter(function(e){return e.selected}).map(function(e){return e.name}),n=function(e,n){try{var a=Promise.resolve(function(e,t){var n={tabs:sh(t),lineSelection:window.location.hash,report:ch(e.shareableReport,t)};return new Promise(function(t,r){try{var a=function(){r()},o=function(r,a){try{var o=Promise.resolve(fetch(e.config.shareEndpoint,{method:&quot;POST &quot;,body:JSON.stringify(n),headers:{&quot;Content-Type &quot;:&quot;application/json &quot;,Accept:&quot;application/json &quot;}})).then(function(e){return Promise.resolve(e.json()).then(function(e){e &amp;&amp;e.owner_url &amp;&amp;e.public_url &amp;&amp;t(e)})})}catch(e){return a(e)}return o &amp;&amp;o.then?o.then(void 0,a):o}(0,function(e){r(e)});return Promise.resolve(o &amp;&amp;o.then?o.then(a):a())}catch(e){return Promise.reject(e)}})}(r,t)).then(function(e){window.open(e.owner_url),i(e.public_url)})}catch(e){return n(e)}return a &amp;&amp;a.then?a.then(void 0,n):a}(0,function(e){console.error(e),u(&quot;Something went wrong while sharing, please try again.&quot;)});return Promise.resolve(n &amp;&amp;n.then?n.then(e):e())}catch(e){return Promise.reject(e)}}},c.createElement(Xm,{icon:ih,className:&quot;opacity-50 text-xs mr-1 &quot;}),&quot;Create Share &quot;))),o &amp;&amp;c.createElement(&quot;div &quot;,{className:&quot;grid grid-cols-1 gap-4 &quot;},c.createElement(lh,{url:o,helpText:&quot;Share your error with others &quot;,openText:&quot;Visit public share &quot;})),s &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;text-red-500 &quot;},s)))}function fh(t){var n,r=t.isOpen,a=c.useContext(Bf),o=c.useContext(Te),i=o.ignitionConfig,l=o.setIgnitionConfig,s=c.useState(i.editor||&quot;&quot;),u=s[0],f=s[1],d=c.useState(null),p=d[0],m=d[1],h=c.useState(!1),g=h[0],v=h[1],y=c.useState(!1),E=y[0],b=y[1],T=c.useState([{value:&quot;light &quot;,icon:c.createElement(Xm,{icon:oh,className:&quot;group-hover:text-amber-400 &quot;}),selected:&quot;light &quot;===i.theme},{value:&quot;dark &quot;,icon:c.createElement(Xm,{icon:nh,className:&quot;group-hover:text-amber-300 &quot;}),selected:&quot;dark &quot;===i.theme},{value:&quot;auto &quot;,icon:c.createElement(Xm,{icon:Zm,className:&quot;group-hover:text-indigo-500 &quot;}),selected:&quot;auto &quot;===i.theme}]),N=T[0],R=T[1];return c.createElement(&quot;div &quot;,{className:&quot;\n                absolute mt-2 top-10 right-1/2 translate-x-6 transition-all duration-150 origin-top-right\n                &quot;+(r?&quot;&quot;:&quot;opacity-0 pointer-events-none scale-90 &quot;)+&quot;\n            &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex px-4 justify-end &quot;},c.createElement(&quot;div &quot;,{className:&quot;w-0 h-0 border-[10px] border-t-0 border-transparent ~border-b-dropdown &quot;})),c.createElement(&quot;div &quot;,{className:&quot;flex flex-col gap-6 ~bg-dropdown px-10 py-8 shadow-2xl &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center justify-between gap-6 &quot;},c.createElement(&quot;h4 &quot;,{className:&quot;whitespace-nowrap font-semibold &quot;},&quot;Ignition Settings &quot;),c.createElement(&quot;a &quot;,{className:&quot;text-xs ~text-gray-500 hover:text-red-500 flex items-center underline transition-colors &quot;,href:&quot;https://flareapp.io/ignition &quot;},&quot;Docs &quot;,c.createElement(zf,null))),c.createElement(&quot;label &quot;,{htmlFor:&quot;editor-select &quot;},c.createElement(&quot;span &quot;,{className:&quot;uppercase tracking-wider ~text-gray-500 text-xs font-bold &quot;},&quot;Editor &quot;),c.createElement(&quot;div &quot;,{className:&quot;group mt-2 &quot;},c.createElement(&quot;select &quot;,{id:&quot;editor-select &quot;,className:&quot;block appearance-none w-full ~bg-gray-500/5 h-12 px-4 pr-8 rounded-none leading-tight &quot;,value:u,onChange:function(t){return function(t){f(t),l(e({},i,{editor:t}))}(t.target.value)}},Object.entries(i.editorOptions).map(function(e){var t=e[0];return c.createElement(&quot;option &quot;,{className:&quot;text-gray-800 &quot;,key:t,value:t},e[1].label)})),c.createElement(&quot;div &quot;,{className:&quot;pointer-events-none absolute inset-y-0 right-0 flex items-center px-4 &quot;},c.createElement(Xm,{icon:Jm,className:&quot;group-hover:text-indigo-500 text-sm &quot;})))),c.createElement(&quot;div &quot;,null,c.createElement(&quot;span &quot;,{className:&quot;uppercase tracking-wider ~text-gray-500 text-xs font-bold &quot;},&quot;Theme &quot;),c.createElement(&quot;button &quot;,{className:&quot;mt-2 w-full ~bg-gray-500/5 rounded-none leading-tight &quot;,onClick:function(){var t=N.findIndex(function(e){return e.selected}),n=-1===t||t===N.length-1?0:t+1;m(N[t].value),R([].concat(N.map(function(e,t){return e.selected=t===n,e}))),l(e({},i,{theme:N[n].value}))}},c.createElement(&quot;div &quot;,{className:&quot;group flex items-center &quot;,style:{WebkitMaskImage:&quot;linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%)&quot;}},c.createElement(&quot;div &quot;,{className:&quot;px-4 &quot;},N.map(function(e){var t=e.value,n=e.selected;return c.createElement(&quot;div &quot;,{key:t,className:&quot;\n                                        h-12 flex items-center origin-bottom\n                                        &quot;+(n?&quot;transition-transform duration-1000 &quot;:&quot;&quot;)+&quot;\n                                        &quot;+(t===p?&quot;transition-transform duration-1000 absolute top-0 left-4 rotate-180 &quot;:&quot;&quot;)+&quot;\n                                        &quot;+(n||t===p?&quot;&quot;:&quot;absolute top-0 left-4 -rotate-180 &quot;)+&quot;\n                                    &quot;},c.createElement(&quot;span &quot;,{className:&quot;text-sm ~text-gray-500 transition-colors duration-500 &quot;},e.icon))})),c.createElement(&quot;div &quot;,{id:&quot;theme-name &quot;,className:&quot;-ml-1 first-letter:uppercase &quot;},null==(n=N.find(function(e){return e.selected}))?void 0:n.value)))),c.createElement(&quot;div &quot;,{className:&quot;flex items-center gap-4 &quot;},c.createElement(Ac,{onClick:function(){try{return g?Promise.resolve():Promise.resolve(function(e,t){try{var n=function(e,t){try{var n=function(){var e;if(b(!1),v(!0),a.updateConfigEndpoint)return Promise.resolve(fetch(a.updateConfigEndpoint,{method:&quot;POST &quot;,headers:{&quot;Content-Type &quot;:&quot;application/json &quot;,Accept:&quot;application/json &quot;},body:JSON.stringify({editor:u,theme:null==(e=N.find(function(e){return e.selected}))?void 0:e.value,hide_solutions:!1})})).then(function(e){b(e.status &gt;=200 &amp;&amp;e.status &lt;300),setTimeout(function(){b(!1)},3e3)})}()}catch(e){return t(e)}return n &amp;&amp;n.then?n.then(void 0,t):n}(0,function(e){console.error(e),b(!1)})}catch(e){return t(!0,e)}return n &amp;&amp;n.then?n.then(t.bind(null,!1),t.bind(null,!0)):t(!1,n)}(0,function(e,t){if(v(!1),e)throw t;return t}))}catch(e){return Promise.reject(e)}},disabled:g,className:&quot;bg-red-500 border-red-500/25 text-white &quot;},&quot;Save settings &quot;),E &amp;&amp;c.createElement(&quot;p &quot;,{className:&quot;text-emerald-500 text-sm &quot;},&quot;Saved!&quot;)),c.createElement(&quot;p &quot;,{className:&quot;text-xs &quot;},&quot;Settings will be saved locally in &quot;,c.createElement(jf,null,&quot;~/.ignition.json &quot;),&quot;.&quot;)))}var dh={prefix:&quot;fab &quot;,iconName:&quot;laravel &quot;,icon:[512,512,[],&quot;f3bd &quot;,&quot;M504.4 115.8a5.72 5.72 0 0 0 -.28-.68 8.52 8.52 0 0 0 -.53-1.25 6 6 0 0 0 -.54-.71 9.36 9.36 0 0 0 -.72-.94c-.23-.22-.52-.4-.77-.6a8.84 8.84 0 0 0 -.9-.68L404.4 55.55a8 8 0 0 0 -8 0L300.1 111h0a8.07 8.07 0 0 0 -.88 .69 7.68 7.68 0 0 0 -.78 .6 8.23 8.23 0 0 0 -.72 .93c-.17 .24-.39 .45-.54 .71a9.7 9.7 0 0 0 -.52 1.25c-.08 .23-.21 .44-.28 .68a8.08 8.08 0 0 0 -.28 2.08V223.2l-80.22 46.19V63.44a7.8 7.8 0 0 0 -.28-2.09c-.06-.24-.2-.45-.28-.68a8.35 8.35 0 0 0 -.52-1.24c-.14-.26-.37-.47-.54-.72a9.36 9.36 0 0 0 -.72-.94 9.46 9.46 0 0 0 -.78-.6 9.8 9.8 0 0 0 -.88-.68h0L115.6 1.07a8 8 0 0 0 -8 0L11.34 56.49h0a6.52 6.52 0 0 0 -.88 .69 7.81 7.81 0 0 0 -.79 .6 8.15 8.15 0 0 0 -.71 .93c-.18 .25-.4 .46-.55 .72a7.88 7.88 0 0 0 -.51 1.24 6.46 6.46 0 0 0 -.29 .67 8.18 8.18 0 0 0 -.28 2.1v329.7a8 8 0 0 0 4 6.95l192.5 110.8a8.83 8.83 0 0 0 1.33 .54c.21 .08 .41 .2 .63 .26a7.92 7.92 0 0 0 4.1 0c.2-.05 .37-.16 .55-.22a8.6 8.6 0 0 0 1.4-.58L404.4 400.1a8 8 0 0 0 4-6.95V287.9l92.24-53.11a8 8 0 0 0 4-7V117.9A8.63 8.63 0 0 0 504.4 115.8zM111.6 17.28h0l80.19 46.15-80.2 46.18L31.41 63.44zm88.25 60V278.6l-46.53 26.79-33.69 19.4V123.5l46.53-26.79zm0 412.8L23.37 388.5V77.32L57.06 96.7l46.52 26.8V338.7a6.94 6.94 0 0 0 .12 .9 8 8 0 0 0 .16 1.18h0a5.92 5.92 0 0 0 .38 .9 6.38 6.38 0 0 0 .42 1v0a8.54 8.54 0 0 0 .6 .78 7.62 7.62 0 0 0 .66 .84l0 0c.23 .22 .52 .38 .77 .58a8.93 8.93 0 0 0 .86 .66l0 0 0 0 92.19 52.18zm8-106.2-80.06-45.32 84.09-48.41 92.26-53.11 80.13 46.13-58.8 33.56zm184.5 4.57L215.9 490.1V397.8L346.6 323.2l45.77-26.15zm0-119.1L358.7 250l-46.53-26.79V131.8l33.69 19.4L392.4 178zm8-105.3-80.2-46.17 80.2-46.16 80.18 46.15zm8 105.3V178L455 151.2l33.68-19.4v91.39h0z &quot;]},ph={prefix:&quot;fab &quot;,iconName:&quot;php &quot;,icon:[640,512,[],&quot;f457 &quot;,&quot;M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z &quot;]},mh=&quot;object &quot;==typeof t &amp;&amp;t &amp;&amp;t.Object===Object &amp;&amp;t,hh=&quot;object &quot;==typeof self &amp;&amp;self &amp;&amp;self.Object===Object &amp;&amp;self,gh=mh||hh||Function(&quot;return this &quot;)(),vh=gh.Symbol,yh=Object.prototype,Eh=yh.hasOwnProperty,bh=yh.toString,Th=vh?vh.toStringTag:void 0,Nh=Object.prototype.toString,Rh=vh?vh.toStringTag:void 0,Sh=function(e){return null==e?void 0===e?&quot;[object Undefined]&quot;:&quot;[object Null]&quot;:Rh &amp;&amp;Rh in Object(e)?function(e){var t=Eh.call(e,Th),n=e[Th];try{e[Th]=void 0;var r=!0}catch(e){}var a=bh.call(e);return r &amp;&amp;(t?e[Th]=n:delete e[Th]),a}(e):function(e){return Nh.call(e)}(e)},wh=function(e){var t=typeof e;return null!=e &amp;&amp;(&quot;object &quot;==t||&quot;function &quot;==t)},Oh=function(e){if(!wh(e))return!1;var t=Sh(e);return &quot;[object Function]&quot;==t||&quot;[object GeneratorFunction]&quot;==t||&quot;[object AsyncFunction]&quot;==t||&quot;[object Proxy]&quot;==t},Ch=gh[&quot;__core-js_shared__ &quot;],Ah=function(){var e=/[^.]+$/.exec(Ch &amp;&amp;Ch.keys &amp;&amp;Ch.keys.IE_PROTO||&quot;&quot;);return e?&quot;Symbol(src)_1.&quot;+e:&quot;&quot;}(),Ih=Function.prototype.toString,kh=function(e){if(null!=e){try{return Ih.call(e)}catch(e){}try{return e+&quot;&quot;}catch(e){}}return &quot;&quot;},xh=/^\[object .+?Constructor\]$/,_h=RegExp(&quot;^&quot;+Function.prototype.toString.call(Object.prototype.hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g,&quot;\\$ &amp;&quot;).replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,&quot;$1.*?&quot;)+&quot;$ &quot;),Lh=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return function(e){return!(!wh(e)||function(e){return!!Ah &amp;&amp;Ah in e}(e))&amp;&amp;(Oh(e)?_h:xh).test(kh(e))}(n)?n:void 0},Ph=function(){try{var e=Lh(Object,&quot;defineProperty &quot;);return e({},&quot;&quot;,{}),e}catch(e){}}(),Mh=function(e,t,n){&quot;__proto__ &quot;==t &amp;&amp;Ph?Ph(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n},Dh=function(e){return null!=e &amp;&amp;&quot;object &quot;==typeof e},Uh=function(e){return Dh(e)&amp;&amp;&quot;[object Arguments]&quot;==Sh(e)},jh=Object.prototype,Fh=jh.hasOwnProperty,zh=jh.propertyIsEnumerable,Hh=Uh(function(){return arguments}())?Uh:function(e){return Dh(e)&amp;&amp;Fh.call(e,&quot;callee &quot;)&amp;&amp;!zh.call(e,&quot;callee &quot;)},Bh=Array.isArray,Vh=function(){return!1},Wh=n(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n?gh.Buffer:void 0;e.exports=(a?a.isBuffer:void 0)||Vh}),Gh=/^(?:0|[1-9]\d*)$/,Yh=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&amp;&amp;(&quot;number &quot;==n||&quot;symbol &quot;!=n &amp;&amp;Gh.test(e))&amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;t},$h=function(e){return &quot;number &quot;==typeof e &amp;&amp;e &gt;-1 &amp;&amp;e%1==0 &amp;&amp;e &lt;=9007199254740991},Xh={};Xh[&quot;[object Float32Array]&quot;]=Xh[&quot;[object Float64Array]&quot;]=Xh[&quot;[object Int8Array]&quot;]=Xh[&quot;[object Int16Array]&quot;]=Xh[&quot;[object Int32Array]&quot;]=Xh[&quot;[object Uint8Array]&quot;]=Xh[&quot;[object Uint8ClampedArray]&quot;]=Xh[&quot;[object Uint16Array]&quot;]=Xh[&quot;[object Uint32Array]&quot;]=!0,Xh[&quot;[object Arguments]&quot;]=Xh[&quot;[object Array]&quot;]=Xh[&quot;[object ArrayBuffer]&quot;]=Xh[&quot;[object Boolean]&quot;]=Xh[&quot;[object DataView]&quot;]=Xh[&quot;[object Date]&quot;]=Xh[&quot;[object Error]&quot;]=Xh[&quot;[object Function]&quot;]=Xh[&quot;[object Map]&quot;]=Xh[&quot;[object Number]&quot;]=Xh[&quot;[object Object]&quot;]=Xh[&quot;[object RegExp]&quot;]=Xh[&quot;[object Set]&quot;]=Xh[&quot;[object String]&quot;]=Xh[&quot;[object WeakMap]&quot;]=!1;var Kh=n(function(e,t){var n=t &amp;&amp;!t.nodeType &amp;&amp;t,r=n &amp;&amp;e &amp;&amp;!e.nodeType &amp;&amp;e,a=r &amp;&amp;r.exports===n &amp;&amp;mh.process,o=function(){try{return r &amp;&amp;r.require &amp;&amp;r.require(&quot;util &quot;).types||a &amp;&amp;a.binding &amp;&amp;a.binding(&quot;util &quot;)}catch(e){}}();e.exports=o}),qh=Kh &amp;&amp;Kh.isTypedArray,Jh=qh?function(e){return function(t){return e(t)}}(qh):function(e){return Dh(e)&amp;&amp;$h(e.length)&amp;&amp;!!Xh[Sh(e)]},Qh=Object.prototype.hasOwnProperty,Zh=Object.prototype,eg=function(e,t){return function(n){return e(t(n))}}(Object.keys,Object),tg=Object.prototype.hasOwnProperty,ng=function(e){return null!=e &amp;&amp;$h(e.length)&amp;&amp;!Oh(e)},rg=function(e){return ng(e)?function(e,t){var n=Bh(e),r=!n &amp;&amp;Hh(e),a=!n &amp;&amp;!r &amp;&amp;Wh(e),o=!n &amp;&amp;!r &amp;&amp;!a &amp;&amp;Jh(e),i=n||r||a||o,l=i?function(e,t){for(var n=-1,r=Array(e);++n &lt;e;)r[n]=t(n);return r}(e.length,String):[],s=l.length;for(var c in e)!Qh.call(e,c)||i &amp;&amp;(&quot;length &quot;==c||a &amp;&amp;(&quot;offset &quot;==c||&quot;parent &quot;==c)||o &amp;&amp;(&quot;buffer &quot;==c||&quot;byteLength &quot;==c||&quot;byteOffset &quot;==c)||Yh(c,s))||l.push(c);return l}(e):function(e){if((t=e)!==(&quot;function &quot;==typeof(n=t &amp;&amp;t.constructor)&amp;&amp;n.prototype||Zh))return eg(e);var t,n,r=[];for(var a in Object(e))tg.call(e,a)&amp;&amp;&quot;constructor &quot;!=a &amp;&amp;r.push(a);return r}(e)},ag=function(e,t){return e &amp;&amp;function(e,t,n){for(var r=-1,a=Object(e),o=n(e),i=o.length;i--;){var l=o[++r];if(!1===t(a[l],l,a))break}return e}(e,t,rg)},og=function(e,t){return e===t||e!=e &amp;&amp;t!=t},ig=function(e,t){for(var n=e.length;n--;)if(og(e[n][0],t))return n;return-1},lg=Array.prototype.splice;function sg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}sg.prototype.clear=function(){this.__data__=[],this.size=0},sg.prototype.delete=function(e){var t=this.__data__,n=ig(t,e);return!(n &lt;0||(n==t.length-1?t.pop():lg.call(t,n,1),--this.size,0))},sg.prototype.get=function(e){var t=this.__data__,n=ig(t,e);return n &lt;0?void 0:t[n][1]},sg.prototype.has=function(e){return ig(this.__data__,e)&gt;-1},sg.prototype.set=function(e,t){var n=this.__data__,r=ig(n,e);return r &lt;0?(++this.size,n.push([e,t])):n[r][1]=t,this};var cg=sg,ug=Lh(gh,&quot;Map &quot;),fg=Lh(Object,&quot;create &quot;),dg=Object.prototype.hasOwnProperty,pg=Object.prototype.hasOwnProperty;function mg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}mg.prototype.clear=function(){this.__data__=fg?fg(null):{},this.size=0},mg.prototype.delete=function(e){var t=this.has(e)&amp;&amp;delete this.__data__[e];return this.size-=t?1:0,t},mg.prototype.get=function(e){var t=this.__data__;if(fg){var n=t[e];return &quot;__lodash_hash_undefined__ &quot;===n?void 0:n}return dg.call(t,e)?t[e]:void 0},mg.prototype.has=function(e){var t=this.__data__;return fg?void 0!==t[e]:pg.call(t,e)},mg.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=fg &amp;&amp;void 0===t?&quot;__lodash_hash_undefined__ &quot;:t,this};var hg=mg,gg=function(e,t){var n,r,a=e.__data__;return(&quot;string &quot;==(r=typeof(n=t))||&quot;number &quot;==r||&quot;symbol &quot;==r||&quot;boolean &quot;==r?&quot;__proto__ &quot;!==n:null===n)?a[&quot;string &quot;==typeof t?&quot;string &quot;:&quot;hash &quot;]:a.map};function vg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t &lt;n;){var r=e[t];this.set(r[0],r[1])}}vg.prototype.clear=function(){this.size=0,this.__data__={hash:new hg,map:new(ug||cg),string:new hg}},vg.prototype.delete=function(e){var t=gg(this,e).delete(e);return this.size-=t?1:0,t},vg.prototype.get=function(e){return gg(this,e).get(e)},vg.prototype.has=function(e){return gg(this,e).has(e)},vg.prototype.set=function(e,t){var n=gg(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};var yg=vg;function Eg(e){var t=this.__data__=new cg(e);this.size=t.size}Eg.prototype.clear=function(){this.__data__=new cg,this.size=0},Eg.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Eg.prototype.get=function(e){return this.__data__.get(e)},Eg.prototype.has=function(e){return this.__data__.has(e)},Eg.prototype.set=function(e,t){var n=this.__data__;if(n instanceof cg){var r=n.__data__;if(!ug||r.length &lt;199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new yg(r)}return n.set(e,t),this.size=n.size,this};var bg=Eg;function Tg(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new yg;++t &lt;n;)this.add(e[t])}Tg.prototype.add=Tg.prototype.push=function(e){return this.__data__.set(e,&quot;__lodash_hash_undefined__ &quot;),this},Tg.prototype.has=function(e){return this.__data__.has(e)};var Ng=Tg,Rg=function(e,t){for(var n=-1,r=null==e?0:e.length;++n &lt;r;)if(t(e[n],n,e))return!0;return!1},Sg=function(e,t){return e.has(t)},wg=function(e,t,n,r,a,o){var i=1 &amp;n,l=e.length,s=t.length;if(l!=s &amp;&amp;!(i &amp;&amp;s &gt;l))return!1;var c=o.get(e),u=o.get(t);if(c &amp;&amp;u)return c==t &amp;&amp;u==e;var f=-1,d=!0,p=2 &amp;n?new Ng:void 0;for(o.set(e,t),o.set(t,e);++f &lt;l;){var m=e[f],h=t[f];if(r)var g=i?r(h,m,f,t,e,o):r(m,h,f,e,t,o);if(void 0!==g){if(g)continue;d=!1;break}if(p){if(!Rg(t,function(e,t){if(!Sg(p,t)&amp;&amp;(m===e||a(m,e,n,r,o)))return p.push(t)})){d=!1;break}}else if(m!==h &amp;&amp;!a(m,h,n,r,o)){d=!1;break}}return o.delete(e),o.delete(t),d},Og=gh.Uint8Array,Cg=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e,r){n[++t]=[r,e]}),n},Ag=function(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n},Ig=vh?vh.prototype:void 0,kg=Ig?Ig.valueOf:void 0,xg=Object.prototype.propertyIsEnumerable,_g=Object.getOwnPropertySymbols,Lg=_g?function(e){return null==e?[]:(e=Object(e),function(t,n){for(var r=-1,a=null==t?0:t.length,o=0,i=[];++r &lt;a;){var l=t[r];xg.call(e,l)&amp;&amp;(i[o++]=l)}return i}(_g(e)))}:function(){return[]},Pg=function(e){return function(e,t,n){var r=rg(e);return Bh(e)?r:function(e,t){for(var n=-1,r=t.length,a=e.length;++n &lt;r;)e[a+n]=t[n];return e}(r,n(e))}(e,0,Lg)},Mg=Object.prototype.hasOwnProperty,Dg=Lh(gh,&quot;DataView &quot;),Ug=Lh(gh,&quot;Promise &quot;),jg=Lh(gh,&quot;Set &quot;),Fg=Lh(gh,&quot;WeakMap &quot;),zg=kh(Dg),Hg=kh(ug),Bg=kh(Ug),Vg=kh(jg),Wg=kh(Fg),Gg=Sh;(Dg &amp;&amp;&quot;[object DataView]&quot;!=Gg(new Dg(new ArrayBuffer(1)))||ug &amp;&amp;&quot;[object Map]&quot;!=Gg(new ug)||Ug &amp;&amp;&quot;[object Promise]&quot;!=Gg(Ug.resolve())||jg &amp;&amp;&quot;[object Set]&quot;!=Gg(new jg)||Fg &amp;&amp;&quot;[object WeakMap]&quot;!=Gg(new Fg))&amp;&amp;(Gg=function(e){var t=Sh(e),n=&quot;[object Object]&quot;==t?e.constructor:void 0,r=n?kh(n):&quot;&quot;;if(r)switch(r){case zg:return &quot;[object DataView]&quot;;case Hg:return &quot;[object Map]&quot;;case Bg:return &quot;[object Promise]&quot;;case Vg:return &quot;[object Set]&quot;;case Wg:return &quot;[object WeakMap]&quot;}return t});var Yg=Gg,$g=&quot;[object Object]&quot;,Xg=Object.prototype.hasOwnProperty,Kg=function e(t,n,r,a,o){return t===n||(null==t||null==n||!Dh(t)&amp;&amp;!Dh(n)?t!=t &amp;&amp;n!=n:function(e,t,n,r,a,o){var i=Bh(e),l=Bh(t),s=i?&quot;[object Array]&quot;:Yg(e),c=l?&quot;[object Array]&quot;:Yg(t),u=(s=&quot;[object Arguments]&quot;==s?$g:s)==$g,f=(c=&quot;[object Arguments]&quot;==c?$g:c)==$g,d=s==c;if(d &amp;&amp;Wh(e)){if(!Wh(t))return!1;i=!0,u=!1}if(d &amp;&amp;!u)return o||(o=new bg),i||Jh(e)?wg(e,t,n,r,a,o):function(e,t,n,r,a,o,i){switch(n){case &quot;[object DataView]&quot;:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case &quot;[object ArrayBuffer]&quot;:return!(e.byteLength!=t.byteLength||!o(new Og(e),new Og(t)));case &quot;[object Boolean]&quot;:case &quot;[object Date]&quot;:case &quot;[object Number]&quot;:return og(+e,+t);case &quot;[object Error]&quot;:return e.name==t.name &amp;&amp;e.message==t.message;case &quot;[object RegExp]&quot;:case &quot;[object String]&quot;:return e==t+&quot;&quot;;case &quot;[object Map]&quot;:var l=Cg;case &quot;[object Set]&quot;:if(l||(l=Ag),e.size!=t.size &amp;&amp;!(1 &amp;r))return!1;var s=i.get(e);if(s)return s==t;r|=2,i.set(e,t);var c=wg(l(e),l(t),r,a,o,i);return i.delete(e),c;case &quot;[object Symbol]&quot;:if(kg)return kg.call(e)==kg.call(t)}return!1}(e,t,s,n,r,a,o);if(!(1 &amp;n)){var p=u &amp;&amp;Xg.call(e,&quot;__wrapped__ &quot;),m=f &amp;&amp;Xg.call(t,&quot;__wrapped__ &quot;);if(p||m){var h=p?e.value():e,g=m?t.value():t;return o||(o=new bg),a(h,g,n,r,o)}}return!!d &amp;&amp;(o||(o=new bg),function(e,t,n,r,a,o){var i=1 &amp;n,l=Pg(e),s=l.length;if(s!=Pg(t).length &amp;&amp;!i)return!1;for(var c=s;c--;){var u=l[c];if(!(i?u in t:Mg.call(t,u)))return!1}var f=o.get(e),d=o.get(t);if(f &amp;&amp;d)return f==t &amp;&amp;d==e;var p=!0;o.set(e,t),o.set(t,e);for(var m=i;++c &lt;s;){var h=e[u=l[c]],g=t[u];if(r)var v=i?r(g,h,u,t,e,o):r(h,g,u,e,t,o);if(!(void 0===v?h===g||a(h,g,n,r,o):v)){p=!1;break}m||(m=&quot;constructor &quot;==u)}if(p &amp;&amp;!m){var y=e.constructor,E=t.constructor;y==E||!(&quot;constructor &quot;in e)||!(&quot;constructor &quot;in t)||&quot;function &quot;==typeof y &amp;&amp;y instanceof y &amp;&amp;&quot;function &quot;==typeof E &amp;&amp;E instanceof E||(p=!1)}return o.delete(e),o.delete(t),p}(e,t,n,r,a,o))}(t,n,r,a,e,o))},qg=function(e){return e==e &amp;&amp;!wh(e)},Jg=function(e,t){return function(n){return null!=n &amp;&amp;n[e]===t &amp;&amp;(void 0!==t||e in Object(n))}},Qg=function(e){return &quot;symbol &quot;==typeof e||Dh(e)&amp;&amp;&quot;[object Symbol]&quot;==Sh(e)},Zg=/\.|\[(?:[^[\]]*|([&quot;&#039;])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ev=/^\w*$/,tv=function(e,t){if(Bh(e))return!1;var n=typeof e;return!(&quot;number &quot;!=n &amp;&amp;&quot;symbol &quot;!=n &amp;&amp;&quot;boolean &quot;!=n &amp;&amp;null!=e &amp;&amp;!Qg(e))||ev.test(e)||!Zg.test(e)||null!=t &amp;&amp;e in Object(t)};function nv(e,t){if(&quot;function &quot;!=typeof e||null!=t &amp;&amp;&quot;function &quot;!=typeof t)throw new TypeError(&quot;Expected a function &quot;);var n=function(){var r=arguments,a=t?t.apply(this,r):r[0],o=n.cache;if(o.has(a))return o.get(a);var i=e.apply(this,r);return n.cache=o.set(a,i)||o,i};return n.cache=new(nv.Cache||yg),n}nv.Cache=yg;var rv,av,ov=nv,iv=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|([&quot;&#039;])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,lv=/\\(\\)?/g,sv=function(e){var t=ov(function(e){var t=[];return 46===e.charCodeAt(0)&amp;&amp;t.push(&quot;&quot;),e.replace(iv,function(e,n,r,a){t.push(r?a.replace(lv,&quot;$1 &quot;):n||e)}),t},function(e){return 500===n.size &amp;&amp;n.clear(),e}),n=t.cache;return t}(),cv=vh?vh.prototype:void 0,uv=cv?cv.toString:void 0,fv=function e(t){if(&quot;string &quot;==typeof t)return t;if(Bh(t))return function(e,t){for(var n=-1,r=null==e?0:e.length,a=Array(r);++n &lt;r;)a[n]=t(e[n],n,e);return a}(t,e)+&quot;&quot;;if(Qg(t))return uv?uv.call(t):&quot;&quot;;var n=t+&quot;&quot;;return &quot;0 &quot;==n &amp;&amp;1/t==-Infinity?&quot;-0 &quot;:n},dv=function(e,t){return Bh(e)?e:tv(e,t)?[e]:sv(function(e){return null==e?&quot;&quot;:fv(e)}(e))},pv=function(e){if(&quot;string &quot;==typeof e||Qg(e))return e;var t=e+&quot;&quot;;return &quot;0 &quot;==t &amp;&amp;1/e==-Infinity?&quot;-0 &quot;:t},mv=function(e,t){for(var n=0,r=(t=dv(t,e)).length;null!=e &amp;&amp;n &lt;r;)e=e[pv(t[n++])];return n &amp;&amp;n==r?e:void 0},hv=function(e,t){return null!=e &amp;&amp;t in Object(e)},gv=function(e){return e},vv=function(e){return &quot;function &quot;==typeof e?e:null==e?gv:&quot;object &quot;==typeof e?Bh(e)?function(e,t){return tv(e)&amp;&amp;qg(t)?Jg(pv(e),t):function(n){var r=function(e,t,n){var r=null==e?void 0:mv(e,t);return void 0===r?void 0:r}(n,e);return void 0===r &amp;&amp;r===t?function(e,t){return null!=e &amp;&amp;function(e,t,n){for(var r=-1,a=(t=dv(t,e)).length,o=!1;++r &lt;a;){var i=pv(t[r]);if(!(o=null!=e &amp;&amp;n(e,i)))break;e=e[i]}return o||++r!=a?o:!!(a=null==e?0:e.length)&amp;&amp;$h(a)&amp;&amp;Yh(i,a)&amp;&amp;(Bh(e)||Hh(e))}(e,t,hv)}(n,e):Kg(t,r,3)}}(e[0],e[1]):function(e){var t=function(e){for(var t=rg(e),n=t.length;n--;){var r=t[n],a=e[r];t[n]=[r,a,qg(a)]}return t}(e);return 1==t.length &amp;&amp;t[0][2]?Jg(t[0][0],t[0][1]):function(n){return n===e||function(e,t,n,r){var a=n.length,o=a;if(null==e)return!o;for(e=Object(e);a--;){var i=n[a];if(i[2]?i[1]!==e[i[0]]:!(i[0]in e))return!1}for(;++a &lt;o;){var l=(i=n[a])[0],s=e[l],c=i[1];if(i[2]){if(void 0===s &amp;&amp;!(l in e))return!1}else{var u=new bg;if(!Kg(c,s,3,void 0,u))return!1}}return!0}(n,0,t)}}(e):tv(t=e)?(n=pv(t),function(e){return null==e?void 0:e[n]}):function(e){return function(t){return mv(t,e)}}(t);var t,n},yv=function(e,t){var n={};return t=vv(t),ag(e,function(e,r,a){Mh(n,r,t(e,r,a))}),n},Ev=function(e,t,n,r){for(var a=-1,o=null==e?0:e.length;++a &lt;o;){var i=e[a];t(r,i,n(i),e)}return r},bv=(rv=ag,function(e,t){if(null==e)return e;if(!ng(e))return rv(e,t);for(var n=e.length,r=-1,a=Object(e);++r &lt;n &amp;&amp;!1!==t(a[r],r,a););return e}),Tv=function(e,t,n,r){return bv(e,function(e,a,o){t(r,e,n(e),o)}),r},Nv=(av=function(e,t,n){Mh(e,n,t)},function(e,t){return(Bh(e)?Ev:Tv)(e,av,vv(t),{})});function Rv(e,t){c.useEffect(function(){function n(n){e.current &amp;&amp;!e.current.contains(n.target)&amp;&amp;t()}return document.addEventListener(&quot;click &quot;,n),function(){document.removeEventListener(&quot;click &quot;,n)}},[])}function Sv(e){var t,n=e.showException,r=c.useContext(Ee),a=c.useState(!1),o=a[0],i=a[1],l=c.useState(!1),s=l[0],u=l[1],f=function(e){var t=c.useState(window.pageYOffset),n=t[0],r=t[1];return c.useEffect(function(){var e=function(){r(window.pageYOffset)};return window.addEventListener(&quot;scroll &quot;,e),function(){return window.removeEventListener(&quot;scroll &quot;,e)}},[]),n &gt;=10}(),d=c.useContext(Te).ignitionConfig,p=c.useRef(null),m=c.useRef(null);Rv(p,function(){return i(!1)}),Rv(m,function(){return u(!1)});var h=yv(Nv(r.context_items.env||[],&quot;name &quot;),&quot;value &quot;),g=&quot;local &quot;!==h.app_env &amp;&amp;h.app_debug,v=function(e){var t;if(null!=(t=e.context_items.env)&amp;&amp;t.laravel_version){var n=e.documentation_links.find(function(e){return e.startsWith(&quot;https://laravel.com/&quot;)});return n?{type:&quot;laravel &quot;,url:n,tailored:!0}:{type:&quot;laravel &quot;,url:&quot;https://laravel.com/docs/&quot;,tailored:!1}}var r=e.documentation_links.find(function(e){return e.startsWith(&quot;https://php.net/&quot;)});return r?{type:&quot;php &quot;,url:r,tailored:!0}:{type:&quot;generic &quot;,url:&quot;https://php.net/docs &quot;,tailored:!1}}(r);return c.createElement(&quot;nav &quot;,{className:&quot;z-50 fixed top-0 h-20 w-full &quot;},c.createElement(&quot;div &quot;,null,c.createElement(&quot;div &quot;,{className:&quot;\n                        &quot;+(f?&quot;~bg-gray-100 &quot;:&quot;~bg-body &quot;)+&quot;\n                        z-10 transform translate-x-0 transition-color duration-100\n                    &quot;},c.createElement(&quot;div &quot;,{className:&quot;h-10 flex justify-between px-6 lg:px-10 mx-auto max-w-4xl lg:max-w-[90rem]&quot;},c.createElement(&quot;ul &quot;,{className:&quot;-ml-3 sm:-ml-5 grid grid-flow-col justify-start items-center &quot;},c.createElement(ye,{name:&quot;stack &quot;,icon:c.createElement(Xm,{icon:qm})}),c.createElement(ye,{name:&quot;context &quot;,icon:c.createElement(Xm,{icon:eh})}),Nc(r)&amp;&amp;c.createElement(ye,{name:&quot;debug &quot;,icon:c.createElement(Xm,{icon:Qm}),important:!(null==(t=r.context_items.dumps)||!t.length)}),d.enableShareButton &amp;&amp;c.createElement(ye,{navRef:p,name:&quot;share &quot;,icon:c.createElement(Xm,{icon:rh}),onClick:function(){i(!o)}},c.createElement(uh,{isOpen:o}))),c.createElement(&quot;ul &quot;,{className:&quot;-mr-3 sm:-mr-5 grid grid-flow-col justify-end items-center &quot;},v &amp;&amp;c.createElement(ye,{name:&quot;docs &quot;,href:v.url,icon:c.createElement(Xm,{className:&quot;text-sm &quot;,icon:&quot;laravel &quot;===v.type?dh:ph}),iconOpacity:&quot;opacity-80 &quot;,important:v.tailored}),c.createElement(ye,{navRef:m,name:&quot;settings &quot;,icon:c.createElement(Xm,{className:&quot;text-sm &quot;,icon:th}),iconOpacity:&quot;opacity-80 &quot;,label:!1,onClick:function(){u(!s)}},c.createElement(fh,{isOpen:s}))))),c.createElement(&quot;div &quot;,{className:&quot;\n                        &quot;+(f?&quot;shadow-lg &quot;:&quot;&quot;)+&quot;\n                        &quot;+(n?&quot;translate-y-10 ~bg-gray-100 &quot;:&quot;translate-y-0 ~bg-body &quot;)+&quot;\n                        absolute top-0 left-0 w-full\n                        ~bg-gray-100 border-b ~border-gray-200\n                        transform\n                        transition-animation\n                        duration-300\n                    &quot;},c.createElement(&quot;div &quot;,{className:&quot;flex items-center px-6 lg:px-10 mx-auto max-w-4xl lg:max-w-[90rem] h-10 border-t ~border-gray-200 &quot;},c.createElement(&quot;a &quot;,{href:&quot;#top &quot;,className:&quot;min-w-0 inline-flex items-center justify-start gap-2 &quot;},g &amp;&amp;c.createElement(Xm,{title:&quot;You have a security issue &quot;,icon:ah,className:&quot;text-red-500 &quot;}),c.createElement(&quot;div &quot;,{className:&quot;font-semibold min-w-0 truncate hover:text-red-500 &quot;},r.exception_message))))))}var wv=new Map,Ov=new WeakMap,Cv=0;function Av(e){var t=void 0===e?{}:e,n=t.threshold,r=t.delay,a=t.trackVisibility,o=t.rootMargin,i=t.root,l=t.triggerOnce,s=t.skip,u=t.initialInView,f=t.fallbackInView,d=c.useRef(),p=c.useState({inView:!!u}),m=p[0],h=p[1],g=c.useCallback(function(e){void 0!==d.current &amp;&amp;(d.current(),d.current=void 0),s||e &amp;&amp;(d.current=function(e,t,n,r){if(void 0===n &amp;&amp;(n={}),void 0===r &amp;&amp;(r=void 0),void 0===window.IntersectionObserver &amp;&amp;void 0!==r){var a=e.getBoundingClientRect();return t(r,{isIntersecting:r,target:e,intersectionRatio:&quot;number &quot;==typeof n.threshold?n.threshold:0,time:0,boundingClientRect:a,intersectionRect:a,rootBounds:a}),function(){}}var o=function(e){var t=function(e){return Object.keys(e).sort().filter(function(t){return void 0!==e[t]}).map(function(t){return t+&quot;_ &quot;+(&quot;root &quot;===t?(n=e.root)?(Ov.has(n)||Ov.set(n,(Cv+=1).toString()),Ov.get(n)):&quot;0 &quot;:e[t]);var n}).toString()}(e),n=wv.get(t);if(!n){var r,a=new Map,o=new IntersectionObserver(function(t){t.forEach(function(t){var n,o=t.isIntersecting &amp;&amp;r.some(function(e){return t.intersectionRatio &gt;=e});e.trackVisibility &amp;&amp;void 0===t.isVisible &amp;&amp;(t.isVisible=o),null==(n=a.get(t.target))||n.forEach(function(e){e(o,t)})})},e);r=o.thresholds||(Array.isArray(e.threshold)?e.threshold:[e.threshold||0]),wv.set(t,n={id:t,observer:o,elements:a})}return n}(n),i=o.id,l=o.observer,s=o.elements,c=s.get(e)||[];return s.has(e)||s.set(e,c),c.push(t),l.observe(e),function(){c.splice(c.indexOf(t),1),0===c.length &amp;&amp;(s.delete(e),l.unobserve(e)),0===s.size &amp;&amp;(l.disconnect(),wv.delete(i))}}(e,function(e,t){h({inView:e,entry:t}),t.isIntersecting &amp;&amp;l &amp;&amp;d.current &amp;&amp;(d.current(),d.current=void 0)},{root:i,rootMargin:o,threshold:n,trackVisibility:a,delay:r},f))},[Array.isArray(n)?n.toString():n,i,o,l,s,a,f,r]);c.useEffect(function(){d.current||!m.entry||l||s||h({inView:!!u})});var v=[g,m.inView,m.entry];return v.ref=v[0],v.inView=v[1],v.entry=v[2],v}function Iv(e){var t,n,r,a,o,i=e.children,l=e.className,s=void 0===l?&quot;&quot;:l,u=e.name,f=(t=u,n=c.useContext(ge).setInView,a=(r=Av({rootMargin:&quot;-40% 0px -40%&quot;})).ref,c.useEffect(function(){n(o?function(e){return[].concat(e,[t])}:function(e){return e.filter(function(e){return e!==t})})},[o=r.inView]),a);return c.createElement(&quot;section &quot;,{ref:f,className:s},c.createElement(&quot;a &quot;,{id:u,className:&quot;scroll-target &quot;}),i)}function kv(){var e=c.useContext(Ee),t=yv(Nv(e.context_items.env||[],&quot;name &quot;),&quot;value &quot;);return &quot;local &quot;!==t.app_env &amp;&amp;t.app_debug?c.createElement(&quot;section &quot;,{className:&quot;lg:flex items-stretch ~bg-white shadow-lg &quot;},c.createElement(&quot;div &quot;,{className:&quot;lg:w-1/3 flex-none flex items-center min-w-0 px-6 sm:px-10 py-8 bg-red-500 text-red-50 &quot;},c.createElement(&quot;h2 &quot;,{className:&quot;min-w-0 truncate text-xl font-semibold leading-snug &quot;},c.createElement(&quot;code &quot;,{className:&quot;mr-0.5 &quot;},&quot;APP_DEBUG &quot;),&quot;is set to &quot;,c.createElement(&quot;code &quot;,{className:&quot;mx-0.5 &quot;},&quot;true &quot;),&quot;while &quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;code &quot;,{className:&quot;mr-0.5 &quot;},&quot;APP_ENV &quot;),&quot;is not &quot;,c.createElement(&quot;code &quot;,{className:&quot;mx-0.5 &quot;},&quot;local &quot;))),c.createElement(&quot;div &quot;,{className:&quot;flex-grow px-6 sm:px-10 py-8 bg-red-600 text-red-100 &quot;},c.createElement(&quot;p &quot;,{className:&quot;text-base &quot;},&quot;This could make your application vulnerable to remote execution.&#160;&quot;,c.createElement(&quot;br &quot;,null),c.createElement(&quot;a &quot;,{className:&quot;mt-1.5 underline inline-flex items-center gap-2 &quot;,target:&quot;_blank &quot;,rel:&quot;noopener &quot;,href:&quot;https://flareapp.io/docs/ignition-for-laravel/security &quot;},c.createElement(Xm,{icon:ah,className:&quot;text-sm opacity-50 &quot;}),&quot;Read more about Ignition security &quot;)))):null}function xv(e){var t=e.errorOccurrence,n=e.igniteData,r=Av({rootMargin:&quot;-40px 0px 0px 0px &quot;,threshold:.3,initialInView:!0}),a=r.ref;return c.createElement(Dc,null,c.createElement(Bf.Provider,{value:n},c.createElement(Ne,{ignitionConfig:n.config},c.createElement(Ee.Provider,{value:t},c.createElement(ve,null,c.createElement(Sv,{showException:!r.inView}),c.createElement(&quot;main &quot;,{className:&quot;mx-auto my-20 px-6 lg:px-10 max-w-4xl lg:max-w-[90rem] grid grid-cols-1 gap-10 &quot;},c.createElement(kv,null),c.createElement(&quot;div &quot;,{ref:a},c.createElement(Uc,null)),c.createElement(Iv,{name:&quot;stack &quot;,children:c.createElement(qs,null)}),c.createElement(Iv,{name:&quot;context &quot;,children:c.createElement(kf,null)}),Nc(t)&amp;&amp;c.createElement(Iv,{name:&quot;debug &quot;,children:c.createElement(Uf,null)})))))))}window.ignite=function(t){var n,r,a,o,i,l,s,u,f,d,p,m,h,g,v,y,E=(y=(n=t).solutions,{frames:(v=n.report).stacktrace.map(function(t){return e({},t,{relative_file:t.file.replace(v.application_path+&quot;/&quot;,&quot;&quot;).replace(v.application_path+&quot;\\&quot;,&quot;&quot;),class:t.class||&quot;&quot;})}),context_items:{request:null==(r=v.context)?void 0:r.request,request_data:null==(a=v.context)?void 0:a.request_data,queries:(null==(o=v.context)?void 0:o.queries)||null,dumps:(null==(i=v.context)?void 0:i.dumps)||null,logs:v.context.logs||null,headers:(null==(l=v.context)?void 0:l.headers)||null,cookies:(null==(s=v.context)?void 0:s.cookies)||null,session:(null==(u=v.context)?void 0:u.session)||null,env:(null==(f=v.context)?void 0:f.env)||null,user:(null==(d=v.context)?void 0:d.user)||null,route:(null==(p=v.context)?void 0:p.route)||null,git:(null==(m=v.context)?void 0:m.git)||null,livewire:v.context.livewire||null,view:v.context.view||null},type:&quot;web &quot;,entry_point:null==v||null==(h=v.context)||null==(g=h.request)?void 0:g.url,exception_class:v.exception_class,exception_message:v.message||&quot;&quot;,application_path:v.application_path,application_version:v.application_version,language_version:v.language_version,framework_version:v.framework_version,notifier_client_name:&quot;Flare &quot;,stage:v.stage,first_frame_class:v.stacktrace[0].class||&quot;&quot;,first_frame_method:v.stacktrace[0].method,glows:v.glows,solutions:y,documentation_links:v.documentation_links});console.log(t,E),he.render(c.createElement(xv,{errorOccurrence:E,igniteData:t}),document.querySelector(&quot;#app &quot;))};<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        --&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        window.ignite(window.data);<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/script &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;!--<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        ValueError: Path cannot be empty in file /var/www/apis/API_servicios/app/Services/ApiArchivoService.php on line 19<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        <span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #0 /var/www/apis/API_servicios/app/Services/ApiArchivoService.php(19): fopen()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #1 /var/www/apis/API_servicios/app/Http/Controllers/ApiArchivosController.php(14): App\Services\ApiArchivoService::enviarArchivo()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #2 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Controller.php(54): App\Http\Controllers\ApiArchivosController-&amp;gt;guardarArchivo()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #3 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(43): Illuminate\Routing\Controller-&amp;gt;callAction()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #4 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\Routing\ControllerDispatcher-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #5 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Route.php(205): Illuminate\Routing\Route-&amp;gt;runController()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #6 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(798): Illuminate\Routing\Route-&amp;gt;run()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #7 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Routing\Router-&amp;gt;Illuminate\Routing\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #8 /var/www/apis/API_servicios/app/Http/Middleware/TokenAuth.php(28): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #9 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): App\Http\Middleware\TokenAuth-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #10 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #11 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\SubstituteBindings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #12 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(126): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #13 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(102): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequest()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #14 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php(54): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handleRequestUsingNamedLimiter()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #15 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Routing\Middleware\ThrottleRequests-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #16 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #17 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(799): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #18 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(776): Illuminate\Routing\Router-&amp;gt;runRouteWithinStack()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #19 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(740): Illuminate\Routing\Router-&amp;gt;runRoute()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #20 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Routing/Router.php(729): Illuminate\Routing\Router-&amp;gt;dispatchToRoute()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #21 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(190): Illuminate\Routing\Router-&amp;gt;dispatch()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #22 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(141): Illuminate\Foundation\Http\Kernel-&amp;gt;Illuminate\Foundation\Http\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #23 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #24 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #25 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #26 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #27 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(40): Illuminate\Foundation\Http\Middleware\TransformsRequest-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #28 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\TrimStrings-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #29 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php(27): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #30 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\ValidatePostSize-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #31 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(86): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #32 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #33 /var/www/apis/API_servicios/vendor/fruitcake/laravel-cors/src/HandleCors.php(52): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #34 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Fruitcake\Cors\HandleCors-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #35 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(39): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #36 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Http\Middleware\TrustProxies-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #37 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #38 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\Session\Middleware\StartSession-&amp;gt;handleStatefulRequest()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #39 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(180): Illuminate\Session\Middleware\StartSession-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #40 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(116): Illuminate\Pipeline\Pipeline-&amp;gt;Illuminate\Pipeline\{closure}()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #41 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(165): Illuminate\Pipeline\Pipeline-&amp;gt;then()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #42 /var/www/apis/API_servicios/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(134): Illuminate\Foundation\Http\Kernel-&amp;gt;sendRequestThroughRouter()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #43 /var/www/apis/API_servicios/public/index.php(52): Illuminate\Foundation\Http\Kernel-&amp;gt;handle()<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        #44 {main}<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        --&gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/body &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    <span class=sf-dump-str title="953687 characters">
        &lt;/html &gt;<span class="sf-dump-default sf-dump-ns">\n</span>
    </span>
    """<span style="color: #A0A0A0;">// app\Services\ArchivoService.php:42</span>
</pre>
<script>
    Sfdump("sf-dump-1011870813")
</script>

Function Calls

None

Variables

None

Stats

MD5 2a88f9e8d5aaa22cf8866a0ecf91c669
Eval Count 0
Decode Time 1175 ms