From 1142dfd568cfb52003e6dac9b21739eae9b2bf48 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 12 Aug 2024 01:03:55 -0400 Subject: [PATCH] initial commit --- .gitignore | 24 + LICENSE | 232 + README.md | 19 + app.vue | 31 + assets/fonts/outfit/OFL.txt | 93 + .../fonts/outfit/outfit-v11-latin-100.woff2 | Bin 0 -> 13220 bytes .../fonts/outfit/outfit-v11-latin-200.woff2 | Bin 0 -> 13864 bytes .../fonts/outfit/outfit-v11-latin-300.woff2 | Bin 0 -> 14016 bytes .../fonts/outfit/outfit-v11-latin-500.woff2 | Bin 0 -> 13300 bytes .../fonts/outfit/outfit-v11-latin-600.woff2 | Bin 0 -> 14096 bytes .../fonts/outfit/outfit-v11-latin-700.woff2 | Bin 0 -> 14064 bytes .../fonts/outfit/outfit-v11-latin-800.woff2 | Bin 0 -> 14056 bytes .../fonts/outfit/outfit-v11-latin-900.woff2 | Bin 0 -> 13500 bytes .../outfit/outfit-v11-latin-regular.woff2 | Bin 0 -> 14084 bytes assets/fonts/whois/whois.eot | Bin 0 -> 5516 bytes assets/fonts/whois/whois.svg | 21 + assets/fonts/whois/whois.ttf | Bin 0 -> 5360 bytes assets/fonts/whois/whois.woff | Bin 0 -> 5436 bytes assets/fonts/whois/whois.woff2 | Bin 0 -> 2836 bytes assets/style/components/faq.css | 72 + assets/style/components/footer.css | 158 + assets/style/components/header.css | 55 + assets/style/components/products.css | 39 + assets/style/components/search.css | 74 + assets/style/config.css | 45 + assets/style/fonts.css | 114 + assets/style/main.css | 56 + assets/style/pages/error.css | 35 + assets/style/pages/index.css | 10 + assets/style/pages/pages.css | 39 + assets/style/pages/results.css | 84 + assets/style/style.css | 22 + components/Faq.vue | 40 + components/Footer.vue | 73 + components/Header.vue | 16 + components/Products.vue | 17 + components/Search.vue | 24 + composables/hostname.js | 10 + composables/zones.js | 4 + error.vue | 35 + nuxt.config.ts | 37 + package-lock.json | 9689 +++++++++++++++++ package.json | 24 + pages/index.vue | 34 + pages/results.vue | 107 + public/android-chrome-192x192.png | Bin 0 -> 3042 bytes public/android-chrome-512x512.png | Bin 0 -> 6822 bytes public/apple-touch-icon.png | Bin 0 -> 1053 bytes public/browserconfig.xml | 9 + public/favicon-16x16.png | Bin 0 -> 659 bytes public/favicon-32x32.png | Bin 0 -> 885 bytes public/favicon.ico | Bin 0 -> 15086 bytes public/favicon.svg | 70 + public/img/logo.svg | 69 + public/mstile-144x144.png | Bin 0 -> 2398 bytes public/mstile-150x150.png | Bin 0 -> 2420 bytes public/mstile-310x150.png | Bin 0 -> 2527 bytes public/mstile-310x310.png | Bin 0 -> 4368 bytes public/mstile-70x70.png | Bin 0 -> 1752 bytes public/safari-pinned-tab.svg | 30 + public/site.webmanifest | 19 + server/tsconfig.json | 3 + tsconfig.json | 4 + 63 files changed, 11537 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 app.vue create mode 100644 assets/fonts/outfit/OFL.txt create mode 100644 assets/fonts/outfit/outfit-v11-latin-100.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-200.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-300.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-500.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-600.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-700.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-800.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-900.woff2 create mode 100644 assets/fonts/outfit/outfit-v11-latin-regular.woff2 create mode 100644 assets/fonts/whois/whois.eot create mode 100644 assets/fonts/whois/whois.svg create mode 100644 assets/fonts/whois/whois.ttf create mode 100644 assets/fonts/whois/whois.woff create mode 100644 assets/fonts/whois/whois.woff2 create mode 100644 assets/style/components/faq.css create mode 100644 assets/style/components/footer.css create mode 100644 assets/style/components/header.css create mode 100644 assets/style/components/products.css create mode 100644 assets/style/components/search.css create mode 100644 assets/style/config.css create mode 100644 assets/style/fonts.css create mode 100644 assets/style/main.css create mode 100644 assets/style/pages/error.css create mode 100644 assets/style/pages/index.css create mode 100644 assets/style/pages/pages.css create mode 100644 assets/style/pages/results.css create mode 100644 assets/style/style.css create mode 100644 components/Faq.vue create mode 100644 components/Footer.vue create mode 100644 components/Header.vue create mode 100644 components/Products.vue create mode 100644 components/Search.vue create mode 100644 composables/hostname.js create mode 100644 composables/zones.js create mode 100644 error.vue create mode 100644 nuxt.config.ts create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 pages/index.vue create mode 100644 pages/results.vue create mode 100644 public/android-chrome-192x192.png create mode 100644 public/android-chrome-512x512.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/browserconfig.xml create mode 100644 public/favicon-16x16.png create mode 100644 public/favicon-32x32.png create mode 100644 public/favicon.ico create mode 100644 public/favicon.svg create mode 100644 public/img/logo.svg create mode 100644 public/mstile-144x144.png create mode 100644 public/mstile-150x150.png create mode 100644 public/mstile-310x150.png create mode 100644 public/mstile-310x310.png create mode 100644 public/mstile-70x70.png create mode 100644 public/safari-pinned-tab.svg create mode 100644 public/site.webmanifest create mode 100644 server/tsconfig.json create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4a7f73a --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Nuxt dev/build outputs +.output +.data +.nuxt +.nitro +.cache +dist + +# Node dependencies +node_modules + +# Logs +logs +*.log + +# Misc +.DS_Store +.fleet +.idea + +# Local env files +.env +.env.* +!.env.example diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bd75eae --- /dev/null +++ b/LICENSE @@ -0,0 +1,232 @@ +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 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. + + ryanmoon.com + Copyright (C) 2023 ryan + + 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: + + ryanmoon.com Copyright (C) 2023 ryan + 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/README.md b/README.md new file mode 100644 index 0000000..f4327c9 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +## Whois domain lookup + +Whois domain name search for Tinysites. + +--- + +### Setup + +Install dependencies, start development server, build application, preview production build: + +```bash +# npm +npm install +npm run dev +npm run build +npm run preview +``` + +Check out the deployment documentation for more information. \ No newline at end of file diff --git a/app.vue b/app.vue new file mode 100644 index 0000000..1701cff --- /dev/null +++ b/app.vue @@ -0,0 +1,31 @@ + + + diff --git a/assets/fonts/outfit/OFL.txt b/assets/fonts/outfit/OFL.txt new file mode 100644 index 0000000..723cd44 --- /dev/null +++ b/assets/fonts/outfit/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2021 The Outfit Project Authors (https://github.com/Outfitio/Outfit-Fonts) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/assets/fonts/outfit/outfit-v11-latin-100.woff2 b/assets/fonts/outfit/outfit-v11-latin-100.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..48bdcc16a87c257789aa434f6c3d552a81eafd04 GIT binary patch literal 13220 zcmZ8{b8x545^jF6ZQJ(7wr$(CZQHhO+u1nTY_PFy-2KjX&aJw4s%y~y%sWr_JYCao zyUU9)0|9{kHkJ|~#DB(sm%nr2e|7(?|KElkb zbA|*H>;wd02POpxHvlCB3z2~c(}0D*3A9JE$yRIL0%YNK_SGm#tXgQHu4F4Wf6H^q zjU^N^=9WG}C`SGepS#0G=`4YX)WLjqn5C-WP2_YMv`Lvn5sCMR(yUEGO-qn?isQyk&wNs`d(W-7NYAL_Sum00EUi=c5%U2u);DQ-`1$?Q z{?hl_eS|jCOVw6oa4lPW&Gs@yBA z@vIaA=l(Uo{P-{Or~RXin*>SfLWh=?sL%=IqSyrg=lAL$@h}}263CG2=h{>Lfyt7Q zHpe2jXUtG5PusbP9;FI*1wyRYEE({*@A;Pb;nSvaHEZNj`)WCN@Ou_aqOUAX;}A#k zp@?t~tPqkAPe_uOdj#jII@4TUScgDZ5}-hwR_XQ8-T?gm2X2ulh{7Mbb39744OFG1 z&I+M43GxUS4LWn4e!t^t=^5dH_)mp@6|BuG6>XlL?gfGE-^N3PAwdLuezSkt9G_{8 zZHu6U3cOtu_&z;==Aw7GfR_8S*o*nu=ZU>Y;wN7OjJ-Uz5`rBj_KN?cc-lFH1|szq z^w)$^7gz?UPr4CRM73zQAK;TQZXaxuZgaRZ&!ec{;KxBz4jQK0Jp{#fztf;`)wgD?h3Vpz$9NoIu&aJk6 z7xv9O1npA&3@Bh}xEWLSvO#0bDImAY#|pgcw*#n2-@4#jaqBR~~h zA+%ELVXTo8gyG3>POQ3w%4-lm*T^8kLxlvW6rto)eB*N6GiU<#hKZv6lyGe_{2lse zkOAx}VFx5gou0b4Wj0pzeDb7Yd{#UA`s-ot4VZDFML2RBv=vWxh~d{p@IH8`6bu^) z89UpqDO6?IhGm+Ni=}syj4$}i)nnK^S%8(eL8O9jvlrzrw!B-U3vS(WignGq0FRBr zKDt-@J&>gS-Y@p$HEzc~6_5DktnFnk9Q6_}k(F?h3ZNzm9F8O`fRP(>N5G~P;aF&z zq7y1-q88^(Jcpj=KHvl0ehZBs(`^RuF2HV!HX(7bx)V9LQa*>w1kek}hIa=wnA}=r zppV^0H969m5FuxTBAz4PmssYC=mOFRcLfFzM?{3o(PY9fsS~tLYMx)a&Pmxq;Ej@a z^r|qoz(fmbFcLBh7au8+Oa!p&ga1p)`7!vvdqMpsrmAj0a_ zxs=)(N=$Jj5x^HDCO051GvaCrIA#OkqgDv@Vl6k^8Ws8%d}J5TiW(_>z7>WlGU^0Fm7kih zcpvFkvjhz@!LQpWxvbR$I1kq=LP9QwxO-%&9e-8PnPEwAA^=xH;)pad40y58o)lr2 zWO>O*Nm*c1gR$eSF^z&ife=ce8j6MMxf%Pm3wra6QR@ae`_AV4UW75v*9`0nI(pc2NRLHLdhNn z9s16ZtWr*??=eMbitCgDt$I_%g2Ogwt%il1c&pW&++vAg8iZG^y!K;$95;101NH}vLn8>7LN;W)2$i5OsX)ps6EsGq0PVif2xSaX<04?L ziDaCN5($bDJ)p;sGcY+`BnDm5QV1G35mMz`J5plo-47*F5tm)B*j|^1vIqbmbkFsS z{OHcSX5`Lx@0StdV-B$)xGv70%HX$4Rs=<^PKqm|E60<3WiDkwETNbDCi9c~%-hr> z=`&IwV2BF;gA#702sZ^XMK^^uh2Y3h69jCDflg*O*P;m8y z>!*|wgC%<_^)40?9Ka^z%J8fj3q1NAKH zNNOA;SxHIuchJsJcF!0*r)ogwtes~K?;WSG(T7^F+j++vTKe`S1ct1n<|S6qY%ju0 zKLhPuL&d1OhJ8~Bq}SDJl=PC#BQUEgx_vw#Relc^Uogd@7%?%7=`e7eIV7h86?$Kh zOd^H!2bC>r<1l~Z6cP*vBA+{3c{F(h{zBLUS_N*-r@qv$_mT0*45LL zha=cUOsp)G8Dbb39Bv2-34~XH8llwcB4tt8?IE8<+%ho_ zY>T$GsU%YxO;zhvd!7Q*hx@I~9au-UJE7DDDTis#SMPLQcQkjpj`IOH6t9Khd|@xp zN5N>Z#lv2O0)7e5YDZcdTpb=CV4wka|3lDUyics&s)a*9J~cNlHshO|}Os?L#2&0ITn~2n+u#AXq}Lz;Z_JJ%_tn?--9Y#;XtP)MP(g1 z)~3)`znYa~f}yLiyTQxRMPt66Lo-u3`+KMA*(#@ zcbslH4O{L9!0L5YJD_!vy8^wf>-d?Y|GOJxq>k|orYXfT*nyEQbBE5yhw3I<>v@j2 z-&4lZ^nrVZpj-^xGQZskPQie{aWgM}LW>ASEKc8y7>?WQr&Y<$YrSd=eLx(3aNT!H zTx|DeYnuX@EdnN)Zz6rKJh8g^i&}@FsUgv2<+Lt4YOm_K7V#FoxyvG|nZM(1;9HFivOm z=%%JdX9uU-n>#2-XsGCmwD?x3|2emwSSWJS@-VCe9&xE*R=w0c{e$#F_9Z^?3~mJ2 z{|7ghLDCIr;(rXRo?}&TC<+)GhKooEvv^8tdzcviHUm?ON5T#PGsnv^T36+5u^Nl| zhQo>eIU3)#l#SKU@Sm?3#fu&PgZ3W-CiaTd4ERAjt>O!b6(jxg+!(L`6>~FHRYGHP zg*o?!d|La{-C4D}%wD}%lld5Y!Fn;_0+oNC`mnmWe^F9|ex0Bd`xaR9)}v@^XN`B_ z$P2n>6YL<~L6RdWt%xeRUD%>^S*cYB#vnNFLg{pSaU7jt>7#>!ng#Mevz*l*v$Q34 zcJN(C^XwkR{ls4fNWsjBlJ*c(PqkVhj1W602R zeRp?%4+Sxa^@sR-hg=E6)W^ia2=fwcjm-sajt);wN+Lp`aybo4 zKrF|IF0DHMOdua(lw)DsFQC%0JEouMKT$FxiyaR@G$I%R9ttC(oLv=Z8hL_Q`W1Y14?D z$SVjygTn(s0kTQJw&_7EZ$#zBb-2BOf|Tr&FC%U*Fhzwxbo%!O{o7;95GNY^XDUgW zF~R~D_vZyq$Fs_Qh7~&&eB9B#CowN0YkTZ#+aO}rL`n;WE9-Z;w%T+>G^6?+y!GiT zgz2Sr(Td`^*M7%k1Fy%jTw7#A`~R<*a|<&R;t_1@+1k9Ja9E zE}h7B#cER5<4XONo}Qt24fA`97z9;VRCs&<6zCZmh)0`e4U#AXaR}uWz644T5mazE z!RZIwKN_U}GF@WS*$B`7^`&PkHoWJL(Gz;Qx~3{&(KFfvw4QQt-2=zx1FP9 z3`ure`gjJ!C{m?NokA7s7Ovjm)4q>=oXf>8F-P8g-ZanhK=z>bUsLK<+(~{rBE%3v zNGhx@urfdmk64d5j206ONX26^8LXz8F&jb`?b1y+-WRR$5g8ATKT2vJ{$49_m{wn- zyD+O4)XY^ue+6srwcn>2-W2^G9sXM$G`L1$YWY>CFmOwupK8i`LdQ%U_zOGhzxXgW z`YFTy8`&nV4gQ3lH1OCs{A;~3?LFsC1}aXeii&QrjQnb zf$s>3KNV)xYh%*zGkQvTQ(>Xw#WxvtUU_YEFAfO6^&m(xVgKSLBoX%4eE}heZv_t{ z@LjXAH={3q;1VifXO*?K{rVf;ZB=b& z-);csktde^-h*#X9IaP>hS;Zq=1W5{9z1V=`xK z8aFTM9x2xAQ?cNy%Dj@iv^F3Sd;E(Hhpv{m?iLjm7nm3U1K>mrw~5BtS7O%xJ-gUC znfyFcYpjJ*P0R8vM!ai&BHymdgau5 zxcwA0lW_H6Vpd^Gt1i&Si3MfFUxf;&8H_r!Qp8DG8A!16d%P|KDbq&^fch$tKZ(Xg z>X%HU+NBP$#8~?JrL8`DH<}gi?D8C;L1a0HNB7nfnlh`=Enh&>`q|j@JmPS|tD^s& z?L+k9=b^?ffPC>F+H0CE@$5ZIta(0Za9ky%X;e9(JZf%M21T^2Ww zaPD9%*ib4JJ1o*8u#sf)MKoihh+m$na~skIB^7^^YvOZkO>3D#pv)4sQy?D zt|=UMO4senI*i(^OhMPSY(02hy9y%j4nO(z2^=jlv&;cGI3pUC$ovtNz;yk0b*zZ2 zN<~LPBAoE(%r)dcg>5e>126);JL!csQy^5rLR26ZZh@X}@KMg7~z)1eO)vBwGIVuLjZvPzD0$-Xo{zWrgE+Kf(d& z*Zbz0_9sX6L0=#I{{2<@GF>>|s|^7F%|KYcjN=FFr#*>ARntB87j*NvjbQjW>^O>F zKBdm& z>o!JbU3(wxEw_FZ%XY+BF(0nBMUD**P)t#jm`G9}lMqQK*9DJ~vC(XDJm{dt5R(#< z3$~Bp@d7s!BS&}Rv%}XD6pc!CsAATN)iQLgt6a0IaU9Dok;JG2-`TRyxA#59L9F;- zz$Y~2KlB&i0rlzyFy24}Sg|EU19Dml3dDqTEzvLk#xNVSyO9q6T)5^_Ize~Mlj3)#K^^h z@U47-6UXzZR3rWfR>G>tSfzzvoM0re41r)hpvOX`TG-=BCL}BhZIEd2KW__Zp{}wC z#KQZb^Pa7uFm)y`k7MZkd93Hr<%7Ypc7@FJ6zf*675iuS8eb_RHbhupPp66X;Puw}pr)8}(<_7$$W_Gnh5=hGA^;@Es~<$vg+A zk3(ay-k(yBrgCGg`L5Fw#F_3$266_t-bN8;S5a9a|9H@JLC^BeS>Rbz1&JK5!lE;# zD!2%C+@m1Msly@`(e8xQaAK4ke)N4qFCyik=!>$>h9l!@q7!S~zcRLf|ot`E6M5?L_u6HdsgJJP-7Kzd2?B zAjAk5wU~sfsPf30EVnd;dE5BH6@X4vYs@&oTJUJO^-}0L6Y+E=tnwSf%%w35vH=cG zC5I0!s$_yq)8n>%RAV31wN)N@CZrf*@8pnU<(59aL&SzYz_l3fR@lEU+6c$$dC;@W zhk!TB{WeL7bo1>h7I+8+t!_KPPems|4%3I}_eR#xO0!M7FHyaP?|=Dc%X>#U3%30} zXb8$moU4h*U?HAtg}~z~oe=0?m8M&BnaU;TNJ#@iYYxm&p*wAEW~o@-+_vwj3I}V4 z(i`HZ<=sxu^1bcr0kpQ)d-9FkIltap??>VSw=cNHJ_DiT&9xV)DXY^%eQ183=kwDZ z4@*-($^06N`C3pYLcl#06exIbrh{d{N`%~_CCI!qI@YTzvhytW>LcgAg*oC0HjW>K zYcWcXO(~_Vq150sJJBF=(ih=fr*(l3p7S-J=@5Djj>FBp^ow>WwpW3FE#livw&`_h zVi~yQkR+JP$;TI@Ua8Gt@t@@z&AiG|df6bLI0r|}We)1&N`ekJX1}TRP_tDD?QsNz zY@F^~*~Jcmt!`CC!p&5{@%auu5+0T;VwaplyCMIqoV(tP$F41m&IP!`s!4KKQ)=(T(l2Q+rLMrn)WOEpBGvZvd|jDxO8&om84aFgDT*KwM@ zIiyv6-sA>?g!@5C)o>7WjdqsikzHITRkFN9q?i}Kax&PV>xGAeid;Q5I8>s2ZT}&9 zLLdsfPQB8JAh}zCziV_Srv9!k5Xa<3Q#yc= z#Xtc8Tw#*y>diRi{SUw8SENR7&%pt!S!Gl$=)>p zeZw=4H+ksfX>dQk@tOK5xbL@wOv})RM{|SnmQp6|ntIiC3UrT+rt6;#4D3gMM1(_dXk}BK2*{|7!duPL*`I}-hzAPUa zoM>J#nwTC61?FIgk%7!64_ac0S>X+|?mJOgoKYgN^}3taWJYZ8s636WB@gr`jM0X^ zxjg-_Tt)8p5dIdAUrVf|5*I6h@mbOR%wm*FnDQf$dr)|D8$*yFO2A%9FUv2p_0r-gqK0zRC& zMM5NGMg$LC6#|ziPdA796U3)_^qMg<#CDzc1h1`R-9+rEt7voYs)zniks4||y4KD^ z@#ikD4vmIstxee$Nv@(IFPL+ec?CV|>`8*QtnL0#LBX&UnjCD%Sfp&5oQ>GhAeI$l zoMUrQ`@oL2;??!#Y<$Nz z_Sap{8y&bNbV)y^kxaK)fwHZ{Lr9OE+nOnwsuGr7y^WcvEK4W(TcPQLD7%TSL{}FxNiWy>CefKjL1pf$0-fUUPPWvu$aiwkDAe zv+atWZKv)MfK2qQ+cio-zEXUR{gfv)RLm)5AClVKCC|mjWhHo1(eoMUNsOnKbs@UP z1@uyi;b@09#-^-GS+?;fWA4r-Gg$2Ds{JPL+fB?oWigJ7Krv9?)m1dW@W2Mu8ZFbJ zeWrO)V1(K^8jb^Ev4S&6VWT3i4=#tKs=!7(nD7~jg`8^X-07b0qT=ybDb5SDAW*Op zU!B41I)6o|CC3uVw;meNmMjTMSnV*!CxeI=BfObyuvo&IKUlo>Ex{bvzTdAI3fQ4R zMAx(#7~awyRJAG*!c(H|3zQDLO)SJe*%x_qwg>?w$Dbc_Jhe*D=2?|X{(Rbm@!o5< zfgwlhjQU~aT)e!VfrNZ!BiOBo`MRCGC;DZ!g*w=Vn1HvSYJo5$6cBDwj~P?j26DpJ z+|(vkx1>Iu+FEA65X}B3gB@hyhj#PVY2^1cGmRNd#BE!X9BssL8v&L6z zos5nnmV;{igYJ>bfWTT4)|O41u(mXw>Y|WZH#SZaV~y<9jjl0^)G($yjlNf+V4KvXMOyX>%W9P^ zLIiKQm+4J53DCy+)w6Zh*6Xx1vrJs=H3SRYLY*9}M4=^P2^6(dx_txFXm{Aff_mDO z67nW;B(gx`xn{r_J>(8 zrA0DD6@oD;cq)R6>jGC#7 zAuFrYGD!lf^jpE$_!`?tCfYMUcvwR=n%GOJT-4yo?E~yeLGIk8t5b&FJX+RO*6^wF zMQp%`qi5`Ex*W2le8;dC&$VsTbfrfO6hqdvj*p%pTIP_S__GpZbWB+#sD(4s)FUTp z9=&S1kU_eA?HhiQJ>GcORbnKgg^f_FCaP#uNoH}3-~tC49y#Up*q+%{MtAdyjm7x6u-OQsWVT>#ykF&M{ETAxtfP{JV8;jQ@9=wx>G1L z-kO{&DpQw-=Eyd)pMLYPgnif@E|Sibm7l|RD*a0 z>97kl$oRo4m4xF)b9?vxMh9h)W|gX3)nScYcHO5G;Go8llT3o=JQ{*DwSJe-Zy}j> zgtJbC+V9t$ldzR_b{~H&EF&8hY7AJrEPYrHG@dbT>uWZ3c=p@sdRp{8-5eZDJ()t< zh(W4^j~>G>Eaaz#a$}d+|D;QSh5tFN7kJ|NLBVH~{b?NUovGW-iqncRQq>-LfaF`T z!7W1?3)-r7y_i}JadP_57dU-Pu&(AL^J9aYo?+`Fi==5HU7e1_P*|x}vUEAK)TtS5 zn0ECsGLI5xdw;SZa9%1dGuQaY$yw$I7yg)SYvizruD;vUjGMe!qjcGoP?DX(sm??g129e15@Q*zlOx!E;r)xb(fAHWn z`$D}~?c`Hfu%0m~vQ^ejP3yH#(0w7eY_rwZE`oke!DjogLH&}R2;A1(xa#{LWefkY_&4hc4sbnzcjySy<Y zJoT_|(nGdFffWpgNCl+|rRb<=QEEeguf0TG8!B788uj^IOjcIIetA=RL+oG!nS;?i zQi7mfvD{7uhQg-5;?Zw8Uj#i@wv`2g1rF@kurl&bHqlIE8g=T%DCSTj(LEaV>I1ZE z?wi*4J-xf8OPD>P&3QsFV~sj`Wtiq3@|t*VSKi@~w5aV-p34Ec*eRMh0sQ@?=649-!z?zMKpTc z`@mU)Fu^eU&WG8fxcL)$Q_k2>vRiPe)y}=7iGP!AmC{xhTB}uFC__lK+@LJ$<-b#n zp>FYn$0#wXlbCHIFD?zcsno|>pdbZe3XI1FQ@vd-#}SH_WtA(ay%O>$SGc#Y47Gg7 zbmQGpEI_M>(JaCB@H-d-Zi%s&QX!cZWy(T8Nr(DpMARvTu-fBs<|=rp+0Cg{78*wv zF+2HE+C-tc#E&bpQ}?y)a$Y$$cD_c7l#!GeUW0*L06ypH}LTbeH6p zARg7|-evu><}K+`rABo;H#GNT)I=FU&owScY9Npr)lyI}N~VJuWZd#4O1~WK5NCYmV}4wj zj~7=jzfp-XNCBe$Y5s>Mp2f&;xd9s|_;-S<3VnRKY|?n73$!TNuHD}uk}`cnF2 zn`r*HkN+Y1b@en$F4z`4J=><`G#Un6(_C4vW~+!16#|f(5Jfgj z)N#$nRlM4MuCe^}^GP2>6yC0Fb_xya9%}?n)L`+USC7SmqVO{F5! zqW)NsqYjeinnl+B-0Hfm=e@^cQv5c_kJTB(qGEHZ;xj`SM%lWwtb#IjILYD?|Fpi( z{$ox~JllIv7Qt;M%DQ}TkZel=o4gAw0ukbG zufea`=)~Lz*k5IXZNPUwT?Zy9e;QoTclpthWnz3^ z8w$YTnC8<_wIx5THjPq>o!n$+qnJ{tPlV(JTG( zzK{2ZWGe}Lk)=e!bIs@cn^QK8$T(hs1m&*9>O-Y*&W>SO%_LJ!zr_)H4E-VWhadPW zZY$yA=9A{s$V`;p=p+YN<=2 zzo)3ETm`}lrj?3Dtz5XOdL``G8NjL}>sM!N`;whJH37_ZCtT>6Q6^=D$~xDmQfrk2 zwJr4FyM)-U^rN!LKU6;|uT<2@vl0W%f)Kjxs=Px}lLP{5MGp|ZBU0%PiilE8CWAY| zNfiVC@aj0r#f6T~Gi7h+~zdb?>$;3FqvO@|ue(k0RiWzE&V#qT+mQ*XP( zt>|)$jWl(Yb#)mAdZ*SraepiB6$<{KdHNrBU>}Rf4e9S0ztnWxA1j z`{$X{`y}+AfL$)LW^;PYv;}oLCeG9sbPjqn;R~+v z8xoe&tIAypuNItOhpbe`J_1Xj{3(7uxseavkCxWR6elk&#rJ&fw!)s!r972l)KB<& zd;Z3enE#~Z{fs31!NyOs;imVTk?Rf3$ujHr%eXt8-NX~|7bjxDD2cjmBpBcA)gA#v z+&c2h0>^Yd*BRb<=AjPv*qgowT*htTu0sMaK{gVnQRQ=CJR{qU;w#OK;|3b161*ot z+BrEj$d2&p?|5RU!1!D!Tt||d!nNP#as{L}i7-1brh@Pv+ILX9_Qh%C3_{E-^XFfiS`=b@4ke9=exoTRevH%GxH4P>fBL zpL>SQ$+6B2&Vh-o10LDA3+=5+R%JD=>^prn(+<-o?iK#ku}86PFOUR(lzqbH`EwWo zMEmQ91TTZ~FJBi@wGjfmK%oLoK+AwVzaAb_yUN5%LKy?J$p7XVuiYRKdi19QiM6E6 zf%6u<>f1%bKM8j0<#qwjokqp=2idw~h4m%5Q{-p`?gAn(+Q0{L88P?gJ3IkWj}H0{ zqIoW>?vqKb&+d#_?FPSRJPwJ3jyU9zST>!{OK>NA#Cq|CUsb}R{7VBdd zIr=*n0g=nb(7kW;fy*TlAkL1!OzH(>XV=)>qKR#!ZGM@JB<$v=VcyV{#mxSwFLVqq znkx)jm=K>EjJcVGGrrq6Wc2n(7fyUkMwjM9uX#5xWhL?&N~3bD#@wN?0#i0L zYo*_JyMNG5y?~H7yety(b|lRK&Et3Lh}s&2GtMY8FK&(#?D;MP6$LUIKjiyj>8t@z zdaBUtA10B`n;yWuqzW!+^0F*rE|hfFIx{ma0Emo$01-8=bU)#JTdnxqnyAuA}Ha0v!Qq0OG2*w|O&phc4hyp9*T|s?rq}PEUQC zj`hh@ZAus0d*OAcJg%9|$#HW{B1dS>LP`Ddl$t?ZjF}1M3t(#uAfPz6(U(F?ypjV> ze~y57h-T!HLO8bG-ZBr^&)|^!EeU@d4ct_=0qG2dFrD}cF6{4MzwM1ZJT;G#HLijJ z>01Jpw&u-R&D6N!C?($)`q|HWkP=4ku4)5cHyoTR37F@qU3k%dw*y+R%L1eg6HMsQIOz` ziDJ2OUS4LzBqL*_kFL08vs|#}x3YSgWTGq{hM1{WYP8EG!xytofd!H5?e5xk#au)* zI8C%;*X*XeWpQxGNSKtTGOCfz0wIDXZ^u+bUxFDKA|mj8_A8mi1s5+yNRYboBs@0E zX&c3>qK9XYoh(YN_=ZB4`WEhp?l-J~#yGJ!9dvpbLM|JW;M>4E@&8!33{jOk{w;@r z<^EIS++DuoT1n1)th;a_UVXtTaP`AR|B?GC`ES;EapC8p_te1C7u-0ed5!EvP;+jc zgXP*#PJ{L9mk<5% z)uI#~9N$l}h;V}!*g-W~ZQM469E-?11z$^yXbls#Gt5lfjo!T8@wK*%zOA=&PN^7L z(&z_`qBW)aWiOMy>zF857#~EuQR#YEK~p2IHH*)g!HB?-2rMnLnx-jw3b)R*X04;B z?7FTaHHSR=Ia)Of^o&^Ss)R|^m(Jy!!;}KAszhQXjIcbZaPdP{ccRq%QATR;`?VMS zdgnOBdNjRBk!tz?g4l9e@Oz3QMX7?>((zr3>@O36)RXvE`^910AY`0F6)Qz%kyU$TF8RgO)PxM)eeoA9d-LOcrw+ zL0!RBWbysId@zioQeg9l%;L^P>S>WYlQ1rJIj@f$6HgXAuODFt0cL!@x&V${TVA|2 znInV8n0kaiZOucmI-H?asHtY6JndUFeP~*yxi}lI=#l!`bf`g25sd0yna1rsjmteP zIYm*nRMr5rI0Z=uBm~`9!V*lNLrIahIe%=A+^=^%7nDRxe3+n`18_n>sWs{%GU$u6 zT+z>qOIM=S-P3f;vtw=xcw@}tqet-VzHUA?fWxrpwsp$n!$#k=zSm4zYM_BdCc#p= zpc;n zMK^U87O8(orRLR)gp;%vHYYP&rfTeH7TE&hSs@yP` zn}z|SAirVS8Rpx|joqWeu^uDrCqu4EJtpr+juACU4$F<2SI*RyY{y$;Qw4Jed%J>& zjBf0b0`&=zFPA5ZYW zhPsb{G;JZP=Fs0#RBT(DLy9dHH*7ElF`R%5?}RmShA(CL8R97s8L`kxNt9W{<7CG8 z;-^+S8&>P5GkxN_9ZJSH37IM^XL#_2Y2LQnnv9BY*SlQqX?vd$AKdvg6SafM-CxK_ zwtVOr7!s0vJP{LP^ZQ|4#kH^`y}DkfwphL98t!_hGnC{2^iB%0BIZy)b&>W9!H)Vk9%0ryb%sKIpICOlugRXWOvR-L0%SaFkt51#@kA>|ajHl$e@9Til(6W0b#do1YN|tX-Dz@IkTc z4}?Pj!Tk5r=lWS;BFNCD?iJb{ypfQ6;lS3XX#;=|Zh% zhZFm72BR%KaO&sfah5SJ>I#I1P^mUR6)FBiJ(Uxqw@R74MQ<{ds z(G-7jr6OgmUnm_bAqVy`aZ-u`RgtAj<8X!0>wKY=(#zNQ`pSl=@11p1;C9~6vtC28A+botW!54!DT4enehfbVM22a`|c;GM^5ejG*m^M!2v`fD@!edVTiDjwX-<~Lu?W@pwpKa z9~@Ri6C9FBRT{^ZAY(T0rNLsUmGw(QbAvkhU(QVBG-z??4z|W2LgI$^-9DG5yDQ!X z?DZ@R@M$09xOOq~I0fFTe5H13-v#-5!QQpCdo|=48=5?GWVba`eY5>w^s>{AlWw>$ zaAoQ|-r|c<%NW~?>XdYMzpB|3Tv-Aax2T!BEXfk!I{p>AVb{?EWay0S(erb^bX<(n zyXxF&c2M@D^%=$T`!}ErH5@A|-K9FM@Ptx5B4;>1LFfL`J4X)gVOCR`biCnL z`z~c!9fYA~vT`@aj1{5$B>TEZ6k*evc$Pp<_tKZwNt;`y^$_93d1lsIik2b(ZPJSo!j4_{Sla%}hEl zFt*R8r)y!;Mw2X*7FZgbZb%9>Zau_c%a(M6u8MvW)wtL!cavRygHwe-yRb(G|!xcLL5 z$fCj{rKMz~Cz|M!i}X3K;A%7sgt^xoLs2{n8njMO_w%8IQWroJx3KGAw~XYrP1d5 zm=rF^p=2cuW%VMQYGX=Jt^?e|{kztC{m3nkUP4zv*|j%;NgsQDm0LjE{lbsGL*6V_ z#LOVD2m$>&Fn|{MIq#dl*3VPGzFT5eBGlacTv|^F&(luLqEIY5XnPf2)EEi=WyZR# z-1TdsJm}F%D??l0^r3xi4XNGAY)hPP5cBix$v`bqHC-V$6}!idrVW)=tx}HV9np;R zFQR+8OCDy6$==gEUOKST3|`S@4r04M{B<+qOu#U7h3oaBK;Hj7QWHJ7(1DktzF@F+)RmEOGu93zFk-`G@e~IvV^ih0HCDUTt~w&Hv3%QX>*)_9-A%AVHH!8 zuC^e*thlPMLSq?cxoBrtB?RlCdT0em+5IWBQrS#>NlUoASeXXZU9k*ipBfs8So5Q^ z_p!AmA+$blO=RZ=f-HibjFys=hJvBdmN@7D^Z%sJrPdKrH8lg_qI#AQYTJW)H9i*# zY-#44JEDgPf%+fKIbHJkyh?$JQiqg!$|)4sc^0`= ztUo^$AKF`oE-=cu8RPk<2ZT_$+g=jB@L#92GNVL@p(e#AC#J4qn#{N`j{J1ls)}Ol z{<9{kj3KW45b(ebiEqpz`)f6F5&rU6xAepe9ynlvB(&ny{V-8k1db)ze-v9|$s=;9 z^yC!C*TTtet!wIIBJe*lYN98@=F@g_nqiMI#tAjXk(ghx{*;0VD;nR;c0+;iq!vkg z68?+}i)PNhhYeu=?6f>8EY}6uU~m3<3%l?+bpY=}X-=s9asS}nL(=hmehnL3<0IaC z6$O>2hf|Hnm<1^zxmHtD`FvZ1SUXFD5X+Hj7MX5rY;JnIb5J3j_>PM_u%29=TZ;jL zdFxiW3-Hvf6o4}&t*s8QQQVxnLAJ%J^no!MY?Jw(Owd}Fd-)l;JM7ukHSWCxmVB+_ z_v|TNk;5K$8f)uWhU`s(h``#_Ffa!n?GGZF&&&bgAZ=%9LSMeLa znXKi4JG-W1T`wUcBqb&%h|O{g$1&lSxjs9Y6H1zplKFx#BhL7dbuDX1Z^{Maj}QNc&&rWeUk}Ie;sJJ~y4)BL9zw7$#C0-LywB z_2hFgl+;xIiSbHXks3)-E))I7d9dX|W!VP1p))7>U`kmkS9bPJ2H2l9u{8#p>^7U# zK$G1iWsg~a$*vl_Iinj(D$E@a-x}2;VczLI!25z{}LJ-59E3l7`NaBNM8Oo z5xnAYUzSVHu*=U!mbTa3j1<0Cw{|Y`(rhmo(86H@ITHUK-@oGVdmcRXS0-9Qztz&Xp4-jmW&%1?6nzlc7o<$(+2{4(8Jg#GbT6Bhg(bTmmYyZP-|b3w zM?NJ7l_qK$yf>qNa-{~P@$#=x>{w1VEBV4efsvuH!qMu?-V>*5t#A|YI3D%K@FC}R zd2n4_?u&Zdgxr&pQFc2(IDfl(?1=ZQ`UCCrvbQvli9;;aM0%H>YPN83GDd#7H8HSO ztk>jre^^6JunIfUN%>S$J6tsJWNZ;%)r%)14sZ8-`WO+x{MX9|B_m``(Y3=WaioJo z9vD5@F54K^cx)D>?N_VIuf&3_FXbdC{r^yN4scEW-wzSFiy(fu$bZuz{e#=cUgyB> zb7j$OQ|Ujby?uKV%IN>E6xt;Gtl|5w3uv{arU7|Q?AZV|n@D|{i=RH8YZwzIx5cI}p{B%$X*i+zJ-=f41#(_y7GPEs$A4-vHedMT9c;~l=IA6D#RdYBzxfX{NTy(V$9X=`~DuOR)r3#T&}ervkQy+*tuum zWMmBUB$-{WwwB1F%nbYAc56}Kv)h}gyeMy-jlJknUkVe5U|=*6>0(e|?FUpiZPYSi zRFN>2b}ZPX@M>UHT;y{o3bw}9Y{pC<(wi%#=pU)yevs-YyX9$Q;4A)*9WQ<${ zF5pHok3lqZ#1gek(MTfsrZWfu7&z^f#xtfL)qN=`_A8W`DH^O}3mY@&J;k0dlM(}U z@l*9O5}8p5)hy)Efgzy!_d5@<&x%U(G#m_%$^wx8DSee?u_9{)5C^epx$7J*G6tlj znliTRq!RqajDU?n|_r%ma;t$6W z*o_9~{;5bx95aItTTpI0mbTjj5G1HSA+t$apx_d-gnWH2vCue^rHW8z8Q*; z9{vsR{B<=IBo09q5ZUW+-!864guR#QJmvf&yR$P`v!VBZgehsH#}nOk7sG_X97%qn z5wrm3VRGsat198H<{gqAEPg`o=6fX4jKZG6{k8J&dcyvNrLU9idg=XH9{t{?peh~soq&Ynx>hy7F6qQc5S=CJ~wbyyB($Io_#R2E(1lCUc; zqiR(YUT8TxM!j~&k;9-7>{vxH5g7>uQjucnS(D59RRhJJ&jBitYBsno4Tm#yDurqp zPEgHf999ce;-!q6a&Ie#iJL^aHZgR++RlDYOarg83t~O?x@sALW&t6Bz@zBLo(%i+ zqN7aHT-Q-%F*N`NJHqro5V}43lZ1`+L-+#{1;$0Q&Vf`UB!YAa5FnEcxJ9FoElQz@ zk|^MRg)6Q!S`bxSq}^045v}CB1eVWdDaD8)tsnabJ&7vyoD%I|llc0#!Q%O#HGPm# zTllks<_905j|J0qM061R31MW+TB6iOQy~zB!-e8La?4S@ty2 z;&5pI*Ia*8u4+7+C^Bfkff*=Zvnhot%l8L8tEtEezB^bcb zfC6oV-=!*07-B_K5C$2yBtNEMV?LWbfI34)ST-MgEjgGRQ1xhlhw^c2eiC$S$6#vl zkp&u=gL9m|67Irnv^`wMkSMbJVp>($0xJ}&-#dfJ?UJ`}ga*VnyRU3=E#&Otwg_~> z;0(A!;k!wh4FV+>^wapifi0ECm2}c)oO_)R+(^0JiLcD?i(26xMrI+LIYU;qLMuHC zm*H4%Www`km5fLw(W@`je2c#A>QSY~PS{E%cpH~}S4fh=#=j4p!~G=N(OD0jy~w0L z%1d-fi` z^GGO<G0@01`^&56y8=1}` zLj{{nFu;T?&sFnyh+b%|7g3trC7MfSAe4_YJBHP`yM90!6V*dLV6`yeCUfa;ANHfc zs3E^YD%=K*2iHuqsvI5E^i(MqlYwsVXJu663Rmt%n-CEafsu!xi_c{Nszm65NYa4% zqCvXjq2=i3$h`5#OCTQ_wTSUb+W;{hxo1HEYZ9V|ilA|tZD+p@EYvooes!yaRS#K< z0*iSQEQ0J+T*3LJd1C(;&bIJ;GG~-ev3UtN2g20AFRK;*sf~6majH7XCeL%^BV5=M z1-bl!*ieL+_fG^GDf}4e$gats)q4)vD(3e(bOzYQ77(|uNlVkI>*^{^wnzgO zkL%lAJkom6x}rY{1oK`+8yL&SURq2!BUZvix)zjGD3x_~#VJ&W)x_*cl1NVmy)u>- zwyG*Drw1wIXFL%88HF=2zs#Eidf%_C9-Sh@NAn$RZ;xO{en0kFo{b0y>3K>QvG{rC z>4=m@`yH)Vg7=dYKia$K+hF|wC5k{5H=r#t;BP3z{_>cM%zQTb#YS(r?s#NB@{&_a zGPa~H%+`}?TMcTvI(KAd=@#meJ$a z;Nw>Hp&&EGUK+M1r^=yq@_0D1oU&Pe=E$xii%H=TLdqn$$M%BfEYW(#?*nA~wHGjU z8cz6n0Cr0hR{A4ffE)w)8N239*jD^ zKzi37@x?MnnM!b&=PT|>OwYi7syH_%r;R3kP0C#r9?PY`e1Nc$TH=(ReVG8I$ zgSM?_%Et8VhMCKnn7K}{wW*XYdBQ=wHodkjB3lqosT9ou8tFirhVazVSW zF7YR*{;#i6{>gbq1*sqRs>Q2e0<1tKZpRPX3 zn7ANqIq{rO!DRF9rEVeDpuLG!q1v5y^ik6-+%5i(tHFqs8k0=h#}t~pQO-!u)G-X7 zen2BMBjMD=)wl~ajL~5+lV%Cx$CP!V75>ik4qm*(9$GZS?hD8z8TolP){`XtdXwwH zWny7qF?&Xc;=Zbe3u4C_Y{b%m@wI6SYXR|+4r3<+OK$T zk4?%AiBa0Bltpd=ER98sl4)xsf+!YK%p#f1uST6Bp)IFZJ>Kf&Ltl7VTw5hF>NNB} zc!MvEWYSccr5OS|!toLtGMz6%y7 zS4*IWg}8^;-K$(cOj!$|w-nsfq)TnZrl>qSOMykkPF8a7!kAYNe5G$QOZtjMA5j+8 z_s@yU)J^8U&mVWqhKS?vX_pJW=+m!^Rnr^VIw$#rJ87pDmoCnc&nNmXNdqrY6tw|* zq2>Ce(pr<5)12MPSXiS3-RN0n)A>8--;q!0G8m7$P5g2@EFoxd;^9m$w%9d#D~*XV zptz!Vn6x?gRGcY%Ma<@Qv*o-DSn7r1Va!BD8fFh>ReD~zOvtEOa^-_2!r7^>jsT6C zWU)^OYO{27pnlqFl`O!;q9XB|&UsA-kQgFOR;Ywh&rE^78WqcYtRYMiC5(esc7KFd zPF>~nq+qAUThxEw6c;a+awxT+IC?@7Ainxh5*p4g*vx5aF7X!*&H?95Bc?{aRFjLd zf+PDn^UKm;Y<`+d#$Bt{+FJcwc`nYBR3;Mg6Gs}tfnO}qV@A=fn}_Zy6H+g9=cHOzs%P;DQRMK7eS{XJE`7Be771ffO8xXERP z*HS?dsXa9`aRikZ46DcD3XrzN->y?wZWjyvmR1OVT}s4NiO-9c>aUB}ixuzZPB+f*Atg5nB|&$JrVK=tV?^GQ zl1u2lW;tWoQAjA)<7iA7vum;1slfrONoI$fGo;H3XULjQ0xx&q91`L4%lv*Ivw%#( zHMiijscmksWoCUI`4&vV`cD7zRU1d|?z5GOkupv@%cFmI!<5rMz`AgZom4Ct{bJVN zApJ!)k!lnwY}UxBL>tW8szC#f0M_f=zPaDu+BW zCt0*M{k$)caNiLp!Yh4iiN5-1jTs@R%cy7!fyF3_iTA7XL~vejJI6=s+R`L=1T!XO z?On9?IcS?Qv{*GwNqI!t(&uX!XT+lU`RfJ=oV6kIV$v&{U+j%!FiOyN639ccH!>-n z&aTyA9XqZDAWNYbDkzP~s0~GNorFt9NC-;$&<9pPaKUh+}jN#f>-e&C}(=XC7|zvaLWQ2cwqiZ7K*|pUz>E8Cm5?neoa7}Sccx(4M*M2 zl|?Eo-3aL~!ugwQXoTomNaHb8ex)xvSI_smwx&J9mn-t*#fo4$!a26IOpT~9gD1G( ztrJC;KIOc`oIzn-Rch%Ldknkt)q_+HwFGAW45(H7%nk3^NT&8z`@mPsc_hN|^aYw4 zEJHp%c-c-HN~4Z~?VW@|{_vQ|R(seEiPu?s;`lYjSNY?3ZeZtwGZ9;nWRY8l5wWWg z*}*>v!SZt01_!6G9bkqqfR@bwJ0D0pJ9F#RTO2va2RPBj@N#jl zr<=;QXn?uzJG~S^pX7oQkKclU4S^E0LxD9;0$mHu9*CC&jFSIk!r;cOSyXk8Q7@DcHg2yON>m!V zR(9Oe)mbtzS5^z^t!b6W)EGxOX|q!mEvwDD^!IUIl8miN9qz7V#26pp01APL+&*Bq z&Ia1UDUo{WF=`q`ODQ8+r-YRxQ!}f7aqjzft zue=N0P}Izh)!+1wJfcPbE^0uR5?CLCm*E1iiQG8jDr&{r9Cac=EbQ>40-jWDQ3J?M zRNAVsu10G_K03grV+yI1C^Jp?$9KdR|If4$3CA~Uy=a{9@6&mxG0$UKT6`F&jr-Xs3(8VXmrI|@`9ijtIKn98&W-Sm$VGrlVZhDLT=)}}6 zagPFIkeO5U&`k4)bC#(GX$VrO@MOQ?#5Pxq!Zc27;eE^pg&HdPFErOqe}V>4nuVIo&qAjlH!KAU?2&})k@nT6Pb;l*ga4Fq*)ESZ1*%M+QkUb(aXby$_I`*P9>-*cb2PQVe8W#;_*ZB3r_%^%SGfj_?P>r2V zrK8N^fi@`S6UOJ!c~^?_;6$Wo25(M6am|nF%rr4URbpyYhq>c{7b`LVS~F;SY9L7`JgBOqIUo=kQFF=m5qIeoYGqDGagN zjr_)5nO2*(vip=7DD)AAoH~;XeU;lFeO-R~T`?aU+Kc$b`GxicS?+Ak(TviN2ud`3 zu%1j(e>+vW7c^(qCx;s}7kR?fgOXlA-$k_fKW}k0DjtILfsAtPg`D~gZBW{M@x(&A zUC7=gFfxntKCuc1?keb36rmvVX3ZKV zUjxGNQY?X5Aa>B&`H%0K^}t~RdbFYUNsB@ztn&eRbyLvmExcRS?t_JSd$${r&;-Gv zkdFIK`&>?&Dpii3c#_j4#>r1=*0Pn@781!T~zeU5wDnwq}qH zXkdTlFNI~@U^x;;@k9rZ5@kb}1mVV2++lStF`F=XL~P_mcTb!S9T|=Cxr{Z%?XTEE zkvva89hZB0l7Y1N92q8lcit8Oo9PCAP4Z+zj(MLJNfKkG8>WPovps$U_Sm z68@i~&h;@HG%^5Y?g=aN6tis2V@6Cm1(+Qg)7-|7J(=H9vvgZ%>)u07W7SEJROY zm{uxdM(1U;)CFEK|M(u!1a`YvQ$nd>>TS5G8-}oa3-|7-y5ixAw4HYeO2Dh40^x`b zK0jowO+=?sLwcXXsrpw)U~J_AyFdhnu8ttxOBLJNbWAhX8zw1Q%%~MR0U5>}NkFJI zE*@;c{q^70hS3t)iIpX9*@%DvmSlfX9rqqDy`+Khv1PG_;aVm{x`{{!2-mD_Q~h#( z5PmLNR^fPQKtMF57J#$ALPm@-0X0)7)_4UKLcqEC2XqJ5lS#L67P=N#_mBeO_}LU} zPR)c9$2`ZwYqqs+f)W<#P1y%lS^NW&r2*y-Ef%D>ApG}3OqI?Zcd6)nS~EDkRh&oX zr3s?H139=N0+U=3;@(9>Xpz*Vlhla|cssUG_K1Sr1U4Z=&lA7?#(acz<<5hcw{=H_qv)4ZH#Ju2 zP9WV`FFsuWu~qK839h@CpG{NUXIrn2v;O!#;6$HR>^3;~4{wt(VktC>wNjgmp63IW z(=v&~fl=0Z=j9bLY8G$_%?rE&a({Y-pgt;3**`Ep%=K8QLE)yKJDdNiAMzWPycxUG zjL>tq3sCgPJBi;VA51s$xl396b&8T>)lm6_1VVgrLF&H?vBN+S2B$XDlDp`XqcN1=0_<*6h4 zQQ(S4^0D%EIZ${CX6p%;+h6t4j%_oegI2IsUHGUg^dcC|@Q<|QIOQxe;vs+k5hB7> z;Yd^@lbJ(QZ>Lb@NB#BIL>v~D#9dT1WQa!m1YM82t>AGrmEojMb<;u4SN29}o;S@g z2gvfO7-!vU^IlN*58o!PTKd!}q9FLY0qS*;&0ooVH@!lw3v+gv%h-w97n&>Z^ut}r zcwZsCeI3F=m|414{S5Ep3x{sDEXz8VhQQ18h|?IBUj$g&uP|hMsRUL<&F4QEpeh%g zHmVt(s|EZTQ|-z*=EF<>0A2=Ki~^haeljrXRw}*?lVU6#B{t*RGW@PsjKv}BFE0z8 zjmg)w24BCjN%g7T!JaSQT|S!4>(z$um{@UgC`nodaiyhI$mi{DJDvfb&Lo;QDCt;1152SCo*ybK9$bX!puUy-S9&OH+4+? zyv2%)4Q8G$^%kT<_b9Wy0lj@3>U6B(oqdyE%hws@y|=ewY>9cL?mm;N>vPK8=;QnE zKd;Vf9WR8d>^LZDJ|&RB?|fvb(xtp`+oDlC85MJyn^|LVrS7D*CBkEk5`!kz;UyHZJU?u90>6cT~%&f}& z{;j%Fb4GhuG=m+oQqvrB8k%cjWGmIl7}ioz)1>B$7Yw0+MOD976j$sgogqB@l<&R09^VP>)Jc?+i?S;~~jA0k#Z_#tk)C6*ZdwmVMj- zB#eQ=EqDR3^ftpKkG3T=(BB)u-%(M6`bO?gLBQ`nth!VJyjF_27foOKHW zCNgLS~>=W{8B{k#dh~s&qW$DHBEo(&ZEY^K!I)x%JF% zn8(3Sunul~oNNvABpVA=NH`Vp^c~l z{w_>GH=oU4ZRLL$SWIZjyRfJpFN@{ZnsjIxc28Vt%}(O`H+dGkwRKuE9+o7TI#4B= zuP5|;4o@xp1KxBk;;ZkvRr8e+93xY3?8=Noqg}GpJxqxQ!oywkXJ<*s;R?y{=o`}S zVcNOfpiIcHOvn{tc@8i9nR?zhHEP-qbD>2%oCc4AEWrygUsCygAyBeX z!E(2(GG>5>644IHx|p;H0Mj;?w0}f@qEQyyOR_Clp+|Gg!U(KJyP!~XMYDPl&|mx1 zK~Klk;zn!8;9+xk?;Yaj8h(7hQ`hAO%BPwn@)32M=SnJr{s9y9v7Z-G)$!BBS5Ue0 zoVv9@{`vPL_Ic!8C8pI!hgJCH!d11)arZJOEb$2%TI_*?>Ey}=xON#IpSsnFTH4s0=8P2+3n9{M`rH1CkamN4eH)c~= zWiY@Bu0?&}@yQMO>6v*{@wR9hT(vFmHVwP=*BhJv?Hu0Q`!9e)l5^yR7(#SUi&znt dHZKv4q1N*JCvnQC2WG&ptRkpF1rUsa2m$3E;(l%n z9q0%E$Oc3L9BKeU02*Wf9-;vQj(ujwiq^RuS-@TiWo~pz6Ag3ZN`bn6uUt^J1C#pw zyNkRO$N07m$S^GHI=$>uo2iLPcqWOUR)rzC&c{HU|+VMtR@Q&n9HwKF@em*8+2T7znE z4^`QR5w(YaRXn#Wvwc91q;?=p32I7VaGD#WD2Wm+R>%maq2bA)-S{S@NE}{en|lsn z?mD{`OCN0iNgDt_0)Zq!KyX8+O1qo9s-m7$Q)|t4+&4K-_+U+CJV88&RGd$M1SW_X zP(%s?HlKdVKXRY_dY-Ja8XlFIuG@P36^BkZpbLZBF}RrZb2&odGNmQ-MKZ4GIKQal zh|ZiRNIR#`RkrxOFl{BaI@2U0lg63NfOz|Rp+sr;{V1(g#Pp^U0zX4JrVP272`!@x zV6Q2yYy~TyO*rH_?m&SGDFZ&m&`EHXSY8YMK{7 z#IyX6y1gSVr7P@=FKTE^#ScRMHubXxqu7sjELeOr=0+vrAr(?3mpe6(x5eq{yM9G` zT}nF6@h55eqoso6aRn^gpI8c!`t~MWQ&zsVYW^%x>{0Pkw^$PsB-a?_%VpY97G@y; zP~8fs>+p^vi~)+S8=4-*zY+T2%Khhe^`ps`oQ9aV_NyTXJL!iNCQB6)zR0f4ICMUQ zw;W=1zgG-YBY(+%R6pf`6yA87>Kyobn zO?on!ElRd&*Ki@gK>6k86VwRK9<>ghfWQDXh}C2xiah6lfWtI**2}bz2Z{)yY??_R z&)|S)ZeAe{;r=iX)OG)S;G zhzAEINl|H`gC%jP^(A$UkoY4*ELVsOg#M^WZe%Apva;t(Riem<3Kp##42-qDB3n4I z$RY%0x29B&p9_^{+$a2^Bf#~h zl^t)MAfV|(wa4u0YtCPS_l}wIhu7K$czb|*&DdLhgg%VG`IG>VP(UI;CbgL4y)glQ zQsRL@AwXR#!ZSH;fy=)*OPh>y?Hz`If&ii0oc0Vr;_%v(k!5~)eXz&2wo4x`vxpXy zVek7}wtYz2a-V9M$mP`zUe*00IZLb8)kJJ}(7}$TkZvl4)tuIrdx%4NQH~8XGhh$( z(;tT#*DlMt@{>Z1n*q_Jcm*YgR?@Gyy(iUrx5+n-lTlTfLxE9%} zDF9d_o1;;OnUWAtzl->6m#T_lQ=-0pvj{CEuqK)v!eU;g3bn0QP3u}WhmN=-N6+by zROG~Bgdtb29=tVw(k+?N-bd~9(jE)JZQBpBAoV%XSlaA>c*l8vf19)??>~MUn=M0x z;~2NHBx6GXwtI;+S+AK?&ftO|5Q$I>;Udr3$*Qi>FuL7~6sxdw?l!x8qF!9nlzn42ubg7&$;fhAc*^x5;l~5pJMj0w?nQuzc`Y;nX1&u!8%R9iTwj+107>}750eLeuka|XTh=;#&ToYa z_60m&9QnnsdfBbp_ZFkcKrGJ9Cdc1OT_5FlQD1O!_MUrss7s6)?I`N%O|wDsea1*B zfcdM8CaZ3rOZs*($osn`9rHR`d*w(=zZf?Mx@F$nUhj8#d&%jxmp=eZ%ny%dMg(HT zxzzx_RZBg+wgemmLPy?3DQL1T8 z!q9XJmK#Q_KVa*)4U-nrASr$1&z&J;wU9$W#1l3tsN_)F+X~=+n-mB{!lD--0xZ-K zQE7;T93_QBi6FAjhYKPw!_#D61{zEyOk#qcBHV2!+r&61e9CtdR{6914bW zK~b+#pmH*}GX8K=X-J68$i;2>C#23ZF{MQcs6#P|@G%Mkm|bxR1_B6TIIe_iFr4@3 za8gIIE}DGo&-V`iqSzmI3HAU3aszi&gS#pw5%LgyS>LvP&AwIV#GItU;#BsdKel{C zIlMY_`^#wofAX(*kEFu5;eH%oa=R!qXqKz0n|*QMMQI;SIMiwb$(CYs(LE7+xAm^7 z>)q%&n<;y<`B-E5*0!vUXzArhRh%KUmb+GTFHU3#-ssm^$=TWD$hL$tC4zIh)bYps{0tbo^+MQE;%hSl()R$`-BVIf*^6RfyMRNX?@X;|&Gka?i%_-L!^ ztm-v>Z0}bURe`N|?t`^Nld-8{H>WHEruGYh#97*f!cJZo*oI=jprFCw0Xj%Q3C}1c z6@=vH|1mH!JPhJK8AONA#rG8|01=?6BS}d}h*wrnQWO^s2ulI^^ug5+qYiEe3b#ij za(jM)ag1sjFDytCW7dr~NR=Q`E@Ri9hT0RSF*v{a5<}@6Kc&FeW{l!)FCjIvcO5JSR5iOC5{ipqNZy6O}M7!3gMw5S52flXjU*Uotyb*RNtut&g3r8#kBzW5(NP`1SB2s zKLJf8i^wyVtYZfjOs61W3YIEl*0iRJrAKfD8G3>|LNNnP5`+*_fT@K^C@q`#P6o6o z2efo>DO>H+ji!LFHKkotlfj;=5jJz#?|8;xjcW4ip!lar8pjLbI13 zh=%#E2wiAyuIZ3K1hnbWJj&3aiVi~zM}P;rP|)CT z2N4N?BTQFWnkCjIZO}50Ueg-*TQo^K`Z3K;z?uSl*bg2}g1As4>k5807iz8+z~S1o zc2wLWtGsPj44586fi-BulX?){7@>YbaXu^y7TBqzp~(=+!Q2uWgreC})nax1w!qa- zV9N4?0F`n7v{LE@7r+u*B4%)BBGj*W&0r&_xNR6(JS>r>ND@z}f|WgP9D zCVQ5rv(||beMh@MAF+=}_+Pj3igA>TBC(~8qC;>eL`WiCCOHzg zkT_lql{W$a`5S-?-x-f7s~p>cE){q1y<#zd0T2`|_6 zUIee699(ZN3J%6e4;J)`hMFl%_b-O+u!>!B=Ro@0JplIf{N4Hi7;9cM+pOmg5%7Z{ zX#-P3lheH<63qw|i)^^bJ6TP(V**JeQAHF{#UzsX&Es+d44-CRGF!mGyKn~01@f_J zW-=kcc2W?JqDA2N_;#(nYNgBEUlJGLdaRLX3eL3hK}@a;N|D6FV>iI##M9&boic`( z))gfB?R>1m`I3JGW4}FfmyHnsYz5^A7l-<9(%J;?J;7s$MCqnu$P`jC0R2Cb^VbOW zzoRXBQGYGu6Ra_mX?cEr4r?{qPo6KvgM7a`D7Qz-B^?}bh6t7xKTPr~%0d`PtDZP{ z$y2j*bg89V1^*a6zp&fAZM<>`0~QGJzakkS6cenpM8V<=BST}IWk2fmcCi0=s1L+u zC;~x%rh$a^->TxmLK60m)Qi_4Wze7lB5e@y`X!;53}R&%PAY@v_PB@v*#`F;hB}uoe5}-e1s} z!C~GG8=^+pka74E$FM#D!~H!(gxQ)*`*(YwT$*R|cdqOZgs>cCdkjJQ4S_6o$SInt z{~enR!2DDi;~_rQzlGntx#`s0R2vK<#=p4cU+9Ac8Uh9og!LP^@A)tPQLo;rxGqF? zkC`F+K01We5p$Wpo>BLC@yCZh+D2sA>I|*Nh6(l`80aS^K;tB*Xj2A^9D@8`Dfhue zC?IEvs3Xw{8oNgBgEp)+ge}KFuK$0K%XCDoP$p52R6L=gXT^f!Ejj3)f){RN)bs=r zNccY^YsK~R?f5DGASb22ko;kG=!CC~Bauv?QIXdBxh5;zsy+~nwkbctJggKTK!9-n z(Bi?nH6}oq>UVc-sW+oZanSzmcCBfrH;D(>E)cKf`v!x-Vp^amjAmTnK$c+{H&&iv zoeglw$7is|&^M^#EBb&0X2mHSbV;ykq6hGKW1_|21;L=8!QlZiif0lO6&~#y8W`FC zk0<}4x#z}(AqddKiN)>x9um5q4M%mz=qPR#-zm`sQVZ>tUE6NkXxM5xFxeJ%RPXj1 ztLDlO)}_qY13Il7PSzw~*OKiY0d9w1<&7zF^U!191O2aEtQ73E^ra0E2S;TEBt&Gm zek;A%hDiq>3?R@M#o*-dYSNiK*eR;O(5e033}5>@%VGkf#2j+O90Din7M3g4y1&W0 zA68qa(Jq&i|D*9u;zv=d@7T8(OO|uFq9x5L)@`_bZ>yc?A_mNv^M78iaQ)l+{oC>u z&z-rl<-q;mmN5RoKa43ezhFR3Q4y2q|8G?;9SJb;wFJQwN>w7|Ov%>=W#O*XAzVvV zdpo;lrg)mN40f{2S_>r>;-NFn`P{rRpA4O%V9YF!Gl;Qb+u&4mAQ^jyia^-T3$~et zodNlmzMsT{ierHe1pfnpNEp%nY$#_5A<6MEN{aF_3-#Uosj?`n2Wz-;pA`S|eF-_B zLNk56>06KQmY6Ap|IJpRf;~9+?3QRX0dZ+wQ9%hV1`a8P!@Ln=h!G;W9uPA$H8*%E z$+%LHR3f3izmRA|GKFf1qiZ(sup8KV6L1e~ek81+m6{1D0A;bRU_?+LP%Fah zL2yzaZLmsCKeEg`XgM3UMU!jtYr(Fz6V?Qk^PJunISN307?Ny+$R^>V3%{`iuz0uu ziPTy!5E2HRC8567w@-l8E+-<}m%p0^8`kdxkUhPvhA`UDf`N}EtQO6!XK@Hd$*ge< z1e!cFdPSd`8m7k@4kR94uao&?~90+GzB;W8hwHryOLwE zv8s9;!ILQ9OG=wSWNH|LKSu?+aBY$>q(Z1fQn7@;v4&~yyz}8Z77(vMj1(aRJ>lO& zMD-$72;z~~Mz!t~3P^3l_NhUn`#-)wXJm9uXME-yO|;q|X(OmLMmZXFa*FiZF@D{E zW97fIKtKB2D|nBw9^#AQfyALta)5mL#M)P_N(aJ=#K(iPTSwsGiSoQ}SOR??e%`zf z-~!tx#^B4UHYdNPp`Q@rBUcW?@MO{4dwGQHuo&}pYqo(motHWCGJX;$Hh@w^y%1FxcFsBis z1u8HsWFo~blfjRoW5J96pSC6fgPscwjVUZ-V?haxYZEP?Wl|!r86va6pmIu#($+B# zLWBTpzLTN*P4rqms>kC&q(t3~an-X5#0y`49E}T=;ON8)Mh#q4X*~ngitMF^MLfB? z$IdJm2qsdh448;A9PV!} zb<5-z5eo`PC4=fO+ioA>;FyL=;q49u2T+wh+!-ZDS`2V=R8RcMoNQsFtb@O(L>PBG z@i5K~lEpHNW+LU6Qzwin${4|#v_(a7acZ8smrL)jZz|xBYKLh7E72AxZQm&sX{lCj zmZr2?lg~4)Cclf&&zoKvA!IP@lS!2ZhasBDOv@E8rb5Gn28_&?QTtBW4>=^nnyUKo z{-iVhsXNTZ;)m?O8YghFQp09rB`EV7lW9f2^>d|YOpu~X2kEH_R!|BuVwiat%SV1l zzC`Ib3Tjyz{7yrQa1TVdqEGJO|D(gAENJ(RO1&iJ=lD%v739}ddDLDScRx%=iOSc?#%YcCk6 zEKd?Yh@$*;;K1z2h+x=Z>qR~X>+y?i7EcMn{_ML_?dPhF9+?`KmMK&{a6+b?jbge8 zyZ(VZJ8t8W+B)i2=B6a}yU$eu%i>OP@_mYXs4 zKm4PXafIYt9@1amfX*XZY*>~&Ns3u1CDztfok;8Od%n<4^N>bRMng-yjZcb1vc91B zGfr&0TLW~mF0`*o-S&;3+O|)kCC5LkJ7Vy24cG{JL!Itism9+v1;w-kGd5Uw{VK(^ z7+%?-zMemWgfWq3M`n~}`mL@Ka76z`X|}ABCNs#|(J(s&>vB#tN1p_50CfFyWl##0UaxQ`eVAdZF2Pq=3+CHjB*$cS z@@aW}cl*ukV>E&ray2=at)75!WLo&nf9B4@t%nCcuV*cu5mjGScCKtTdtmtwDp z`!o$5f=r{iN8&SA+pVlaS{rMkX5OgXyo6}B4pkvD_02^SId38wfI~lZF4{}0Y@pp% zPDV#VUDvgPPx-zDuZ(&s{ek#hv=Y}32Rg{F6T{2g@r#U9Zu?yEOn*tPuiFtE(IIx| z@{l)HSs8k;MEeY2A;i}HLR+RMi^0Lr9V1QgRPMO2 zQr;M|YSnV-c^d1>#G#SB!LQajhxe`A$c01}D-a!Q7asP}N}{?fEEbzcRabxLL_^S3 zZ!p>qNw`Eiz>k zTjC`K$5^&wUlW5C^W*>qF;8^>xRN8Hk`O(lPrJsfIgWL58yfTH+T7lB;$Up`+2sLO zaI9cz(%-ET#YPo>&?~9mQ}=j8AWO}n8TIBc7;|8K?f9#JW5K;?ao&7Ep8|F)Ij8X3nGsRi=Ep0 z_gKXEY5M|wO&re;<*%=x>q-A-S^P}{IM9}It`TSu=WCgeQdy&bJ55(2r6JZL_Avx(g40oZYTJO7P3wJxiv_DDCC*+tbd zl9WuwQ)ApcQIB?&+m#>bPFkiF-Z(!=PKU@Uq=VZC|9!DIW3U8V_UGB3(DX}<_{_b3 zQyeWy4P0+;*htYFe1THMm2EOYh(nE-pr^NZ##q{h2D*gg-y>)f3<_?HnAZ8CPHm!P zyomuRrzeRI2Rnu*IF0Jj;SqO-V|cmqn%bxF5}jDfXvN>Tj_YjhgZeuhKhmf9nqbHF ztr5wiFO7Qk=WK(l{zw~lXO!hH4w+6P7TjtUAQ*LO$877Fc?$lXnP;o+jKBAq!|AEY z40ie{nxl<>Ra6T+OL@6@`rtS=DDb&Ow2pa6GN?2E-kI7B{`Sj<%OR{*e-{N_EMqyT zdEY{D=_}hA1zoa=&@EAYW3e|(|LUnBYee?&X4SNU@;+HlA zJ1#j2$UkP3Ky&Jf0Om(x>-R-6JAtVfkRM zjxPT=`jFwgH?m#mw}jFDsGB3zWGI?eVA2heA`sI1J+`?GKjjIle>=<(Ke}vOHEep* ztyaAgbwY>^rY$C~txl#=RCi@hIq&}j#2;bS$re8;Okckh73?LpugE6hY@7eaSzL)> znEmtqg;#f;5Ix_r?V}@41<(1(Ng0FaH=Qo!2b-u-Z)`S+d$SRoZC{RHS#Nyw&pDiqAP@o+#smTIxURiASY1!^L0n|*Tj+Yl@Rn|lEt>umb-z2ZbMZ@_W7zQKU%8x$(1cJIVwRTX{SptDO;0t)#0Tq z7Gve2u^<{-Np~3DABD_u)Eo$7lb~DptM;FzOId!BsRuG`C+zuwf%cW?HBL++<^*)S zRPTj`J+W|siY0Fa`z)#Ef;FbZ>cf^ilwOp3%dABCvHF=?dFNRQ=HvlAL-@gH2P?FF zNo)F(oY1NZo`9qGzh@qgq;`yQwMJdeGqSh7!~7&(J~`XgeGovgcNb)nX<4cH>isv1 zz%3Pjle9|0f_gV&9^ZEizh|vz_x~Y{g3F?pgl{kh398zC)L;uZN*bk9zx}g=DEhgjC*2(j(nFU%Ec?2(agV_!>Lyz%3M0 zggn627UX-6`8u!SXZQTWXTiica*HQX@v8^`n_b}o_#+>KvSwnobmi~QMx^nVQ$iYi z*u}9Y6F#|duJJ7W#-G|4Y6p8Sb&gKzta>ASScpd97WVqoJP8x0`WwUCqnX#nE?Us| z{Gl8WOgTX^JzMiw#SsmF{yT(-Aqk}Lkoi;@Ug?ao8?tj*gkq*5Lv4zBatnA98Isk> zj>m*q)~!*b3dVBx@XU=Rr>v1c2oz#U3M>&u89`aa2$o@E5D1l+zbUx)?`vK;_llJ; z{JA=Im5h6aC^2y$IM9V{ie;L=x`J|$=2SHa4yUL(f9NL_Es$}Mx>^*lZbpoUhOmv9 z!-QVf76^;7Quw}BHEH}Ulbb^f!8m4?w~w7yy)&KP=de}V?JSHEVY5no=O&>|K|_Sl zsEa7VFjWya%ozs>K{0z%?PC!M1d`YK>WC9!$KjcYHuv*9gBm%{0ADZ47n>u@hr$S8 zM6KCK@PsMXdJh)XnKxMs8u0=H2q6~n@p8FMYH0t;eD?X2gaZbpemx&evUY9J(0KZxszMskos-W42EI;pmgbj*w~yoRlz3y#X5Ah^de6&F_~{nrCT*?e{6@ z*Gj?JR?*f@!s%`xRep2d44LGPO!1aFJ;BT_`2rzQp_RyoRQ<^h023U@g(G?8+FQ`W z2;xU$Z`To2{V6VtNfzp^B4BtzxE1(CYB5<_R*ZJ?(jZp7`Y?A{YR9<}2Qc@K1<`bv zSq4KYxm7a>1linEKo^s28Z%sx+6`Y1lJGI?*^lZQ{pkKL#_(wD-i@432N8SV~3`|HYR`#5ut!;{kD;a-TP_kz2R zkexf(#8z`I=8_YtffFWRC^3X!SRI!!X=;T7Pgv^t^lAD#`x6EZOa@5|n*l2}$+-Fa zldCU#YunJ1M%;~MoOXIW-s1P=iI4FL|HJQ5y1O3kTb^@S(bLGn!l$$}o&nR-r%eq# zZf(y7R4B12l*WM5O0qxpOS8=M&*`_B`Ue1F|GI<`r+hxkKtVrg-q7bzCU#i=;gnZ^ z$ECl;?^Bgl<`eexMwO6*+<3e!?^oGQT_$^v`a?c{-b`#^(Zx%s#0$QGmN?*}<10Cv z6>_bbB;U%hXx3zpz_nm*GDJU_A1|AElapDCm0q)2L(M z4e-`}A5Q%IrK5T+I3ZT?AL?Px>&`3> z!l&C+Pizi!W-NwEbYgm8c-oxE7#>}B9+1Etf6MU-tgLjIZu1k3{aqg+O5L5%crKZe zA6f+NwO==d=D6wh`){dwQVjZ4u!!#bW+*af#RTW$gEIn%gIst6{&Rc zH{uLDS2pX5Q&tt-ivWvpVJXn^omsz9phtK1VK?H|CE1@5fXq@@z*azPQkqOv7WAOf zqpIWsOU%PdDZ&e{ePRl}c+z|t{|-{ag@?GdcWUO~V%$9p_=#^XZE7X&ROwL|w~Uw! zRq;aLG^CMsljo_Bwwip8f`t~J-$xCEEiU{^$U^;n6U~CfP6uZz)MnPnm1|~*&BXEB z$zz@)8ABt79cS@(YU|EKU^K^p8#S?&E@6&?F=Y1V0;^7%O-r0+YI#&C@X+|@HQ^bq zxVu7;BMXAfWbKR)8&grBNFyi`5tnwp!ow7PC>0NF5$)+d&$Y+rj-m5UDht!&=iuX3 z>DjCR_wVha}V{XVyy- z&nD-Ad-n*Gn#yPDUc|Z=)Iz0ov!2);$*xm3E{V?mwQC3Px<6qEI*lK|L1S7V1WjLl z-l;~s!1iCf9r(G*E4l$rBo*wJ^&L&`{dz4qdBk|JrE`>I1K1BO+tGa+{Ro<`mb&s- z1kT7R#)b%Klj>n2a8Q<%B;lCJtU>=l_Zsg}`d{tSb3EoF)S&#o(Kkb%TFpC1LHox2 z{dvwX{)Ek7dHwpat6MSJPs=;6E1|pkF@HGiY%_B*ie6gfvwiy)1|safyuQtPbDkRn ze?{BO%?#DeG^+dYR+)K{p(AJBm8?G#63v$cc9A`1J<;Ft^l{XC6H};ry?6LbS9c7s z`R{)llCPVa3!lwGt9M*N1eUVw2)|@bX){_35uI0JPs?758Iqe{r14YFYu-7KNH^&hp5iJP`>%f-?;Vl z6h%F}hX*d;bqftX!MpI^ANZ#LzaBt)W`I8MQbYwAqF&m^%63$f_HlICram3+b1KZ` zO@1Ic=xDzvyV93$A9nMN%+oCK^xwL4VTDCXF{&R{C&BpIKw?x!X1dYnfzt^%?*#YyMO z-~TAdzt@YsUUx_BJ|3H>j{Ui4Fi}19&YkMHr*czQ;q$mN;VgI4eW>)FdEVZAZfSSr zPuuZnmm2P_UBn0DJSOMS_F3$V(Z^Zs&0Ia}-MOy>#(@6aPls?0;UL{cMGCs|KHE9= zS%}RV%@W|e@L@swI@&>6H|?NFX2Xq^(Pct4E|9Oan$)n4JJ~_E+(N#_@ZKd2Y+ZF{ z$!5|+TL(LVN(|6kCX#Y`c)7sRmVI{hs1Hp`&4A5on)y3AHqa499wEEj@9|}s)jqFRCiun?rid8an%QeVaQO}%!#E~E&qCs z20S8S^a)Q*LF@(ap0Y!@N?p`@N1{y~?gUu>{4Wwxg#bUb-Kc8F9OmHPyL_syuW}`b z18t@jh5b9V35QB>R8QrMO*ZA9!WXds^QJ|Smhd{^hltGBBn9f`RyFKs)>ey4>y5~g zKkZ<`uNjP2I^k7n%C+ z!p8wVx+T5bLge<+6Jp`){_||LoTBS@_tT)@mTyR2n9(%*RzV#iE;e0o*02Ant%YnZ z!5srD3eB(NFFm^$n*?^`QS3_XB|&wmlc?jpcI?y*EbM!HN_v8>4?%vjC| z5@A)U)Aq;&b~g}hgLpS>FhM`y^m9zay!cKO$?l%aE~{C^U=RcV9(CLwrfsd$N=g8I zTI<6}u&-ItZAdIS!U?d=Gpwyid?@5ek;-d;hTB=eyqDFwZC8o9eeV0ZtzCs=NIon@ zW$Ev4U1FI2;xm*fZQocyEk~zCMs{42J;aOn(UQ|B? z(r$!mDedAlrM{#7o~%FTcJxHF<2}yP&gz~yCJHl9IEB5RsN05l>La_aP9LYt#6uIs zx69VxKL=mK(}>feLb-#CMhE69nUHi{dR^jqW$IdTs{q@&9H)UuoT0}(lAa#h;>e5X zo#?aT?y6{ZUYEMi#tIIAAGSYKu<~aoI%q>^?K-0!$~h7^TV5wuq^Ngm|3Yowqn~j% z4E7#&X&+SnMaDUO+`NvEr--k}UI{?~Q;Nxf*m4>uR{C0~U}5n!x{-glW&D^7vX-O! zEYPt?T*F*Cuq2!z%3D9Nvji?yd=oVAeta0k_px5Lm-F+ViTJsW6#dN?tlb$b#aqbRqK6mc|8Did`_h8 zico)b1qEcNn(k=W+e%&PRJ+`z-djdxh?H91xF9o2zs(Tm!JV&C(GvFCmmkNE>X3F_ z1=tX0O)M#GaDC?HS+LDe=gqXy+d5GI zIt|mva{?)!Xy$9Z_<6vdWj*=jFd*C0Tnn0K!ITfU`;M}(2~vm$9- zga8?BY^i}>Nvwrs&fW*)LK4C;SIbs)Q-YRWR~vjCjaSG-D|Ju)A@jC%E5ceN0?3^U zN&__SFR&W=9k=C1W&mA5X4Z26RsOWw>r~O3_0NK0hJ>z>PMMhc!NKLVPM;I-AF3DXG}x z7SJHeuYA0qK(vSMmt%?!$Ddyi7*nvmPdEN=cF?!374^s8(~?+yCyYE$pgg~7-@mgR z{-69FPy+0&&$B)=1KXirJKj-lYhn*C1Yj@1-6!&fc3d6;BWM1&g~;_kAV?l3a9HSl ztFA{*4L1>fA?w{%NiB0<3!S4Y=8+%~3mq^v@ZHA|E%9y&WT-wee7eO~Iq}VrD4t28 z3W?=^7Wozv(?(U|mRRRYEA^=myfWXGH05;)E(>%MAqw2}{BF|LvVC)=Vv+Lg@E+B> zJW5muP*fHnsRRXkxVn)Z!?8bE=|}0ohUQ-3`+QFAADMH%TCIGe%DlZQKyjhqG`hu` zaSwMka+cw~l0b??AW-+SEshT$WrwN$G0Ff~S;lLOI!bb;h zO3q#1GD~v$eT^kcrL?&02}K_PeD7n9bvz7N=~?11sU$9KJo*EM5CklLP!h}vSb^Hp znVDs-4JFWLY~P)bu+Q`?JDHS8yT*cx89!CVlLl4m*9nK*hCZx)kS`mL%LtT_JAk_H z(JV}hp7Bp=%+3i#nsgl|}l6F)gx07P~=Q99(g+X?iB-V#c+} znTC~{%@nPXIX*|T)hpwr0O;tqs&n6*$kyirp>_cy*5UL0EEfQT_+kk54FIy7+gs(z zC#^k={15~}`02;X_(&k_iO+RC{K3ewFYw`4YfARPsYl|E_FtLZ8#EIoLy|%ff&@M& zqwZGVTxDCK)U%kFTIz~K)oIa)p>pqT%t_TwG$$0=qB-_&Z(I{G>sW%aYWtI17-`}t z6^YE{2v#b2N_7hP2Ub^`CTd2*+>}wc%mB7dYb~L$9N7dN-YjXhUYI6KCNQ8tx!;zUftx>1xZrd^}^E#VNG z^N@x$nn3F`%dLNycH!U8E5Y`uI%?+?xIGL+1IqE4rT>awtE%mUQcW23c#(g4ISiWr zy728GWaXO6A-PcwL~AGF(@e|i(Q2_u!UyoX^#6>OJx%{_)qrrb#Lt zb)=@*Ow+Y1CyyD2hpKmje|51(fQO8O*jbJ2M%396`(A$~hk#5V1XUu0T_6NThVDf6 zxv$(++I!fKL?`=7I|~xw3*C@4>T6xeA25{ctDE&vGe!Z87-GiWEXeU4GtB+4mVQ>p zh!lx1?`~#WH*Zvhn%1}`@%qv_jD8b;+=3Pl1BI%St`|&!AQF)v@zWsq&o^Tx+UwR1 zlisb{_XHL9i<}pfc9f&+tvdM}hWy>&sv4%O?SQQ4e=GIQHnL^nK9%X{X);B5F<8F% zq2riW0WtE493!SygQov#y@(}f6xBi|NjLm$ParN1}6j$%z$56MNowbAQS}=0xB@f-~tCa z*a-lT4TuCd+yI0CG{gctOalfSJIbDQ%2wTB3t(Vo&g^3lLA1dUL?EFaK@{|C?fUmO zhhQ9IRu$Y})gKBPN(3!Y*gTQ7v-+a6G-TOi_BIPw6^a+76eZ@)^cMKWf4Z!GX~3x@ z?nL!B{g(w(@Ata8&VFws0_aH~1UNVoZj^G%)({=d2B3@x#)x?YqlHt*IRBVP#M&UU zmzs&&1X2cRJ<&G4Ns|&!PUv^KtTJxcK3t z)gglAoP21BR;+HB;^O_T&-I0DWBd{i7K8vpa{?)}?z-7zWJo$>)N4gfNg(P&s?G^hXy`}#7f z`~t+rl6!QQO))bH4RyS8I}QH+hv!?jeo`0RT|`OrM1oC9IT94NmvL9-{TqN?H<#2? z6o-Ts!3+Km&>3t74D)CN1O<#CQ+1lraQG4oIE~|I+A@ig*+5{JCL{IW09pM&5`sXQc^gb2A-)dA#lz!!iq@2L-NU>Sy*g#(IOtIIF4bO0aZ(B+!J*p17?~6{BE?}^PmoM;SQwWLUg+UArIRw7$ z_I|Lsa5sHVlC9VO_Kt~viw9~{ ziRJ=gJp&sRgfNjlA^;oSlcNo@>u&Zu4H3KRI3Kh%aLaK5ZLFUV;2Yzi1TV-Bb~#}G zIQAMmu8(`eJS;|ptE3ddm{I^^ib~iB1r42=KeHd6A-)~xuF*UpEILq#Qc5XO;W$!i zvWN*GNs=Uz;Blt0tYI3kFTnlOWR1!Gt-OM9j>rq3V$2O$a^#XjPYZ1bm|immV&;Iv z?~J1$#E94zz=#<{zzM@t1kH#8{sLu&-bnz0LSa&fAaW5gClS1X zKZ@pUKz|h@786M64}nBph`AstW{J$HVHZ;aKF_{@bIBR)PDRTl{xjNYK(9;=&>d?G zyWC)Kg33|Bt_F%kBB#_BNVM#kz3w>{bw4?NFI?w7+?t;xik3PmceX;uXI1(4X zS0+Y3W*c3YgrU{|f9$`jy_a5m5&K?&MuC&*SfdQ5!Qjmju)FGuW8tYqsaMAz4ZPid z-EevHSNuY^7_7WOOxemVstXwtRFBQ&HIa#@>|~CcU7R1_R$9657!P(oC)lIt87q)mW8h%*rr+3q)UOs>u8uLc_g z!%(1JNmJ6v(=E*nJyvZZi2X$2o5vG-w+^<8lC)Xjovd z1PdMCvA`_lT;<#&ichD6NV*{zc;+HHIc=YmM1d;ciF zZ7)(ZB8h`oe=s{99u(GLf944g?6q^&v6*)F%>y;EE?lSGM(@~3l~C4M~Qqk&qhO8p( zOA#IHCXyD;i5o9pG25Q!xUhB`uQMXtywzdOBxKnPB7{Pf#u$yzhY*ozUQ0bsYLP~{ z{K5d)ia@YQ9f%qF8HRC{4mILQwUM?>h{~o+)ir@yw?wON$rzy0RYJuyYlS;qlWoVB z;BANfeOBhM?0i}@{$!~Q?y*-Bq!V&U8&-||CcBe3So4E-Lt`I_UkC(LFmVFK^Zc4o zoI!LyDgp`;8X~H64?Q6zDJ^lesP*Q2U9p4sJqS^xOd*;0V~IdiW4-HheQF(5c2w17 zLtnmQkY>%@y6{;}20<`FOaX?R63g_#<6qtm8WKdKNEI@53f7jz$;-ZXU7IjD>+}c?gdjweVaX^n zP93~{@Zfo5!ZZm}r%)y0+-Tq z2p~N2azvtpsZ&U^N{knFG3FcXL^ZvcdQ#PS)|Gu~HdSy~ECy~|>u4iHQrVO%lhHes zy`9#Cy(9SlQuv*k5#mRNFq$p0b-70cJEf$kx>f%>$T9wrSBnI|MgT%g5tfWH>(s&1 z*I?gG74=_Zm4V^y;`7=sGYXAB-R@fDn!^GvFL%%E7_?;4-nDJ3+}PS}r+K;i;K(C| z3>-j_LcqHC8i?7vV~e!Y$*88So=~2vo7-;O?loV%XZjPzwGANHpp3HMy%IoZ=5?|6 z2)1TdrF(oQabfglKT_}Mzb->c{sofDNBE1Io!$o(VRV;>by_}|z#4d0HrmBhLb?bX zMBRxy2LvlCyVGbkz$JyI3GbmoVAX#fxrj3aAjA}4$SJc<96Z19PzXt}Mv*FI>J+R> zlBXAIYHayFW-RGfe@68IAwm94De+<=qUnF}m=RKvcBNfxOWi%1=L-&poQUxsa4Hw( zi7oJ~90@aFS<7cH$$T%IGj5?TZ0-BD`ObvN{Q;a6_~(s2>X1~V z370<3kJ`>TMITi}5p~F2yjoC9ukQE<-p098|&X&L%?1Byz5ZV(E;1O z{DOHoka_w=sSHwYvAZ6q&^*8J*|E}w+H-gHLeN{8ahDcz(Yk+8bMp7w+U*WVrb)sH z{%s}157jn=yVp`E{pf6>6Nd1I5~LU`ZoByEfmyXgTiMUO?{s#v5ybEzkV}ETGOE{z1M%KGs+-4%h`oH=Q??ZG3 z*8VCEC`f3CsL(j{g_NYU#M}VFqO}ywcEb(r4kSmAG=XB}Odx!;5fN!kLig3* za$o5Muj1UmyIH{kiL2_GnN?9yQ2Z|TJi{{UHhg_M@GjxgJ5T)#OoQ>WJl8aO z%vV^a8+1C;$9vShMc@%pz{Cj@&4&sajE*Ov(hXq;N)RbmKxxx1sY`_`iHWM-Tz(9! zGl;7Vt3iUb|4-Ta{D0{k^A_J4!xpX7WxS(z8GQ8W_iM;>sRH=AdZ}OOM|+#Cenme> zQ=jU0TbmmJwD@>)OZ|>LNLCvTK@dv#C>QAe!D&~7cyB~`{e*H=0y!J?rM(YqNl4SO ztc`8kw5%_d8x#kaW)Y+FTC z6bu;JhaiE{^+E3cFHHWSin$d)46Za7ZQ(X#3w#;25R{40*ywmHUMH7q{# z34q$dR#%m7hq)X6k`kzmJih!PAm*$%Mc$45>+AU3??PC1Ps)8u+Q`77 z-WB-NB4w3bVv${HuKT>2qa#TSYkL+$6d7x2!slv`=Pp4Es_~QVfH(R=~-zo&F(TfV3h($oeBMSc08PLH(QSpNU zgbyJ9(`PY=b6S|fIjL8sZmMr#_ziri{Zjg=f18xY=C1xK!u}sd*)$%eT7|{O#Tov6 zVNj_I`>V~#<)MU#hIH;#?nINw@0*0+hZ-vQv8_!RjdKN9QF&HA`a zaZ4J=RSV4e*)_nn5)6TBS*4ma18F39tj|~C;M$9-Wj_|WjQqtd?%`|0kb5$d(_VSx zY0svkoy%)|2J^u^zcGUg&2m*U!Ec3LTUj>6K3;O`X>SY6XzZHX6ZV!R*w@9Z0u8gb zRj0oH zx8EI^u>vs@_q<@Fg3v;{c6kll#K&MJF?b}F$#xd;9-F_rykb~Q5R(}jtzeYoOUE?iXw!;O|EI _^% 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 literal 0 HcmV?d00001 diff --git a/assets/fonts/outfit/outfit-v11-latin-700.woff2 b/assets/fonts/outfit/outfit-v11-latin-700.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..710e8c8ebd05f4d8a56aebd5ee3d2807197c106f GIT binary patch literal 14064 zcmY*=V~{AkvhCQmZQHhO+qP{Rdu-dbZQC<@Y`^c|*1I>ARPZC!S?OM#bS3WcVoU&l z0RJSmI{<`#)j@avwB!CW_OJf`O;|yG*vmXPAyQxl{K_hVDpUZWD2NbHfsqK8`q05{ z0Dx>jB*5VoAOxTxOyJ>AFyPoV4yZQj@OI$XpYpF!j0dCh!H@Gq5qHTHR2)O5zyACQ z#xY>7z%?|#qG96=zGh;{F;R&2#m@eLoZ1WV$5ERAvhvp66_wJ-LaHXrvJfgqUiE zh>;->)C$BO!{D41oj!c^8UJ?7$@1~!9xzFR+@*#lot>?E`wzUN z_pjP~!D19?fl-kf0057UW1toZ@h~ED_wxzDF#Sa?VuWKpxH#zV>Eho7AlEB5jU>s{ z0$cn3Y2EkTkiYUk^e#;TxY@XUtT_D|y8oG~$g#2}L(Tw^7N1`8A?&G!6YaMI2d&FdCcLGY3Ff6LXH3_Mm0Wl zLUpT?LZ{nV-HXyEXT`M+Cli3*IsMo@{+6X_dr%pk(9DYORk^9CP*S8NFcb{}NCS~Q z`rp*blIiB@Fm%3lQ-N$u<~?*2v9-VtNld)6XYo1CgK5!oE|Fp;0X8P~FMFyJ-vV7P zVMm7q1rd^=ciV2w+)}o-4p|d95wLq1WJG0uDOP54JxnMYR#k4PbtkxU_ad7p7b7Ps zs9mDYWB+@oVe5Xx09ybcAT~h|WIYedMQj?98ad9Bh!Udl2*P}(mVo|XNg<<|?3k1c zfN(qxfACqM{s~NnWZ>HLKwli28w0ll;Ao^}?2HEjWL=2r1p>RjW*}f58X4vLqhoNQ z;9lq&*jXMJH^zNqfLaiE(G!L9{vb9sbOjL@#BGP?)1FxL_)T9k&?x07Xmm_kMvW;h zn3@mJsGChoRI>9>j8D5l$a;e%kJuat45Vct+1@`qsQLU}>1^op2Y{pVH-GBzI_enE zC4TF~3EpN8!Ri4TD%||=A@W~|8(6@jA|QnTFQPw<>Z=qGF_4cIgh6|3sL##21ie3C zT}~kYK6VvB1QPoB#t_yy<6>nmDI>un{N+HT`H}OJGX=~f!HD}e^@d>iw~VgqCtam@ z$jUktSMOoSvHrfKwD%MiWp!G%P7b{UlVD%gSDhK|EYdw^iVwHc!ZUB{_kN*C>i-a^6eABrGx0 zzBI(pXn+`o!bu_k_W3^VTF>#^X95Tdij{n>YAqmzxZn_4XF*zH8OJ&8)lLapVKKa3ZQ9{Er+h-H7$^c}$0h(Im#6i> zzIzYi`#;88N=Bi;qkUwzX0`B~QoLTctQ}o|4fL);p)g9E7lNbnDKWq1(l`u)x|bf= z_VQ^01X3tccl%IwGQ`AJVYtnk;`i4YDUFLrH-t04^fXJ;0v^ZXXflTjO#<#I0~@Kk zqOEVd$dR*yYj{}}ySZAzLML^>XBXbIsFeb4*Mh7=W&(Js(SNR$-Sp`oaKX0^WgCf8 z(8YqjsDdZhafE-#GWnnYYgkr)aEU4*1Vgd^cDDvDMQQ^58E$2#j0Om3UP>R82kRhT zEvnS}^kWW)72^e7Y+g~sYQT7!Kp^}g6io5U%@+%bxbLjcDaf19n=n5@q!h^8J`ZepV%72G}bp- zgH>UKhF%WK3zY}o%uV1$>o0p``Mz~Q>g8x>Agp` zxgOdY9+b+n_o|ES`aSAg5_>`%f*}H0ol(?yEapf34sE>I8dqa`SBmE&5@Q~jI-tHP zA5N8DqEsm(LMJDJD^}Ge6O;4Q-2Imoj>&|B$HWS&F&m>X2h%AV+bQSPvyJV2&C9aR zS$s;zS=n>-WyNouUop5G?{3|12Hm6?R`ulW7iQjBp$jJU&1I z9MUr;&N0Ptbe&^Q21=S@40^(=L#RT@+T{ZVBQ?r*<`9~ARAxLQi8-2cL!M`tDlLm) z2Ct#SI+g93>!*E*dbZc;evHMvy|zIJmIOpNpMe7?QpmWTgC|gfkB&bP0R;&S5fzzS zItIKW3}Q$u28$a>y1r$Xa4rfKSqFEqX@}n0ssz>$CFM; zch#9xQQdJZh($nLgSb;Lh-|DFgzJK9Z#csQi5Z$2n;V=Qon0Q3>(AkjSu?I3KgRIM z%iSc$6?eG{$x&mKP83;+$}&r{%M;9ug*MqKkgH|{Dw`Xe9GzXRw|$a@+JdEUdYGN8 zUS3CSLlA%|T$q5N0|-*+sDYygP=gQ2|Cip}!Ht71ZLl~s#$=3BCs##5<>SiPYc{Jh z|2FE^%O`~>wHAFhKqO|}{7XCmqK#f~5^3^Ys8O$0p>p}p=rh2FNXpK-ah>lBk)f&a z+5Yk2tg;FJeZnZkH~})3Onod#I6+G5R)M9zL zrNzZLX243!qZnMhiOX#5qnnO~IK7l^+H&1c6&hJNnPn5jv?x0dX;*cq>&&E$$*i62 zefJ52E21N2i|^@WuC*dEo6JYMnFU&X$4l9rzhw?HzZ4&y(3;h19H;0rBsX(bO4x)z zw*ODzAZexG{KHXRc}{s|bggI#wEXJjqhLVDBOr2ynN|0MdW|3x0|-P`MR*=4;5wlK22SAgfMYoX?Z4sgy4C6k7jEK` zfuJB~E_2w#G|vJF5*j2bG&;Os^-V0{huq9xd@KEVQh^1^@X1D=phiVW-3;M>Y3>QR z82V$2-{8wsGk1K+xQ9;y3JnxGfGB~26+ChPIjs9pg8bi^jP3z|hOb&G;J{{g`jK~&U&K?5gOVB5^7h6@C)3J8gOf^yTc zfq9lKlA3~qhKP!6*K6d1sO-lYlEs=8B+PWUyg^p^PFGUW`0kG7#FA>YigdUv(pq+z zXvMsdc>$f zg9h!W{SC#Rg^!GFpk6sp8cluuCD8H6a~nTk|g!xJuU``RDe&!sje?m*nR2h z$JJ`$Npb0eAb8qp$3=f(`5QeX1IP;*PU@?2oTM~&Ewa;m)ypsUR=t*{6eS}y`(G=I z!A6SVl-Wqxh@oxWH0#238{PIEF2Z|kC+FE1h)W}Y2-P@ z2fj-3Z;N+U_^*b}h#&oa5K=f`g#8Pxe?T+DfF81d2qJ(`jg>4>V#JCS6Hbs+U1BNv zaXtFBnu1UBqqn*8_2V%HOlC$uC!?&kX&4%q7@2vLmL>ZW%C%5j_*c2L1@iy!%GhZe zSIr^JtQe7CNQkJ&$gp-@RPT5(e;RV{xDmDzGYzp=ENy(1G?s*B`m9Mp4UVc`E>M&d zWl<89t%a5sRS_-8|&t_^5{Azq#%7 zy@agIEKkmUkhk?3{GVkrL_~lBL=eCgRaRa$s;pSXFjh{USmAAt%fGR=0f3$dkfq55 z(iPYN^YTEVqk0vOOP1iRYp(ebg?(ySQN=k^i9(kA7jhP2TI5Fz7Bk7I$1GW+Rf0KD)9?5@nU9OjnuI@PNPnHXraieN<nRK+_nPcXN|Ca1-Re{lty?{&LLJup`b`tSFDIt#Y6M0fG#{|8UC* z@K415sFvqiWuOjS`c&W>Ohla5JyJ(zakSnOMXKP~`d%<^t3rN{H`m%x zNIUdKl_Ij(6_#;BLrlZ^KAyp;UM5 z2C%wg@(NR(Zxwtk*CQ`MKXYKCwrC8W4q2|WJf*En+&*gOxwNYevrkv;>LKgq$;GqX zA63+rL4o35p%#>X3Jd@M1qxKCP=Nvfg@C#s0*Iguld8>z(c*>62MA7}NCD%&n9PRH z*DuLHh>V8l560oKlmm>MwZv3CHlvk|=eBp~rIO8s45O5i8D)NX3KLZYlOHy#=%3l0 zSZ;xj>PX_TlwIx&2 zSKsNtKlRM;#=VnVs`KVPJBviw#ch*MD)yh829VQ|n3t>Bjti^y#_vVo8G_G{1v9c^ z@^>SfrYj@Pw=p-gSnj+~Ske`bnV1rDFY!7{u(=<8NiQxfVZ=e9SngTB!*I|^edI5A zX#`xB8%G4-CC)VL_ima%bb(y|Jr|M|KnQSUz(WQUZyN#yq=Todd;@!&PGF|F2xJKd z2{iJ54bEXc#quG{$It^34-LNDsR$ka2=H`Gq7vC?1X0*DV;zTP%G=QIyu9vOL(c_- zBU2$2DRzQrfr2PuiU2^63((N~YZK8J*Q_tI1HP+(L{c1!;GU?dL(XfqMwL>7P^*gcLh zbWWtM1znt`2%$3pdNftLi4fpbK?IN<)8}Jnj&EF+Nc7UCsY|gQ>NYR8J@xAkd|kGG zP555G^%pqd9bf{?tsK7({}DrKjJ$}0=wPc{^#DU^|!ndgd;zbug7uM{Jmn? z&kZX8U>T6z)3|#;_r(+JB(&zuuNl9SK>AUwXQg@@^DNhCE3e#o&4k|Pw)+}y_)~xa z3JVO44UP`jzX+yyTC>q;CXAMRR!64DL9YodKIbJD+n&$o9U6fmB1tPmLa}f}sw9z4 zIL!tW3Uz_XbvDAEw|Pp?*slGuRPlQkQ{gO19L$&TZ(vR9`+g*!xKGQ7&o$dt@q(cU z1P>Aru8GRWKa_-cc<@g&B!SULW_B326lbI1tUonWhPfkab_oWrdzxv^#(5f*OoRfJ zpAl&!GM#3io#fr=cv6{07Lu8guA^EtE1E7~Kcf-oj$ObH^ntVf8a{xx55NK)$dxPr z4ilRNiA=L27IP7{JA$@xi%hqqcmyJ<%4c*OTsVVSsCAQhS?RhzU;af2tU$4KOSmmxhioAGG}jw6{C1PYEJ*ze)1 zG*lAhtu8f=l#D$3S)xXfxF>1?)Ejd{^6(R5a#HY79hwMx(U6VNkFxlcKS9y@ru<4q zFHy!}nF#@vrzDTW=e*WP4@m+s#59)uIUvf52mwrpu5bptv8?K_$l^_jvjZh!GpkqJ z9?g3e=YUt+PJ^bOlIZLL%Kiw#u-_E3l*Z|)*7|(p&!GY*cn$iySdla~`=G3`T~Y^h zgWgX`g{Uz-p;26ElLX(EHf|czDqfj<=f}LB1wnOQkLJbGhywR1*XltnY1b-l@ zXWStwRAa||H0X-q%c_c^VlbMtYyZLG@`O2@)`t@r+)2$W1xH=7c?{^X%&@n<;U!3L zyB#b~Zm{lBX=KqR*v|Yuoj$Gul)vvtuaetQ7bZ+POPiP%!uo>@G50`X=x+1iTAXfu zkkrc>cor>EY4dK`3H9YxNV`&~hVf5$uadjUsN3GkBIy*#!NqVA&yfXE{uo`1P$=5d z+~PDi{L+hTP>K(-?pUc@jAtRlH|&+<_%lLV_4!bEl<;LMQu`=eWAE^y1!(G$v}Z$w zHnrQ`0`B{=`#Qbq+RDOt7^Nx7nPbYWWjkh#_w2g|!8I{?FAsfUO53p_F?3n55o?KojiZhG2@Fye; z)i9lmZo2?KOUmt!CrOD)EQWng8LV9a?K8B*(QY8)kPvW<6Sp1pqI6M8t~8ZRCI)TO z=4N8a8ay;o8RW^Y?Y~jl%nkB|`xLZKfVs-L{M&I|C|4#ASdB(RUK6?UhhEt1Q}Z{j2p*CFQB?;6@fsRME`zQjR2n0y{~N zr@V?@EDPeLz@Az86dd!3bM85(1*TpaL{njP5w#?bL{$TFfO|B|`{R9Nn(tuT8*Chs%#sHJwM}{om1isS+#{_JEGOZu>m5^a|~<= za!Z=N3_|M-P`ajKh%*P$y*lNU3JDa9pM{V8mbD$IWikjW@kl>2@ZQ8a6EL8aM=@eJ z7Lg0y8PbVQv8s0&$Be_Sv_iIoq+PUWuyplvlkk3$_~U~X+*B#chcT=(#&m1$gsO3) z#s*5m>4y^W^1d3A5MMp&79TEu4qL`mR`jt-O3@9YVTXusTpH%GuT4y!hKv zGWRW1L?Yd{#|$S+uVv@^VNyiSQ1!B%E7hr%=8?TT;k!U~%3dr{nK{Y`#(c9Rl3(H3 zD)KJCKNvon2=|bHj9d3BEfreHxjtZZ%1A%_t6a@Mv*hp#wlW6H5x8T7f}o40SG!!K#Wy<0?Q66gK$nnN_;QJ6%3V9>vo#bJZaZ7hj(j}-sYuw5TX z?Kp!8dm!Gi<#G7Q#In#AL(+wjH@SdOebXlDcb<7$4%9udsNFrk*}y=og(;^1#z%8e|=QRR@Y!r7p+6yf=Tm z8Yj^+$dDey_4iQt2hDlQ!{HjvMIyu;7#aYuNtvBUifDP5lV+Pyz6sX8U9+3J6e5<@ z6JW`sNyU@J&&*YaJ6VUjS4NOFXlF zv-((VFCkI}EpXN+nz%()u_r1_lZC-CF9wrNUiz9EC6McV)vD#;q-cAS>I9MPTU&-} zYJ$=;Trcnbt3v+wGOGZB=t`(*!wYVvb(@ZPa@2woTM-40t(jFqqP)fWo0K^;-d*tX zqo_9qz4RgoA>c&z^Ao;E5b?AMv~9|hf>E=zStGW~Fq&U3mVHeaPX&hFeVkGsm(TL- zk0I)cF)uZ!;wRR9LPBo!-_~A`x?Tw`+SO>JOGX_0in0#YKK~(g;7=T|`OZcpFVt12~} z>*cu4c>lq>x$Rl&C|F=uPUS`NGuFpj_rK>1VaQ=2eD-u4;G0x(55rGM_sXc`;^`NC zOfvo@>~h&Gf=i2L@c>jXSTKbF`sF>g2iZ<&v2P8O z>Bw7%FEda(rq~u6#n>U>P z9NAM2yPHyD<{tNphv{8l+d{B}fL**o5{xK&Ek;j^lLGV81A?#~mp^Mq zWq3!Tdxy;2dA^!y{vE#@?I+uqexFqL$2-Kr&Nc2)w&4#4kKnNtPM*77QBG<|v9rKB zNg^D@>SFXzfzmf#(%W6Eevu4?;!{-Q`S)|)27?I)?y9QcO+YxE$tlg=>P8OTxdUC* zg&=a$L?J6e1(wq%c%$2d>k~d!78*uPebss>FNRq2ntKhzh(UoN__jSE=mI0Bje9rg z2{*qrHjl%k!ett`1CF;YMqn6Uf+jBvZ26j4xXPe2l0=4-B5{YcBuoZk52#yK&mM0( zc2E|+NQx1o&@6m1B(fZMg6PG)!S}--Ze?7d`%;38v zVcRXmoK|(7`KH^a4R;!xbWC>=Ghi9SJ_`^*e}WE8 zZdmW$hpe|=qE*Ew+f3k3?jN-IZR)m_>D=)E_DaU5tlH=8Ha%GI#?s?4b6q}W4|wXf zYJq@>ik`PMtQhSYlsR9g5rW}511ZR#E=rE&x178-A=1wrqC_z{8HoVEZrySk_pD5b z;0pmA7Z7-_MAHOrOHXJBplG3RrN`=@%r1Mu?V5oV)29OixJC3+~=8afk+tF7EABRc}9DKVX zrZt1}uc(yX$F8)4U;)AUlQVgz9Ga8J7MpSnA!Aiz20oIyi#Sf zXt^;+)@(J2RsfM%EQF%rwQ5EIz3{X;RWI$F!%Dst6A~eKXqBXT)0A4|HS7CwnM!uI zHI#{?nF7-)5Z-|^@LCdYph42mU8zG*L9vsLysrRn;u>LyKYge-p>k!Y5#^AKLmO(? z`54{RUfU~Qob6-97Hk=)IyaZWmPJv|H{8XazjN5dKdjo?edg3PM)bpnOT7DlN^IV= zsTx{yJ@iKFs*WU0U3v6cL>^A7V%q{9haZM@IG=r?p1G->d8tm`^-7}s6Y$Y#yP*%F4V=rBWuq@^&8Ypb#`#Un#U$Y%i}!6;#Afg z84O9&^+}U`K1Hz>MP_610%f%3gs)U}_`wr9M_c zFjfwLqrm7Jd=quNaDr+}rRx_}BYdb}SDX+IIYDY>w!dO>eKk=eeR;7jGc z1<}(;-3uX~$40Bpy=!vps(0tm925FZFUm@ejZIOwZ*8X;i{Pe5{-&lIvdF?^^*oQR zw145_O~QLslIfFQeR`cTDS4{7MD%A3Vmwx`cM- zq!!wpXHZh=O_-dI)~X?ToW^10lT6s`Sp3Qu(>a*}?xN2F3BGGU|Fk}=#J&G6qUYo5kY8BTekIu#`3Y(L zC$o5VT0~V~E0z7=Z$JWH)5jW9&@f|VG0GJ=a4Z#PgT*hf9VH#XuVIHbZO>dU0@esb zv3QDLmHYSgyozaI`C}tC`YqF6vQojmD)>S0LJQ6bq9)U#u(R$XXt$;xB~g4_VRv6p(A#6dL3Rwb0ehrXQvsT3VL*mOU-8vxA&CX$w+kkF-!? zu<0ao+BVRE2Ab$^^Yx)-YxlKwXA2$WA7RbmR~qhZY*pz7iI2o7MlFH|_#J3kAvmoY z2@6mIt#ME80}`CdJizS-ncE}w+womM)LoXDimf;<%n}liMu+>1x{T%-G*4`S! zEbcC7Uvej-3&M#ITR@DKvU`%_d%28LS$-ShzT{O1RlDzL4oY1}`Pg)DY3vK9Vv2))LnLZ2`GQ3#jWZ`x- zfI7HXG-!6!ceGXJu6kBXw(Kf9%wk!4tO*f{oW)#5@wSWX{7||cT8Hk}a(#+DTc}yD z#c*!1S2fS5Co4aCq^Kn>+AP2@Jkl55EJsmz9yLR__X{3BhOP3DLU+jS(Z3pcnQ+pi zu8Jb$@CA!&QRqfKM_K$chFRDvRo-pz;xZrB<{+i#dg;Q(Xu(L^dg+8HjC=)tkRQhdgEY!$X_ci@h~ULpo+xDb+$?{{rDK?tUq76fmsp4x25a06 z`rF-3qeXvB9ET=}sdxbFcBnd{)q>2yI|UgZqzZnVl?|v1f4-c4F*7qlfC&8+^S(4bPb$e%BlJ>-7{Yf#a)iRd96>r=xhvV-vYdM4b zd+7}aj`w?KtcR<%xy-&ulia>Wu6dLoQDTj^Hq}3R+o0VWe=@L%a!}3+40g>K>e8n9 zkHLjrfIrFtwHlZX`-h2!jk;9BSVMnx~&`g|htkbw2_wkIUuUz4O zeGiY}$FWu=&)=V$BL$0P+Zqq2;+>li020%M_I$-BNWbEf2n}*0ZNEU2$hg}9U$1MX z?`wxNySu0~!RgRbv%4t5xUi9cs>c{?@R zDyv|->AH|wI|H$DOMOA65F#QhrbLv}# zK0>dL%^X#UBV-*Us`%LTL3)UaA95(}rXCQhFOTV8=Yjj({J0wx12SCZCI=6ua8 zqD;LbQ`W-NcspCM4X;LAEm&q8ob%)+TQsmw?zH{cbZb7puPK;kDnxku5!oF^lS6UD zC(_OX(PTx8RtRt+3hebu=4&gsY#9v&3Iud5X;uF|1LU7hN0a7p0_7*0D)D3TkfIHB zv~{^={Re@{GD-Svr6q%$oYRcPG8*)nwOm1fu8>z0(rcF{<9dP#bza7NduV2_+%r#d zBCiEQS&J`OAn!ToO3pxAw5Zs+&7ioTx4h-}BJRtl<%k{ox=9`mk zho7%NOSQJuP@1g{dK{ym8uJEZuYQZwt&<^(1v?Kkj*}!}Q-*{h3Hpe^A zbNUD{@k6;F^%uhqAB$!Co*rUlx&1dba-bmhWp4ct;<^7-K-gGW$;1kCPD^VunORM* zlFid$hX=NjFT)j7Rw~I?@Dut+(3ezNiWJ{;z?XpM=MztSLb8JJ690}~OB%_Gw7^P3 zc(o?2(sW5L4ac(vis!I_Hly=)pcfpkBgUDx4Lu$Kab$IT#iCcl#p0xZ4OH|UUNfAh`Hu&i$`p$~q!eiV1&GcjE<7z!Q zEMG?1M=tw0f%LNKJq8NLr9S3C1JY>V^u-Ki2@Jy913bFQnHE_nU%W;12+{7L{VrW| z*vr}~4#cDL_2qyozPTNlrsx6Mvc+Wr#pbn|rFPYDe;Xoy+q7r3f}S^hb5oR{Y1XOr%ThnSaC@Z9kx|B2yd{G7#qn7M z!5y0hHCj=sU#r+&cmfu$_YWE7PuiSi zXC;2!f$+Ogbe>+;U(14P3~Pq$E&&_3c~)#B$x|XD@?@}0Qb%u217J=HLQBZ#Qd~Jh zB7|i-_mgIkPEp8o<8xdHa)xh0RS6PnHHx>SkP)lgp06CPXJ3DGC+k=cBU@VCq3P&L zF9ZU$;Xh|p*39VKvNfH{hOX4iZiq<8HI>9-@ zw;Mg?nWz*FVp}yCS#vdLkR7RZfMka>awQ7G6{7*u-(*2DT&ZE!M%GkhxD?b|@?fyc z-FCO%C1P<6`79K=Ua}}=nP@J3&b&??>yID4^Sbut<_*<6fR*bT5JtvLH9)y=#*kc) zdx#LX+?lrlPCrIiASqL1=;Y{3a<}{p(pW?lZ6)_cbD{_MJr?~aX+Dr; z$&eAHIjUQJ_j;A!HVF!P@%KYu!32u|lnUJM8zQB=KN=Cg0ayM$=3n14dBFAe{`{{R z>C+M7!}4KC>(a-EiKC77KYAh3fNCyw2=xciQ{t~^EI3#E-y(w263*tRbsA6r|%2j}c(BZ3!Q3cJA%G$0q> zbUB1jnnC{44el5bC9f}!^TMI+SjKy25D0s79uv<<^)rU25WHO{{roqb1qT4b8N7E&OgY z@R&N@i+q{@2Of%xmmFKqxSVxvAG)j0a>D=yhr({aejk5JRyHGw?dq3T9GJgnf49`^ zvuxqeV#1;(Z@rcQ>0$A#pmFs$0f=A`rh@;12T0%*Znd!!A$N}8(X9pb7|Ti6(gqp2 zLTFLrRYfE|>XV=b6w$mvB#Rm2g<6V7I>|RvAFi@Ri2v`zrly@e{O!;%to&iCaOYRd?;*OPr}U z>aS<;TmFK6)zsm>Ue@0}C`pR;TQ5&+bFmh)Tl}r+$<69amj#*>1|+bI)PF-aB6JFk z2G@_%AwcdJH%C@~PmAgin~aGqfc*hvXblN+S4HfQA#n;E;--H9@?&wD@H}p`CqnP; zc`P*Uc0Xfva*PHi2pc!Ox$f-8hT;1{`>N~%oqN-E7}yK?{HA@2J8&Jq$420?11V0+ zx2efO|A>0DDmgx_$}WP}zXH-~aE1e7GMe08hYW@dgyuu*jIz@!r|xIM;p8>Eh=-WE zEu!iEgXaGxv!peYAaqbEACwq$8X5* zOs*U0;yH-ZOeR-ApYCvYZ}nVkyZG2oFI2e91IckGeG3ECm#=Mjh%oS_a_QN%b>wBb zf8!uRt38iJ-E&FJ6nJ*#3FM%DlxE*ovaRrV0^l!EEKeeHm*gl{f-@O5=sx-}jl2jq z>U7Z}zozB*FbQ-`rZAoorSY%H7Q*Z(eE1?TV25t07_h8>8&^8wZ1k%fGEm25`!dHF zd0clPgghEDq2J4jNd)fID0C#V%C$Vo98RUO1~W81EQraRJM`q!wei&tHe|RrJGd3QDsKN2z(6o`4&N!s8GFYsK=|Z?ll+g2*nu-?AvmX!?44W8-kDQM?CQ9W0|qKhHVkKS%P%_ZC@+I zfSP{HL||pzdB^>>^Ej=hVzVF@OckbX5_lYg&1`OrRR=Lvy-f~tfR2>=)H)$*Lg(pO z@GLr^d$*(hvtvd({oH%4e7ICOCe4^fro>!oGHY@zrpmFxWi$<{`b&;F)8Gw}zng`l zbC{{N^2Id*AmN+=fdCl&pu!AjrS)_3;9t>lIra+uQBd508Igl{V%Wb(!p<;l5S-+) zaPi;ox9M`zd|}xSknHr5IlxZh>Q}7Q*q9}7au0~YOGxR{Ht&GP9vTsdtUU<~4LqQy z*gqQd67@7f5Cj_j_x0_JKry2?N5|yheq>jcrMQOm0UMh2mCc8*?wGOo$II z5iKqaMf;_mK(??l#Z?O$1J!kIVPNu`@FH^K*LEhTeN!cI;#+{Gh<94ZPp-Mx*ewgE4=D=hKg?fcl z=uTx0$|Y?ogOzkhv_jFWPs>nG)kwxN6`O~I2VE_%NI9@%0!-_cpudNwi^EH@{x|_e zu>e)EAeV`NnM)D6uPxu_p|yr#II^9G!@<%B0g)TZuAY*&i&jXO#GH&wS@vmY5S3gI zCXWlO4?WMBemE{>`8N%@04AY!^#GGJZJR)M`j2Cx90=Mb24ScBE;l@}p+%0!r^hG& zWnqLd22GNLG0IVf2%0jrr}hE=>ki|M;4x$LJ2{D07+4|kLh)g41^}uQTQR5>Zx=Bw zJp&HLqzJ(a^<3Z=HZN90H3>LdKKXYO`@vrZ#$x^iq_xIy6T) tg?)Ny5r_6u8w9&$w%)naEQK2iq&_LJ&cQfP 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 literal 0 HcmV?d00001 diff --git a/assets/fonts/outfit/outfit-v11-latin-900.woff2 b/assets/fonts/outfit/outfit-v11-latin-900.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..a8ad618c2ccf44b488ec128e0fc09da87b9c07eb GIT binary patch literal 13500 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 literal 0 HcmV?d00001 diff --git a/assets/fonts/outfit/outfit-v11-latin-regular.woff2 b/assets/fonts/outfit/outfit-v11-latin-regular.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..6cfe639bdc82f2bb61a005c9c809fe877daf27f1 GIT binary patch literal 14084 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 k5|b`8XV^*PkAk + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/whois/whois.ttf b/assets/fonts/whois/whois.ttf new file mode 100644 index 0000000000000000000000000000000000000000..00781e9bdc1b05e759d1922d2a397967d5d81956 GIT binary patch literal 5360 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 literal 0 HcmV?d00001 diff --git a/assets/fonts/whois/whois.woff2 b/assets/fonts/whois/whois.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..d037f44da7120607f00782ef6f42fc30c24a69bf GIT binary patch literal 2836 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 literal 0 HcmV?d00001 diff --git a/assets/style/components/faq.css b/assets/style/components/faq.css new file mode 100644 index 0000000..b76e85f --- /dev/null +++ b/assets/style/components/faq.css @@ -0,0 +1,72 @@ +.faq { + max-width: 38rem; + padding: 2rem 0; + margin: 0 auto; + + h2 { + font-size: 2rem; + font-weight: 600; + margin: 0 0 2rem 0; + } + + details { + border: .1rem solid var(--w-color); + border-bottom: none; + scroll-margin-top: 5.25rem; + + p { + font-size: 1.1rem; + font-weight: 300; + line-height: 1.65rem; + padding: 0 2.5rem 1.5rem 1.5rem; + margin: 0; + } + + &:first-of-type { + border-radius: .375rem .375rem 0 0; + } + + &:last-of-type { + border: .1rem solid var(--w-color); + border-radius: 0 0 .375rem .375rem; + } + + &[open] { + min-height: 4rem; + + .icon-chevron-up { + display: initial; + transition: .3s ease; + } + + .icon-chevron-down { + display: none; + } + } + } + + summary { + font-weight: 600; + line-height: 1.5rem; + padding: 1rem 1.5rem; + } + + summary { + display: flex; + justify-content: space-between; + align-items: center; + cursor: pointer; + + &:focus { + outline: none; + } + + &::-webkit-details-marker { + display: none + } + } + + .icon-chevron-up { + display: none; + } +} \ No newline at end of file diff --git a/assets/style/components/footer.css b/assets/style/components/footer.css new file mode 100644 index 0000000..278984a --- /dev/null +++ b/assets/style/components/footer.css @@ -0,0 +1,158 @@ +footer { + + .top, + .bottom { + display: grid; + max-width: 58rem; + margin: 0 auto; + } + + .top { + grid-template-columns: 2fr repeat(3, 1fr); + padding: 4rem 4rem 2rem 4rem; + + .links, + .message { + list-style-type: none; + white-space:nowrap; + padding: 0; + } + + .message { + margin: 0; + + .logo { + width: 8rem; + height: 2.25rem; + + img { + max-width: 100%; + } + } + + .social { + padding: .75rem .3rem; + + .icon { + display: inline-block; + + a { + display: block; + width: 2rem; + height: 2rem; + border: .1rem solid var(--br-color); + border-radius: var(--radius); + padding: .4rem .375rem; + margin: 0 .25rem; + + span { + font-size: 1.1rem; + } + + &:hover { + background: var(--brh-color); + } + } + } + + .gab a { + padding: .4rem .325rem; + } + + .minds a { + padding: .4rem .525rem; + } + + .twitter, + .dribbble, + .rss { + a { + padding: .45rem .375rem; + } + } + + @-moz-document url-prefix() { + + .icon a { + padding: .4rem .375rem; + margin: 0 .25rem; + } + + .gab a { + padding: .4rem .325rem; + } + + .minds a { + padding: .4rem .525rem; + } + + .discuss a { + top: .05rem; + + span { + font-size: 1.2rem; + } + } + } + } + } + + .links { + margin: 0; + + h4 { + color: var(--ft-color); + font-size: 1rem; + font-weight: 500; + padding: 0; + margin: .2rem 0 1rem 0; + } + + li { + margin: .5rem 0; + + &:first-of-type { margin: 0 } + + a { + color: var(--f-color); + font-size: 1.1rem; + font-weight: 600; + + &:hover { text-decoration: underline } + } + } + } + } + + .bottom { + grid-template-columns: 2fr 1fr; + padding: 2rem 4rem 4rem 4.5rem; + + p { + color: var(--f-color); + } + + .pitch { + grid-row: 1; + font-size: 1.25rem; + font-weight: 600; + margin: 0 0 .5rem 0; + } + + .copy, + .tagline { + grid-row: 2; + font-size: .85rem; + font-weight: 500; + margin: 0; + } + + .copy { + text-align: right; + + .icon-copyright { + font-size: .7rem; + } + } + } +} \ No newline at end of file diff --git a/assets/style/components/header.css b/assets/style/components/header.css new file mode 100644 index 0000000..9fa2c09 --- /dev/null +++ b/assets/style/components/header.css @@ -0,0 +1,55 @@ +header { + width: 100%; + background: var(--b-color); + + .head { + display: grid; + grid-template-columns: 8rem calc(100% - 28rem) 20rem; + max-width: 58rem; + padding: 2rem 4rem; + margin: 0 auto; + + .logo { + width: 8rem; + height: 2.25rem; + margin: .25rem 0; + + img { + max-width: 100%; + } + } + + .cta { + list-style-type: none; + white-space: nowrap; + padding: 0; + margin: 0; + } + + .cta { + grid-column: 3; + + .secondary { + float: right; + margin: 0; + + a { + display: inline-block; + font-size: 1.1rem; + font-weight: 600; + border-radius: var(--radius-full); + padding: .75rem 1.15rem .75rem 1.15rem; + margin: 0; + } + } + + .secondary a { + color: var(--fs-color); + + &:hover { + color: var(--w-color); + } + } + } + } +} \ No newline at end of file diff --git a/assets/style/components/products.css b/assets/style/components/products.css new file mode 100644 index 0000000..9f57b18 --- /dev/null +++ b/assets/style/components/products.css @@ -0,0 +1,39 @@ +.products { + display: grid; + grid-template-columns: repeat(2, 1fr); + grid-gap: 0 1.5rem; + max-width: 38rem; + padding: 4rem 0; + margin: 0 auto; + + h2 { + grid-column: 1/3; + font-size: 2rem; + font-weight: 600; + margin: 0 0 2rem 0; + } + + a { + display: inline-block; + padding: 1rem 1.25rem 1.25rem 1.25rem; + border: .1rem solid var(--w-color); + border-radius: var(--radius); + + h3 { + font-size: 1.1rem; + font-weight: 600; + line-height: 1.5rem; + margin: 0; + } + + p { + line-height: 1.5rem; + padding: .5rem 0 0 0; + margin: 0; + } + + &:hover { + border-color: var(--s-color); + } + } +} \ No newline at end of file diff --git a/assets/style/components/search.css b/assets/style/components/search.css new file mode 100644 index 0000000..07335f2 --- /dev/null +++ b/assets/style/components/search.css @@ -0,0 +1,74 @@ +.search { + max-width: 38rem; + padding: 2rem 0 0 0; + margin: 0 auto; + + h1 { + color: var(--f-color); + font-size: 2.75rem; + font-weight: 700; + margin: 1rem 0; + text-align: center; + } + + form { + padding: 1rem; + + .btn, + .input input { + background: var(--b-color); + font-family: var(--p-font); + border: .1rem solid var(--br-color); + border-radius: var(--radius); + box-shadow: none; + } + + .input { + display: inline-block; + width: 72.5%; + + label { + display: block; + font-size: 1rem; + font-weight: 400; + } + + input { + width: calc(100% - .5rem); + font-size: 1rem; + font-weight: 400; + padding: .75rem 1rem; + margin: .5rem 0 .75rem .5rem; + outline: none; + box-shadow: none; + + &::placeholder { + color: var(--f-color); + font-family: var(--p-font); + } + } + } + + .btn { + display: inline-block; + width: 24%; + color: var(--fs-color); + font-size: 1rem; + font-weight: 600; + padding: .75rem 2rem .75rem 1rem; + margin: 0 0 0 .75rem; + box-shadow: none; + text-align: center; + + &:hover { + cursor: pointer; + background: var(--brh-color); + } + + span { + position: absolute; + margin: .2rem 0 0 .35rem; + } + } + } +} \ No newline at end of file diff --git a/assets/style/config.css b/assets/style/config.css new file mode 100644 index 0000000..d7ad820 --- /dev/null +++ b/assets/style/config.css @@ -0,0 +1,45 @@ +:root { + /* Font Stack */ + --p-font: 'Outfit', sans-serif; + --s-font: Arial, sans-serif; + + /* Primary Colors */ + --b-color: #010805; /* background */ + --s-color: #14c670; /* secondary */ + --t-color: #0e8b4e; /* trinary */ + --q-color: #14c6702d; /* quaternary */ + + --w-color: #ffffff; /* white */ + --bl-color: #000000; /* black */ + --hr-color: #23ff951e; /* hr */ + + --l-color: #e8fff4; /* link */ + --la-color: #14c670; /* link alt */ + + --i-color: #14c670; /* input */ + --if-color: #14c16d; /* input focus */ + --br-color: #12b365; /* border */ + --brh-color: #042816; /* border hover */ + --marker: #e8fff45d; + + /* Buttons */ + --btn-bg: #14c670; /* btn background */ + --btn-hover: #11a85f; /* btn hover */ + + --cbtn-bg: #14c6706c; /* card btn hover */ + --cbtn-hover: #14c6708a; /* card btn hover */ + + --sbtn-bg: #e8fff44a; /* card sbtn hover */ + --sbtn-hover: #e8fff46a; /* card sbtn hover */ + + --radius: .375rem; + --radius-one: 1rem; + --radius-full: 99rem; + + /* Font Colors */ + --f-color: #e8fff4; /* primary */ + --fs-color: #e8fff4de; /* secondary */ + --ft-color: #e8fff4b2; /* trinary */ + + --h-color: #43d18c88; /* text highlight */ +} \ No newline at end of file diff --git a/assets/style/fonts.css b/assets/style/fonts.css new file mode 100644 index 0000000..39a3b1b --- /dev/null +++ b/assets/style/fonts.css @@ -0,0 +1,114 @@ +/* outfit-300 - latin */ +@font-face { + font-display: swap; + font-family: 'Outfit'; + font-style: normal; + font-weight: 300; + src: url('/assets/fonts/outfit/outfit-v11-latin-300.woff2') format('woff2'); +} + +/* outfit-regular - latin */ +@font-face { + font-display: swap; + font-family: 'Outfit'; + font-style: normal; + font-weight: 400; + src: url('/assets/fonts/outfit/outfit-v11-latin-regular.woff2') format('woff2'); +} + +/* outfit-500 - latin */ +@font-face { + font-display: swap; + font-family: 'Outfit'; + font-style: normal; + font-weight: 500; + src: url('/assets/fonts/outfit/outfit-v11-latin-500.woff2') format('woff2'); +} + +/* outfit-600 - latin */ +@font-face { + font-display: swap; + font-family: 'Outfit'; + font-style: normal; + font-weight: 600; + src: url('/assets/fonts/outfit/outfit-v11-latin-600.woff2') format('woff2'); +} + +/* outfit-700 - latin */ +@font-face { + font-display: swap; + font-family: 'Outfit'; + font-style: normal; + font-weight: 700; + src: url('/assets/fonts/outfit/outfit-v11-latin-700.woff2') format('woff2'); +} + +/* outfit-800 - latin */ +@font-face { + font-display: swap; + font-family: 'Outfit'; + font-style: normal; + font-weight: 800; + src: url('/assets/fonts/outfit/outfit-v11-latin-800.woff2') format('woff2'); +} + +@font-face { + font-family: 'whois'; + src: url('/assets/fonts/whois/whois.eot?7l02ld'); + src: url('/assets/fonts/whois/whois.eot?7l02ld#iefix') format('embedded-opentype'), + url('/assets/fonts/whois/whois.woff2?7l02ld') format('woff2'), + url('/assets/fonts/whois/whois.ttf?7l02ld') format('truetype'), + url('/assets/fonts/whois/whois.woff?7l02ld') format('woff'), + url('/assets/fonts/whois/whois.svg?7l02ld#whois') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="icon-"], [class*=" icon-"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'whois' !important; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-arrow-left:before { + content: "\e900"; +} +.icon-arrow-right:before { + content: "\e901"; +} +.icon-chevron-down:before { + content: "\e902"; +} +.icon-chevron-up:before { + content: "\e903"; +} +.icon-copyright:before { + content: "\e904"; +} +.icon-discuss:before { + content: "\e905"; +} +.icon-dribbble:before { + content: "\e906"; +} +.icon-gab:before { + content: "\e907"; +} +.icon-minds:before { + content: "\e908"; +} +.icon-rss:before { + content: "\e909"; +} +.icon-x:before { + content: "\e90b"; +} \ No newline at end of file diff --git a/assets/style/main.css b/assets/style/main.css new file mode 100644 index 0000000..e74237f --- /dev/null +++ b/assets/style/main.css @@ -0,0 +1,56 @@ +body { + background: var(--b-color); + margin: 0; +} + +html { + scroll-behavior: smooth; + color-scheme: dark; +} + +main { + min-height: calc(100vh - 32.75rem); + margin: 0 auto; +} + +.center { + max-width: 36rem; + margin: 0 auto; +} + +*, +*:after, +*:before { + box-sizing: border-box; + + &:focus { + outline: none; + } +} + +a, +p, +b, +h1, +h2, +h3, +h4, +h5, +h6, +li, +span, +label, +summary { + color: var(--f-color); + font-family: var(--p-font); + font-weight: 400; +} + +a { + text-decoration: none; + text-underline-offset: .05rem; +} + +::selection { + background: var(--h-color); +} \ No newline at end of file diff --git a/assets/style/pages/error.css b/assets/style/pages/error.css new file mode 100644 index 0000000..c3ce5fe --- /dev/null +++ b/assets/style/pages/error.css @@ -0,0 +1,35 @@ +.error { + text-align: center; + padding: 6rem 0; + + h1, + h2, + a { + color: var(--w-color); + padding: 0; + margin: 1rem 0; + } + + h1 { + font-size: 4rem; + font-weight: 600; + } + + h2 { + font-size: 1.75rem; + } + + a { + display: inline-block; + color: var(--f-color); + border: .15rem solid var(--br-color); + border-radius: var(--radius-full); + font-size: 1rem; + font-weight: 600; + padding: .65rem 1.5rem .75rem 1.5rem; + + &:hover { + background: var(--brh-color); + } + } +} \ No newline at end of file diff --git a/assets/style/pages/index.css b/assets/style/pages/index.css new file mode 100644 index 0000000..f229f45 --- /dev/null +++ b/assets/style/pages/index.css @@ -0,0 +1,10 @@ +.index { + max-width: 38rem; + padding: 2rem 0 4rem 0; + margin: 0 auto; + + .about { + margin: 0 0 2rem 0; + text-align: center; + } +} \ No newline at end of file diff --git a/assets/style/pages/pages.css b/assets/style/pages/pages.css new file mode 100644 index 0000000..d2647be --- /dev/null +++ b/assets/style/pages/pages.css @@ -0,0 +1,39 @@ +.index, +.results { + + h1, + h2, + p { + color: var(--f-color); + } + + h1 { + font-size: 2.75rem; + font-weight: 700; + margin: 1rem 0; + } + + p { + color: var(--fs-color); + font-size: 1.15rem; + font-weight: 300; + line-height: 1.65rem; + margin: 0 0 1rem 0; + + a { + position: relative; + color: var(--s-color); + font-weight: 300; + + &:after { + content: ""; + position: absolute; + width: 100%; + bottom: -1px; + left: 0; + right: 0; + border-bottom: 0.15rem dotted var(--f-color); + } + } + } +} \ No newline at end of file diff --git a/assets/style/pages/results.css b/assets/style/pages/results.css new file mode 100644 index 0000000..8d2f2be --- /dev/null +++ b/assets/style/pages/results.css @@ -0,0 +1,84 @@ +.results { + padding: 2rem 0 4rem 0; + + .unknown, + .register, + .registered { + max-width: 35rem; + background: var(--q-color); + padding: 1rem; + margin: 0 auto; + border-left: .2rem solid var(--s-color); + + b a { + position: relative; + color: var(--s-color); + + &:after { + content: ""; + position: absolute; + width: 100%; + bottom: -1px; + left: 0; + right: 0; + border-bottom: 0.15rem dotted var(--f-color); + } + } + } + + .whois { + max-width: 42rem; + margin: 5rem auto 3rem auto; + + h2, + p { + text-align: left; + } + + h2 { + font-size: 2rem; + font-weight: 600; + margin: 1rem .5rem; + } + + .details { + padding: 2rem; + border: .1rem solid var(--w-color); + border-radius: var(--radius); + + p { + font-size: 1.1rem; + line-height: 1.5rem; + margin: .25rem; + } + } + } + + .loading { + max-width: 6rem; + margin: 2rem auto; + + .square { + animation: loading 1.5s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite; + } + + .square { + width: 1.25rem; + height: 1.25rem; + background-color: var(--s-color); + border-radius: 0.25rem; + } + } +} + +@keyframes loading { + 0% { + transform: translate(0, 0) rotate(0deg); + } + 50% { + transform: translate(70px, 0) rotate(360deg); + } + 100% { + transform: translate(0, 0) rotate(0deg); + } +} \ No newline at end of file diff --git a/assets/style/style.css b/assets/style/style.css new file mode 100644 index 0000000..ecd27c0 --- /dev/null +++ b/assets/style/style.css @@ -0,0 +1,22 @@ +@import 'fonts'; +@import 'config'; + +/* Base style */ +@import 'main'; + +/* Pages */ +@import 'pages/error'; +@import 'pages/pages'; + +/* Index */ +@import 'pages/index'; + +/* Results */ +@import 'pages/results'; + +/* Components */ +@import 'components/header'; +@import 'components/footer'; +@import 'components/search'; +@import 'components/products'; +@import 'components/faq'; \ No newline at end of file diff --git a/components/Faq.vue b/components/Faq.vue new file mode 100644 index 0000000..28b0295 --- /dev/null +++ b/components/Faq.vue @@ -0,0 +1,40 @@ + \ No newline at end of file diff --git a/components/Footer.vue b/components/Footer.vue new file mode 100644 index 0000000..b161012 --- /dev/null +++ b/components/Footer.vue @@ -0,0 +1,73 @@ + + + \ No newline at end of file diff --git a/components/Header.vue b/components/Header.vue new file mode 100644 index 0000000..02c0a4f --- /dev/null +++ b/components/Header.vue @@ -0,0 +1,16 @@ + + + \ No newline at end of file diff --git a/components/Products.vue b/components/Products.vue new file mode 100644 index 0000000..fe7a23c --- /dev/null +++ b/components/Products.vue @@ -0,0 +1,17 @@ + + + \ No newline at end of file diff --git a/components/Search.vue b/components/Search.vue new file mode 100644 index 0000000..cfa6613 --- /dev/null +++ b/components/Search.vue @@ -0,0 +1,24 @@ + + + \ No newline at end of file diff --git a/composables/hostname.js b/composables/hostname.js new file mode 100644 index 0000000..d01059d --- /dev/null +++ b/composables/hostname.js @@ -0,0 +1,10 @@ +export default function () { + const url = useRequestURL() + const config = useRuntimeConfig() + + if (url.hostname === 'tinysites') { + return useState('host', () => config.public.HNS) + } else { + return useState('host', () => config.public.DNS) + } +} \ No newline at end of file diff --git a/composables/zones.js b/composables/zones.js new file mode 100644 index 0000000..0837b75 --- /dev/null +++ b/composables/zones.js @@ -0,0 +1,4 @@ +export default function (tld) { + const zones = ['nh','xdx','sites','epoch','central','mixtape','girlfriend','biography','helloworld','site.ws','sites.page'] + return zones.includes(tld) +} \ No newline at end of file diff --git a/error.vue b/error.vue new file mode 100644 index 0000000..0f23097 --- /dev/null +++ b/error.vue @@ -0,0 +1,35 @@ + + + diff --git a/nuxt.config.ts b/nuxt.config.ts new file mode 100644 index 0000000..4b84ac8 --- /dev/null +++ b/nuxt.config.ts @@ -0,0 +1,37 @@ +// https://nuxt.com/docs/api/configuration/nuxt-config +export default defineNuxtConfig({ + devtools: { enabled: false }, + + modules: [ + '@nuxtjs/device', + 'nuxt-directus', + ], + + directus: { + url: process.env.DIRECTUS_URL, + token: process.env.DIRECTUS_TOKEN, + autoFetch: true, + }, + + css: [ + "~/assets/style/style.css", + ], + + postcss: { + plugins: { + 'postcss-import': {}, + 'postcss-nested': {}, + 'postcss-hexrgba': {}, + } + }, + + runtimeConfig: { + public: { + HNS: process.env.HNS, + DNS: process.env.DNS, + }, + }, + + telemetry: false, + compatibilityDate: '2024-07-31' +}) \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..2273491 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,9689 @@ +{ + "name": "whois", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "whois", + "version": "1.0.0", + "hasInstallScript": true, + "license": "GPL-3.0-only", + "dependencies": { + "nuxt-directus": "^5.6.1" + }, + "devDependencies": { + "@nuxtjs/device": "^3.1.1", + "nuxt": "^3.12.4", + "postcss-hexrgba": "^2.1.0", + "postcss-import": "^16.1.0", + "postcss-nested": "^6.2.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.10", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz", + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", + "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", + "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "dependencies": { + "@babel/types": "^7.25.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "dependencies": { + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", + "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "dependencies": { + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", + "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", + "dependencies": { + "@babel/types": "^7.25.2" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-decorators": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", + "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", + "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/standalone": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.25.3.tgz", + "integrity": "sha512-uR+EoBqIIIvKGCG7fOj7HKupu3zVObiMfdEwoPZfVCPpcWJaZ1PkshaP5/6cl6BKAm1Zcv25O1rf+uoQ7V8nqA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", + "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.2", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", + "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cloudflare/kv-asset-handler": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.4.tgz", + "integrity": "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==", + "dev": true, + "dependencies": { + "mime": "^3.0.0" + }, + "engines": { + "node": ">=16.13" + } + }, + "node_modules/@cloudflare/kv-asset-handler/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.0.tgz", + "integrity": "sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.0.tgz", + "integrity": "sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.0.tgz", + "integrity": "sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.0.tgz", + "integrity": "sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.0.tgz", + "integrity": "sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.0.tgz", + "integrity": "sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.0.tgz", + "integrity": "sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.0.tgz", + "integrity": "sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.0.tgz", + "integrity": "sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.0.tgz", + "integrity": "sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.0.tgz", + "integrity": "sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.0.tgz", + "integrity": "sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.0.tgz", + "integrity": "sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.0.tgz", + "integrity": "sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.0.tgz", + "integrity": "sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.0.tgz", + "integrity": "sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.0.tgz", + "integrity": "sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.0.tgz", + "integrity": "sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.0.tgz", + "integrity": "sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.0.tgz", + "integrity": "sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.0.tgz", + "integrity": "sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.0.tgz", + "integrity": "sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.0.tgz", + "integrity": "sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.0.tgz", + "integrity": "sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@fastify/busboy": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", + "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@ioredis/commands": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", + "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==", + "dev": true + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@kwsites/file-exists": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz", + "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1" + } + }, + "node_modules/@kwsites/promise-deferred": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz", + "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==", + "dev": true + }, + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/@netlify/functions": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-2.8.1.tgz", + "integrity": "sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==", + "dev": true, + "dependencies": { + "@netlify/serverless-functions-api": "1.19.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@netlify/node-cookies": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz", + "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==", + "dev": true, + "engines": { + "node": "^14.16.0 || >=16.0.0" + } + }, + "node_modules/@netlify/serverless-functions-api": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.19.1.tgz", + "integrity": "sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==", + "dev": true, + "dependencies": { + "@netlify/node-cookies": "^0.1.0", + "urlpattern-polyfill": "8.0.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nuxt/devalue": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", + "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==", + "dev": true + }, + "node_modules/@nuxt/devtools": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/@nuxt/devtools/-/devtools-1.3.9.tgz", + "integrity": "sha512-tFKlbUPgSXw4tyD8xpztQtJeVn3egdKbFCV0xc92FbfGbclAyaa3XhKA2tMWXEGZQpykAWMRNrGWN24FtXFA6Q==", + "dev": true, + "dependencies": { + "@antfu/utils": "^0.7.10", + "@nuxt/devtools-kit": "1.3.9", + "@nuxt/devtools-wizard": "1.3.9", + "@nuxt/kit": "^3.12.2", + "@vue/devtools-core": "7.3.3", + "@vue/devtools-kit": "7.3.3", + "birpc": "^0.2.17", + "consola": "^3.2.3", + "cronstrue": "^2.50.0", + "destr": "^2.0.3", + "error-stack-parser-es": "^0.1.4", + "execa": "^7.2.0", + "fast-glob": "^3.3.2", + "fast-npm-meta": "^0.1.1", + "flatted": "^3.3.1", + "get-port-please": "^3.1.2", + "hookable": "^5.5.3", + "image-meta": "^0.2.0", + "is-installed-globally": "^1.0.0", + "launch-editor": "^2.8.0", + "local-pkg": "^0.5.0", + "magicast": "^0.3.4", + "nypm": "^0.3.9", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.2", + "rc9": "^2.1.2", + "scule": "^1.3.0", + "semver": "^7.6.2", + "simple-git": "^3.25.0", + "sirv": "^2.0.4", + "unimport": "^3.7.2", + "vite-plugin-inspect": "^0.8.4", + "vite-plugin-vue-inspector": "^5.1.2", + "which": "^3.0.1", + "ws": "^8.17.1" + }, + "bin": { + "devtools": "cli.mjs" + }, + "peerDependencies": { + "vite": "*" + } + }, + "node_modules/@nuxt/devtools-kit": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-1.3.9.tgz", + "integrity": "sha512-tgr/F+4BbI53/JxgaXl3cuV9dMuCXMsd4GEXN+JqtCdAkDbH3wL79GGWx0/6I9acGzRsB6UZ1H6U96nfgcIrAw==", + "dev": true, + "dependencies": { + "@nuxt/kit": "^3.12.2", + "@nuxt/schema": "^3.12.3", + "execa": "^7.2.0" + }, + "peerDependencies": { + "vite": "*" + } + }, + "node_modules/@nuxt/devtools-wizard": { + "version": "1.3.9", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-1.3.9.tgz", + "integrity": "sha512-WMgwWWuyng+Y6k7sfBI95wYnec8TPFkuYbHHOlYQgqE9dAewPisSbEm3WkB7p/W9UqxpN8mvKN5qUg4sTmEpgQ==", + "dev": true, + "dependencies": { + "consola": "^3.2.3", + "diff": "^5.2.0", + "execa": "^7.2.0", + "global-directory": "^4.0.1", + "magicast": "^0.3.4", + "pathe": "^1.1.2", + "pkg-types": "^1.1.2", + "prompts": "^2.4.2", + "rc9": "^2.1.2", + "semver": "^7.6.2" + }, + "bin": { + "devtools-wizard": "cli.mjs" + } + }, + "node_modules/@nuxt/kit": { + "version": "3.12.4", + "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.12.4.tgz", + "integrity": "sha512-aNRD1ylzijY0oYolldNcZJXVyxdGzNTl+Xd0UYyFQCu9f4wqUZqQ9l+b7arCEzchr96pMK0xdpvLcS3xo1wDcw==", + "dependencies": { + "@nuxt/schema": "3.12.4", + "c12": "^1.11.1", + "consola": "^3.2.3", + "defu": "^6.1.4", + "destr": "^2.0.3", + "globby": "^14.0.2", + "hash-sum": "^2.0.0", + "ignore": "^5.3.1", + "jiti": "^1.21.6", + "klona": "^2.0.6", + "knitwork": "^1.1.0", + "mlly": "^1.7.1", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "scule": "^1.3.0", + "semver": "^7.6.3", + "ufo": "^1.5.4", + "unctx": "^2.3.1", + "unimport": "^3.9.0", + "untyped": "^1.4.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/schema": { + "version": "3.12.4", + "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.12.4.tgz", + "integrity": "sha512-H7FwBV4ChssMaeiLyPdVLOLUa0326ebp3pNbJfGgFt7rSoKh1MmgjorecA8JMxOQZziy3w6EELf4+5cgLh/F1w==", + "dependencies": { + "compatx": "^0.1.8", + "consola": "^3.2.3", + "defu": "^6.1.4", + "hookable": "^5.5.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "scule": "^1.3.0", + "std-env": "^3.7.0", + "ufo": "^1.5.4", + "uncrypto": "^0.1.3", + "unimport": "^3.9.0", + "untyped": "^1.4.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/telemetry": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.5.4.tgz", + "integrity": "sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==", + "dev": true, + "dependencies": { + "@nuxt/kit": "^3.11.2", + "ci-info": "^4.0.0", + "consola": "^3.2.3", + "create-require": "^1.1.1", + "defu": "^6.1.4", + "destr": "^2.0.3", + "dotenv": "^16.4.5", + "git-url-parse": "^14.0.0", + "is-docker": "^3.0.0", + "jiti": "^1.21.0", + "mri": "^1.2.0", + "nanoid": "^5.0.7", + "ofetch": "^1.3.4", + "parse-git-config": "^3.0.0", + "pathe": "^1.1.2", + "rc9": "^2.1.2", + "std-env": "^3.7.0" + }, + "bin": { + "nuxt-telemetry": "bin/nuxt-telemetry.mjs" + } + }, + "node_modules/@nuxt/vite-builder": { + "version": "3.12.4", + "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.12.4.tgz", + "integrity": "sha512-5v3y6SkshJurZYJWHtc7+NGeCgptsreCSguBCZVzJxYdsPFdMicLoxjTt8IGAHWjkGVONrX+K8NBSFFgnx40jQ==", + "dev": true, + "dependencies": { + "@nuxt/kit": "3.12.4", + "@rollup/plugin-replace": "^5.0.7", + "@vitejs/plugin-vue": "^5.0.5", + "@vitejs/plugin-vue-jsx": "^4.0.0", + "autoprefixer": "^10.4.19", + "clear": "^0.1.0", + "consola": "^3.2.3", + "cssnano": "^7.0.4", + "defu": "^6.1.4", + "esbuild": "^0.23.0", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "externality": "^1.0.2", + "get-port-please": "^3.1.2", + "h3": "^1.12.0", + "knitwork": "^1.1.0", + "magic-string": "^0.30.10", + "mlly": "^1.7.1", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.3", + "postcss": "^8.4.39", + "rollup-plugin-visualizer": "^5.12.0", + "std-env": "^3.7.0", + "strip-literal": "^2.1.0", + "ufo": "^1.5.4", + "unenv": "^1.10.0", + "unplugin": "^1.11.0", + "vite": "^5.3.4", + "vite-node": "^2.0.3", + "vite-plugin-checker": "^0.7.2", + "vue-bundle-renderer": "^2.1.0" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + }, + "peerDependencies": { + "vue": "^3.3.4" + } + }, + "node_modules/@nuxtjs/device": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@nuxtjs/device/-/device-3.1.1.tgz", + "integrity": "sha512-wHTziEevt1hdgePQwPhEedWW3COalhP0YGVB+sGLqSrKujX8vdz7lcBFB01KIftpaP8kY5H8pssibNaJbxGcYw==", + "dev": true, + "dependencies": { + "@nuxt/kit": "^3.7.3", + "defu": "^6.1.2" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", + "dev": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-wasm": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz", + "integrity": "sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==", + "bundleDependencies": [ + "napi-wasm" + ], + "dev": true, + "dependencies": { + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "napi-wasm": "^1.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher/node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.25", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", + "integrity": "sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==", + "dev": true + }, + "node_modules/@rollup/plugin-alias": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz", + "integrity": "sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==", + "dev": true, + "dependencies": { + "slash": "^4.0.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-alias/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@rollup/plugin-commonjs": { + "version": "25.0.8", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.8.tgz", + "integrity": "sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "commondir": "^1.0.1", + "estree-walker": "^2.0.2", + "glob": "^8.0.3", + "is-reference": "1.2.1", + "magic-string": "^0.30.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.68.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@rollup/plugin-inject": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz", + "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-inject/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@rollup/plugin-json": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", + "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.1.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.2.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", + "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-builtin-module": "^3.2.1", + "is-module": "^1.0.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz", + "integrity": "sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "magic-string": "^0.30.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-terser": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", + "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", + "dev": true, + "dependencies": { + "serialize-javascript": "^6.0.1", + "smob": "^1.0.0", + "terser": "^5.17.4" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.19.1.tgz", + "integrity": "sha512-XzqSg714++M+FXhHfXpS1tDnNZNpgxxuGZWlRG/jSj+VEPmZ0yg6jV4E0AL3uyBKxO8mO3xtOsP5mQ+XLfrlww==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.19.1.tgz", + "integrity": "sha512-thFUbkHteM20BGShD6P08aungq4irbIZKUNbG70LN8RkO7YztcGPiKTTGZS7Kw+x5h8hOXs0i4OaHwFxlpQN6A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.19.1.tgz", + "integrity": "sha512-8o6eqeFZzVLia2hKPUZk4jdE3zW7LCcZr+MD18tXkgBBid3lssGVAYuox8x6YHoEPDdDa9ixTaStcmx88lio5Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.19.1.tgz", + "integrity": "sha512-4T42heKsnbjkn7ovYiAdDVRRWZLU9Kmhdt6HafZxFcUdpjlBlxj4wDrt1yFWLk7G4+E+8p2C9tcmSu0KA6auGA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.19.1.tgz", + "integrity": "sha512-MXg1xp+e5GhZ3Vit1gGEyoC+dyQUBy2JgVQ+3hUrD9wZMkUw/ywgkpK7oZgnB6kPpGrxJ41clkPPnsknuD6M2Q==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.19.1.tgz", + "integrity": "sha512-DZNLwIY4ftPSRVkJEaxYkq7u2zel7aah57HESuNkUnz+3bZHxwkCUkrfS2IWC1sxK6F2QNIR0Qr/YXw7nkF3Pw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.19.1.tgz", + "integrity": "sha512-C7evongnjyxdngSDRRSQv5GvyfISizgtk9RM+z2biV5kY6S/NF/wta7K+DanmktC5DkuaJQgoKGf7KUDmA7RUw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.19.1.tgz", + "integrity": "sha512-89tFWqxfxLLHkAthAcrTs9etAoBFRduNfWdl2xUs/yLV+7XDrJ5yuXMHptNqf1Zw0UCA3cAutkAiAokYCkaPtw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.19.1.tgz", + "integrity": "sha512-PromGeV50sq+YfaisG8W3fd+Cl6mnOOiNv2qKKqKCpiiEke2KiKVyDqG/Mb9GWKbYMHj5a01fq/qlUR28PFhCQ==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.19.1.tgz", + "integrity": "sha512-/1BmHYh+iz0cNCP0oHCuF8CSiNj0JOGf0jRlSo3L/FAyZyG2rGBuKpkZVH9YF+x58r1jgWxvm1aRg3DHrLDt6A==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.19.1.tgz", + "integrity": "sha512-0cYP5rGkQWRZKy9/HtsWVStLXzCF3cCBTRI+qRL8Z+wkYlqN7zrSYm6FuY5Kd5ysS5aH0q5lVgb/WbG4jqXN1Q==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.19.1.tgz", + "integrity": "sha512-XUXeI9eM8rMP8aGvii/aOOiMvTs7xlCosq9xCjcqI9+5hBxtjDpD+7Abm1ZhVIFE1J2h2VIg0t2DX/gjespC2Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.19.1.tgz", + "integrity": "sha512-V7cBw/cKXMfEVhpSvVZhC+iGifD6U1zJ4tbibjjN+Xi3blSXaj/rJynAkCFFQfoG6VZrAiP7uGVzL440Q6Me2Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.19.1.tgz", + "integrity": "sha512-88brja2vldW/76jWATlBqHEoGjJLRnP0WOEKAUbMcXaAZnemNhlAHSyj4jIwMoP2T750LE9lblvD4e2jXleZsA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.19.1.tgz", + "integrity": "sha512-LdxxcqRVSXi6k6JUrTah1rHuaupoeuiv38du8Mt4r4IPer3kwlTo+RuvfE8KzZ/tL6BhaPlzJ3835i6CxrFIRQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.19.1.tgz", + "integrity": "sha512-2bIrL28PcK3YCqD9anGxDxamxdiJAxA+l7fWIwM5o8UqNy1t3d1NdAweO2XhA0KTDJ5aH1FsuiT5+7VhtHliXg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "22.0.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.2.tgz", + "integrity": "sha512-yPL6DyFwY5PiMVEwymNeqUTKsDczQBJ/5T7W/46RwLU/VH+AA8aT5TZkvBviLKLbbm0hlfftEkGrNzfRk/fofQ==", + "dev": true, + "dependencies": { + "undici-types": "~6.11.1" + } + }, + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", + "dev": true + }, + "node_modules/@unhead/dom": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.9.16.tgz", + "integrity": "sha512-aZIAnnc89Csi1vV4mtlHYI765B7m1yuaXUuQiYHwr6glE9FLyy2X87CzEci4yPH/YbkKm0bGQRfcxXq6Eq0W7g==", + "dev": true, + "dependencies": { + "@unhead/schema": "1.9.16", + "@unhead/shared": "1.9.16" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/@unhead/schema": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.9.16.tgz", + "integrity": "sha512-V2BshX+I6D2wN4ys5so8RQDUgsggsxW9FVBiuQi4h8oPWtHclogxzDiHa5BH2TgvNIoUxLnLYNAShMGipmVuUw==", + "dev": true, + "dependencies": { + "hookable": "^5.5.3", + "zhead": "^2.2.4" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/@unhead/shared": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/@unhead/shared/-/shared-1.9.16.tgz", + "integrity": "sha512-pfJnArULCY+GBr7OtYyyxihRiQLkT31TpyK6nUKIwyax4oNOGyhNfk0RFzNq16BwLg60d1lrc5bd5mZGbfClMA==", + "dev": true, + "dependencies": { + "@unhead/schema": "1.9.16" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/@unhead/ssr": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.9.16.tgz", + "integrity": "sha512-8R1qt4VAemX4Iun/l7DnUBJqmxA/KaUSc2+/hRYPJYOopXdCWkoaxC1K1ROX2vbRF7qmjdU5ik/a27kSPN94gg==", + "dev": true, + "dependencies": { + "@unhead/schema": "1.9.16", + "@unhead/shared": "1.9.16" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/@unhead/vue": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.9.16.tgz", + "integrity": "sha512-kpMWWwm8cOwo4gw4An43pz30l2CqNtmJpX5Xsu79rwf6Viq8jHAjk6BGqyKy220M2bpa0Va4fnR532SgGO1YgQ==", + "dev": true, + "dependencies": { + "@unhead/schema": "1.9.16", + "@unhead/shared": "1.9.16", + "hookable": "^5.5.3", + "unhead": "1.9.16" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + }, + "peerDependencies": { + "vue": ">=2.7 || >=3" + } + }, + "node_modules/@vercel/nft": { + "version": "0.26.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.26.5.tgz", + "integrity": "sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==", + "dev": true, + "dependencies": { + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "acorn-import-attributes": "^1.9.2", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" + }, + "bin": { + "nft": "out/cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@vercel/nft/node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "dependencies": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/@vercel/nft/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@vercel/nft/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@vercel/nft/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@vercel/nft/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.1.tgz", + "integrity": "sha512-sDckXxlHpMsjRQbAH9WanangrfrblsOd3pNifePs+FOHjJg1jfWq5L/P0PsBRndEt3nmdUnmvieP8ULDeX5AvA==", + "dev": true, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vitejs/plugin-vue-jsx": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.0.0.tgz", + "integrity": "sha512-A+6wL2AdQhDsLsDnY+2v4rRDI1HLJGIMc97a8FURO9tqKsH5QvjWrzsa5DH3NlZsM742W2wODl2fF+bfcTWtXw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.24.6", + "@babel/plugin-transform-typescript": "^7.24.6", + "@vue/babel-plugin-jsx": "^1.2.2" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0", + "vue": "^3.0.0" + } + }, + "node_modules/@vue-macros/common": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.11.0.tgz", + "integrity": "sha512-PpAh4UZ5hJWWUUnV9290xnvZBBlzmfAX0Qyndplts3RoPzrLSbqTfXucdz9NYdYuGJ7dy+H6OJS+QtknVBlZiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.9", + "@rollup/pluginutils": "^5.1.0", + "@vue/compiler-sfc": "^3.4.33", + "ast-kit": "^1.0.0", + "local-pkg": "^0.5.0", + "magic-string-ast": "^0.6.2" + }, + "engines": { + "node": ">=16.14.0" + }, + "peerDependencies": { + "vue": "^2.7.0 || ^3.2.25" + }, + "peerDependenciesMeta": { + "vue": { + "optional": true + } + } + }, + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz", + "integrity": "sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==", + "dev": true + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz", + "integrity": "sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "~7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "@vue/babel-helper-vue-transform-on": "1.2.2", + "@vue/babel-plugin-resolve-type": "1.2.2", + "camelcase": "^6.3.0", + "html-tags": "^3.3.1", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } + } + }, + "node_modules/@vue/babel-plugin-jsx/node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@vue/babel-plugin-resolve-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.2.tgz", + "integrity": "sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/helper-module-imports": "~7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/parser": "^7.23.9", + "@vue/compiler-sfc": "^3.4.15" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-plugin-resolve-type/node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.35.tgz", + "integrity": "sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.24.7", + "@vue/shared": "3.4.35", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-core/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@vue/compiler-dom": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.35.tgz", + "integrity": "sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==", + "dev": true, + "dependencies": { + "@vue/compiler-core": "3.4.35", + "@vue/shared": "3.4.35" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.35.tgz", + "integrity": "sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.24.7", + "@vue/compiler-core": "3.4.35", + "@vue/compiler-dom": "3.4.35", + "@vue/compiler-ssr": "3.4.35", + "@vue/shared": "3.4.35", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.10", + "postcss": "^8.4.40", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.35.tgz", + "integrity": "sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==", + "dev": true, + "dependencies": { + "@vue/compiler-dom": "3.4.35", + "@vue/shared": "3.4.35" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.3.tgz", + "integrity": "sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==", + "dev": true + }, + "node_modules/@vue/devtools-core": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-7.3.3.tgz", + "integrity": "sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==", + "dev": true, + "dependencies": { + "@vue/devtools-kit": "^7.3.3", + "@vue/devtools-shared": "^7.3.3", + "mitt": "^3.0.1", + "nanoid": "^3.3.4", + "pathe": "^1.1.2", + "vite-hot-client": "^0.2.3" + } + }, + "node_modules/@vue/devtools-core/node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.3.3.tgz", + "integrity": "sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g==", + "dev": true, + "dependencies": { + "@vue/devtools-shared": "^7.3.3", + "birpc": "^0.2.17", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.1" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.3.7.tgz", + "integrity": "sha512-M9EU1/bWi5GNS/+IZrAhwGOVZmUTN4MH22Hvh35nUZZg9AZP2R2OhfCb+MG4EtAsrUEYlu3R43/SIj3G7EZYtQ==", + "dev": true, + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.35.tgz", + "integrity": "sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==", + "dev": true, + "dependencies": { + "@vue/shared": "3.4.35" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.35.tgz", + "integrity": "sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==", + "dev": true, + "dependencies": { + "@vue/reactivity": "3.4.35", + "@vue/shared": "3.4.35" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.35.tgz", + "integrity": "sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==", + "dev": true, + "dependencies": { + "@vue/reactivity": "3.4.35", + "@vue/runtime-core": "3.4.35", + "@vue/shared": "3.4.35", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.35.tgz", + "integrity": "sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==", + "dev": true, + "dependencies": { + "@vue/compiler-ssr": "3.4.35", + "@vue/shared": "3.4.35" + }, + "peerDependencies": { + "vue": "3.4.35" + } + }, + "node_modules/@vue/shared": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.35.tgz", + "integrity": "sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/archiver": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz", + "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==", + "dev": true, + "dependencies": { + "archiver-utils": "^5.0.2", + "async": "^3.2.4", + "buffer-crc32": "^1.0.0", + "readable-stream": "^4.0.0", + "readdir-glob": "^1.1.2", + "tar-stream": "^3.0.0", + "zip-stream": "^6.0.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/archiver-utils": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz", + "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==", + "dev": true, + "dependencies": { + "glob": "^10.0.0", + "graceful-fs": "^4.2.0", + "is-stream": "^2.0.1", + "lazystream": "^1.0.0", + "lodash": "^4.17.15", + "normalize-path": "^3.0.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/archiver-utils/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/archiver-utils/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/archiver-utils/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/archiver-utils/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "deprecated": "This package is no longer supported.", + "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/ast-kit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.0.0.tgz", + "integrity": "sha512-Jv5Zs4DhU4QEYPvfVrEmdMuxCRMxsIVNfj4uqsBWyNM5wOaNMIfOwu55jH2DWnmr05iyCxPjbYGND1PNU40CuQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.24.7", + "pathe": "^1.1.2" + }, + "engines": { + "node": ">=16.14.0" + } + }, + "node_modules/ast-walker-scope": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.6.1.tgz", + "integrity": "sha512-0ZdQEsSfH3mX4BFbRCc3xOBjx5bDbm73+aAdQOHerPQNf8K0XFMAv79ucd2BpnSc4UMyvBDixiroT8yjm2Y6bw==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.24.0", + "ast-kit": "^0.12.1" + }, + "engines": { + "node": ">=16.14.0" + } + }, + "node_modules/ast-walker-scope/node_modules/ast-kit": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-0.12.2.tgz", + "integrity": "sha512-es1zHFsnZ4Y4efz412nnrU3KvVAhgqy90a7Yt9Wpi5vQ3l4aYMOX0Qx4FD0elKr5ITEhiUGCSFcgGYf4YTuACg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.24.6", + "pathe": "^1.1.2" + }, + "engines": { + "node": ">=16.14.0" + } + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "dev": true + }, + "node_modules/async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "dev": true + }, + "node_modules/autoprefixer": { + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/bare-events": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", + "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", + "dev": true, + "optional": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/birpc": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.17.tgz", + "integrity": "sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz", + "integrity": "sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-crc32": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz", + "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "dev": true, + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/c12": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/c12/-/c12-1.11.1.tgz", + "integrity": "sha512-KDU0TvSvVdaYcQKQ6iPHATGz/7p/KiVjPg4vQrB6Jg/wX9R0yl5RZxWm9IoZqaIHD2+6PZd81+KMGwRr/lRIUg==", + "dependencies": { + "chokidar": "^3.6.0", + "confbox": "^0.1.7", + "defu": "^6.1.4", + "dotenv": "^16.4.5", + "giget": "^1.2.3", + "jiti": "^1.21.6", + "mlly": "^1.7.1", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.1", + "rc9": "^2.1.2" + }, + "peerDependencies": { + "magicast": "^0.3.4" + }, + "peerDependenciesMeta": { + "magicast": { + "optional": true + } + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001645", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001645.tgz", + "integrity": "sha512-GFtY2+qt91kzyMk6j48dJcwJVq5uTkk71XxE3RtScx7XWRLsO7bU44LOFkOZYR8w9YMS0UhPSYpN/6rAMImmLw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", + "dependencies": { + "consola": "^3.2.3" + } + }, + "node_modules/clear": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/clear/-/clear-0.1.0.tgz", + "integrity": "sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/clipboardy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", + "dev": true, + "dependencies": { + "execa": "^8.0.1", + "is-wsl": "^3.1.0", + "is64bit": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/clipboardy/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/clipboardy/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compatx": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/compatx/-/compatx-0.1.8.tgz", + "integrity": "sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==" + }, + "node_modules/compress-commons": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz", + "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==", + "dev": true, + "dependencies": { + "crc-32": "^1.2.0", + "crc32-stream": "^6.0.0", + "is-stream": "^2.0.1", + "normalize-path": "^3.0.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/compress-commons/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==" + }, + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/cookie-es": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", + "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==", + "dev": true + }, + "node_modules/copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", + "dev": true, + "dependencies": { + "is-what": "^4.1.8" + }, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "dev": true, + "bin": { + "crc32": "bin/crc32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/crc32-stream": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz", + "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==", + "dev": true, + "dependencies": { + "crc-32": "^1.2.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/croner": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/croner/-/croner-8.1.0.tgz", + "integrity": "sha512-sz990XOUPR8dG/r5BRKMBd15MYDDUu8oeSaxFD5DqvNgHSZw8Psd1s689/IGET7ezxRMiNlCIyGeY1Gvxp/MLg==", + "dev": true, + "engines": { + "node": ">=18.0" + } + }, + "node_modules/cronstrue": { + "version": "2.50.0", + "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-2.50.0.tgz", + "integrity": "sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==", + "dev": true, + "bin": { + "cronstrue": "bin/cli.js" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crossws": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.2.4.tgz", + "integrity": "sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==", + "dev": true, + "peerDependencies": { + "uWebSockets.js": "*" + }, + "peerDependenciesMeta": { + "uWebSockets.js": { + "optional": true + } + } + }, + "node_modules/css-declaration-sorter": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.0.4.tgz", + "integrity": "sha512-rQgpZra72iFjiheNreXn77q1haS2GEy69zCMbu4cpXCFPMQF+D4Ik5V7ktMzUF/sA7xCIgcqHwGPnCD+0a1vHg==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^7.0.4", + "lilconfig": "^3.1.2" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-preset-default": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.4.tgz", + "integrity": "sha512-jQ6zY9GAomQX7/YNLibMEsRZguqMUGuupXcEk2zZ+p3GUxwCAsobqPYE62VrJ9qZ0l9ltrv2rgjwZPBIFIjYtw==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^5.0.0", + "postcss-calc": "^10.0.0", + "postcss-colormin": "^7.0.1", + "postcss-convert-values": "^7.0.2", + "postcss-discard-comments": "^7.0.1", + "postcss-discard-duplicates": "^7.0.0", + "postcss-discard-empty": "^7.0.0", + "postcss-discard-overridden": "^7.0.0", + "postcss-merge-longhand": "^7.0.2", + "postcss-merge-rules": "^7.0.2", + "postcss-minify-font-values": "^7.0.0", + "postcss-minify-gradients": "^7.0.0", + "postcss-minify-params": "^7.0.1", + "postcss-minify-selectors": "^7.0.2", + "postcss-normalize-charset": "^7.0.0", + "postcss-normalize-display-values": "^7.0.0", + "postcss-normalize-positions": "^7.0.0", + "postcss-normalize-repeat-style": "^7.0.0", + "postcss-normalize-string": "^7.0.0", + "postcss-normalize-timing-functions": "^7.0.0", + "postcss-normalize-unicode": "^7.0.1", + "postcss-normalize-url": "^7.0.0", + "postcss-normalize-whitespace": "^7.0.0", + "postcss-ordered-values": "^7.0.1", + "postcss-reduce-initial": "^7.0.1", + "postcss-reduce-transforms": "^7.0.0", + "postcss-svgo": "^7.0.1", + "postcss-unique-selectors": "^7.0.1" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-utils": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.0.tgz", + "integrity": "sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==", + "dev": true, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true + }, + "node_modules/db0": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/db0/-/db0-0.1.4.tgz", + "integrity": "sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==", + "dev": true, + "peerDependencies": { + "@libsql/client": "^0.5.2", + "better-sqlite3": "^9.4.3", + "drizzle-orm": "^0.29.4" + }, + "peerDependenciesMeta": { + "@libsql/client": { + "optional": true + }, + "better-sqlite3": { + "optional": true + }, + "drizzle-orm": { + "optional": true + } + } + }, + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destr": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", + "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==" + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/devalue": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.0.0.tgz", + "integrity": "sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==", + "dev": true + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-prop": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-8.0.2.tgz", + "integrity": "sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==", + "dev": true, + "dependencies": { + "type-fest": "^3.8.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.4.tgz", + "integrity": "sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-stack-parser-es": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", + "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/errx": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/errx/-/errx-0.1.0.tgz", + "integrity": "sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==", + "dev": true + }, + "node_modules/esbuild": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.0.tgz", + "integrity": "sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.23.0", + "@esbuild/android-arm": "0.23.0", + "@esbuild/android-arm64": "0.23.0", + "@esbuild/android-x64": "0.23.0", + "@esbuild/darwin-arm64": "0.23.0", + "@esbuild/darwin-x64": "0.23.0", + "@esbuild/freebsd-arm64": "0.23.0", + "@esbuild/freebsd-x64": "0.23.0", + "@esbuild/linux-arm": "0.23.0", + "@esbuild/linux-arm64": "0.23.0", + "@esbuild/linux-ia32": "0.23.0", + "@esbuild/linux-loong64": "0.23.0", + "@esbuild/linux-mips64el": "0.23.0", + "@esbuild/linux-ppc64": "0.23.0", + "@esbuild/linux-riscv64": "0.23.0", + "@esbuild/linux-s390x": "0.23.0", + "@esbuild/linux-x64": "0.23.0", + "@esbuild/netbsd-x64": "0.23.0", + "@esbuild/openbsd-arm64": "0.23.0", + "@esbuild/openbsd-x64": "0.23.0", + "@esbuild/sunos-x64": "0.23.0", + "@esbuild/win32-arm64": "0.23.0", + "@esbuild/win32-ia32": "0.23.0", + "@esbuild/win32-x64": "0.23.0" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/externality": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz", + "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==", + "dev": true, + "dependencies": { + "enhanced-resolve": "^5.14.1", + "mlly": "^1.3.0", + "pathe": "^1.1.1", + "ufo": "^1.1.2" + } + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-npm-meta": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/fast-npm-meta/-/fast-npm-meta-0.1.1.tgz", + "integrity": "sha512-uS9DjGncI/9XZ6HJFrci0WzSi++N8Jskbb2uB7+9SQlrgA3VaLhXhV9Gl5HwIGESHkayYYZFGnVNhJwRDKCWIA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "deprecated": "This package is no longer supported.", + "dev": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-port-please": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", + "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==", + "dev": true + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/giget": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "defu": "^6.1.4", + "node-fetch-native": "^1.6.3", + "nypm": "^0.3.8", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "tar": "^6.2.0" + }, + "bin": { + "giget": "dist/cli.mjs" + } + }, + "node_modules/git-config-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", + "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", + "dev": true, + "dependencies": { + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" + } + }, + "node_modules/git-url-parse": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.1.0.tgz", + "integrity": "sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g==", + "dev": true, + "dependencies": { + "git-up": "^7.0.0" + } + }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-directory": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", + "dev": true, + "dependencies": { + "ini": "4.1.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/gzip-size": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", + "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", + "dev": true, + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/h3": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.12.0.tgz", + "integrity": "sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==", + "dev": true, + "dependencies": { + "cookie-es": "^1.1.0", + "crossws": "^0.2.4", + "defu": "^6.1.4", + "destr": "^2.0.3", + "iron-webcrypto": "^1.1.1", + "ohash": "^1.1.3", + "radix3": "^1.1.2", + "ufo": "^1.5.3", + "uncrypto": "^0.1.3", + "unenv": "^1.9.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==" + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-shutdown": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", + "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/httpxy": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/httpxy/-/httpxy-0.1.5.tgz", + "integrity": "sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==", + "dev": true + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-meta": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/image-meta/-/image-meta-0.2.1.tgz", + "integrity": "sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/ioredis": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.4.1.tgz", + "integrity": "sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==", + "dev": true, + "dependencies": { + "@ioredis/commands": "^1.1.1", + "cluster-key-slot": "^1.1.0", + "debug": "^4.3.4", + "denque": "^2.1.0", + "lodash.defaults": "^4.2.0", + "lodash.isarguments": "^3.1.0", + "redis-errors": "^1.2.0", + "redis-parser": "^3.0.0", + "standard-as-callback": "^2.1.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ioredis" + } + }, + "node_modules/iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-installed-globally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz", + "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", + "dev": true, + "dependencies": { + "global-directory": "^4.0.1", + "is-path-inside": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-reference": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", + "dev": true, + "dependencies": { + "@types/estree": "*" + } + }, + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", + "dev": true, + "dependencies": { + "protocols": "^2.0.1" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "dev": true, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dev": true, + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is64bit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", + "dev": true, + "dependencies": { + "system-architecture": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/knitwork": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.1.0.tgz", + "integrity": "sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==" + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true + }, + "node_modules/launch-editor": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz", + "integrity": "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lazystream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/lazystream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/lazystream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/listhen": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.7.2.tgz", + "integrity": "sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==", + "dev": true, + "dependencies": { + "@parcel/watcher": "^2.4.1", + "@parcel/watcher-wasm": "^2.4.1", + "citty": "^0.1.6", + "clipboardy": "^4.0.0", + "consola": "^3.2.3", + "crossws": "^0.2.0", + "defu": "^6.1.4", + "get-port-please": "^3.1.2", + "h3": "^1.10.2", + "http-shutdown": "^1.2.2", + "jiti": "^1.21.0", + "mlly": "^1.6.1", + "node-forge": "^1.3.1", + "pathe": "^1.1.2", + "std-env": "^3.7.0", + "ufo": "^1.4.0", + "untun": "^0.1.3", + "uqr": "^0.1.2" + }, + "bin": { + "listen": "bin/listhen.mjs", + "listhen": "bin/listhen.mjs" + } + }, + "node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "dependencies": { + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", + "dev": true + }, + "node_modules/lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/magic-string-ast": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-0.6.2.tgz", + "integrity": "sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==", + "dev": true, + "dependencies": { + "magic-string": "^0.30.10" + }, + "engines": { + "node": ">=16.14.0" + } + }, + "node_modules/magicast": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz", + "integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==", + "devOptional": true, + "dependencies": { + "@babel/parser": "^7.24.4", + "@babel/types": "^7.24.0", + "source-map-js": "^1.2.0" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.4.tgz", + "integrity": "sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa" + ], + "bin": { + "mime": "bin/cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mlly": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", + "dependencies": { + "acorn": "^8.11.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/nanoid": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz", + "integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/nitropack": { + "version": "2.9.7", + "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.9.7.tgz", + "integrity": "sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==", + "dev": true, + "dependencies": { + "@cloudflare/kv-asset-handler": "^0.3.4", + "@netlify/functions": "^2.8.0", + "@rollup/plugin-alias": "^5.1.0", + "@rollup/plugin-commonjs": "^25.0.8", + "@rollup/plugin-inject": "^5.0.5", + "@rollup/plugin-json": "^6.1.0", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-replace": "^5.0.7", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/pluginutils": "^5.1.0", + "@types/http-proxy": "^1.17.14", + "@vercel/nft": "^0.26.5", + "archiver": "^7.0.1", + "c12": "^1.11.1", + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "citty": "^0.1.6", + "consola": "^3.2.3", + "cookie-es": "^1.1.0", + "croner": "^8.0.2", + "crossws": "^0.2.4", + "db0": "^0.1.4", + "defu": "^6.1.4", + "destr": "^2.0.3", + "dot-prop": "^8.0.2", + "esbuild": "^0.20.2", + "escape-string-regexp": "^5.0.0", + "etag": "^1.8.1", + "fs-extra": "^11.2.0", + "globby": "^14.0.1", + "gzip-size": "^7.0.0", + "h3": "^1.12.0", + "hookable": "^5.5.3", + "httpxy": "^0.1.5", + "ioredis": "^5.4.1", + "jiti": "^1.21.6", + "klona": "^2.0.6", + "knitwork": "^1.1.0", + "listhen": "^1.7.2", + "magic-string": "^0.30.10", + "mime": "^4.0.3", + "mlly": "^1.7.1", + "mri": "^1.2.0", + "node-fetch-native": "^1.6.4", + "ofetch": "^1.3.4", + "ohash": "^1.1.3", + "openapi-typescript": "^6.7.6", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.1", + "pretty-bytes": "^6.1.1", + "radix3": "^1.1.2", + "rollup": "^4.18.0", + "rollup-plugin-visualizer": "^5.12.0", + "scule": "^1.3.0", + "semver": "^7.6.2", + "serve-placeholder": "^2.0.2", + "serve-static": "^1.15.0", + "std-env": "^3.7.0", + "ufo": "^1.5.3", + "uncrypto": "^0.1.3", + "unctx": "^2.3.1", + "unenv": "^1.9.0", + "unimport": "^3.7.2", + "unstorage": "^1.10.2", + "unwasm": "^0.3.9" + }, + "bin": { + "nitro": "dist/cli/index.mjs", + "nitropack": "dist/cli/index.mjs" + }, + "engines": { + "node": "^16.11.0 || >=17.0.0" + }, + "peerDependencies": { + "xml2js": "^0.6.2" + }, + "peerDependenciesMeta": { + "xml2js": { + "optional": true + } + } + }, + "node_modules/nitropack/node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/nitropack/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/nitropack/node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==" + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "dev": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "deprecated": "This package is no longer supported.", + "dev": true, + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nuxi": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.12.0.tgz", + "integrity": "sha512-6vRdiXTw9SajEQOUi6Ze/XaIXzy1q/sD5UqHQSv3yqTu7Pot5S7fEihNXV8LpcgLz+9HzjVt70r7jYe7R99c2w==", + "dev": true, + "bin": { + "nuxi": "bin/nuxi.mjs", + "nuxi-ng": "bin/nuxi.mjs", + "nuxt": "bin/nuxi.mjs", + "nuxt-cli": "bin/nuxi.mjs" + }, + "engines": { + "node": "^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/nuxt": { + "version": "3.12.4", + "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.12.4.tgz", + "integrity": "sha512-/ddvyc2kgYYIN2UEjP8QIz48O/W3L0lZm7wChIDbOCj0vF/yLLeZHBaTb3aNvS9Hwp269nfjrm8j/mVxQK4RhA==", + "dev": true, + "dependencies": { + "@nuxt/devalue": "^2.0.2", + "@nuxt/devtools": "^1.3.9", + "@nuxt/kit": "3.12.4", + "@nuxt/schema": "3.12.4", + "@nuxt/telemetry": "^2.5.4", + "@nuxt/vite-builder": "3.12.4", + "@unhead/dom": "^1.9.16", + "@unhead/ssr": "^1.9.16", + "@unhead/vue": "^1.9.16", + "@vue/shared": "^3.4.32", + "acorn": "8.12.1", + "c12": "^1.11.1", + "chokidar": "^3.6.0", + "compatx": "^0.1.8", + "consola": "^3.2.3", + "cookie-es": "^1.1.0", + "defu": "^6.1.4", + "destr": "^2.0.3", + "devalue": "^5.0.0", + "errx": "^0.1.0", + "esbuild": "^0.23.0", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "globby": "^14.0.2", + "h3": "^1.12.0", + "hookable": "^5.5.3", + "ignore": "^5.3.1", + "jiti": "^1.21.6", + "klona": "^2.0.6", + "knitwork": "^1.1.0", + "magic-string": "^0.30.10", + "mlly": "^1.7.1", + "nitropack": "^2.9.7", + "nuxi": "^3.12.0", + "nypm": "^0.3.9", + "ofetch": "^1.3.4", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.3", + "radix3": "^1.1.2", + "scule": "^1.3.0", + "semver": "^7.6.3", + "std-env": "^3.7.0", + "strip-literal": "^2.1.0", + "ufo": "^1.5.4", + "ultrahtml": "^1.5.3", + "uncrypto": "^0.1.3", + "unctx": "^2.3.1", + "unenv": "^1.10.0", + "unimport": "^3.9.0", + "unplugin": "^1.11.0", + "unplugin-vue-router": "^0.10.0", + "unstorage": "^1.10.2", + "untyped": "^1.4.2", + "vue": "^3.4.32", + "vue-bundle-renderer": "^2.1.0", + "vue-devtools-stub": "^0.1.0", + "vue-router": "^4.4.0" + }, + "bin": { + "nuxi": "bin/nuxt.mjs", + "nuxt": "bin/nuxt.mjs" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + }, + "peerDependencies": { + "@parcel/watcher": "^2.1.0", + "@types/node": "^14.18.0 || >=16.10.0" + }, + "peerDependenciesMeta": { + "@parcel/watcher": { + "optional": true + }, + "@types/node": { + "optional": true + } + } + }, + "node_modules/nuxt-directus": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/nuxt-directus/-/nuxt-directus-5.6.1.tgz", + "integrity": "sha512-Sw6RqRU8yAWstOFP54QquxHXtWCQNRHp2is0Up2EpikKvgOE9fnDI5FoPHWo5GkJzfpuOOnM2S9OdowsGcYXRw==", + "dependencies": { + "@nuxt/kit": "^3.0.0" + } + }, + "node_modules/nypm": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.9.tgz", + "integrity": "sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==", + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "execa": "^8.0.1", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" + }, + "bin": { + "nypm": "dist/cli.mjs" + }, + "engines": { + "node": "^14.16.0 || >=16.10.0" + } + }, + "node_modules/nypm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/nypm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/nypm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/nypm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ofetch": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", + "integrity": "sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==", + "dev": true, + "dependencies": { + "destr": "^2.0.3", + "node-fetch-native": "^1.6.3", + "ufo": "^1.5.3" + } + }, + "node_modules/ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/openapi-typescript": { + "version": "6.7.6", + "resolved": "https://registry.npmjs.org/openapi-typescript/-/openapi-typescript-6.7.6.tgz", + "integrity": "sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.3", + "fast-glob": "^3.3.2", + "js-yaml": "^4.1.0", + "supports-color": "^9.4.0", + "undici": "^5.28.4", + "yargs-parser": "^21.1.1" + }, + "bin": { + "openapi-typescript": "bin/cli.js" + } + }, + "node_modules/openapi-typescript/node_modules/supports-color": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true + }, + "node_modules/parse-git-config": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", + "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", + "dev": true, + "dependencies": { + "git-config-path": "^2.0.0", + "ini": "^1.3.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/parse-git-config/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "dev": true, + "dependencies": { + "protocols": "^2.0.0" + } + }, + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dev": true, + "dependencies": { + "parse-path": "^7.0.0" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-types": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.1.3.tgz", + "integrity": "sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==", + "dependencies": { + "confbox": "^0.1.7", + "mlly": "^1.7.1", + "pathe": "^1.1.2" + } + }, + "node_modules/postcss": { + "version": "8.4.40", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz", + "integrity": "sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.0.0.tgz", + "integrity": "sha512-OmjhudoNTP0QleZCwl1i6NeBwN+5MZbY5ersLZz69mjJiDVv/p57RjRuKDkHeDWr4T+S97wQfsqRTNoDHB2e3g==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.16", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12 || ^20.9 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.38" + } + }, + "node_modules/postcss-colormin": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.1.tgz", + "integrity": "sha512-uszdT0dULt3FQs47G5UHCduYK+FnkLYlpu1HpWu061eGsKZ7setoG7kA+WC9NQLsOJf69D5TxGHgnAdRgylnFQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "caniuse-api": "^3.0.0", + "colord": "^2.9.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-convert-values": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.2.tgz", + "integrity": "sha512-MuZIF6HJ4izko07Q0TgW6pClalI4al6wHRNPkFzqQdwAwG7hPn0lA58VZdxyb2Vl5AYjJ1piO+jgF9EnTjQwQQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-comments": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.1.tgz", + "integrity": "sha512-GVrQxUOhmle1W6jX2SvNLt4kmN+JYhV7mzI6BMnkAWR9DtVvg8e67rrV0NfdWhn7x1zxvzdWkMBPdBDCls+uwQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.1.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.0.tgz", + "integrity": "sha512-bAnSuBop5LpAIUmmOSsuvtKAAKREB6BBIYStWUTGq8oG5q9fClDMMuY8i4UPI/cEcDx2TN+7PMnXYIId20UVDw==", + "dev": true, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-empty": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz", + "integrity": "sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==", + "dev": true, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz", + "integrity": "sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==", + "dev": true, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-hexrgba": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postcss-hexrgba/-/postcss-hexrgba-2.1.0.tgz", + "integrity": "sha512-Bb8Ca/vTI/X2Pgq1O3VhOdXE0rg/hz6161MHMu93ebePw8d/I9GSOc+wbd151OGGxSyTz+z196tFeEpSafrJfA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.1.0" + }, + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-import": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.1.0.tgz", + "integrity": "sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.2.tgz", + "integrity": "sha512-06vrW6ZWi9qeP7KMS9fsa9QW56+tIMW55KYqF7X3Ccn+NI2pIgPV6gFfvXTMQ05H90Y5DvnCDPZ2IuHa30PMUg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^7.0.2" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-merge-rules": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.2.tgz", + "integrity": "sha512-VAR47UNvRsdrTHLe7TV1CeEtF9SJYR5ukIB9U4GZyZOptgtsS20xSxy+k5wMrI3udST6O1XuIn7cjQkg7sDAAw==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^5.0.0", + "postcss-selector-parser": "^6.1.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz", + "integrity": "sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz", + "integrity": "sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==", + "dev": true, + "dependencies": { + "colord": "^2.9.3", + "cssnano-utils": "^5.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-params": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.1.tgz", + "integrity": "sha512-e+Xt8xErSRPgSRFxHeBCSxMiO8B8xng7lh8E0A5ep1VfwYhY8FXhu4Q3APMjgx9YDDbSp53IBGENrzygbUvgUQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "cssnano-utils": "^5.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.2.tgz", + "integrity": "sha512-dCzm04wqW1uqLmDZ41XYNBJfjgps3ZugDpogAmJXoCb5oCiTzIX4oPXXKxDpTvWOnKxQKR4EbV4ZawJBLcdXXA==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "postcss-selector-parser": "^6.1.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz", + "integrity": "sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==", + "dev": true, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz", + "integrity": "sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz", + "integrity": "sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz", + "integrity": "sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-string": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz", + "integrity": "sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz", + "integrity": "sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.1.tgz", + "integrity": "sha512-PTPGdY9xAkTw+8ZZ71DUePb7M/Vtgkbbq+EoI33EuyQEzbKemEQMhe5QSr0VP5UfZlreANDPxSfcdSprENcbsg==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-url": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz", + "integrity": "sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz", + "integrity": "sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-ordered-values": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz", + "integrity": "sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==", + "dev": true, + "dependencies": { + "cssnano-utils": "^5.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.1.tgz", + "integrity": "sha512-0JDUSV4bGB5FGM5g8MkS+rvqKukJZ7OTHw/lcKn7xPNqeaqJyQbUO8/dJpvyTpaVwPsd3Uc33+CfNzdVowp2WA==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz", + "integrity": "sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.0.1.tgz", + "integrity": "sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.3.2" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.1.tgz", + "integrity": "sha512-MH7QE/eKUftTB5ta40xcHLl7hkZjgDFydpfTK+QWXeHxghVt3VoPqYL5/G+zYZPPIs+8GuqFXSTgxBSoB1RZtQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.1.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/pretty-bytes": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", + "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", + "dev": true, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true + }, + "node_modules/radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==", + "dev": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc9": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz", + "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==", + "dependencies": { + "defu": "^6.1.4", + "destr": "^2.0.3" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/readdir-glob": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", + "dev": true, + "dependencies": { + "minimatch": "^5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/redis-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", + "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/redis-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", + "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", + "dev": true, + "dependencies": { + "redis-errors": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/rollup": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.19.1.tgz", + "integrity": "sha512-K5vziVlg7hTpYfFBI+91zHBEMo6jafYXpkMlqZjg7/zhIG9iHqazBf4xz9AVdjS9BruRn280ROqLI7G3OFRIlw==", + "devOptional": true, + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.19.1", + "@rollup/rollup-android-arm64": "4.19.1", + "@rollup/rollup-darwin-arm64": "4.19.1", + "@rollup/rollup-darwin-x64": "4.19.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.19.1", + "@rollup/rollup-linux-arm-musleabihf": "4.19.1", + "@rollup/rollup-linux-arm64-gnu": "4.19.1", + "@rollup/rollup-linux-arm64-musl": "4.19.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.19.1", + "@rollup/rollup-linux-riscv64-gnu": "4.19.1", + "@rollup/rollup-linux-s390x-gnu": "4.19.1", + "@rollup/rollup-linux-x64-gnu": "4.19.1", + "@rollup/rollup-linux-x64-musl": "4.19.1", + "@rollup/rollup-win32-arm64-msvc": "4.19.1", + "@rollup/rollup-win32-ia32-msvc": "4.19.1", + "@rollup/rollup-win32-x64-msvc": "4.19.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-visualizer": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz", + "integrity": "sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==", + "dev": true, + "dependencies": { + "open": "^8.4.0", + "picomatch": "^2.3.1", + "source-map": "^0.7.4", + "yargs": "^17.5.1" + }, + "bin": { + "rollup-plugin-visualizer": "dist/bin/cli.js" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "rollup": "2.x || 3.x || 4.x" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/scule": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz", + "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-placeholder": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.2.tgz", + "integrity": "sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==", + "dev": true, + "dependencies": { + "defu": "^6.1.4" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/simple-git": { + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.25.0.tgz", + "integrity": "sha512-KIY5sBnzc4yEcJXW7Tdv4viEz8KyG+nU0hay+DWZasvdFOYKeUZ6Xc25LUHHjw0tinPT7O1eY6pzX7pRT1K8rw==", + "dev": true, + "dependencies": { + "@kwsites/file-exists": "^1.1.1", + "@kwsites/promise-deferred": "^1.1.1", + "debug": "^4.3.5" + }, + "funding": { + "type": "github", + "url": "https://github.com/steveukx/git-js?sponsor=1" + } + }, + "node_modules/sirv": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/smob": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", + "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/standard-as-callback": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", + "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==", + "dev": true + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/std-env": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", + "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==" + }, + "node_modules/streamx": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.18.0.tgz", + "integrity": "sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==", + "dev": true, + "dependencies": { + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" + }, + "optionalDependencies": { + "bare-events": "^2.2.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-literal": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-2.1.0.tgz", + "integrity": "sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==", + "dependencies": { + "js-tokens": "^9.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/strip-literal/node_modules/js-tokens": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.0.tgz", + "integrity": "sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==" + }, + "node_modules/stylehacks": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.2.tgz", + "integrity": "sha512-HdkWZS9b4gbgYTdMg4gJLmm7biAUug1qTqXjS+u8X+/pUd+9Px1E+520GnOW3rST9MNsVOVpsJG+mPHNosxjOQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.1", + "postcss-selector-parser": "^6.1.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/superjson": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.1.tgz", + "integrity": "sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==", + "dev": true, + "dependencies": { + "copy-anything": "^3.0.2" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/svgo": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/system-architecture": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/terser": { + "version": "5.31.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz", + "integrity": "sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/text-decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.1.tgz", + "integrity": "sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "dev": true + }, + "node_modules/tinyrainbow": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ufo": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==" + }, + "node_modules/ultrahtml": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.3.tgz", + "integrity": "sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==", + "dev": true + }, + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" + }, + "node_modules/unctx": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.3.1.tgz", + "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", + "dependencies": { + "acorn": "^8.8.2", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.0", + "unplugin": "^1.3.1" + } + }, + "node_modules/undici": { + "version": "5.28.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", + "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", + "dev": true, + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/undici-types": { + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.11.1.tgz", + "integrity": "sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==", + "dev": true + }, + "node_modules/unenv": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.10.0.tgz", + "integrity": "sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==", + "dev": true, + "dependencies": { + "consola": "^3.2.3", + "defu": "^6.1.4", + "mime": "^3.0.0", + "node-fetch-native": "^1.6.4", + "pathe": "^1.1.2" + } + }, + "node_modules/unenv/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/unhead": { + "version": "1.9.16", + "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.9.16.tgz", + "integrity": "sha512-FOoXkuRNDwt7PUaNE0LXNCb6RCz4vTpkGymz4tJ8rcaG5uUJ0lxGK536hzCFwFw3Xkp3n+tkt2yCcbAZE/FOvA==", + "dev": true, + "dependencies": { + "@unhead/dom": "1.9.16", + "@unhead/schema": "1.9.16", + "@unhead/shared": "1.9.16", + "hookable": "^5.5.3" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unimport": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.9.1.tgz", + "integrity": "sha512-4gtacoNH6YPx2Aa5Xfyrf8pU2RdXjWUACb/eF7bH1AcZtqs+6ijbNB0M3BPENbtVjnCcg8tw9UJ1jQGbCzKA6g==", + "dependencies": { + "@rollup/pluginutils": "^5.1.0", + "acorn": "^8.12.1", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "fast-glob": "^3.3.2", + "local-pkg": "^0.5.0", + "magic-string": "^0.30.10", + "mlly": "^1.7.1", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "scule": "^1.3.0", + "strip-literal": "^2.1.0", + "unplugin": "^1.12.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unplugin": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.12.0.tgz", + "integrity": "sha512-KeczzHl2sATPQUx1gzo+EnUkmN4VmGBYRRVOZSGvGITE9rGHRDGqft6ONceP3vgXcyJ2XjX5axG5jMWUwNCYLw==", + "dependencies": { + "acorn": "^8.12.1", + "chokidar": "^3.6.0", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/unplugin-vue-router": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.10.2.tgz", + "integrity": "sha512-aG1UzB96cu4Lu+EdQxl22NIKFrde5b+k568JdsaJ2gzPqnQufPk2j1gCA5DxFfGz9zg4tYTqy2A2JHForVbyXg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.2", + "@rollup/pluginutils": "^5.1.0", + "@vue-macros/common": "^1.11.0", + "ast-walker-scope": "^0.6.1", + "chokidar": "^3.6.0", + "fast-glob": "^3.3.2", + "json5": "^2.2.3", + "local-pkg": "^0.5.0", + "mlly": "^1.7.1", + "pathe": "^1.1.2", + "scule": "^1.3.0", + "unplugin": "^1.12.0", + "yaml": "^2.5.0" + }, + "peerDependencies": { + "vue-router": "^4.4.0" + }, + "peerDependenciesMeta": { + "vue-router": { + "optional": true + } + } + }, + "node_modules/unstorage": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", + "integrity": "sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==", + "dev": true, + "dependencies": { + "anymatch": "^3.1.3", + "chokidar": "^3.6.0", + "destr": "^2.0.3", + "h3": "^1.11.1", + "listhen": "^1.7.2", + "lru-cache": "^10.2.0", + "mri": "^1.2.0", + "node-fetch-native": "^1.6.2", + "ofetch": "^1.3.3", + "ufo": "^1.4.0" + }, + "peerDependencies": { + "@azure/app-configuration": "^1.5.0", + "@azure/cosmos": "^4.0.0", + "@azure/data-tables": "^13.2.2", + "@azure/identity": "^4.0.1", + "@azure/keyvault-secrets": "^4.8.0", + "@azure/storage-blob": "^12.17.0", + "@capacitor/preferences": "^5.0.7", + "@netlify/blobs": "^6.5.0 || ^7.0.0", + "@planetscale/database": "^1.16.0", + "@upstash/redis": "^1.28.4", + "@vercel/kv": "^1.0.1", + "idb-keyval": "^6.2.1", + "ioredis": "^5.3.2" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "ioredis": { + "optional": true + } + } + }, + "node_modules/unstorage/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true + }, + "node_modules/untun": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", + "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", + "dev": true, + "dependencies": { + "citty": "^0.1.5", + "consola": "^3.2.3", + "pathe": "^1.1.1" + }, + "bin": { + "untun": "bin/untun.mjs" + } + }, + "node_modules/untyped": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.4.2.tgz", + "integrity": "sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==", + "dependencies": { + "@babel/core": "^7.23.7", + "@babel/standalone": "^7.23.8", + "@babel/types": "^7.23.6", + "defu": "^6.1.4", + "jiti": "^1.21.0", + "mri": "^1.2.0", + "scule": "^1.2.0" + }, + "bin": { + "untyped": "dist/cli.mjs" + } + }, + "node_modules/unwasm": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/unwasm/-/unwasm-0.3.9.tgz", + "integrity": "sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==", + "dev": true, + "dependencies": { + "knitwork": "^1.0.0", + "magic-string": "^0.30.8", + "mlly": "^1.6.1", + "pathe": "^1.1.2", + "pkg-types": "^1.0.3", + "unplugin": "^1.10.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uqr": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", + "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==", + "dev": true + }, + "node_modules/urlpattern-polyfill": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", + "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==", + "dev": true + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/vite": { + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.5.tgz", + "integrity": "sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==", + "dev": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.39", + "rollup": "^4.13.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-hot-client": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-0.2.3.tgz", + "integrity": "sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0" + } + }, + "node_modules/vite-node": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.0.5.tgz", + "integrity": "sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==", + "dev": true, + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.5", + "pathe": "^1.1.2", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vite-plugin-checker": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.7.2.tgz", + "integrity": "sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "ansi-escapes": "^4.3.0", + "chalk": "^4.1.1", + "chokidar": "^3.5.1", + "commander": "^8.0.0", + "fast-glob": "^3.2.7", + "fs-extra": "^11.1.0", + "npm-run-path": "^4.0.1", + "strip-ansi": "^6.0.0", + "tiny-invariant": "^1.1.0", + "vscode-languageclient": "^7.0.0", + "vscode-languageserver": "^7.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-uri": "^3.0.2" + }, + "engines": { + "node": ">=14.16" + }, + "peerDependencies": { + "@biomejs/biome": ">=1.7", + "eslint": ">=7", + "meow": "^9.0.0", + "optionator": "^0.9.1", + "stylelint": ">=13", + "typescript": "*", + "vite": ">=2.0.0", + "vls": "*", + "vti": "*", + "vue-tsc": ">=2.0.0" + }, + "peerDependenciesMeta": { + "@biomejs/biome": { + "optional": true + }, + "eslint": { + "optional": true + }, + "meow": { + "optional": true + }, + "optionator": { + "optional": true + }, + "stylelint": { + "optional": true + }, + "typescript": { + "optional": true + }, + "vls": { + "optional": true + }, + "vti": { + "optional": true + }, + "vue-tsc": { + "optional": true + } + } + }, + "node_modules/vite-plugin-checker/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/vite-plugin-checker/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/vite-plugin-checker/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/vite-plugin-checker/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/vite-plugin-checker/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/vite-plugin-checker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/vite-plugin-checker/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/vite-plugin-checker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/vite-plugin-inspect": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-0.8.5.tgz", + "integrity": "sha512-JvTUqsP1JNDw0lMZ5Z/r5cSj81VK2B7884LO1DC3GMBhdcjcsAnJjdWq7bzQL01Xbh+v60d3lju3g+z7eAtNew==", + "dev": true, + "dependencies": { + "@antfu/utils": "^0.7.10", + "@rollup/pluginutils": "^5.1.0", + "debug": "^4.3.5", + "error-stack-parser-es": "^0.1.4", + "fs-extra": "^11.2.0", + "open": "^10.1.0", + "perfect-debounce": "^1.0.0", + "picocolors": "^1.0.1", + "sirv": "^2.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true + } + } + }, + "node_modules/vite-plugin-inspect/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/vite-plugin-inspect/node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dev": true, + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/vite-plugin-vue-inspector": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.1.3.tgz", + "integrity": "sha512-pMrseXIDP1Gb38mOevY+BvtNGNqiqmqa2pKB99lnLsADQww9w9xMbAfT4GB6RUoaOkSPrtlXqpq2Fq+Dj2AgFg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/plugin-proposal-decorators": "^7.23.0", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.22.15", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-dom": "^3.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.4" + }, + "peerDependencies": { + "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0" + } + }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vscode-jsonrpc": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", + "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", + "dev": true, + "engines": { + "node": ">=8.0.0 || >=10.0.0" + } + }, + "node_modules/vscode-languageclient": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", + "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.4", + "semver": "^7.3.4", + "vscode-languageserver-protocol": "3.16.0" + }, + "engines": { + "vscode": "^1.52.0" + } + }, + "node_modules/vscode-languageclient/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/vscode-languageclient/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/vscode-languageserver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", + "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", + "dev": true, + "dependencies": { + "vscode-languageserver-protocol": "3.16.0" + }, + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" + } + }, + "node_modules/vscode-languageserver-protocol": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", + "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", + "dev": true, + "dependencies": { + "vscode-jsonrpc": "6.0.0", + "vscode-languageserver-types": "3.16.0" + } + }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", + "dev": true + }, + "node_modules/vscode-languageserver-types": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", + "dev": true + }, + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true + }, + "node_modules/vue": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.35.tgz", + "integrity": "sha512-+fl/GLmI4GPileHftVlCdB7fUL4aziPcqTudpTGXCT8s+iZWuOCeNEB5haX6Uz2IpRrbEXOgIFbe+XciCuGbNQ==", + "dev": true, + "dependencies": { + "@vue/compiler-dom": "3.4.35", + "@vue/compiler-sfc": "3.4.35", + "@vue/runtime-dom": "3.4.35", + "@vue/server-renderer": "3.4.35", + "@vue/shared": "3.4.35" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-bundle-renderer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-2.1.0.tgz", + "integrity": "sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==", + "dev": true, + "dependencies": { + "ufo": "^1.5.3" + } + }, + "node_modules/vue-devtools-stub": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz", + "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==", + "dev": true + }, + "node_modules/vue-router": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.4.1.tgz", + "integrity": "sha512-njTLt/6gYGgIhv+U8nc5J6JpJpntFgy4fptRJ9Dp2qWQRo/PekB5DbKRYRPt0kM6feXysPKl7A5BjOmOJL5Ttw==", + "dev": true, + "dependencies": { + "@vue/devtools-api": "^6.6.3" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==" + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/zhead": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/zhead/-/zhead-2.2.4.tgz", + "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/zip-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz", + "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==", + "dev": true, + "dependencies": { + "archiver-utils": "^5.0.0", + "compress-commons": "^6.0.2", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..7b0eeff --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "whois", + "version": "1.0.0", + "description": "Whois domain name search for Tinysites", + "license": "GPL-3.0-only", + "homepage": "https://whois.tinysites.com", + "scripts": { + "build": "nuxt build", + "dev": "nuxt dev --host", + "generate": "nuxt generate", + "preview": "nuxt preview", + "postinstall": "nuxt prepare" + }, + "devDependencies": { + "@nuxtjs/device": "^3.1.1", + "nuxt": "^3.12.4", + "postcss-hexrgba": "^2.1.0", + "postcss-import": "^16.1.0", + "postcss-nested": "^6.2.0" + }, + "dependencies": { + "nuxt-directus": "^5.6.1" + } +} diff --git a/pages/index.vue b/pages/index.vue new file mode 100644 index 0000000..490a0ac --- /dev/null +++ b/pages/index.vue @@ -0,0 +1,34 @@ + + + \ No newline at end of file diff --git a/pages/results.vue b/pages/results.vue new file mode 100644 index 0000000..cea8124 --- /dev/null +++ b/pages/results.vue @@ -0,0 +1,107 @@ + + + \ No newline at end of file diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..cbe24e9c35e56684acd7e57a9e8873ce2b817ac1 GIT binary patch literal 3042 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 GBl5q+mzhNX literal 0 HcmV?d00001 diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000000000000000000000000000000000000..9a6a2e0e8b5fc3e721567c5972af89c4786b5676 GIT binary patch literal 6822 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 L)z4*}Q$iB}#|q4- literal 0 HcmV?d00001 diff --git a/public/browserconfig.xml b/public/browserconfig.xml new file mode 100644 index 0000000..f2ffb67 --- /dev/null +++ b/public/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #042816 + + + diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..edf0caaf3d10740ea3c746805dac4d37f2ecc106 GIT binary patch literal 659 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstU$g(vPY0F z14ES>14Ba#1H&(%P{RubhEf9thF1v;3|2E37{m+a>!%Pc`Dm-MUH~FKqPvsfZ=L`$nktIH(&Hvq0kYaVj#B=C*eb@vZ<0 z<$Ag}hDcma?T_YbP~c$+7m;ts4+z-#-;~wV>v7H2$vL-JnIunlD?L}uTea(>xYMfa z{J-AfzVC(GCgcYxx*7P-FbH0lxFTXhz{Y>dbGW*LCT!-LurlFc@YdSjbw`Y{DuSA1 z{qGlEI+pSJQ4N#+S85opYllMT;kei>9nO2Eg18ev4FF*~FARB`7(@M${i&7cN%ggmL^RkPR z6AM!H@{7`Ezq647DhjU(i6{w5ELSKf%1_J8NmVGREJ#(zEGS84V5pe$_!AFDVVH)- zDgV=FJf8+JFe`KGC36ca3wuu%VHQ?!X)rmQ!mPYGMB(&}D<_VeIU;j}{d9xJ0xvy= YSK@*tpPWpm01boFyt=akR{0C+IrkpKVy literal 0 HcmV?d00001 diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..5c42f6dc78396068c39ba1c095e94db4a9ea46cf GIT binary patch literal 885 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyEa{HEjtmSN`?>!lvVtU&J%W50 z7^>757#dm_7=8hT8eT9klo~KFyh>nTu$sZZAYL$MSD+10VqJhwh%1m5I*}`KtU%;w z0f>a4w&b_fUc8u_B7xufrb=<5!6hO8Z`5P8jt0R?#~iGTnJ(uD^S^%3vqz(u|n}z6-&%n0RCYCp#Q=&7`>=)txV)5A`lSP=^}gE7h5-No`c!&C<#hqJ&VvKUA| z17Sv`m|cND278I8uPgg=9yxYhg*7V_rUHc?d%8G=Se$O1{93HhLBy?porb21k}9v$ zyXlqx)fY!;&9rK?RR~>hU1RpGv#~k*eE$I zI{sO7`s#eu;x(naeRFGo-c>DejVMV;EJ?LWE=mPb3`Pb<#=3?^y2b_}2If{KrdGyA z+6D$z1_rKntXEMq9-8f8yaN4Aam!<$wB& z=hGktW@T=@WNu+)VeiQz%)$yT4JLw)J5?VllN|g%8YQzInpf(pNr6%V4c4y+vW^M14-N=%92NGU4w{Jl2rPG>U0#&* z@6qDes8uqb%Q?oh!VMXiz9ipGvo6~tjU!Hf6Z6|LmXmoIxaJVn5vno6 zI`}B%oXmvnY#)h3yPdkZbH-he<4Is$iHWxne=E77@%AeV=8kr-HENrm5d*ekTEM)N zAnqVftKcJ_zbI~PgeC5~sX22uWd3~zaR>Rh09hq6TcMv%c39>?>?(iVDj842m9@Wq zu4L{9_M2UlyTY#G3da2%zX3cK4c=JH$qG2mHD6WJ@dtPr!}0sGXXF0xlR?PBK827bp_ zQ02PBJbM$rH8(m2%&nZ?)mWw#uS@LXy2w0;(=M6M+NI1p!E%lASToJfHNqRz)w96< zi^ljb13PU4LB90J7mcgHP8)|Fc(>wQ`yb%fU4MSnSbs2o^`&A00bB2ny~+b^n~m&;;6JiU#=*#dLn=yLT25gsmgolxffT!levdA%OFtZ* zH|~oKv_S)|Thf2s$+2+#*OO;=4K{$%)~m_6k)86ak>q)aev@gQ0ono=qp|z_hIejl z=j^>e+r8hG9|J;SRq4;+JC?p<5nSI5JAK&=3(R?CCcst_At zO^AD#zb3>WoA=Ov93Lv{ zp0U3jyLU^65ev9hVt%|4lWx#n3)z^*{zZUbR6Lnt0ck~G8E+$7? z@=!Fc*v{C)jl?g<`by%oYjXU(-d>WQ$=>FDcbAmR>-A$gVfp}FJJCVDH|dS#m~Z;W zf#0ElHur>0^*Wfp;h&q}{o@YO3grps=MO0Zu2rBNXKe}XuLb-oq>b-Jo^PRTA{d|t z&rl9&(Fa}bC8>QQ;Ldl?*OrJpTacsLL(`(a2F%>Q)1#lh{L|LIk5ZKX8PFb2i$2ej zxHoPG{Uq;?68SPq^C`R!b{=<{6dabEl7 z`KueY9MC>*J3DW$QLd%rIq1(0%3(1m_ZoFCb=WZ<1^rH7SmfD0NG~k!$-(?7DLJ_N zY#rZ77=4y;jHFJsGcRc4I6>X2N2gi2H#gn&AiGD4^xHmXv+@_ znL?j0#>HN%?~YMB|Igz8E;z>Zcx+Y0nzAh4)K&NSXc&JiLE1Ae}iyUH8{z cdJQ( + + + diff --git a/public/img/logo.svg b/public/img/logo.svg new file mode 100644 index 0000000..9063f04 --- /dev/null +++ b/public/img/logo.svg @@ -0,0 +1,69 @@ + + + + diff --git a/public/mstile-144x144.png b/public/mstile-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..431667fa3b41cc7b6b1b4c7c63fc324c51605ade GIT binary patch literal 2398 zcmZ`(c{r478-GhRMb_CY#S~36DF+i_$T}pIp{V4Ln(Q;f*d|+1mQExovgGTWgH+bY z@`aeio;?!IhZ-@~v7}G+Ju~xluIu~byRP?rp67n<-|u(dzkB9-6HcEbN{TCrLl7is zV{JhK`(44iT@0*U>2ir++j7;^&J==5lO;CXw}KesVNJ4wAO;qKqGKWGE4YfDf}kKR z2%2_-AcJ%WLQ}J9?2RC3Gw$>WM@s;ZZ}dYlX>b-5!KT95qLl{D2*HiufNZ9qnkm8* z4JiOnL|HV8j$j7Eg_xgsQC3J7N&yAM_CU2tKLJ3b&!Qol{eg%;ibX{Nx*!x}g%1tR zp&^(7e}{75%%Q-+^WQ==8CD?FPDXM>f;8mM&H(`Gk4AE6aCRV?4er4K5NSvbMXuRT z)IS`sghV8ZB2oZ_;4B&fz*tli3*f18AQWf{Z88O`&^1^oa25rsj~1l_$Y!B0rmqMi z2Uwy>3R@B=|MUg8Ae3zJ0fj&V$a-% zv8m`L8j9s7Qbq|)iL4CXbAw0P)&kqBU^)j zGK%dlXogKechiMKph`D+f$WbTKPdKg81Q#_MJJtffRKcX5!q#|!I`;bBlPLSYVM~5 zl%##e`=Ru!|NOdMOGd!X{kzI}UlQ+*n$DArZ{-%I%tjOaIz6TDg(_RGt%PcI^c>k1 zudeCtn!-6SHmY%K-q>dK%PBiY2a=WT+U)+}`>k>KEuG!LyZDNExkq))n(9lQ-JU*E z3HQ9b^HJJ|cPDG6CLmiV75Rom*x7SKADyK!l1^w;G8HYiG`P9X#k%(3z0(J9DcXg2HCd8OE5ZxM z-&QuRsyoEUZ<`;xGM4f+cX*dyVbTKKC z@cHm(g_#^e(r&`^#x>1=>70*mQl6DAQ*cp94`JOt?$o6Xi4CLp!*jSkeovbbA--;| z(WscmoiXKwRmhy8NK=w^8HR47fh7(0=@pF;WJ2+dFOj6N?ip+{SC1Jgvxd%G+Rd~VRwr5K4UUu#s=1Sva_bkQ_5W~Y^AU3K~lWRrg1`i z?UIUB8bX=*Jv>KMD*15-YUGbuh0r*5%$K6o5qrZl*kZv0F2Q8C=R$;J7mTjVlnx~9 zAkK}w7@!}7y-e$gk$0Y2j~|GsT3GLv!B6SWXymP8u<~76c-W#x#nlKno>&uI@VMVU zcc3}DnK7=~CtuyegRe5YZ}+sswT(Q@IdjNMuh1z zagw?A)>HY%`umc6Uu$&f<5h<(#Ob#lrTCFn?>pceS(6H@#@;t;G-`&=%o^8#{9+Yv8sqp_|s-@ zW~`U@=3!FRF*`T@rnTz!#%bsY@y&W-jr3$qRK|>y_q%UAClY*+++b_x=5tdHfYEbG zkyZZDpZ(>tg4oAgSg zbo!OCNY}(&=wpjP(+VDvc-73ZV2&lMn}wKqnQIxwUQw6sbeF`dIhZqwJT&oYy?Xwc zImgM^c9(#as%5GbZ8zRhqxSr}pwx!BbZoI>$MCPgZ+1s6Co;U6&Uj0WMDhUK+*T z4y160YN}E_T@an+;R?B_+vxir!`{!4LhJg6Y`U!%Y$V;PLx;QFT^M-xW(6GmL2&62wE1 z0e#E1UH5N1lp18zC(~LSHub80$hlRYx@yv01$+JDgrYI@TgM5PaEw{%A>IC{d0*r9 z`rp4fc&wWIzHo1iJIsl@fF*|aw1ju+5p;BoBK?gQA7|IEo2b7tzkh@q-UU9C`{gh~5QAeZqIH`ti>a17V%i4#nwjm)T})V8v~}+BL(nu@mcC?$PXi?&8_Sax JMP_a{{sVa)LoWaT literal 0 HcmV?d00001 diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png new file mode 100644 index 0000000000000000000000000000000000000000..4950fded3ef2dedf22c6b26c318afb44c2b8fc50 GIT binary patch literal 2420 zcmb7EXIxWR9({sH$3O~02_hh30V7i4Q&f7BfDnqb)uBmAg9Ie2Bcq~p7O`s-u|yfL zfPf-pfP^H9ny8=>z=B`^0YOBXW^VvzcR$RBeZTweyZ5|%{^$J9?VqZspo5UY=$5?b)W4-XK(<)O+xdi$QCM!M?tmFP%Tt6Sj&cN{nyas zP=0A5A-MqjiF0KX-PRWB9FwKct92zJB#(WD}G71&bLjEf&jX5n$3s9L$Ko<3XvYlhmw178G0tjkpb1a%q z(c&z0hy1U@>VkNX9-X7a_Iu&`!taQeLjZhCJ-WlLD`NizZ-`(se*0{B{EpO~gA-NnFU-YY| ztJBT<@r7)#QKY+jIV*ltGf*@)a=2!HAA%Iz+@0)+dpm}@lv9xY`U;}pCsSq zSSV#3HuCY)wO6BO8rdsE6_%rDvD8MRUmH7$&5VrpT)kKHzJ64ir^Upd$9qPbj?`@u z&CDzw=`L&?>wA1IOU3B#u3~B3L$|itsWxj-P#NFu&K@sD*TE9L!}xW?fF8!$CbR6? zK;OxL@kzDd&h~l}i<|GiCDW5H@nRiP#Ls3pg_3f@_%24sZ&La0n$s2U8=2!7*1>0j zdf7R(7uuFyaxD{_t)w+Xby`Grd5rU|CHwI{I;n#C@No$`L;A$o1jBlwk!BTF9g#nUFR zcWf1xShf6ER~~_w#rA;fI{H&}S*z~F9LL%Wdkk-5tHiOVEypf6e^lw)Xh+I05eg2z zy84HDL6;=q$B^jd5q>xwZkSlXXfH@LU_HG^vV+A4_aWDnS{$5p>ZQEa(Y2)OQUsT8}jvRiJtu1t~!^f4V7g(M) z2$2@whr^jVtg7pQt(7~L*siOKFdcO36{cq6qs!F`V0w5;d`@U$C;9-I^{Oqnf|Q}} zxH9?6*>}r$Wfysal2(iMGi1j|dAOpY*Ts8HlJC3yRnj9VNGe(X%pCPkjmTYxyZmn^|Mn*(UP6K8Ob;X$%nUWV^_a55B*(%4>zS8 z`bT=H@xJF&W)>UyF@#43WO8ASsU*Ok>@*O%m}f-GvbG~T7HzoK`}qWJ|4!4liAyq4!J zy3Y!AxO+#A)gg+>fGt3*C5oHFf*1;{4xP8G^rxaTVOOk2Xb~r-|RlI*`+L&AADO=&qC1jx|++P(9HtVQltHM=179Q3Z3f z?1oJh_(&{^_8+a=_|kFmwt&Fln|2wJ!&xPz=N-qqsDLuLOF~ydzgSx+q&9E5~H3J zA<&Z$8?DU_Ji`S<>$PZi+?q@tW}XS7%!>b9w_3bsZGP8~*GU`#A!j>!1(@pj77>Gcr z645QX&l~)x1uNpdpIl!Bx1Q5ERq}Om#nz}<#*_+^QO(%&g#tZ^7eXSGlCDCNQrg& ze=ocgip#D(aU@%N3HX~`L3a+KNA9La!4Zj3-~n0UEH{|1w=~~?BjRjfD{FXz)fyZQ z#^FqdaU=gjAWoVi4VTcZwl3krEx75M@YDrA8UXQt1&8wD)|^ zn3@tTz|8ES_oG(#USCMwSk)pz6={t0EJVp84V}`gnj__nD~N`VUcKORS~>b0#Ybsw bMIIK=fVL)m%)$BukbvBs2~Ia1b{+gTbYw#A literal 0 HcmV?d00001 diff --git a/public/mstile-310x150.png b/public/mstile-310x150.png new file mode 100644 index 0000000000000000000000000000000000000000..3699f662c6221965d212f28c989c07951f6ec8c3 GIT binary patch literal 2527 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 literal 0 HcmV?d00001 diff --git a/public/mstile-310x310.png b/public/mstile-310x310.png new file mode 100644 index 0000000000000000000000000000000000000000..0cc116962c6eb8af373583e82066c10ab7901184 GIT binary patch literal 4368 zcmcgvc{r4B_n)E^S+Y&aNTEn}k{OEZ#=fM53ZcX-JO~k~CQE~mC1mU=gtCk^%pkrp zLnRuKZ6+j2MDe>v^}g5dkN3LXzuxP5=6TM2?sGopb3W&px$cRwwlwDD-pvhz!FWwg z3~XVr&5G>LHV)t^OY)lq4^B@#3q2UDJdWq5%NDSfbThHFfWd+fz+mAwVXzh83TMJ# z{>m`erwcF`G8G1c<1)xL+5o7++T7j{1i;qA1z-A#wBd!@aUv9~FcmLC#R<2w4d4+5 zHg&^h8~?rpJA6diaY7)T^2aGc#S2mKf*UwO|8`#*J39wHrB5by^a;81Wv?RXJz zXFJ&lqOHDcOe$80T^e}UyTWY&;%pj!Vtz9b0x^G?NH&EF0oowoZ$&n3klW<7>koMV zg%zOqiBNq3tY91a{;yz>cC08Bvr+C(7r+K+zwu$k4m&9rpav)b1QGo!4%mg$AdwFC z)&?auVGzULdil3!XLlgH)B86pTOttFwt?Bc!5mNpy#r@ETN8H6Z1U_aAqpN`!W|eO z!UhMtK+}dqoxVa;znyJtDENkAK&yXA2ijrJ0*K#%{X4S1?fjh}8*M{#=_((f{BLf; z6ujt0fCwnsf)iyAdLxmoyf^!00DOKs*&_elWykzRU{C)q8dl_`|3;_3!?1#Y6}wX$ zXpk*9SZ;s|vU_AB{G|l^cu|UvNZap005#Zxh<0G%t$1(;S+LjPu%>VTzP`Th`!Z4% zytLzxt)(4oGeYMqCL*b@zLzoe`Pa|MS9Rj1fe(g$nCy|ic&};JZ4YC+(7wi z^NJFmL)JuwJ@0mloNr5&=N^Aw+$MKt`b%23#}3K3dE#D`)uS)aU9@)O+Sk)#qbF;s zI1W<-8tu-IGI?bB-kQ(Z?yRlm-}k0pgQ;$9dF6h3c5EWyW>}Dym6|5~wSdh5SqVsC z`4FW8_c7#%p>EsDmIl>F`SEwpb3G||>W8Xu5i?GG|8DoOQ{FeOC;u}zGCbZ>lrWI8 z>(jw!{#s<;(!5sJ7^4%%Ka^jVmNEj26IgIT zrWS@=Q#&NM6r?mrcqJHY$2L;~J^QPJvy7PQj{b;t{B7SWnC1&bQoVaO+ieny9xK2o zE4Dt8y`e9xTy~XL0sV|FD3i!Zn0#)pZf9yR|Hh(k;hsnIX%D#k(B6AI7S^e#rVmp~*gV(m8=9Z?)Kg=!ZOkHbg2sXVZ{Xe;qQlp1MW*LRprZtX6>(jMX4i5fP&Beuf z$;pvdR+grRJm(s2+xK42e%TsNdfw{wol#a9vO0TK?Mc8oawSfr&~+JZ9IKtJ7R_Nq zJc_#-vDTVgWy5t>LhT4W?^;gdm=B>Db|N8np?tg475>~Z{musi%9pL9 zfTJ}o^_q03mYMZf(xX1t^khWAtD`TYIt!?`bK|1?PX=7ttyY`Xs7~>jd~%=D!=3QX zk1t=zO2rFPWa@n~AQe@X+-O2^TPye3&W}#18Y31e+2^BNKHU($osV9O6=KCWm~z`$ znq58_u&cIL<^vAl>s#DPcemjPr5)-eWgre%>EOZgT%^AX+3(tYMBGG-QPrifY1WT7}GikD1+kpW{*_CbdSODc19UO&A5 zZmRbMv+~TV{3+MCp0lQeTq~{h&B3x{{HQrnV)kQB3@d?o@|O&xyJA49N|(6vigv6^ zCe?R-!r`0xx90p5nhNWBaGM-%0zyja`sToOf`DqYN<4m{UlbM(Gq)3y&^L^a$f(&UvK@zHt#?hkn} zO7!Xsc=Ky$*0An2QIXJSk#g?FT<_>a&vR%(=Cpo$idrbM1q~q(7fKI{n=Co!e41u$ z^SkI%zv?KM-iRio?)j=;%f-mlJN7D`7^T_k(Ec$*ldd<}5-pIGIUO~j_%>g1d`pV+ zVt#ISgnVac*vHq6L_W2zjmIA-Y8fqR((oQm(-RP-ocv;GkB~znwo24<7vfSurp4Pm zsA_3+PyE7rH)Wtk(YW1imAQhcKiV zi;j{oahVY=s3dBhL0v{z%?)K`tPDdn@9Y#q@CRMA5SYmfGspCzPN-h2@9J*Gr5wy2 zL#_;k(FWAse`cZPG*#)Jp0#yv$Ez8;77M4%-`7HIV!mbpS=mF0-%-r?%3Sfd+jq|L zB78mGn>waN*D+HobLxrD%w95}Zn5%sMOB$Vx}N8WQ34bvr&X(KoVmr0x!X=HiHPJ0 zGpJ5Y4`CLmjc}9Ogc)c8qH&eUXZI|M4|Vk`ycbb$DI%mXi5W(2vDeXUN7N+yK#`Bq zXZ@69wBi+&-H#V=@DG(h*X6!i>dIjXrqK)>av|PXzd8lkG$UG89*t4*SKz0U2-6T* zyV(o*4fpHjXTC22h~TGZ;z)HI=6-eL{h9iXgfDlg`*qAU2}je3I@ZRPg%9-ApVMCu zrQ$TcZ}HZ9sq)sP=^B+~w9#%JD&B+Fwa1p0HAdaV6T4d_a$F_Wne2{Lw5-{$A; z(TKqCsxgLQ6BvdmTL;Yvd$WdEJ-W}K<JP5Mem(cc_?xDe8)EsDWp1GRcEJ zPdI?Z#?E}QL9X?V&yhZ7GOXJ7rvFr=`{SpHcc}EcBr1KLt3cCvmp6~I?x}@}(9tYy zBe=l*Gi0TKt>o~hJ91ZV_~i3!>w*D?DsX69E^P_9p(rUUUlDW>dgXuh6pnM6MaB&= zxlb%eGemn1=I!s88ls^>qDv*Eb6Hh5t3HvN<6>lm_m$9=eLut)q8LtRJ(C4Up!suc zls#wA`Tp4%CqqYpdoQ4~H4oXraA5GT03I4-l>uPYI~blNady^E%RxQ`fOGmp^{vN+ z^4m;@AD(B<%wz*ggCSa)4r;Ci&Nrbs!vg2)(41?k3n@07rFAu*1tT7lOFtQn=t#|p z8Gg|QEEEBr7qbf2NZs|K4Dfsa3en?0q0L}ph3+$2nh#L-0tybG;Jkv-2iMpON?<7m zmYu7Xw?8)vm>Ld0ypZ~NP0?mNbg2l=+T3z)$=w<5FV(r)lhQ;2x}`zqmH9*NUX*3P zXDoq!{j|^*VQ9EO>a~YQ7X%U4FByR$Z0(&VOl~2o^y8tQr1`@}hEEePI~G;Ju5Tz2 zikUJoUgTzoF

