From 26a264bc9f3e0db96d4203cc09c79e1b7d781b1d Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 14 Sep 2025 21:41:52 +0200 Subject: [PATCH] dist --- .gitignore | 4 - LICENSE | 674 ------------------ assets/ajax-loader-BcnMEykj.gif | Bin 0 -> 4178 bytes assets/index-BTa1kL1V.js | 648 +++++++++++++++++ assets/index-Dp7Vd1_J.css | 5 + assets/slick-BlzDm7g2.svg | 14 + {public/config => config}/settings.dev.json | 0 {public/config => config}/settings.prod.json | 0 {public/fonts => fonts}/OpenSans.ttf | Bin {public/fonts => fonts}/ProductSansBold.ttf | Bin .../fonts => fonts}/ProductSansBoldItalic.ttf | Bin {public/fonts => fonts}/ProductSansItalic.ttf | Bin .../fonts => fonts}/ProductSansRegular.ttf | Bin {public/images => images}/bg.png | Bin index.html | 3 +- jsconfig.json | 9 - package.json | 41 -- src/App.jsx | 28 - src/api/axiosInstance.js | 14 - src/components/AnimatedDropdown.jsx | 92 --- src/components/AnimatedDropend.jsx | 122 ---- src/components/Auth/IfAuthenticated.jsx | 8 - src/components/Auth/IfNotAuthenticated.jsx | 8 - src/components/Auth/IfRole.jsx | 13 - src/components/Auth/LoginForm.jsx | 120 ---- src/components/Auth/PasswordInput.jsx | 48 -- src/components/Auth/ProtectedRoute.jsx | 18 - src/components/ContentWrapper.jsx | 15 - src/components/CustomCarousel.jsx | 47 -- src/components/CustomContainer.jsx | 15 - src/components/CustomModal.jsx | 26 - src/components/Footer.jsx | 56 -- src/components/Header.jsx | 19 - src/components/LoadingIcon.jsx | 10 - src/components/NavBar.jsx | 133 ---- src/components/NotificationModal.jsx | 69 -- src/components/SearchToolbar.jsx | 43 -- src/components/ThemeButton.jsx | 18 - src/context/AuthContext.jsx | 98 --- src/context/ConfigContext.jsx | 41 -- src/context/DataContext.jsx | 23 - src/context/ThemeContext.jsx | 31 - src/css/AnimatedDropdown.css | 28 - src/css/Building.css | 51 -- src/css/CustomCarousel.css | 11 - src/css/Footer.css | 149 ---- src/css/Header.css | 43 -- src/css/Home.css | 0 src/css/LoginForm.css | 53 -- src/css/NavBar.css | 57 -- src/css/PasswordInput.css | 7 - src/css/ThemeButton.css | 61 -- src/css/index.css | 230 ------ src/hooks/useAuth.js | 4 - src/hooks/useConfig.js | 4 - src/hooks/useData.js | 130 ---- src/hooks/useDataContext.js | 4 - src/hooks/useSessionRenewal.jsx | 103 --- src/hooks/useTheme.js | 10 - src/main.jsx | 30 - src/pages/Building.jsx | 17 - src/pages/Home.jsx | 21 - src/util/alertHelpers.jsx | 15 - src/util/constants.js | 7 - src/util/date.js | 10 - src/util/parsers/dateParser.js | 30 - src/util/parsers/errorParser.js | 10 - src/util/passwordGenerator.js | 29 - src/util/tokenUtils.js | 7 - vite.config.js | 17 - 70 files changed, 669 insertions(+), 2982 deletions(-) delete mode 100644 .gitignore delete mode 100644 LICENSE create mode 100644 assets/ajax-loader-BcnMEykj.gif create mode 100644 assets/index-BTa1kL1V.js create mode 100644 assets/index-Dp7Vd1_J.css create mode 100644 assets/slick-BlzDm7g2.svg rename {public/config => config}/settings.dev.json (100%) rename {public/config => config}/settings.prod.json (100%) rename {public/fonts => fonts}/OpenSans.ttf (100%) rename {public/fonts => fonts}/ProductSansBold.ttf (100%) rename {public/fonts => fonts}/ProductSansBoldItalic.ttf (100%) rename {public/fonts => fonts}/ProductSansItalic.ttf (100%) rename {public/fonts => fonts}/ProductSansRegular.ttf (100%) rename {public/images => images}/bg.png (100%) delete mode 100644 jsconfig.json delete mode 100644 package.json delete mode 100644 src/App.jsx delete mode 100644 src/api/axiosInstance.js delete mode 100644 src/components/AnimatedDropdown.jsx delete mode 100644 src/components/AnimatedDropend.jsx delete mode 100644 src/components/Auth/IfAuthenticated.jsx delete mode 100644 src/components/Auth/IfNotAuthenticated.jsx delete mode 100644 src/components/Auth/IfRole.jsx delete mode 100644 src/components/Auth/LoginForm.jsx delete mode 100644 src/components/Auth/PasswordInput.jsx delete mode 100644 src/components/Auth/ProtectedRoute.jsx delete mode 100644 src/components/ContentWrapper.jsx delete mode 100644 src/components/CustomCarousel.jsx delete mode 100644 src/components/CustomContainer.jsx delete mode 100644 src/components/CustomModal.jsx delete mode 100644 src/components/Footer.jsx delete mode 100644 src/components/Header.jsx delete mode 100644 src/components/LoadingIcon.jsx delete mode 100644 src/components/NavBar.jsx delete mode 100644 src/components/NotificationModal.jsx delete mode 100644 src/components/SearchToolbar.jsx delete mode 100644 src/components/ThemeButton.jsx delete mode 100644 src/context/AuthContext.jsx delete mode 100644 src/context/ConfigContext.jsx delete mode 100644 src/context/DataContext.jsx delete mode 100644 src/context/ThemeContext.jsx delete mode 100644 src/css/AnimatedDropdown.css delete mode 100644 src/css/Building.css delete mode 100644 src/css/CustomCarousel.css delete mode 100644 src/css/Footer.css delete mode 100644 src/css/Header.css delete mode 100644 src/css/Home.css delete mode 100644 src/css/LoginForm.css delete mode 100644 src/css/NavBar.css delete mode 100644 src/css/PasswordInput.css delete mode 100644 src/css/ThemeButton.css delete mode 100644 src/css/index.css delete mode 100644 src/hooks/useAuth.js delete mode 100644 src/hooks/useConfig.js delete mode 100644 src/hooks/useData.js delete mode 100644 src/hooks/useDataContext.js delete mode 100644 src/hooks/useSessionRenewal.jsx delete mode 100644 src/hooks/useTheme.js delete mode 100644 src/main.jsx delete mode 100644 src/pages/Building.jsx delete mode 100644 src/pages/Home.jsx delete mode 100644 src/util/alertHelpers.jsx delete mode 100644 src/util/constants.js delete mode 100644 src/util/date.js delete mode 100644 src/util/parsers/dateParser.js delete mode 100644 src/util/parsers/errorParser.js delete mode 100644 src/util/passwordGenerator.js delete mode 100644 src/util/tokenUtils.js delete mode 100644 vite.config.js diff --git a/.gitignore b/.gitignore deleted file mode 100644 index d9428fc..0000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -.env -node_modules/ -dist/ -package-lock.json \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702..0000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/assets/ajax-loader-BcnMEykj.gif b/assets/ajax-loader-BcnMEykj.gif new file mode 100644 index 0000000000000000000000000000000000000000..e0e6e9760bc04861cc4771e327f22ed7962e0858 GIT binary patch literal 4178 zcmd7VX;c#jy9e;etjSCgCNLmNf(amEL|#O+KwAx2Si>T+wW0=%qLdv}L}cG_0mZ6t zsSyDqzOuN1ueAmP3doKiE>%QC+(FxFTYbIpz4m_Tx%X2)bUx0UGc)IR{?GrJarbm{ zat`MMeBfsQ`0(Ka006)J_FG$9+tk$5^z?Lpe}7t9T6uZ-FTeaUIXU_6-MhVe_vYp0 zjgODFw6v&Hs%Ouh)z{bGxpQaf(xt({!3u>UH8oYOR=;@h!pqAmDk_S}Wa{qO+uPgG z(J?wYYHMq|di82^b91>|-q_fvyYv?xf`6Mz64r+&tyl85Zc5t7504B_j*1Oe+HH#2 z5DN%?g#ldmG{FbLR~EQJ;_5GRu(O9~x>L3vU*aPIfPN5V#Ccd5IdR?NJFR^6+gy(= zvcb#cjCTFX;Cuw3yi@&c_8cj5p=>B5p-DWj^TrxcsNf%_y-abkIA-k**{lc{$Od9L z2`DOqBg}TL1{kp+QpP#}#xSOrgp4piAP6C1d$ZA zKAh@4u05q$bs_#zTjo%;g6}MOx?x_1)m-hD`P!l#`y|g+qnj(t7yRyFXDlcrbMIU* zdiCQmq+utE(dpOWZL#nH^{-Rd#9}+^?UBy|kMp%+aqJc5`q621+mipv`vPgEM8o1` zO)U%Yv-6A_+%K$UdgmCm@IR^2{!D1?Xe!nb>cdhfcdZS(yt|La(GgblqAMM_>@^u> zF5Dy+i-gknjiTYZ;cD%?jzV^Xp7@(JWGt30Gmc2h1rRRJG6D9IA`xVA6c!ue#*i=| zXm(n31k6BD20NCLf*c$t#DsYbgl+|m+1{w&GC&~baJ2;f9%8qocb?;Hl@SKt^M|^s zlpqRqhZ5HY)9TL)TMWoD)N zz;Az-oVazE*~MqO*8Vd?9Ce*iW=u8SI$P=uD@%e0MwZ38MJ)&|;kU|HPIw9F?Y-a4 zUQ(zhxM}h09>(G@(aX^;O&q;H*3*m~jjKj{1{`Hn z%YEVGCra?ol(^}xkCfI%(yRB!Y)s4L?HU6eB@2gES~1ZaT^b$zZCD92iFx42nvC2k z&yGSQ!a$cty;w3`#*YBE>OyEr876?c-6BGANnIY9>%;_(a}MT2FhDjNgk#O5b1Zqh z!+=Q*j%*?LUNQrtO+d^!9wh@W;A!cIMTcdfoN=L5X?2c^-INmut`0?c7TXfGq_@b3 z1Jehdrq4`Q_gt7zcE5e!)A!T6dC4JunlBvSr#$YdMo+Evjh_~VqhxUgy~g6*K#>s`{S$-(Yf}dSkd_j06DIl^n3-)`lLvmcxY4Dka3vD_Pex;OI^N%nM z1BBTYmNnlk*mZs8IJxu7Tse|4{A8qI`C*4d7v+2)-n>2dY@K>?=#N-Jf3~zkA=mg$ zM`(g3TIm{n~;6%o)MJJfr806p_=7ABM#y0}8`N?R?I=rve=YI6DwI0sCQmG>?mMFb+*U&yY^GNXVeG21h7E~`Ikkn`xo6{D(rB6;2 z-7FebFwlErD182WmmH-YKcP$~j$hb1_4Kjn=&jqC0DOO}*85Hn@bJRg`i=}XR=a>R z?dF>Exxgi9Ebi%=Mee|UCl$X*Qb3a}asFbT>!A#$FS>K8C9~smiwYxKj}lR>r3L2X zk@MB*P9I0-S+fkCG^!q%cqPE?+#B0x=L{?{R1Vtv1^_{?U7sffF~66Fo^di5j1o4S z@VU+GngxG?ME+mMcW=+3b6-E@6?fiqeseID*u#kg zH|PX6rG>0_!zFn*C#Psfz@AMKli3io4T#V81(2Lv6JG{e0iogUn-d9s-E3H1gdb3x zs$d`SCRSB@Ga&wD`45Up8Ij$a-5CV3uMe|V)!)48&BpHD!&o9F3E$5Gx>8+$fZD-jK1cktX2M7y929Ko<4i z`h2Y`LlEP+6!1Y;sI}0#g6ncxChejb2t53=PxgJg805O-#66nyFkc3+t8+vYps6a( z**T?gH8-wyJPI0@ygF)b^OZ`!s{e>|DEMtJ`~Cwv`X@>Bua=ZCwgI0gOE$$sc}V`( zkyw?lQ%pHlS|usM4=PUXme&?X<{^jwm9nQf`*QY0MJ>|NsjRDOkR#B*;6QhGuXq2@ zAfdh79t3ud-?-Oz2?)6%Wn<8jb>*3nbPQvm%_qN4M97~pI@dm6PT|me$cRpl*NokR zEb5|`uidJl(QwL?H0f8Fm%3fFqZ#)f(EZiGOI-Ifc6PVeAwRc_@-Z;Q@qF*=oBZ=7G$1h9U zR@ZqxQQ6h2BkbuSuC`qo9%+}{9@M!F$PkGAqo2;r9C{Ax*t*f@kojqG(_S$mfV|kG zLO6ZoF05mVp6YJ}XmpZJImM}94)$|_=bHvW=KL05@opQBU8 zSVakqsYlQB)YkwGMPH`xn$pk=`UFh2BY6x4C3MMdJYF=TZP4e5$xW3 z%0yW&e}ZYBVo3knGqOi7As83xKA|9Wd)+dz@|sN7kUR=aY;iZKGJ9n?N6avKVmNOs zvk35c2vk3aQy4)wWlb5|^C=lAUCRk?JaU@^$y0db%}lm{@t<%fRdnwM2d}`>6-IoCyRQ+oPE+bE~gx{CdvBcPM?gIoC-f z%78G?j#DU;g4szDJgO{M5n8^Y%Jg_<<4n!9WuYaE_{LI!dVU2!T?DmbB1pIZ>mJPM z*0?2$_x4_XO|;SAunf0{#}?I%)Hmm`R_XsS%=lmAN0PGtSt}pQ5Y?pxlIk`~9{#Zp zb@Nurvtmn-4HCk{SJ#O$l3RsUMAqXRb*)*IRbumQIh*2@>6+0u5lsQQWH357gu*=$ z;LTfrDRuWArPrf$e~9b$%6Q7eBtCF`a3qDe^-Et^&)XmnV%0>d;B{*=S~DT$WE?L@w=g+x-fK=9^U~FC^PfFjtSoNI5484Rrdie*9EjS%Z+fz46M%R$jA7=FjprxCwjWT2O=jsA#5^-w1BXpsV<^I@C+h$q)W{)CS zN-5djgaPiH7(G21TS?__0vH7nMkZjO3kxd6lqzrq;U2w%m+1_S5@oBFz`>W}o>=e2PDmwF2+%2^2|Na~3O|4!?c8*kNDAYR`98T{oXI wRm;kR;ccgj<_0bfst{IIqdo5VxUb7Dui~hoCd)pD@Zkk?;Pa1v(EmC98@j*+jsO4v literal 0 HcmV?d00001 diff --git a/assets/index-BTa1kL1V.js b/assets/index-BTa1kL1V.js new file mode 100644 index 0000000..eaf60b2 --- /dev/null +++ b/assets/index-BTa1kL1V.js @@ -0,0 +1,648 @@ +(function(){const n=document.createElement("link").relList;if(n&&n.supports&&n.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))a(o);new MutationObserver(o=>{for(const u of o)if(u.type==="childList")for(const c of u.addedNodes)c.tagName==="LINK"&&c.rel==="modulepreload"&&a(c)}).observe(document,{childList:!0,subtree:!0});function r(o){const u={};return o.integrity&&(u.integrity=o.integrity),o.referrerPolicy&&(u.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?u.credentials="include":o.crossOrigin==="anonymous"?u.credentials="omit":u.credentials="same-origin",u}function a(o){if(o.ep)return;o.ep=!0;const u=r(o);fetch(o.href,u)}})();var dd=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Qd(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function HO(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var n=e.default;if(typeof n=="function"){var r=function a(){var o=!1;try{o=this instanceof a}catch{}return o?Reflect.construct(n,arguments,this.constructor):n.apply(this,arguments)};r.prototype=n.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(e).forEach(function(a){var o=Object.getOwnPropertyDescriptor(e,a);Object.defineProperty(r,a,o.get?o:{enumerable:!0,get:function(){return e[a]}})}),r}var Im={exports:{}},Uu={};/** + * @license React + * react-jsx-runtime.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var m0;function VO(){if(m0)return Uu;m0=1;var e=Symbol.for("react.transitional.element"),n=Symbol.for("react.fragment");function r(a,o,u){var c=null;if(u!==void 0&&(c=""+u),o.key!==void 0&&(c=""+o.key),"key"in o){u={};for(var h in o)h!=="key"&&(u[h]=o[h])}else u=o;return o=u.ref,{$$typeof:e,type:a,key:c,ref:o!==void 0?o:null,props:u}}return Uu.Fragment=n,Uu.jsx=r,Uu.jsxs=r,Uu}var p0;function qO(){return p0||(p0=1,Im.exports=VO()),Im.exports}var le=qO(),Ym={exports:{}},We={};/** + * @license React + * react.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var g0;function FO(){if(g0)return We;g0=1;var e=Symbol.for("react.transitional.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),o=Symbol.for("react.profiler"),u=Symbol.for("react.consumer"),c=Symbol.for("react.context"),h=Symbol.for("react.forward_ref"),p=Symbol.for("react.suspense"),g=Symbol.for("react.memo"),v=Symbol.for("react.lazy"),w=Symbol.iterator;function T(y){return y===null||typeof y!="object"?null:(y=w&&y[w]||y["@@iterator"],typeof y=="function"?y:null)}var L={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},R=Object.assign,N={};function j(y,E,$){this.props=y,this.context=E,this.refs=N,this.updater=$||L}j.prototype.isReactComponent={},j.prototype.setState=function(y,E){if(typeof y!="object"&&typeof y!="function"&&y!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,y,E,"setState")},j.prototype.forceUpdate=function(y){this.updater.enqueueForceUpdate(this,y,"forceUpdate")};function P(){}P.prototype=j.prototype;function F(y,E,$){this.props=y,this.context=E,this.refs=N,this.updater=$||L}var q=F.prototype=new P;q.constructor=F,R(q,j.prototype),q.isPureReactComponent=!0;var oe=Array.isArray,M={H:null,A:null,T:null,S:null,V:null},k=Object.prototype.hasOwnProperty;function H(y,E,$,W,Z,fe){return $=fe.ref,{$$typeof:e,type:y,key:E,ref:$!==void 0?$:null,props:fe}}function Q(y,E){return H(y.type,E,void 0,void 0,void 0,y.props)}function z(y){return typeof y=="object"&&y!==null&&y.$$typeof===e}function D(y){var E={"=":"=0",":":"=2"};return"$"+y.replace(/[=:]/g,function($){return E[$]})}var ne=/\/+/g;function ue(y,E){return typeof y=="object"&&y!==null&&y.key!=null?D(""+y.key):E.toString(36)}function K(){}function J(y){switch(y.status){case"fulfilled":return y.value;case"rejected":throw y.reason;default:switch(typeof y.status=="string"?y.then(K,K):(y.status="pending",y.then(function(E){y.status==="pending"&&(y.status="fulfilled",y.value=E)},function(E){y.status==="pending"&&(y.status="rejected",y.reason=E)})),y.status){case"fulfilled":return y.value;case"rejected":throw y.reason}}throw y}function ve(y,E,$,W,Z){var fe=typeof y;(fe==="undefined"||fe==="boolean")&&(y=null);var ce=!1;if(y===null)ce=!0;else switch(fe){case"bigint":case"string":case"number":ce=!0;break;case"object":switch(y.$$typeof){case e:case n:ce=!0;break;case v:return ce=y._init,ve(ce(y._payload),E,$,W,Z)}}if(ce)return Z=Z(y),ce=W===""?"."+ue(y,0):W,oe(Z)?($="",ce!=null&&($=ce.replace(ne,"$&/")+"/"),ve(Z,E,$,"",function(ye){return ye})):Z!=null&&(z(Z)&&(Z=Q(Z,$+(Z.key==null||y&&y.key===Z.key?"":(""+Z.key).replace(ne,"$&/")+"/")+ce)),E.push(Z)),1;ce=0;var be=W===""?".":W+":";if(oe(y))for(var Ae=0;Ae>>1,y=U[V];if(0>>1;Vo(W,de))Zo(fe,W)?(U[V]=fe,U[Z]=de,V=Z):(U[V]=W,U[$]=de,V=$);else if(Zo(fe,de))U[V]=fe,U[Z]=de,V=Z;else break e}}return S}function o(U,S){var de=U.sortIndex-S.sortIndex;return de!==0?de:U.id-S.id}if(e.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var u=performance;e.unstable_now=function(){return u.now()}}else{var c=Date,h=c.now();e.unstable_now=function(){return c.now()-h}}var p=[],g=[],v=1,w=null,T=3,L=!1,R=!1,N=!1,j=!1,P=typeof setTimeout=="function"?setTimeout:null,F=typeof clearTimeout=="function"?clearTimeout:null,q=typeof setImmediate<"u"?setImmediate:null;function oe(U){for(var S=r(g);S!==null;){if(S.callback===null)a(g);else if(S.startTime<=U)a(g),S.sortIndex=S.expirationTime,n(p,S);else break;S=r(g)}}function M(U){if(N=!1,oe(U),!R)if(r(p)!==null)R=!0,k||(k=!0,ue());else{var S=r(g);S!==null&&ve(M,S.startTime-U)}}var k=!1,H=-1,Q=5,z=-1;function D(){return j?!0:!(e.unstable_now()-zU&&D());){var V=w.callback;if(typeof V=="function"){w.callback=null,T=w.priorityLevel;var y=V(w.expirationTime<=U);if(U=e.unstable_now(),typeof y=="function"){w.callback=y,oe(U),S=!0;break t}w===r(p)&&a(p),oe(U)}else a(p);w=r(p)}if(w!==null)S=!0;else{var E=r(g);E!==null&&ve(M,E.startTime-U),S=!1}}break e}finally{w=null,T=de,L=!1}S=void 0}}finally{S?ue():k=!1}}}var ue;if(typeof q=="function")ue=function(){q(ne)};else if(typeof MessageChannel<"u"){var K=new MessageChannel,J=K.port2;K.port1.onmessage=ne,ue=function(){J.postMessage(null)}}else ue=function(){P(ne,0)};function ve(U,S){H=P(function(){U(e.unstable_now())},S)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(U){U.callback=null},e.unstable_forceFrameRate=function(U){0>U||125V?(U.sortIndex=de,n(g,U),r(p)===null&&U===r(g)&&(N?(F(H),H=-1):N=!0,ve(M,de-V))):(U.sortIndex=y,n(p,U),R||L||(R=!0,k||(k=!0,ue()))),U},e.unstable_shouldYield=D,e.unstable_wrapCallback=function(U){var S=T;return function(){var de=T;T=S;try{return U.apply(this,arguments)}finally{T=de}}}})(Km)),Km}var b0;function IO(){return b0||(b0=1,Xm.exports=$O()),Xm.exports}var Wm={exports:{}},xn={};/** + * @license React + * react-dom.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var S0;function YO(){if(S0)return xn;S0=1;var e=fr();function n(p){var g="https://react.dev/errors/"+p;if(1"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(n){console.error(n)}}return e(),Wm.exports=YO(),Wm.exports}/** + * @license React + * react-dom-client.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var _0;function GO(){if(_0)return Hu;_0=1;var e=IO(),n=fr(),r=Sw();function a(t){var i="https://react.dev/errors/"+t;if(1y||(t.current=V[y],V[y]=null,y--)}function W(t,i){y++,V[y]=t.current,t.current=i}var Z=E(null),fe=E(null),ce=E(null),be=E(null);function Ae(t,i){switch(W(ce,i),W(fe,t),W(Z,null),i.nodeType){case 9:case 11:t=(t=i.documentElement)&&(t=t.namespaceURI)?qb(t):0;break;default:if(t=i.tagName,i=i.namespaceURI)i=qb(i),t=Fb(i,t);else switch(t){case"svg":t=1;break;case"math":t=2;break;default:t=0}}$(Z),W(Z,t)}function ye(){$(Z),$(fe),$(ce)}function $e(t){t.memoizedState!==null&&W(be,t);var i=Z.current,s=Fb(i,t.type);i!==s&&(W(fe,t),W(Z,s))}function Ze(t){fe.current===t&&($(Z),$(fe)),be.current===t&&($(be),ju._currentValue=de)}var Je=Object.prototype.hasOwnProperty,Ge=e.unstable_scheduleCallback,ze=e.unstable_cancelCallback,De=e.unstable_shouldYield,dt=e.unstable_requestPaint,Me=e.unstable_now,Ct=e.unstable_getCurrentPriorityLevel,Dt=e.unstable_ImmediatePriority,zt=e.unstable_UserBlockingPriority,Gt=e.unstable_NormalPriority,yi=e.unstable_LowPriority,hr=e.unstable_IdlePriority,Qs=e.log,ri=e.unstable_setDisableYieldValue,pn=null,xt=null;function gn(t){if(typeof Qs=="function"&&ri(t),xt&&typeof xt.setStrictMode=="function")try{xt.setStrictMode(pn,t)}catch{}}var An=Math.clz32?Math.clz32:ia,us=Math.log,na=Math.LN2;function ia(t){return t>>>=0,t===0?32:31-(us(t)/na|0)|0}var mr=256,Zs=4194304;function bi(t){var i=t&42;if(i!==0)return i;switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t&4194048;case 4194304:case 8388608:case 16777216:case 33554432:return t&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return t}}function Js(t,i,s){var l=t.pendingLanes;if(l===0)return 0;var f=0,m=t.suspendedLanes,_=t.pingedLanes;t=t.warmLanes;var O=l&134217727;return O!==0?(l=O&~m,l!==0?f=bi(l):(_&=O,_!==0?f=bi(_):s||(s=O&~t,s!==0&&(f=bi(s))))):(O=l&~m,O!==0?f=bi(O):_!==0?f=bi(_):s||(s=l&~t,s!==0&&(f=bi(s)))),f===0?0:i!==0&&i!==f&&(i&m)===0&&(m=f&-f,s=i&-i,m>=s||m===32&&(s&4194048)!==0)?i:f}function cs(t,i){return(t.pendingLanes&~(t.suspendedLanes&~t.pingedLanes)&i)===0}function Sh(t,i){switch(t){case 1:case 2:case 4:case 8:case 64:return i+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return i+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Rc(){var t=mr;return mr<<=1,(mr&4194048)===0&&(mr=256),t}function Mc(){var t=Zs;return Zs<<=1,(Zs&62914560)===0&&(Zs=4194304),t}function Tl(t){for(var i=[],s=0;31>s;s++)i.push(t);return i}function ra(t,i){t.pendingLanes|=i,i!==268435456&&(t.suspendedLanes=0,t.pingedLanes=0,t.warmLanes=0)}function eo(t,i,s,l,f,m){var _=t.pendingLanes;t.pendingLanes=s,t.suspendedLanes=0,t.pingedLanes=0,t.warmLanes=0,t.expiredLanes&=s,t.entangledLanes&=s,t.errorRecoveryDisabledLanes&=s,t.shellSuspendCounter=0;var O=t.entanglements,B=t.expirationTimes,te=t.hiddenUpdates;for(s=_&~s;0)":-1f||B[l]!==te[f]){var he=` +`+B[l].replace(" at new "," at ");return t.displayName&&he.includes("")&&(he=he.replace("",t.displayName)),he}while(1<=l&&0<=f);break}}}finally{ao=!1,Error.prepareStackTrace=s}return(s=t?t.displayName||t.name:"")?Vi(s):""}function Nc(t){switch(t.tag){case 26:case 27:case 5:return Vi(t.type);case 16:return Vi("Lazy");case 13:return Vi("Suspense");case 19:return Vi("SuspenseList");case 0:case 15:return so(t.type,!1);case 11:return so(t.type.render,!1);case 1:return so(t.type,!0);case 31:return Vi("Activity");default:return""}}function Dl(t){try{var i="";do i+=Nc(t),t=t.return;while(t);return i}catch(s){return` +Error generating stack: `+s.message+` +`+s.stack}}function Rn(t){switch(typeof t){case"bigint":case"boolean":case"number":case"string":case"undefined":return t;case"object":return t;default:return""}}function Nl(t){var i=t.type;return(t=t.nodeName)&&t.toLowerCase()==="input"&&(i==="checkbox"||i==="radio")}function Lc(t){var i=Nl(t)?"checked":"value",s=Object.getOwnPropertyDescriptor(t.constructor.prototype,i),l=""+t[i];if(!t.hasOwnProperty(i)&&typeof s<"u"&&typeof s.get=="function"&&typeof s.set=="function"){var f=s.get,m=s.set;return Object.defineProperty(t,i,{configurable:!0,get:function(){return f.call(this)},set:function(_){l=""+_,m.call(this,_)}}),Object.defineProperty(t,i,{enumerable:s.enumerable}),{getValue:function(){return l},setValue:function(_){l=""+_},stopTracking:function(){t._valueTracker=null,delete t[i]}}}}function hs(t){t._valueTracker||(t._valueTracker=Lc(t))}function Ll(t){if(!t)return!1;var i=t._valueTracker;if(!i)return!0;var s=i.getValue(),l="";return t&&(l=Nl(t)?t.checked?"true":"false":t.value),t=l,t!==s?(i.setValue(t),!0):!1}function ms(t){if(t=t||(typeof document<"u"?document:void 0),typeof t>"u")return null;try{return t.activeElement||t.body}catch{return t.body}}var si=/[\n"\\]/g;function wt(t){return t.replace(si,function(i){return"\\"+i.charCodeAt(0).toString(16)+" "})}function Si(t,i,s,l,f,m,_,O){t.name="",_!=null&&typeof _!="function"&&typeof _!="symbol"&&typeof _!="boolean"?t.type=_:t.removeAttribute("type"),i!=null?_==="number"?(i===0&&t.value===""||t.value!=i)&&(t.value=""+Rn(i)):t.value!==""+Rn(i)&&(t.value=""+Rn(i)):_!=="submit"&&_!=="reset"||t.removeAttribute("value"),i!=null?ps(t,_,Rn(i)):s!=null?ps(t,_,Rn(s)):l!=null&&t.removeAttribute("value"),f==null&&m!=null&&(t.defaultChecked=!!m),f!=null&&(t.checked=f&&typeof f!="function"&&typeof f!="symbol"),O!=null&&typeof O!="function"&&typeof O!="symbol"&&typeof O!="boolean"?t.name=""+Rn(O):t.removeAttribute("name")}function Mn(t,i,s,l,f,m,_,O){if(m!=null&&typeof m!="function"&&typeof m!="symbol"&&typeof m!="boolean"&&(t.type=m),i!=null||s!=null){if(!(m!=="submit"&&m!=="reset"||i!=null))return;s=s!=null?""+Rn(s):"",i=i!=null?""+Rn(i):s,O||i===t.value||(t.value=i),t.defaultValue=i}l=l??f,l=typeof l!="function"&&typeof l!="symbol"&&!!l,t.checked=O?t.checked:!!l,t.defaultChecked=!!l,_!=null&&typeof _!="function"&&typeof _!="symbol"&&typeof _!="boolean"&&(t.name=_)}function ps(t,i,s){i==="number"&&ms(t.ownerDocument)===t||t.defaultValue===""+s||(t.defaultValue=""+s)}function qi(t,i,s,l){if(t=t.options,i){i={};for(var f=0;f"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),lo=!1;if(li)try{var ui={};Object.defineProperty(ui,"passive",{get:function(){lo=!0}}),window.addEventListener("test",ui,ui),window.removeEventListener("test",ui,ui)}catch{lo=!1}var Ii=null,uo=null,pa=null;function vs(){if(pa)return pa;var t,i=uo,s=i.length,l,f="value"in Ii?Ii.value:Ii.textContent,m=f.length;for(t=0;t=Ss),Yc=" ",ws=!1;function Gc(t,i){switch(t){case"keyup":return Ic.indexOf(i.keyCode)!==-1;case"keydown":return i.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Xc(t){return t=t.detail,typeof t=="object"&&"data"in t?t.data:null}var Sa=!1;function Nh(t,i){switch(t){case"compositionend":return Xc(i);case"keypress":return i.which!==32?null:(ws=!0,Yc);case"textInput":return t=i.data,t===Yc&&ws?null:t;default:return null}}function Lh(t,i){if(Sa)return t==="compositionend"||!po&&Gc(t,i)?(t=vs(),pa=uo=Ii=null,Sa=!1,t):null;switch(t){case"paste":return null;case"keypress":if(!(i.ctrlKey||i.altKey||i.metaKey)||i.ctrlKey&&i.altKey){if(i.char&&1=i)return{node:s,offset:i-t};t=l}e:{for(;s;){if(s.nextSibling){s=s.nextSibling;break e}s=s.parentNode}s=void 0}s=vo(s)}}function sf(t,i){return t&&i?t===i?!0:t&&t.nodeType===3?!1:i&&i.nodeType===3?sf(t,i.parentNode):"contains"in t?t.contains(i):t.compareDocumentPosition?!!(t.compareDocumentPosition(i)&16):!1:!1}function of(t){t=t!=null&&t.ownerDocument!=null&&t.ownerDocument.defaultView!=null?t.ownerDocument.defaultView:window;for(var i=ms(t.document);i instanceof t.HTMLIFrameElement;){try{var s=typeof i.contentWindow.location.href=="string"}catch{s=!1}if(s)t=i.contentWindow;else break;i=ms(t.document)}return i}function yo(t){var i=t&&t.nodeName&&t.nodeName.toLowerCase();return i&&(i==="input"&&(t.type==="text"||t.type==="search"||t.type==="tel"||t.type==="url"||t.type==="password")||i==="textarea"||t.contentEditable==="true")}var lf=li&&"documentMode"in document&&11>=document.documentMode,xa=null,Il=null,Es=null,Yl=!1;function uf(t,i,s){var l=s.window===s?s.document:s.nodeType===9?s:s.ownerDocument;Yl||xa==null||xa!==ms(l)||(l=xa,"selectionStart"in l&&yo(l)?l={start:l.selectionStart,end:l.selectionEnd}:(l=(l.ownerDocument&&l.ownerDocument.defaultView||window).getSelection(),l={anchorNode:l.anchorNode,anchorOffset:l.anchorOffset,focusNode:l.focusNode,focusOffset:l.focusOffset}),Es&&Ea(Es,l)||(Es=l,l=Qf(Il,"onSelect"),0>=_,f-=_,xi=1<<32-An(i)+f|s<m?m:8;var _=U.T,O={};U.T=O,$h(t,!1,i,s);try{var B=f(),te=U.S;if(te!==null&&te(O,B),B!==null&&typeof B=="object"&&typeof B.then=="function"){var he=Uh(B,l);gu(t,i,he,ti(t))}else gu(t,i,l,ti(t))}catch(ge){gu(t,i,{then:function(){},status:"rejected",reason:ge},ti())}finally{S.p=m,U.T=_}}function kT(){}function qh(t,i,s,l){if(t.tag!==5)throw Error(a(476));var f=my(t).queue;hy(t,f,i,de,s===null?kT:function(){return py(t),s(l)})}function my(t){var i=t.memoizedState;if(i!==null)return i;i={memoizedState:de,baseState:de,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Mi,lastRenderedState:de},next:null};var s={};return i.next={memoizedState:s,baseState:s,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Mi,lastRenderedState:s},next:null},t.memoizedState=i,t=t.alternate,t!==null&&(t.memoizedState=i),i}function py(t){var i=my(t).next.queue;gu(t,i,{},ti())}function Fh(){return tn(ju)}function gy(){return Ot().memoizedState}function vy(){return Ot().memoizedState}function PT(t){for(var i=t.return;i!==null;){switch(i.tag){case 24:case 3:var s=ti();t=ae(s);var l=pe(i,t,s);l!==null&&(ni(l,i,s),we(l,i,s)),i={cache:Co()},t.payload=i;return}i=i.return}}function zT(t,i,s){var l=ti();s={lane:l,revertLane:0,action:s,hasEagerState:!1,eagerState:null,next:null},Df(t)?by(i,s):(s=Wl(t,i,s,l),s!==null&&(ni(s,t,l),Sy(s,i,l)))}function yy(t,i,s){var l=ti();gu(t,i,s,l)}function gu(t,i,s,l){var f={lane:l,revertLane:0,action:s,hasEagerState:!1,eagerState:null,next:null};if(Df(t))by(i,f);else{var m=t.alternate;if(t.lanes===0&&(m===null||m.lanes===0)&&(m=i.lastRenderedReducer,m!==null))try{var _=i.lastRenderedState,O=m(_,s);if(f.hasEagerState=!0,f.eagerState=O,en(O,_))return Eo(t,i,f,0),Et===null&&_o(),!1}catch{}finally{}if(s=Wl(t,i,f,l),s!==null)return ni(s,t,l),Sy(s,i,l),!0}return!1}function $h(t,i,s,l){if(l={lane:2,revertLane:_m(),action:l,hasEagerState:!1,eagerState:null,next:null},Df(t)){if(i)throw Error(a(479))}else i=Wl(t,s,l,2),i!==null&&ni(i,t,2)}function Df(t){var i=t.alternate;return t===_e||i!==null&&i===_e}function by(t,i){it=lt=!0;var s=t.pending;s===null?i.next=i:(i.next=s.next,s.next=i),t.pending=i}function Sy(t,i,s){if((s&4194048)!==0){var l=i.lanes;l&=t.pendingLanes,s|=l,i.lanes=s,Al(t,s)}}var Nf={readContext:tn,use:kr,useCallback:st,useContext:st,useEffect:st,useImperativeHandle:st,useLayoutEffect:st,useInsertionEffect:st,useMemo:st,useReducer:st,useRef:st,useState:st,useDebugValue:st,useDeferredValue:st,useTransition:st,useSyncExternalStore:st,useId:st,useHostTransitionStatus:st,useFormState:st,useActionState:st,useOptimistic:st,useMemoCache:st,useCacheRefresh:st},wy={readContext:tn,use:kr,useCallback:function(t,i){return Lt().memoizedState=[t,i===void 0?null:i],t},useContext:tn,useEffect:ry,useImperativeHandle:function(t,i,s){s=s!=null?s.concat([t]):null,Mf(4194308,4,ly.bind(null,i,t),s)},useLayoutEffect:function(t,i){return Mf(4194308,4,t,i)},useInsertionEffect:function(t,i){Mf(4,2,t,i)},useMemo:function(t,i){var s=Lt();i=i===void 0?null:i;var l=t();if(mt){gn(!0);try{t()}finally{gn(!1)}}return s.memoizedState=[l,i],l},useReducer:function(t,i,s){var l=Lt();if(s!==void 0){var f=s(i);if(mt){gn(!0);try{s(i)}finally{gn(!1)}}}else f=i;return l.memoizedState=l.baseState=f,t={pending:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:f},l.queue=t,t=t.dispatch=zT.bind(null,_e,t),[l.memoizedState,t]},useRef:function(t){var i=Lt();return t={current:t},i.memoizedState=t},useState:function(t){t=ka(t);var i=t.queue,s=yy.bind(null,_e,i);return i.dispatch=s,[t.memoizedState,s]},useDebugValue:Hh,useDeferredValue:function(t,i){var s=Lt();return Vh(s,t,i)},useTransition:function(){var t=ka(!1);return t=hy.bind(null,_e,t.queue,!0,!1),Lt().memoizedState=t,[!1,t]},useSyncExternalStore:function(t,i,s){var l=_e,f=Lt();if(rt){if(s===void 0)throw Error(a(407));s=s()}else{if(s=i(),Et===null)throw Error(a(349));(ot&124)!==0||lu(l,i,s)}f.memoizedState=s;var m={value:s,getSnapshot:i};return f.queue=m,ry(xf.bind(null,l,m,t),[t]),l.flags|=2048,Po(9,Rf(),uu.bind(null,l,m,s,i),null),s},useId:function(){var t=Lt(),i=Et.identifierPrefix;if(rt){var s=Ti,l=xi;s=(l&~(1<<32-An(l)-1)).toString(32)+s,i="«"+i+"R"+s,s=nn++,0He?(sn=Ne,Ne=null):sn=Ne.sibling;var ut=ie(X,Ne,ee[He],me);if(ut===null){Ne===null&&(Ne=sn);break}t&&Ne&&ut.alternate===null&&i(X,Ne),I=m(ut,I,He),et===null?Re=ut:et.sibling=ut,et=ut,Ne=sn}if(He===ee.length)return s(X,Ne),rt&&jn(X,He),Re;if(Ne===null){for(;HeHe?(sn=Ne,Ne=null):sn=Ne.sibling;var Qa=ie(X,Ne,ut.value,me);if(Qa===null){Ne===null&&(Ne=sn);break}t&&Ne&&Qa.alternate===null&&i(X,Ne),I=m(Qa,I,He),et===null?Re=Qa:et.sibling=Qa,et=Qa,Ne=sn}if(ut.done)return s(X,Ne),rt&&jn(X,He),Re;if(Ne===null){for(;!ut.done;He++,ut=ee.next())ut=ge(X,ut.value,me),ut!==null&&(I=m(ut,I,He),et===null?Re=ut:et.sibling=ut,et=ut);return rt&&jn(X,He),Re}for(Ne=l(Ne);!ut.done;He++,ut=ee.next())ut=re(Ne,X,He,ut.value,me),ut!==null&&(t&&ut.alternate!==null&&Ne.delete(ut.key===null?He:ut.key),I=m(ut,I,He),et===null?Re=ut:et.sibling=ut,et=ut);return t&&Ne.forEach(function(UO){return i(X,UO)}),rt&&jn(X,He),Re}function yt(X,I,ee,me){if(typeof ee=="object"&&ee!==null&&ee.type===R&&ee.key===null&&(ee=ee.props.children),typeof ee=="object"&&ee!==null){switch(ee.$$typeof){case T:e:{for(var Re=ee.key;I!==null;){if(I.key===Re){if(Re=ee.type,Re===R){if(I.tag===7){s(X,I.sibling),me=f(I,ee.props.children),me.return=X,X=me;break e}}else if(I.elementType===Re||typeof Re=="object"&&Re!==null&&Re.$$typeof===Q&&Ey(Re)===I.type){s(X,I.sibling),me=f(I,ee.props),yu(me,ee),me.return=X,X=me;break e}s(X,I);break}else i(X,I);I=I.sibling}ee.type===R?(me=Tr(ee.props.children,X.mode,me,ee.key),me.return=X,X=me):(me=xo(ee.type,ee.key,ee.props,null,X.mode,me),yu(me,ee),me.return=X,X=me)}return _(X);case L:e:{for(Re=ee.key;I!==null;){if(I.key===Re)if(I.tag===4&&I.stateNode.containerInfo===ee.containerInfo&&I.stateNode.implementation===ee.implementation){s(X,I.sibling),me=f(I,ee.children||[]),me.return=X,X=me;break e}else{s(X,I);break}else i(X,I);I=I.sibling}me=Aa(ee,X.mode,me),me.return=X,X=me}return _(X);case Q:return Re=ee._init,ee=Re(ee._payload),yt(X,I,ee,me)}if(ve(ee))return qe(X,I,ee,me);if(ue(ee)){if(Re=ue(ee),typeof Re!="function")throw Error(a(150));return ee=Re.call(ee),Be(X,I,ee,me)}if(typeof ee.then=="function")return yt(X,I,Lf(ee),me);if(ee.$$typeof===q)return yt(X,I,Ms(X,ee),me);jf(X,ee)}return typeof ee=="string"&&ee!==""||typeof ee=="number"||typeof ee=="bigint"?(ee=""+ee,I!==null&&I.tag===6?(s(X,I.sibling),me=f(I,ee),me.return=X,X=me):(s(X,I),me=Ts(ee,X.mode,me),me.return=X,X=me),_(X)):s(X,I)}return function(X,I,ee,me){try{vu=0;var Re=yt(X,I,ee,me);return zo=null,Re}catch(Ne){if(Ne===Ns||Ne===Lr)throw Ne;var et=Ln(29,Ne,null,X.mode);return et.lanes=me,et.return=X,et}finally{}}}var Bo=xy(!0),Ty=xy(!1),di=E(null),er=null;function Pa(t){var i=t.alternate;W(Qt,Qt.current&1),W(di,t),er===null&&(i===null||ke.current!==null||i.memoizedState!==null)&&(er=t)}function Oy(t){if(t.tag===22){if(W(Qt,Qt.current),W(di,t),er===null){var i=t.alternate;i!==null&&i.memoizedState!==null&&(er=t)}}else za()}function za(){W(Qt,Qt.current),W(di,di.current)}function Pr(t){$(di),er===t&&(er=null),$(Qt)}var Qt=E(0);function kf(t){for(var i=t;i!==null;){if(i.tag===13){var s=i.memoizedState;if(s!==null&&(s=s.dehydrated,s===null||s.data==="$?"||jm(s)))return i}else if(i.tag===19&&i.memoizedProps.revealOrder!==void 0){if((i.flags&128)!==0)return i}else if(i.child!==null){i.child.return=i,i=i.child;continue}if(i===t)break;for(;i.sibling===null;){if(i.return===null||i.return===t)return null;i=i.return}i.sibling.return=i.return,i=i.sibling}return null}function Ih(t,i,s,l){i=t.memoizedState,s=s(l,i),s=s==null?i:v({},i,s),t.memoizedState=s,t.lanes===0&&(t.updateQueue.baseState=s)}var Yh={enqueueSetState:function(t,i,s){t=t._reactInternals;var l=ti(),f=ae(l);f.payload=i,s!=null&&(f.callback=s),i=pe(t,f,l),i!==null&&(ni(i,t,l),we(i,t,l))},enqueueReplaceState:function(t,i,s){t=t._reactInternals;var l=ti(),f=ae(l);f.tag=1,f.payload=i,s!=null&&(f.callback=s),i=pe(t,f,l),i!==null&&(ni(i,t,l),we(i,t,l))},enqueueForceUpdate:function(t,i){t=t._reactInternals;var s=ti(),l=ae(s);l.tag=2,i!=null&&(l.callback=i),i=pe(t,l,s),i!==null&&(ni(i,t,s),we(i,t,s))}};function Ay(t,i,s,l,f,m,_){return t=t.stateNode,typeof t.shouldComponentUpdate=="function"?t.shouldComponentUpdate(l,m,_):i.prototype&&i.prototype.isPureReactComponent?!Ea(s,l)||!Ea(f,m):!0}function Cy(t,i,s,l){t=i.state,typeof i.componentWillReceiveProps=="function"&&i.componentWillReceiveProps(s,l),typeof i.UNSAFE_componentWillReceiveProps=="function"&&i.UNSAFE_componentWillReceiveProps(s,l),i.state!==t&&Yh.enqueueReplaceState(i,i.state,null)}function Ls(t,i){var s=i;if("ref"in i){s={};for(var l in i)l!=="ref"&&(s[l]=i[l])}if(t=t.defaultProps){s===i&&(s=v({},s));for(var f in t)s[f]===void 0&&(s[f]=t[f])}return s}var Pf=typeof reportError=="function"?reportError:function(t){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var i=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof t=="object"&&t!==null&&typeof t.message=="string"?String(t.message):String(t),error:t});if(!window.dispatchEvent(i))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",t);return}console.error(t)};function Ry(t){Pf(t)}function My(t){console.error(t)}function Dy(t){Pf(t)}function zf(t,i){try{var s=t.onUncaughtError;s(i.value,{componentStack:i.stack})}catch(l){setTimeout(function(){throw l})}}function Ny(t,i,s){try{var l=t.onCaughtError;l(s.value,{componentStack:s.stack,errorBoundary:i.tag===1?i.stateNode:null})}catch(f){setTimeout(function(){throw f})}}function Gh(t,i,s){return s=ae(s),s.tag=3,s.payload={element:null},s.callback=function(){zf(t,i)},s}function Ly(t){return t=ae(t),t.tag=3,t}function jy(t,i,s,l){var f=s.type.getDerivedStateFromError;if(typeof f=="function"){var m=l.value;t.payload=function(){return f(m)},t.callback=function(){Ny(i,s,l)}}var _=s.stateNode;_!==null&&typeof _.componentDidCatch=="function"&&(t.callback=function(){Ny(i,s,l),typeof f!="function"&&(Fa===null?Fa=new Set([this]):Fa.add(this));var O=l.stack;this.componentDidCatch(l.value,{componentStack:O!==null?O:""})})}function UT(t,i,s,l,f){if(s.flags|=32768,l!==null&&typeof l=="object"&&typeof l.then=="function"){if(i=s.alternate,i!==null&&Rs(i,s,f,!0),s=di.current,s!==null){switch(s.tag){case 13:return er===null?vm():s.alternate===null&&Vt===0&&(Vt=3),s.flags&=-257,s.flags|=65536,s.lanes=f,l===Da?s.flags|=16384:(i=s.updateQueue,i===null?s.updateQueue=new Set([l]):i.add(l),bm(t,l,f)),!1;case 22:return s.flags|=65536,l===Da?s.flags|=16384:(i=s.updateQueue,i===null?(i={transitions:null,markerInstances:null,retryQueue:new Set([l])},s.updateQueue=i):(s=i.retryQueue,s===null?i.retryQueue=new Set([l]):s.add(l)),bm(t,l,f)),!1}throw Error(a(435,s.tag))}return bm(t,l,f),vm(),!1}if(rt)return i=di.current,i!==null?((i.flags&65536)===0&&(i.flags|=256),i.flags|=65536,i.lanes=f,l!==eu&&(t=Error(a(422),{cause:l}),Oi(Bn(t,s)))):(l!==eu&&(i=Error(a(423),{cause:l}),Oi(Bn(i,s))),t=t.current.alternate,t.flags|=65536,f&=-f,t.lanes|=f,l=Bn(l,s),f=Gh(t.stateNode,l,f),Te(t,f),Vt!==4&&(Vt=2)),!1;var m=Error(a(520),{cause:l});if(m=Bn(m,s),Tu===null?Tu=[m]:Tu.push(m),Vt!==4&&(Vt=2),i===null)return!0;l=Bn(l,s),s=i;do{switch(s.tag){case 3:return s.flags|=65536,t=f&-f,s.lanes|=t,t=Gh(s.stateNode,l,t),Te(s,t),!1;case 1:if(i=s.type,m=s.stateNode,(s.flags&128)===0&&(typeof i.getDerivedStateFromError=="function"||m!==null&&typeof m.componentDidCatch=="function"&&(Fa===null||!Fa.has(m))))return s.flags|=65536,f&=-f,s.lanes|=f,f=Ly(f),jy(f,t,s,l),Te(s,f),!1}s=s.return}while(s!==null);return!1}var ky=Error(a(461)),rn=!1;function cn(t,i,s,l){i.child=t===null?Ty(i,null,s,l):Bo(i,t.child,s,l)}function Py(t,i,s,l,f){s=s.render;var m=i.ref;if("ref"in l){var _={};for(var O in l)O!=="ref"&&(_[O]=l[O])}else _=l;return Qi(i),l=qn(t,i,s,_,m,f),O=ft(),t!==null&&!rn?(Wt(t,i,f),zr(t,i,f)):(rt&&O&&Zl(i),i.flags|=1,cn(t,i,l,f),i.child)}function zy(t,i,s,l,f){if(t===null){var m=s.type;return typeof m=="function"&&!Ql(m)&&m.defaultProps===void 0&&s.compare===null?(i.tag=15,i.type=m,By(t,i,m,l,f)):(t=xo(s.type,null,l,i,i.mode,f),t.ref=i.ref,t.return=i,i.child=t)}if(m=t.child,!tm(t,f)){var _=m.memoizedProps;if(s=s.compare,s=s!==null?s:Ea,s(_,l)&&t.ref===i.ref)return zr(t,i,f)}return i.flags|=1,t=Ei(m,l),t.ref=i.ref,t.return=i,i.child=t}function By(t,i,s,l,f){if(t!==null){var m=t.memoizedProps;if(Ea(m,l)&&t.ref===i.ref)if(rn=!1,i.pendingProps=l=m,tm(t,f))(t.flags&131072)!==0&&(rn=!0);else return i.lanes=t.lanes,zr(t,i,f)}return Xh(t,i,s,l,f)}function Uy(t,i,s){var l=i.pendingProps,f=l.children,m=t!==null?t.memoizedState:null;if(l.mode==="hidden"){if((i.flags&128)!==0){if(l=m!==null?m.baseLanes|s:s,t!==null){for(f=i.child=t.child,m=0;f!==null;)m=m|f.lanes|f.childLanes,f=f.sibling;i.childLanes=m&~l}else i.childLanes=0,i.child=null;return Hy(t,i,l,s)}if((s&536870912)!==0)i.memoizedState={baseLanes:0,cachePool:null},t!==null&&Ro(i,m!==null?m.cachePool:null),m!==null?ct(i,m):ht(),Oy(i);else return i.lanes=i.childLanes=536870912,Hy(t,i,m!==null?m.baseLanes|s:s,s)}else m!==null?(Ro(i,m.cachePool),ct(i,m),za(),i.memoizedState=null):(t!==null&&Ro(i,null),ht(),za());return cn(t,i,f,s),i.child}function Hy(t,i,s,l){var f=ru();return f=f===null?null:{parent:Nt._currentValue,pool:f},i.memoizedState={baseLanes:s,cachePool:f},t!==null&&Ro(i,null),ht(),Oy(i),t!==null&&Rs(t,i,l,!0),null}function Bf(t,i){var s=i.ref;if(s===null)t!==null&&t.ref!==null&&(i.flags|=4194816);else{if(typeof s!="function"&&typeof s!="object")throw Error(a(284));(t===null||t.ref!==s)&&(i.flags|=4194816)}}function Xh(t,i,s,l,f){return Qi(i),s=qn(t,i,s,l,void 0,f),l=ft(),t!==null&&!rn?(Wt(t,i,f),zr(t,i,f)):(rt&&l&&Zl(i),i.flags|=1,cn(t,i,s,f),i.child)}function Vy(t,i,s,l,f,m){return Qi(i),i.updateQueue=null,s=jr(i,l,s,f),Qn(t),l=ft(),t!==null&&!rn?(Wt(t,i,m),zr(t,i,m)):(rt&&l&&Zl(i),i.flags|=1,cn(t,i,s,m),i.child)}function qy(t,i,s,l,f){if(Qi(i),i.stateNode===null){var m=Oa,_=s.contextType;typeof _=="object"&&_!==null&&(m=tn(_)),m=new s(l,m),i.memoizedState=m.state!==null&&m.state!==void 0?m.state:null,m.updater=Yh,i.stateNode=m,m._reactInternals=i,m=i.stateNode,m.props=l,m.state=i.memoizedState,m.refs={},Y(i),_=s.contextType,m.context=typeof _=="object"&&_!==null?tn(_):Oa,m.state=i.memoizedState,_=s.getDerivedStateFromProps,typeof _=="function"&&(Ih(i,s,_,l),m.state=i.memoizedState),typeof s.getDerivedStateFromProps=="function"||typeof m.getSnapshotBeforeUpdate=="function"||typeof m.UNSAFE_componentWillMount!="function"&&typeof m.componentWillMount!="function"||(_=m.state,typeof m.componentWillMount=="function"&&m.componentWillMount(),typeof m.UNSAFE_componentWillMount=="function"&&m.UNSAFE_componentWillMount(),_!==m.state&&Yh.enqueueReplaceState(m,m.state,null),Ie(i,l,m,f),Ee(),m.state=i.memoizedState),typeof m.componentDidMount=="function"&&(i.flags|=4194308),l=!0}else if(t===null){m=i.stateNode;var O=i.memoizedProps,B=Ls(s,O);m.props=B;var te=m.context,he=s.contextType;_=Oa,typeof he=="object"&&he!==null&&(_=tn(he));var ge=s.getDerivedStateFromProps;he=typeof ge=="function"||typeof m.getSnapshotBeforeUpdate=="function",O=i.pendingProps!==O,he||typeof m.UNSAFE_componentWillReceiveProps!="function"&&typeof m.componentWillReceiveProps!="function"||(O||te!==_)&&Cy(i,m,l,_),A=!1;var ie=i.memoizedState;m.state=ie,Ie(i,l,m,f),Ee(),te=i.memoizedState,O||ie!==te||A?(typeof ge=="function"&&(Ih(i,s,ge,l),te=i.memoizedState),(B=A||Ay(i,s,B,l,ie,te,_))?(he||typeof m.UNSAFE_componentWillMount!="function"&&typeof m.componentWillMount!="function"||(typeof m.componentWillMount=="function"&&m.componentWillMount(),typeof m.UNSAFE_componentWillMount=="function"&&m.UNSAFE_componentWillMount()),typeof m.componentDidMount=="function"&&(i.flags|=4194308)):(typeof m.componentDidMount=="function"&&(i.flags|=4194308),i.memoizedProps=l,i.memoizedState=te),m.props=l,m.state=te,m.context=_,l=B):(typeof m.componentDidMount=="function"&&(i.flags|=4194308),l=!1)}else{m=i.stateNode,G(t,i),_=i.memoizedProps,he=Ls(s,_),m.props=he,ge=i.pendingProps,ie=m.context,te=s.contextType,B=Oa,typeof te=="object"&&te!==null&&(B=tn(te)),O=s.getDerivedStateFromProps,(te=typeof O=="function"||typeof m.getSnapshotBeforeUpdate=="function")||typeof m.UNSAFE_componentWillReceiveProps!="function"&&typeof m.componentWillReceiveProps!="function"||(_!==ge||ie!==B)&&Cy(i,m,l,B),A=!1,ie=i.memoizedState,m.state=ie,Ie(i,l,m,f),Ee();var re=i.memoizedState;_!==ge||ie!==re||A||t!==null&&t.dependencies!==null&&Oo(t.dependencies)?(typeof O=="function"&&(Ih(i,s,O,l),re=i.memoizedState),(he=A||Ay(i,s,he,l,ie,re,B)||t!==null&&t.dependencies!==null&&Oo(t.dependencies))?(te||typeof m.UNSAFE_componentWillUpdate!="function"&&typeof m.componentWillUpdate!="function"||(typeof m.componentWillUpdate=="function"&&m.componentWillUpdate(l,re,B),typeof m.UNSAFE_componentWillUpdate=="function"&&m.UNSAFE_componentWillUpdate(l,re,B)),typeof m.componentDidUpdate=="function"&&(i.flags|=4),typeof m.getSnapshotBeforeUpdate=="function"&&(i.flags|=1024)):(typeof m.componentDidUpdate!="function"||_===t.memoizedProps&&ie===t.memoizedState||(i.flags|=4),typeof m.getSnapshotBeforeUpdate!="function"||_===t.memoizedProps&&ie===t.memoizedState||(i.flags|=1024),i.memoizedProps=l,i.memoizedState=re),m.props=l,m.state=re,m.context=B,l=he):(typeof m.componentDidUpdate!="function"||_===t.memoizedProps&&ie===t.memoizedState||(i.flags|=4),typeof m.getSnapshotBeforeUpdate!="function"||_===t.memoizedProps&&ie===t.memoizedState||(i.flags|=1024),l=!1)}return m=l,Bf(t,i),l=(i.flags&128)!==0,m||l?(m=i.stateNode,s=l&&typeof s.getDerivedStateFromError!="function"?null:m.render(),i.flags|=1,t!==null&&l?(i.child=Bo(i,t.child,null,f),i.child=Bo(i,null,s,f)):cn(t,i,s,f),i.memoizedState=m.state,t=i.child):t=zr(t,i,f),t}function Fy(t,i,s,l){return Cs(),i.flags|=256,cn(t,i,s,l),i.child}var Kh={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function Wh(t){return{baseLanes:t,cachePool:wf()}}function Qh(t,i,s){return t=t!==null?t.childLanes&~s:0,i&&(t|=hi),t}function $y(t,i,s){var l=i.pendingProps,f=!1,m=(i.flags&128)!==0,_;if((_=m)||(_=t!==null&&t.memoizedState===null?!1:(Qt.current&2)!==0),_&&(f=!0,i.flags&=-129),_=(i.flags&32)!==0,i.flags&=-33,t===null){if(rt){if(f?Pa(i):za(),rt){var O=bt,B;if(B=O){e:{for(B=O,O=Wn;B.nodeType!==8;){if(!O){O=null;break e}if(B=Ni(B.nextSibling),B===null){O=null;break e}}O=B}O!==null?(i.memoizedState={dehydrated:O,treeContext:Ar!==null?{id:xi,overflow:Ti}:null,retryLane:536870912,hydrationErrors:null},B=Ln(18,null,null,0),B.stateNode=O,B.return=i,i.child=B,ln=i,bt=null,B=!0):B=!1}B||Un(i)}if(O=i.memoizedState,O!==null&&(O=O.dehydrated,O!==null))return jm(O)?i.lanes=32:i.lanes=536870912,null;Pr(i)}return O=l.children,l=l.fallback,f?(za(),f=i.mode,O=Uf({mode:"hidden",children:O},f),l=Tr(l,f,s,null),O.return=i,l.return=i,O.sibling=l,i.child=O,f=i.child,f.memoizedState=Wh(s),f.childLanes=Qh(t,_,s),i.memoizedState=Kh,l):(Pa(i),Zh(i,O))}if(B=t.memoizedState,B!==null&&(O=B.dehydrated,O!==null)){if(m)i.flags&256?(Pa(i),i.flags&=-257,i=Jh(t,i,s)):i.memoizedState!==null?(za(),i.child=t.child,i.flags|=128,i=null):(za(),f=l.fallback,O=i.mode,l=Uf({mode:"visible",children:l.children},O),f=Tr(f,O,s,null),f.flags|=2,l.return=i,f.return=i,l.sibling=f,i.child=l,Bo(i,t.child,null,s),l=i.child,l.memoizedState=Wh(s),l.childLanes=Qh(t,_,s),i.memoizedState=Kh,i=f);else if(Pa(i),jm(O)){if(_=O.nextSibling&&O.nextSibling.dataset,_)var te=_.dgst;_=te,l=Error(a(419)),l.stack="",l.digest=_,Oi({value:l,source:null,stack:null}),i=Jh(t,i,s)}else if(rn||Rs(t,i,s,!1),_=(s&t.childLanes)!==0,rn||_){if(_=Et,_!==null&&(l=s&-s,l=(l&42)!==0?1:Cl(l),l=(l&(_.suspendedLanes|s))!==0?0:l,l!==0&&l!==B.retryLane))throw B.retryLane=l,Ta(t,l),ni(_,t,l),ky;O.data==="$?"||vm(),i=Jh(t,i,s)}else O.data==="$?"?(i.flags|=192,i.child=t.child,i=null):(t=B.treeContext,bt=Ni(O.nextSibling),ln=i,rt=!0,Cr=null,Wn=!1,t!==null&&(wn[_n++]=xi,wn[_n++]=Ti,wn[_n++]=Ar,xi=t.id,Ti=t.overflow,Ar=i),i=Zh(i,l.children),i.flags|=4096);return i}return f?(za(),f=l.fallback,O=i.mode,B=t.child,te=B.sibling,l=Ei(B,{mode:"hidden",children:l.children}),l.subtreeFlags=B.subtreeFlags&65011712,te!==null?f=Ei(te,f):(f=Tr(f,O,s,null),f.flags|=2),f.return=i,l.return=i,l.sibling=f,i.child=l,l=f,f=i.child,O=t.child.memoizedState,O===null?O=Wh(s):(B=O.cachePool,B!==null?(te=Nt._currentValue,B=B.parent!==te?{parent:te,pool:te}:B):B=wf(),O={baseLanes:O.baseLanes|s,cachePool:B}),f.memoizedState=O,f.childLanes=Qh(t,_,s),i.memoizedState=Kh,l):(Pa(i),s=t.child,t=s.sibling,s=Ei(s,{mode:"visible",children:l.children}),s.return=i,s.sibling=null,t!==null&&(_=i.deletions,_===null?(i.deletions=[t],i.flags|=16):_.push(t)),i.child=s,i.memoizedState=null,s)}function Zh(t,i){return i=Uf({mode:"visible",children:i},t.mode),i.return=t,t.child=i}function Uf(t,i){return t=Ln(22,t,null,i),t.lanes=0,t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null},t}function Jh(t,i,s){return Bo(i,t.child,null,s),t=Zh(i,i.pendingProps.children),t.flags|=2,i.memoizedState=null,t}function Iy(t,i,s){t.lanes|=i;var l=t.alternate;l!==null&&(l.lanes|=i),nu(t.return,i,s)}function em(t,i,s,l,f){var m=t.memoizedState;m===null?t.memoizedState={isBackwards:i,rendering:null,renderingStartTime:0,last:l,tail:s,tailMode:f}:(m.isBackwards=i,m.rendering=null,m.renderingStartTime=0,m.last=l,m.tail=s,m.tailMode=f)}function Yy(t,i,s){var l=i.pendingProps,f=l.revealOrder,m=l.tail;if(cn(t,i,l.children,s),l=Qt.current,(l&2)!==0)l=l&1|2,i.flags|=128;else{if(t!==null&&(t.flags&128)!==0)e:for(t=i.child;t!==null;){if(t.tag===13)t.memoizedState!==null&&Iy(t,s,i);else if(t.tag===19)Iy(t,s,i);else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===i)break e;for(;t.sibling===null;){if(t.return===null||t.return===i)break e;t=t.return}t.sibling.return=t.return,t=t.sibling}l&=1}switch(W(Qt,l),f){case"forwards":for(s=i.child,f=null;s!==null;)t=s.alternate,t!==null&&kf(t)===null&&(f=s),s=s.sibling;s=f,s===null?(f=i.child,i.child=null):(f=s.sibling,s.sibling=null),em(i,!1,f,s,m);break;case"backwards":for(s=null,f=i.child,i.child=null;f!==null;){if(t=f.alternate,t!==null&&kf(t)===null){i.child=f;break}t=f.sibling,f.sibling=s,s=f,f=t}em(i,!0,s,null,m);break;case"together":em(i,!1,null,null,void 0);break;default:i.memoizedState=null}return i.child}function zr(t,i,s){if(t!==null&&(i.dependencies=t.dependencies),qa|=i.lanes,(s&i.childLanes)===0)if(t!==null){if(Rs(t,i,s,!1),(s&i.childLanes)===0)return null}else return null;if(t!==null&&i.child!==t.child)throw Error(a(153));if(i.child!==null){for(t=i.child,s=Ei(t,t.pendingProps),i.child=s,s.return=i;t.sibling!==null;)t=t.sibling,s=s.sibling=Ei(t,t.pendingProps),s.return=i;s.sibling=null}return i.child}function tm(t,i){return(t.lanes&i)!==0?!0:(t=t.dependencies,!!(t!==null&&Oo(t)))}function HT(t,i,s){switch(i.tag){case 3:Ae(i,i.stateNode.containerInfo),Wi(i,Nt,t.memoizedState.cache),Cs();break;case 27:case 5:$e(i);break;case 4:Ae(i,i.stateNode.containerInfo);break;case 10:Wi(i,i.type,i.memoizedProps.value);break;case 13:var l=i.memoizedState;if(l!==null)return l.dehydrated!==null?(Pa(i),i.flags|=128,null):(s&i.child.childLanes)!==0?$y(t,i,s):(Pa(i),t=zr(t,i,s),t!==null?t.sibling:null);Pa(i);break;case 19:var f=(t.flags&128)!==0;if(l=(s&i.childLanes)!==0,l||(Rs(t,i,s,!1),l=(s&i.childLanes)!==0),f){if(l)return Yy(t,i,s);i.flags|=128}if(f=i.memoizedState,f!==null&&(f.rendering=null,f.tail=null,f.lastEffect=null),W(Qt,Qt.current),l)break;return null;case 22:case 23:return i.lanes=0,Uy(t,i,s);case 24:Wi(i,Nt,t.memoizedState.cache)}return zr(t,i,s)}function Gy(t,i,s){if(t!==null)if(t.memoizedProps!==i.pendingProps)rn=!0;else{if(!tm(t,s)&&(i.flags&128)===0)return rn=!1,HT(t,i,s);rn=(t.flags&131072)!==0}else rn=!1,rt&&(i.flags&1048576)!==0&&pf(i,Ki,i.index);switch(i.lanes=0,i.tag){case 16:e:{t=i.pendingProps;var l=i.elementType,f=l._init;if(l=f(l._payload),i.type=l,typeof l=="function")Ql(l)?(t=Ls(l,t),i.tag=1,i=qy(null,i,l,t,s)):(i.tag=0,i=Xh(null,i,l,t,s));else{if(l!=null){if(f=l.$$typeof,f===oe){i.tag=11,i=Py(null,i,l,t,s);break e}else if(f===H){i.tag=14,i=zy(null,i,l,t,s);break e}}throw i=J(l)||l,Error(a(306,i,""))}}return i;case 0:return Xh(t,i,i.type,i.pendingProps,s);case 1:return l=i.type,f=Ls(l,i.pendingProps),qy(t,i,l,f,s);case 3:e:{if(Ae(i,i.stateNode.containerInfo),t===null)throw Error(a(387));l=i.pendingProps;var m=i.memoizedState;f=m.element,G(t,i),Ie(i,l,null,s);var _=i.memoizedState;if(l=_.cache,Wi(i,Nt,l),l!==m.cache&&iu(i,[Nt],s,!0),Ee(),l=_.element,m.isDehydrated)if(m={element:l,isDehydrated:!1,cache:_.cache},i.updateQueue.baseState=m,i.memoizedState=m,i.flags&256){i=Fy(t,i,l,s);break e}else if(l!==f){f=Bn(Error(a(424)),i),Oi(f),i=Fy(t,i,l,s);break e}else{switch(t=i.stateNode.containerInfo,t.nodeType){case 9:t=t.body;break;default:t=t.nodeName==="HTML"?t.ownerDocument.body:t}for(bt=Ni(t.firstChild),ln=i,rt=!0,Cr=null,Wn=!0,s=Ty(i,null,l,s),i.child=s;s;)s.flags=s.flags&-3|4096,s=s.sibling}else{if(Cs(),l===f){i=zr(t,i,s);break e}cn(t,i,l,s)}i=i.child}return i;case 26:return Bf(t,i),t===null?(s=Qb(i.type,null,i.pendingProps,null))?i.memoizedState=s:rt||(s=i.type,t=i.pendingProps,l=Jf(ce.current).createElement(s),l[Bt]=i,l[vn]=t,dn(l,s,t),Tt(l),i.stateNode=l):i.memoizedState=Qb(i.type,t.memoizedProps,i.pendingProps,t.memoizedState),null;case 27:return $e(i),t===null&&rt&&(l=i.stateNode=Xb(i.type,i.pendingProps,ce.current),ln=i,Wn=!0,f=bt,Ya(i.type)?(km=f,bt=Ni(l.firstChild)):bt=f),cn(t,i,i.pendingProps.children,s),Bf(t,i),t===null&&(i.flags|=4194304),i.child;case 5:return t===null&&rt&&((f=l=bt)&&(l=mO(l,i.type,i.pendingProps,Wn),l!==null?(i.stateNode=l,ln=i,bt=Ni(l.firstChild),Wn=!1,f=!0):f=!1),f||Un(i)),$e(i),f=i.type,m=i.pendingProps,_=t!==null?t.memoizedProps:null,l=m.children,Dm(f,m)?l=null:_!==null&&Dm(f,_)&&(i.flags|=32),i.memoizedState!==null&&(f=qn(t,i,Xt,null,null,s),ju._currentValue=f),Bf(t,i),cn(t,i,l,s),i.child;case 6:return t===null&&rt&&((t=s=bt)&&(s=pO(s,i.pendingProps,Wn),s!==null?(i.stateNode=s,ln=i,bt=null,t=!0):t=!1),t||Un(i)),null;case 13:return $y(t,i,s);case 4:return Ae(i,i.stateNode.containerInfo),l=i.pendingProps,t===null?i.child=Bo(i,null,l,s):cn(t,i,l,s),i.child;case 11:return Py(t,i,i.type,i.pendingProps,s);case 7:return cn(t,i,i.pendingProps,s),i.child;case 8:return cn(t,i,i.pendingProps.children,s),i.child;case 12:return cn(t,i,i.pendingProps.children,s),i.child;case 10:return l=i.pendingProps,Wi(i,i.type,l.value),cn(t,i,l.children,s),i.child;case 9:return f=i.type._context,l=i.pendingProps.children,Qi(i),f=tn(f),l=l(f),i.flags|=1,cn(t,i,l,s),i.child;case 14:return zy(t,i,i.type,i.pendingProps,s);case 15:return By(t,i,i.type,i.pendingProps,s);case 19:return Yy(t,i,s);case 31:return l=i.pendingProps,s=i.mode,l={mode:l.mode,children:l.children},t===null?(s=Uf(l,s),s.ref=i.ref,i.child=s,s.return=i,i=s):(s=Ei(t.child,l),s.ref=i.ref,i.child=s,s.return=i,i=s),i;case 22:return Uy(t,i,s);case 24:return Qi(i),l=tn(Nt),t===null?(f=ru(),f===null&&(f=Et,m=Co(),f.pooledCache=m,m.refCount++,m!==null&&(f.pooledCacheLanes|=s),f=m),i.memoizedState={parent:l,cache:f},Y(i),Wi(i,Nt,f)):((t.lanes&s)!==0&&(G(t,i),Ie(i,null,null,s),Ee()),f=t.memoizedState,m=i.memoizedState,f.parent!==l?(f={parent:l,cache:l},i.memoizedState=f,i.lanes===0&&(i.memoizedState=i.updateQueue.baseState=f),Wi(i,Nt,l)):(l=m.cache,Wi(i,Nt,l),l!==f.cache&&iu(i,[Nt],s,!0))),cn(t,i,i.pendingProps.children,s),i.child;case 29:throw i.pendingProps}throw Error(a(156,i.tag))}function Br(t){t.flags|=4}function Xy(t,i){if(i.type!=="stylesheet"||(i.state.loading&4)!==0)t.flags&=-16777217;else if(t.flags|=16777216,!n0(i)){if(i=di.current,i!==null&&((ot&4194048)===ot?er!==null:(ot&62914560)!==ot&&(ot&536870912)===0||i!==er))throw x=Da,au;t.flags|=8192}}function Hf(t,i){i!==null&&(t.flags|=4),t.flags&16384&&(i=t.tag!==22?Mc():536870912,t.lanes|=i,qo|=i)}function bu(t,i){if(!rt)switch(t.tailMode){case"hidden":i=t.tail;for(var s=null;i!==null;)i.alternate!==null&&(s=i),i=i.sibling;s===null?t.tail=null:s.sibling=null;break;case"collapsed":s=t.tail;for(var l=null;s!==null;)s.alternate!==null&&(l=s),s=s.sibling;l===null?i||t.tail===null?t.tail=null:t.tail.sibling=null:l.sibling=null}}function jt(t){var i=t.alternate!==null&&t.alternate.child===t.child,s=0,l=0;if(i)for(var f=t.child;f!==null;)s|=f.lanes|f.childLanes,l|=f.subtreeFlags&65011712,l|=f.flags&65011712,f.return=t,f=f.sibling;else for(f=t.child;f!==null;)s|=f.lanes|f.childLanes,l|=f.subtreeFlags,l|=f.flags,f.return=t,f=f.sibling;return t.subtreeFlags|=l,t.childLanes=s,i}function VT(t,i,s){var l=i.pendingProps;switch(Jl(i),i.tag){case 31:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return jt(i),null;case 1:return jt(i),null;case 3:return s=i.stateNode,l=null,t!==null&&(l=t.memoizedState.cache),i.memoizedState.cache!==l&&(i.flags|=2048),Ri(Nt),ye(),s.pendingContext&&(s.context=s.pendingContext,s.pendingContext=null),(t===null||t.child===null)&&(As(i)?Br(i):t===null||t.memoizedState.isDehydrated&&(i.flags&256)===0||(i.flags|=1024,gf())),jt(i),null;case 26:return s=i.memoizedState,t===null?(Br(i),s!==null?(jt(i),Xy(i,s)):(jt(i),i.flags&=-16777217)):s?s!==t.memoizedState?(Br(i),jt(i),Xy(i,s)):(jt(i),i.flags&=-16777217):(t.memoizedProps!==l&&Br(i),jt(i),i.flags&=-16777217),null;case 27:Ze(i),s=ce.current;var f=i.type;if(t!==null&&i.stateNode!=null)t.memoizedProps!==l&&Br(i);else{if(!l){if(i.stateNode===null)throw Error(a(166));return jt(i),null}t=Z.current,As(i)?To(i):(t=Xb(f,l,s),i.stateNode=t,Br(i))}return jt(i),null;case 5:if(Ze(i),s=i.type,t!==null&&i.stateNode!=null)t.memoizedProps!==l&&Br(i);else{if(!l){if(i.stateNode===null)throw Error(a(166));return jt(i),null}if(t=Z.current,As(i))To(i);else{switch(f=Jf(ce.current),t){case 1:t=f.createElementNS("http://www.w3.org/2000/svg",s);break;case 2:t=f.createElementNS("http://www.w3.org/1998/Math/MathML",s);break;default:switch(s){case"svg":t=f.createElementNS("http://www.w3.org/2000/svg",s);break;case"math":t=f.createElementNS("http://www.w3.org/1998/Math/MathML",s);break;case"script":t=f.createElement("div"),t.innerHTML=" +
- diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index 30e99a0..0000000 --- a/jsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": ".", - "paths": { - "@/*": ["src/*"] - } - }, - "include": ["src"] - } \ No newline at end of file diff --git a/package.json b/package.json deleted file mode 100644 index 45603cf..0000000 --- a/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "miarma-base", - "private": true, - "version": "1.0.0", - "scripts": { - "dev": "vite", - "build": "vite build", - "lint": "eslint .", - "preview": "vite preview" - }, - "dependencies": { - "@fortawesome/fontawesome-free": "^7.0.0", - "@fortawesome/fontawesome-svg-core": "^7.0.0", - "@fortawesome/free-brands-svg-icons": "^7.0.0", - "@fortawesome/free-regular-svg-icons": "^7.0.0", - "@fortawesome/free-solid-svg-icons": "^7.0.0", - "@fortawesome/react-fontawesome": "^0.2.3", - "axios": "^1.11.0", - "bootstrap": "^5.3.7", - "date-fns": "^4.1.0", - "framer-motion": "^12.23.12", - "react": "^19.1.0", - "react-bootstrap": "^2.10.10", - "react-dom": "^19.1.0", - "react-router-dom": "^7.7.1", - "react-slick": "^0.30.3", - "slick-carousel": "^1.8.1" - }, - "devDependencies": { - "@eslint/js": "^9.30.1", - "@types/react": "^19.1.8", - "@types/react-dom": "^19.1.6", - "@vitejs/plugin-react": "^4.6.0", - "electron": "^37.2.5", - "eslint": "^9.30.1", - "eslint-plugin-react-hooks": "^5.2.0", - "eslint-plugin-react-refresh": "^0.4.20", - "globals": "^16.3.0", - "vite": "^7.0.4" - } -} diff --git a/src/App.jsx b/src/App.jsx deleted file mode 100644 index abdbbef..0000000 --- a/src/App.jsx +++ /dev/null @@ -1,28 +0,0 @@ -import Header from '@/components/Header.jsx'; -import NavBar from '@/components/NavBar.jsx'; -import Footer from '@/components/Footer.jsx'; -import { Route, Routes, useLocation } from 'react-router-dom' -import ProtectedRoute from '@/components/Auth/ProtectedRoute.jsx' -import useSessionRenewal from '@/hooks/useSessionRenewal' -import { CONSTANTS } from '@/util/constants' - -import Home from '@/pages/Home.jsx' -import Building from '@/pages/Building.jsx' - -function App() { - const routesWithFooter = ["/"]; - - return ( - <> -
- - - } /> - } /> - - {routesWithFooter.includes(useLocation().pathname) ?