9zdRwKI2z2r@DGCFH|4hSTe*ep4N6;+M1+M?`$}BS<>vC!j*>OH zr=f5Akg?#ENhBUKxHZKbl&q$85?I<~&5o1EWo3=t2ECJgF9@s-H|9qH3whQE$6^Rs zt1T3oAq7Wc`0(2iAw@zdSAR&gC(GJ!1onM4*TmWd|$` zPr!6=l3Ro=PFb}h>enEGT)G+fmOcjtGJ+4qu~6wxz{1)t>|?lkRrT3;wv<439o`k??D4U&vs=B+yiJd%NNmoyIr{GX6SH9~r^q2`e*IY^3 zPE{Eawfx9$ShZG^!i0{a*F+fka|lJ^cakgpSG&M6m5Kd)Bda(((oMUs39_BOXZ3#rIWO zM1lEu1o$)#jkR+4_b&Gn+~=TPA%!csNd%)aLhQL=lX5oNs8cuEFSAYZnY2f>sj|r66vZV1IE||){yv6#jn>TU0KWZ z{Dnk#iVx#yD9^9NHDIs*CFo%$&LAZMBMGmP-d&#bW n{*JcpHt{yDu5goVGey`Z_)ciyghnzb0W&qUG$=iB;l}>~A-*Iy literal 0 HcmV?d00001 diff --git a/public/mstile-70x70.png b/public/mstile-70x70.png new file mode 100644 index 0000000000000000000000000000000000000000..1b72eac65803c3c9eb005e8f420c6512a299b4e7 GIT binary patch literal 1752 zcmZ`&XH-*37@Zj4u_DD(M1_QijbaoLHwyxqAV?@8D0=iD1c)f`UNEAfK=im`tbo8O zHmobCD6(S3Af!<&hzR1s#uY5AC>DyCke&DR&;HnR=FOb%n|r@|zj-tAu#kn8qwPim z04xIo_~CGs;h#Af&R=x7U*TdR_6zm{p!|S^KE@QrEKxvsFaYV3A#Mi%!#Ms802{af z^sEMecL)F`cJ$U_F91l#!-Nq62mnSIvo49DM(HY)u7NW~Q%h)SIOBs3hX$jlB(@ri zSqt;TATU%FO4FtQBVg2~((nvM)1VA3YFW3AruiOXR%!`TCH=9h#;6(z6|aC2l_fM~ z5>UwKgdAv*(Uou)CsNfZcr`UPR*6Cb1O(0H*2W%lR)@^fAA+Uy-iPmxs(vw1o62hI+a z&va2CZ=okrY|ui!d_v6RMi?N{z+eILdW=2d%6@*?23}CIZy?_kvyF0XXBgA znZ)l3ca;0HnA`X!?9^%JSK6DKkG8Ys`zxbO>B9T3uBKUdwb2P*k$tPOL|Pv5=};RWZIQGs~^6j7euyPIo7ivd)-$30Owj} z+qf*<)C-2FzPZ}-7Ejl|9X~&&q?1kACwU_(^Uv>OcRmqb3Y}E7rm9vRW>I2{yO7s; zvX^%3u2Xy2J7mp=;#=k=&35U?MpL<>BBWq(wodliO5T(Q zcEhA$%H*spMY)6S=sl0Qp*rM7ajygGBiY2maE#Xw>XzPrT>XTV>ri|ltk&nu?UC-- zC{g5o$}q`4-@q(Mk-7B#Ml;BH;Xc*f>}xV-Wv1**o)3d<-M7EgWTn%fIJ1zZ7fE)? z{C^FyS=~q8d)m-Xbs^=h`?|&CsxX$^^;dMdkZou^tOuSL=~@!0d8*NSl-JHofD^c~T9SWVjsM_UkdR0!7bxt1gr`Yn)L1fZ$vRM~t!sSs}iFru= z6*I3KL|AS%rh)8rk!0OXI(w1y`4bo(d~r#rB{QPPjDdS}T@|ALrkkey#>*Kjc%-uH z3$PDsw96?(Xys;Jg-CvdnM*x+Ys;&miJP}StL)zDoVmO2wehxYoCx$Z1oUN$cRQ&U zj-PF%4K9kW1YIMt;!Y<6IW3!ik!xB!xa&|_-JOT!B)(W+JdLG&aeSbQPOe6FdF+%~ znJU(tQ&`l9rjs0@=DDuleP$*`df&?k+?w!ZQPT`QlIZLEEOblC&XDHHW+VF0rZ`(}5og8B z7V(?6PY0}f=4BbL4h1$Fmy1(5Ojpi|W+_RPyRDr-jetA9iIBvW1l+#Uf zS15)fdkq$K*Ta~L9OTn2gU*Nfd|g#~qDYyQ_2!C~cg3EJL_KoBJ4n!-Ugo;vS!vvT z`?iXq%m-&%=X5AuRoM(&zv+48@%j>P+obFGWmm< + + + +Created by potrace 1.14, written by Peter Selinger 2001-2017 + + + + + diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..cee6130 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "Tinysites", + "short_name": "Tinysites", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/server/tsconfig.json b/server/tsconfig.json new file mode 100644 index 0000000..b9ed69c --- /dev/null +++ b/server/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../.nuxt/tsconfig.server.json" +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a746f2a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,4 @@ +{ + // https://nuxt.com/docs/guide/concepts/typescript + "extends": "./.nuxt/tsconfig.json" +}