From 697981b482f22401e24c8fcc3b0d50ec6e4a70bf Mon Sep 17 00:00:00 2001 From: Eugene Serb <46799701+eugene-serb@users.noreply.github.com> Date: Thu, 30 Jun 2022 12:35:29 +0300 Subject: [PATCH] Rewrited wavelovers in VueJS, JavaScript, CSS, HTML, JSON --- .gitignore | 24 + README.md | 24 +- babel.config.js | 5 + docs/404.md | 70 + docs/CNAME | 1 + docs/LICENSE.md | 674 + docs/README.md | 31 + about.html => docs/about.html | 0 {assets => docs/assets}/patterns.json | 0 docs/css/app.898cf775.css | 1 + {css => docs/css}/styles.css | 152 +- faq.html => docs/faq.html | 0 {img => docs/img}/android-chrome-192x192.png | Bin {img => docs/img}/android-chrome-512x512.png | Bin {img => docs/img}/apple-touch-icon.png | Bin {img => docs/img}/favicon-16x16.png | Bin {img => docs/img}/favicon-32x32.png | Bin {img => docs/img}/favicon.ico | Bin {img => docs/img}/og.png | Bin docs/index.html | 18 + docs/js/app.6d107a0d.js | 2 + docs/js/app.6d107a0d.js.map | 1 + docs/js/chunk-vendors.b7b248da.js | 2 + docs/js/chunk-vendors.b7b248da.js.map | 1 + robots.txt => docs/robots.txt | 0 site.webmanifest => docs/site.webmanifest | 0 .../sitemap-internal.xml | 6 +- sitemap.xml => docs/sitemap.xml | 2 +- js/scripts.js | 264 - jsconfig.json | 19 + package-lock.json | 19843 ++++++++++++++++ package.json | 43 + public/404.md | 70 + public/CNAME | 1 + public/LICENSE.md | 674 + public/README.md | 31 + public/about.html | 151 + public/assets/patterns.json | 234 + public/css/styles.css | 496 + public/faq.html | 151 + public/img/android-chrome-192x192.png | Bin 0 -> 11770 bytes public/img/android-chrome-512x512.png | Bin 0 -> 38822 bytes public/img/apple-touch-icon.png | Bin 0 -> 10299 bytes public/img/favicon-16x16.png | Bin 0 -> 602 bytes public/img/favicon-32x32.png | Bin 0 -> 1337 bytes public/img/favicon.ico | Bin 0 -> 15406 bytes public/img/og.png | Bin 0 -> 18332 bytes index.html => public/index.html | 24 +- public/robots.txt | 13 + public/site.webmanifest | 20 + public/sitemap-internal.xml | 22 + public/sitemap.xml | 8 + src/App.vue | 17 + src/components/Gamepad.js | 39 + src/components/GamepadItem.vue | 32 + src/components/GamepadList.vue | 32 + src/components/PatternItem.vue | 81 + src/components/PatternList.vue | 48 + src/components/WaveloversApp.vue | 134 + src/main.js | 4 + vue.config.js | 4 + 61 files changed, 23048 insertions(+), 421 deletions(-) create mode 100644 babel.config.js create mode 100644 docs/404.md create mode 100644 docs/CNAME create mode 100644 docs/LICENSE.md create mode 100644 docs/README.md rename about.html => docs/about.html (100%) rename {assets => docs/assets}/patterns.json (100%) create mode 100644 docs/css/app.898cf775.css rename {css => docs/css}/styles.css (79%) rename faq.html => docs/faq.html (100%) rename {img => docs/img}/android-chrome-192x192.png (100%) rename {img => docs/img}/android-chrome-512x512.png (100%) rename {img => docs/img}/apple-touch-icon.png (100%) rename {img => docs/img}/favicon-16x16.png (100%) rename {img => docs/img}/favicon-32x32.png (100%) rename {img => docs/img}/favicon.ico (100%) rename {img => docs/img}/og.png (100%) create mode 100644 docs/index.html create mode 100644 docs/js/app.6d107a0d.js create mode 100644 docs/js/app.6d107a0d.js.map create mode 100644 docs/js/chunk-vendors.b7b248da.js create mode 100644 docs/js/chunk-vendors.b7b248da.js.map rename robots.txt => docs/robots.txt (100%) rename site.webmanifest => docs/site.webmanifest (100%) rename sitemap-internal.xml => docs/sitemap-internal.xml (82%) rename sitemap.xml => docs/sitemap.xml (85%) delete mode 100644 js/scripts.js create mode 100644 jsconfig.json create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 public/404.md create mode 100644 public/CNAME create mode 100644 public/LICENSE.md create mode 100644 public/README.md create mode 100644 public/about.html create mode 100644 public/assets/patterns.json create mode 100644 public/css/styles.css create mode 100644 public/faq.html create mode 100644 public/img/android-chrome-192x192.png create mode 100644 public/img/android-chrome-512x512.png create mode 100644 public/img/apple-touch-icon.png create mode 100644 public/img/favicon-16x16.png create mode 100644 public/img/favicon-32x32.png create mode 100644 public/img/favicon.ico create mode 100644 public/img/og.png rename index.html => public/index.html (90%) create mode 100644 public/robots.txt create mode 100644 public/site.webmanifest create mode 100644 public/sitemap-internal.xml create mode 100644 public/sitemap.xml create mode 100644 src/App.vue create mode 100644 src/components/Gamepad.js create mode 100644 src/components/GamepadItem.vue create mode 100644 src/components/GamepadList.vue create mode 100644 src/components/PatternItem.vue create mode 100644 src/components/PatternList.vue create mode 100644 src/components/WaveloversApp.vue create mode 100644 src/main.js create mode 100644 vue.config.js diff --git a/.gitignore b/.gitignore index dfcfd56..196e672 100644 --- a/.gitignore +++ b/.gitignore @@ -348,3 +348,27 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ + +.DS_Store +node_modules +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/README.md b/README.md index d950d2f..543bc4c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Wavelovers -Wavelovers in ***Javascript***, ***HTML*** and ***CSS*** **[[rep](https://github.com/eugene-serb/wavelovers/), [site](https://wavelovers.ru/)]**. +Wavelovers in ***VueJS***, ***Javascript***, ***HTML*** and ***CSS*** **[[rep](https://github.com/eugene-serb/wavelovers/), [site](https://wavelovers.ru/)]**. This is Wavelovers, which can make a vibrating massager out of a gamepad. It has 16 free vibration patterns to play with. @@ -7,3 +7,25 @@ If you are interested in this or my other projects, or would like to suggest and Follow me on Twitter: *[@eugene_serb](https://twitter.com/eugene_serb)* +## Project setup +``` +npm install +``` + +### Compiles and hot-reloads for development +``` +npm run serve +``` + +### Compiles and minifies for production +``` +npm run build +``` + +### Lints and fixes files +``` +npm run lint +``` + +### Customize configuration +See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/docs/404.md b/docs/404.md new file mode 100644 index 0000000..e21e09f --- /dev/null +++ b/docs/404.md @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..db815ff --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +wavelovers.ru \ No newline at end of file diff --git a/docs/LICENSE.md b/docs/LICENSE.md new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/docs/LICENSE.md @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..543bc4c --- /dev/null +++ b/docs/README.md @@ -0,0 +1,31 @@ +# Wavelovers +Wavelovers in ***VueJS***, ***Javascript***, ***HTML*** and ***CSS*** **[[rep](https://github.com/eugene-serb/wavelovers/), [site](https://wavelovers.ru/)]**. + +This is Wavelovers, which can make a vibrating massager out of a gamepad. It has 16 free vibration patterns to play with. + +If you are interested in this or my other projects, or would like to suggest and share ideas with me, or just talk to me, contact me: *[@eugene_serb](https://t.me/eugene_serb)* + +Follow me on Twitter: *[@eugene_serb](https://twitter.com/eugene_serb)* + +## Project setup +``` +npm install +``` + +### Compiles and hot-reloads for development +``` +npm run serve +``` + +### Compiles and minifies for production +``` +npm run build +``` + +### Lints and fixes files +``` +npm run lint +``` + +### Customize configuration +See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/about.html b/docs/about.html similarity index 100% rename from about.html rename to docs/about.html diff --git a/assets/patterns.json b/docs/assets/patterns.json similarity index 100% rename from assets/patterns.json rename to docs/assets/patterns.json diff --git a/docs/css/app.898cf775.css b/docs/css/app.898cf775.css new file mode 100644 index 0000000..161846a --- /dev/null +++ b/docs/css/app.898cf775.css @@ -0,0 +1 @@ +.pattern-item{width:100%;height:48px;padding:8px;border-radius:var(--number-border-radius);background:var(--color-pattern-button);display:flex;flex-direction:row;justify-content:flex-start;gap:16px;align-items:center;text-align:center;overflow:hidden;cursor:default}@media only screen and (min-width:540px){.pattern-item{width:200px}}.pattern-item ::-moz-selection{background-color:transparent}.pattern-item ::selection{background-color:transparent}.pattern-item_selected{background:var(--color-b)}.pattern-item__icon{font-size:24px}.pattern-item__name{font-size:14px;white-space:nowrap;overflow:hidden;color:var(--color-pattern-text)}.pattern-list{display:flex;flex-direction:row;justify-content:space-around;flex-wrap:wrap;gap:32px}.list-item{max-width:100%;padding:16px;border:4px solid var(--color-b);border-radius:4px;justify-content:space-between}.list-item,.list-item__info{display:flex;flex-direction:column}.list-item__info{gap:16px}.list-item_selected .list-item__info span{color:var(--color-white)}.device-list{display:flex;flex-direction:row;justify-content:space-around;gap:16px}.wavelovers{display:flex;flex-direction:column-reverse;justify-content:flex-start;gap:16px}@media only screen and (min-width:540px){.wavelovers{flex-direction:column}}.message{width:100%;display:flex;flex-direction:column;justify-content:center;text-align:center;font-size:16px}@media only screen and (min-width:540px){.message{font-size:24px}} \ No newline at end of file diff --git a/css/styles.css b/docs/css/styles.css similarity index 79% rename from css/styles.css rename to docs/css/styles.css index d71a21b..6598cd1 100644 --- a/css/styles.css +++ b/docs/css/styles.css @@ -459,141 +459,6 @@ table, th, td { text-align: center; } -/* ----------- */ -/* WAVELOVERS */ -/* ----------- */ - -.wavelovers { - display: flex; - flex-direction: column-reverse; - justify-content: flex-start; - gap: 16px; -} - - @media only screen and (min-width: 540px) { - .wavelovers { - flex-direction: column; - } - } - -.message { - width: 100%; - display: flex; - flex-direction: column; - justify-content: center; - text-align: center; - font-size: 16px; -} - - @media only screen and (min-width: 540px) { - .message { - font-size: 24px; - } - } - -.pattern-box { - display: flex; - flex-direction: column; - gap: 32px; -} - - .pattern-list { - display: flex; - flex-direction: row; - justify-content: space-around; - flex-wrap: wrap; - gap: 32px; - } - - .pattern-item { - width: 100%; - height: 48px; - padding: 8px; - border-radius: var(--number-border-radius); - background: var(--color-pattern-button); - display: flex; - flex-direction: row; - justify-content: flex-start; - gap: 16px; - align-items: center; - text-align: center; - overflow: hidden; - cursor: default; - } - - .pattern-item ::selection { - background-color: transparent; - } - - @media only screen and (min-width: 540px) { - .pattern-item { - width: 200px; - } - } - - .pattern-item__selected { - background: var(--color-b); - } - - .pattern-item__icon{ - font-size: 24px; - } - - .pattern-item__name { - font-size: 14px; - white-space: nowrap; - overflow: hidden; - color: var(--color-pattern-text); - } - -.device-box { - display: flex; - flex-direction: column; - justify-content: space-between; - gap: 16px; - text-align: center; -} - - .device-list { - display: flex; - flex-direction: row; - justify-content: space-around; - gap: 16px; - } - - .list-item { - max-width: 100%; - padding: 16px; - border: 4px solid var(--color-b); - border-radius: 4px; - display: flex; - flex-direction: column; - justify-content: space-between; - } - - .list-item__info { - display: flex; - flex-direction: column; - gap: 16px; - } - - .list-item_selected .list-item__info span { - color: var(--color-white); - } - -.link_hash { - word-break: break-all; -} - -.faq__ask { - font-size: 18px; - font-weight: 500; -} - -.faq__reply { - padding-left: 16px; -} - /* ----- */ /* PAGES */ /* ----- */ @@ -612,3 +477,20 @@ table, th, td { padding: 16px; } +/* ----------- */ +/* WAVELOVERS */ +/* ----------- */ + +.link_hash { + word-break: break-all; +} + +.faq__ask { + font-size: 18px; + font-weight: 500; +} + +.faq__reply { + padding-left: 16px; +} + diff --git a/faq.html b/docs/faq.html similarity index 100% rename from faq.html rename to docs/faq.html diff --git a/img/android-chrome-192x192.png b/docs/img/android-chrome-192x192.png similarity index 100% rename from img/android-chrome-192x192.png rename to docs/img/android-chrome-192x192.png diff --git a/img/android-chrome-512x512.png b/docs/img/android-chrome-512x512.png similarity index 100% rename from img/android-chrome-512x512.png rename to docs/img/android-chrome-512x512.png diff --git a/img/apple-touch-icon.png b/docs/img/apple-touch-icon.png similarity index 100% rename from img/apple-touch-icon.png rename to docs/img/apple-touch-icon.png diff --git a/img/favicon-16x16.png b/docs/img/favicon-16x16.png similarity index 100% rename from img/favicon-16x16.png rename to docs/img/favicon-16x16.png diff --git a/img/favicon-32x32.png b/docs/img/favicon-32x32.png similarity index 100% rename from img/favicon-32x32.png rename to docs/img/favicon-32x32.png diff --git a/img/favicon.ico b/docs/img/favicon.ico similarity index 100% rename from img/favicon.ico rename to docs/img/favicon.ico diff --git a/img/og.png b/docs/img/og.png similarity index 100% rename from img/og.png rename to docs/img/og.png diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..f8021d6 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,18 @@ +Wavelovers

Wavelovers

\ No newline at end of file diff --git a/docs/js/app.6d107a0d.js b/docs/js/app.6d107a0d.js new file mode 100644 index 0000000..c4c067c --- /dev/null +++ b/docs/js/app.6d107a0d.js @@ -0,0 +1,2 @@ +(function(){var t={7375:function(t,e,n){var i=n(4344)["default"];t.exports=class{constructor(t){i(this,"init",(()=>{this.id=Date.now(),this.canVibrate=!!this.unit.vibrationActuator,this.isVibrating=!1,this.pattern=[]})),i(this,"update",(()=>{let t=navigator.getGamepads();this.unit=t[this.unit.index]})),i(this,"reset",(()=>{this.isVibrating=!1,this.unit.vibrationActuator.reset()})),i(this,"vibrate",(async t=>{this.isVibrating=!0,this.pattern=t;while(!0===this.isVibrating)for(let t=0;tnew Promise((e=>setTimeout(e,t))))),this.unit=t,this.init()}}},3596:function(t,e,n){"use strict";var i=n(9242),a=n(3396);function s(t,e,n,i,s,r){const o=(0,a.up)("Wavelovers");return(0,a.wg)(),(0,a.j4)(o)}const r={class:"wavelovers"},o={class:"content-item"},c={key:1,class:"message"},d=(0,a._)("span",null,"Loading...",-1),p=[d],u={class:"content-item"},h={key:1,class:"message"},l=(0,a._)("span",null,"Press any gamepad's button or connect new gamepad.",-1),m=[l];function v(t,e,n,i,s,d){const l=(0,a.up)("PatternList"),v=(0,a.up)("GamepadList");return(0,a.wg)(),(0,a.iD)("div",r,[(0,a._)("div",o,[t.patterns.length>0?((0,a.wg)(),(0,a.j4)(l,{key:0,patterns:t.patterns,mode:t.mode,isActive:t.isActive,onChange:d.change},null,8,["patterns","mode","isActive","onChange"])):((0,a.wg)(),(0,a.iD)("div",c,p))]),(0,a._)("div",u,[t.gamepads.length>0?((0,a.wg)(),(0,a.j4)(v,{key:0,gamepads:t.gamepads},null,8,["gamepads"])):((0,a.wg)(),(0,a.iD)("div",h,m))])])}const g={class:"pattern-list"};function f(t,e,n,i,s,r){const o=(0,a.up)("PatternItem");return(0,a.wg)(),(0,a.iD)("div",g,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(n.patterns,((t,e)=>((0,a.wg)(),(0,a.j4)(o,{key:t.name,pattern:t,index:e,mode:n.mode,isActive:n.isActive,onChange:r.change},null,8,["pattern","index","mode","isActive","onChange"])))),128))])}var w=n(7139);const b=["textContent"],y=["textContent"];function A(t,e,n,i,s,r){return(0,a.wg)(),(0,a.iD)("div",{onClick:e[0]||(e[0]=t=>r.change(n.index)),class:(0,w.C_)(["pattern-item",n.index===n.mode&&!0===n.isActive?"pattern-item_selected":""])},[(0,a._)("span",{class:"pattern-item__icon",textContent:(0,w.zw)(n.pattern.icon)},null,8,b),(0,a._)("span",{class:"pattern-item__name",textContent:(0,w.zw)(n.pattern.name)},null,8,y)],2)}var x={name:"PatternItem",props:{pattern:{type:Object},index:{type:Number},mode:{type:Number},isActive:{type:Boolean}},components:{},methods:{change(t){this.$emit("change",t)}}},C=n(89);const j=(0,C.Z)(x,[["render",A]]);var _=j,k={name:"PatternList",props:{patterns:{type:Array},mode:{type:Number},isActive:{type:Boolean}},components:{PatternItem:_},methods:{change(t){this.$emit("change",t)}}};const O=(0,C.Z)(k,[["render",f]]);var P=O;const D={class:"device-list"};function G(t,e,n,i,s,r){const o=(0,a.up)("GamepadItem");return(0,a.wg)(),(0,a.iD)("div",D,[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(n.gamepads,(t=>((0,a.wg)(),(0,a.j4)(o,{key:t.id,textContent:(0,w.zw)(t.unit.id)},null,8,["textContent"])))),128))])}const L={class:"list-item"};function E(t,e,n,i,s,r){return(0,a.wg)(),(0,a.iD)("div",L)}var I={name:"GamepadItem",components:{}};const V=(0,C.Z)(I,[["render",E]]);var Z=V,z={name:"GamepadList",props:{gamepads:{type:Array}},components:{GamepadItem:Z}};const N=(0,C.Z)(z,[["render",G]]);var T=N,W=n(7375),B=n.n(W),H={name:"WaveloversApp",components:{PatternList:P,GamepadList:T},data:()=>({gamepads:[],patterns:[],isActive:!1,mode:0}),methods:{loadPatterns:async function(){const t="https://wavelovers.ru/assets/patterns.json";try{const e=await fetch(t);if(e.ok){let t=await e.json();this.patterns=t}else console.log("Connect to the Internet for download more patterns...")}catch(e){console.log("[error]",e)}},addEventListeners(){window.addEventListener("gamepadconnected",(()=>this.addGamepad(event))),window.addEventListener("gamepaddisconnected",(()=>this.deleteGamepad(event)))},addGamepad(t){this.gamepads.length>1||this.gamepads.push(new(B())(t.gamepad))},deleteGamepad(t){this.gamepads.forEach(((e,n)=>{e.unit.id===t.gamepad.id&&this.gamepads.splice(n,1)}))},change(t){this.mode===t?(this.isActive=!this.isActive,this.reset()):(this.isActive=!0,this.mode=t),!0===this.isActive&&(this.reset(),this.vibrate())},vibrate(){this.gamepads.forEach((t=>{t.vibrate(this.patterns[this.mode].pattern)}))},reset(){this.gamepads.forEach((t=>{t.reset()}))}},mounted(){this.loadPatterns(),this.addEventListeners()}};const K=(0,C.Z)(H,[["render",v]]);var Y=K,$={name:"App",components:{Wavelovers:Y}};const F=(0,C.Z)($,[["render",s]]);var M=F;(0,i.ri)(M).mount("#app")}},e={};function n(i){var a=e[i];if(void 0!==a)return a.exports;var s=e[i]={exports:{}};return t[i](s,s.exports,n),s.exports}n.m=t,function(){var t=[];n.O=function(e,i,a,s){if(!i){var r=1/0;for(p=0;p=s)&&Object.keys(n.O).every((function(t){return n.O[t](i[c])}))?i.splice(c--,1):(o=!1,s0&&t[p-1][2]>s;p--)t[p]=t[p-1];t[p]=[i,a,s]}}(),function(){n.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return n.d(e,{a:e}),e}}(),function(){n.d=function(t,e){for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})}}(),function(){n.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"===typeof window)return window}}()}(),function(){n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}}(),function(){var t={143:0};n.O.j=function(e){return 0===t[e]};var e=function(e,i){var a,s,r=i[0],o=i[1],c=i[2],d=0;if(r.some((function(e){return 0!==t[e]}))){for(a in o)n.o(o,a)&&(n.m[a]=o[a]);if(c)var p=c(n)}for(e&&e(i);d {\r\n this.id = Date.now();\r\n this.canVibrate = (this.unit.vibrationActuator) ? true : false;\r\n this.isVibrating = false;\r\n this.pattern = [];\r\n };\r\n update = () => {\r\n let gamepads = navigator.getGamepads();\r\n this.unit = gamepads[this.unit.index];\r\n };\r\n reset = () => {\r\n this.isVibrating = false;\r\n this.unit.vibrationActuator.reset();\r\n };\r\n vibrate = async (pattern) => {\r\n this.isVibrating = true;\r\n this.pattern = pattern;\r\n\r\n while (this.isVibrating === true) {\r\n for (let i = 0; i < this.pattern.length; i++) {\r\n if (this.isVibrating === true) {\r\n this.unit.vibrationActuator.playEffect('dual-rumble', this.pattern[i]);\r\n await this.sleep(this.pattern[i].startDelay + this.pattern[i].duration + 100);\r\n } else {\r\n return;\r\n }\r\n }\r\n }\r\n };\r\n sleep = (ms) => {\r\n return new Promise(resolve => setTimeout(resolve, ms));\r\n };\r\n};\r\n\r\n","\r\n\r\n\r\n\r\n\r\n","\r\n\r\n\r\n\r\n\r\n","\r\n\r\n\r\n\r\n\r\n","\r\n\r\n\r\n\r\n\r\n","import { render } from \"./PatternItem.vue?vue&type=template&id=63e50548\"\nimport script from \"./PatternItem.vue?vue&type=script&lang=js\"\nexport * from \"./PatternItem.vue?vue&type=script&lang=js\"\n\nimport \"./PatternItem.vue?vue&type=style&index=0&id=63e50548&lang=css\"\n\nimport exportComponent from \"E:\\\\Sources\\\\Repos\\\\wavelovers\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { render } from \"./PatternList.vue?vue&type=template&id=d7f3e51c\"\nimport script from \"./PatternList.vue?vue&type=script&lang=js\"\nexport * from \"./PatternList.vue?vue&type=script&lang=js\"\n\nimport \"./PatternList.vue?vue&type=style&index=0&id=d7f3e51c&lang=css\"\n\nimport exportComponent from \"E:\\\\Sources\\\\Repos\\\\wavelovers\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\r\n\r\n\r\n\r\n\r\n","\r\n\r\n\r\n\r\n\r\n","import { render } from \"./GamepadItem.vue?vue&type=template&id=ac1dbe44\"\nimport script from \"./GamepadItem.vue?vue&type=script&lang=js\"\nexport * from \"./GamepadItem.vue?vue&type=script&lang=js\"\n\nimport \"./GamepadItem.vue?vue&type=style&index=0&id=ac1dbe44&lang=css\"\n\nimport exportComponent from \"E:\\\\Sources\\\\Repos\\\\wavelovers\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { render } from \"./GamepadList.vue?vue&type=template&id=df298002\"\nimport script from \"./GamepadList.vue?vue&type=script&lang=js\"\nexport * from \"./GamepadList.vue?vue&type=script&lang=js\"\n\nimport \"./GamepadList.vue?vue&type=style&index=0&id=df298002&lang=css\"\n\nimport exportComponent from \"E:\\\\Sources\\\\Repos\\\\wavelovers\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { render } from \"./WaveloversApp.vue?vue&type=template&id=59c0b1a0\"\nimport script from \"./WaveloversApp.vue?vue&type=script&lang=js\"\nexport * from \"./WaveloversApp.vue?vue&type=script&lang=js\"\n\nimport \"./WaveloversApp.vue?vue&type=style&index=0&id=59c0b1a0&lang=css\"\n\nimport exportComponent from \"E:\\\\Sources\\\\Repos\\\\wavelovers\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { render } from \"./App.vue?vue&type=template&id=994f0e52\"\nimport script from \"./App.vue?vue&type=script&lang=js\"\nexport * from \"./App.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"E:\\\\Sources\\\\Repos\\\\wavelovers\\\\node_modules\\\\vue-loader\\\\dist\\\\exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","import { createApp } from 'vue'\nimport App from './App.vue'\n\ncreateApp(App).mount('#app')\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = function(result, chunkIds, fn, priority) {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every(function(key) { return __webpack_require__.O[key](chunkIds[j]); })) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = function(module) {\n\tvar getter = module && module.__esModule ?\n\t\tfunction() { return module['default']; } :\n\t\tfunction() { return module; };\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t143: 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = function(chunkId) { return installedChunks[chunkId] === 0; };\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = function(parentChunkLoadingFunction, data) {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some(function(id) { return installedChunks[id] !== 0; })) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkwavelovers\"] = self[\"webpackChunkwavelovers\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [998], function() { return __webpack_require__(3596); })\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n"],"names":["module","exports","constructor","gamepad","this","id","Date","now","canVibrate","unit","vibrationActuator","isVibrating","pattern","gamepads","navigator","getGamepads","index","reset","async","i","length","playEffect","sleep","startDelay","duration","ms","Promise","resolve","setTimeout","init","_createBlock","_component_Wavelovers","class","_createElementVNode","_hoisted_4","_hoisted_8","_createElementBlock","_ctx","_component_PatternList","patterns","mode","isActive","onChange","$options","_hoisted_5","_component_GamepadList","_hoisted_9","_Fragment","_renderList","$props","_component_PatternItem","key","name","onClick","_toDisplayString","icon","props","type","Object","Number","Boolean","components","methods","change","$emit","__exports__","Array","PatternItem","_component_GamepadItem","GamepadItem","PatternList","GamepadList","data","loadPatterns","url","response","fetch","ok","json","console","log","error","addEventListeners","window","addEventListener","addGamepad","event","deleteGamepad","push","Gamepad","forEach","splice","vibrate","mounted","Wavelovers","WaveloversApp","render","createApp","App","mount","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","m","deferred","O","result","chunkIds","fn","priority","notFulfilled","Infinity","fulfilled","j","keys","every","r","n","getter","__esModule","d","a","definition","o","defineProperty","enumerable","get","g","globalThis","Function","e","obj","prop","prototype","hasOwnProperty","call","installedChunks","chunkId","webpackJsonpCallback","parentChunkLoadingFunction","moreModules","runtime","some","chunkLoadingGlobal","self","bind","__webpack_exports__"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/js/chunk-vendors.b7b248da.js b/docs/js/chunk-vendors.b7b248da.js new file mode 100644 index 0000000..f732e1b --- /dev/null +++ b/docs/js/chunk-vendors.b7b248da.js @@ -0,0 +1,2 @@ +(self["webpackChunkwavelovers"]=self["webpackChunkwavelovers"]||[]).push([[998],{9662:function(e,t,n){var r=n(614),o=n(6330),i=TypeError;e.exports=function(e){if(r(e))return e;throw i(o(e)+" is not a function")}},6077:function(e,t,n){var r=n(614),o=String,i=TypeError;e.exports=function(e){if("object"==typeof e||r(e))return e;throw i("Can't set "+o(e)+" as a prototype")}},1223:function(e,t,n){var r=n(5112),o=n(30),i=n(3070).f,s=r("unscopables"),c=Array.prototype;void 0==c[s]&&i(c,s,{configurable:!0,value:o(null)}),e.exports=function(e){c[s][e]=!0}},9670:function(e,t,n){var r=n(111),o=String,i=TypeError;e.exports=function(e){if(r(e))return e;throw i(o(e)+" is not an object")}},1318:function(e,t,n){var r=n(5656),o=n(1400),i=n(6244),s=function(e){return function(t,n,s){var c,u=r(t),l=i(u),a=o(s,l);if(e&&n!=n){while(l>a)if(c=u[a++],c!=c)return!0}else for(;l>a;a++)if((e||a in u)&&u[a]===n)return e||a||0;return!e&&-1}};e.exports={includes:s(!0),indexOf:s(!1)}},4326:function(e,t,n){var r=n(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:function(e,t,n){var r=n(1694),o=n(614),i=n(4326),s=n(5112),c=s("toStringTag"),u=Object,l="Arguments"==i(function(){return arguments}()),a=function(e,t){try{return e[t]}catch(n){}};e.exports=r?i:function(e){var t,n,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=a(t=u(e),c))?n:l?i(t):"Object"==(r=i(t))&&o(t.callee)?"Arguments":r}},7741:function(e,t,n){var r=n(1702),o=Error,i=r("".replace),s=function(e){return String(o(e).stack)}("zxcasd"),c=/\n\s*at [^:]*:[^\n]*/,u=c.test(s);e.exports=function(e,t){if(u&&"string"==typeof e&&!o.prepareStackTrace)while(t--)e=i(e,c,"");return e}},9920:function(e,t,n){var r=n(2597),o=n(3887),i=n(1236),s=n(3070);e.exports=function(e,t,n){for(var c=o(t),u=s.f,l=i.f,a=0;a0&&r[0]<4?1:+(r[0]+r[1])),!o&&s&&(r=s.match(/Edge\/(\d+)/),(!r||r[1]>=74)&&(r=s.match(/Chrome\/(\d+)/),r&&(o=+r[1]))),e.exports=o},748:function(e){e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2914:function(e,t,n){var r=n(7293),o=n(9114);e.exports=!r((function(){var e=Error("a");return!("stack"in e)||(Object.defineProperty(e,"stack",o(1,7)),7!==e.stack)}))},2109:function(e,t,n){var r=n(7854),o=n(1236).f,i=n(8880),s=n(8052),c=n(3072),u=n(9920),l=n(4705);e.exports=function(e,t){var n,a,f,p,d,h,v=e.target,g=e.global,m=e.stat;if(a=g?r:m?r[v]||c(v,{}):(r[v]||{}).prototype,a)for(f in t){if(d=t[f],e.dontCallGetSet?(h=o(a,f),p=h&&h.value):p=a[f],n=l(g?f:v+(m?".":"#")+f,e.forced),!n&&void 0!==p){if(typeof d==typeof p)continue;u(d,p)}(e.sham||p&&p.sham)&&i(d,"sham",!0),s(a,f,d,e)}}},7293:function(e){e.exports=function(e){try{return!!e()}catch(t){return!0}}},2104:function(e,t,n){var r=n(4374),o=Function.prototype,i=o.apply,s=o.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?s.bind(i):function(){return s.apply(i,arguments)})},4374:function(e,t,n){var r=n(7293);e.exports=!r((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},6916:function(e,t,n){var r=n(4374),o=Function.prototype.call;e.exports=r?o.bind(o):function(){return o.apply(o,arguments)}},6530:function(e,t,n){var r=n(9781),o=n(2597),i=Function.prototype,s=r&&Object.getOwnPropertyDescriptor,c=o(i,"name"),u=c&&"something"===function(){}.name,l=c&&(!r||r&&s(i,"name").configurable);e.exports={EXISTS:c,PROPER:u,CONFIGURABLE:l}},1702:function(e,t,n){var r=n(4374),o=Function.prototype,i=o.bind,s=o.call,c=r&&i.bind(s,s);e.exports=r?function(e){return e&&c(e)}:function(e){return e&&function(){return s.apply(e,arguments)}}},5005:function(e,t,n){var r=n(7854),o=n(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?i(r[e]):r[e]&&r[e][t]}},8173:function(e,t,n){var r=n(9662);e.exports=function(e,t){var n=e[t];return null==n?void 0:r(n)}},7854:function(e,t,n){var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},2597:function(e,t,n){var r=n(1702),o=n(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(o(e),t)}},3501:function(e){e.exports={}},490:function(e,t,n){var r=n(5005);e.exports=r("document","documentElement")},4664:function(e,t,n){var r=n(9781),o=n(7293),i=n(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(e,t,n){var r=n(1702),o=n(7293),i=n(4326),s=Object,c=r("".split);e.exports=o((function(){return!s("z").propertyIsEnumerable(0)}))?function(e){return"String"==i(e)?c(e,""):s(e)}:s},9587:function(e,t,n){var r=n(614),o=n(111),i=n(7674);e.exports=function(e,t,n){var s,c;return i&&r(s=t.constructor)&&s!==n&&o(c=s.prototype)&&c!==n.prototype&&i(e,c),e}},2788:function(e,t,n){var r=n(1702),o=n(614),i=n(5465),s=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return s(e)}),e.exports=i.inspectSource},8340:function(e,t,n){var r=n(111),o=n(8880);e.exports=function(e,t){r(t)&&"cause"in t&&o(e,"cause",t.cause)}},9909:function(e,t,n){var r,o,i,s=n(8536),c=n(7854),u=n(1702),l=n(111),a=n(8880),f=n(2597),p=n(5465),d=n(6200),h=n(3501),v="Object already initialized",g=c.TypeError,m=c.WeakMap,y=function(e){return i(e)?o(e):r(e,{})},b=function(e){return function(t){var n;if(!l(t)||(n=o(t)).type!==e)throw g("Incompatible receiver, "+e+" required");return n}};if(s||p.state){var _=p.state||(p.state=new m),x=u(_.get),w=u(_.has),k=u(_.set);r=function(e,t){if(w(_,e))throw new g(v);return t.facade=e,k(_,e,t),t},o=function(e){return x(_,e)||{}},i=function(e){return w(_,e)}}else{var S=d("state");h[S]=!0,r=function(e,t){if(f(e,S))throw new g(v);return t.facade=e,a(e,S,t),t},o=function(e){return f(e,S)?e[S]:{}},i=function(e){return f(e,S)}}e.exports={set:r,get:o,has:i,enforce:y,getterFor:b}},614:function(e){e.exports=function(e){return"function"==typeof e}},4705:function(e,t,n){var r=n(7293),o=n(614),i=/#|\.prototype\./,s=function(e,t){var n=u[c(e)];return n==a||n!=l&&(o(t)?r(t):!!t)},c=s.normalize=function(e){return String(e).replace(i,".").toLowerCase()},u=s.data={},l=s.NATIVE="N",a=s.POLYFILL="P";e.exports=s},111:function(e,t,n){var r=n(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:function(e){e.exports=!1},2190:function(e,t,n){var r=n(5005),o=n(614),i=n(7976),s=n(3307),c=Object;e.exports=s?function(e){return"symbol"==typeof e}:function(e){var t=r("Symbol");return o(t)&&i(t.prototype,c(e))}},6244:function(e,t,n){var r=n(7466);e.exports=function(e){return r(e.length)}},6339:function(e,t,n){var r=n(7293),o=n(614),i=n(2597),s=n(9781),c=n(6530).CONFIGURABLE,u=n(2788),l=n(9909),a=l.enforce,f=l.get,p=Object.defineProperty,d=s&&!r((function(){return 8!==p((function(){}),"length",{value:8}).length})),h=String(String).split("String"),v=e.exports=function(e,t,n){"Symbol("===String(t).slice(0,7)&&(t="["+String(t).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(t="get "+t),n&&n.setter&&(t="set "+t),(!i(e,"name")||c&&e.name!==t)&&(s?p(e,"name",{value:t,configurable:!0}):e.name=t),d&&n&&i(n,"arity")&&e.length!==n.arity&&p(e,"length",{value:n.arity});try{n&&i(n,"constructor")&&n.constructor?s&&p(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(o){}var r=a(e);return i(r,"source")||(r.source=h.join("string"==typeof t?t:"")),e};Function.prototype.toString=v((function(){return o(this)&&f(this).source||u(this)}),"toString")},4758:function(e){var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var r=+e;return(r>0?n:t)(r)}},133:function(e,t,n){var r=n(7392),o=n(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:function(e,t,n){var r=n(7854),o=n(614),i=n(2788),s=r.WeakMap;e.exports=o(s)&&/native code/.test(i(s))},6277:function(e,t,n){var r=n(1340);e.exports=function(e,t){return void 0===e?arguments.length<2?"":t:r(e)}},30:function(e,t,n){var r,o=n(9670),i=n(6048),s=n(748),c=n(3501),u=n(490),l=n(317),a=n(6200),f=">",p="<",d="prototype",h="script",v=a("IE_PROTO"),g=function(){},m=function(e){return p+h+f+e+p+"/"+h+f},y=function(e){e.write(m("")),e.close();var t=e.parentWindow.Object;return e=null,t},b=function(){var e,t=l("iframe"),n="java"+h+":";return t.style.display="none",u.appendChild(t),t.src=String(n),e=t.contentWindow.document,e.open(),e.write(m("document.F=Object")),e.close(),e.F},_=function(){try{r=new ActiveXObject("htmlfile")}catch(t){}_="undefined"!=typeof document?document.domain&&r?y(r):b():y(r);var e=s.length;while(e--)delete _[d][s[e]];return _()};c[v]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(g[d]=o(e),n=new g,g[d]=null,n[v]=e):n=_(),void 0===t?n:i.f(n,t)}},6048:function(e,t,n){var r=n(9781),o=n(3353),i=n(3070),s=n(9670),c=n(5656),u=n(1956);t.f=r&&!o?Object.defineProperties:function(e,t){s(e);var n,r=c(t),o=u(t),l=o.length,a=0;while(l>a)i.f(e,n=o[a++],r[n]);return e}},3070:function(e,t,n){var r=n(9781),o=n(4664),i=n(3353),s=n(9670),c=n(4948),u=TypeError,l=Object.defineProperty,a=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",d="writable";t.f=r?i?function(e,t,n){if(s(e),t=c(t),s(n),"function"===typeof e&&"prototype"===t&&"value"in n&&d in n&&!n[d]){var r=a(e,t);r&&r[d]&&(e[t]=n.value,n={configurable:p in n?n[p]:r[p],enumerable:f in n?n[f]:r[f],writable:!1})}return l(e,t,n)}:l:function(e,t,n){if(s(e),t=c(t),s(n),o)try{return l(e,t,n)}catch(r){}if("get"in n||"set"in n)throw u("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},1236:function(e,t,n){var r=n(9781),o=n(6916),i=n(5296),s=n(9114),c=n(5656),u=n(4948),l=n(2597),a=n(4664),f=Object.getOwnPropertyDescriptor;t.f=r?f:function(e,t){if(e=c(e),t=u(t),a)try{return f(e,t)}catch(n){}if(l(e,t))return s(!o(i.f,e,t),e[t])}},8006:function(e,t,n){var r=n(6324),o=n(748),i=o.concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},5181:function(e,t){t.f=Object.getOwnPropertySymbols},7976:function(e,t,n){var r=n(1702);e.exports=r({}.isPrototypeOf)},6324:function(e,t,n){var r=n(1702),o=n(2597),i=n(5656),s=n(1318).indexOf,c=n(3501),u=r([].push);e.exports=function(e,t){var n,r=i(e),l=0,a=[];for(n in r)!o(c,n)&&o(r,n)&&u(a,n);while(t.length>l)o(r,n=t[l++])&&(~s(a,n)||u(a,n));return a}},1956:function(e,t,n){var r=n(6324),o=n(748);e.exports=Object.keys||function(e){return r(e,o)}},5296:function(e,t){"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,o=r&&!n.call({1:2},1);t.f=o?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},7674:function(e,t,n){var r=n(1702),o=n(9670),i=n(6077);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{e=r(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set),e(n,[]),t=n instanceof Array}catch(s){}return function(n,r){return o(n),i(r),t?e(n,r):n.__proto__=r,n}}():void 0)},2140:function(e,t,n){var r=n(6916),o=n(614),i=n(111),s=TypeError;e.exports=function(e,t){var n,c;if("string"===t&&o(n=e.toString)&&!i(c=r(n,e)))return c;if(o(n=e.valueOf)&&!i(c=r(n,e)))return c;if("string"!==t&&o(n=e.toString)&&!i(c=r(n,e)))return c;throw s("Can't convert object to primitive value")}},3887:function(e,t,n){var r=n(5005),o=n(1702),i=n(8006),s=n(5181),c=n(9670),u=o([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(c(e)),n=s.f;return n?u(t,n(e)):t}},2626:function(e,t,n){var r=n(3070).f;e.exports=function(e,t,n){n in e||r(e,n,{configurable:!0,get:function(){return t[n]},set:function(e){t[n]=e}})}},4488:function(e){var t=TypeError;e.exports=function(e){if(void 0==e)throw t("Can't call method on "+e);return e}},6200:function(e,t,n){var r=n(2309),o=n(9711),i=r("keys");e.exports=function(e){return i[e]||(i[e]=o(e))}},5465:function(e,t,n){var r=n(7854),o=n(3072),i="__core-js_shared__",s=r[i]||o(i,{});e.exports=s},2309:function(e,t,n){var r=n(1913),o=n(5465);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.23.3",mode:r?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.23.3/LICENSE",source:"https://github.com/zloirock/core-js"})},1400:function(e,t,n){var r=n(9303),o=Math.max,i=Math.min;e.exports=function(e,t){var n=r(e);return n<0?o(n+t,0):i(n,t)}},5656:function(e,t,n){var r=n(8361),o=n(4488);e.exports=function(e){return r(o(e))}},9303:function(e,t,n){var r=n(4758);e.exports=function(e){var t=+e;return t!==t||0===t?0:r(t)}},7466:function(e,t,n){var r=n(9303),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},7908:function(e,t,n){var r=n(4488),o=Object;e.exports=function(e){return o(r(e))}},7593:function(e,t,n){var r=n(6916),o=n(111),i=n(2190),s=n(8173),c=n(2140),u=n(5112),l=TypeError,a=u("toPrimitive");e.exports=function(e,t){if(!o(e)||i(e))return e;var n,u=s(e,a);if(u){if(void 0===t&&(t="default"),n=r(u,e,t),!o(n)||i(n))return n;throw l("Can't convert object to primitive value")}return void 0===t&&(t="number"),c(e,t)}},4948:function(e,t,n){var r=n(7593),o=n(2190);e.exports=function(e){var t=r(e,"string");return o(t)?t:t+""}},1694:function(e,t,n){var r=n(5112),o=r("toStringTag"),i={};i[o]="z",e.exports="[object z]"===String(i)},1340:function(e,t,n){var r=n(648),o=String;e.exports=function(e){if("Symbol"===r(e))throw TypeError("Cannot convert a Symbol value to a string");return o(e)}},6330:function(e){var t=String;e.exports=function(e){try{return t(e)}catch(n){return"Object"}}},9711:function(e,t,n){var r=n(1702),o=0,i=Math.random(),s=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+s(++o+i,36)}},3307:function(e,t,n){var r=n(133);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:function(e,t,n){var r=n(9781),o=n(7293);e.exports=r&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5112:function(e,t,n){var r=n(7854),o=n(2309),i=n(2597),s=n(9711),c=n(133),u=n(3307),l=o("wks"),a=r.Symbol,f=a&&a["for"],p=u?a:a&&a.withoutSetter||s;e.exports=function(e){if(!i(l,e)||!c&&"string"!=typeof l[e]){var t="Symbol."+e;c&&i(a,e)?l[e]=a[e]:l[e]=u&&f?f(t):p(t)}return l[e]}},9191:function(e,t,n){"use strict";var r=n(5005),o=n(2597),i=n(8880),s=n(7976),c=n(7674),u=n(9920),l=n(2626),a=n(9587),f=n(6277),p=n(8340),d=n(7741),h=n(2914),v=n(9781),g=n(1913);e.exports=function(e,t,n,m){var y="stackTraceLimit",b=m?2:1,_=e.split("."),x=_[_.length-1],w=r.apply(null,_);if(w){var k=w.prototype;if(!g&&o(k,"cause")&&delete k.cause,!n)return w;var S=r("Error"),C=t((function(e,t){var n=f(m?t:e,void 0),r=m?new w(e):new w;return void 0!==n&&i(r,"message",n),h&&i(r,"stack",d(r.stack,2)),this&&s(k,this)&&a(r,this,C),arguments.length>b&&p(r,arguments[b]),r}));if(C.prototype=k,"Error"!==x?c?c(C,S):u(C,S,{name:!0}):v&&y in w&&(l(C,w,y),l(C,w,"prepareStackTrace")),u(C,w),!g)try{k.name!==x&&i(k,"name",x),k.constructor=C}catch(O){}return C}}},6699:function(e,t,n){"use strict";var r=n(2109),o=n(1318).includes,i=n(7293),s=n(1223),c=i((function(){return!Array(1).includes()}));r({target:"Array",proto:!0,forced:c},{includes:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),s("includes")},1703:function(e,t,n){var r=n(2109),o=n(7854),i=n(2104),s=n(9191),c="WebAssembly",u=o[c],l=7!==Error("e",{cause:7}).cause,a=function(e,t){var n={};n[e]=s(e,t,l),r({global:!0,constructor:!0,arity:1,forced:l},n)},f=function(e,t){if(u&&u[e]){var n={};n[e]=s(c+"."+e,t,l),r({target:c,stat:!0,constructor:!0,arity:1,forced:l},n)}};a("Error",(function(e){return function(t){return i(e,this,arguments)}})),a("EvalError",(function(e){return function(t){return i(e,this,arguments)}})),a("RangeError",(function(e){return function(t){return i(e,this,arguments)}})),a("ReferenceError",(function(e){return function(t){return i(e,this,arguments)}})),a("SyntaxError",(function(e){return function(t){return i(e,this,arguments)}})),a("TypeError",(function(e){return function(t){return i(e,this,arguments)}})),a("URIError",(function(e){return function(t){return i(e,this,arguments)}})),f("CompileError",(function(e){return function(t){return i(e,this,arguments)}})),f("LinkError",(function(e){return function(t){return i(e,this,arguments)}})),f("RuntimeError",(function(e){return function(t){return i(e,this,arguments)}}))},4870:function(e,t,n){"use strict";n.d(t,{Bj:function(){return i},Fl:function(){return Je},IU:function(){return je},Jd:function(){return k},PG:function(){return Se},Um:function(){return xe},WL:function(){return Le},X$:function(){return E},X3:function(){return Ee},Xl:function(){return Te},dq:function(){return Pe},j:function(){return C},lk:function(){return S},qj:function(){return _e},qq:function(){return b},yT:function(){return Oe}});var r=n(7139);let o;class i{constructor(e=!1){this.active=!0,this.effects=[],this.cleanups=[],!e&&o&&(this.parent=o,this.index=(o.scopes||(o.scopes=[])).push(this)-1)}run(e){if(this.active){const t=o;try{return o=this,e()}finally{o=t}}else 0}on(){o=this}off(){o=this.parent}stop(e){if(this.active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},u=e=>(e.w&h)>0,l=e=>(e.n&h)>0,a=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let r=0;r{("length"===t||t>=o)&&l.push(e)}));else switch(void 0!==n&&l.push(u.get(n)),t){case"add":(0,r.kJ)(e)?(0,r.S0)(n)&&l.push(u.get("length")):(l.push(u.get(m)),(0,r._N)(e)&&l.push(u.get(y)));break;case"delete":(0,r.kJ)(e)||(l.push(u.get(m)),(0,r._N)(e)&&l.push(u.get(y)));break;case"set":(0,r._N)(e)&&l.push(u.get(m));break}if(1===l.length)l[0]&&j(l[0]);else{const e=[];for(const t of l)t&&e.push(...t);j(c(e))}}function j(e,t){const n=(0,r.kJ)(e)?e:[...e];for(const r of n)r.computed&&T(r,t);for(const r of n)r.computed||T(r,t)}function T(e,t){(e!==g||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const R=(0,r.fY)("__proto__,__v_isRef,__isVue"),A=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(r.yk)),I=L(),F=L(!1,!0),P=L(!0),M=N();function N(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=je(this);for(let t=0,o=this.length;t{e[t]=function(...e){k();const n=je(this)[t].apply(this,e);return S(),n}})),e}function L(e=!1,t=!1){return function(n,o,i){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&i===(e?t?me:ge:t?ve:he).get(n))return n;const s=(0,r.kJ)(n);if(!e&&s&&(0,r.RI)(M,o))return Reflect.get(M,o,i);const c=Reflect.get(n,o,i);return((0,r.yk)(o)?A.has(o):R(o))?c:(e||C(n,"get",o),t?c:Pe(c)?s&&(0,r.S0)(o)?c:c.value:(0,r.Kn)(c)?e?we(c):_e(c):c)}}const U=$(),J=$(!0);function $(e=!1){return function(t,n,o,i){let s=t[n];if(Ce(s)&&Pe(s)&&!Pe(o))return!1;if(!e&&!Ce(o)&&(Oe(o)||(o=je(o),s=je(s)),!(0,r.kJ)(t)&&Pe(s)&&!Pe(o)))return s.value=o,!0;const c=(0,r.kJ)(t)&&(0,r.S0)(n)?Number(n)e,K=e=>Reflect.getPrototypeOf(e);function z(e,t,n=!1,r=!1){e=e["__v_raw"];const o=je(e),i=je(t);n||(t!==i&&C(o,"get",t),C(o,"get",i));const{has:s}=K(o),c=r?q:n?Ae:Re;return s.call(o,t)?c(e.get(t)):s.call(o,i)?c(e.get(i)):void(e!==o&&e.get(t))}function X(e,t=!1){const n=this["__v_raw"],r=je(n),o=je(e);return t||(e!==o&&C(r,"has",e),C(r,"has",o)),e===o?n.has(e):n.has(e)||n.has(o)}function Z(e,t=!1){return e=e["__v_raw"],!t&&C(je(e),"iterate",m),Reflect.get(e,"size",e)}function Y(e){e=je(e);const t=je(this),n=K(t),r=n.has.call(t,e);return r||(t.add(e),E(t,"add",e,e)),this}function Q(e,t){t=je(t);const n=je(this),{has:o,get:i}=K(n);let s=o.call(n,e);s||(e=je(e),s=o.call(n,e));const c=i.call(n,e);return n.set(e,t),s?(0,r.aU)(t,c)&&E(n,"set",e,t,c):E(n,"add",e,t),this}function ee(e){const t=je(this),{has:n,get:r}=K(t);let o=n.call(t,e);o||(e=je(e),o=n.call(t,e));const i=r?r.call(t,e):void 0,s=t.delete(e);return o&&E(t,"delete",e,void 0,i),s}function te(){const e=je(this),t=0!==e.size,n=void 0,r=e.clear();return t&&E(e,"clear",void 0,void 0,n),r}function ne(e,t){return function(n,r){const o=this,i=o["__v_raw"],s=je(i),c=t?q:e?Ae:Re;return!e&&C(s,"iterate",m),i.forEach(((e,t)=>n.call(r,c(e),c(t),o)))}}function re(e,t,n){return function(...o){const i=this["__v_raw"],s=je(i),c=(0,r._N)(s),u="entries"===e||e===Symbol.iterator&&c,l="keys"===e&&c,a=i[e](...o),f=n?q:t?Ae:Re;return!t&&C(s,"iterate",l?y:m),{next(){const{value:e,done:t}=a.next();return t?{value:e,done:t}:{value:u?[f(e[0]),f(e[1])]:f(e),done:t}},[Symbol.iterator](){return this}}}}function oe(e){return function(...t){return"delete"!==e&&this}}function ie(){const e={get(e){return z(this,e)},get size(){return Z(this)},has:X,add:Y,set:Q,delete:ee,clear:te,forEach:ne(!1,!1)},t={get(e){return z(this,e,!1,!0)},get size(){return Z(this)},has:X,add:Y,set:Q,delete:ee,clear:te,forEach:ne(!1,!0)},n={get(e){return z(this,e,!0)},get size(){return Z(this,!0)},has(e){return X.call(this,e,!0)},add:oe("add"),set:oe("set"),delete:oe("delete"),clear:oe("clear"),forEach:ne(!0,!1)},r={get(e){return z(this,e,!0,!0)},get size(){return Z(this,!0)},has(e){return X.call(this,e,!0)},add:oe("add"),set:oe("set"),delete:oe("delete"),clear:oe("clear"),forEach:ne(!0,!0)},o=["keys","values","entries",Symbol.iterator];return o.forEach((o=>{e[o]=re(o,!1,!1),n[o]=re(o,!0,!1),t[o]=re(o,!1,!0),r[o]=re(o,!0,!0)})),[e,n,t,r]}const[se,ce,ue,le]=ie();function ae(e,t){const n=t?e?le:ue:e?ce:se;return(t,o,i)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get((0,r.RI)(n,o)&&o in t?n:t,o,i)}const fe={get:ae(!1,!1)},pe={get:ae(!1,!0)},de={get:ae(!0,!1)};const he=new WeakMap,ve=new WeakMap,ge=new WeakMap,me=new WeakMap;function ye(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function be(e){return e["__v_skip"]||!Object.isExtensible(e)?0:ye((0,r.W7)(e))}function _e(e){return Ce(e)?e:ke(e,!1,H,fe,he)}function xe(e){return ke(e,!1,G,pe,ve)}function we(e){return ke(e,!0,W,de,ge)}function ke(e,t,n,o,i){if(!(0,r.Kn)(e))return e;if(e["__v_raw"]&&(!t||!e["__v_isReactive"]))return e;const s=i.get(e);if(s)return s;const c=be(e);if(0===c)return e;const u=new Proxy(e,2===c?o:n);return i.set(e,u),u}function Se(e){return Ce(e)?Se(e["__v_raw"]):!(!e||!e["__v_isReactive"])}function Ce(e){return!(!e||!e["__v_isReadonly"])}function Oe(e){return!(!e||!e["__v_isShallow"])}function Ee(e){return Se(e)||Ce(e)}function je(e){const t=e&&e["__v_raw"];return t?je(t):e}function Te(e){return(0,r.Nj)(e,"__v_skip",!0),e}const Re=e=>(0,r.Kn)(e)?_e(e):e,Ae=e=>(0,r.Kn)(e)?we(e):e;function Ie(e){x&&g&&(e=je(e),O(e.dep||(e.dep=c())))}function Fe(e,t){e=je(e),e.dep&&j(e.dep)}function Pe(e){return!(!e||!0!==e.__v_isRef)}function Me(e){return Pe(e)?e.value:e}const Ne={get:(e,t,n)=>Me(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const o=e[t];return Pe(o)&&!Pe(n)?(o.value=n,!0):Reflect.set(e,t,n,r)}};function Le(e){return Se(e)?e:new Proxy(e,Ne)}class Ue{constructor(e,t,n,r){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this._dirty=!0,this.effect=new b(e,(()=>{this._dirty||(this._dirty=!0,Fe(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!r,this["__v_isReadonly"]=n}get value(){const e=je(this);return Ie(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function Je(e,t,n=!1){let o,i;const s=(0,r.mf)(e);s?(o=e,i=r.dG):(o=e.get,i=e.set);const c=new Ue(o,i,s||!i,n);return c}},3396:function(e,t,n){"use strict";n.d(t,{$d:function(){return s},FN:function(){return pn},HY:function(){return It},Ko:function(){return $e},P$:function(){return se},Q6:function(){return pe},U2:function(){return ue},Us:function(){return Ot},Wm:function(){return Zt},Y8:function(){return re},_:function(){return Xt},h:function(){return Tn},iD:function(){return Vt},ic:function(){return Ee},j4:function(){return Ht},nK:function(){return fe},up:function(){return Ne},wg:function(){return Ut}});n(6699),n(1703);var r=n(4870),o=n(7139);function i(e,t,n,r){let o;try{o=r?e(...r):e()}catch(i){c(i,t,n)}return o}function s(e,t,n,r){if((0,o.mf)(e)){const s=i(e,t,n,r);return s&&(0,o.tI)(s)&&s.catch((e=>{c(e,t,n)})),s}const u=[];for(let o=0;o>>1,o=I(f[r]);op&&f.splice(t,1)}function E(e,t,n,r){(0,o.kJ)(e)?n.push(...e):t&&t.includes(e,e.allowRecurse?r+1:r)||n.push(e),C()}function j(e){E(e,h,d,v)}function T(e){E(e,m,g,y)}function R(e,t=null){if(d.length){for(x=t,h=[...new Set(d)],d.length=0,v=0;vI(e)-I(t))),y=0;ynull==e.id?1/0:e.id;function F(e){a=!1,l=!0,R(e),f.sort(((e,t)=>I(e)-I(t)));o.dG;try{for(p=0;pe.trim()))),t&&(i=n.map(o.He))}let l;let a=r[l=(0,o.hR)(t)]||r[l=(0,o.hR)((0,o._A)(t))];!a&&c&&(a=r[l=(0,o.hR)((0,o.rs)(t))]),a&&s(a,e,6,i);const f=r[l+"Once"];if(f){if(e.emitted){if(e.emitted[l])return}else e.emitted={};e.emitted[l]=!0,s(f,e,6,i)}}function M(e,t,n=!1){const r=t.emitsCache,i=r.get(e);if(void 0!==i)return i;const s=e.emits;let c={},u=!1;if(!(0,o.mf)(e)){const r=e=>{const n=M(e,t,!0);n&&(u=!0,(0,o.l7)(c,n))};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return s||u?((0,o.kJ)(s)?s.forEach((e=>c[e]=null)):(0,o.l7)(c,s),r.set(e,c),c):(r.set(e,null),null)}function N(e,t){return!(!e||!(0,o.F7)(t))&&(t=t.slice(2).replace(/Once$/,""),(0,o.RI)(e,t[0].toLowerCase()+t.slice(1))||(0,o.RI)(e,(0,o.rs)(t))||(0,o.RI)(e,t))}let L=null,U=null;function J(e){const t=L;return L=e,U=e&&e.type.__scopeId||null,t}function $(e,t=L,n){if(!t)return e;if(e._n)return e;const r=(...n)=>{r._d&&Dt(-1);const o=J(t),i=e(...n);return J(o),r._d&&Dt(1),i};return r._n=!0,r._c=!0,r._d=!0,r}function D(e){const{type:t,vnode:n,proxy:r,withProxy:i,props:s,propsOptions:[u],slots:l,attrs:a,emit:f,render:p,renderCache:d,data:h,setupState:v,ctx:g,inheritAttrs:m}=e;let y,b;const _=J(e);try{if(4&n.shapeFlag){const e=i||r;y=nn(p.call(e,e,d,s,v,h,g)),b=a}else{const e=t;0,y=nn(e.length>1?e(s,{attrs:a,slots:l,emit:f}):e(s,null)),b=t.props?a:B(a)}}catch(w){Nt.length=0,c(w,e,1),y=Zt(Pt)}let x=y;if(b&&!1!==m){const e=Object.keys(b),{shapeFlag:t}=x;e.length&&7&t&&(u&&e.some(o.tR)&&(b=V(b,u)),x=en(x,b))}return n.dirs&&(x=en(x),x.dirs=x.dirs?x.dirs.concat(n.dirs):n.dirs),n.transition&&(x.transition=n.transition),y=x,J(_),y}const B=e=>{let t;for(const n in e)("class"===n||"style"===n||(0,o.F7)(n))&&((t||(t={}))[n]=e[n]);return t},V=(e,t)=>{const n={};for(const r in e)(0,o.tR)(r)&&r.slice(9)in t||(n[r]=e[r]);return n};function H(e,t,n){const{props:r,children:o,component:i}=e,{props:s,children:c,patchFlag:u}=t,l=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&u>=0))return!(!o&&!c||c&&c.$stable)||r!==s&&(r?!s||W(r,s,l):!!s);if(1024&u)return!0;if(16&u)return r?W(r,s,l):!!s;if(8&u){const e=t.dynamicProps;for(let t=0;te.__isSuspense;function K(e,t){t&&t.pendingBranch?(0,o.kJ)(e)?t.effects.push(...e):t.effects.push(e):T(e)}function z(e,t){if(fn){let n=fn.provides;const r=fn.parent&&fn.parent.provides;r===n&&(n=fn.provides=Object.create(r)),n[e]=t}else 0}function X(e,t,n=!1){const r=fn||L;if(r){const i=null==r.parent?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides;if(i&&e in i)return i[e];if(arguments.length>1)return n&&(0,o.mf)(t)?t.call(r.proxy):t}else 0}const Z={};function Y(e,t,n){return Q(e,t,n)}function Q(e,t,{immediate:n,deep:c,flush:u,onTrack:l,onTrigger:a}=o.kT){const f=fn;let p,d,h=!1,v=!1;if((0,r.dq)(e)?(p=()=>e.value,h=(0,r.yT)(e)):(0,r.PG)(e)?(p=()=>e,c=!0):(0,o.kJ)(e)?(v=!0,h=e.some((e=>(0,r.PG)(e)||(0,r.yT)(e))),p=()=>e.map((e=>(0,r.dq)(e)?e.value:(0,r.PG)(e)?ne(e):(0,o.mf)(e)?i(e,f,2):void 0))):p=(0,o.mf)(e)?t?()=>i(e,f,2):()=>{if(!f||!f.isUnmounted)return d&&d(),s(e,f,3,[g])}:o.dG,t&&c){const e=p;p=()=>ne(e())}let g=e=>{d=_.onStop=()=>{i(e,f,4)}};if(yn)return g=o.dG,t?n&&s(t,f,3,[p(),v?[]:void 0,g]):p(),o.dG;let m=v?[]:Z;const y=()=>{if(_.active)if(t){const e=_.run();(c||h||(v?e.some(((e,t)=>(0,o.aU)(e,m[t]))):(0,o.aU)(e,m)))&&(d&&d(),s(t,f,3,[e,m===Z?void 0:m,g]),m=e)}else _.run()};let b;y.allowRecurse=!!t,b="sync"===u?y:"post"===u?()=>Ct(y,f&&f.suspense):()=>j(y);const _=new r.qq(p,b);return t?n?y():m=_.run():"post"===u?Ct(_.run.bind(_),f&&f.suspense):_.run(),()=>{_.stop(),f&&f.scope&&(0,o.Od)(f.scope.effects,_)}}function ee(e,t,n){const r=this.proxy,i=(0,o.HD)(e)?e.includes(".")?te(r,e):()=>r[e]:e.bind(r,r);let s;(0,o.mf)(t)?s=t:(s=t.handler,n=t);const c=fn;dn(this);const u=Q(i,s.bind(r),n);return c?dn(c):hn(),u}function te(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{ne(e,t)}));else if((0,o.PO)(e))for(const n in e)ne(e[n],t);return e}function re(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return Ce((()=>{e.isMounted=!0})),je((()=>{e.isUnmounting=!0})),e}const oe=[Function,Array],ie={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:oe,onEnter:oe,onAfterEnter:oe,onEnterCancelled:oe,onBeforeLeave:oe,onLeave:oe,onAfterLeave:oe,onLeaveCancelled:oe,onBeforeAppear:oe,onAppear:oe,onAfterAppear:oe,onAppearCancelled:oe},setup(e,{slots:t}){const n=pn(),o=re();let i;return()=>{const s=t.default&&pe(t.default(),!0);if(!s||!s.length)return;let c=s[0];if(s.length>1){let e=!1;for(const t of s)if(t.type!==Pt){0,c=t,e=!0;break}}const u=(0,r.IU)(e),{mode:l}=u;if(o.isLeaving)return le(c);const a=ae(c);if(!a)return le(c);const f=ue(a,u,o,n);fe(a,f);const p=n.subTree,d=p&&ae(p);let h=!1;const{getTransitionKey:v}=a.type;if(v){const e=v();void 0===i?i=e:e!==i&&(i=e,h=!0)}if(d&&d.type!==Pt&&(!Gt(a,d)||h)){const e=ue(d,u,o,n);if(fe(d,e),"out-in"===l)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,n.update()},le(c);"in-out"===l&&a.type!==Pt&&(e.delayLeave=(e,t,n)=>{const r=ce(o,d);r[String(d.key)]=d,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete f.delayedLeave},f.delayedLeave=n})}return c}}},se=ie;function ce(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function ue(e,t,n,r){const{appear:i,mode:c,persisted:u=!1,onBeforeEnter:l,onEnter:a,onAfterEnter:f,onEnterCancelled:p,onBeforeLeave:d,onLeave:h,onAfterLeave:v,onLeaveCancelled:g,onBeforeAppear:m,onAppear:y,onAfterAppear:b,onAppearCancelled:_}=t,x=String(e.key),w=ce(n,e),k=(e,t)=>{e&&s(e,r,9,t)},S=(e,t)=>{const n=t[1];k(e,t),(0,o.kJ)(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},C={mode:c,persisted:u,beforeEnter(t){let r=l;if(!n.isMounted){if(!i)return;r=m||l}t._leaveCb&&t._leaveCb(!0);const o=w[x];o&&Gt(e,o)&&o.el._leaveCb&&o.el._leaveCb(),k(r,[t])},enter(e){let t=a,r=f,o=p;if(!n.isMounted){if(!i)return;t=y||a,r=b||f,o=_||p}let s=!1;const c=e._enterCb=t=>{s||(s=!0,k(t?o:r,[e]),C.delayedLeave&&C.delayedLeave(),e._enterCb=void 0)};t?S(t,[e,c]):c()},leave(t,r){const o=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return r();k(d,[t]);let i=!1;const s=t._leaveCb=n=>{i||(i=!0,r(),k(n?g:v,[t]),t._leaveCb=void 0,w[o]===e&&delete w[o])};w[o]=e,h?S(h,[t,s]):s()},clone(e){return ue(e,t,n,r)}};return C}function le(e){if(he(e))return e=en(e),e.children=null,e}function ae(e){return he(e)?e.children?e.children[0]:void 0:e}function fe(e,t){6&e.shapeFlag&&e.component?fe(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function pe(e,t=!1,n){let r=[],o=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader;const he=e=>e.type.__isKeepAlive;RegExp,RegExp;function ve(e,t){return(0,o.kJ)(e)?e.some((e=>ve(e,t))):(0,o.HD)(e)?e.split(",").includes(t):!!e.test&&e.test(t)}function ge(e,t){ye(e,"a",t)}function me(e,t){ye(e,"da",t)}function ye(e,t,n=fn){const r=e.__wdc||(e.__wdc=()=>{let t=n;while(t){if(t.isDeactivated)return;t=t.parent}return e()});if(we(t,r,n),n){let e=n.parent;while(e&&e.parent)he(e.parent.vnode)&&be(r,t,n,e),e=e.parent}}function be(e,t,n,r){const i=we(t,e,r,!0);Te((()=>{(0,o.Od)(r[t],i)}),n)}function _e(e){let t=e.shapeFlag;256&t&&(t-=256),512&t&&(t-=512),e.shapeFlag=t}function xe(e){return 128&e.shapeFlag?e.ssContent:e}function we(e,t,n=fn,o=!1){if(n){const i=n[e]||(n[e]=[]),c=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;(0,r.Jd)(),dn(n);const i=s(t,n,e,o);return hn(),(0,r.lk)(),i});return o?i.unshift(c):i.push(c),c}}const ke=e=>(t,n=fn)=>(!yn||"sp"===e)&&we(e,t,n),Se=ke("bm"),Ce=ke("m"),Oe=ke("bu"),Ee=ke("u"),je=ke("bum"),Te=ke("um"),Re=ke("sp"),Ae=ke("rtg"),Ie=ke("rtc");function Fe(e,t=fn){we("ec",e,t)}function Pe(e,t,n,o){const i=e.dirs,c=t&&t.dirs;for(let u=0;ut(e,n,void 0,s&&s[n])));else{const n=Object.keys(e);i=new Array(n.length);for(let r=0,o=n.length;re?vn(e)?Cn(e)||e.proxy:De(e.parent):null,Be=(0,o.l7)(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>De(e.parent),$root:e=>De(e.root),$emit:e=>e.emit,$options:e=>ze(e),$forceUpdate:e=>e.f||(e.f=()=>S(e.update)),$nextTick:e=>e.n||(e.n=w.bind(e.proxy)),$watch:e=>ee.bind(e)}),Ve={get({_:e},t){const{ctx:n,setupState:i,data:s,props:c,accessCache:u,type:l,appContext:a}=e;let f;if("$"!==t[0]){const r=u[t];if(void 0!==r)switch(r){case 1:return i[t];case 2:return s[t];case 4:return n[t];case 3:return c[t]}else{if(i!==o.kT&&(0,o.RI)(i,t))return u[t]=1,i[t];if(s!==o.kT&&(0,o.RI)(s,t))return u[t]=2,s[t];if((f=e.propsOptions[0])&&(0,o.RI)(f,t))return u[t]=3,c[t];if(n!==o.kT&&(0,o.RI)(n,t))return u[t]=4,n[t];He&&(u[t]=0)}}const p=Be[t];let d,h;return p?("$attrs"===t&&(0,r.j)(e,"get",t),p(e)):(d=l.__cssModules)&&(d=d[t])?d:n!==o.kT&&(0,o.RI)(n,t)?(u[t]=4,n[t]):(h=a.config.globalProperties,(0,o.RI)(h,t)?h[t]:void 0)},set({_:e},t,n){const{data:r,setupState:i,ctx:s}=e;return i!==o.kT&&(0,o.RI)(i,t)?(i[t]=n,!0):r!==o.kT&&(0,o.RI)(r,t)?(r[t]=n,!0):!(0,o.RI)(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(s[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:i,propsOptions:s}},c){let u;return!!n[c]||e!==o.kT&&(0,o.RI)(e,c)||t!==o.kT&&(0,o.RI)(t,c)||(u=s[0])&&(0,o.RI)(u,c)||(0,o.RI)(r,c)||(0,o.RI)(Be,c)||(0,o.RI)(i.config.globalProperties,c)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:(0,o.RI)(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let He=!0;function We(e){const t=ze(e),n=e.proxy,i=e.ctx;He=!1,t.beforeCreate&&qe(t.beforeCreate,e,"bc");const{data:s,computed:c,methods:u,watch:l,provide:a,inject:f,created:p,beforeMount:d,mounted:h,beforeUpdate:v,updated:g,activated:m,deactivated:y,beforeDestroy:b,beforeUnmount:_,destroyed:x,unmounted:w,render:k,renderTracked:S,renderTriggered:C,errorCaptured:O,serverPrefetch:E,expose:j,inheritAttrs:T,components:R,directives:A,filters:I}=t,F=null;if(f&&Ge(f,i,F,e.appContext.config.unwrapInjectedRef),u)for(const r in u){const e=u[r];(0,o.mf)(e)&&(i[r]=e.bind(n))}if(s){0;const t=s.call(n,n);0,(0,o.Kn)(t)&&(e.data=(0,r.qj)(t))}if(He=!0,c)for(const r in c){const e=c[r],t=(0,o.mf)(e)?e.bind(n,n):(0,o.mf)(e.get)?e.get.bind(n,n):o.dG;0;const s=!(0,o.mf)(e)&&(0,o.mf)(e.set)?e.set.bind(n):o.dG,u=jn({get:t,set:s});Object.defineProperty(i,r,{enumerable:!0,configurable:!0,get:()=>u.value,set:e=>u.value=e})}if(l)for(const r in l)Ke(l[r],i,n,r);if(a){const e=(0,o.mf)(a)?a.call(n):a;Reflect.ownKeys(e).forEach((t=>{z(t,e[t])}))}function P(e,t){(0,o.kJ)(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(p&&qe(p,e,"c"),P(Se,d),P(Ce,h),P(Oe,v),P(Ee,g),P(ge,m),P(me,y),P(Fe,O),P(Ie,S),P(Ae,C),P(je,_),P(Te,w),P(Re,E),(0,o.kJ)(j))if(j.length){const t=e.exposed||(e.exposed={});j.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});k&&e.render===o.dG&&(e.render=k),null!=T&&(e.inheritAttrs=T),R&&(e.components=R),A&&(e.directives=A)}function Ge(e,t,n=o.dG,i=!1){(0,o.kJ)(e)&&(e=et(e));for(const s in e){const n=e[s];let c;c=(0,o.Kn)(n)?"default"in n?X(n.from||s,n.default,!0):X(n.from||s):X(n),(0,r.dq)(c)&&i?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>c.value,set:e=>c.value=e}):t[s]=c}}function qe(e,t,n){s((0,o.kJ)(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function Ke(e,t,n,r){const i=r.includes(".")?te(n,r):()=>n[r];if((0,o.HD)(e)){const n=t[e];(0,o.mf)(n)&&Y(i,n)}else if((0,o.mf)(e))Y(i,e.bind(n));else if((0,o.Kn)(e))if((0,o.kJ)(e))e.forEach((e=>Ke(e,t,n,r)));else{const r=(0,o.mf)(e.handler)?e.handler.bind(n):t[e.handler];(0,o.mf)(r)&&Y(i,r,e)}else 0}function ze(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:o,optionsCache:i,config:{optionMergeStrategies:s}}=e.appContext,c=i.get(t);let u;return c?u=c:o.length||n||r?(u={},o.length&&o.forEach((e=>Xe(u,e,s,!0))),Xe(u,t,s)):u=t,i.set(t,u),u}function Xe(e,t,n,r=!1){const{mixins:o,extends:i}=t;i&&Xe(e,i,n,!0),o&&o.forEach((t=>Xe(e,t,n,!0)));for(const s in t)if(r&&"expose"===s);else{const r=Ze[s]||n&&n[s];e[s]=r?r(e[s],t[s]):t[s]}return e}const Ze={data:Ye,props:nt,emits:nt,methods:nt,computed:nt,beforeCreate:tt,created:tt,beforeMount:tt,mounted:tt,beforeUpdate:tt,updated:tt,beforeDestroy:tt,beforeUnmount:tt,destroyed:tt,unmounted:tt,activated:tt,deactivated:tt,errorCaptured:tt,serverPrefetch:tt,components:nt,directives:nt,watch:rt,provide:Ye,inject:Qe};function Ye(e,t){return t?e?function(){return(0,o.l7)((0,o.mf)(e)?e.call(this,this):e,(0,o.mf)(t)?t.call(this,this):t)}:t:e}function Qe(e,t){return nt(et(e),et(t))}function et(e){if((0,o.kJ)(e)){const t={};for(let n=0;n0)||16&u){let r;st(e,t,s,c)&&(f=!0);for(const i in l)t&&((0,o.RI)(t,i)||(r=(0,o.rs)(i))!==i&&(0,o.RI)(t,r))||(a?!n||void 0===n[i]&&void 0===n[r]||(s[i]=ct(a,l,i,void 0,e,!0)):delete s[i]);if(c!==l)for(const e in c)t&&(0,o.RI)(t,e)||(delete c[e],f=!0)}else if(8&u){const n=e.vnode.dynamicProps;for(let r=0;r{l=!0;const[n,r]=ut(e,t,!0);(0,o.l7)(c,n),r&&u.push(...r)};!n&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}if(!s&&!l)return r.set(e,o.Z6),o.Z6;if((0,o.kJ)(s))for(let f=0;f-1,r[1]=n<0||e-1||(0,o.RI)(r,"default"))&&u.push(t)}}}}const a=[c,u];return r.set(e,a),a}function lt(e){return"$"!==e[0]}function at(e){const t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:null===e?"null":""}function ft(e,t){return at(e)===at(t)}function pt(e,t){return(0,o.kJ)(t)?t.findIndex((t=>ft(t,e))):(0,o.mf)(t)&&ft(t,e)?0:-1}const dt=e=>"_"===e[0]||"$stable"===e,ht=e=>(0,o.kJ)(e)?e.map(nn):[nn(e)],vt=(e,t,n)=>{if(t._n)return t;const r=$(((...e)=>ht(t(...e))),n);return r._c=!1,r},gt=(e,t,n)=>{const r=e._ctx;for(const i in e){if(dt(i))continue;const n=e[i];if((0,o.mf)(n))t[i]=vt(i,n,r);else if(null!=n){0;const e=ht(n);t[i]=()=>e}}},mt=(e,t)=>{const n=ht(t);e.slots.default=()=>n},yt=(e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=(0,r.IU)(t),(0,o.Nj)(t,"_",n)):gt(t,e.slots={})}else e.slots={},t&&mt(e,t);(0,o.Nj)(e.slots,qt,1)},bt=(e,t,n)=>{const{vnode:r,slots:i}=e;let s=!0,c=o.kT;if(32&r.shapeFlag){const e=t._;e?n&&1===e?s=!1:((0,o.l7)(i,t),n||1!==e||delete i._):(s=!t.$stable,gt(t,i)),c=t}else t&&(mt(e,t),c={default:1});if(s)for(const o in i)dt(o)||o in c||delete i[o]};function _t(){return{app:null,config:{isNativeTag:o.NO,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let xt=0;function wt(e,t){return function(n,r=null){(0,o.mf)(n)||(n=Object.assign({},n)),null==r||(0,o.Kn)(r)||(r=null);const i=_t(),s=new Set;let c=!1;const u=i.app={_uid:xt++,_component:n,_props:r,_container:null,_context:i,_instance:null,version:Rn,get config(){return i.config},set config(e){0},use(e,...t){return s.has(e)||(e&&(0,o.mf)(e.install)?(s.add(e),e.install(u,...t)):(0,o.mf)(e)&&(s.add(e),e(u,...t))),u},mixin(e){return i.mixins.includes(e)||i.mixins.push(e),u},component(e,t){return t?(i.components[e]=t,u):i.components[e]},directive(e,t){return t?(i.directives[e]=t,u):i.directives[e]},mount(o,s,l){if(!c){0;const a=Zt(n,r);return a.appContext=i,s&&t?t(a,o):e(a,o,l),c=!0,u._container=o,o.__vue_app__=u,Cn(a.component)||a.component.proxy}},unmount(){c&&(e(null,u._container),delete u._container.__vue_app__)},provide(e,t){return i.provides[e]=t,u}};return u}}function kt(e,t,n,s,c=!1){if((0,o.kJ)(e))return void e.forEach(((e,r)=>kt(e,t&&((0,o.kJ)(t)?t[r]:t),n,s,c)));if(de(s)&&!c)return;const u=4&s.shapeFlag?Cn(s.component)||s.component.proxy:s.el,l=c?null:u,{i:a,r:f}=e;const p=t&&t.r,d=a.refs===o.kT?a.refs={}:a.refs,h=a.setupState;if(null!=p&&p!==f&&((0,o.HD)(p)?(d[p]=null,(0,o.RI)(h,p)&&(h[p]=null)):(0,r.dq)(p)&&(p.value=null)),(0,o.mf)(f))i(f,a,12,[l,d]);else{const t=(0,o.HD)(f),i=(0,r.dq)(f);if(t||i){const r=()=>{if(e.f){const n=t?d[f]:f.value;c?(0,o.kJ)(n)&&(0,o.Od)(n,u):(0,o.kJ)(n)?n.includes(u)||n.push(u):t?(d[f]=[u],(0,o.RI)(h,f)&&(h[f]=d[f])):(f.value=[u],e.k&&(d[e.k]=f.value))}else t?(d[f]=l,(0,o.RI)(h,f)&&(h[f]=l)):i&&(f.value=l,e.k&&(d[e.k]=l))};l?(r.id=-1,Ct(r,n)):r()}else 0}}function St(){}const Ct=K;function Ot(e){return Et(e)}function Et(e,t){St();const n=(0,o.E9)();n.__VUE__=!0;const{insert:i,remove:s,patchProp:c,createElement:u,createText:l,createComment:a,setText:f,setElementText:p,parentNode:d,nextSibling:h,setScopeId:v=o.dG,cloneNode:g,insertStaticContent:m}=e,y=(e,t,n,r=null,o=null,i=null,s=!1,c=null,u=!!t.dynamicChildren)=>{if(e===t)return;e&&!Gt(e,t)&&(r=Q(e),K(e,o,i,!0),e=null),-2===t.patchFlag&&(u=!1,t.dynamicChildren=null);const{type:l,ref:a,shapeFlag:f}=t;switch(l){case Ft:b(e,t,n,r);break;case Pt:_(e,t,n,r);break;case Mt:null==e&&x(t,n,r,s);break;case It:M(e,t,n,r,o,i,s,c,u);break;default:1&f?C(e,t,n,r,o,i,s,c,u):6&f?N(e,t,n,r,o,i,s,c,u):(64&f||128&f)&&l.process(e,t,n,r,o,i,s,c,u,te)}null!=a&&o&&kt(a,e&&e.ref,i,t||e,!t)},b=(e,t,n,r)=>{if(null==e)i(t.el=l(t.children),n,r);else{const n=t.el=e.el;t.children!==e.children&&f(n,t.children)}},_=(e,t,n,r)=>{null==e?i(t.el=a(t.children||""),n,r):t.el=e.el},x=(e,t,n,r)=>{[e.el,e.anchor]=m(e.children,t,n,r,e.el,e.anchor)},w=({el:e,anchor:t},n,r)=>{let o;while(e&&e!==t)o=h(e),i(e,n,r),e=o;i(t,n,r)},k=({el:e,anchor:t})=>{let n;while(e&&e!==t)n=h(e),s(e),e=n;s(t)},C=(e,t,n,r,o,i,s,c,u)=>{s=s||"svg"===t.type,null==e?E(t,n,r,o,i,s,c,u):I(e,t,o,i,s,c,u)},E=(e,t,n,r,s,l,a,f)=>{let d,h;const{type:v,props:m,shapeFlag:y,transition:b,patchFlag:_,dirs:x}=e;if(e.el&&void 0!==g&&-1===_)d=e.el=g(e.el);else{if(d=e.el=u(e.type,l,m&&m.is,m),8&y?p(d,e.children):16&y&&T(e.children,d,null,r,s,l&&"foreignObject"!==v,a,f),x&&Pe(e,null,r,"created"),m){for(const t in m)"value"===t||(0,o.Gg)(t)||c(d,t,null,m[t],l,e.children,r,s,Y);"value"in m&&c(d,"value",null,m.value),(h=m.onVnodeBeforeMount)&&cn(h,r,e)}j(d,e,e.scopeId,a,r)}x&&Pe(e,null,r,"beforeMount");const w=(!s||s&&!s.pendingBranch)&&b&&!b.persisted;w&&b.beforeEnter(d),i(d,t,n),((h=m&&m.onVnodeMounted)||w||x)&&Ct((()=>{h&&cn(h,r,e),w&&b.enter(d),x&&Pe(e,null,r,"mounted")}),s)},j=(e,t,n,r,o)=>{if(n&&v(e,n),r)for(let i=0;i{for(let l=u;l{const l=t.el=e.el;let{patchFlag:a,dynamicChildren:f,dirs:d}=t;a|=16&e.patchFlag;const h=e.props||o.kT,v=t.props||o.kT;let g;n&&jt(n,!1),(g=v.onVnodeBeforeUpdate)&&cn(g,n,t,e),d&&Pe(t,e,n,"beforeUpdate"),n&&jt(n,!0);const m=i&&"foreignObject"!==t.type;if(f?F(e.dynamicChildren,f,l,n,r,m,s):u||B(e,t,l,null,n,r,m,s,!1),a>0){if(16&a)P(l,t,h,v,n,r,i);else if(2&a&&h.class!==v.class&&c(l,"class",null,v.class,i),4&a&&c(l,"style",h.style,v.style,i),8&a){const o=t.dynamicProps;for(let t=0;t{g&&cn(g,n,t,e),d&&Pe(t,e,n,"updated")}),r)},F=(e,t,n,r,o,i,s)=>{for(let c=0;c{if(n!==r){for(const l in r){if((0,o.Gg)(l))continue;const a=r[l],f=n[l];a!==f&&"value"!==l&&c(e,l,f,a,u,t.children,i,s,Y)}if(n!==o.kT)for(const l in n)(0,o.Gg)(l)||l in r||c(e,l,n[l],null,u,t.children,i,s,Y);"value"in r&&c(e,"value",n.value,r.value)}},M=(e,t,n,r,o,s,c,u,a)=>{const f=t.el=e?e.el:l(""),p=t.anchor=e?e.anchor:l("");let{patchFlag:d,dynamicChildren:h,slotScopeIds:v}=t;v&&(u=u?u.concat(v):v),null==e?(i(f,n,r),i(p,n,r),T(t.children,n,p,o,s,c,u,a)):d>0&&64&d&&h&&e.dynamicChildren?(F(e.dynamicChildren,h,n,o,s,c,u),(null!=t.key||o&&t===o.subTree)&&Tt(e,t,!0)):B(e,t,n,p,o,s,c,u,a)},N=(e,t,n,r,o,i,s,c,u)=>{t.slotScopeIds=c,null==e?512&t.shapeFlag?o.ctx.activate(t,n,r,s,u):L(t,n,r,o,i,s,u):U(e,t,u)},L=(e,t,n,r,o,i,s)=>{const c=e.component=an(e,r,o);if(he(e)&&(c.ctx.renderer=te),bn(c),c.asyncDep){if(o&&o.registerDep(c,J),!e.el){const e=c.subTree=Zt(Pt);_(null,e,t,n)}}else J(c,e,t,n,o,i,s)},U=(e,t,n)=>{const r=t.component=e.component;if(H(e,t,n)){if(r.asyncDep&&!r.asyncResolved)return void $(r,t,n);r.next=t,O(r.update),r.update()}else t.el=e.el,r.vnode=t},J=(e,t,n,i,s,c,u)=>{const l=()=>{if(e.isMounted){let t,{next:n,bu:r,u:i,parent:l,vnode:a}=e,f=n;0,jt(e,!1),n?(n.el=a.el,$(e,n,u)):n=a,r&&(0,o.ir)(r),(t=n.props&&n.props.onVnodeBeforeUpdate)&&cn(t,l,n,a),jt(e,!0);const p=D(e);0;const h=e.subTree;e.subTree=p,y(h,p,d(h.el),Q(h),e,s,c),n.el=p.el,null===f&&G(e,p.el),i&&Ct(i,s),(t=n.props&&n.props.onVnodeUpdated)&&Ct((()=>cn(t,l,n,a)),s)}else{let r;const{el:u,props:l}=t,{bm:a,m:f,parent:p}=e,d=de(t);if(jt(e,!1),a&&(0,o.ir)(a),!d&&(r=l&&l.onVnodeBeforeMount)&&cn(r,p,t),jt(e,!0),u&&re){const n=()=>{e.subTree=D(e),re(u,e.subTree,e,s,null)};d?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{0;const r=e.subTree=D(e);0,y(null,r,n,i,e,s,c),t.el=r.el}if(f&&Ct(f,s),!d&&(r=l&&l.onVnodeMounted)){const e=t;Ct((()=>cn(r,p,e)),s)}(256&t.shapeFlag||p&&de(p.vnode)&&256&p.vnode.shapeFlag)&&e.a&&Ct(e.a,s),e.isMounted=!0,t=n=i=null}},a=e.effect=new r.qq(l,(()=>S(f)),e.scope),f=e.update=()=>a.run();f.id=e.uid,jt(e,!0),f()},$=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,it(e,t.props,o,n),bt(e,t.children,n),(0,r.Jd)(),R(void 0,e.update),(0,r.lk)()},B=(e,t,n,r,o,i,s,c,u=!1)=>{const l=e&&e.children,a=e?e.shapeFlag:0,f=t.children,{patchFlag:d,shapeFlag:h}=t;if(d>0){if(128&d)return void W(l,f,n,r,o,i,s,c,u);if(256&d)return void V(l,f,n,r,o,i,s,c,u)}8&h?(16&a&&Y(l,o,i),f!==l&&p(n,f)):16&a?16&h?W(l,f,n,r,o,i,s,c,u):Y(l,o,i,!0):(8&a&&p(n,""),16&h&&T(f,n,r,o,i,s,c,u))},V=(e,t,n,r,i,s,c,u,l)=>{e=e||o.Z6,t=t||o.Z6;const a=e.length,f=t.length,p=Math.min(a,f);let d;for(d=0;df?Y(e,i,s,!0,!1,p):T(t,n,r,i,s,c,u,l,p)},W=(e,t,n,r,i,s,c,u,l)=>{let a=0;const f=t.length;let p=e.length-1,d=f-1;while(a<=p&&a<=d){const r=e[a],o=t[a]=l?rn(t[a]):nn(t[a]);if(!Gt(r,o))break;y(r,o,n,null,i,s,c,u,l),a++}while(a<=p&&a<=d){const r=e[p],o=t[d]=l?rn(t[d]):nn(t[d]);if(!Gt(r,o))break;y(r,o,n,null,i,s,c,u,l),p--,d--}if(a>p){if(a<=d){const e=d+1,o=ed)while(a<=p)K(e[a],i,s,!0),a++;else{const h=a,v=a,g=new Map;for(a=v;a<=d;a++){const e=t[a]=l?rn(t[a]):nn(t[a]);null!=e.key&&g.set(e.key,a)}let m,b=0;const _=d-v+1;let x=!1,w=0;const k=new Array(_);for(a=0;a<_;a++)k[a]=0;for(a=h;a<=p;a++){const r=e[a];if(b>=_){K(r,i,s,!0);continue}let o;if(null!=r.key)o=g.get(r.key);else for(m=v;m<=d;m++)if(0===k[m-v]&&Gt(r,t[m])){o=m;break}void 0===o?K(r,i,s,!0):(k[o-v]=a+1,o>=w?w=o:x=!0,y(r,t[o],n,null,i,s,c,u,l),b++)}const S=x?Rt(k):o.Z6;for(m=S.length-1,a=_-1;a>=0;a--){const e=v+a,o=t[e],p=e+1{const{el:s,type:c,transition:u,children:l,shapeFlag:a}=e;if(6&a)return void q(e.component.subTree,t,n,r);if(128&a)return void e.suspense.move(t,n,r);if(64&a)return void c.move(e,t,n,te);if(c===It){i(s,t,n);for(let e=0;eu.enter(s)),o);else{const{leave:e,delayLeave:r,afterLeave:o}=u,c=()=>i(s,t,n),l=()=>{e(s,(()=>{c(),o&&o()}))};r?r(s,c,l):l()}else i(s,t,n)},K=(e,t,n,r=!1,o=!1)=>{const{type:i,props:s,ref:c,children:u,dynamicChildren:l,shapeFlag:a,patchFlag:f,dirs:p}=e;if(null!=c&&kt(c,null,n,e,!0),256&a)return void t.ctx.deactivate(e);const d=1&a&&p,h=!de(e);let v;if(h&&(v=s&&s.onVnodeBeforeUnmount)&&cn(v,t,e),6&a)Z(e.component,n,r);else{if(128&a)return void e.suspense.unmount(n,r);d&&Pe(e,null,t,"beforeUnmount"),64&a?e.type.remove(e,t,n,o,te,r):l&&(i!==It||f>0&&64&f)?Y(l,t,n,!1,!0):(i===It&&384&f||!o&&16&a)&&Y(u,t,n),r&&z(e)}(h&&(v=s&&s.onVnodeUnmounted)||d)&&Ct((()=>{v&&cn(v,t,e),d&&Pe(e,null,t,"unmounted")}),n)},z=e=>{const{type:t,el:n,anchor:r,transition:o}=e;if(t===It)return void X(n,r);if(t===Mt)return void k(e);const i=()=>{s(n),o&&!o.persisted&&o.afterLeave&&o.afterLeave()};if(1&e.shapeFlag&&o&&!o.persisted){const{leave:t,delayLeave:r}=o,s=()=>t(n,i);r?r(e.el,i,s):s()}else i()},X=(e,t)=>{let n;while(e!==t)n=h(e),s(e),e=n;s(t)},Z=(e,t,n)=>{const{bum:r,scope:i,update:s,subTree:c,um:u}=e;r&&(0,o.ir)(r),i.stop(),s&&(s.active=!1,K(c,e,t,n)),u&&Ct(u,t),Ct((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},Y=(e,t,n,r=!1,o=!1,i=0)=>{for(let s=i;s6&e.shapeFlag?Q(e.component.subTree):128&e.shapeFlag?e.suspense.next():h(e.anchor||e.el),ee=(e,t,n)=>{null==e?t._vnode&&K(t._vnode,null,null,!0):y(t._vnode||null,e,t,null,null,null,n),A(),t._vnode=e},te={p:y,um:K,m:q,r:z,mt:L,mc:T,pc:B,pbc:F,n:Q,o:e};let ne,re;return t&&([ne,re]=t(te)),{render:ee,hydrate:ne,createApp:wt(ee,ne)}}function jt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Tt(e,t,n=!1){const r=e.children,i=t.children;if((0,o.kJ)(r)&&(0,o.kJ)(i))for(let o=0;o>1,e[n[c]]0&&(t[r]=n[i-1]),n[i]=r)}}i=n.length,s=n[i-1];while(i-- >0)n[i]=s,s=t[s];return n}const At=e=>e.__isTeleport;const It=Symbol(void 0),Ft=Symbol(void 0),Pt=Symbol(void 0),Mt=Symbol(void 0),Nt=[];let Lt=null;function Ut(e=!1){Nt.push(Lt=e?null:[])}function Jt(){Nt.pop(),Lt=Nt[Nt.length-1]||null}let $t=1;function Dt(e){$t+=e}function Bt(e){return e.dynamicChildren=$t>0?Lt||o.Z6:null,Jt(),$t>0&&Lt&&Lt.push(e),e}function Vt(e,t,n,r,o,i){return Bt(Xt(e,t,n,r,o,i,!0))}function Ht(e,t,n,r,o){return Bt(Zt(e,t,n,r,o,!0))}function Wt(e){return!!e&&!0===e.__v_isVNode}function Gt(e,t){return e.type===t.type&&e.key===t.key}const qt="__vInternal",Kt=({key:e})=>null!=e?e:null,zt=({ref:e,ref_key:t,ref_for:n})=>null!=e?(0,o.HD)(e)||(0,r.dq)(e)||(0,o.mf)(e)?{i:L,r:e,k:t,f:!!n}:e:null;function Xt(e,t=null,n=null,r=0,i=null,s=(e===It?0:1),c=!1,u=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Kt(t),ref:t&&zt(t),scopeId:U,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:s,patchFlag:r,dynamicProps:i,dynamicChildren:null,appContext:null};return u?(on(l,n),128&s&&e.normalize(l)):n&&(l.shapeFlag|=(0,o.HD)(n)?8:16),$t>0&&!c&&Lt&&(l.patchFlag>0||6&s)&&32!==l.patchFlag&&Lt.push(l),l}const Zt=Yt;function Yt(e,t=null,n=null,i=0,s=null,c=!1){if(e&&e!==Le||(e=Pt),Wt(e)){const r=en(e,t,!0);return n&&on(r,n),$t>0&&!c&&Lt&&(6&r.shapeFlag?Lt[Lt.indexOf(e)]=r:Lt.push(r)),r.patchFlag|=-2,r}if(En(e)&&(e=e.__vccOpts),t){t=Qt(t);let{class:e,style:n}=t;e&&!(0,o.HD)(e)&&(t.class=(0,o.C_)(e)),(0,o.Kn)(n)&&((0,r.X3)(n)&&!(0,o.kJ)(n)&&(n=(0,o.l7)({},n)),t.style=(0,o.j5)(n))}const u=(0,o.HD)(e)?1:q(e)?128:At(e)?64:(0,o.Kn)(e)?4:(0,o.mf)(e)?2:0;return Xt(e,t,n,i,s,u,c,!0)}function Qt(e){return e?(0,r.X3)(e)||qt in e?(0,o.l7)({},e):e:null}function en(e,t,n=!1){const{props:r,ref:i,patchFlag:s,children:c}=e,u=t?sn(r||{},t):r,l={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&Kt(u),ref:t&&t.ref?n&&i?(0,o.kJ)(i)?i.concat(zt(t)):[i,zt(t)]:zt(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:c,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==It?-1===s?16:16|s:s,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&en(e.ssContent),ssFallback:e.ssFallback&&en(e.ssFallback),el:e.el,anchor:e.anchor};return l}function tn(e=" ",t=0){return Zt(Ft,null,e,t)}function nn(e){return null==e||"boolean"===typeof e?Zt(Pt):(0,o.kJ)(e)?Zt(It,null,e.slice()):"object"===typeof e?rn(e):Zt(Ft,null,String(e))}function rn(e){return null===e.el||e.memo?e:en(e)}function on(e,t){let n=0;const{shapeFlag:r}=e;if(null==t)t=null;else if((0,o.kJ)(t))n=16;else if("object"===typeof t){if(65&r){const n=t.default;return void(n&&(n._c&&(n._d=!1),on(e,n()),n._c&&(n._d=!0)))}{n=32;const r=t._;r||qt in t?3===r&&L&&(1===L.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=L}}else(0,o.mf)(t)?(t={default:t,_ctx:L},n=32):(t=String(t),64&r?(n=16,t=[tn(t)]):n=8);e.children=t,e.shapeFlag|=n}function sn(...e){const t={};for(let n=0;nfn||L,dn=e=>{fn=e,e.scope.on()},hn=()=>{fn&&fn.scope.off(),fn=null};function vn(e){return 4&e.vnode.shapeFlag}let gn,mn,yn=!1;function bn(e,t=!1){yn=t;const{props:n,children:r}=e.vnode,o=vn(e);ot(e,n,o,t),yt(e,r);const i=o?_n(e,t):void 0;return yn=!1,i}function _n(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=(0,r.Xl)(new Proxy(e.ctx,Ve));const{setup:s}=n;if(s){const n=e.setupContext=s.length>1?Sn(e):null;dn(e),(0,r.Jd)();const u=i(s,e,0,[e.props,n]);if((0,r.lk)(),hn(),(0,o.tI)(u)){if(u.then(hn,hn),t)return u.then((n=>{xn(e,n,t)})).catch((t=>{c(t,e,0)}));e.asyncDep=u}else xn(e,u,t)}else wn(e,t)}function xn(e,t,n){(0,o.mf)(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:(0,o.Kn)(t)&&(e.setupState=(0,r.WL)(t)),wn(e,n)}function wn(e,t,n){const i=e.type;if(!e.render){if(!t&&gn&&!i.render){const t=i.template;if(t){0;const{isCustomElement:n,compilerOptions:r}=e.appContext.config,{delimiters:s,compilerOptions:c}=i,u=(0,o.l7)((0,o.l7)({isCustomElement:n,delimiters:s},r),c);i.render=gn(t,u)}}e.render=i.render||o.dG,mn&&mn(e)}dn(e),(0,r.Jd)(),We(e),(0,r.lk)(),hn()}function kn(e){return new Proxy(e.attrs,{get(t,n){return(0,r.j)(e,"get","$attrs"),t[n]}})}function Sn(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=kn(e))},slots:e.slots,emit:e.emit,expose:t}}function Cn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy((0,r.WL)((0,r.Xl)(e.exposed)),{get(t,n){return n in t?t[n]:n in Be?Be[n](e):void 0}}))}function On(e,t=!0){return(0,o.mf)(e)?e.displayName||e.name:e.name||t&&e.__name}function En(e){return(0,o.mf)(e)&&"__vccOpts"in e}const jn=(e,t)=>(0,r.Fl)(e,t,yn);function Tn(e,t,n){const r=arguments.length;return 2===r?(0,o.Kn)(t)&&!(0,o.kJ)(t)?Wt(t)?Zt(e,null,[t]):Zt(e,t):Zt(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):3===r&&Wt(n)&&(n=[n]),Zt(e,t,n))}Symbol("");const Rn="3.2.37"},9242:function(e,t,n){"use strict";n.d(t,{ri:function(){return ne}});n(6699);var r=n(7139),o=n(3396);n(4870);const i="http://www.w3.org/2000/svg",s="undefined"!==typeof document?document:null,c=s&&s.createElement("template"),u={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const o=t?s.createElementNS(i,e):s.createElement(e,n?{is:n}:void 0);return"select"===e&&r&&null!=r.multiple&&o.setAttribute("multiple",r.multiple),o},createText:e=>s.createTextNode(e),createComment:e=>s.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>s.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},cloneNode(e){const t=e.cloneNode(!0);return"_value"in e&&(t._value=e._value),t},insertStaticContent(e,t,n,r,o,i){const s=n?n.previousSibling:t.lastChild;if(o&&(o===i||o.nextSibling)){while(1)if(t.insertBefore(o.cloneNode(!0),n),o===i||!(o=o.nextSibling))break}else{c.innerHTML=r?`${e}`:e;const o=c.content;if(r){const e=o.firstChild;while(e.firstChild)o.appendChild(e.firstChild);o.removeChild(e)}t.insertBefore(o,n)}return[s?s.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function l(e,t,n){const r=e._vtc;r&&(t=(t?[t,...r]:[...r]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function a(e,t,n){const o=e.style,i=(0,r.HD)(n);if(n&&!i){for(const e in n)p(o,e,n[e]);if(t&&!(0,r.HD)(t))for(const e in t)null==n[e]&&p(o,e,"")}else{const r=o.display;i?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=r)}}const f=/\s*!important$/;function p(e,t,n){if((0,r.kJ)(n))n.forEach((n=>p(e,t,n)));else if(null==n&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const o=v(e,t);f.test(n)?e.setProperty((0,r.rs)(o),n.replace(f,""),"important"):e[o]=n}}const d=["Webkit","Moz","ms"],h={};function v(e,t){const n=h[t];if(n)return n;let o=(0,r._A)(t);if("filter"!==o&&o in e)return h[t]=o;o=(0,r.kC)(o);for(let r=0;r{let e=Date.now,t=!1;if("undefined"!==typeof window){Date.now()>document.createEvent("Event").timeStamp&&(e=performance.now.bind(performance));const n=navigator.userAgent.match(/firefox\/(\d+)/i);t=!!(n&&Number(n[1])<=53)}return[e,t]})();let x=0;const w=Promise.resolve(),k=()=>{x=0},S=()=>x||(w.then(k),x=b());function C(e,t,n,r){e.addEventListener(t,n,r)}function O(e,t,n,r){e.removeEventListener(t,n,r)}function E(e,t,n,r,o=null){const i=e._vei||(e._vei={}),s=i[t];if(r&&s)s.value=r;else{const[n,c]=T(t);if(r){const s=i[t]=R(r,o);C(e,n,s,c)}else s&&(O(e,n,s,c),i[t]=void 0)}}const j=/(?:Once|Passive|Capture)$/;function T(e){let t;if(j.test(e)){let n;t={};while(n=e.match(j))e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[(0,r.rs)(e.slice(2)),t]}function R(e,t){const n=e=>{const r=e.timeStamp||b();(_||r>=n.attached-1)&&(0,o.$d)(A(e,n.value),t,5,[e])};return n.value=e,n.attached=S(),n}function A(e,t){if((0,r.kJ)(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>t=>!t._stopped&&e&&e(t)))}return t}const I=/^on[a-z]/,F=(e,t,n,o,i=!1,s,c,u,f)=>{"class"===t?l(e,o,i):"style"===t?a(e,n,o):(0,r.F7)(t)?(0,r.tR)(t)||E(e,t,n,o,c):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):P(e,t,o,i))?y(e,t,o,s,c,u,f):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),m(e,t,o,i))};function P(e,t,n,o){return o?"innerHTML"===t||"textContent"===t||!!(t in e&&I.test(t)&&(0,r.mf)(n)):"spellcheck"!==t&&"draggable"!==t&&"translate"!==t&&("form"!==t&&(("list"!==t||"INPUT"!==e.tagName)&&(("type"!==t||"TEXTAREA"!==e.tagName)&&((!I.test(t)||!(0,r.HD)(n))&&t in e))))}"undefined"!==typeof HTMLElement&&HTMLElement;const M="transition",N="animation",L=(e,{slots:t})=>(0,o.h)(o.P$,D(e),t);L.displayName="Transition";const U={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},J=(L.props=(0,r.l7)({},o.P$.props,U),(e,t=[])=>{(0,r.kJ)(e)?e.forEach((e=>e(...t))):e&&e(...t)}),$=e=>!!e&&((0,r.kJ)(e)?e.some((e=>e.length>1)):e.length>1);function D(e){const t={};for(const r in e)r in U||(t[r]=e[r]);if(!1===e.css)return t;const{name:n="v",type:o,duration:i,enterFromClass:s=`${n}-enter-from`,enterActiveClass:c=`${n}-enter-active`,enterToClass:u=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:a=c,appearToClass:f=u,leaveFromClass:p=`${n}-leave-from`,leaveActiveClass:d=`${n}-leave-active`,leaveToClass:h=`${n}-leave-to`}=e,v=B(i),g=v&&v[0],m=v&&v[1],{onBeforeEnter:y,onEnter:b,onEnterCancelled:_,onLeave:x,onLeaveCancelled:w,onBeforeAppear:k=y,onAppear:S=b,onAppearCancelled:C=_}=t,O=(e,t,n)=>{W(e,t?f:u),W(e,t?a:c),n&&n()},E=(e,t)=>{e._isLeaving=!1,W(e,p),W(e,h),W(e,d),t&&t()},j=e=>(t,n)=>{const r=e?S:b,i=()=>O(t,e,n);J(r,[t,i]),G((()=>{W(t,e?l:s),H(t,e?f:u),$(r)||K(t,o,g,i)}))};return(0,r.l7)(t,{onBeforeEnter(e){J(y,[e]),H(e,s),H(e,c)},onBeforeAppear(e){J(k,[e]),H(e,l),H(e,a)},onEnter:j(!1),onAppear:j(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>E(e,t);H(e,p),Y(),H(e,d),G((()=>{e._isLeaving&&(W(e,p),H(e,h),$(x)||K(e,o,m,n))})),J(x,[e,n])},onEnterCancelled(e){O(e,!1),J(_,[e])},onAppearCancelled(e){O(e,!0),J(C,[e])},onLeaveCancelled(e){E(e),J(w,[e])}})}function B(e){if(null==e)return null;if((0,r.Kn)(e))return[V(e.enter),V(e.leave)];{const t=V(e);return[t,t]}}function V(e){const t=(0,r.He)(e);return t}function H(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function W(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function G(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let q=0;function K(e,t,n,r){const o=e._endId=++q,i=()=>{o===e._endId&&r()};if(n)return setTimeout(i,n);const{type:s,timeout:c,propCount:u}=z(e,t);if(!s)return r();const l=s+"end";let a=0;const f=()=>{e.removeEventListener(l,p),i()},p=t=>{t.target===e&&++a>=u&&f()};setTimeout((()=>{a(n[e]||"").split(", "),o=r(M+"Delay"),i=r(M+"Duration"),s=X(o,i),c=r(N+"Delay"),u=r(N+"Duration"),l=X(c,u);let a=null,f=0,p=0;t===M?s>0&&(a=M,f=s,p=i.length):t===N?l>0&&(a=N,f=l,p=u.length):(f=Math.max(s,l),a=f>0?s>l?M:N:null,p=a?a===M?i.length:u.length:0);const d=a===M&&/\b(transform|all)(,|$)/.test(n[M+"Property"]);return{type:a,timeout:f,propCount:p,hasTransform:d}}function X(e,t){while(e.lengthZ(t)+Z(e[n]))))}function Z(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function Y(){return document.body.offsetHeight}new WeakMap,new WeakMap;const Q=(0,r.l7)({patchProp:F},u);let ee;function te(){return ee||(ee=(0,o.Us)(Q))}const ne=(...e)=>{const t=te().createApp(...e);const{mount:n}=t;return t.mount=e=>{const o=re(e);if(!o)return;const i=t._component;(0,r.mf)(i)||i.render||i.template||(i.template=o.innerHTML),o.innerHTML="";const s=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),s},t};function re(e){if((0,r.HD)(e)){const t=document.querySelector(e);return t}return e}},7139:function(e,t,n){"use strict";function r(e,t){const n=Object.create(null),r=e.split(",");for(let o=0;o!!n[e.toLowerCase()]:e=>!!n[e]}n.d(t,{C_:function(){return d},DM:function(){return I},E9:function(){return re},F7:function(){return S},Gg:function(){return H},HD:function(){return M},He:function(){return te},Kn:function(){return L},NO:function(){return w},Nj:function(){return ee},Od:function(){return E},PO:function(){return B},Pq:function(){return c},RI:function(){return T},S0:function(){return V},W7:function(){return D},WV:function(){return v},Z6:function(){return _},_A:function(){return q},_N:function(){return A},aU:function(){return Y},dG:function(){return x},e1:function(){return i},fY:function(){return r},hR:function(){return Z},hq:function(){return g},ir:function(){return Q},j5:function(){return l},kC:function(){return X},kJ:function(){return R},kT:function(){return b},l7:function(){return O},mf:function(){return P},rs:function(){return z},tI:function(){return U},tR:function(){return C},yA:function(){return u},yk:function(){return N},zw:function(){return m}});const o="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt",i=r(o);const s="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",c=r(s);function u(e){return!!e||""===e}function l(e){if(R(e)){const t={};for(let n=0;n{if(e){const n=e.split(f);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function d(e){let t="";if(M(e))t=e;else if(R(e))for(let n=0;nv(e,t)))}const m=e=>M(e)?e:null==e?"":R(e)||L(e)&&(e.toString===J||!P(e.toString))?JSON.stringify(e,y,2):String(e),y=(e,t)=>t&&t.__v_isRef?y(e,t.value):A(t)?{[`Map(${t.size})`]:[...t.entries()].reduce(((e,[t,n])=>(e[`${t} =>`]=n,e)),{})}:I(t)?{[`Set(${t.size})`]:[...t.values()]}:!L(t)||R(t)||B(t)?t:String(t),b={},_=[],x=()=>{},w=()=>!1,k=/^on[^a-z]/,S=e=>k.test(e),C=e=>e.startsWith("onUpdate:"),O=Object.assign,E=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},j=Object.prototype.hasOwnProperty,T=(e,t)=>j.call(e,t),R=Array.isArray,A=e=>"[object Map]"===$(e),I=e=>"[object Set]"===$(e),F=e=>"[object Date]"===$(e),P=e=>"function"===typeof e,M=e=>"string"===typeof e,N=e=>"symbol"===typeof e,L=e=>null!==e&&"object"===typeof e,U=e=>L(e)&&P(e.then)&&P(e.catch),J=Object.prototype.toString,$=e=>J.call(e),D=e=>$(e).slice(8,-1),B=e=>"[object Object]"===$(e),V=e=>M(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,H=r(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),W=e=>{const t=Object.create(null);return n=>{const r=t[n];return r||(t[n]=e(n))}},G=/-(\w)/g,q=W((e=>e.replace(G,((e,t)=>t?t.toUpperCase():"")))),K=/\B([A-Z])/g,z=W((e=>e.replace(K,"-$1").toLowerCase())),X=W((e=>e.charAt(0).toUpperCase()+e.slice(1))),Z=W((e=>e?`on${X(e)}`:"")),Y=(e,t)=>!Object.is(e,t),Q=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},te=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let ne;const re=()=>ne||(ne="undefined"!==typeof globalThis?globalThis:"undefined"!==typeof self?self:"undefined"!==typeof window?window:"undefined"!==typeof n.g?n.g:{})},89:function(e,t){"use strict";t.Z=(e,t)=>{const n=e.__vccOpts||e;for(const[r,o]of t)n[r]=o;return n}},4344:function(e){function t(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}e.exports=t,e.exports.__esModule=!0,e.exports["default"]=e.exports}}]); +//# sourceMappingURL=chunk-vendors.b7b248da.js.map \ No newline at end of file diff --git a/docs/js/chunk-vendors.b7b248da.js.map b/docs/js/chunk-vendors.b7b248da.js.map new file mode 100644 index 0000000..d2b7763 --- /dev/null +++ b/docs/js/chunk-vendors.b7b248da.js.map @@ -0,0 +1 @@ +{"version":3,"file":"js/chunk-vendors.b7b248da.js","mappings":"sGAAA,IAAIA,EAAa,EAAQ,KACrBC,EAAc,EAAQ,MAEtBC,EAAaC,UAGjBC,EAAOC,QAAU,SAAUC,GACzB,GAAIN,EAAWM,GAAW,OAAOA,EACjC,MAAMJ,EAAWD,EAAYK,GAAY,wB,qBCR3C,IAAIN,EAAa,EAAQ,KAErBO,EAAUC,OACVN,EAAaC,UAEjBC,EAAOC,QAAU,SAAUC,GACzB,GAAuB,iBAAZA,GAAwBN,EAAWM,GAAW,OAAOA,EAChE,MAAMJ,EAAW,aAAeK,EAAQD,GAAY,qB,qBCPtD,IAAIG,EAAkB,EAAQ,MAC1BC,EAAS,EAAQ,IACjBC,EAAiB,UAEjBC,EAAcH,EAAgB,eAC9BI,EAAiBC,MAAMC,eAIQC,GAA/BH,EAAeD,IACjBD,EAAeE,EAAgBD,EAAa,CAC1CK,cAAc,EACdC,MAAOR,EAAO,QAKlBN,EAAOC,QAAU,SAAUc,GACzBN,EAAeD,GAAaO,IAAO,I,qBClBrC,IAAIC,EAAW,EAAQ,KAEnBb,EAAUC,OACVN,EAAaC,UAGjBC,EAAOC,QAAU,SAAUC,GACzB,GAAIc,EAASd,GAAW,OAAOA,EAC/B,MAAMJ,EAAWK,EAAQD,GAAY,uB,qBCRvC,IAAIe,EAAkB,EAAQ,MAC1BC,EAAkB,EAAQ,MAC1BC,EAAoB,EAAQ,MAG5BC,EAAe,SAAUC,GAC3B,OAAO,SAAUC,EAAOC,EAAIC,GAC1B,IAGIV,EAHAW,EAAIR,EAAgBK,GACpBI,EAASP,EAAkBM,GAC3BE,EAAQT,EAAgBM,EAAWE,GAIvC,GAAIL,GAAeE,GAAMA,GAAI,MAAOG,EAASC,EAG3C,GAFAb,EAAQW,EAAEE,KAENb,GAASA,EAAO,OAAO,OAEtB,KAAMY,EAASC,EAAOA,IAC3B,IAAKN,GAAeM,KAASF,IAAMA,EAAEE,KAAWJ,EAAI,OAAOF,GAAeM,GAAS,EACnF,OAAQN,IAAgB,IAI9BrB,EAAOC,QAAU,CAGf2B,SAAUR,GAAa,GAGvBS,QAAST,GAAa,K,qBC9BxB,IAAIU,EAAc,EAAQ,MAEtBC,EAAWD,EAAY,GAAGC,UAC1BC,EAAcF,EAAY,GAAGG,OAEjCjC,EAAOC,QAAU,SAAUiC,GACzB,OAAOF,EAAYD,EAASG,GAAK,GAAI,K,oBCNvC,IAAIC,EAAwB,EAAQ,MAChCvC,EAAa,EAAQ,KACrBwC,EAAa,EAAQ,MACrB/B,EAAkB,EAAQ,MAE1BgC,EAAgBhC,EAAgB,eAChCiC,EAAUC,OAGVC,EAAuE,aAAnDJ,EAAW,WAAc,OAAOK,UAArB,IAG/BC,EAAS,SAAUR,EAAInB,GACzB,IACE,OAAOmB,EAAGnB,GACV,MAAO4B,MAIX3C,EAAOC,QAAUkC,EAAwBC,EAAa,SAAUF,GAC9D,IAAIT,EAAGmB,EAAKC,EACZ,YAAcjC,IAAPsB,EAAmB,YAAqB,OAAPA,EAAc,OAEO,iBAAjDU,EAAMF,EAAOjB,EAAIa,EAAQJ,GAAKG,IAA8BO,EAEpEJ,EAAoBJ,EAAWX,GAEH,WAA3BoB,EAAST,EAAWX,KAAmB7B,EAAW6B,EAAEqB,QAAU,YAAcD,I,qBC3BnF,IAAIf,EAAc,EAAQ,MAEtBiB,EAASC,MACTC,EAAUnB,EAAY,GAAGmB,SAEzBC,EAAO,SAAWC,GAAO,OAAO/C,OAAO2C,EAAOI,GAAKC,OAA5C,CAAuD,UAC9DC,EAA2B,uBAC3BC,EAAwBD,EAAyBE,KAAKL,GAE1DlD,EAAOC,QAAU,SAAUmD,EAAOI,GAChC,GAAIF,GAAyC,iBAATF,IAAsBL,EAAOU,kBAC/D,MAAOD,IAAeJ,EAAQH,EAAQG,EAAOC,EAA0B,IACvE,OAAOD,I,qBCZX,IAAIM,EAAS,EAAQ,MACjBC,EAAU,EAAQ,MAClBC,EAAiC,EAAQ,MACzCC,EAAuB,EAAQ,MAEnC7D,EAAOC,QAAU,SAAU6D,EAAQC,EAAQC,GAIzC,IAHA,IAAIC,EAAON,EAAQI,GACfxD,EAAiBsD,EAAqBK,EACtCC,EAA2BP,EAA+BM,EACrDE,EAAI,EAAGA,EAAIH,EAAKvC,OAAQ0C,IAAK,CACpC,IAAIrD,EAAMkD,EAAKG,GACVV,EAAOI,EAAQ/C,IAAUiD,GAAcN,EAAOM,EAAYjD,IAC7DR,EAAeuD,EAAQ/C,EAAKoD,EAAyBJ,EAAQhD,O,qBCZnE,IAAIsD,EAAc,EAAQ,MACtBR,EAAuB,EAAQ,MAC/BS,EAA2B,EAAQ,MAEvCtE,EAAOC,QAAUoE,EAAc,SAAUE,EAAQxD,EAAKD,GACpD,OAAO+C,EAAqBK,EAAEK,EAAQxD,EAAKuD,EAAyB,EAAGxD,KACrE,SAAUyD,EAAQxD,EAAKD,GAEzB,OADAyD,EAAOxD,GAAOD,EACPyD,I,iBCRTvE,EAAOC,QAAU,SAAUuE,EAAQ1D,GACjC,MAAO,CACL2D,aAAuB,EAATD,GACd3D,eAAyB,EAAT2D,GAChBE,WAAqB,EAATF,GACZ1D,MAAOA,K,qBCLX,IAAIlB,EAAa,EAAQ,KACrBiE,EAAuB,EAAQ,MAC/Bc,EAAc,EAAQ,MACtBC,EAAuB,EAAQ,MAEnC5E,EAAOC,QAAU,SAAUwB,EAAGV,EAAKD,EAAO+D,GACnCA,IAASA,EAAU,IACxB,IAAIC,EAASD,EAAQJ,WACjBM,OAAwBnE,IAAjBiE,EAAQE,KAAqBF,EAAQE,KAAOhE,EAEvD,GADInB,EAAWkB,IAAQ6D,EAAY7D,EAAOiE,EAAMF,GAC5CA,EAAQG,OACNF,EAAQrD,EAAEV,GAAOD,EAChB8D,EAAqB7D,EAAKD,OAC1B,CACL,IACO+D,EAAQI,OACJxD,EAAEV,KAAM+D,GAAS,UADErD,EAAEV,GAE9B,MAAO4B,IACLmC,EAAQrD,EAAEV,GAAOD,EAChB+C,EAAqBK,EAAEzC,EAAGV,EAAK,CAClCD,MAAOA,EACP2D,YAAY,EACZ5D,cAAegE,EAAQK,gBACvBR,UAAWG,EAAQM,cAErB,OAAO1D,I,qBCzBX,IAAIuD,EAAS,EAAQ,MAGjBzE,EAAiBgC,OAAOhC,eAE5BP,EAAOC,QAAU,SAAUc,EAAKD,GAC9B,IACEP,EAAeyE,EAAQjE,EAAK,CAAED,MAAOA,EAAOD,cAAc,EAAM6D,UAAU,IAC1E,MAAO/B,GACPqC,EAAOjE,GAAOD,EACd,OAAOA,I,qBCVX,IAAIsE,EAAQ,EAAQ,MAGpBpF,EAAOC,SAAWmF,GAAM,WAEtB,OAA8E,GAAvE7C,OAAOhC,eAAe,GAAI,EAAG,CAAE8E,IAAK,WAAc,OAAO,KAAQ,O,oBCL1E,IAAIL,EAAS,EAAQ,MACjBhE,EAAW,EAAQ,KAEnBsE,EAAWN,EAAOM,SAElBC,EAASvE,EAASsE,IAAatE,EAASsE,EAASE,eAErDxF,EAAOC,QAAU,SAAUiC,GACzB,OAAOqD,EAASD,EAASE,cAActD,GAAM,K,qBCR/C,IAAIuD,EAAa,EAAQ,MAEzBzF,EAAOC,QAAUwF,EAAW,YAAa,cAAgB,I,qBCFzD,IAOIC,EAAOC,EAPPX,EAAS,EAAQ,MACjBY,EAAY,EAAQ,MAEpBC,EAAUb,EAAOa,QACjBC,EAAOd,EAAOc,KACdC,EAAWF,GAAWA,EAAQE,UAAYD,GAAQA,EAAKH,QACvDK,EAAKD,GAAYA,EAASC,GAG1BA,IACFN,EAAQM,EAAGC,MAAM,KAGjBN,EAAUD,EAAM,GAAK,GAAKA,EAAM,GAAK,EAAI,IAAMA,EAAM,GAAKA,EAAM,MAK7DC,GAAWC,IACdF,EAAQE,EAAUF,MAAM,iBACnBA,GAASA,EAAM,IAAM,MACxBA,EAAQE,EAAUF,MAAM,iBACpBA,IAAOC,GAAWD,EAAM,MAIhC1F,EAAOC,QAAU0F,G,gBCzBjB3F,EAAOC,QAAU,CACf,cACA,iBACA,gBACA,uBACA,iBACA,WACA,Y,qBCRF,IAAImF,EAAQ,EAAQ,MAChBd,EAA2B,EAAQ,MAEvCtE,EAAOC,SAAWmF,GAAM,WACtB,IAAIzC,EAAQK,MAAM,KAClB,QAAM,UAAWL,KAEjBJ,OAAOhC,eAAeoC,EAAO,QAAS2B,EAAyB,EAAG,IAC3C,IAAhB3B,EAAMS,W,qBCRf,IAAI4B,EAAS,EAAQ,MACjBb,EAA2B,UAC3B+B,EAA8B,EAAQ,MACtCC,EAAgB,EAAQ,MACxBvB,EAAuB,EAAQ,MAC/BwB,EAA4B,EAAQ,MACpCC,EAAW,EAAQ,MAiBvBrG,EAAOC,QAAU,SAAU4E,EAASd,GAClC,IAGIuC,EAAQxC,EAAQ/C,EAAKwF,EAAgBC,EAAgBC,EAHrDC,EAAS7B,EAAQf,OACjB6C,EAAS9B,EAAQG,OACjB4B,EAAS/B,EAAQgC,KASrB,GANE/C,EADE6C,EACO3B,EACA4B,EACA5B,EAAO0B,IAAW9B,EAAqB8B,EAAQ,KAE9C1B,EAAO0B,IAAW,IAAI/F,UAE9BmD,EAAQ,IAAK/C,KAAOgD,EAAQ,CAQ9B,GAPAyC,EAAiBzC,EAAOhD,GACpB8D,EAAQiC,gBACVL,EAAatC,EAAyBL,EAAQ/C,GAC9CwF,EAAiBE,GAAcA,EAAW3F,OACrCyF,EAAiBzC,EAAO/C,GAC/BuF,EAASD,EAASM,EAAS5F,EAAM2F,GAAUE,EAAS,IAAM,KAAO7F,EAAK8D,EAAQkC,SAEzET,QAA6B1F,IAAnB2F,EAA8B,CAC3C,UAAWC,UAAyBD,EAAgB,SACpDH,EAA0BI,EAAgBD,IAGxC1B,EAAQmC,MAAST,GAAkBA,EAAeS,OACpDd,EAA4BM,EAAgB,QAAQ,GAEtDL,EAAcrC,EAAQ/C,EAAKyF,EAAgB3B,M,iBCnD/C7E,EAAOC,QAAU,SAAUgH,GACzB,IACE,QAASA,IACT,MAAOtE,GACP,OAAO,K,qBCJX,IAAIuE,EAAc,EAAQ,MAEtBC,EAAoBC,SAASzG,UAC7B0G,EAAQF,EAAkBE,MAC1BC,EAAOH,EAAkBG,KAG7BtH,EAAOC,QAA4B,iBAAXsH,SAAuBA,QAAQF,QAAUH,EAAcI,EAAKE,KAAKH,GAAS,WAChG,OAAOC,EAAKD,MAAMA,EAAO5E,c,qBCR3B,IAAI2C,EAAQ,EAAQ,MAEpBpF,EAAOC,SAAWmF,GAAM,WAEtB,IAAI7B,EAAO,aAA8BiE,OAEzC,MAAsB,mBAARjE,GAAsBA,EAAKkE,eAAe,iB,qBCN1D,IAAIP,EAAc,EAAQ,MAEtBI,EAAOF,SAASzG,UAAU2G,KAE9BtH,EAAOC,QAAUiH,EAAcI,EAAKE,KAAKF,GAAQ,WAC/C,OAAOA,EAAKD,MAAMC,EAAM7E,a,qBCL1B,IAAI4B,EAAc,EAAQ,MACtBX,EAAS,EAAQ,MAEjByD,EAAoBC,SAASzG,UAE7B+G,EAAgBrD,GAAe9B,OAAO4B,yBAEtCoB,EAAS7B,EAAOyD,EAAmB,QAEnCQ,EAASpC,GAA0D,cAAhD,aAAuCR,KAC1D6C,EAAerC,KAAYlB,GAAgBA,GAAeqD,EAAcP,EAAmB,QAAQtG,cAEvGb,EAAOC,QAAU,CACfsF,OAAQA,EACRoC,OAAQA,EACRC,aAAcA,I,qBCfhB,IAAIV,EAAc,EAAQ,MAEtBC,EAAoBC,SAASzG,UAC7B6G,EAAOL,EAAkBK,KACzBF,EAAOH,EAAkBG,KACzBxF,EAAcoF,GAAeM,EAAKA,KAAKF,EAAMA,GAEjDtH,EAAOC,QAAUiH,EAAc,SAAUW,GACvC,OAAOA,GAAM/F,EAAY+F,IACvB,SAAUA,GACZ,OAAOA,GAAM,WACX,OAAOP,EAAKD,MAAMQ,EAAIpF,c,qBCX1B,IAAIuC,EAAS,EAAQ,MACjBpF,EAAa,EAAQ,KAErBkI,EAAY,SAAU5H,GACxB,OAAON,EAAWM,GAAYA,OAAWU,GAG3CZ,EAAOC,QAAU,SAAU8H,EAAWC,GACpC,OAAOvF,UAAUf,OAAS,EAAIoG,EAAU9C,EAAO+C,IAAc/C,EAAO+C,IAAc/C,EAAO+C,GAAWC,K,qBCRtG,IAAIC,EAAY,EAAQ,MAIxBjI,EAAOC,QAAU,SAAUiI,EAAGC,GAC5B,IAAIC,EAAOF,EAAEC,GACb,OAAe,MAARC,OAAexH,EAAYqH,EAAUG,K,qBCN9C,IAAIC,EAAQ,SAAUnG,GACpB,OAAOA,GAAMA,EAAGoG,MAAQA,MAAQpG,GAIlClC,EAAOC,QAELoI,EAA2B,iBAAdE,YAA0BA,aACvCF,EAAuB,iBAAVG,QAAsBA,SAEnCH,EAAqB,iBAARI,MAAoBA,OACjCJ,EAAuB,iBAAV,EAAAK,GAAsB,EAAAA,IAEnC,WAAe,OAAOC,KAAtB,IAAoCvB,SAAS,cAATA,I,qBCbtC,IAAItF,EAAc,EAAQ,MACtB8G,EAAW,EAAQ,MAEnBnB,EAAiB3F,EAAY,GAAG2F,gBAKpCzH,EAAOC,QAAUsC,OAAOmB,QAAU,SAAgBxB,EAAInB,GACpD,OAAO0G,EAAemB,EAAS1G,GAAKnB,K,iBCTtCf,EAAOC,QAAU,I,oBCAjB,IAAIwF,EAAa,EAAQ,MAEzBzF,EAAOC,QAAUwF,EAAW,WAAY,oB,qBCFxC,IAAIpB,EAAc,EAAQ,MACtBe,EAAQ,EAAQ,MAChBI,EAAgB,EAAQ,KAG5BxF,EAAOC,SAAWoE,IAAgBe,GAAM,WAEtC,OAEQ,GAFD7C,OAAOhC,eAAeiF,EAAc,OAAQ,IAAK,CACtDH,IAAK,WAAc,OAAO,KACzBwD,M,qBCTL,IAAI/G,EAAc,EAAQ,MACtBsD,EAAQ,EAAQ,MAChB0D,EAAU,EAAQ,MAElBxG,EAAUC,OACV0D,EAAQnE,EAAY,GAAGmE,OAG3BjG,EAAOC,QAAUmF,GAAM,WAGrB,OAAQ9C,EAAQ,KAAKyG,qBAAqB,MACvC,SAAU7G,GACb,MAAsB,UAAf4G,EAAQ5G,GAAkB+D,EAAM/D,EAAI,IAAMI,EAAQJ,IACvDI,G,qBCdJ,IAAI1C,EAAa,EAAQ,KACrBoB,EAAW,EAAQ,KACnBgI,EAAiB,EAAQ,MAG7BhJ,EAAOC,QAAU,SAAUqB,EAAO2H,EAAOC,GACvC,IAAIC,EAAWC,EAUf,OAPEJ,GAEApJ,EAAWuJ,EAAYF,EAAMI,cAC7BF,IAAcD,GACdlI,EAASoI,EAAqBD,EAAUxI,YACxCyI,IAAuBF,EAAQvI,WAC/BqI,EAAe1H,EAAO8H,GACjB9H,I,qBChBT,IAAIQ,EAAc,EAAQ,MACtBlC,EAAa,EAAQ,KACrB0J,EAAQ,EAAQ,MAEhBC,EAAmBzH,EAAYsF,SAASrF,UAGvCnC,EAAW0J,EAAME,iBACpBF,EAAME,cAAgB,SAAUtH,GAC9B,OAAOqH,EAAiBrH,KAI5BlC,EAAOC,QAAUqJ,EAAME,e,qBCbvB,IAAIxI,EAAW,EAAQ,KACnBkF,EAA8B,EAAQ,MAI1ClG,EAAOC,QAAU,SAAUwB,EAAGoD,GACxB7D,EAAS6D,IAAY,UAAWA,GAClCqB,EAA4BzE,EAAG,QAASoD,EAAQ4E,S,qBCPpD,IAaIC,EAAKrE,EAAKsE,EAbVC,EAAkB,EAAQ,MAC1B5E,EAAS,EAAQ,MACjBlD,EAAc,EAAQ,MACtBd,EAAW,EAAQ,KACnBkF,EAA8B,EAAQ,MACtCxC,EAAS,EAAQ,MACjBmG,EAAS,EAAQ,MACjBC,EAAY,EAAQ,MACpBC,EAAa,EAAQ,MAErBC,EAA6B,6BAC7BjK,EAAYiF,EAAOjF,UACnBkK,EAAUjF,EAAOiF,QAGjBC,EAAU,SAAUhI,GACtB,OAAOyH,EAAIzH,GAAMmD,EAAInD,GAAMwH,EAAIxH,EAAI,KAGjCiI,EAAY,SAAUC,GACxB,OAAO,SAAUlI,GACf,IAAImI,EACJ,IAAKrJ,EAASkB,KAAQmI,EAAQhF,EAAInD,IAAKoI,OAASF,EAC9C,MAAMrK,EAAU,0BAA4BqK,EAAO,aACnD,OAAOC,IAIb,GAAIT,GAAmBC,EAAOQ,MAAO,CACnC,IAAIf,EAAQO,EAAOQ,QAAUR,EAAOQ,MAAQ,IAAIJ,GAC5CM,EAAQzI,EAAYwH,EAAMjE,KAC1BmF,EAAQ1I,EAAYwH,EAAMK,KAC1Bc,EAAQ3I,EAAYwH,EAAMI,KAC9BA,EAAM,SAAUxH,EAAIwI,GAClB,GAAIF,EAAMlB,EAAOpH,GAAK,MAAM,IAAInC,EAAUiK,GAG1C,OAFAU,EAASC,OAASzI,EAClBuI,EAAMnB,EAAOpH,EAAIwI,GACVA,GAETrF,EAAM,SAAUnD,GACd,OAAOqI,EAAMjB,EAAOpH,IAAO,IAE7ByH,EAAM,SAAUzH,GACd,OAAOsI,EAAMlB,EAAOpH,QAEjB,CACL,IAAI0I,EAAQd,EAAU,SACtBC,EAAWa,IAAS,EACpBlB,EAAM,SAAUxH,EAAIwI,GAClB,GAAIhH,EAAOxB,EAAI0I,GAAQ,MAAM,IAAI7K,EAAUiK,GAG3C,OAFAU,EAASC,OAASzI,EAClBgE,EAA4BhE,EAAI0I,EAAOF,GAChCA,GAETrF,EAAM,SAAUnD,GACd,OAAOwB,EAAOxB,EAAI0I,GAAS1I,EAAG0I,GAAS,IAEzCjB,EAAM,SAAUzH,GACd,OAAOwB,EAAOxB,EAAI0I,IAItB5K,EAAOC,QAAU,CACfyJ,IAAKA,EACLrE,IAAKA,EACLsE,IAAKA,EACLO,QAASA,EACTC,UAAWA,I,gBCjEbnK,EAAOC,QAAU,SAAUC,GACzB,MAA0B,mBAAZA,I,qBCHhB,IAAIkF,EAAQ,EAAQ,MAChBxF,EAAa,EAAQ,KAErBiL,EAAc,kBAEdxE,EAAW,SAAUyE,EAASC,GAChC,IAAIjK,EAAQkK,EAAKC,EAAUH,IAC3B,OAAOhK,GAASoK,GACZpK,GAASqK,IACTvL,EAAWmL,GAAa3F,EAAM2F,KAC5BA,IAGJE,EAAY5E,EAAS4E,UAAY,SAAUG,GAC7C,OAAOhL,OAAOgL,GAAQnI,QAAQ4H,EAAa,KAAKQ,eAG9CL,EAAO3E,EAAS2E,KAAO,GACvBG,EAAS9E,EAAS8E,OAAS,IAC3BD,EAAW7E,EAAS6E,SAAW,IAEnClL,EAAOC,QAAUoG,G,oBCrBjB,IAAIzG,EAAa,EAAQ,KAEzBI,EAAOC,QAAU,SAAUiC,GACzB,MAAoB,iBAANA,EAAwB,OAAPA,EAActC,EAAWsC,K,iBCH1DlC,EAAOC,SAAU,G,qBCAjB,IAAIwF,EAAa,EAAQ,MACrB7F,EAAa,EAAQ,KACrB0L,EAAgB,EAAQ,MACxBC,EAAoB,EAAQ,MAE5BjJ,EAAUC,OAEdvC,EAAOC,QAAUsL,EAAoB,SAAUrJ,GAC7C,MAAoB,iBAANA,GACZ,SAAUA,GACZ,IAAIsJ,EAAU/F,EAAW,UACzB,OAAO7F,EAAW4L,IAAYF,EAAcE,EAAQ7K,UAAW2B,EAAQJ,M,qBCXzE,IAAIuJ,EAAW,EAAQ,MAIvBzL,EAAOC,QAAU,SAAUyL,GACzB,OAAOD,EAASC,EAAIhK,U,qBCLtB,IAAI0D,EAAQ,EAAQ,MAChBxF,EAAa,EAAQ,KACrB8D,EAAS,EAAQ,MACjBW,EAAc,EAAQ,MACtBsH,EAA6B,qBAC7BnC,EAAgB,EAAQ,MACxBoC,EAAsB,EAAQ,MAE9BC,EAAuBD,EAAoB1B,QAC3C4B,EAAmBF,EAAoBvG,IAEvC9E,EAAiBgC,OAAOhC,eAExBwL,EAAsB1H,IAAgBe,GAAM,WAC9C,OAAsF,IAA/E7E,GAAe,cAA6B,SAAU,CAAEO,MAAO,IAAKY,UAGzEsK,EAAW5L,OAAOA,QAAQ6F,MAAM,UAEhCtB,EAAc3E,EAAOC,QAAU,SAAUa,EAAOiE,EAAMF,GACvB,YAA7BzE,OAAO2E,GAAM9C,MAAM,EAAG,KACxB8C,EAAO,IAAM3E,OAAO2E,GAAM9B,QAAQ,qBAAsB,MAAQ,KAE9D4B,GAAWA,EAAQoH,SAAQlH,EAAO,OAASA,GAC3CF,GAAWA,EAAQqH,SAAQnH,EAAO,OAASA,KAC1CrB,EAAO5C,EAAO,SAAY6K,GAA8B7K,EAAMiE,OAASA,KACtEV,EAAa9D,EAAeO,EAAO,OAAQ,CAAEA,MAAOiE,EAAMlE,cAAc,IACvEC,EAAMiE,KAAOA,GAEhBgH,GAAuBlH,GAAWnB,EAAOmB,EAAS,UAAY/D,EAAMY,SAAWmD,EAAQsH,OACzF5L,EAAeO,EAAO,SAAU,CAAEA,MAAO+D,EAAQsH,QAEnD,IACMtH,GAAWnB,EAAOmB,EAAS,gBAAkBA,EAAQwE,YACnDhF,GAAa9D,EAAeO,EAAO,YAAa,CAAE4D,UAAU,IAEvD5D,EAAMH,YAAWG,EAAMH,eAAYC,GAC9C,MAAO+B,IACT,IAAI0H,EAAQwB,EAAqB/K,GAG/B,OAFG4C,EAAO2G,EAAO,YACjBA,EAAMtG,OAASiI,EAASI,KAAoB,iBAARrH,EAAmBA,EAAO,KACvDjE,GAKXsG,SAASzG,UAAUoB,SAAW4C,GAAY,WACxC,OAAO/E,EAAW+I,OAASmD,EAAiBnD,MAAM5E,QAAUyF,EAAcb,QACzE,a,iBChDH,IAAI0D,EAAO/D,KAAK+D,KACZC,EAAQhE,KAAKgE,MAKjBtM,EAAOC,QAAUqI,KAAKiE,OAAS,SAAeC,GAC5C,IAAIC,GAAKD,EACT,OAAQC,EAAI,EAAIH,EAAQD,GAAMI,K,oBCPhC,IAAIC,EAAa,EAAQ,MACrBtH,EAAQ,EAAQ,MAGpBpF,EAAOC,UAAYsC,OAAOoK,wBAA0BvH,GAAM,WACxD,IAAIwH,EAASC,SAGb,OAAQzM,OAAOwM,MAAarK,OAAOqK,aAAmBC,UAEnDA,OAAO7F,MAAQ0F,GAAcA,EAAa,O,qBCX/C,IAAI1H,EAAS,EAAQ,MACjBpF,EAAa,EAAQ,KACrB4J,EAAgB,EAAQ,MAExBS,EAAUjF,EAAOiF,QAErBjK,EAAOC,QAAUL,EAAWqK,IAAY,cAAc1G,KAAKiG,EAAcS,K,qBCNzE,IAAIlI,EAAW,EAAQ,MAEvB/B,EAAOC,QAAU,SAAUC,EAAU4M,GACnC,YAAoBlM,IAAbV,EAAyBuC,UAAUf,OAAS,EAAI,GAAKoL,EAAW/K,EAAS7B,K,mBCFlF,IAmDI6M,EAnDAC,EAAW,EAAQ,MACnBC,EAAyB,EAAQ,MACjCC,EAAc,EAAQ,KACtBnD,EAAa,EAAQ,MACrBoD,EAAO,EAAQ,KACfC,EAAwB,EAAQ,KAChCtD,EAAY,EAAQ,MAEpBuD,EAAK,IACLC,EAAK,IACLC,EAAY,YACZC,EAAS,SACTC,EAAW3D,EAAU,YAErB4D,EAAmB,aAEnBC,EAAY,SAAUC,GACxB,OAAON,EAAKE,EAASH,EAAKO,EAAUN,EAAK,IAAME,EAASH,GAItDQ,EAA4B,SAAUd,GACxCA,EAAgBe,MAAMH,EAAU,KAChCZ,EAAgBgB,QAChB,IAAIC,EAAOjB,EAAgBkB,aAAa1L,OAExC,OADAwK,EAAkB,KACXiB,GAILE,EAA2B,WAE7B,IAEIC,EAFAC,EAAShB,EAAsB,UAC/BiB,EAAK,OAASb,EAAS,IAU3B,OARAY,EAAOE,MAAMC,QAAU,OACvBpB,EAAKqB,YAAYJ,GAEjBA,EAAOK,IAAMrO,OAAOiO,GACpBF,EAAiBC,EAAOM,cAAcpJ,SACtC6I,EAAeQ,OACfR,EAAeL,MAAMH,EAAU,sBAC/BQ,EAAeJ,QACRI,EAAeS,GASpBC,EAAkB,WACpB,IACE9B,EAAkB,IAAI+B,cAAc,YACpC,MAAOnM,IACTkM,EAAqC,oBAAZvJ,SACrBA,SAASyJ,QAAUhC,EACjBc,EAA0Bd,GAC1BmB,IACFL,EAA0Bd,GAC9B,IAAIrL,EAASwL,EAAYxL,OACzB,MAAOA,WAAiBmN,EAAgBtB,GAAWL,EAAYxL,IAC/D,OAAOmN,KAGT9E,EAAW0D,IAAY,EAKvBzN,EAAOC,QAAUsC,OAAOjC,QAAU,SAAgBmB,EAAGuN,GACnD,IAAInM,EAQJ,OAPU,OAANpB,GACFiM,EAAiBH,GAAaP,EAASvL,GACvCoB,EAAS,IAAI6K,EACbA,EAAiBH,GAAa,KAE9B1K,EAAO4K,GAAYhM,GACdoB,EAASgM,SACMjO,IAAfoO,EAA2BnM,EAASoK,EAAuB/I,EAAErB,EAAQmM,K,qBCjF9E,IAAI3K,EAAc,EAAQ,MACtB4K,EAA0B,EAAQ,MAClCpL,EAAuB,EAAQ,MAC/BmJ,EAAW,EAAQ,MACnB/L,EAAkB,EAAQ,MAC1BiO,EAAa,EAAQ,MAKzBjP,EAAQiE,EAAIG,IAAgB4K,EAA0B1M,OAAO4M,iBAAmB,SAA0B1N,EAAGuN,GAC3GhC,EAASvL,GACT,IAIIV,EAJAqO,EAAQnO,EAAgB+N,GACxB/K,EAAOiL,EAAWF,GAClBtN,EAASuC,EAAKvC,OACdC,EAAQ,EAEZ,MAAOD,EAASC,EAAOkC,EAAqBK,EAAEzC,EAAGV,EAAMkD,EAAKtC,KAAUyN,EAAMrO,IAC5E,OAAOU,I,qBClBT,IAAI4C,EAAc,EAAQ,MACtBgL,EAAiB,EAAQ,MACzBJ,EAA0B,EAAQ,MAClCjC,EAAW,EAAQ,MACnBsC,EAAgB,EAAQ,MAExBxP,EAAaC,UAEbwP,EAAkBhN,OAAOhC,eAEzBiP,EAA4BjN,OAAO4B,yBACnCsL,EAAa,aACb7H,EAAe,eACf8H,EAAW,WAIfzP,EAAQiE,EAAIG,EAAc4K,EAA0B,SAAwBxN,EAAG0G,EAAGwH,GAIhF,GAHA3C,EAASvL,GACT0G,EAAImH,EAAcnH,GAClB6E,EAAS2C,GACQ,oBAANlO,GAA0B,cAAN0G,GAAqB,UAAWwH,GAAcD,KAAYC,IAAeA,EAAWD,GAAW,CAC5H,IAAIE,EAAUJ,EAA0B/N,EAAG0G,GACvCyH,GAAWA,EAAQF,KACrBjO,EAAE0G,GAAKwH,EAAW7O,MAClB6O,EAAa,CACX9O,aAAc+G,KAAgB+H,EAAaA,EAAW/H,GAAgBgI,EAAQhI,GAC9EnD,WAAYgL,KAAcE,EAAaA,EAAWF,GAAcG,EAAQH,GACxE/K,UAAU,IAGd,OAAO6K,EAAgB9N,EAAG0G,EAAGwH,IAC7BJ,EAAkB,SAAwB9N,EAAG0G,EAAGwH,GAIlD,GAHA3C,EAASvL,GACT0G,EAAImH,EAAcnH,GAClB6E,EAAS2C,GACLN,EAAgB,IAClB,OAAOE,EAAgB9N,EAAG0G,EAAGwH,GAC7B,MAAOhN,IACT,GAAI,QAASgN,GAAc,QAASA,EAAY,MAAM7P,EAAW,2BAEjE,MADI,UAAW6P,IAAYlO,EAAE0G,GAAKwH,EAAW7O,OACtCW,I,qBCzCT,IAAI4C,EAAc,EAAQ,MACtBiD,EAAO,EAAQ,MACfuI,EAA6B,EAAQ,MACrCvL,EAA2B,EAAQ,MACnCrD,EAAkB,EAAQ,MAC1BqO,EAAgB,EAAQ,MACxB5L,EAAS,EAAQ,MACjB2L,EAAiB,EAAQ,MAGzBG,EAA4BjN,OAAO4B,yBAIvClE,EAAQiE,EAAIG,EAAcmL,EAA4B,SAAkC/N,EAAG0G,GAGzF,GAFA1G,EAAIR,EAAgBQ,GACpB0G,EAAImH,EAAcnH,GACdkH,EAAgB,IAClB,OAAOG,EAA0B/N,EAAG0G,GACpC,MAAOxF,IACT,GAAIe,EAAOjC,EAAG0G,GAAI,OAAO7D,GAA0BgD,EAAKuI,EAA2B3L,EAAGzC,EAAG0G,GAAI1G,EAAE0G,M,qBCpBjG,IAAI2H,EAAqB,EAAQ,MAC7B5C,EAAc,EAAQ,KAEtBnD,EAAamD,EAAY6C,OAAO,SAAU,aAK9C9P,EAAQiE,EAAI3B,OAAOyN,qBAAuB,SAA6BvO,GACrE,OAAOqO,EAAmBrO,EAAGsI,K,mBCR/B9J,EAAQiE,EAAI3B,OAAOoK,uB,qBCDnB,IAAI7K,EAAc,EAAQ,MAE1B9B,EAAOC,QAAU6B,EAAY,GAAGwJ,gB,qBCFhC,IAAIxJ,EAAc,EAAQ,MACtB4B,EAAS,EAAQ,MACjBzC,EAAkB,EAAQ,MAC1BY,EAAU,gBACVkI,EAAa,EAAQ,MAErBkG,EAAOnO,EAAY,GAAGmO,MAE1BjQ,EAAOC,QAAU,SAAUsE,EAAQ2L,GACjC,IAGInP,EAHAU,EAAIR,EAAgBsD,GACpBH,EAAI,EACJvB,EAAS,GAEb,IAAK9B,KAAOU,GAAIiC,EAAOqG,EAAYhJ,IAAQ2C,EAAOjC,EAAGV,IAAQkP,EAAKpN,EAAQ9B,GAE1E,MAAOmP,EAAMxO,OAAS0C,EAAOV,EAAOjC,EAAGV,EAAMmP,EAAM9L,SAChDvC,EAAQgB,EAAQ9B,IAAQkP,EAAKpN,EAAQ9B,IAExC,OAAO8B,I,qBClBT,IAAIiN,EAAqB,EAAQ,MAC7B5C,EAAc,EAAQ,KAK1BlN,EAAOC,QAAUsC,OAAO0B,MAAQ,SAAcxC,GAC5C,OAAOqO,EAAmBrO,EAAGyL,K,gCCN/B,IAAIiD,EAAwB,GAAGpH,qBAE3B5E,EAA2B5B,OAAO4B,yBAGlCiM,EAAcjM,IAA6BgM,EAAsB7I,KAAK,CAAE,EAAG,GAAK,GAIpFrH,EAAQiE,EAAIkM,EAAc,SAA8BlI,GACtD,IAAIzB,EAAatC,EAAyBwE,KAAMT,GAChD,QAASzB,GAAcA,EAAWhC,YAChC0L,G,qBCZJ,IAAIrO,EAAc,EAAQ,MACtBkL,EAAW,EAAQ,MACnBqD,EAAqB,EAAQ,MAMjCrQ,EAAOC,QAAUsC,OAAOyG,iBAAmB,aAAe,GAAK,WAC7D,IAEIkD,EAFAoE,GAAiB,EACjB/M,EAAO,GAEX,IAEE2I,EAASpK,EAAYS,OAAO4B,yBAAyB5B,OAAO5B,UAAW,aAAa+I,KACpFwC,EAAO3I,EAAM,IACb+M,EAAiB/M,aAAgB7C,MACjC,MAAOiC,IACT,OAAO,SAAwBlB,EAAG8O,GAKhC,OAJAvD,EAASvL,GACT4O,EAAmBE,GACfD,EAAgBpE,EAAOzK,EAAG8O,GACzB9O,EAAE+O,UAAYD,EACZ9O,GAfoD,QAiBzDb,I,qBC1BN,IAAI0G,EAAO,EAAQ,MACf1H,EAAa,EAAQ,KACrBoB,EAAW,EAAQ,KAEnBlB,EAAaC,UAIjBC,EAAOC,QAAU,SAAUwQ,EAAOC,GAChC,IAAI7I,EAAI8I,EACR,GAAa,WAATD,GAAqB9Q,EAAWiI,EAAK4I,EAAM1O,YAAcf,EAAS2P,EAAMrJ,EAAKO,EAAI4I,IAAS,OAAOE,EACrG,GAAI/Q,EAAWiI,EAAK4I,EAAMG,WAAa5P,EAAS2P,EAAMrJ,EAAKO,EAAI4I,IAAS,OAAOE,EAC/E,GAAa,WAATD,GAAqB9Q,EAAWiI,EAAK4I,EAAM1O,YAAcf,EAAS2P,EAAMrJ,EAAKO,EAAI4I,IAAS,OAAOE,EACrG,MAAM7Q,EAAW,6C,qBCbnB,IAAI2F,EAAa,EAAQ,MACrB3D,EAAc,EAAQ,MACtB+O,EAA4B,EAAQ,MACpCC,EAA8B,EAAQ,MACtC9D,EAAW,EAAQ,MAEnB+C,EAASjO,EAAY,GAAGiO,QAG5B/P,EAAOC,QAAUwF,EAAW,UAAW,YAAc,SAAiBvD,GACpE,IAAI+B,EAAO4M,EAA0B3M,EAAE8I,EAAS9K,IAC5CyK,EAAwBmE,EAA4B5M,EACxD,OAAOyI,EAAwBoD,EAAO9L,EAAM0I,EAAsBzK,IAAO+B,I,qBCZ3E,IAAI1D,EAAiB,UAErBP,EAAOC,QAAU,SAAU8Q,EAAQC,EAAQjQ,GACzCA,KAAOgQ,GAAUxQ,EAAewQ,EAAQhQ,EAAK,CAC3CF,cAAc,EACdwE,IAAK,WAAc,OAAO2L,EAAOjQ,IACjC2I,IAAK,SAAUxH,GAAM8O,EAAOjQ,GAAOmB,O,iBCNvC,IAAIpC,EAAaC,UAIjBC,EAAOC,QAAU,SAAUiC,GACzB,QAAUtB,GAANsB,EAAiB,MAAMpC,EAAW,wBAA0BoC,GAChE,OAAOA,I,qBCNT,IAAI2H,EAAS,EAAQ,MACjBoH,EAAM,EAAQ,MAEdhN,EAAO4F,EAAO,QAElB7J,EAAOC,QAAU,SAAUc,GACzB,OAAOkD,EAAKlD,KAASkD,EAAKlD,GAAOkQ,EAAIlQ,M,qBCNvC,IAAIiE,EAAS,EAAQ,MACjBJ,EAAuB,EAAQ,MAE/BsM,EAAS,qBACT5H,EAAQtE,EAAOkM,IAAWtM,EAAqBsM,EAAQ,IAE3DlR,EAAOC,QAAUqJ,G,qBCNjB,IAAI6H,EAAU,EAAQ,MAClB7H,EAAQ,EAAQ,OAEnBtJ,EAAOC,QAAU,SAAUc,EAAKD,GAC/B,OAAOwI,EAAMvI,KAASuI,EAAMvI,QAAiBH,IAAVE,EAAsBA,EAAQ,MAChE,WAAY,IAAImP,KAAK,CACtBtK,QAAS,SACTyL,KAAMD,EAAU,OAAS,SACzBE,UAAW,4CACXC,QAAS,2DACTvN,OAAQ,yC,qBCVV,IAAIwN,EAAsB,EAAQ,MAE9BC,EAAMlJ,KAAKkJ,IACXC,EAAMnJ,KAAKmJ,IAKfzR,EAAOC,QAAU,SAAU0B,EAAOD,GAChC,IAAIgQ,EAAUH,EAAoB5P,GAClC,OAAO+P,EAAU,EAAIF,EAAIE,EAAUhQ,EAAQ,GAAK+P,EAAIC,EAAShQ,K,qBCT/D,IAAIiQ,EAAgB,EAAQ,MACxBC,EAAyB,EAAQ,MAErC5R,EAAOC,QAAU,SAAUiC,GACzB,OAAOyP,EAAcC,EAAuB1P,M,qBCL9C,IAAIqK,EAAQ,EAAQ,MAIpBvM,EAAOC,QAAU,SAAUC,GACzB,IAAI2R,GAAU3R,EAEd,OAAO2R,IAAWA,GAAqB,IAAXA,EAAe,EAAItF,EAAMsF,K,qBCPvD,IAAIN,EAAsB,EAAQ,MAE9BE,EAAMnJ,KAAKmJ,IAIfzR,EAAOC,QAAU,SAAUC,GACzB,OAAOA,EAAW,EAAIuR,EAAIF,EAAoBrR,GAAW,kBAAoB,I,qBCP/E,IAAI0R,EAAyB,EAAQ,MAEjCtP,EAAUC,OAIdvC,EAAOC,QAAU,SAAUC,GACzB,OAAOoC,EAAQsP,EAAuB1R,M,qBCPxC,IAAIoH,EAAO,EAAQ,MACftG,EAAW,EAAQ,KACnB8Q,EAAW,EAAQ,MACnBC,EAAY,EAAQ,MACpBC,EAAsB,EAAQ,MAC9B3R,EAAkB,EAAQ,MAE1BP,EAAaC,UACbkS,EAAe5R,EAAgB,eAInCL,EAAOC,QAAU,SAAUwQ,EAAOC,GAChC,IAAK1P,EAASyP,IAAUqB,EAASrB,GAAQ,OAAOA,EAChD,IACI5N,EADAqP,EAAeH,EAAUtB,EAAOwB,GAEpC,GAAIC,EAAc,CAGhB,QAFatR,IAAT8P,IAAoBA,EAAO,WAC/B7N,EAASyE,EAAK4K,EAAczB,EAAOC,IAC9B1P,EAAS6B,IAAWiP,EAASjP,GAAS,OAAOA,EAClD,MAAM/C,EAAW,2CAGnB,YADac,IAAT8P,IAAoBA,EAAO,UACxBsB,EAAoBvB,EAAOC,K,qBCvBpC,IAAIyB,EAAc,EAAQ,MACtBL,EAAW,EAAQ,MAIvB9R,EAAOC,QAAU,SAAUC,GACzB,IAAIa,EAAMoR,EAAYjS,EAAU,UAChC,OAAO4R,EAAS/Q,GAAOA,EAAMA,EAAM,K,qBCPrC,IAAIV,EAAkB,EAAQ,MAE1BgC,EAAgBhC,EAAgB,eAChCkD,EAAO,GAEXA,EAAKlB,GAAiB,IAEtBrC,EAAOC,QAA2B,eAAjBG,OAAOmD,I,qBCPxB,IAAIuF,EAAU,EAAQ,KAElB3I,EAAUC,OAEdJ,EAAOC,QAAU,SAAUC,GACzB,GAA0B,WAAtB4I,EAAQ5I,GAAwB,MAAMH,UAAU,6CACpD,OAAOI,EAAQD,K,iBCNjB,IAAIC,EAAUC,OAEdJ,EAAOC,QAAU,SAAUC,GACzB,IACE,OAAOC,EAAQD,GACf,MAAOyC,GACP,MAAO,Y,qBCNX,IAAIb,EAAc,EAAQ,MAEtBsQ,EAAK,EACLC,EAAU/J,KAAKgK,SACfvQ,EAAWD,EAAY,GAAIC,UAE/B/B,EAAOC,QAAU,SAAUc,GACzB,MAAO,gBAAqBH,IAARG,EAAoB,GAAKA,GAAO,KAAOgB,IAAWqQ,EAAKC,EAAS,M,qBCNtF,IAAIE,EAAgB,EAAQ,KAE5BvS,EAAOC,QAAUsS,IACX1F,OAAO7F,MACkB,iBAAnB6F,OAAO2F,U,qBCLnB,IAAInO,EAAc,EAAQ,MACtBe,EAAQ,EAAQ,MAIpBpF,EAAOC,QAAUoE,GAAee,GAAM,WAEpC,OAGgB,IAHT7C,OAAOhC,gBAAe,cAA6B,YAAa,CACrEO,MAAO,GACP4D,UAAU,IACT/D,c,qBCVL,IAAIqE,EAAS,EAAQ,MACjB6E,EAAS,EAAQ,MACjBnG,EAAS,EAAQ,MACjBuN,EAAM,EAAQ,MACdsB,EAAgB,EAAQ,KACxBhH,EAAoB,EAAQ,MAE5BkH,EAAwB5I,EAAO,OAC/BgD,EAAS7H,EAAO6H,OAChB6F,EAAY7F,GAAUA,EAAO,OAC7B8F,EAAwBpH,EAAoBsB,EAASA,GAAUA,EAAO+F,eAAiB3B,EAE3FjR,EAAOC,QAAU,SAAU8E,GACzB,IAAKrB,EAAO+O,EAAuB1N,KAAWwN,GAAuD,iBAA/BE,EAAsB1N,GAAoB,CAC9G,IAAI8N,EAAc,UAAY9N,EAC1BwN,GAAiB7O,EAAOmJ,EAAQ9H,GAClC0N,EAAsB1N,GAAQ8H,EAAO9H,GAErC0N,EAAsB1N,GADbwG,GAAqBmH,EACAA,EAAUG,GAEVF,EAAsBE,GAEtD,OAAOJ,EAAsB1N,K,kCCrBjC,IAAIU,EAAa,EAAQ,MACrB/B,EAAS,EAAQ,MACjBwC,EAA8B,EAAQ,MACtCoF,EAAgB,EAAQ,MACxBtC,EAAiB,EAAQ,MACzB5C,EAA4B,EAAQ,MACpC0M,EAAgB,EAAQ,MACxBC,EAAoB,EAAQ,MAC5BC,EAA0B,EAAQ,MAClCC,EAAoB,EAAQ,MAC5BC,EAAkB,EAAQ,MAC1BC,EAA0B,EAAQ,MAClC9O,EAAc,EAAQ,MACtB8M,EAAU,EAAQ,MAEtBnR,EAAOC,QAAU,SAAUmT,EAAWC,EAAS/M,EAAQgN,GACrD,IAAIC,EAAoB,kBACpBC,EAAmBF,EAAqB,EAAI,EAC5CG,EAAOL,EAAUnN,MAAM,KACvByN,EAAaD,EAAKA,EAAK/R,OAAS,GAChCiS,EAAgBlO,EAAW4B,MAAM,KAAMoM,GAE3C,GAAKE,EAAL,CAEA,IAAIC,EAAyBD,EAAchT,UAK3C,IAFKwQ,GAAWzN,EAAOkQ,EAAwB,iBAAiBA,EAAuBnK,OAElFnD,EAAQ,OAAOqN,EAEpB,IAAIE,EAAYpO,EAAW,SAEvBqO,EAAeT,GAAQ,SAAUxK,EAAGkL,GACtC,IAAIC,EAAUhB,EAAwBM,EAAqBS,EAAIlL,OAAGjI,GAC9DiC,EAASyQ,EAAqB,IAAIK,EAAc9K,GAAK,IAAI8K,EAK7D,YAJgB/S,IAAZoT,GAAuB9N,EAA4BrD,EAAQ,UAAWmR,GACtEb,GAAyBjN,EAA4BrD,EAAQ,QAASqQ,EAAgBrQ,EAAOO,MAAO,IACpGuF,MAAQ2C,EAAcsI,EAAwBjL,OAAOoK,EAAkBlQ,EAAQ8F,KAAMmL,GACrFrR,UAAUf,OAAS8R,GAAkBP,EAAkBpQ,EAAQJ,UAAU+Q,IACtE3Q,KAeT,GAZAiR,EAAanT,UAAYiT,EAEN,UAAfF,EACE1K,EAAgBA,EAAe8K,EAAcD,GAC5CzN,EAA0B0N,EAAcD,EAAW,CAAE9O,MAAM,IACvDV,GAAekP,KAAqBI,IAC7Cb,EAAcgB,EAAcH,EAAeJ,GAC3CT,EAAcgB,EAAcH,EAAe,sBAG7CvN,EAA0B0N,EAAcH,IAEnCxC,EAAS,IAERyC,EAAuB7O,OAAS2O,GAClCxN,EAA4B0N,EAAwB,OAAQF,GAE9DE,EAAuBvK,YAAcyK,EACrC,MAAOnR,IAET,OAAOmR,K,kCC/DT,IAAIG,EAAI,EAAQ,MACZC,EAAY,iBACZ9O,EAAQ,EAAQ,MAChB+O,EAAmB,EAAQ,MAG3BC,EAAmBhP,GAAM,WAC3B,OAAQ1E,MAAM,GAAGkB,cAKnBqS,EAAE,CAAEnQ,OAAQ,QAASyM,OAAO,EAAMxJ,OAAQqN,GAAoB,CAC5DxS,SAAU,SAAkBL,GAC1B,OAAO2S,EAAUvL,KAAMpH,EAAIkB,UAAUf,OAAS,EAAIe,UAAU,QAAK7B,MAKrEuT,EAAiB,a,qBCnBjB,IAAIF,EAAI,EAAQ,MACZjP,EAAS,EAAQ,MACjBqC,EAAQ,EAAQ,MAChBgN,EAAgC,EAAQ,MAExCC,EAAe,cACfC,EAAcvP,EAAOsP,GAErBhO,EAA4C,IAAnCtD,MAAM,IAAK,CAAEyG,MAAO,IAAKA,MAElC+K,EAAgC,SAAUd,EAAYL,GACxD,IAAI5R,EAAI,GACRA,EAAEiS,GAAcW,EAA8BX,EAAYL,EAAS/M,GACnE2N,EAAE,CAAEjP,QAAQ,EAAMqE,aAAa,EAAM8C,MAAO,EAAGpF,OAAQT,GAAU7E,IAG/DgT,EAAqC,SAAUf,EAAYL,GAC7D,GAAIkB,GAAeA,EAAYb,GAAa,CAC1C,IAAIjS,EAAI,GACRA,EAAEiS,GAAcW,EAA8BC,EAAe,IAAMZ,EAAYL,EAAS/M,GACxF2N,EAAE,CAAEnQ,OAAQwQ,EAAczN,MAAM,EAAMwC,aAAa,EAAM8C,MAAO,EAAGpF,OAAQT,GAAU7E,KAKzF+S,EAA8B,SAAS,SAAUE,GAC/C,OAAO,SAAeV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAE5D+R,EAA8B,aAAa,SAAUE,GACnD,OAAO,SAAmBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAEhE+R,EAA8B,cAAc,SAAUE,GACpD,OAAO,SAAoBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAEjE+R,EAA8B,kBAAkB,SAAUE,GACxD,OAAO,SAAwBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAErE+R,EAA8B,eAAe,SAAUE,GACrD,OAAO,SAAqBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAElE+R,EAA8B,aAAa,SAAUE,GACnD,OAAO,SAAmBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAEhE+R,EAA8B,YAAY,SAAUE,GAClD,OAAO,SAAkBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAE/DgS,EAAmC,gBAAgB,SAAUC,GAC3D,OAAO,SAAsBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAEnEgS,EAAmC,aAAa,SAAUC,GACxD,OAAO,SAAmBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,eAEhEgS,EAAmC,gBAAgB,SAAUC,GAC3D,OAAO,SAAsBV,GAAW,OAAO3M,EAAMqN,EAAM/L,KAAMlG,gB,kcChDnE,IAAIkS,EACJ,MAAMC,EACFvL,YAAYwL,GAAW,GAInBlM,KAAKmM,QAAS,EAIdnM,KAAKoM,QAAU,GAIfpM,KAAKqM,SAAW,IACXH,GAAYF,IACbhM,KAAKsM,OAASN,EACdhM,KAAKhH,OACAgT,EAAkBO,SAAWP,EAAkBO,OAAS,KAAKjF,KAAKtH,MAAQ,GAGvFwM,IAAItN,GACA,GAAIc,KAAKmM,OAAQ,CACb,MAAMM,EAAqBT,EAC3B,IAEI,OADAA,EAAoBhM,KACbd,IAFX,QAKI8M,EAAoBS,QAGlBvP,EAQdwP,KACIV,EAAoBhM,KAMxB2M,MACIX,EAAoBhM,KAAKsM,OAE7BM,KAAKC,GACD,GAAI7M,KAAKmM,OAAQ,CACb,IAAI1Q,EAAGqR,EACP,IAAKrR,EAAI,EAAGqR,EAAI9M,KAAKoM,QAAQrT,OAAQ0C,EAAIqR,EAAGrR,IACxCuE,KAAKoM,QAAQ3Q,GAAGmR,OAEpB,IAAKnR,EAAI,EAAGqR,EAAI9M,KAAKqM,SAAStT,OAAQ0C,EAAIqR,EAAGrR,IACzCuE,KAAKqM,SAAS5Q,KAElB,GAAIuE,KAAKuM,OACL,IAAK9Q,EAAI,EAAGqR,EAAI9M,KAAKuM,OAAOxT,OAAQ0C,EAAIqR,EAAGrR,IACvCuE,KAAKuM,OAAO9Q,GAAGmR,MAAK,GAI5B,GAAI5M,KAAKsM,SAAWO,EAAY,CAE5B,MAAME,EAAO/M,KAAKsM,OAAOC,OAAOS,MAC5BD,GAAQA,IAAS/M,OACjBA,KAAKsM,OAAOC,OAAOvM,KAAKhH,OAAS+T,EACjCA,EAAK/T,MAAQgH,KAAKhH,OAG1BgH,KAAKmM,QAAS,IAO1B,SAASc,EAAkBC,EAAQC,EAAQnB,GACnCmB,GAASA,EAAMhB,QACfgB,EAAMf,QAAQ9E,KAAK4F,GAgB3B,MAAME,EAAahB,IACf,MAAMiB,EAAM,IAAIC,IAAIlB,GAGpB,OAFAiB,EAAIE,EAAI,EACRF,EAAIvJ,EAAI,EACDuJ,GAELG,EAAcH,IAASA,EAAIE,EAAIE,GAAc,EAC7CC,EAAcL,IAASA,EAAIvJ,EAAI2J,GAAc,EAC7CE,EAAiB,EAAGC,WACtB,GAAIA,EAAK7U,OACL,IAAK,IAAI0C,EAAI,EAAGA,EAAImS,EAAK7U,OAAQ0C,IAC7BmS,EAAKnS,GAAG8R,GAAKE,GAInBI,EAAsBX,IACxB,MAAM,KAAEU,GAASV,EACjB,GAAIU,EAAK7U,OAAQ,CACb,IAAI+U,EAAM,EACV,IAAK,IAAIrS,EAAI,EAAGA,EAAImS,EAAK7U,OAAQ0C,IAAK,CAClC,MAAM4R,EAAMO,EAAKnS,GACb+R,EAAWH,KAASK,EAAWL,GAC/BA,EAAIU,OAAOb,GAGXU,EAAKE,KAAST,EAGlBA,EAAIE,IAAME,EACVJ,EAAIvJ,IAAM2J,EAEdG,EAAK7U,OAAS+U,IAIhBE,EAAY,IAAI1M,QAEtB,IAAI2M,EAAmB,EACnBR,EAAa,EAMjB,MAAMS,EAAgB,GACtB,IAAIC,EACJ,MAAMC,EAAclK,OAA6D,IAC3EmK,EAAsBnK,OAAqE,IACjG,MAAMoK,EACF5N,YAAYxB,EAAIqP,EAAY,KAAMpB,GAC9BnN,KAAKd,GAAKA,EACVc,KAAKuO,UAAYA,EACjBvO,KAAKmM,QAAS,EACdnM,KAAK4N,KAAO,GACZ5N,KAAKsM,YAASrU,EACdgV,EAAkBjN,KAAMmN,GAE5BX,MACI,IAAKxM,KAAKmM,OACN,OAAOnM,KAAKd,KAEhB,IAAIoN,EAAS6B,EACTK,EAAkBC,EACtB,MAAOnC,EAAQ,CACX,GAAIA,IAAWtM,KACX,OAEJsM,EAASA,EAAOA,OAEpB,IAWI,OAVAtM,KAAKsM,OAAS6B,EACdA,EAAenO,KACfyO,GAAc,EACdhB,EAAa,KAAOQ,EAChBA,GAAoBC,EACpBP,EAAe3N,MAGf0O,EAAc1O,MAEXA,KAAKd,KAXhB,QAcQ+O,GAAoBC,GACpBL,EAAmB7N,MAEvByN,EAAa,KAAOQ,EACpBE,EAAenO,KAAKsM,OACpBmC,EAAcD,EACdxO,KAAKsM,YAASrU,EACV+H,KAAK2O,WACL3O,KAAK4M,QAIjBA,OAEQuB,IAAiBnO,KACjBA,KAAK2O,WAAY,EAEZ3O,KAAKmM,SACVuC,EAAc1O,MACVA,KAAK4O,QACL5O,KAAK4O,SAET5O,KAAKmM,QAAS,IAI1B,SAASuC,EAAcxB,GACnB,MAAM,KAAEU,GAASV,EACjB,GAAIU,EAAK7U,OAAQ,CACb,IAAK,IAAI0C,EAAI,EAAGA,EAAImS,EAAK7U,OAAQ0C,IAC7BmS,EAAKnS,GAAGsS,OAAOb,GAEnBU,EAAK7U,OAAS,GAuBtB,IAAI0V,GAAc,EAClB,MAAMI,EAAa,GACnB,SAASC,IACLD,EAAWvH,KAAKmH,GAChBA,GAAc,EAMlB,SAASM,IACL,MAAMhC,EAAO8B,EAAW7B,MACxByB,OAAuBxW,IAAT8U,GAA4BA,EAE9C,SAASiC,EAAM7T,EAAQwG,EAAMvJ,GACzB,GAAIqW,GAAeN,EAAc,CAC7B,IAAIc,EAAUjB,EAAUtR,IAAIvB,GACvB8T,GACDjB,EAAUjN,IAAI5F,EAAS8T,EAAU,IAAIC,KAEzC,IAAI7B,EAAM4B,EAAQvS,IAAItE,GACjBiV,GACD4B,EAAQlO,IAAI3I,EAAMiV,EAAMD,KAE5B,MAAM+B,OAEAlX,EACNmX,EAAa/B,EAAK8B,IAG1B,SAASC,EAAa/B,EAAKgC,GACvB,IAAIZ,GAAc,EACdR,GAAoBC,EACfR,EAAWL,KACZA,EAAIvJ,GAAK2J,EACTgB,GAAejB,EAAWH,IAK9BoB,GAAepB,EAAIrM,IAAImN,GAEvBM,IACApB,EAAIiC,IAAInB,GACRA,EAAaP,KAAKtG,KAAK+F,IAM/B,SAASkC,EAAQpU,EAAQwG,EAAMvJ,EAAKoX,EAAUC,EAAUC,GACpD,MAAMT,EAAUjB,EAAUtR,IAAIvB,GAC9B,IAAK8T,EAED,OAEJ,IAAIrB,EAAO,GACX,GAAa,UAATjM,EAGAiM,EAAO,IAAIqB,EAAQU,eAElB,GAAY,WAARvX,IAAoBwX,EAAAA,EAAAA,IAAQzU,GACjC8T,EAAQY,SAAQ,CAACxC,EAAKjV,MACN,WAARA,GAAoBA,GAAOoX,IAC3B5B,EAAKtG,KAAK+F,WAUlB,YAJY,IAARjV,GACAwV,EAAKtG,KAAK2H,EAAQvS,IAAItE,IAGlBuJ,GACJ,IAAK,OACIiO,EAAAA,EAAAA,IAAQzU,IAMJ2U,EAAAA,EAAAA,IAAa1X,IAElBwV,EAAKtG,KAAK2H,EAAQvS,IAAI,YAPtBkR,EAAKtG,KAAK2H,EAAQvS,IAAI0R,KAClB2B,EAAAA,EAAAA,IAAM5U,IACNyS,EAAKtG,KAAK2H,EAAQvS,IAAI2R,KAO9B,MACJ,IAAK,UACIuB,EAAAA,EAAAA,IAAQzU,KACTyS,EAAKtG,KAAK2H,EAAQvS,IAAI0R,KAClB2B,EAAAA,EAAAA,IAAM5U,IACNyS,EAAKtG,KAAK2H,EAAQvS,IAAI2R,KAG9B,MACJ,IAAK,OACG0B,EAAAA,EAAAA,IAAM5U,IACNyS,EAAKtG,KAAK2H,EAAQvS,IAAI0R,IAE1B,MAMZ,GAAoB,IAAhBR,EAAK7U,OACD6U,EAAK,IAKDoC,EAAepC,EAAK,QAI3B,CACD,MAAMxB,EAAU,GAChB,IAAK,MAAMiB,KAAOO,EACVP,GACAjB,EAAQ9E,QAAQ+F,GAOpB2C,EAAe5C,EAAUhB,KAIrC,SAAS4D,EAAe3C,EAAKgC,GAEzB,MAAMjD,GAAUwD,EAAAA,EAAAA,IAAQvC,GAAOA,EAAM,IAAIA,GACzC,IAAK,MAAMH,KAAUd,EACbc,EAAO+C,UACPC,EAAchD,EAAQmC,GAG9B,IAAK,MAAMnC,KAAUd,EACZc,EAAO+C,UACRC,EAAchD,EAAQmC,GAIlC,SAASa,EAAchD,EAAQmC,IACvBnC,IAAWiB,GAAgBjB,EAAOiD,gBAI9BjD,EAAOqB,UACPrB,EAAOqB,YAGPrB,EAAOV,OAKnB,MAAM4D,GAAmCC,EAAAA,EAAAA,IAAS,+BAC5CC,EAAiB,IAAIhD,IAE3B1T,OAAOyN,oBAAoBnD,QAItBqM,QAAOnY,GAAe,cAARA,GAA+B,WAARA,IACrCoY,KAAIpY,GAAO8L,OAAO9L,KAClBmY,OAAOpH,EAAAA,KACNzM,EAAoB+T,IACpBC,EAA2BD,GAAa,GAAO,GAC/CE,EAA4BF,GAAa,GAEzCG,EAAsCC,IAC5C,SAASA,IACL,MAAMC,EAAmB,GA0BzB,MAzBA,CAAC,WAAY,UAAW,eAAejB,SAAQzX,IAC3C0Y,EAAiB1Y,GAAO,YAAa2Y,GACjC,MAAMC,EAAMC,GAAMjR,MAClB,IAAK,IAAIvE,EAAI,EAAGqR,EAAI9M,KAAKjH,OAAQ0C,EAAIqR,EAAGrR,IACpCuT,EAAMgC,EAAK,MAAiBvV,EAAI,IAGpC,MAAMyV,EAAMF,EAAI5Y,MAAQ2Y,GACxB,OAAa,IAATG,IAAsB,IAARA,EAEPF,EAAI5Y,MAAQ2Y,EAAKP,IAAIS,KAGrBC,MAInB,CAAC,OAAQ,MAAO,QAAS,UAAW,UAAUrB,SAAQzX,IAClD0Y,EAAiB1Y,GAAO,YAAa2Y,GACjCjC,IACA,MAAMoC,EAAMD,GAAMjR,MAAM5H,GAAKsG,MAAMsB,KAAM+Q,GAEzC,OADAhC,IACOmC,MAGRJ,EAEX,SAASL,EAAaU,GAAa,EAAOC,GAAU,GAChD,OAAO,SAAajW,EAAQ/C,EAAKiZ,GAC7B,GAAY,mBAARjZ,EACA,OAAQ+Y,EAEP,GAAY,mBAAR/Y,EACL,OAAO+Y,EAEN,GAAY,kBAAR/Y,EACL,OAAOgZ,EAEN,GAAY,YAARhZ,GACLiZ,KACKF,EACKC,EACIE,GACAC,GACJH,EACII,GACAC,IAAa/U,IAAIvB,GAC/B,OAAOA,EAEX,MAAMuW,GAAgB9B,EAAAA,EAAAA,IAAQzU,GAC9B,IAAKgW,GAAcO,IAAiB3W,EAAAA,EAAAA,IAAO6V,EAAuBxY,GAC9D,OAAOwG,QAAQlC,IAAIkU,EAAuBxY,EAAKiZ,GAEnD,MAAMH,EAAMtS,QAAQlC,IAAIvB,EAAQ/C,EAAKiZ,GACrC,QAAIlI,EAAAA,EAAAA,IAAS/Q,GAAOkY,EAAetP,IAAI5I,GAAOgY,EAAmBhY,IACtD8Y,GAENC,GACDnC,EAAM7T,EAAQ,MAAiB/C,GAE/BgZ,EACOF,EAEPS,GAAMT,GAECQ,IAAiB5B,EAAAA,EAAAA,IAAa1X,GAAO8Y,EAAMA,EAAI/Y,OAEtDE,EAAAA,EAAAA,IAAS6Y,GAIFC,EAAaS,GAASV,GAAOW,GAASX,GAE1CA,IAGf,MAAMnQ,EAAoB+Q,IACpBC,EAA2BD,GAAa,GAC9C,SAASA,EAAaV,GAAU,GAC5B,OAAO,SAAajW,EAAQ/C,EAAKD,EAAOkZ,GACpC,IAAI5B,EAAWtU,EAAO/C,GACtB,GAAI+Y,GAAW1B,IAAakC,GAAMlC,KAAckC,GAAMxZ,GAClD,OAAO,EAEX,IAAKiZ,IAAYD,GAAWhZ,KACnB6Z,GAAU7Z,KACXA,EAAQ8Y,GAAM9Y,GACdsX,EAAWwB,GAAMxB,MAEhBG,EAAAA,EAAAA,IAAQzU,IAAWwW,GAAMlC,KAAckC,GAAMxZ,IAE9C,OADAsX,EAAStX,MAAQA,GACV,EAGf,MAAM8Z,GAASrC,EAAAA,EAAAA,IAAQzU,KAAW2U,EAAAA,EAAAA,IAAa1X,GACzC8Z,OAAO9Z,GAAO+C,EAAOpC,QACrBgC,EAAAA,EAAAA,IAAOI,EAAQ/C,GACf8B,EAAS0E,QAAQmC,IAAI5F,EAAQ/C,EAAKD,EAAOkZ,GAU/C,OARIlW,IAAW8V,GAAMI,KACZY,GAGIE,EAAAA,EAAAA,IAAWha,EAAOsX,IACvBF,EAAQpU,EAAQ,MAAiB/C,EAAKD,EAAOsX,GAH7CF,EAAQpU,EAAQ,MAAiB/C,EAAKD,IAMvC+B,GAGf,SAASkY,EAAejX,EAAQ/C,GAC5B,MAAM6Z,GAASlX,EAAAA,EAAAA,IAAOI,EAAQ/C,GACxBqX,EAAWtU,EAAO/C,GAClB8B,EAAS0E,QAAQwT,eAAejX,EAAQ/C,GAI9C,OAHI8B,GAAU+X,GACV1C,EAAQpU,EAAQ,SAAuB/C,OAAKH,EAAWwX,GAEpDvV,EAEX,SAAS8G,EAAI7F,EAAQ/C,GACjB,MAAM8B,EAAS0E,QAAQoC,IAAI7F,EAAQ/C,GAInC,OAHK+Q,EAAAA,EAAAA,IAAS/Q,IAASkY,EAAetP,IAAI5I,IACtC4W,EAAM7T,EAAQ,MAAiB/C,GAE5B8B,EAEX,SAASc,EAAQG,GAEb,OADA6T,EAAM7T,EAAQ,WAAyByU,EAAAA,EAAAA,IAAQzU,GAAU,SAAWiT,GAC7DxP,QAAQ5D,QAAQG,GAE3B,MAAMkX,EAAkB,CACpB3V,MACAqE,MACAqR,iBACApR,MACAhG,WAEEsX,EAAmB,CACrB5V,IAAKiU,EACL5P,IAAI5F,EAAQ/C,GAIR,OAAO,GAEXga,eAAejX,EAAQ/C,GAInB,OAAO,IAGTma,GAAwCC,EAAAA,EAAAA,IAAO,GAAIH,EAAiB,CACtE3V,IAAKgU,EACL3P,IAAKgR,IASHU,EAAata,GAAUA,EACvBua,EAAYC,GAAM/T,QAAQgU,eAAeD,GAC/C,SAASE,EAAM1X,EAAQ/C,EAAK+Y,GAAa,EAAOa,GAAY,GAGxD7W,EAASA,EAAO,WAChB,MAAM2X,EAAY7B,GAAM9V,GAClB4X,EAAS9B,GAAM7Y,GAChB+Y,IACG/Y,IAAQ2a,GACR/D,EAAM8D,EAAW,MAAiB1a,GAEtC4W,EAAM8D,EAAW,MAAiBC,IAEtC,MAAM,IAAE/R,GAAQ0R,EAASI,GACnBE,EAAOhB,EAAYS,EAAYtB,EAAa8B,GAAaC,GAC/D,OAAIlS,EAAIrC,KAAKmU,EAAW1a,GACb4a,EAAK7X,EAAOuB,IAAItE,IAElB4I,EAAIrC,KAAKmU,EAAWC,GAClBC,EAAK7X,EAAOuB,IAAIqW,SAElB5X,IAAW2X,GAGhB3X,EAAOuB,IAAItE,IAGnB,SAAS+a,EAAM/a,EAAK+Y,GAAa,GAC7B,MAAMhW,EAAS6E,KAAK,WACd8S,EAAY7B,GAAM9V,GAClB4X,EAAS9B,GAAM7Y,GAOrB,OANK+Y,IACG/Y,IAAQ2a,GACR/D,EAAM8D,EAAW,MAAiB1a,GAEtC4W,EAAM8D,EAAW,MAAiBC,IAE/B3a,IAAQ2a,EACT5X,EAAO6F,IAAI5I,GACX+C,EAAO6F,IAAI5I,IAAQ+C,EAAO6F,IAAI+R,GAExC,SAASK,EAAKjY,EAAQgW,GAAa,GAG/B,OAFAhW,EAASA,EAAO,YACfgW,GAAcnC,EAAMiC,GAAM9V,GAAS,UAAyBiT,GACtDxP,QAAQlC,IAAIvB,EAAQ,OAAQA,GAEvC,SAASmU,EAAInX,GACTA,EAAQ8Y,GAAM9Y,GACd,MAAMgD,EAAS8V,GAAMjR,MACf4H,EAAQ8K,EAASvX,GACjB8W,EAASrK,EAAM5G,IAAIrC,KAAKxD,EAAQhD,GAKtC,OAJK8Z,IACD9W,EAAOmU,IAAInX,GACXoX,EAAQpU,EAAQ,MAAiBhD,EAAOA,IAErC6H,KAEX,SAASqT,EAAMjb,EAAKD,GAChBA,EAAQ8Y,GAAM9Y,GACd,MAAMgD,EAAS8V,GAAMjR,OACf,IAAEgB,EAAF,IAAOtE,GAAQgW,EAASvX,GAC9B,IAAI8W,EAASjR,EAAIrC,KAAKxD,EAAQ/C,GACzB6Z,IACD7Z,EAAM6Y,GAAM7Y,GACZ6Z,EAASjR,EAAIrC,KAAKxD,EAAQ/C,IAK9B,MAAMqX,EAAW/S,EAAIiC,KAAKxD,EAAQ/C,GAQlC,OAPA+C,EAAO4F,IAAI3I,EAAKD,GACX8Z,GAGIE,EAAAA,EAAAA,IAAWha,EAAOsX,IACvBF,EAAQpU,EAAQ,MAAiB/C,EAAKD,EAAOsX,GAH7CF,EAAQpU,EAAQ,MAAiB/C,EAAKD,GAKnC6H,KAEX,SAASsT,GAAYlb,GACjB,MAAM+C,EAAS8V,GAAMjR,OACf,IAAEgB,EAAF,IAAOtE,GAAQgW,EAASvX,GAC9B,IAAI8W,EAASjR,EAAIrC,KAAKxD,EAAQ/C,GACzB6Z,IACD7Z,EAAM6Y,GAAM7Y,GACZ6Z,EAASjR,EAAIrC,KAAKxD,EAAQ/C,IAK9B,MAAMqX,EAAW/S,EAAMA,EAAIiC,KAAKxD,EAAQ/C,QAAOH,EAEzCiC,EAASiB,EAAO4S,OAAO3V,GAI7B,OAHI6Z,GACA1C,EAAQpU,EAAQ,SAAuB/C,OAAKH,EAAWwX,GAEpDvV,EAEX,SAASqZ,KACL,MAAMpY,EAAS8V,GAAMjR,MACfwT,EAA2B,IAAhBrY,EAAOiY,KAClB1D,OAIAzX,EAEAiC,EAASiB,EAAOoY,QAItB,OAHIC,GACAjE,EAAQpU,EAAQ,aAAqBlD,OAAWA,EAAWyX,GAExDxV,EAEX,SAASuZ,GAActC,EAAYa,GAC/B,OAAO,SAAiB0B,EAAUC,GAC9B,MAAMC,EAAW5T,KACX7E,EAASyY,EAAS,WAClBd,EAAY7B,GAAM9V,GAClB6X,EAAOhB,EAAYS,EAAYtB,EAAa8B,GAAaC,GAE/D,OADC/B,GAAcnC,EAAM8D,EAAW,UAAyB1E,GAClDjT,EAAO0U,SAAQ,CAAC1X,EAAOC,IAInBsb,EAAS/U,KAAKgV,EAASX,EAAK7a,GAAQ6a,EAAK5a,GAAMwb,MAIlE,SAASC,GAAqBxU,EAAQ8R,EAAYa,GAC9C,OAAO,YAAajB,GAChB,MAAM5V,EAAS6E,KAAK,WACd8S,EAAY7B,GAAM9V,GAClB2Y,GAAc/D,EAAAA,EAAAA,IAAM+C,GACpBiB,EAAoB,YAAX1U,GAAyBA,IAAW6E,OAAO2F,UAAYiK,EAChEE,EAAuB,SAAX3U,GAAqByU,EACjCG,EAAgB9Y,EAAOkE,MAAW0R,GAClCiC,EAAOhB,EAAYS,EAAYtB,EAAa8B,GAAaC,GAK/D,OAJC/B,GACGnC,EAAM8D,EAAW,UAAyBkB,EAAY3F,EAAsBD,GAGzE,CAEH8F,OACI,MAAM,MAAE/b,EAAF,KAASgc,GAASF,EAAcC,OACtC,OAAOC,EACD,CAAEhc,QAAOgc,QACT,CACEhc,MAAO4b,EAAS,CAACf,EAAK7a,EAAM,IAAK6a,EAAK7a,EAAM,KAAO6a,EAAK7a,GACxDgc,SAIZ,CAACjQ,OAAO2F,YACJ,OAAO7J,QAKvB,SAASoU,GAAqBzS,GAC1B,OAAO,YAAaoP,GAKhB,MAAgB,WAATpP,GAAyC3B,MAGxD,SAASqU,KACL,MAAMC,EAA0B,CAC5B5X,IAAItE,GACA,OAAOya,EAAM7S,KAAM5H,IAEnBgb,WACA,OAAOA,EAAKpT,OAEhBgB,IAAKmS,EACL7D,MACAvO,IAAKsS,EACLtF,OAAQuF,GACRC,SACA1D,QAAS4D,IAAc,GAAO,IAE5Bc,EAA0B,CAC5B7X,IAAItE,GACA,OAAOya,EAAM7S,KAAM5H,GAAK,GAAO,IAE/Bgb,WACA,OAAOA,EAAKpT,OAEhBgB,IAAKmS,EACL7D,MACAvO,IAAKsS,EACLtF,OAAQuF,GACRC,SACA1D,QAAS4D,IAAc,GAAO,IAE5Be,EAA2B,CAC7B9X,IAAItE,GACA,OAAOya,EAAM7S,KAAM5H,GAAK,IAExBgb,WACA,OAAOA,EAAKpT,MAAM,IAEtBgB,IAAI5I,GACA,OAAO+a,EAAMxU,KAAKqB,KAAM5H,GAAK,IAEjCkX,IAAK8E,GAAqB,OAC1BrT,IAAKqT,GAAqB,OAC1BrG,OAAQqG,GAAqB,UAC7Bb,MAAOa,GAAqB,SAC5BvE,QAAS4D,IAAc,GAAM,IAE3BgB,EAAkC,CACpC/X,IAAItE,GACA,OAAOya,EAAM7S,KAAM5H,GAAK,GAAM,IAE9Bgb,WACA,OAAOA,EAAKpT,MAAM,IAEtBgB,IAAI5I,GACA,OAAO+a,EAAMxU,KAAKqB,KAAM5H,GAAK,IAEjCkX,IAAK8E,GAAqB,OAC1BrT,IAAKqT,GAAqB,OAC1BrG,OAAQqG,GAAqB,UAC7Bb,MAAOa,GAAqB,SAC5BvE,QAAS4D,IAAc,GAAM,IAE3BiB,EAAkB,CAAC,OAAQ,SAAU,UAAWxQ,OAAO2F,UAO7D,OANA6K,EAAgB7E,SAAQxQ,IACpBiV,EAAwBjV,GAAUwU,GAAqBxU,GAAQ,GAAO,GACtEmV,EAAyBnV,GAAUwU,GAAqBxU,GAAQ,GAAM,GACtEkV,EAAwBlV,GAAUwU,GAAqBxU,GAAQ,GAAO,GACtEoV,EAAgCpV,GAAUwU,GAAqBxU,GAAQ,GAAM,MAE1E,CACHiV,EACAE,EACAD,EACAE,GAGR,MAAOH,GAAyBE,GAA0BD,GAAyBE,IAAkDJ,KACrI,SAASM,GAA4BxD,EAAYC,GAC7C,MAAMN,EAAmBM,EACnBD,EACIsD,GACAF,GACJpD,EACIqD,GACAF,GACV,MAAO,CAACnZ,EAAQ/C,EAAKiZ,IACL,mBAARjZ,GACQ+Y,EAEK,mBAAR/Y,EACE+Y,EAEM,YAAR/Y,EACE+C,EAEJyD,QAAQlC,KAAI3B,EAAAA,EAAAA,IAAO+V,EAAkB1Y,IAAQA,KAAO+C,EACrD2V,EACA3V,EAAQ/C,EAAKiZ,GAG3B,MAAMuD,GAA4B,CAC9BlY,IAAmBiY,IAA4B,GAAO,IAEpDE,GAA4B,CAC9BnY,IAAmBiY,IAA4B,GAAO,IAEpDG,GAA6B,CAC/BpY,IAAmBiY,IAA4B,GAAM,IAiBzD,MAAMlD,GAAc,IAAInQ,QAClBkQ,GAAqB,IAAIlQ,QACzBiQ,GAAc,IAAIjQ,QAClBgQ,GAAqB,IAAIhQ,QAC/B,SAASyT,GAAcC,GACnB,OAAQA,GACJ,IAAK,SACL,IAAK,QACD,OAAO,EACX,IAAK,MACL,IAAK,MACL,IAAK,UACL,IAAK,UACD,OAAO,EACX,QACI,OAAO,GAGnB,SAASC,GAAc9c,GACnB,OAAOA,EAAM,cAA2ByB,OAAOsb,aAAa/c,GACtD,EACA4c,IAAcI,EAAAA,EAAAA,IAAUhd,IAElC,SAAS0Z,GAAS1W,GAEd,OAAIgW,GAAWhW,GACJA,EAEJia,GAAqBja,GAAQ,EAAOkX,EAAiBuC,GAA2BnD,IAO3F,SAAS4D,GAAgBla,GACrB,OAAOia,GAAqBja,GAAQ,EAAOoX,EAAyBsC,GAA2BrD,IAMnG,SAASI,GAASzW,GACd,OAAOia,GAAqBja,GAAQ,EAAMmX,EAAkBwC,GAA4BvD,IAW5F,SAAS6D,GAAqBja,EAAQgW,EAAYmE,EAAcC,EAAoBC,GAChF,KAAKnd,EAAAA,EAAAA,IAAS8C,GAIV,OAAOA,EAIX,GAAIA,EAAO,cACLgW,IAAchW,EAAO,mBACvB,OAAOA,EAGX,MAAMsa,EAAgBD,EAAS9Y,IAAIvB,GACnC,GAAIsa,EACA,OAAOA,EAGX,MAAMC,EAAaT,GAAc9Z,GACjC,GAAmB,IAAfua,EACA,OAAOva,EAEX,MAAMwa,EAAQ,IAAIC,MAAMza,EAAuB,IAAfua,EAAoCH,EAAqBD,GAEzF,OADAE,EAASzU,IAAI5F,EAAQwa,GACdA,EAEX,SAASE,GAAW1d,GAChB,OAAIgZ,GAAWhZ,GACJ0d,GAAW1d,EAAM,eAElBA,IAASA,EAAM,mBAE7B,SAASgZ,GAAWhZ,GAChB,SAAUA,IAASA,EAAM,mBAE7B,SAAS6Z,GAAU7Z,GACf,SAAUA,IAASA,EAAM,kBAE7B,SAAS2d,GAAQ3d,GACb,OAAO0d,GAAW1d,IAAUgZ,GAAWhZ,GAE3C,SAAS8Y,GAAM2C,GACX,MAAMmC,EAAMnC,GAAYA,EAAS,WACjC,OAAOmC,EAAM9E,GAAM8E,GAAOnC,EAE9B,SAASoC,GAAQ7d,GAEb,OADA8d,EAAAA,EAAAA,IAAI9d,EAAO,YAAuB,GAC3BA,EAEX,MAAM+a,GAAc/a,IAAUE,EAAAA,EAAAA,IAASF,GAAS0Z,GAAS1Z,GAASA,EAC5D8a,GAAc9a,IAAUE,EAAAA,EAAAA,IAASF,GAASyZ,GAASzZ,GAASA,EAElE,SAAS+d,GAAcC,GACf1H,GAAeN,IACfgI,EAAMlF,GAAMkF,GASR/G,EAAa+G,EAAI9I,MAAQ8I,EAAI9I,IAAMD,OAI/C,SAASgJ,GAAgBD,EAAKE,GAC1BF,EAAMlF,GAAMkF,GACRA,EAAI9I,KAUA2C,EAAemG,EAAI9I,KAI/B,SAASsE,GAAM2E,GACX,SAAUA,IAAqB,IAAhBA,EAAEC,WAsCrB,SAASC,GAAML,GACX,OAAOxE,GAAMwE,GAAOA,EAAIhe,MAAQge,EAEpC,MAAMM,GAAwB,CAC1B/Z,IAAK,CAACvB,EAAQ/C,EAAKiZ,IAAamF,GAAM5X,QAAQlC,IAAIvB,EAAQ/C,EAAKiZ,IAC/DtQ,IAAK,CAAC5F,EAAQ/C,EAAKD,EAAOkZ,KACtB,MAAM5B,EAAWtU,EAAO/C,GACxB,OAAIuZ,GAAMlC,KAAckC,GAAMxZ,IAC1BsX,EAAStX,MAAQA,GACV,GAGAyG,QAAQmC,IAAI5F,EAAQ/C,EAAKD,EAAOkZ,KAInD,SAASqF,GAAUC,GACf,OAAOd,GAAWc,GACZA,EACA,IAAIf,MAAMe,EAAgBF,IAoDpC,MAAMG,GACFlW,YAAY4C,EAAQuT,EAAS1F,EAAY2F,GACrC9W,KAAK6W,QAAUA,EACf7W,KAAKqN,SAAMpV,EACX+H,KAAKuW,WAAY,EACjBvW,KAAK+W,QAAS,EACd/W,KAAKkN,OAAS,IAAIoB,EAAehL,GAAQ,KAChCtD,KAAK+W,SACN/W,KAAK+W,QAAS,EACdX,GAAgBpW,UAGxBA,KAAKkN,OAAO+C,SAAWjQ,KACvBA,KAAKkN,OAAOf,OAASnM,KAAKgX,YAAcF,EACxC9W,KAAK,kBAAsCmR,EAE3ChZ,YAEA,MAAM2H,EAAOmR,GAAMjR,MAMnB,OALAkW,GAAcpW,IACVA,EAAKiX,QAAWjX,EAAKkX,aACrBlX,EAAKiX,QAAS,EACdjX,EAAKmX,OAASnX,EAAKoN,OAAOV,OAEvB1M,EAAKmX,OAEZ9e,UAAMqX,GACNxP,KAAK6W,QAAQrH,IAGrB,SAASS,GAASiH,EAAiBC,EAAcL,GAAQ,GACrD,IAAIxT,EACAC,EACJ,MAAM6T,GAAaC,EAAAA,EAAAA,IAAWH,GAC1BE,GACA9T,EAAS4T,EACT3T,EAIM+T,EAAAA,KAGNhU,EAAS4T,EAAgBxa,IACzB6G,EAAS2T,EAAgBnW,KAE7B,MAAMwW,EAAO,IAAIX,GAAgBtT,EAAQC,EAAQ6T,IAAe7T,EAAQuT,GAKxE,OAAOS,I,khBC7/BX,SAASC,EAAsBtY,EAAIuY,EAAU9V,EAAMoP,GAC/C,IAAIG,EACJ,IACIA,EAAMH,EAAO7R,KAAM6R,GAAQ7R,IAE/B,MAAOwY,GACHC,EAAYD,EAAKD,EAAU9V,GAE/B,OAAOuP,EAEX,SAAS0G,EAA2B1Y,EAAIuY,EAAU9V,EAAMoP,GACpD,IAAIsG,EAAAA,EAAAA,IAAWnY,GAAK,CAChB,MAAMgS,EAAMsG,EAAsBtY,EAAIuY,EAAU9V,EAAMoP,GAMtD,OALIG,IAAO2G,EAAAA,EAAAA,IAAU3G,IACjBA,EAAI4G,OAAMJ,IACNC,EAAYD,EAAKD,EAAU9V,MAG5BuP,EAEX,MAAMvB,EAAS,GACf,IAAK,IAAIlU,EAAI,EAAGA,EAAIyD,EAAGnG,OAAQ0C,IAC3BkU,EAAOrI,KAAKsQ,EAA2B1Y,EAAGzD,GAAIgc,EAAU9V,EAAMoP,IAElE,OAAOpB,EAEX,SAASgI,EAAYD,EAAKD,EAAU9V,EAAMoW,GAAa,GACnD,MAAMC,EAAeP,EAAWA,EAASQ,MAAQ,KACjD,GAAIR,EAAU,CACV,IAAIS,EAAMT,EAASnL,OAEnB,MAAM6L,EAAkBV,EAAS9B,MAE3ByC,EAA+EzW,EACrF,MAAOuW,EAAK,CACR,MAAMG,EAAqBH,EAAII,GAC/B,GAAID,EACA,IAAK,IAAI5c,EAAI,EAAGA,EAAI4c,EAAmBtf,OAAQ0C,IAC3C,IAA+D,IAA3D4c,EAAmB5c,GAAGic,EAAKS,EAAiBC,GAC5C,OAIZF,EAAMA,EAAI5L,OAGd,MAAMiM,EAAkBd,EAASe,WAAWC,OAAOC,aACnD,GAAIH,EAEA,YADAf,EAAsBe,EAAiB,KAAM,GAA4B,CAACb,EAAKS,EAAiBC,IAIxGO,EAASjB,EAAK/V,EAAMqW,EAAcD,GAEtC,SAASY,EAASjB,EAAK/V,EAAMqW,EAAcD,GAAa,GAoBhDa,QAAQ5e,MAAM0d,GAItB,IAAImB,GAAa,EACbC,GAAiB,EACrB,MAAMC,EAAQ,GACd,IAAIC,EAAa,EACjB,MAAMC,EAAqB,GAC3B,IAAIC,EAAoB,KACpBC,EAAgB,EACpB,MAAMC,EAAsB,GAC5B,IAAIC,EAAqB,KACrBC,EAAiB,EACrB,MAAMC,EAAgCC,QAAQC,UAC9C,IAAIC,EAAsB,KACtBC,EAA2B,KAE/B,SAASC,EAAS1a,GACd,MAAM2a,EAAIH,GAAuBH,EACjC,OAAOra,EAAK2a,EAAEC,KAAK9Z,KAAOd,EAAGL,KAAKmB,MAAQd,GAAM2a,EAMpD,SAASE,EAAmBtQ,GAExB,IAAIuQ,EAAQhB,EAAa,EACrBiB,EAAMlB,EAAMhgB,OAChB,MAAOihB,EAAQC,EAAK,CAChB,MAAMC,EAAUF,EAAQC,IAAS,EAC3BE,EAAcC,EAAMrB,EAAMmB,IAChCC,EAAc1Q,EAAMuQ,EAAQE,EAAS,EAAMD,EAAMC,EAErD,OAAOF,EAEX,SAASK,EAASC,GAORvB,EAAMhgB,QACPggB,EAAM9f,SAASqhB,EAAKzB,GAAcyB,EAAInK,aAAe6I,EAAa,EAAIA,IACvEsB,IAAQX,IACM,MAAVW,EAAI7Q,GACJsP,EAAMzR,KAAKgT,GAGXvB,EAAMwB,OAAOR,EAAmBO,EAAI7Q,IAAK,EAAG6Q,GAEhDE,KAGR,SAASA,IACA3B,GAAeC,IAChBA,GAAiB,EACjBY,EAAsBH,EAAgBO,KAAKW,IAGnD,SAASC,EAAcJ,GACnB,MAAM7e,EAAIsd,EAAM7f,QAAQohB,GACpB7e,EAAIud,GACJD,EAAMwB,OAAO9e,EAAG,GAGxB,SAASkf,EAAQC,EAAIC,EAAaC,EAAc9hB,IACvC4W,EAAAA,EAAAA,IAAQgL,GAUTE,EAAaxT,QAAQsT,GAThBC,GACAA,EAAY5hB,SAAS2hB,EAAIA,EAAGzK,aAAenX,EAAQ,EAAIA,IACxD8hB,EAAaxT,KAAKsT,GAS1BJ,IAEJ,SAASO,EAAgBH,GACrBD,EAAQC,EAAI1B,EAAmBD,EAAoBE,GAEvD,SAAS6B,EAAiBJ,GACtBD,EAAQC,EAAIvB,EAAoBD,EAAqBE,GAEzD,SAAS2B,EAAiBC,EAAMC,EAAY,MACxC,GAAIlC,EAAmBlgB,OAAQ,CAO3B,IANA4gB,EAA2BwB,EAC3BjC,EAAoB,IAAI,IAAI5L,IAAI2L,IAChCA,EAAmBlgB,OAAS,EAIvBogB,EAAgB,EAAGA,EAAgBD,EAAkBngB,OAAQogB,IAK9DD,EAAkBC,KAEtBD,EAAoB,KACpBC,EAAgB,EAChBQ,EAA2B,KAE3BsB,EAAiBC,EAAMC,IAG/B,SAASC,EAAkBF,GAGvB,GADAD,IACI7B,EAAoBrgB,OAAQ,CAC5B,MAAMsiB,EAAU,IAAI,IAAI/N,IAAI8L,IAG5B,GAFAA,EAAoBrgB,OAAS,EAEzBsgB,EAEA,YADAA,EAAmB/R,QAAQ+T,GAQ/B,IALAhC,EAAqBgC,EAIrBhC,EAAmBiC,MAAK,CAACpb,EAAGkL,IAAMgP,EAAMla,GAAKka,EAAMhP,KAC9CkO,EAAiB,EAAGA,EAAiBD,EAAmBtgB,OAAQugB,IAKjED,EAAmBC,KAEvBD,EAAqB,KACrBC,EAAiB,GAGzB,MAAMc,EAASE,GAAkB,MAAVA,EAAI7Q,GAAa8R,IAAWjB,EAAI7Q,GACvD,SAASgR,EAAUS,GACfpC,GAAiB,EACjBD,GAAa,EAIboC,EAAiBC,GAQjBnC,EAAMuC,MAAK,CAACpb,EAAGkL,IAAMgP,EAAMla,GAAKka,EAAMhP,KAQhCkM,EAAAA,GACN,IACI,IAAK0B,EAAa,EAAGA,EAAaD,EAAMhgB,OAAQigB,IAAc,CAC1D,MAAMsB,EAAMvB,EAAMC,GACdsB,IAAsB,IAAfA,EAAInO,QAKXqL,EAAsB8C,EAAK,KAAM,KAR7C,QAaItB,EAAa,EACbD,EAAMhgB,OAAS,EACfqiB,EAAkBF,GAClBrC,GAAa,EACba,EAAsB,MAGlBX,EAAMhgB,QACNkgB,EAAmBlgB,QACnBqgB,EAAoBrgB,SACpB0hB,EAAUS,IA4BK,IAAI5N,IAanB,IAAI4B,IA+MhB,SAASsM,EAAO/D,EAAUgE,KAAUC,GAChC,GAAIjE,EAASkE,YACT,OACJ,MAAMlV,EAAQgR,EAASQ,MAAMxR,OAASmV,EAAAA,GAsBtC,IAAI7K,EAAO2K,EACX,MAAMG,EAAkBJ,EAAMK,WAAW,WAEnCC,EAAWF,GAAmBJ,EAAMniB,MAAM,GAChD,GAAIyiB,GAAYA,KAAYtV,EAAO,CAC/B,MAAMuV,EAAgB,GAAe,eAAbD,EAA4B,QAAUA,cACxD,OAAE7S,EAAF,KAAU+S,GAASxV,EAAMuV,IAAiBJ,EAAAA,GAC5CK,IACAlL,EAAO2K,EAAQlL,KAAItQ,GAAKA,EAAE+b,UAE1B/S,IACA6H,EAAO2K,EAAQlL,IAAI0L,EAAAA,KAgB3B,IAAIC,EACJ,IAAIC,EAAU3V,EAAO0V,GAAcE,EAAAA,EAAAA,IAAaZ,KAE5ChV,EAAO0V,GAAcE,EAAAA,EAAAA,KAAaC,EAAAA,EAAAA,IAASb,MAG1CW,GAAWP,IACZO,EAAU3V,EAAO0V,GAAcE,EAAAA,EAAAA,KAAaE,EAAAA,EAAAA,IAAUd,MAEtDW,GACAxE,EAA2BwE,EAAS3E,EAAU,EAAiC1G,GAEnF,MAAMyL,EAAc/V,EAAM0V,EAAe,QACzC,GAAIK,EAAa,CACb,GAAK/E,EAASgF,SAGT,GAAIhF,EAASgF,QAAQN,GACtB,YAHA1E,EAASgF,QAAU,GAKvBhF,EAASgF,QAAQN,IAAe,EAChCvE,EAA2B4E,EAAa/E,EAAU,EAAiC1G,IAG3F,SAAS2L,EAAsBC,EAAMnE,EAAYoE,GAAU,GACvD,MAAMC,EAAQrE,EAAWsE,WACnBC,EAASF,EAAMngB,IAAIigB,GACzB,QAAe1kB,IAAX8kB,EACA,OAAOA,EAEX,MAAMhH,EAAM4G,EAAKK,MACjB,IAAIC,EAAa,GAEbC,GAAa,EACjB,KAA4B7F,EAAAA,EAAAA,IAAWsF,GAAO,CAC1C,MAAMQ,EAAepH,IACjB,MAAMqH,EAAuBV,EAAsB3G,EAAKyC,GAAY,GAChE4E,IACAF,GAAa,GACb1K,EAAAA,EAAAA,IAAOyK,EAAYG,MAGtBR,GAAWpE,EAAW6E,OAAOtkB,QAC9Byf,EAAW6E,OAAOxN,QAAQsN,GAE1BR,EAAKW,SACLH,EAAYR,EAAKW,SAEjBX,EAAKU,QACLV,EAAKU,OAAOxN,QAAQsN,GAG5B,OAAKpH,GAAQmH,IAITtN,EAAAA,EAAAA,IAAQmG,GACRA,EAAIlG,SAAQzX,GAAQ6kB,EAAW7kB,GAAO,QAGtCoa,EAAAA,EAAAA,IAAOyK,EAAYlH,GAEvB8G,EAAM9b,IAAI4b,EAAMM,GACTA,IAVHJ,EAAM9b,IAAI4b,EAAM,MACT,MAcf,SAASY,EAAerhB,EAAS9D,GAC7B,SAAK8D,KAAYshB,EAAAA,EAAAA,IAAKplB,MAGtBA,EAAMA,EAAIkB,MAAM,GAAGgB,QAAQ,QAAS,KAC5BS,EAAAA,EAAAA,IAAOmB,EAAS9D,EAAI,GAAGsK,cAAgBtK,EAAIkB,MAAM,MACrDyB,EAAAA,EAAAA,IAAOmB,GAASqgB,EAAAA,EAAAA,IAAUnkB,MAC1B2C,EAAAA,EAAAA,IAAOmB,EAAS9D,IAOxB,IAAIqlB,EAA2B,KAC3BC,EAAiB,KAWrB,SAASC,EAA4BlG,GACjC,MAAMmG,EAAOH,EAGb,OAFAA,EAA2BhG,EAC3BiG,EAAkBjG,GAAYA,EAAS9V,KAAKkc,WAAc,KACnDD,EA0BX,SAASE,EAAQ5e,EAAI6e,EAAMN,EAA0BO,GAEjD,IAAKD,EACD,OAAO7e,EAEX,GAAIA,EAAG+e,GACH,OAAO/e,EAEX,MAAMgf,EAAsB,IAAInN,KAMxBmN,EAAoBC,IACpBC,IAAkB,GAEtB,MAAMC,EAAeV,EAA4BI,GAC3C7M,EAAMhS,KAAM6R,GAQlB,OAPA4M,EAA4BU,GACxBH,EAAoBC,IACpBC,GAAiB,GAKdlN,GAUX,OAPAgN,EAAoBD,IAAK,EAIzBC,EAAoBI,IAAK,EAEzBJ,EAAoBC,IAAK,EAClBD,EAYX,SAASK,EAAoB9G,GACzB,MAAQ9V,KAAM6c,EAAR,MAAmBvG,EAAnB,MAA0BtC,EAA1B,UAAiC8I,EAAjC,MAA4ChY,EAAOiY,cAAeA,GAAlE,MAAiFC,EAAjF,MAAwFC,EAAxF,KAA+FC,EAA/F,OAAqGC,EAArG,YAA6GC,EAA7G,KAA0H1c,EAA1H,WAAgI2c,EAAhI,IAA4IjB,EAA5I,aAAiJkB,GAAiBxH,EACxK,IAAIvd,EACAglB,EACJ,MAAMtB,EAAOD,EAA4BlG,GAIzC,IACI,GAAsB,EAAlBQ,EAAMkH,UAAwC,CAG9C,MAAMC,EAAaX,GAAa9I,EAChCzb,EAASmlB,GAAeP,EAAOngB,KAAKygB,EAAYA,EAAYL,EAAatY,EAAOuY,EAAY3c,EAAM0b,IAClGmB,EAAmBN,MAElB,CAED,MAAME,EAASN,EAEVthB,EAGLhD,EAASmlB,GAAeP,EAAO/lB,OAAS,EAClC+lB,EAAOrY,EASH,CAAEmY,QAAOD,QAAOE,SACpBC,EAAOrY,EAAO,OACpByY,EAAmBV,EAAU/X,MACvBmY,EACAU,EAAyBV,IAGvC,MAAOlH,GACH6H,GAAWxmB,OAAS,EACpB4e,EAAYD,EAAKD,EAAU,GAC3Bvd,EAASslB,GAAYC,IAKzB,IAAIC,EAAOxlB,EAOX,GAAIglB,IAAqC,IAAjBD,EAAwB,CAC5C,MAAM3jB,EAAO1B,OAAO0B,KAAK4jB,IACnB,UAAEC,GAAcO,EAClBpkB,EAAKvC,QACW,EAAZomB,IACIT,GAAgBpjB,EAAKqkB,KAAK9D,EAAAA,MAK1BqD,EAAmBU,EAAqBV,EAAkBR,IAE9DgB,EAAOG,GAAWH,EAAMR,IA8DpC,OAxBIjH,EAAM6H,OAMNJ,EAAOG,GAAWH,GAClBA,EAAKI,KAAOJ,EAAKI,KAAOJ,EAAKI,KAAK1Y,OAAO6Q,EAAM6H,MAAQ7H,EAAM6H,MAG7D7H,EAAM8H,aAKNL,EAAKK,WAAa9H,EAAM8H,YAMxB7lB,EAASwlB,EAEb/B,EAA4BC,GACrB1jB,EAoDX,MAAMolB,EAA4BV,IAC9B,IAAI1N,EACJ,IAAK,MAAM9Y,KAAOwmB,GACF,UAARxmB,GAA2B,UAARA,IAAmBolB,EAAAA,EAAAA,IAAKplB,OAC1C8Y,IAAQA,EAAM,KAAK9Y,GAAOwmB,EAAMxmB,IAGzC,OAAO8Y,GAEL0O,EAAuB,CAAChB,EAAOnY,KACjC,MAAMyK,EAAM,GACZ,IAAK,MAAM9Y,KAAOwmB,GACT/C,EAAAA,EAAAA,IAAgBzjB,IAAUA,EAAIkB,MAAM,KAAMmN,IAC3CyK,EAAI9Y,GAAOwmB,EAAMxmB,IAGzB,OAAO8Y,GAOX,SAAS8O,EAAsBC,EAAWC,EAAWC,GACjD,MAAQ1Z,MAAO2Z,EAAWC,SAAUC,EAA9B,UAA4CC,GAAcN,GACxDxZ,MAAO+Z,EAAWH,SAAUI,EAA9B,UAA4CC,GAAcR,EAC1DlD,EAAQuD,EAAUI,aAQxB,GAAIT,EAAUJ,MAAQI,EAAUH,WAC5B,OAAO,EAEX,KAAII,GAAaO,GAAa,GA2B1B,SAAIJ,IAAgBG,GACXA,GAAiBA,EAAaG,UAInCR,IAAcI,IAGbJ,GAGAI,GAGEK,EAAgBT,EAAWI,EAAWxD,KALhCwD,GAnCb,GAAgB,KAAZE,EAGA,OAAO,EAEX,GAAgB,GAAZA,EACA,OAAKN,EAIES,EAAgBT,EAAWI,EAAWxD,KAHhCwD,EAKZ,GAAgB,EAAZE,EAA2B,CAChC,MAAMI,EAAeZ,EAAUY,aAC/B,IAAK,IAAIrlB,EAAI,EAAGA,EAAIqlB,EAAa/nB,OAAQ0C,IAAK,CAC1C,MAAMrD,EAAM0oB,EAAarlB,GACzB,GAAI+kB,EAAUpoB,KAASgoB,EAAUhoB,KAC5BmlB,EAAeP,EAAO5kB,GACvB,OAAO,GAwBvB,OAAO,EAEX,SAASyoB,EAAgBT,EAAWI,EAAWG,GAC3C,MAAMI,EAAWnnB,OAAO0B,KAAKklB,GAC7B,GAAIO,EAAShoB,SAAWa,OAAO0B,KAAK8kB,GAAWrnB,OAC3C,OAAO,EAEX,IAAK,IAAI0C,EAAI,EAAGA,EAAIslB,EAAShoB,OAAQ0C,IAAK,CACtC,MAAMrD,EAAM2oB,EAAStlB,GACrB,GAAI+kB,EAAUpoB,KAASgoB,EAAUhoB,KAC5BmlB,EAAeoD,EAAcvoB,GAC9B,OAAO,EAGf,OAAO,EAEX,SAAS4oB,GAAgB,MAAE/I,EAAF,OAAS3L,GAAU1T,GAExC,MAAO0T,GAAUA,EAAO2U,UAAYhJ,GAC/BA,EAAQ3L,EAAO2L,OAAOrf,GAAKA,EAC5B0T,EAASA,EAAOA,OAIxB,MAAM4U,EAAcvf,GAASA,EAAKwf,aAoZlC,SAASC,EAAwBliB,EAAImiB,GAC7BA,GAAYA,EAASC,eACjB1R,EAAAA,EAAAA,IAAQ1Q,GACRmiB,EAASjV,QAAQ9E,QAAQpI,GAGzBmiB,EAASjV,QAAQ9E,KAAKpI,GAI1B8b,EAAiB9b,GAezB,SAASqiB,EAAQnpB,EAAKD,GAClB,GAAKqpB,GAKA,CACD,IAAIC,EAAWD,GAAgBC,SAM/B,MAAMC,EAAiBF,GAAgBlV,QAAUkV,GAAgBlV,OAAOmV,SACpEC,IAAmBD,IACnBA,EAAWD,GAAgBC,SAAW7nB,OAAOjC,OAAO+pB,IAGxDD,EAASrpB,GAAOD,OAhBX+E,EAmBb,SAASykB,EAAOvpB,EAAKwpB,EAAcC,GAAwB,GAGvD,MAAMpK,EAAW+J,IAAmB/D,EACpC,GAAIhG,EAAU,CAIV,MAAMgK,EAA8B,MAAnBhK,EAASnL,OACpBmL,EAASQ,MAAMO,YAAcf,EAASQ,MAAMO,WAAWiJ,SACvDhK,EAASnL,OAAOmV,SACtB,GAAIA,GAAYrpB,KAAOqpB,EAEnB,OAAOA,EAASrpB,GAEf,GAAI0B,UAAUf,OAAS,EACxB,OAAO8oB,IAAyBxK,EAAAA,EAAAA,IAAWuK,GACrCA,EAAajjB,KAAK8Y,EAAS9B,OAC3BiM,OAMJ1kB,EAkBd,MAAM4kB,EAAwB,GAE9B,SAASC,EAAM3mB,EAAQwf,EAAI1e,GAMvB,OAAO8lB,EAAQ5mB,EAAQwf,EAAI1e,GAE/B,SAAS8lB,EAAQ5mB,EAAQwf,GAAI,UAAEqH,EAAF,KAAaC,EAAb,MAAmBC,EAAnB,QAA0BC,EAA1B,UAAmCC,GAAczG,EAAAA,IAW1E,MAIMnE,EAAW+J,GACjB,IAAIle,EAuDAgf,EAtDAC,GAAe,EACfC,GAAgB,EAiDpB,IAhDI7Q,EAAAA,EAAAA,IAAMvW,IACNkI,EAAS,IAAMlI,EAAOjD,MACtBoqB,GAAeE,EAAAA,EAAAA,IAAYrnB,KAEtBya,EAAAA,EAAAA,IAAWza,IAChBkI,EAAS,IAAMlI,EACf8mB,GAAO,IAEFtS,EAAAA,EAAAA,IAAQxU,IACbonB,GAAgB,EAChBD,EAAennB,EAAOukB,MAAK+C,IAAK7M,EAAAA,EAAAA,IAAW6M,KAAMD,EAAAA,EAAAA,IAAYC,KAC7Dpf,EAAS,IAAMlI,EAAOoV,KAAIkS,IAClB/Q,EAAAA,EAAAA,IAAM+Q,GACCA,EAAEvqB,OAEJ0d,EAAAA,EAAAA,IAAW6M,GACTC,GAASD,IAEXrL,EAAAA,EAAAA,IAAWqL,GACTlL,EAAsBkL,EAAGjL,EAAU,QADzC,KAWLnU,GAHC+T,EAAAA,EAAAA,IAAWjc,GACZwf,EAES,IAAMpD,EAAsBpc,EAAQqc,EAAU,GAI9C,KACL,IAAIA,IAAYA,EAASkE,YAMzB,OAHI2G,GACAA,IAEG1K,EAA2Bxc,EAAQqc,EAAU,EAAwB,CAACmL,KAK5EtL,EAAAA,GAGTsD,GAAMsH,EAAM,CACZ,MAAMW,EAAavf,EACnBA,EAAS,IAAMqf,GAASE,KAG5B,IAAID,EAAa1jB,IACbojB,EAAUpV,EAAO0B,OAAS,KACtB4I,EAAsBtY,EAAIuY,EAAU,KAK5C,GAAIqL,GAaA,OAXAF,EAAYtL,EAAAA,GACPsD,EAGIqH,GACLrK,EAA2BgD,EAAInD,EAAU,EAAwB,CAC7DnU,IACAkf,EAAgB,QAAKvqB,EACrB2qB,IANJtf,IASGgU,EAAAA,GAEX,IAAI7H,EAAW+S,EAAgB,GAAKV,EACpC,MAAMxH,EAAM,KACR,GAAKpN,EAAOf,OAGZ,GAAIyO,EAAI,CAEJ,MAAMpL,EAAWtC,EAAOV,OACpB0V,GACAK,IACCC,EACKhT,EAASmQ,MAAK,CAAChN,EAAGlX,KAAM0W,EAAAA,EAAAA,IAAWQ,EAAGlD,EAAShU,OAC/C0W,EAAAA,EAAAA,IAAW3C,EAAUC,OAGvB6S,GACAA,IAEJ1K,EAA2BgD,EAAInD,EAAU,EAAwB,CAC7DjI,EAEAC,IAAaqS,OAAwB7pB,EAAYwX,EACjDmT,IAEJnT,EAAWD,QAKftC,EAAOV,OAMf,IAAI+B,EADJ+L,EAAInK,eAAiByK,EAGjBrM,EADU,SAAV4T,EACY7H,EAEG,SAAV6H,EACO,IAAMY,GAAsBzI,EAAK7C,GAAYA,EAAS4J,UAItD,IAAMtG,EAAgBT,GAEtC,MAAMpN,EAAS,IAAIoB,EAAAA,GAAehL,EAAQiL,GAoB1C,OAdIqM,EACIqH,EACA3H,IAGA7K,EAAWvC,EAAOV,MAGP,SAAV2V,EACLY,GAAsB7V,EAAOV,IAAI3N,KAAKqO,GAASuK,GAAYA,EAAS4J,UAGpEnU,EAAOV,MAEJ,KACHU,EAAON,OACH6K,GAAYA,EAAStK,QACrB6V,EAAAA,EAAAA,IAAOvL,EAAStK,MAAMf,QAASc,IAK3C,SAAS+V,GAAc7nB,EAAQjD,EAAO+D,GAClC,MAAMgnB,EAAaljB,KAAK2V,MAClBrS,GAAS6f,EAAAA,EAAAA,IAAS/nB,GAClBA,EAAOnC,SAAS,KACZmqB,GAAiBF,EAAY9nB,GAC7B,IAAM8nB,EAAW9nB,GACrBA,EAAOyD,KAAKqkB,EAAYA,GAC9B,IAAItI,GACAvD,EAAAA,EAAAA,IAAWlf,GACXyiB,EAAKziB,GAGLyiB,EAAKziB,EAAMikB,QACXlgB,EAAU/D,GAEd,MAAM+f,EAAMsJ,GACZ6B,GAAmBrjB,MACnB,MAAMkR,EAAM8Q,EAAQ1e,EAAQsX,EAAG/b,KAAKqkB,GAAahnB,GAOjD,OANIgc,EACAmL,GAAmBnL,GAGnBoL,KAEGpS,EAEX,SAASkS,GAAiBrF,EAAKjT,GAC3B,MAAMyY,EAAWzY,EAAKxN,MAAM,KAC5B,MAAO,KACH,IAAI4a,EAAM6F,EACV,IAAK,IAAItiB,EAAI,EAAGA,EAAI8nB,EAASxqB,QAAUmf,EAAKzc,IACxCyc,EAAMA,EAAIqL,EAAS9nB,IAEvB,OAAOyc,GAGf,SAASyK,GAASxqB,EAAO+iB,GACrB,KAAK7iB,EAAAA,EAAAA,IAASF,IAAUA,EAAM,YAC1B,OAAOA,EAGX,GADA+iB,EAAOA,GAAQ,IAAI5N,IACf4N,EAAKla,IAAI7I,GACT,OAAOA,EAGX,GADA+iB,EAAK5L,IAAInX,IACLwZ,EAAAA,EAAAA,IAAMxZ,GACNwqB,GAASxqB,EAAMA,MAAO+iB,QAErB,IAAItL,EAAAA,EAAAA,IAAQzX,GACb,IAAK,IAAIsD,EAAI,EAAGA,EAAItD,EAAMY,OAAQ0C,IAC9BknB,GAASxqB,EAAMsD,GAAIyf,QAGtB,IAAIsI,EAAAA,EAAAA,IAAMrrB,KAAU4X,EAAAA,EAAAA,IAAM5X,GAC3BA,EAAM0X,SAAS8C,IACXgQ,GAAShQ,EAAGuI,WAGf,IAAIuI,EAAAA,EAAAA,IAActrB,GACnB,IAAK,MAAMC,KAAOD,EACdwqB,GAASxqB,EAAMC,GAAM8iB,GAG7B,OAAO/iB,EAGX,SAASurB,KACL,MAAMhiB,EAAQ,CACViiB,WAAW,EACXC,WAAW,EACXC,cAAc,EACdC,cAAe,IAAI5U,KAQvB,OANA6U,IAAU,KACNriB,EAAMiiB,WAAY,KAEtBK,IAAgB,KACZtiB,EAAMmiB,cAAe,KAElBniB,EAEX,MAAMuiB,GAA0B,CAACxlB,SAAU1G,OACrCmsB,GAAqB,CACvB9nB,KAAO,iBACPqK,MAAO,CACHgC,KAAMhR,OACN0sB,OAAQC,QACRC,UAAWD,QAEXE,cAAeL,GACfM,QAASN,GACTO,aAAcP,GACdQ,iBAAkBR,GAElBS,cAAeT,GACfU,QAASV,GACTW,aAAcX,GACdY,iBAAkBZ,GAElBa,eAAgBb,GAChBc,SAAUd,GACVe,cAAef,GACfgB,kBAAmBhB,IAEvBiB,MAAMze,GAAO,MAAEkY,IACX,MAAMlH,EAAW0N,KACXzjB,EAAQgiB,KACd,IAAI0B,EACJ,MAAO,KACH,MAAM/E,EAAW1B,EAAM0G,SAAWC,GAAyB3G,EAAM0G,WAAW,GAC5E,IAAKhF,IAAaA,EAAStnB,OACvB,OAEJ,IAAIwsB,EAAQlF,EAAS,GACrB,GAAIA,EAAStnB,OAAS,EAAG,CACrB,IAAIysB,GAAW,EAEf,IAAK,MAAMC,KAAKpF,EACZ,GAAIoF,EAAE9jB,OAAS8d,GAAS,CACfviB,EAMLqoB,EAAQE,EACRD,GAAW,EAEP,OAMhB,MAAME,GAAWzU,EAAAA,EAAAA,IAAMxK,IACjB,KAAEgC,GAASid,EASjB,GAAIhkB,EAAMkiB,UACN,OAAO+B,GAAiBJ,GAI5B,MAAMK,EAAaC,GAAkBN,GACrC,IAAKK,EACD,OAAOD,GAAiBJ,GAE5B,MAAMO,EAAaC,GAAuBH,EAAYF,EAAUhkB,EAAO+V,GACvEuO,GAAmBJ,EAAYE,GAC/B,MAAMG,EAAWxO,EAASwJ,QACpBiF,EAAgBD,GAAYJ,GAAkBI,GACpD,IAAIE,GAAuB,EAC3B,MAAM,iBAAEC,GAAqBR,EAAWjkB,KACxC,GAAIykB,EAAkB,CAClB,MAAMhuB,EAAMguB,SACcnuB,IAAtBmtB,EACAA,EAAoBhtB,EAEfA,IAAQgtB,IACbA,EAAoBhtB,EACpB+tB,GAAuB,GAI/B,GAAID,GACAA,EAAcvkB,OAAS8d,MACrB4G,GAAgBT,EAAYM,IAAkBC,GAAuB,CACvE,MAAMG,EAAeP,GAAuBG,EAAeR,EAAUhkB,EAAO+V,GAI5E,GAFAuO,GAAmBE,EAAeI,GAErB,WAAT7d,EAOA,OANA/G,EAAMkiB,WAAY,EAElB0C,EAAaC,WAAa,KACtB7kB,EAAMkiB,WAAY,EAClBnM,EAAS+O,UAENb,GAAiBJ,GAEV,WAAT9c,GAAqBmd,EAAWjkB,OAAS8d,KAC9C6G,EAAaG,WAAa,CAAC7tB,EAAI8tB,EAAaC,KACxC,MAAMC,EAAqBC,GAAuBnlB,EAAOwkB,GACzDU,EAAmBnvB,OAAOyuB,EAAc9tB,MAAQ8tB,EAEhDttB,EAAGkuB,SAAW,KACVJ,IACA9tB,EAAGkuB,cAAW7uB,SACP6tB,EAAWa,cAEtBb,EAAWa,aAAeA,IAItC,OAAOpB,KAMbwB,GAAiB7C,GACvB,SAAS2C,GAAuBnlB,EAAOuW,GACnC,MAAM,cAAE6L,GAAkBpiB,EAC1B,IAAIklB,EAAqB9C,EAAcpnB,IAAIub,EAAMtW,MAKjD,OAJKilB,IACDA,EAAqBhtB,OAAOjC,OAAO,MACnCmsB,EAAc/iB,IAAIkX,EAAMtW,KAAMilB,IAE3BA,EAIX,SAASb,GAAuB9N,EAAOxR,EAAO/E,EAAO+V,GACjD,MAAM,OAAE0M,EAAF,KAAU1b,EAAV,UAAgB4b,GAAY,EAA5B,cAAmCC,EAAnC,QAAkDC,EAAlD,aAA2DC,EAA3D,iBAAyEC,EAAzE,cAA2FC,EAA3F,QAA0GC,EAA1G,aAAmHC,EAAnH,iBAAiIC,EAAjI,eAAmJC,EAAnJ,SAAmKC,EAAnK,cAA6KC,EAA7K,kBAA4LC,GAAsBxe,EAClNrO,EAAMX,OAAOwgB,EAAM7f,KACnBwuB,EAAqBC,GAAuBnlB,EAAOuW,GACnD+O,EAAW,CAACC,EAAMlW,KACpBkW,GACIrP,EAA2BqP,EAAMxP,EAAU,EAAyB1G,IAEtEmW,EAAgB,CAACD,EAAMlW,KACzB,MAAMoD,EAAOpD,EAAK,GAClBiW,EAASC,EAAMlW,IACXnB,EAAAA,EAAAA,IAAQqX,GACJA,EAAKE,OAAMF,GAAQA,EAAKluB,QAAU,KAClCob,IAEC8S,EAAKluB,QAAU,GACpBob,KAGFiT,EAAQ,CACV3e,OACA4b,YACAgD,YAAYzuB,GACR,IAAIquB,EAAO3C,EACX,IAAK5iB,EAAMiiB,UAAW,CAClB,IAAIQ,EAIA,OAHA8C,EAAOnC,GAAkBR,EAO7B1rB,EAAGkuB,UACHluB,EAAGkuB,UAAS,GAGhB,MAAMQ,EAAeV,EAAmBxuB,GACpCkvB,GACAjB,GAAgBpO,EAAOqP,IACvBA,EAAa1uB,GAAGkuB,UAEhBQ,EAAa1uB,GAAGkuB,WAEpBE,EAASC,EAAM,CAACruB,KAEpB2uB,MAAM3uB,GACF,IAAIquB,EAAO1C,EACPiD,EAAYhD,EACZiD,EAAahD,EACjB,IAAK/iB,EAAMiiB,UAAW,CAClB,IAAIQ,EAMA,OALA8C,EAAOlC,GAAYR,EACnBiD,EAAYxC,GAAiBR,EAC7BiD,EAAaxC,GAAqBR,EAM1C,IAAIiD,GAAS,EACb,MAAMvT,EAAQvb,EAAG+uB,SAAYC,IACrBF,IAEJA,GAAS,EAELV,EADAY,EACSH,EAGAD,EAHY,CAAC5uB,IAKtBwuB,EAAMT,cACNS,EAAMT,eAEV/tB,EAAG+uB,cAAW1vB,IAEdgvB,EACAC,EAAcD,EAAM,CAACruB,EAAIub,IAGzBA,KAGR0T,MAAMjvB,EAAIoqB,GACN,MAAM5qB,EAAMX,OAAOwgB,EAAM7f,KAIzB,GAHIQ,EAAG+uB,UACH/uB,EAAG+uB,UAAS,GAEZjmB,EAAMmiB,aACN,OAAOb,IAEXgE,EAAStC,EAAe,CAAC9rB,IACzB,IAAI8uB,GAAS,EACb,MAAMvT,EAAQvb,EAAGkuB,SAAYc,IACrBF,IAEJA,GAAS,EACT1E,IAEIgE,EADAY,EACS/C,EAGAD,EAHkB,CAAChsB,IAKhCA,EAAGkuB,cAAW7uB,EACV2uB,EAAmBxuB,KAAS6f,UACrB2O,EAAmBxuB,KAGlCwuB,EAAmBxuB,GAAO6f,EACtB0M,EACAuC,EAAcvC,EAAS,CAAC/rB,EAAIub,IAG5BA,KAGR2T,MAAM7P,GACF,OAAO8N,GAAuB9N,EAAOxR,EAAO/E,EAAO+V,KAG3D,OAAO2P,EAMX,SAASzB,GAAiB1N,GACtB,GAAI8P,GAAY9P,GAGZ,OAFAA,EAAQ4H,GAAW5H,GACnBA,EAAMoI,SAAW,KACVpI,EAGf,SAAS4N,GAAkB5N,GACvB,OAAO8P,GAAY9P,GACbA,EAAMoI,SACFpI,EAAMoI,SAAS,QACfpoB,EACJggB,EAEV,SAAS+N,GAAmB/N,EAAOmP,GACT,EAAlBnP,EAAMkH,WAAiClH,EAAMsI,UAC7CyF,GAAmB/N,EAAMsI,UAAUU,QAASmG,GAErB,IAAlBnP,EAAMkH,WACXlH,EAAM+P,UAAUjI,WAAaqH,EAAMU,MAAM7P,EAAM+P,WAC/C/P,EAAMgQ,WAAWlI,WAAaqH,EAAMU,MAAM7P,EAAMgQ,aAGhDhQ,EAAM8H,WAAaqH,EAG3B,SAAS9B,GAAyBjF,EAAU6H,GAAc,EAAOC,GAC7D,IAAIC,EAAM,GACNC,EAAqB,EACzB,IAAK,IAAI5sB,EAAI,EAAGA,EAAI4kB,EAAStnB,OAAQ0C,IAAK,CACtC,IAAI8pB,EAAQlF,EAAS5kB,GAErB,MAAMrD,EAAmB,MAAb+vB,EACN5C,EAAMntB,IACNX,OAAO0wB,GAAa1wB,OAAoB,MAAb8tB,EAAMntB,IAAcmtB,EAAMntB,IAAMqD,GAE7D8pB,EAAM5jB,OAAS2mB,IACO,IAAlB/C,EAAM7E,WACN2H,IACJD,EAAMA,EAAIhhB,OAAOke,GAAyBC,EAAMlF,SAAU6H,EAAa9vB,MAGlE8vB,GAAe3C,EAAM5jB,OAAS8d,KACnC2I,EAAI9gB,KAAY,MAAPlP,EAAcynB,GAAW0F,EAAO,CAAEntB,QAASmtB,GAO5D,GAAI8C,EAAqB,EACrB,IAAK,IAAI5sB,EAAI,EAAGA,EAAI2sB,EAAIrvB,OAAQ0C,IAC5B2sB,EAAI3sB,GAAGilB,WAAa,EAG5B,OAAO0H,EAQX,MAAMG,GAAkB9sB,KAAQA,EAAEkG,KAAK6mB,cA0IvC,MAAMT,GAAe9P,GAAUA,EAAMtW,KAAK8mB,cAQhBC,OACAA,OA2M1B,SAASC,GAAQC,EAASxsB,GACtB,OAAIwT,EAAAA,EAAAA,IAAQgZ,GACDA,EAAQjJ,MAAM9F,GAAM8O,GAAQ9O,EAAGzd,MAEjC+mB,EAAAA,EAAAA,IAASyF,GACPA,EAAQtrB,MAAM,KAAKrE,SAASmD,KAE9BwsB,EAAQhuB,MACNguB,EAAQhuB,KAAKwB,GAK5B,SAASysB,GAAY5B,EAAM9rB,GACvB2tB,GAAsB7B,EAAM,IAAqB9rB,GAErD,SAAS4tB,GAAc9B,EAAM9rB,GACzB2tB,GAAsB7B,EAAM,KAAwB9rB,GAExD,SAAS2tB,GAAsB7B,EAAMtlB,EAAMxG,EAASqmB,IAIhD,MAAMwH,EAAc/B,EAAKgC,QACpBhC,EAAKgC,MAAQ,KAEV,IAAIhiB,EAAU9L,EACd,MAAO8L,EAAS,CACZ,GAAIA,EAAQiiB,cACR,OAEJjiB,EAAUA,EAAQqF,OAEtB,OAAO2a,MAQf,GANAkC,GAAWxnB,EAAMqnB,EAAa7tB,GAM1BA,EAAQ,CACR,IAAI8L,EAAU9L,EAAOmR,OACrB,MAAOrF,GAAWA,EAAQqF,OAClByb,GAAY9gB,EAAQqF,OAAO2L,QAC3BmR,GAAsBJ,EAAarnB,EAAMxG,EAAQ8L,GAErDA,EAAUA,EAAQqF,QAI9B,SAAS8c,GAAsBnC,EAAMtlB,EAAMxG,EAAQkuB,GAG/C,MAAMC,EAAWH,GAAWxnB,EAAMslB,EAAMoC,GAAe,GACvDE,IAAY,MACRvG,EAAAA,EAAAA,IAAOqG,EAAc1nB,GAAO2nB,KAC7BnuB,GAEP,SAASquB,GAAevR,GACpB,IAAIkH,EAAYlH,EAAMkH,UACN,IAAZA,IACAA,GAAa,KAED,IAAZA,IACAA,GAAa,KAEjBlH,EAAMkH,UAAYA,EAEtB,SAASsK,GAAcxR,GACnB,OAAyB,IAAlBA,EAAMkH,UAAiClH,EAAM+P,UAAY/P,EAGpE,SAASkR,GAAWxnB,EAAMslB,EAAM9rB,EAASqmB,GAAiBkI,GAAU,GAChE,GAAIvuB,EAAQ,CACR,MAAMisB,EAAQjsB,EAAOwG,KAAUxG,EAAOwG,GAAQ,IAIxCqnB,EAAc/B,EAAK0C,QACpB1C,EAAK0C,MAAQ,IAAI5Y,KACd,GAAI5V,EAAOwgB,YACP,QAIJ7M,EAAAA,EAAAA,MAIAuU,GAAmBloB,GACnB,MAAM+V,EAAM0G,EAA2BqP,EAAM9rB,EAAQwG,EAAMoP,GAG3D,OAFAuS,MACAvU,EAAAA,EAAAA,MACOmC,IAQf,OANIwY,EACAtC,EAAMwC,QAAQZ,GAGd5B,EAAM9f,KAAK0hB,GAERA,GAYf,MAAMa,GAAcC,GAAc,CAAC7C,EAAM9rB,EAASqmB,OAEhDsB,IAAuC,OAAdgH,IACvBX,GAAWW,EAAW7C,EAAM9rB,GAC1B4uB,GAAgBF,GAAW,MAC3B9F,GAAY8F,GAAW,KACvBG,GAAiBH,GAAW,MAC5BI,GAAYJ,GAAW,KACvB7F,GAAkB6F,GAAW,OAC7BN,GAAcM,GAAW,MACzBK,GAAmBL,GAAW,MAC9BM,GAAoBN,GAAW,OAC/BO,GAAkBP,GAAW,OACnC,SAASQ,GAAgBpD,EAAM9rB,EAASqmB,IACpC2H,GAAW,KAA2BlC,EAAM9rB,GAsDhD,SAASmvB,GAAoBrS,EAAOgI,EAAWxI,EAAUrb,GACrD,MAAMmuB,EAAWtS,EAAM6H,KACjB0K,EAAcvK,GAAaA,EAAUH,KAC3C,IAAK,IAAIrkB,EAAI,EAAGA,EAAI8uB,EAASxxB,OAAQ0C,IAAK,CACtC,MAAMgvB,EAAUF,EAAS9uB,GACrB+uB,IACAC,EAAQhb,SAAW+a,EAAY/uB,GAAGtD,OAEtC,IAAI8uB,EAAOwD,EAAQC,IAAItuB,GACnB6qB,KAGAnY,EAAAA,EAAAA,MACA8I,EAA2BqP,EAAMxP,EAAU,EAAwB,CAC/DQ,EAAMrf,GACN6xB,EACAxS,EACAgI,KAEJlR,EAAAA,EAAAA,QAKZ,MAAM4b,GAAa,aAKnB,SAASC,GAAiBxuB,EAAMyuB,GAC5B,OAAOC,GAAaH,GAAYvuB,GAAM,EAAMyuB,IAAuBzuB,EAEvE,MAAM2uB,GAAyB7mB,SAoB/B,SAAS4mB,GAAanpB,EAAMvF,EAAM4uB,GAAc,EAAMH,GAAqB,GACvE,MAAMpT,EAAWgG,GAA4B+D,GAC7C,GAAI/J,EAAU,CACV,MAAM+G,EAAY/G,EAAS9V,KAE3B,GAAIA,IAASgpB,GAAY,CACrB,MAAMM,EAAWC,GAAiB1M,GAAW,GAC7C,GAAIyM,IACCA,IAAa7uB,GACV6uB,KAAa3O,EAAAA,EAAAA,IAASlgB,IACtB6uB,KAAaE,EAAAA,EAAAA,KAAW7O,EAAAA,EAAAA,IAASlgB,KACrC,OAAOoiB,EAGf,MAAMtN,EAGNuI,GAAQhC,EAAS9V,IAAS6c,EAAU7c,GAAOvF,IAEvCqd,GAAQhC,EAASe,WAAW7W,GAAOvF,GACvC,OAAK8U,GAAO2Z,EAEDrM,EASJtN,GAOf,SAASuI,GAAQ2R,EAAUhvB,GACvB,OAAQgvB,IACHA,EAAShvB,IACNgvB,GAAS9O,EAAAA,EAAAA,IAASlgB,KAClBgvB,GAASD,EAAAA,EAAAA,KAAW7O,EAAAA,EAAAA,IAASlgB,MAMzC,SAASivB,GAAWjwB,EAAQkwB,EAAYzO,EAAO7jB,GAC3C,IAAIovB,EACJ,MAAMrL,EAAUF,GAASA,EAAM7jB,GAC/B,IAAI4W,EAAAA,EAAAA,IAAQxU,KAAW+nB,EAAAA,EAAAA,IAAS/nB,GAAS,CACrCgtB,EAAM,IAAIrwB,MAAMqD,EAAOrC,QACvB,IAAK,IAAI0C,EAAI,EAAGqR,EAAI1R,EAAOrC,OAAQ0C,EAAIqR,EAAGrR,IACtC2sB,EAAI3sB,GAAK6vB,EAAWlwB,EAAOK,GAAIA,OAAGxD,EAAW8kB,GAAUA,EAAOthB,SAGjE,GAAsB,kBAAXL,EAAqB,CAC5B8B,EAGLkrB,EAAM,IAAIrwB,MAAMqD,GAChB,IAAK,IAAIK,EAAI,EAAGA,EAAIL,EAAQK,IACxB2sB,EAAI3sB,GAAK6vB,EAAW7vB,EAAI,EAAGA,OAAGxD,EAAW8kB,GAAUA,EAAOthB,SAG7D,IAAIpD,EAAAA,EAAAA,IAAS+C,GACd,GAAIA,EAAO8I,OAAO2F,UACdue,EAAMrwB,MAAMwzB,KAAKnwB,GAAQ,CAACowB,EAAM/vB,IAAM6vB,EAAWE,EAAM/vB,OAAGxD,EAAW8kB,GAAUA,EAAOthB,UAErF,CACD,MAAMH,EAAO1B,OAAO0B,KAAKF,GACzBgtB,EAAM,IAAIrwB,MAAMuD,EAAKvC,QACrB,IAAK,IAAI0C,EAAI,EAAGqR,EAAIxR,EAAKvC,OAAQ0C,EAAIqR,EAAGrR,IAAK,CACzC,MAAMrD,EAAMkD,EAAKG,GACjB2sB,EAAI3sB,GAAK6vB,EAAWlwB,EAAOhD,GAAMA,EAAKqD,EAAGshB,GAAUA,EAAOthB,UAKlE2sB,EAAM,GAKV,OAHIvL,IACAA,EAAM7jB,GAASovB,GAEZA,EAqGX,MAAMqD,GAAqBhwB,GAClBA,EAEDiwB,GAAoBjwB,GACbkwB,GAAelwB,IAAMA,EAAEka,MAC3B8V,GAAkBhwB,EAAE6Q,QAHhB,KAKTsf,IAGQpZ,EAAAA,EAAAA,IAAO5Y,OAAOjC,OAAO,MAAO,CACtC2T,EAAG7P,GAAKA,EACRowB,IAAKpwB,GAAKA,EAAEwc,MAAMrf,GAClBkzB,MAAOrwB,GAAKA,EAAE4G,KACd0pB,OAAQtwB,GAA2EA,EAAEgL,MACrFulB,OAAQvwB,GAA2EA,EAAEmjB,MACrFqN,OAAQxwB,GAA2EA,EAAEkjB,MACrFuN,MAAOzwB,GAA0EA,EAAE0wB,KACnFC,QAAS3wB,GAAKgwB,GAAkBhwB,EAAE6Q,QAClC+f,MAAO5wB,GAAKgwB,GAAkBhwB,EAAEikB,MAChC4M,MAAO7wB,GAAKA,EAAEojB,KACd0N,SAAU9wB,GAA4B+wB,GAAqB/wB,GAC3DgxB,aAAchxB,GAAKA,EAAEF,IAAME,EAAEF,EAAI,IAAM8e,EAAS5e,EAAE+qB,SAClDkG,UAAWjxB,GAAKA,EAAEqI,IAAMrI,EAAEqI,EAAI8V,EAAS/a,KAAKpD,EAAEka,QAC9CgX,OAAQlxB,GAA4BwnB,GAAcpkB,KAAKpD,KAGrDmxB,GAA8B,CAChClwB,KAAMmwB,EAAGpV,GAAYrf,GACjB,MAAM,IAAE2lB,EAAF,WAAOiB,EAAP,KAAmB3c,EAAnB,MAAyBoE,EAAzB,YAAgCqmB,EAAhC,KAA6CnrB,EAA7C,WAAmD6W,GAAef,EAqBxE,IAAIsV,EACJ,GAAe,MAAX30B,EAAI,GAAY,CAChB,MAAM0L,EAAIgpB,EAAY10B,GACtB,QAAUH,IAAN6L,EACA,OAAQA,GACJ,KAAK,EACD,OAAOkb,EAAW5mB,GACtB,KAAK,EACD,OAAOiK,EAAKjK,GAChB,KAAK,EACD,OAAO2lB,EAAI3lB,GACf,KAAK,EACD,OAAOqO,EAAMrO,OAIpB,IAAI4mB,IAAepD,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOikB,EAAY5mB,GAEpD,OADA00B,EAAY10B,GAAO,EACZ4mB,EAAW5mB,GAEjB,GAAIiK,IAASuZ,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOsH,EAAMjK,GAExC,OADA00B,EAAY10B,GAAO,EACZiK,EAAKjK,GAEX,IAGJ20B,EAAkBtV,EAASiH,aAAa,MACrC3jB,EAAAA,EAAAA,IAAOgyB,EAAiB30B,GAExB,OADA00B,EAAY10B,GAAO,EACZqO,EAAMrO,GAEZ,GAAI2lB,IAAQnC,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOgjB,EAAK3lB,GAEtC,OADA00B,EAAY10B,GAAO,EACZ2lB,EAAI3lB,GAEkB40B,KAC7BF,EAAY10B,GAAO,IAG3B,MAAM60B,EAAerB,GAAoBxzB,GACzC,IAAI80B,EAAWC,EAEf,OAAIF,GACY,WAAR70B,IACA4W,EAAAA,EAAAA,GAAMyI,EAAU,MAAiBrf,GAG9B60B,EAAaxV,KAIvByV,EAAYvrB,EAAKyrB,gBACbF,EAAYA,EAAU90B,IAChB80B,EAEFnP,IAAQnC,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOgjB,EAAK3lB,IAEtC00B,EAAY10B,GAAO,EACZ2lB,EAAI3lB,KAIb+0B,EAAmB3U,EAAWC,OAAO0U,kBACnCpyB,EAAAA,EAAAA,IAAOoyB,EAAkB/0B,GAEd+0B,EAAiB/0B,QAL3B,IAwBT2I,KAAM8rB,EAAGpV,GAAYrf,EAAKD,GACtB,MAAM,KAAEkK,EAAF,WAAQ2c,EAAR,IAAoBjB,GAAQtG,EAClC,OAAIuH,IAAepD,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOikB,EAAY5mB,IAC/C4mB,EAAW5mB,GAAOD,GACX,GAEFkK,IAASuZ,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOsH,EAAMjK,IACxCiK,EAAKjK,GAAOD,GACL,KAEF4C,EAAAA,EAAAA,IAAO0c,EAAShR,MAAOrO,MAKjB,MAAXA,EAAI,MAAcA,EAAIkB,MAAM,KAAMme,MAe9BsG,EAAI3lB,GAAOD,GAGZ,KAEX6I,KAAM6rB,GAAG,KAAExqB,EAAF,WAAQ2c,EAAR,YAAoB8N,EAApB,IAAiC/O,EAAjC,WAAsCvF,EAAtC,aAAkDkG,IAAkBtmB,GACzE,IAAI20B,EACJ,QAAUD,EAAY10B,IACjBiK,IAASuZ,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOsH,EAAMjK,IACnC4mB,IAAepD,EAAAA,KAAa7gB,EAAAA,EAAAA,IAAOikB,EAAY5mB,KAC9C20B,EAAkBrO,EAAa,MAAO3jB,EAAAA,EAAAA,IAAOgyB,EAAiB30B,KAChE2C,EAAAA,EAAAA,IAAOgjB,EAAK3lB,KACZ2C,EAAAA,EAAAA,IAAO6wB,GAAqBxzB,KAC5B2C,EAAAA,EAAAA,IAAOyd,EAAWC,OAAO0U,iBAAkB/0B,IAEnDR,eAAeuD,EAAQ/C,EAAK0F,GAQxB,OAPsB,MAAlBA,EAAWpB,IAEXvB,EAAO0xB,EAAEC,YAAY10B,GAAO,GAEvB2C,EAAAA,EAAAA,IAAO+C,EAAY,UACxBkC,KAAKe,IAAI5F,EAAQ/C,EAAK0F,EAAW3F,MAAO,MAErCyG,QAAQhH,eAAeuD,EAAQ/C,EAAK0F,KAgGnD,IAAIkvB,IAAoB,EACxB,SAASK,GAAa5V,GAClB,MAAMvb,EAAUswB,GAAqB/U,GAC/ByL,EAAazL,EAAS9B,MACtBoI,EAAMtG,EAASsG,IAErBiP,IAAoB,EAGhB9wB,EAAQoxB,cACRtG,GAAS9qB,EAAQoxB,aAAc7V,EAAU,MAE7C,MAEApV,KAAMkrB,EAAatd,SAAUud,EAFvB,QAEwCC,EAAS1L,MAAO2L,EAAcnM,QAASoM,EAAgBhM,OAAQiM,EAFvG,QAINC,EAJM,YAIGC,EAJH,QAIgBC,EAJhB,aAIyBC,EAJzB,QAIuCC,EAJvC,UAIgDC,EAJhD,YAI2DC,EAJ3D,cAIwEC,EAJxE,cAIuFC,EAJvF,UAIsGC,EAJtG,UAIiHC,EAJjH,OAI4HzP,EAJ5H,cAIoI0P,EAJpI,gBAImJC,EAJnJ,cAIoKC,EAJpK,eAImLC,EAJnL,OAMNC,EANM,aAME3P,EANF,WAQN4P,EARM,WAQMC,EARN,QAQkBC,GAAY7yB,EAC9B8yB,EAAgG,KAmBtG,GAHIpB,GACAqB,GAAkBrB,EAAe7P,EAAKiR,EAA0BvX,EAASe,WAAWC,OAAOyW,mBAE3FzB,EACA,IAAK,MAAMr1B,KAAOq1B,EAAS,CACvB,MAAM0B,EAAgB1B,EAAQr1B,IAC1Bif,EAAAA,EAAAA,IAAW8X,KAaPpR,EAAI3lB,GAAO+2B,EAActwB,KAAKqkB,IAY9C,GAAIqK,EAAa,CACRrwB,EAIL,MAAMmF,EAAOkrB,EAAY5uB,KAAKukB,EAAYA,GACrChmB,GAKA7E,EAAAA,EAAAA,IAASgK,KAIVoV,EAASpV,MAAOwP,EAAAA,EAAAA,IAASxP,IAmBjC,GADA2qB,IAAoB,EAChBQ,EACA,IAAK,MAAMp1B,KAAOo1B,EAAiB,CAC/B,MAAM4B,EAAM5B,EAAgBp1B,GACtBsE,GAAM2a,EAAAA,EAAAA,IAAW+X,GACjBA,EAAIvwB,KAAKqkB,EAAYA,IACrB7L,EAAAA,EAAAA,IAAW+X,EAAI1yB,KACX0yB,EAAI1yB,IAAImC,KAAKqkB,EAAYA,GACzB5L,EAAAA,GACLpa,EAGL,MAAM6D,IAAOsW,EAAAA,EAAAA,IAAW+X,KAAQ/X,EAAAA,EAAAA,IAAW+X,EAAIruB,KACzCquB,EAAIruB,IAAIlC,KAAKqkB,GAKT5L,EAAAA,GACJmO,EAAIxV,GAAS,CACfvT,MACAqE,QAEJnH,OAAOhC,eAAemmB,EAAK3lB,EAAK,CAC5B0D,YAAY,EACZ5D,cAAc,EACdwE,IAAK,IAAM+oB,EAAEttB,MACb4I,IAAK4R,GAAM8S,EAAEttB,MAAQwa,IAOjC,GAAI+a,EACA,IAAK,MAAMt1B,KAAOs1B,EACd2B,GAAc3B,EAAat1B,GAAM2lB,EAAKmF,EAAY9qB,GAG1D,GAAIu1B,EAAgB,CAChB,MAAMlM,GAAWpK,EAAAA,EAAAA,IAAWsW,GACtBA,EAAehvB,KAAKukB,GACpByK,EACN/uB,QAAQ5D,QAAQymB,GAAU5R,SAAQzX,IAC9BmpB,EAAQnpB,EAAKqpB,EAASrpB,OAM9B,SAASk3B,EAAsBC,EAAUtI,IACjCrX,EAAAA,EAAAA,IAAQqX,GACRA,EAAKpX,SAAQ2f,GAASD,EAASC,EAAM3wB,KAAKqkB,MAErC+D,GACLsI,EAAStI,EAAKpoB,KAAKqkB,IAe3B,GAvBI2K,GACA7G,GAAS6G,EAASpW,EAAU,KAUhC6X,EAAsBvF,GAAe+D,GACrCwB,EAAsBvL,GAAWgK,GACjCuB,EAAsBtF,GAAgBgE,GACtCsB,EAAsBrF,GAAWgE,GACjCqB,EAAsBzG,GAAaqF,GACnCoB,EAAsBvG,GAAeoF,GACrCmB,EAAsBjF,GAAiBqE,GACvCY,EAAsBlF,GAAiBoE,GACvCc,EAAsBnF,GAAmBsE,GACzCa,EAAsBtL,GAAiBqK,GACvCiB,EAAsB/F,GAAagF,GACnCe,EAAsBpF,GAAkByE,IACpC/e,EAAAA,EAAAA,IAAQgf,GACR,GAAIA,EAAO71B,OAAQ,CACf,MAAM02B,EAAUhY,EAASgY,UAAYhY,EAASgY,QAAU,IACxDb,EAAO/e,SAAQzX,IACXwB,OAAOhC,eAAe63B,EAASr3B,EAAK,CAChCsE,IAAK,IAAMwmB,EAAW9qB,GACtB2I,IAAKiH,GAAQkb,EAAW9qB,GAAO4P,YAIjCyP,EAASgY,UACfhY,EAASgY,QAAU,IAKvB3Q,GAAUrH,EAASqH,SAAWxH,EAAAA,KAC9BG,EAASqH,OAASA,GAEF,MAAhBG,IACAxH,EAASwH,aAAeA,GAGxB4P,IACApX,EAASoX,WAAaA,GACtBC,IACArX,EAASqX,WAAaA,GAE9B,SAASG,GAAkBrB,EAAe7P,EAAKiR,EAA2B1X,EAAAA,GAAMoY,GAAY,IACpF9f,EAAAA,EAAAA,IAAQge,KACRA,EAAgB+B,GAAgB/B,IAEpC,IAAK,MAAMx1B,KAAOw1B,EAAe,CAC7B,MAAMwB,EAAMxB,EAAcx1B,GAC1B,IAAIkxB,EAGIA,GAFJjxB,EAAAA,EAAAA,IAAS+2B,GACL,YAAaA,EACFzN,EAAOyN,EAAI7D,MAAQnzB,EAAKg3B,EAAI/J,SAAS,GAGrC1D,EAAOyN,EAAI7D,MAAQnzB,GAIvBupB,EAAOyN,IAElBzd,EAAAA,EAAAA,IAAM2X,IAEFoG,EACA91B,OAAOhC,eAAemmB,EAAK3lB,EAAK,CAC5B0D,YAAY,EACZ5D,cAAc,EACdwE,IAAK,IAAM4sB,EAASnxB,MACpB4I,IAAK4R,GAAM2W,EAASnxB,MAAQwa,IAepCoL,EAAI3lB,GAAOkxB,GAOvB,SAAStC,GAASC,EAAMxP,EAAU9V,GAC9BiW,GAA2BhI,EAAAA,EAAAA,IAAQqX,GAC7BA,EAAKzW,KAAIof,GAAKA,EAAE/wB,KAAK4Y,EAAS9B,SAC9BsR,EAAKpoB,KAAK4Y,EAAS9B,OAAQ8B,EAAU9V,GAE/C,SAAS0tB,GAActZ,EAAKgI,EAAKmF,EAAY9qB,GACzC,MAAMkL,EAASlL,EAAIa,SAAS,KACtBmqB,GAAiBF,EAAY9qB,GAC7B,IAAM8qB,EAAW9qB,GACvB,IAAI+qB,EAAAA,EAAAA,IAASpN,GAAM,CACf,MAAMqG,EAAU2B,EAAIhI,IAChBsB,EAAAA,EAAAA,IAAW+E,IACX2F,EAAMze,EAAQ8Y,QAMjB,IAAI/E,EAAAA,EAAAA,IAAWtB,GAChBgM,EAAMze,EAAQyS,EAAIlX,KAAKqkB,SAEtB,IAAI7qB,EAAAA,EAAAA,IAAS0d,GACd,IAAInG,EAAAA,EAAAA,IAAQmG,GACRA,EAAIlG,SAAQyG,GAAK+Y,GAAc/Y,EAAGyH,EAAKmF,EAAY9qB,SAElD,CACD,MAAMgkB,GAAU/E,EAAAA,EAAAA,IAAWtB,EAAIqG,SACzBrG,EAAIqG,QAAQvd,KAAKqkB,GACjBnF,EAAIhI,EAAIqG,UACV/E,EAAAA,EAAAA,IAAW+E,IACX2F,EAAMze,EAAQ8Y,EAASrG,QAOzB7Y,EASd,SAASsvB,GAAqB/U,GAC1B,MAAMoY,EAAOpY,EAAS9V,MAChB,OAAE0b,EAAQC,QAASwS,GAAmBD,GACpCxS,OAAQ0S,EAAcC,aAAcnT,EAAOpE,QAAQ,sBAAEwX,IAA4BxY,EAASe,WAC5FuE,EAASF,EAAMngB,IAAImzB,GACzB,IAAIK,EAiBJ,OAhBInT,EACAmT,EAAWnT,EAELgT,EAAah3B,QAAWskB,GAAWyS,GAMzCI,EAAW,GACPH,EAAah3B,QACbg3B,EAAalgB,SAAQsgB,GAAKC,GAAaF,EAAUC,EAAGF,GAAuB,KAE/EG,GAAaF,EAAUL,EAAMI,IARzBC,EAAWL,EAUnBhT,EAAM9b,IAAI8uB,EAAMK,GACTA,EAEX,SAASE,GAAaC,EAAI9E,EAAM+E,EAAQ1T,GAAU,GAC9C,MAAM,OAAES,EAAQC,QAASwS,GAAmBvE,EACxCuE,GACAM,GAAaC,EAAIP,EAAgBQ,GAAQ,GAEzCjT,GACAA,EAAOxN,SAASsgB,GAAMC,GAAaC,EAAIF,EAAGG,GAAQ,KAEtD,IAAK,MAAMl4B,KAAOmzB,EACd,GAAI3O,GAAmB,WAARxkB,OAKV,CACD,MAAMm4B,EAAQC,GAA0Bp4B,IAASk4B,GAAUA,EAAOl4B,GAClEi4B,EAAGj4B,GAAOm4B,EAAQA,EAAMF,EAAGj4B,GAAMmzB,EAAKnzB,IAAQmzB,EAAKnzB,GAG3D,OAAOi4B,EAEX,MAAMG,GAA4B,CAC9BnuB,KAAMouB,GACNhqB,MAAOiqB,GACP1T,MAAO0T,GAEPjD,QAASiD,GACTzgB,SAAUygB,GAEVpD,aAAcqD,GACd9C,QAAS8C,GACT7C,YAAa6C,GACb5C,QAAS4C,GACT3C,aAAc2C,GACd1C,QAAS0C,GACTvC,cAAeuC,GACftC,cAAesC,GACfrC,UAAWqC,GACXpC,UAAWoC,GACXzC,UAAWyC,GACXxC,YAAawC,GACbjC,cAAeiC,GACfhC,eAAgBgC,GAEhB9B,WAAY6B,GACZ5B,WAAY4B,GAEZ3O,MAAO6O,GAEPrP,QAASkP,GACT9O,OAAQkP,IAEZ,SAASJ,GAAYJ,EAAI9E,GACrB,OAAKA,EAGA8E,EAGE,WACH,OAAQ7d,EAAAA,EAAAA,KAAQ6E,EAAAA,EAAAA,IAAWgZ,GAAMA,EAAG1xB,KAAKqB,KAAMA,MAAQqwB,GAAIhZ,EAAAA,EAAAA,IAAWkU,GAAQA,EAAK5sB,KAAKqB,KAAMA,MAAQurB,IAH/FA,EAHA8E,EASf,SAASQ,GAAYR,EAAI9E,GACrB,OAAOmF,GAAmBf,GAAgBU,GAAKV,GAAgBpE,IAEnE,SAASoE,GAAgB5Z,GACrB,IAAInG,EAAAA,EAAAA,IAAQmG,GAAM,CACd,MAAM7E,EAAM,GACZ,IAAK,IAAIzV,EAAI,EAAGA,EAAIsa,EAAIhd,OAAQ0C,IAC5ByV,EAAI6E,EAAIta,IAAMsa,EAAIta,GAEtB,OAAOyV,EAEX,OAAO6E,EAEX,SAAS4a,GAAaN,EAAI9E,GACtB,OAAO8E,EAAK,IAAI,IAAI/iB,IAAI,GAAGlG,OAAOipB,EAAI9E,KAAUA,EAEpD,SAASmF,GAAmBL,EAAI9E,GAC5B,OAAO8E,GAAK7d,EAAAA,EAAAA,KAAOA,EAAAA,EAAAA,IAAO5Y,OAAOjC,OAAO,MAAO04B,GAAK9E,GAAQA,EAEhE,SAASqF,GAAkBP,EAAI9E,GAC3B,IAAK8E,EACD,OAAO9E,EACX,IAAKA,EACD,OAAO8E,EACX,MAAMS,GAASte,EAAAA,EAAAA,IAAO5Y,OAAOjC,OAAO,MAAO04B,GAC3C,IAAK,MAAMj4B,KAAOmzB,EACduF,EAAO14B,GAAOu4B,GAAaN,EAAGj4B,GAAMmzB,EAAKnzB,IAE7C,OAAO04B,EAGX,SAASC,GAAUtZ,EAAUiO,EAAUsL,EACvCla,GAAQ,GACJ,MAAMrQ,EAAQ,GACRmY,EAAQ,IACd3I,EAAAA,EAAAA,IAAI2I,EAAOqS,GAAmB,GAC9BxZ,EAASyZ,cAAgBt3B,OAAOjC,OAAO,MACvCw5B,GAAa1Z,EAAUiO,EAAUjf,EAAOmY,GAExC,IAAK,MAAMxmB,KAAOqf,EAASiH,aAAa,GAC9BtmB,KAAOqO,IACTA,EAAMrO,QAAOH,GAOjB+4B,EAEAvZ,EAAShR,MAAQqQ,EAAQrQ,GAAQ4O,EAAAA,EAAAA,IAAgB5O,GAG5CgR,EAAS9V,KAAK8E,MAMfgR,EAAShR,MAAQA,EAJjBgR,EAAShR,MAAQmY,EAOzBnH,EAASmH,MAAQA,EAErB,SAASwS,GAAY3Z,EAAUiO,EAAU2L,EAAclR,GACnD,MAAM,MAAE1Z,EAAF,MAASmY,EAAO3G,OAAO,UAAEyI,IAAgBjJ,EACzC6Z,GAAkBrgB,EAAAA,EAAAA,IAAMxK,IACvBvK,GAAWub,EAASiH,aAC3B,IAAI6S,GAAkB,EACtB,KAOKpR,GAAaO,EAAY,IACZ,GAAZA,EAoCD,CAOD,IAAI8Q,EALAL,GAAa1Z,EAAUiO,EAAUjf,EAAOmY,KACxC2S,GAAkB,GAKtB,IAAK,MAAMn5B,KAAOk5B,EACT5L,KAEC3qB,EAAAA,EAAAA,IAAO2qB,EAAUttB,KAGbo5B,GAAWjV,EAAAA,EAAAA,IAAUnkB,MAAUA,IAAQ2C,EAAAA,EAAAA,IAAO2qB,EAAU8L,MAC1Dt1B,GACIm1B,QAEuBp5B,IAAtBo5B,EAAaj5B,SAEiBH,IAA3Bo5B,EAAaG,KACjB/qB,EAAMrO,GAAOq5B,GAAiBv1B,EAASo1B,EAAiBl5B,OAAKH,EAAWwf,GAAU,WAI/EhR,EAAMrO,IAMzB,GAAIwmB,IAAU0S,EACV,IAAK,MAAMl5B,KAAOwmB,EACT8G,IACC3qB,EAAAA,EAAAA,IAAO2qB,EAAUttB,YAEZwmB,EAAMxmB,GACbm5B,GAAkB,QAxE9B,GAAgB,EAAZ7Q,EAA2B,CAG3B,MAAMgR,EAAgBja,EAASQ,MAAM6I,aACrC,IAAK,IAAIrlB,EAAI,EAAGA,EAAIi2B,EAAc34B,OAAQ0C,IAAK,CAC3C,IAAIrD,EAAMs5B,EAAcj2B,GAExB,GAAI8hB,EAAe9F,EAASkJ,aAAcvoB,GACtC,SAGJ,MAAMD,EAAQutB,EAASttB,GACvB,GAAI8D,EAGA,IAAInB,EAAAA,EAAAA,IAAO6jB,EAAOxmB,GACVD,IAAUymB,EAAMxmB,KAChBwmB,EAAMxmB,GAAOD,EACbo5B,GAAkB,OAGrB,CACD,MAAMI,GAAerV,EAAAA,EAAAA,IAASlkB,GAC9BqO,EAAMkrB,GAAgBF,GAAiBv1B,EAASo1B,EAAiBK,EAAcx5B,EAAOsf,GAAU,QAIhGtf,IAAUymB,EAAMxmB,KAChBwmB,EAAMxmB,GAAOD,EACbo5B,GAAkB,IAiDlCA,IACAhiB,EAAAA,EAAAA,IAAQkI,EAAU,MAAiB,UAM3C,SAAS0Z,GAAa1Z,EAAUiO,EAAUjf,EAAOmY,GAC7C,MAAO1iB,EAAS01B,GAAgBna,EAASiH,aACzC,IACImT,EADAN,GAAkB,EAEtB,GAAI7L,EACA,IAAK,IAAIttB,KAAOstB,EAAU,CAEtB,IAAIoM,EAAAA,EAAAA,IAAe15B,GACf,SAEJ,MAAMD,EAAQutB,EAASttB,GAGvB,IAAI25B,EACA71B,IAAWnB,EAAAA,EAAAA,IAAOmB,EAAU61B,GAAWzV,EAAAA,EAAAA,IAASlkB,IAC3Cw5B,GAAiBA,EAAa34B,SAAS84B,IAIvCF,IAAkBA,EAAgB,KAAKE,GAAY55B,EAHpDsO,EAAMsrB,GAAY55B,EAMhBolB,EAAe9F,EAASkJ,aAAcvoB,IACtCA,KAAOwmB,GAAUzmB,IAAUymB,EAAMxmB,KACnCwmB,EAAMxmB,GAAOD,EACbo5B,GAAkB,GAKlC,GAAIK,EAAc,CACd,MAAMN,GAAkBrgB,EAAAA,EAAAA,IAAMxK,GACxBurB,EAAaH,GAAiBjW,EAAAA,GACpC,IAAK,IAAIngB,EAAI,EAAGA,EAAIm2B,EAAa74B,OAAQ0C,IAAK,CAC1C,MAAMrD,EAAMw5B,EAAan2B,GACzBgL,EAAMrO,GAAOq5B,GAAiBv1B,EAASo1B,EAAiBl5B,EAAK45B,EAAW55B,GAAMqf,IAAW1c,EAAAA,EAAAA,IAAOi3B,EAAY55B,KAGpH,OAAOm5B,EAEX,SAASE,GAAiBv1B,EAASuK,EAAOrO,EAAKD,EAAOsf,EAAUwa,GAC5D,MAAM7C,EAAMlzB,EAAQ9D,GACpB,GAAW,MAAPg3B,EAAa,CACb,MAAM8C,GAAan3B,EAAAA,EAAAA,IAAOq0B,EAAK,WAE/B,GAAI8C,QAAwBj6B,IAAVE,EAAqB,CACnC,MAAMypB,EAAewN,EAAI/J,QACzB,GAAI+J,EAAIztB,OAASlD,WAAY4Y,EAAAA,EAAAA,IAAWuK,GAAe,CACnD,MAAM,cAAEsP,GAAkBzZ,EACtBrf,KAAO84B,EACP/4B,EAAQ+4B,EAAc94B,IAGtBirB,GAAmB5L,GACnBtf,EAAQ+4B,EAAc94B,GAAOwpB,EAAajjB,KAAK,KAAM8H,GACrD6c,WAIJnrB,EAAQypB,EAIZwN,EAAI,KACA6C,IAAaC,EACb/5B,GAAQ,GAEHi3B,EAAI,IACE,KAAVj3B,GAAgBA,KAAUokB,EAAAA,EAAAA,IAAUnkB,KACrCD,GAAQ,IAIpB,OAAOA,EAEX,SAASg6B,GAAsBxV,EAAMnE,EAAYoE,GAAU,GACvD,MAAMC,EAAQrE,EAAW4Z,WACnBrV,EAASF,EAAMngB,IAAIigB,GACzB,GAAII,EACA,OAAOA,EAEX,MAAMhH,EAAM4G,EAAKlW,MACXwW,EAAa,GACb2U,EAAe,GAErB,IAAI1U,GAAa,EACjB,KAA4B7F,EAAAA,EAAAA,IAAWsF,GAAO,CAC1C,MAAM0V,EAAetc,IACjBmH,GAAa,EACb,MAAOzW,EAAOnL,GAAQ62B,GAAsBpc,EAAKyC,GAAY,IAC7DhG,EAAAA,EAAAA,IAAOyK,EAAYxW,GACfnL,GACAs2B,EAAatqB,QAAQhM,KAExBshB,GAAWpE,EAAW6E,OAAOtkB,QAC9Byf,EAAW6E,OAAOxN,QAAQwiB,GAE1B1V,EAAKW,SACL+U,EAAY1V,EAAKW,SAEjBX,EAAKU,QACLV,EAAKU,OAAOxN,QAAQwiB,GAG5B,IAAKtc,IAAQmH,EAET,OADAL,EAAM9b,IAAI4b,EAAM2V,EAAAA,IACTA,EAAAA,GAEX,IAAI1iB,EAAAA,EAAAA,IAAQmG,GACR,IAAK,IAAIta,EAAI,EAAGA,EAAIsa,EAAIhd,OAAQ0C,IAAK,CAC5ByB,EAGL,MAAMq1B,GAAgBjW,EAAAA,EAAAA,IAASvG,EAAIta,IAC/B+2B,GAAiBD,KACjBtV,EAAWsV,GAAiB3W,EAAAA,SAInC,GAAI7F,EAAK,CACL7Y,EAGL,IAAK,MAAM9E,KAAO2d,EAAK,CACnB,MAAMwc,GAAgBjW,EAAAA,EAAAA,IAASlkB,GAC/B,GAAIo6B,GAAiBD,GAAgB,CACjC,MAAMnD,EAAMrZ,EAAI3d,GACVq6B,EAAQxV,EAAWsV,IACrB3iB,EAAAA,EAAAA,IAAQwf,KAAQ/X,EAAAA,EAAAA,IAAW+X,GAAO,CAAEztB,KAAMytB,GAAQA,EACtD,GAAIqD,EAAM,CACN,MAAMC,EAAeC,GAAavO,QAASqO,EAAK9wB,MAC1CixB,EAAcD,GAAal7B,OAAQg7B,EAAK9wB,MAC9C8wB,EAAK,GAAsBC,GAAgB,EAC3CD,EAAK,GACDG,EAAc,GAAKF,EAAeE,GAElCF,GAAgB,IAAK33B,EAAAA,EAAAA,IAAO03B,EAAM,aAClCb,EAAatqB,KAAKirB,MAMtC,MAAMrhB,EAAM,CAAC+L,EAAY2U,GAEzB,OADA/U,EAAM9b,IAAI4b,EAAMzL,GACTA,EAEX,SAASshB,GAAiBp6B,GACtB,MAAe,MAAXA,EAAI,GAUZ,SAASy6B,GAAQC,GACb,MAAM/1B,EAAQ+1B,GAAQA,EAAK15B,WAAW2D,MAAM,sBAC5C,OAAOA,EAAQA,EAAM,GAAc,OAAT+1B,EAAgB,OAAS,GAEvD,SAASC,GAAW7yB,EAAGkL,GACnB,OAAOynB,GAAQ3yB,KAAO2yB,GAAQznB,GAElC,SAASunB,GAAahxB,EAAMqxB,GACxB,OAAIpjB,EAAAA,EAAAA,IAAQojB,GACDA,EAAcC,WAAUC,GAAKH,GAAWG,EAAGvxB,MAE7C0V,EAAAA,EAAAA,IAAW2b,IACTD,GAAWC,EAAerxB,GAAQ,GAErC,EAqIZ,MAAMwxB,GAAiB/6B,GAAmB,MAAXA,EAAI,IAAsB,YAARA,EAC3Cg7B,GAAsBj7B,IAAUyX,EAAAA,EAAAA,IAAQzX,GACxCA,EAAMqY,IAAI6O,IACV,CAACA,GAAelnB,IAChBk7B,GAAgB,CAACj7B,EAAKk7B,EAASvV,KACjC,GAAIuV,EAAQrV,GAER,OAAOqV,EAEX,MAAMrW,EAAaa,GAAQ,IAAI/M,IAMpBqiB,GAAmBE,KAAWviB,KACtCgN,GAEH,OADAd,EAAWqB,IAAK,EACTrB,GAELsW,GAAuB,CAACC,EAAU7U,EAAOlH,KAC3C,MAAMsG,EAAMyV,EAASC,KACrB,IAAK,MAAMr7B,KAAOo7B,EAAU,CACxB,GAAIL,GAAc/6B,GACd,SACJ,MAAMD,EAAQq7B,EAASp7B,GACvB,IAAIif,EAAAA,EAAAA,IAAWlf,GACXwmB,EAAMvmB,GAAOi7B,GAAcj7B,EAAKD,EAAO4lB,QAEtC,GAAa,MAAT5lB,EAAe,CACf+E,EAKL,MAAM+f,EAAamW,GAAmBj7B,GACtCwmB,EAAMvmB,GAAO,IAAM6kB,KAIzByW,GAAsB,CAACjc,EAAU4I,KAOnC,MAAMpD,EAAamW,GAAmB/S,GACtC5I,EAASkH,MAAM0G,QAAU,IAAMpI,GAE7B0W,GAAY,CAAClc,EAAU4I,KACzB,GAA+B,GAA3B5I,EAASQ,MAAMkH,UAAqC,CACpD,MAAMxd,EAAO0e,EAASwM,EAClBlrB,GAGA8V,EAASkH,OAAQ1N,EAAAA,EAAAA,IAAMoP,IAEvBpK,EAAAA,EAAAA,IAAIoK,EAAU,IAAK1e,IAGnB4xB,GAAqBlT,EAAW5I,EAASkH,MAAQ,SAIrDlH,EAASkH,MAAQ,GACb0B,GACAqT,GAAoBjc,EAAU4I,IAGtCpK,EAAAA,EAAAA,IAAIwB,EAASkH,MAAOsS,GAAmB,IAErC2C,GAAc,CAACnc,EAAU4I,EAAUF,KACrC,MAAM,MAAElI,EAAF,MAAS0G,GAAUlH,EACzB,IAAIoc,GAAoB,EACpBC,EAA2BlY,EAAAA,GAC/B,GAAsB,GAAlB3D,EAAMkH,UAAqC,CAC3C,MAAMxd,EAAO0e,EAASwM,EAClBlrB,EAOSwe,GAAsB,IAATxe,EAGlBkyB,GAAoB,IAKpBrhB,EAAAA,EAAAA,IAAOmM,EAAO0B,GAKTF,GAAsB,IAATxe,UACPgd,EAAMkO,IAKrBgH,GAAqBxT,EAASO,QAC9B2S,GAAqBlT,EAAU1B,IAEnCmV,EAA2BzT,OAEtBA,IAELqT,GAAoBjc,EAAU4I,GAC9ByT,EAA2B,CAAEzO,QAAS,IAG1C,GAAIwO,EACA,IAAK,MAAMz7B,KAAOumB,EACTwU,GAAc/6B,IAAUA,KAAO07B,UACzBnV,EAAMvmB,IAM7B,SAAS27B,KACL,MAAO,CACHC,IAAK,KACLvb,OAAQ,CACJwb,YAAaC,EAAAA,GACbC,aAAa,EACbhH,iBAAkB,GAClB8C,sBAAuB,GACvBvX,kBAAczgB,EACdm8B,iBAAan8B,EACbo8B,gBAAiB,IAErBhX,OAAQ,GACRwR,WAAY,GACZC,WAAY,GACZrN,SAAU7nB,OAAOjC,OAAO,MACxBq4B,aAAc,IAAI1uB,QAClB8wB,WAAY,IAAI9wB,QAChBwb,WAAY,IAAIxb,SAGxB,IAAIgH,GAAM,EACV,SAASgsB,GAAaxV,EAAQyV,GAC1B,OAAO,SAAmBC,EAAeC,EAAY,OAC5Cpd,EAAAA,EAAAA,IAAWmd,KACZA,EAAgB56B,OAAO86B,OAAO,GAAIF,IAErB,MAAbC,IAAsBp8B,EAAAA,EAAAA,IAASo8B,KAE/BA,EAAY,MAEhB,MAAME,EAAUZ,KACVa,EAAmB,IAAItnB,IAC7B,IAAIqW,GAAY,EAChB,MAAMqQ,EAAOW,EAAQX,IAAM,CACvBa,KAAMvsB,KACNwsB,WAAYN,EACZO,OAAQN,EACRO,WAAY,KACZC,SAAUN,EACVO,UAAW,KACXl4B,WACIyb,aACA,OAAOkc,EAAQlc,QAEfA,WAAO9F,GACFzV,GAITi4B,IAAIC,KAAWl5B,GAgBX,OAfI04B,EAAiB5zB,IAAIo0B,KAGhBA,IAAU/d,EAAAA,EAAAA,IAAW+d,EAAOC,UACjCT,EAAiBtlB,IAAI8lB,GACrBA,EAAOC,QAAQrB,KAAQ93B,KAElBmb,EAAAA,EAAAA,IAAW+d,KAChBR,EAAiBtlB,IAAI8lB,GACrBA,EAAOpB,KAAQ93B,KAMZ83B,GAEXsB,MAAMA,GAaF,OAXSX,EAAQtX,OAAOpkB,SAASq8B,IACzBX,EAAQtX,OAAO/V,KAAKguB,GAUrBtB,GAEXzT,UAAUnkB,EAAMmkB,GAIZ,OAAKA,GAMLoU,EAAQ9F,WAAWzyB,GAAQmkB,EACpByT,GANIW,EAAQ9F,WAAWzyB,IAQlCm5B,UAAUn5B,EAAMm5B,GAIZ,OAAKA,GAMLZ,EAAQ7F,WAAW1yB,GAAQm5B,EACpBvB,GANIW,EAAQ7F,WAAW1yB,IAQlCo5B,MAAMC,EAAeC,EAAWC,GAC5B,IAAKhS,EAAW,CAEPzmB,EAKL,MAAM+a,EAAQuH,GAAYgV,EAAeC,GAuBzC,OApBAxc,EAAMO,WAAamc,EAOfe,GAAanB,EACbA,EAAQtc,EAAOwd,GAGf3W,EAAO7G,EAAOwd,EAAeE,GAEjChS,GAAY,EACZqQ,EAAIgB,WAAaS,EACjBA,EAAcG,YAAc5B,EAKrBrI,GAAe1T,EAAMsI,YAActI,EAAMsI,UAAU5K,QASlEkgB,UACQlS,IACA7E,EAAO,KAAMkV,EAAIgB,mBAKVhB,EAAIgB,WAAWY,cAM9BrU,QAAQnpB,EAAKD,GAMT,OADAw8B,EAAQlT,SAASrpB,GAAOD,EACjB67B,IAGf,OAAOA,GAOf,SAAS8B,GAAOC,EAAQC,EAAWC,EAAgBhe,EAAOie,GAAY,GAClE,IAAItmB,EAAAA,EAAAA,IAAQmmB,GAER,YADAA,EAAOlmB,SAAQ,CAACyG,EAAG7a,IAAMq6B,GAAOxf,EAAG0f,KAAcpmB,EAAAA,EAAAA,IAAQomB,GAAaA,EAAUv6B,GAAKu6B,GAAYC,EAAgBhe,EAAOie,KAG5H,GAAI3N,GAAetQ,KAAWie,EAG1B,OAEJ,MAAMC,EAA6B,EAAlBle,EAAMkH,UACjBwM,GAAe1T,EAAMsI,YAActI,EAAMsI,UAAU5K,MACnDsC,EAAMrf,GACNT,EAAQ+9B,EAAY,KAAOC,GACzB16B,EAAG26B,EAAO9f,EAAGH,GAAQ4f,EAM7B,MAAMM,EAASL,GAAaA,EAAU1f,EAChC6V,EAAOiK,EAAMjK,OAASvQ,EAAAA,GAAawa,EAAMjK,KAAO,GAAMiK,EAAMjK,KAC5DnN,EAAaoX,EAAMpX,WAazB,GAXc,MAAVqX,GAAkBA,IAAWlgB,KACzBgN,EAAAA,EAAAA,IAASkT,IACTlK,EAAKkK,GAAU,MACXt7B,EAAAA,EAAAA,IAAOikB,EAAYqX,KACnBrX,EAAWqX,GAAU,QAGpB1kB,EAAAA,EAAAA,IAAM0kB,KACXA,EAAOl+B,MAAQ,QAGnBkf,EAAAA,EAAAA,IAAWlB,GACXqB,EAAsBrB,EAAKigB,EAAO,GAAuB,CAACj+B,EAAOg0B,QAEhE,CACD,MAAMmK,GAAYnT,EAAAA,EAAAA,IAAShN,GACrBogB,GAAS5kB,EAAAA,EAAAA,IAAMwE,GACrB,GAAImgB,GAAaC,EAAQ,CACrB,MAAMC,EAAQ,KACV,GAAIT,EAAOx6B,EAAG,CACV,MAAMk7B,EAAWH,EAAYnK,EAAKhW,GAAOA,EAAIhe,MACzC+9B,GACAtmB,EAAAA,EAAAA,IAAQ6mB,KAAazT,EAAAA,EAAAA,IAAOyT,EAAUN,IAGjCvmB,EAAAA,EAAAA,IAAQ6mB,GAaHA,EAASx9B,SAASk9B,IACxBM,EAASnvB,KAAK6uB,GAbVG,GACAnK,EAAKhW,GAAO,CAACggB,IACTp7B,EAAAA,EAAAA,IAAOikB,EAAY7I,KACnB6I,EAAW7I,GAAOgW,EAAKhW,MAI3BA,EAAIhe,MAAQ,CAACg+B,GACTJ,EAAOW,IACPvK,EAAK4J,EAAOW,GAAKvgB,EAAIhe,aAQhCm+B,GACLnK,EAAKhW,GAAOhe,GACR4C,EAAAA,EAAAA,IAAOikB,EAAY7I,KACnB6I,EAAW7I,GAAOhe,IAGjBo+B,IACLpgB,EAAIhe,MAAQA,EACR49B,EAAOW,IACPvK,EAAK4J,EAAOW,GAAKv+B,KAMzBA,GACAq+B,EAAM/sB,IAAM,EACZsZ,GAAsByT,EAAOP,IAG7BO,SAGEt5B,GAiZlB,SAASy5B,MAoBT,MAAM5T,GAAwB3B,EAiB9B,SAASwV,GAAe16B,GACpB,OAAO26B,GAAmB36B,GAS9B,SAAS26B,GAAmB36B,EAAS46B,GAG7BH,KAEJ,MAAMx7B,GAAS47B,EAAAA,EAAAA,MACf57B,EAAO67B,SAAU,EAIjB,MAAQC,OAAQC,EAAYlU,OAAQmU,EAAYC,UAAWC,EAAex6B,cAAey6B,EAAmBC,WAAYC,EAAgBC,cAAeC,EAAmBC,QAASC,EAAaC,eAAgBC,EAAoBC,WAAYC,EAAgBC,YAAaC,EAAiBC,WAAYC,EAAiB9gB,EAAAA,GAAM+gB,UAAWC,EAAeC,oBAAqBC,GAA4Bt8B,EAGtYu8B,EAAQ,CAACC,EAAIC,EAAIC,EAAWC,EAAS,KAAMC,EAAkB,KAAM7C,EAAiB,KAAMN,GAAQ,EAAOoD,EAAe,KAAM5Y,IAAiFwY,EAAGK,mBACpN,GAAIN,IAAOC,EACP,OAGAD,IAAOrS,GAAgBqS,EAAIC,KAC3BE,EAASI,EAAgBP,GACzB7C,EAAQ6C,EAAII,EAAiB7C,GAAgB,GAC7CyC,EAAK,OAEa,IAAlBC,EAAGjY,YACHP,GAAY,EACZwY,EAAGK,gBAAkB,MAEzB,MAAM,KAAEr3B,EAAF,IAAQwU,EAAR,UAAagJ,GAAcwZ,EACjC,OAAQh3B,GACJ,KAAKu3B,GACDC,EAAYT,EAAIC,EAAIC,EAAWC,GAC/B,MACJ,KAAKpZ,GACD2Z,EAAmBV,EAAIC,EAAIC,EAAWC,GACtC,MACJ,KAAKQ,GACS,MAANX,GACAY,EAAgBX,EAAIC,EAAWC,EAAQlD,GAK3C,MACJ,KAAKrN,GACDiR,EAAgBb,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GACjG,MACJ,QACoB,EAAZhB,EACAqa,EAAed,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAE/E,EAAZhB,EACLsa,EAAiBf,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,IAEjF,GAAZhB,GAGY,IAAZA,IAFLxd,EAAKzE,QAAQw7B,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,EAAWuZ,IAU1G,MAAPvjB,GAAe2iB,GACfhD,GAAO3f,EAAKuiB,GAAMA,EAAGviB,IAAK8f,EAAgB0C,GAAMD,GAAKC,IAGvDQ,EAAc,CAACT,EAAIC,EAAIC,EAAWC,KACpC,GAAU,MAANH,EACAxB,EAAYyB,EAAG//B,GAAK4+B,EAAemB,EAAGtY,UAAYuY,EAAWC,OAE5D,CACD,MAAMjgC,EAAM+/B,EAAG//B,GAAK8/B,EAAG9/B,GACnB+/B,EAAGtY,WAAaqY,EAAGrY,UACnBuX,EAAYh/B,EAAI+/B,EAAGtY,YAIzB+Y,EAAqB,CAACV,EAAIC,EAAIC,EAAWC,KACjC,MAANH,EACAxB,EAAYyB,EAAG//B,GAAK8+B,EAAkBiB,EAAGtY,UAAY,IAAMuY,EAAWC,GAItEF,EAAG//B,GAAK8/B,EAAG9/B,IAGb0gC,EAAkB,CAACX,EAAIC,EAAWC,EAAQlD,MAC3CgD,EAAG//B,GAAI+/B,EAAGE,QAAUL,EAAwBG,EAAGtY,SAAUuY,EAAWC,EAAQlD,EAAOgD,EAAG//B,GAAI+/B,EAAGE,SAkB5Fc,EAAiB,EAAG/gC,KAAIigC,UAAUD,EAAWX,KAC/C,IAAI/jB,EACJ,MAAOtb,GAAMA,IAAOigC,EAChB3kB,EAAOgkB,EAAgBt/B,GACvBs+B,EAAWt+B,EAAIggC,EAAWX,GAC1Br/B,EAAKsb,EAETgjB,EAAW2B,EAAQD,EAAWX,IAE5B2B,EAAmB,EAAGhhC,KAAIigC,aAC5B,IAAI3kB,EACJ,MAAOtb,GAAMA,IAAOigC,EAChB3kB,EAAOgkB,EAAgBt/B,GACvBu+B,EAAWv+B,GACXA,EAAKsb,EAETijB,EAAW0B,IAETW,EAAiB,CAACd,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KACrGwV,EAAQA,GAAqB,QAAZgD,EAAGh3B,KACV,MAAN+2B,EACAmB,EAAalB,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAG1F2Z,EAAapB,EAAIC,EAAIG,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,IAG7E0Z,EAAe,CAAC5hB,EAAO2gB,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KAClG,IAAIvnB,EACAmhC,EACJ,MAAM,KAAEp4B,EAAF,MAAQ8E,EAAR,UAAe0Y,EAAf,WAA0BY,EAA1B,UAAsCW,EAAtC,KAAiDZ,GAAS7H,EAChE,GACIA,EAAMrf,SACYX,IAAlBqgC,IACe,IAAf5X,EAKA9nB,EAAKqf,EAAMrf,GAAK0/B,EAAcrgB,EAAMrf,QAEnC,CAcD,GAbAA,EAAKqf,EAAMrf,GAAK0+B,EAAkBrf,EAAMtW,KAAMg0B,EAAOlvB,GAASA,EAAMuzB,GAAIvzB,GAGxD,EAAZ0Y,EACA2Y,EAAmBl/B,EAAIqf,EAAMoI,UAEZ,GAAZlB,GACL8a,EAAchiB,EAAMoI,SAAUznB,EAAI,KAAMkgC,EAAiB7C,EAAgBN,GAAkB,kBAATh0B,EAA0Bo3B,EAAc5Y,GAE1HL,GACAwK,GAAoBrS,EAAO,KAAM6gB,EAAiB,WAGlDryB,EAAO,CACP,IAAK,MAAMrO,KAAOqO,EACF,UAARrO,IAAoB05B,EAAAA,EAAAA,IAAe15B,IACnCi/B,EAAcz+B,EAAIR,EAAK,KAAMqO,EAAMrO,GAAMu9B,EAAO1d,EAAMoI,SAAUyY,EAAiB7C,EAAgBiE,GAYrG,UAAWzzB,GACX4wB,EAAcz+B,EAAI,QAAS,KAAM6N,EAAMtO,QAEtC4hC,EAAYtzB,EAAM0zB,qBACnBC,GAAgBL,EAAWjB,EAAiB7gB,GAIpDkgB,EAAWv/B,EAAIqf,EAAOA,EAAMoiB,QAAStB,EAAcD,GAYnDhZ,GACAwK,GAAoBrS,EAAO,KAAM6gB,EAAiB,eAItD,MAAMwB,IAA4BrE,GAAmBA,IAAmBA,EAAe3U,gBACnFvB,IACCA,EAAWsE,UACZiW,GACAva,EAAWsH,YAAYzuB,GAE3Bs+B,EAAWt+B,EAAIggC,EAAWC,KACrBkB,EAAYtzB,GAASA,EAAM8zB,iBAC5BD,GACAxa,IACAiD,IAAsB,KAClBgX,GAAaK,GAAgBL,EAAWjB,EAAiB7gB,GACzDqiB,GAA2Bva,EAAWwH,MAAM3uB,GAC5CknB,GAAQwK,GAAoBrS,EAAO,KAAM6gB,EAAiB,aAC3D7C,IAGLkC,EAAa,CAACv/B,EAAIqf,EAAOoiB,EAAStB,EAAcD,KAIlD,GAHIuB,GACAjC,EAAex/B,EAAIyhC,GAEnBtB,EACA,IAAK,IAAIt9B,EAAI,EAAGA,EAAIs9B,EAAahgC,OAAQ0C,IACrC28B,EAAex/B,EAAImgC,EAAat9B,IAGxC,GAAIq9B,EAAiB,CACjB,IAAI7X,EAAU6X,EAAgB7X,QAO9B,GAAIhJ,IAAUgJ,EAAS,CACnB,MAAMuZ,EAAc1B,EAAgB7gB,MACpCkgB,EAAWv/B,EAAI4hC,EAAaA,EAAYH,QAASG,EAAYzB,aAAcD,EAAgBxsB,WAIjG2tB,EAAgB,CAAC5Z,EAAUuY,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,EAAWnG,EAAQ,KACzH,IAAK,IAAIve,EAAIue,EAAOve,EAAI4kB,EAAStnB,OAAQ0C,IAAK,CAC1C,MAAM8pB,EAASlF,EAAS5kB,GAAK0kB,EACvBsa,GAAepa,EAAS5kB,IACxB4jB,GAAegB,EAAS5kB,IAC9Bg9B,EAAM,KAAMlT,EAAOqT,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KAG9F2Z,EAAe,CAACpB,EAAIC,EAAIG,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KAChF,MAAMvnB,EAAM+/B,EAAG//B,GAAK8/B,EAAG9/B,GACvB,IAAI,UAAE8nB,EAAF,gBAAasY,EAAb,KAA8BlZ,GAAS6Y,EAG3CjY,GAA4B,GAAfgY,EAAGhY,UAChB,MAAMga,EAAWhC,EAAGjyB,OAASmV,EAAAA,GACvB+e,EAAWhC,EAAGlyB,OAASmV,EAAAA,GAC7B,IAAIme,EAEJjB,GAAmB8B,GAAc9B,GAAiB,IAC7CiB,EAAYY,EAASE,sBACtBT,GAAgBL,EAAWjB,EAAiBH,EAAID,GAEhD5Y,GACAwK,GAAoBqO,EAAID,EAAII,EAAiB,gBAEjDA,GAAmB8B,GAAc9B,GAAiB,GAOlD,MAAMgC,EAAiBnF,GAAqB,kBAAZgD,EAAGh3B,KAWnC,GAVIq3B,EACA+B,EAAmBrC,EAAGM,gBAAiBA,EAAiBpgC,EAAIkgC,EAAiB7C,EAAgB6E,EAAgB/B,GAKvG5Y,GAEN6a,EAActC,EAAIC,EAAI//B,EAAI,KAAMkgC,EAAiB7C,EAAgB6E,EAAgB/B,GAAc,GAE/FrY,EAAY,EAAG,CAKf,GAAgB,GAAZA,EAEAua,EAAWriC,EAAI+/B,EAAI+B,EAAUC,EAAU7B,EAAiB7C,EAAgBN,QAqBxE,GAhBgB,EAAZjV,GACIga,EAASQ,QAAUP,EAASO,OAC5B7D,EAAcz+B,EAAI,QAAS,KAAM+hC,EAASO,MAAOvF,GAKzC,EAAZjV,GACA2W,EAAcz+B,EAAI,QAAS8hC,EAAS/0B,MAAOg1B,EAASh1B,MAAOgwB,GAQ/C,EAAZjV,EAA2B,CAE3B,MAAMgR,EAAgBiH,EAAG7X,aACzB,IAAK,IAAIrlB,EAAI,EAAGA,EAAIi2B,EAAc34B,OAAQ0C,IAAK,CAC3C,MAAMrD,EAAMs5B,EAAcj2B,GACpBmiB,EAAO8c,EAAStiC,GAChB8b,EAAOymB,EAASviC,GAElB8b,IAAS0J,GAAgB,UAARxlB,GACjBi/B,EAAcz+B,EAAIR,EAAKwlB,EAAM1J,EAAMyhB,EAAO+C,EAAGrY,SAAUyY,EAAiB7C,EAAgBiE,IAOxF,EAAZxZ,GACIgY,EAAGrY,WAAasY,EAAGtY,UACnByX,EAAmBl/B,EAAI+/B,EAAGtY,eAI5BF,GAAgC,MAAnB6Y,GAEnBiC,EAAWriC,EAAI+/B,EAAI+B,EAAUC,EAAU7B,EAAiB7C,EAAgBN,KAEvEoE,EAAYY,EAASQ,iBAAmBrb,IACzCiD,IAAsB,KAClBgX,GAAaK,GAAgBL,EAAWjB,EAAiBH,EAAID,GAC7D5Y,GAAQwK,GAAoBqO,EAAID,EAAII,EAAiB,aACtD7C,IAIL8E,EAAqB,CAACK,EAAaC,EAAaC,EAAmBxC,EAAiB7C,EAAgBN,EAAOoD,KAC7G,IAAK,IAAIt9B,EAAI,EAAGA,EAAI4/B,EAAYtiC,OAAQ0C,IAAK,CACzC,MAAM8/B,EAAWH,EAAY3/B,GACvB+/B,EAAWH,EAAY5/B,GAEvBm9B,EAGN2C,EAAS3iC,KAGJ2iC,EAAS55B,OAAS2mB,KAGdjC,GAAgBkV,EAAUC,IAE3B,GAAAD,EAASpc,WACX6Y,EAAeuD,EAAS3iC,IAGtB0iC,EACR7C,EAAM8C,EAAUC,EAAU5C,EAAW,KAAME,EAAiB7C,EAAgBN,EAAOoD,GAAc,KAGnGkC,EAAa,CAACriC,EAAIqf,EAAOyiB,EAAUC,EAAU7B,EAAiB7C,EAAgBN,KAChF,GAAI+E,IAAaC,EAAU,CACvB,IAAK,MAAMviC,KAAOuiC,EAAU,CAExB,IAAI7I,EAAAA,EAAAA,IAAe15B,GACf,SACJ,MAAM8b,EAAOymB,EAASviC,GAChBwlB,EAAO8c,EAAStiC,GAElB8b,IAAS0J,GAAgB,UAARxlB,GACjBi/B,EAAcz+B,EAAIR,EAAKwlB,EAAM1J,EAAMyhB,EAAO1d,EAAMoI,SAAUyY,EAAiB7C,EAAgBiE,GAGnG,GAAIQ,IAAa9e,EAAAA,GACb,IAAK,MAAMxjB,KAAOsiC,GACT5I,EAAAA,EAAAA,IAAe15B,IAAUA,KAAOuiC,GACjCtD,EAAcz+B,EAAIR,EAAKsiC,EAAStiC,GAAM,KAAMu9B,EAAO1d,EAAMoI,SAAUyY,EAAiB7C,EAAgBiE,GAI5G,UAAWS,GACXtD,EAAcz+B,EAAI,QAAS8hC,EAASviC,MAAOwiC,EAASxiC,SAI1DohC,EAAkB,CAACb,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KACtG,MAAMsb,EAAuB9C,EAAG//B,GAAK8/B,EAAKA,EAAG9/B,GAAK4+B,EAAe,IAC3DkE,EAAqB/C,EAAGE,OAASH,EAAKA,EAAGG,OAASrB,EAAe,IACvE,IAAI,UAAE9W,EAAF,gBAAasY,EAAiBD,aAAc4C,GAAyBhD,EAUrEgD,IACA5C,EAAeA,EACTA,EAAa3xB,OAAOu0B,GACpBA,GAEA,MAANjD,GACAxB,EAAWuE,EAAqB7C,EAAWC,GAC3C3B,EAAWwE,EAAmB9C,EAAWC,GAIzCoB,EAActB,EAAGtY,SAAUuY,EAAW8C,EAAmB5C,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,IAG3GO,EAAY,GACA,GAAZA,GACAsY,GAGAN,EAAGM,iBAGH+B,EAAmBrC,EAAGM,gBAAiBA,EAAiBJ,EAAWE,EAAiB7C,EAAgBN,EAAOoD,IASjG,MAAVJ,EAAGvgC,KACE0gC,GAAmBH,IAAOG,EAAgB7X,UAC3C2a,GAAuBlD,EAAIC,GAAI,IAQnCqC,EAActC,EAAIC,EAAIC,EAAW8C,EAAmB5C,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,IAIhHsZ,EAAmB,CAACf,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KACvGwY,EAAGI,aAAeA,EACR,MAANL,EACmB,IAAfC,EAAGxZ,UACH2Z,EAAgB/a,IAAI8d,SAASlD,EAAIC,EAAWC,EAAQlD,EAAOxV,GAG3D2b,EAAenD,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOxV,GAIlF4b,EAAgBrD,EAAIC,EAAIxY,IAG1B2b,EAAiB,CAACE,EAAcpD,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOxV,KAC7F,MAAM1I,EAAYukB,EAAazb,UAAY0b,GAAwBD,EAAclD,EAAiB7C,GAwBlG,GAfIlO,GAAYiU,KACZvkB,EAASsG,IAAIme,SAAWxC,IAOxByC,GAAe1kB,GAOfA,EAAS2kB,UAIT,GAHAnG,GAAkBA,EAAeoG,YAAY5kB,EAAU6kB,IAGlDN,EAAapjC,GAAI,CAClB,MAAM2jC,EAAe9kB,EAASwJ,QAAUzB,GAAYC,IACpD2Z,EAAmB,KAAMmD,EAAa3D,EAAWC,SAIzDyD,EAAkB7kB,EAAUukB,EAAcpD,EAAWC,EAAQ5C,EAAgBN,EAAOxV,IAMlF4b,EAAkB,CAACrD,EAAIC,EAAIxY,KAC7B,MAAM1I,EAAYkhB,EAAGpY,UAAYmY,EAAGnY,UACpC,GAAIP,EAAsB0Y,EAAIC,EAAIxY,GAAY,CAC1C,GAAI1I,EAAS2kB,WACR3kB,EAAS+kB,cAUV,YAJAC,EAAyBhlB,EAAUkhB,EAAIxY,GAQvC1I,EAASvD,KAAOykB,EAGhBje,EAAcjD,EAAS+O,QAEvB/O,EAAS+O,cAKbmS,EAAG//B,GAAK8/B,EAAG9/B,GACX6e,EAASQ,MAAQ0gB,GAGnB2D,EAAoB,CAAC7kB,EAAUukB,EAAcpD,EAAWC,EAAQ5C,EAAgBN,EAAOxV,KACzF,MAAMuc,EAAoB,KACtB,GAAKjlB,EAASkM,UAyFT,CAID,IAEIoW,GAFA,KAAE7lB,EAAF,GAAQyoB,EAAR,EAAYC,EAAZ,OAAetwB,EAAf,MAAuB2L,GAAUR,EACjColB,EAAa3oB,EAEZhX,EAIL09B,GAAcnjB,GAAU,GACpBvD,GACAA,EAAKtb,GAAKqf,EAAMrf,GAChB6jC,EAAyBhlB,EAAUvD,EAAMiM,IAGzCjM,EAAO+D,EAGP0kB,IACAG,EAAAA,EAAAA,IAAeH,IAGd5C,EAAY7lB,EAAKzN,OAASyN,EAAKzN,MAAMo0B,sBACtCT,GAAgBL,EAAWztB,EAAQ4H,EAAM+D,GAE7C2iB,GAAcnjB,GAAU,GAKxB,MAAMslB,EAAWxe,EAAoB9G,GAChCva,EAGL,MAAM8/B,EAAWvlB,EAASwJ,QAC1BxJ,EAASwJ,QAAU8b,EAInBtE,EAAMuE,EAAUD,EAEhB/E,EAAegF,EAASpkC,IAExBqgC,EAAgB+D,GAAWvlB,EAAUwe,EAAgBN,GAIrDzhB,EAAKtb,GAAKmkC,EAASnkC,GACA,OAAfikC,GAIA7b,EAAgBvJ,EAAUslB,EAASnkC,IAGnCgkC,GACA7Z,GAAsB6Z,EAAG3G,IAGxB8D,EAAY7lB,EAAKzN,OAASyN,EAAKzN,MAAM00B,iBACtCpY,IAAsB,IAAMqX,GAAgBL,EAAWztB,EAAQ4H,EAAM+D,IAAQge,OAvJ5D,CACrB,IAAI8D,EACJ,MAAM,GAAEnhC,EAAF,MAAM6N,GAAUu1B,GAChB,GAAEiB,EAAF,EAAM9M,EAAN,OAAS7jB,GAAWmL,EACpBylB,EAAsB3U,GAAeyT,GAY3C,GAXApB,GAAcnjB,GAAU,GAEpBwlB,IACAH,EAAAA,EAAAA,IAAeG,IAGdC,IACAnD,EAAYtzB,GAASA,EAAM0zB,qBAC5BC,GAAgBL,EAAWztB,EAAQ0vB,GAEvCpB,GAAcnjB,GAAU,GACpB7e,GAAMukC,GAAa,CAEnB,MAAMC,EAAiB,KAInB3lB,EAASwJ,QAAU1C,EAAoB9G,GAOvC0lB,GAAYvkC,EAAI6e,EAASwJ,QAASxJ,EAAUwe,EAAgB,OAK5DiH,EACAlB,EAAar6B,KAAK6mB,gBAAgB1O,MAKlC,KAAOrC,EAASkE,aAAeyhB,MAG/BA,QAGH,CACIlgC,EAGL,MAAM+jB,EAAWxJ,EAASwJ,QAAU1C,EAAoB9G,GACnDva,EAMLu7B,EAAM,KAAMxX,EAAS2X,EAAWC,EAAQphB,EAAUwe,EAAgBN,GAIlEqG,EAAapjC,GAAKqoB,EAAQroB,GAO9B,GAJIu3B,GACApN,GAAsBoN,EAAG8F,IAGxBiH,IACAnD,EAAYtzB,GAASA,EAAM8zB,gBAAiB,CAC7C,MAAM8C,EAAqBrB,EAC3BjZ,IAAsB,IAAMqX,GAAgBL,EAAWztB,EAAQ+wB,IAAqBpH,IAK3D,IAAzB+F,EAAa7c,WACZ7S,GACGic,GAAejc,EAAO2L,QACG,IAAzB3L,EAAO2L,MAAMkH,YACjB1H,EAASvX,GAAK6iB,GAAsBtL,EAASvX,EAAG+1B,GAEpDxe,EAASkM,WAAY,EAKrBqY,EAAepD,EAAYC,EAAS,OA2EtC3rB,EAAUuK,EAASvK,OAAS,IAAIoB,EAAAA,GAAeouB,GAAmB,IAAMriB,EAASmM,IAAS/O,EAAStK,OAEnGqZ,EAAU/O,EAAS+O,OAAS,IAAMtZ,EAAOV,MAC/Cga,EAAO/c,GAAKgO,EAASnP,IAGrBsyB,GAAcnjB,GAAU,GAUxB+O,KAEEiW,EAA2B,CAAChlB,EAAUyI,EAAWC,KACnDD,EAAUK,UAAY9I,EACtB,MAAM2I,EAAY3I,EAASQ,MAAMxR,MACjCgR,EAASQ,MAAQiI,EACjBzI,EAASvD,KAAO,KAChBkd,GAAY3Z,EAAUyI,EAAUzZ,MAAO2Z,EAAWD,GAClDyT,GAAYnc,EAAUyI,EAAUG,SAAUF,IAC1CrR,EAAAA,EAAAA,MAGAmM,OAAiBhjB,EAAWwf,EAAS+O,SACrCzX,EAAAA,EAAAA,OAEEisB,EAAgB,CAACtC,EAAIC,EAAIC,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAAY,KAChH,MAAMmd,EAAK5E,GAAMA,EAAGrY,SACdkd,EAAgB7E,EAAKA,EAAGvZ,UAAY,EACpCqe,EAAK7E,EAAGtY,UACR,UAAEK,EAAF,UAAavB,GAAcwZ,EAEjC,GAAIjY,EAAY,EAAG,CACf,GAAgB,IAAZA,EAIA,YADA+c,EAAmBH,EAAIE,EAAI5E,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAGnG,GAAgB,IAAZO,EAGL,YADAgd,EAAqBJ,EAAIE,EAAI5E,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAK9F,EAAZhB,GAEoB,GAAhBoe,GACArD,EAAgBoD,EAAIxE,EAAiB7C,GAErCuH,IAAOF,GACPxF,EAAmBc,EAAW4E,IAId,GAAhBD,EAEgB,GAAZpe,EAEAse,EAAmBH,EAAIE,EAAI5E,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAIpG+Z,EAAgBoD,EAAIxE,EAAiB7C,GAAgB,IAMrC,EAAhBsH,GACAzF,EAAmBc,EAAW,IAGlB,GAAZzZ,GACA8a,EAAcuD,EAAI5E,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KAKrGud,EAAuB,CAACJ,EAAIE,EAAI5E,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KAC3Gmd,EAAKA,GAAMhL,EAAAA,GACXkL,EAAKA,GAAMlL,EAAAA,GACX,MAAMqL,EAAYL,EAAGvkC,OACf6kC,EAAYJ,EAAGzkC,OACf8kC,EAAel+B,KAAKmJ,IAAI60B,EAAWC,GACzC,IAAIniC,EACJ,IAAKA,EAAI,EAAGA,EAAIoiC,EAAcpiC,IAAK,CAC/B,MAAMqiC,EAAaN,EAAG/hC,GAAK0kB,EACrBsa,GAAe+C,EAAG/hC,IAClB4jB,GAAeme,EAAG/hC,IACxBg9B,EAAM6E,EAAG7hC,GAAIqiC,EAAWlF,EAAW,KAAME,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAE/Fwd,EAAYC,EAEZ1D,EAAgBoD,EAAIxE,EAAiB7C,GAAgB,GAAM,EAAO4H,GAIlE5D,EAAcuD,EAAI5E,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,EAAW0d,IAIxGJ,EAAqB,CAACH,EAAIE,EAAI5E,EAAWmF,EAAcjF,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,KAC/G,IAAI1kB,EAAI,EACR,MAAMuiC,EAAKR,EAAGzkC,OACd,IAAIklC,EAAKX,EAAGvkC,OAAS,EACjBmlC,EAAKF,EAAK,EAId,MAAOviC,GAAKwiC,GAAMxiC,GAAKyiC,EAAI,CACvB,MAAMxF,EAAK4E,EAAG7hC,GACRk9B,EAAM6E,EAAG/hC,GAAK0kB,EACdsa,GAAe+C,EAAG/hC,IAClB4jB,GAAeme,EAAG/hC,IACxB,IAAI4qB,GAAgBqS,EAAIC,GAIpB,MAHAF,EAAMC,EAAIC,EAAIC,EAAW,KAAME,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAKzF1kB,IAKJ,MAAOA,GAAKwiC,GAAMxiC,GAAKyiC,EAAI,CACvB,MAAMxF,EAAK4E,EAAGW,GACRtF,EAAM6E,EAAGU,GAAM/d,EACfsa,GAAe+C,EAAGU,IAClB7e,GAAeme,EAAGU,IACxB,IAAI7X,GAAgBqS,EAAIC,GAIpB,MAHAF,EAAMC,EAAIC,EAAIC,EAAW,KAAME,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAKzF8d,IACAC,IASJ,GAAIziC,EAAIwiC,GACJ,GAAIxiC,GAAKyiC,EAAI,CACT,MAAMC,EAAUD,EAAK,EACfrF,EAASsF,EAAUH,EAAKR,EAAGW,GAASvlC,GAAKmlC,EAC/C,MAAOtiC,GAAKyiC,EACRzF,EAAM,KAAO+E,EAAG/hC,GAAK0kB,EACfsa,GAAe+C,EAAG/hC,IAClB4jB,GAAeme,EAAG/hC,IAAMm9B,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GACvG1kB,UAWP,GAAIA,EAAIyiC,EACT,MAAOziC,GAAKwiC,EACRpI,EAAQyH,EAAG7hC,GAAIq9B,EAAiB7C,GAAgB,GAChDx6B,QAOH,CACD,MAAM2iC,EAAK3iC,EACL4iC,EAAK5iC,EAEL6iC,EAAmB,IAAIpvB,IAC7B,IAAKzT,EAAI4iC,EAAI5iC,GAAKyiC,EAAIziC,IAAK,CACvB,MAAMqiC,EAAaN,EAAG/hC,GAAK0kB,EACrBsa,GAAe+C,EAAG/hC,IAClB4jB,GAAeme,EAAG/hC,IACH,MAAjBqiC,EAAU1lC,KAIVkmC,EAAiBv9B,IAAI+8B,EAAU1lC,IAAKqD,GAK5C,IAAI8iC,EACAC,EAAU,EACd,MAAMC,EAAcP,EAAKG,EAAK,EAC9B,IAAIK,GAAQ,EAERC,EAAmB,EAMvB,MAAMC,EAAwB,IAAI7mC,MAAM0mC,GACxC,IAAKhjC,EAAI,EAAGA,EAAIgjC,EAAahjC,IACzBmjC,EAAsBnjC,GAAK,EAC/B,IAAKA,EAAI2iC,EAAI3iC,GAAKwiC,EAAIxiC,IAAK,CACvB,MAAMojC,EAAYvB,EAAG7hC,GACrB,GAAI+iC,GAAWC,EAAa,CAExB5I,EAAQgJ,EAAW/F,EAAiB7C,GAAgB,GACpD,SAEJ,IAAI6I,EACJ,GAAqB,MAAjBD,EAAUzmC,IACV0mC,EAAWR,EAAiB5hC,IAAImiC,EAAUzmC,UAI1C,IAAKmmC,EAAIF,EAAIE,GAAKL,EAAIK,IAClB,GAAsC,IAAlCK,EAAsBL,EAAIF,IAC1BhY,GAAgBwY,EAAWrB,EAAGe,IAAK,CACnCO,EAAWP,EACX,WAIKtmC,IAAb6mC,EACAjJ,EAAQgJ,EAAW/F,EAAiB7C,GAAgB,IAGpD2I,EAAsBE,EAAWT,GAAM5iC,EAAI,EACvCqjC,GAAYH,EACZA,EAAmBG,EAGnBJ,GAAQ,EAEZjG,EAAMoG,EAAWrB,EAAGsB,GAAWlG,EAAW,KAAME,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GACtGqe,KAKR,MAAMO,EAA6BL,EAC7BM,GAAYJ,GACZtM,EAAAA,GAGN,IAFAiM,EAAIQ,EAA2BhmC,OAAS,EAEnC0C,EAAIgjC,EAAc,EAAGhjC,GAAK,EAAGA,IAAK,CACnC,MAAMwjC,EAAYZ,EAAK5iC,EACjBqiC,EAAYN,EAAGyB,GACfpG,EAASoG,EAAY,EAAIjB,EAAKR,EAAGyB,EAAY,GAAGrmC,GAAKmlC,EAC1B,IAA7Ba,EAAsBnjC,GAEtBg9B,EAAM,KAAMqF,EAAWlF,EAAWC,EAAQC,EAAiB7C,EAAgBN,EAAOoD,EAAc5Y,GAE3Fue,IAIDH,EAAI,GAAK9iC,IAAMsjC,EAA2BR,GAC1CW,EAAKpB,EAAWlF,EAAWC,EAAQ,GAGnC0F,QAMdW,EAAO,CAACjnB,EAAO2gB,EAAWC,EAAQsG,EAAUlJ,EAAiB,QAC/D,MAAM,GAAEr9B,EAAF,KAAM+I,EAAN,WAAYoe,EAAZ,SAAwBM,EAAxB,UAAkClB,GAAclH,EACtD,GAAgB,EAAZkH,EAEA,YADA+f,EAAKjnB,EAAMsI,UAAUU,QAAS2X,EAAWC,EAAQsG,GAGrD,GAAgB,IAAZhgB,EAEA,YADAlH,EAAMoJ,SAAS6d,KAAKtG,EAAWC,EAAQsG,GAG3C,GAAgB,GAAZhgB,EAEA,YADAxd,EAAKu9B,KAAKjnB,EAAO2gB,EAAWC,EAAQa,IAGxC,GAAI/3B,IAAS2mB,GAAU,CACnB4O,EAAWt+B,EAAIggC,EAAWC,GAC1B,IAAK,IAAIp9B,EAAI,EAAGA,EAAI4kB,EAAStnB,OAAQ0C,IACjCyjC,EAAK7e,EAAS5kB,GAAIm9B,EAAWC,EAAQsG,GAGzC,YADAjI,EAAWjf,EAAM4gB,OAAQD,EAAWC,GAGxC,GAAIl3B,IAAS03B,GAET,YADAM,EAAe1hB,EAAO2gB,EAAWC,GAIrC,MAAMuG,EAA8B,IAAbD,GACP,EAAZhgB,GACAY,EACJ,GAAIqf,EACA,GAAiB,IAAbD,EACApf,EAAWsH,YAAYzuB,GACvBs+B,EAAWt+B,EAAIggC,EAAWC,GAC1B9V,IAAsB,IAAMhD,EAAWwH,MAAM3uB,IAAKq9B,OAEjD,CACD,MAAM,MAAEpO,EAAF,WAASpB,EAAT,WAAqBF,GAAexG,EACpCiD,EAAS,IAAMkU,EAAWt+B,EAAIggC,EAAWC,GACzCwG,EAAe,KACjBxX,EAAMjvB,GAAI,KACNoqB,IACAuD,GAAcA,QAGlBE,EACAA,EAAW7tB,EAAIoqB,EAAQqc,GAGvBA,SAKRnI,EAAWt+B,EAAIggC,EAAWC,IAG5BhD,EAAU,CAAC5d,EAAO6gB,EAAiB7C,EAAgBqJ,GAAW,EAAOnf,GAAY,KACnF,MAAM,KAAExe,EAAF,MAAQ8E,EAAR,IAAe0P,EAAf,SAAoBkK,EAApB,gBAA8B2Y,EAA9B,UAA+C7Z,EAA/C,UAA0DuB,EAA1D,KAAqEZ,GAAS7H,EAKpF,GAHW,MAAP9B,GACA2f,GAAO3f,EAAK,KAAM8f,EAAgBhe,GAAO,GAE7B,IAAZkH,EAEA,YADA2Z,EAAgB/a,IAAIwhB,WAAWtnB,GAGnC,MAAMunB,EAA+B,EAAZrgB,GAA+BW,EAClD2f,GAAyBlX,GAAetQ,GAC9C,IAAI8hB,EAKJ,GAJI0F,IACC1F,EAAYtzB,GAASA,EAAMi5B,uBAC5BtF,GAAgBL,EAAWjB,EAAiB7gB,GAEhC,EAAZkH,EACAwgB,EAAiB1nB,EAAMsI,UAAW0V,EAAgBqJ,OAEjD,CACD,GAAgB,IAAZngB,EAEA,YADAlH,EAAMoJ,SAASwU,QAAQI,EAAgBqJ,GAGvCE,GACAlV,GAAoBrS,EAAO,KAAM6gB,EAAiB,iBAEtC,GAAZ3Z,EACAlH,EAAMtW,KAAKqhB,OAAO/K,EAAO6gB,EAAiB7C,EAAgB9V,EAAWuZ,GAAW4F,GAE3EtG,IAEJr3B,IAAS2mB,IACL5H,EAAY,GAAiB,GAAZA,GAEtBwZ,EAAgBlB,EAAiBF,EAAiB7C,GAAgB,GAAO,IAEnEt0B,IAAS2mB,IACN,IAAT5H,IAEEP,GAAyB,GAAZhB,IACf+a,EAAgB7Z,EAAUyY,EAAiB7C,GAE3CqJ,GACAtc,EAAO/K,IAGVwnB,IACA1F,EAAYtzB,GAASA,EAAMm5B,mBAC5BJ,IACAzc,IAAsB,KAClBgX,GAAaK,GAAgBL,EAAWjB,EAAiB7gB,GACzDunB,GACIlV,GAAoBrS,EAAO,KAAM6gB,EAAiB,eACvD7C,IAGLjT,EAAS/K,IACX,MAAM,KAAEtW,EAAF,GAAQ/I,EAAR,OAAYigC,EAAZ,WAAoB9Y,GAAe9H,EACzC,GAAItW,IAAS2mB,GAkBT,YAFIuX,EAAejnC,EAAIigC,GAI3B,GAAIl3B,IAAS03B,GAET,YADAO,EAAiB3hB,GAGrB,MAAM6nB,EAAgB,KAClB3I,EAAWv+B,GACPmnB,IAAeA,EAAWsE,WAAatE,EAAWwG,YAClDxG,EAAWwG,cAGnB,GAAsB,EAAlBtO,EAAMkH,WACNY,IACCA,EAAWsE,UAAW,CACvB,MAAM,MAAEwD,EAAF,WAASpB,GAAe1G,EACxBsf,EAAe,IAAMxX,EAAMjvB,EAAIknC,GACjCrZ,EACAA,EAAWxO,EAAMrf,GAAIknC,EAAeT,GAGpCA,SAIJS,KAGFD,EAAiB,CAAC3nB,EAAK+B,KAGzB,IAAI/F,EACJ,MAAOgE,IAAQ+B,EACX/F,EAAOgkB,EAAgBhgB,GACvBif,EAAWjf,GACXA,EAAMhE,EAEVijB,EAAWld,IAET0lB,EAAmB,CAACloB,EAAUwe,EAAgBqJ,KAIhD,MAAM,IAAES,EAAF,MAAO5yB,EAAP,OAAcqZ,EAAd,QAAsBvF,EAAtB,GAA+B+e,GAAOvoB,EAExCsoB,IACAjD,EAAAA,EAAAA,IAAeiD,GAGnB5yB,EAAMP,OAGF4Z,IAEAA,EAAOra,QAAS,EAChB0pB,EAAQ5U,EAASxJ,EAAUwe,EAAgBqJ,IAG3CU,GACAjd,GAAsBid,EAAI/J,GAE9BlT,IAAsB,KAClBtL,EAASkE,aAAc,IACxBsa,GAICA,GACAA,EAAe3U,gBACd2U,EAAeta,aAChBlE,EAAS2kB,WACR3kB,EAAS+kB,eACV/kB,EAASwoB,aAAehK,EAAeiK,YACvCjK,EAAeroB,OACa,IAAxBqoB,EAAeroB,MACfqoB,EAAexc,YAOrBygB,EAAkB,CAAC7Z,EAAUyY,EAAiB7C,EAAgBqJ,GAAW,EAAOnf,GAAY,EAAOnG,EAAQ,KAC7G,IAAK,IAAIve,EAAIue,EAAOve,EAAI4kB,EAAStnB,OAAQ0C,IACrCo6B,EAAQxV,EAAS5kB,GAAIq9B,EAAiB7C,EAAgBqJ,EAAUnf,IAGlE8Y,EAAkBhhB,GACE,EAAlBA,EAAMkH,UACC8Z,EAAgBhhB,EAAMsI,UAAUU,SAErB,IAAlBhJ,EAAMkH,UACClH,EAAMoJ,SAASnN,OAEnBgkB,EAAiBjgB,EAAM4gB,QAAU5gB,EAAMrf,IAE5CkmB,GAAS,CAAC7G,EAAO2gB,EAAWjD,KACjB,MAAT1d,EACI2gB,EAAUuH,QACVtK,EAAQ+C,EAAUuH,OAAQ,KAAM,MAAM,GAI1C1H,EAAMG,EAAUuH,QAAU,KAAMloB,EAAO2gB,EAAW,KAAM,KAAM,KAAMjD,GAExEva,IACAwd,EAAUuH,OAASloB,GAEjByhB,GAAY,CACd7f,EAAG4e,EACHuH,GAAInK,EACJ1F,EAAG+O,EACH5oB,EAAG0M,EACHod,GAAItE,EACJuE,GAAIpG,EACJqG,GAAItF,EACJuF,IAAKxF,EACLj3B,EAAGm1B,EACHuH,EAAGtkC,GAEP,IAAIq4B,GACA4I,GAIJ,OAHIrG,KACCvC,GAAS4I,IAAerG,EAAmB4C,KAEzC,CACH5a,UACAyV,WACAkM,UAAWnM,GAAaxV,GAAQyV,KAGxC,SAASqG,IAAc,OAAE1tB,EAAF,OAAUsZ,GAAUka,GACvCxzB,EAAOiD,aAAeqW,EAAOrW,aAAeuwB,EAahD,SAAS9E,GAAuBlD,EAAIC,EAAIvnB,GAAU,GAC9C,MAAMuvB,EAAMjI,EAAGrY,SACTugB,EAAMjI,EAAGtY,SACf,IAAIzQ,EAAAA,EAAAA,IAAQ+wB,KAAQ/wB,EAAAA,EAAAA,IAAQgxB,GACxB,IAAK,IAAInlC,EAAI,EAAGA,EAAIklC,EAAI5nC,OAAQ0C,IAAK,CAGjC,MAAM6hC,EAAKqD,EAAIllC,GACf,IAAI+hC,EAAKoD,EAAInlC,GACM,EAAf+hC,EAAGre,YAAgCqe,EAAGxE,mBAClCwE,EAAG9c,WAAa,GAAsB,KAAjB8c,EAAG9c,aACxB8c,EAAKoD,EAAInlC,GAAKg/B,GAAemG,EAAInlC,IACjC+hC,EAAG5kC,GAAK0kC,EAAG1kC,IAEVwY,GACDwqB,GAAuB0B,EAAIE,KAW/C,SAASwB,GAAYhuB,GACjB,MAAM6I,EAAI7I,EAAI1X,QACRY,EAAS,CAAC,GAChB,IAAIuB,EAAG8iC,EAAG3B,EAAGjqB,EAAG8S,EAChB,MAAMob,EAAM7vB,EAAIjY,OAChB,IAAK0C,EAAI,EAAGA,EAAIolC,EAAKplC,IAAK,CACtB,MAAMqlC,EAAO9vB,EAAIvV,GACjB,GAAa,IAATqlC,EAAY,CAEZ,GADAvC,EAAIrkC,EAAOA,EAAOnB,OAAS,GACvBiY,EAAIutB,GAAKuC,EAAM,CACfjnB,EAAEpe,GAAK8iC,EACPrkC,EAAOoN,KAAK7L,GACZ,SAEJmhC,EAAI,EACJjqB,EAAIzY,EAAOnB,OAAS,EACpB,MAAO6jC,EAAIjqB,EACP8S,EAAKmX,EAAIjqB,GAAM,EACX3B,EAAI9W,EAAOurB,IAAMqb,EACjBlE,EAAInX,EAAI,EAGR9S,EAAI8S,EAGRqb,EAAO9vB,EAAI9W,EAAO0iC,MACdA,EAAI,IACJ/iB,EAAEpe,GAAKvB,EAAO0iC,EAAI,IAEtB1iC,EAAO0iC,GAAKnhC,IAIxBmhC,EAAI1iC,EAAOnB,OACX4Z,EAAIzY,EAAO0iC,EAAI,GACf,MAAOA,KAAM,EACT1iC,EAAO0iC,GAAKjqB,EACZA,EAAIkH,EAAElH,GAEV,OAAOzY,EAGX,MAAM6mC,GAAcp/B,GAASA,EAAKq/B,aA6MlC,MAEM1Y,GAAWpkB,YAA8DjM,GACzEihC,GAAOh1B,YAA0DjM,GACjEwnB,GAAUvb,YAA6DjM,GACvEohC,GAASn1B,YAA4DjM,GAMrEsnB,GAAa,GACnB,IAAI0hB,GAAe,KAiBnB,SAASC,GAAUC,GAAkB,GACjC5hB,GAAWjY,KAAM25B,GAAeE,EAAkB,KAAO,IAE7D,SAASC,KACL7hB,GAAWvS,MACXi0B,GAAe1hB,GAAWA,GAAWxmB,OAAS,IAAM,KAMxD,IAAIsoC,GAAqB,EAiBzB,SAASjjB,GAAiBjmB,GACtBkpC,IAAsBlpC,EAE1B,SAASmpC,GAAWrpB,GAWhB,OATAA,EAAM+gB,gBACFqI,GAAqB,EAAIJ,IAAgB3O,EAAAA,GAAY,KAEzD8O,KAGIC,GAAqB,GAAKJ,IAC1BA,GAAa35B,KAAK2Q,GAEfA,EAKX,SAASspB,GAAmB5/B,EAAM8E,EAAO4Z,EAAUK,EAAWI,EAAc3B,GACxE,OAAOmiB,GAAWE,GAAgB7/B,EAAM8E,EAAO4Z,EAAUK,EAAWI,EAAc3B,GAAW,IASjG,SAASsiB,GAAY9/B,EAAM8E,EAAO4Z,EAAUK,EAAWI,GACnD,OAAOwgB,GAAW9hB,GAAY7d,EAAM8E,EAAO4Z,EAAUK,EAAWI,GAAc,IAElF,SAAS4gB,GAAQvpC,GACb,QAAOA,IAA8B,IAAtBA,EAAMwpC,YAEzB,SAAStb,GAAgBqS,EAAIC,GAOzB,OAAOD,EAAG/2B,OAASg3B,EAAGh3B,MAAQ+2B,EAAGtgC,MAAQugC,EAAGvgC,IAYhD,MAKM64B,GAAqB,cACrB2Q,GAAe,EAAGxpC,SAAiB,MAAPA,EAAcA,EAAM,KAChDypC,GAAe,EAAG1rB,MAAK2rB,UAASC,aACnB,MAAP5rB,GACFgN,EAAAA,EAAAA,IAAShN,KAAQxE,EAAAA,EAAAA,IAAMwE,KAAQkB,EAAAA,EAAAA,IAAWlB,GACtC,CAAE1a,EAAGgiB,EAA0BnH,EAAGH,EAAKugB,EAAGoL,EAASvmC,IAAKwmC,GACxD5rB,EACJ,KAEV,SAASqrB,GAAgB7/B,EAAM8E,EAAQ,KAAM4Z,EAAW,KAAMK,EAAY,EAAGI,EAAe,KAAM3B,GAAYxd,IAAS2mB,GAAW,EAAI,GAAiB0Z,GAAc,EAAOC,GAAgC,GACxM,MAAMhqB,EAAQ,CACV0pB,aAAa,EACbO,UAAU,EACVvgC,OACA8E,QACArO,IAAKqO,GAASm7B,GAAan7B,GAC3B0P,IAAK1P,GAASo7B,GAAap7B,GAC3B4zB,QAAS3c,EACTqb,aAAc,KACd1Y,WACAE,UAAW,KACXc,SAAU,KACV2G,UAAW,KACXC,WAAY,KACZnI,KAAM,KACNC,WAAY,KACZnnB,GAAI,KACJigC,OAAQ,KACR19B,OAAQ,KACRgnC,aAAc,KACdC,YAAa,EACbjjB,YACAuB,YACAI,eACAkY,gBAAiB,KACjBxgB,WAAY,MAoChB,OAlCIypB,GACAI,GAAkBpqB,EAAOoI,GAET,IAAZlB,GACAxd,EAAKW,UAAU2V,IAGdoI,IAGLpI,EAAMkH,YAAagE,EAAAA,EAAAA,IAAS9C,GACtB,EACA,IAONghB,GAAqB,IAEpBW,GAEDf,KAKChpB,EAAMyI,UAAY,GAAiB,EAAZvB,IAGJ,KAApBlH,EAAMyI,WACNugB,GAAa35B,KAAK2Q,GAEfA,EAEX,MAAMuH,GAAwF8iB,GAC9F,SAASA,GAAa3gC,EAAM8E,EAAQ,KAAM4Z,EAAW,KAAMK,EAAY,EAAGI,EAAe,KAAMkhB,GAAc,GAOzG,GANKrgC,GAAQA,IAASopB,KAIlBppB,EAAO8d,IAEPiiB,GAAQ//B,GAAO,CAIf,MAAM4gC,EAAS1iB,GAAWle,EAAM8E,GAAO,GAavC,OAZI4Z,GACAgiB,GAAkBE,EAAQliB,GAE1BghB,GAAqB,IAAMW,GAAef,KACnB,EAAnBsB,EAAOpjB,UACP8hB,GAAaA,GAAa/nC,QAAQyI,IAAS4gC,EAG3CtB,GAAa35B,KAAKi7B,IAG1BA,EAAO7hB,YAAc,EACd6hB,EAOX,GAJIC,GAAiB7gC,KACjBA,EAAOA,EAAK8gC,WAGZh8B,EAAO,CAEPA,EAAQi8B,GAAmBj8B,GAC3B,IAAMy0B,MAAOyH,EAAT,MAAgBh9B,GAAUc,EAC1Bk8B,KAAUxf,EAAAA,EAAAA,IAASwf,KACnBl8B,EAAMy0B,OAAQ0H,EAAAA,EAAAA,IAAeD,KAE7BtqC,EAAAA,EAAAA,IAASsN,MAGLmQ,EAAAA,EAAAA,IAAQnQ,MAAWiK,EAAAA,EAAAA,IAAQjK,KAC3BA,GAAQ6M,EAAAA,EAAAA,IAAO,GAAI7M,IAEvBc,EAAMd,OAAQk9B,EAAAA,EAAAA,IAAel9B,IAIrC,MAAMwZ,GAAYgE,EAAAA,EAAAA,IAASxhB,GACrB,EACAuf,EAAWvf,GACP,IACAo/B,GAAWp/B,GACP,IACAtJ,EAAAA,EAAAA,IAASsJ,GACL,GACA0V,EAAAA,EAAAA,IAAW1V,GACP,EACA,EAQtB,OAAO6/B,GAAgB7/B,EAAM8E,EAAO4Z,EAAUK,EAAWI,EAAc3B,EAAW6iB,GAAa,GAEnG,SAASU,GAAmBj8B,GACxB,OAAKA,GAEEqP,EAAAA,EAAAA,IAAQrP,IAAUwqB,MAAqBxqB,GACxC+L,EAAAA,EAAAA,IAAO,GAAI/L,GACXA,EAHK,KAKf,SAASoZ,GAAW5H,EAAO6qB,EAAYC,GAAW,GAG9C,MAAM,MAAEt8B,EAAF,IAAS0P,EAAT,UAAcuK,EAAd,SAAyBL,GAAapI,EACtC+qB,EAAcF,EAAaG,GAAWx8B,GAAS,GAAIq8B,GAAcr8B,EACjE87B,EAAS,CACXZ,aAAa,EACbO,UAAU,EACVvgC,KAAMsW,EAAMtW,KACZ8E,MAAOu8B,EACP5qC,IAAK4qC,GAAepB,GAAaoB,GACjC7sB,IAAK2sB,GAAcA,EAAW3sB,IAItB4sB,GAAY5sB,GACNvG,EAAAA,EAAAA,IAAQuG,GACJA,EAAI/O,OAAOy6B,GAAaiB,IACxB,CAAC3sB,EAAK0rB,GAAaiB,IACvBjB,GAAaiB,GACrB3sB,EACNkkB,QAASpiB,EAAMoiB,QACftB,aAAc9gB,EAAM8gB,aACpB1Y,SAEMA,EACNllB,OAAQ8c,EAAM9c,OACdgnC,aAAclqB,EAAMkqB,aACpBC,YAAanqB,EAAMmqB,YACnBjjB,UAAWlH,EAAMkH,UAKjBuB,UAAWoiB,GAAc7qB,EAAMtW,OAAS2mB,IACnB,IAAf5H,EACI,GACY,GAAZA,EACJA,EACNI,aAAc7I,EAAM6I,aACpBkY,gBAAiB/gB,EAAM+gB,gBACvBxgB,WAAYP,EAAMO,WAClBsH,KAAM7H,EAAM6H,KACZC,WAAY9H,EAAM8H,WAKlBQ,UAAWtI,EAAMsI,UACjBc,SAAUpJ,EAAMoJ,SAChB2G,UAAW/P,EAAM+P,WAAanI,GAAW5H,EAAM+P,WAC/CC,WAAYhQ,EAAMgQ,YAAcpI,GAAW5H,EAAMgQ,YACjDrvB,GAAIqf,EAAMrf,GACVigC,OAAQ5gB,EAAM4gB,QAElB,OAAO0J,EAgBX,SAASW,GAAgBC,EAAO,IAAKC,EAAO,GACxC,OAAO5jB,GAAY0Z,GAAM,KAAMiK,EAAMC,GAuBzC,SAAS/jB,GAAekG,GACpB,OAAa,MAATA,GAAkC,mBAAVA,EAEjB/F,GAAYC,KAEd7P,EAAAA,EAAAA,IAAQ2V,GAEN/F,GAAY8I,GAAU,KAE7B/C,EAAMjsB,SAEgB,kBAAVisB,EAGLkV,GAAelV,GAIf/F,GAAY0Z,GAAM,KAAMzhC,OAAO8tB,IAI9C,SAASkV,GAAelV,GACpB,OAAoB,OAAbA,EAAM3sB,IAAe2sB,EAAM8d,KAAO9d,EAAQ1F,GAAW0F,GAEhE,SAAS8c,GAAkBpqB,EAAOoI,GAC9B,IAAI1e,EAAO,EACX,MAAM,UAAEwd,GAAclH,EACtB,GAAgB,MAAZoI,EACAA,EAAW,UAEV,IAAIzQ,EAAAA,EAAAA,IAAQyQ,GACb1e,EAAO,QAEN,GAAwB,kBAAb0e,EAAuB,CACnC,GAAgB,GAAZlB,EAAmD,CAEnD,MAAMmkB,EAAOjjB,EAASgF,QAOtB,YANIie,IAEAA,EAAKhlB,KAAOglB,EAAKnlB,IAAK,GACtBkkB,GAAkBpqB,EAAOqrB,KACzBA,EAAKhlB,KAAOglB,EAAKnlB,IAAK,KAIzB,CACDxc,EAAO,GACP,MAAM4hC,EAAWljB,EAASwM,EACrB0W,GAActS,MAAqB5Q,EAGlB,IAAbkjB,GAAkC9lB,IAGE,IAArCA,EAAyBkB,MAAMkO,EAC/BxM,EAASwM,EAAI,GAGbxM,EAASwM,EAAI,EACb5U,EAAMyI,WAAa,OAVvBL,EAASoT,KAAOhW,QAenBpG,EAAAA,EAAAA,IAAWgJ,IAChBA,EAAW,CAAEgF,QAAShF,EAAUoT,KAAMhW,GACtC9b,EAAO,KAGP0e,EAAW5oB,OAAO4oB,GAEF,GAAZlB,GACAxd,EAAO,GACP0e,EAAW,CAAC6iB,GAAgB7iB,KAG5B1e,EAAO,GAGfsW,EAAMoI,SAAWA,EACjBpI,EAAMkH,WAAaxd,EAEvB,SAASshC,MAAclyB,GACnB,MAAMqX,EAAM,GACZ,IAAK,IAAI3sB,EAAI,EAAGA,EAAIsV,EAAKhY,OAAQ0C,IAAK,CAClC,MAAM+nC,EAAUzyB,EAAKtV,GACrB,IAAK,MAAMrD,KAAOorC,EACd,GAAY,UAARprC,EACIgwB,EAAI8S,QAAUsI,EAAQtI,QACtB9S,EAAI8S,OAAQ0H,EAAAA,EAAAA,IAAe,CAACxa,EAAI8S,MAAOsI,EAAQtI,cAGlD,GAAY,UAAR9iC,EACLgwB,EAAIziB,OAAQk9B,EAAAA,EAAAA,IAAe,CAACza,EAAIziB,MAAO69B,EAAQ79B,aAE9C,IAAI6X,EAAAA,EAAAA,IAAKplB,GAAM,CAChB,MAAMq+B,EAAWrO,EAAIhwB,GACfqrC,EAAWD,EAAQprC,IACrBqrC,GACAhN,IAAagN,IACX7zB,EAAAA,EAAAA,IAAQ6mB,IAAaA,EAASx9B,SAASwqC,KACzCrb,EAAIhwB,GAAOq+B,EACL,GAAGrvB,OAAOqvB,EAAUgN,GACpBA,OAGG,KAARrrC,IACLgwB,EAAIhwB,GAAOorC,EAAQprC,IAI/B,OAAOgwB,EAEX,SAASgS,GAAgBnT,EAAMxP,EAAUQ,EAAOgI,EAAY,MACxDrI,EAA2BqP,EAAMxP,EAAU,EAAoB,CAC3DQ,EACAgI,IAIR,MAAMyjB,GAAkB3P,KACxB,IAAI4P,GAAQ,EACZ,SAAS1H,GAAwBhkB,EAAO3L,EAAQ+U,GAC5C,MAAM1f,EAAOsW,EAAMtW,KAEb6W,GAAclM,EAASA,EAAOkM,WAAaP,EAAMO,aAAekrB,GAChEjsB,EAAW,CACbnP,IAAKq7B,KACL1rB,QACAtW,OACA2K,SACAkM,aACAkH,KAAM,KACNxL,KAAM,KACN+M,QAAS,KACT/T,OAAQ,KACRsZ,OAAQ,KACRrZ,MAAO,IAAIlB,EAAAA,IAAY,GACvB6S,OAAQ,KACRnJ,MAAO,KACP8Z,QAAS,KACTmU,YAAa,KACbnlB,UAAW,KACXgD,SAAUnV,EAASA,EAAOmV,SAAW7nB,OAAOjC,OAAO6gB,EAAWiJ,UAC9DqL,YAAa,KACb/N,YAAa,GAEb8P,WAAY,KACZC,WAAY,KAEZpQ,aAAcyT,GAAsBxwB,EAAM6W,GAC1CmI,aAAcjE,EAAsB/a,EAAM6W,GAE1CqG,KAAM,KACNpC,QAAS,KAETyU,cAAetV,EAAAA,GAEfqD,aAActd,EAAKsd,aAEnBlB,IAAKnC,EAAAA,GACLvZ,KAAMuZ,EAAAA,GACNnV,MAAOmV,EAAAA,GACPgD,MAAOhD,EAAAA,GACP+C,MAAO/C,EAAAA,GACPuQ,KAAMvQ,EAAAA,GACNoD,WAAYpD,EAAAA,GACZioB,aAAc,KAEdxiB,WACA4e,WAAY5e,EAAWA,EAAS6e,UAAY,EAC5C9D,SAAU,KACVI,eAAe,EAGf7Y,WAAW,EACXhI,aAAa,EACbuN,eAAe,EACf4a,GAAI,KACJre,EAAG,KACHwX,GAAI,KACJ9M,EAAG,KACHwM,GAAI,KACJC,EAAG,KACHoD,GAAI,KACJD,IAAK,KACLgE,GAAI,KACJ7jC,EAAG,KACH8jC,IAAK,KACLC,IAAK,KACL3rB,GAAI,KACJ4rB,GAAI,MAcR,OARIzsB,EAASsG,IAAM,CAAE8O,EAAGpV,GAExBA,EAASiI,KAAOpT,EAASA,EAAOoT,KAAOjI,EACvCA,EAASoH,KAAOrD,EAAO3c,KAAK,KAAM4Y,GAE9BQ,EAAMksB,IACNlsB,EAAMksB,GAAG1sB,GAENA,EAEX,IAAI+J,GAAkB,KACtB,MAAM2D,GAAqB,IAAM3D,IAAmB/D,EAC9C4F,GAAsB5L,IACxB+J,GAAkB/J,EAClBA,EAAStK,MAAMT,MAEb4W,GAAuB,KACzB9B,IAAmBA,GAAgBrU,MAAMR,MACzC6U,GAAkB,MAStB,SAASkK,GAAoBjU,GACzB,OAAkC,EAA3BA,EAASQ,MAAMkH,UAE1B,IAyHIilB,GACAC,GA1HAvhB,IAAwB,EAC5B,SAASqZ,GAAe1kB,EAAUX,GAAQ,GACtCgM,GAAwBhM,EACxB,MAAM,MAAErQ,EAAF,SAAS4Z,GAAa5I,EAASQ,MAC/B+Y,EAAatF,GAAoBjU,GACvCsZ,GAAUtZ,EAAUhR,EAAOuqB,EAAYla,GACvC6c,GAAUlc,EAAU4I,GACpB,MAAMikB,EAActT,EACduT,GAAuB9sB,EAAUX,QACjC7e,EAEN,OADA6qB,IAAwB,EACjBwhB,EAEX,SAASC,GAAuB9sB,EAAUX,GAEtC,MAAM0H,EAAY/G,EAAS9V,KAwB3B8V,EAASqV,YAAclzB,OAAOjC,OAAO,MAGrC8f,EAAS9B,OAAQK,EAAAA,EAAAA,IAAQ,IAAIJ,MAAM6B,EAASsG,IAAK6O,KAKjD,MAAM,MAAE1H,GAAU1G,EAClB,GAAI0G,EAAO,CACP,MAAM2e,EAAgBpsB,EAASosB,aAC3B3e,EAAMnsB,OAAS,EAAIyrC,GAAmB/sB,GAAY,KACtD4L,GAAmB5L,IACnB3I,EAAAA,EAAAA,MACA,MAAMw1B,EAAc9sB,EAAsB0N,EAAOzN,EAAU,EAAwB,CAA6EA,EAAShR,MAAOo9B,IAGhL,IAFA90B,EAAAA,EAAAA,MACAuU,MACIzL,EAAAA,EAAAA,IAAUysB,GAAc,CAExB,GADAA,EAAYxqB,KAAKwJ,GAAsBA,IACnCxM,EAEA,OAAOwtB,EACFxqB,MAAM2qB,IACPC,GAAkBjtB,EAAUgtB,EAAgB3tB,MAE3CgB,OAAM6sB,IACPhtB,EAAYgtB,EAAGltB,EAAU,MAM7BA,EAAS2kB,SAAWkI,OAWxBI,GAAkBjtB,EAAU6sB,EAAaxtB,QAI7C8tB,GAAqBntB,EAAUX,GAGvC,SAAS4tB,GAAkBjtB,EAAU6sB,EAAaxtB,IAC1CO,EAAAA,EAAAA,IAAWitB,GAEP7sB,EAAS9V,KAAKkjC,kBAGdptB,EAASqtB,UAAYR,EAGrB7sB,EAASqH,OAASwlB,GAGjBjsC,EAAAA,EAAAA,IAASisC,KAUd7sB,EAASuH,YAAatI,EAAAA,EAAAA,IAAU4tB,IAQpCM,GAAqBntB,EAAUX,GAkBnC,SAAS8tB,GAAqBntB,EAAUX,EAAOiuB,GAC3C,MAAMvmB,EAAY/G,EAAS9V,KAG3B,IAAK8V,EAASqH,OAAQ,CAGlB,IAAKhI,GAASstB,KAAY5lB,EAAUM,OAAQ,CACxC,MAAMkmB,EAAWxmB,EAAUwmB,SAC3B,GAAIA,EAAU,CACL9nC,EAGL,MAAM,gBAAE+nC,EAAF,gBAAmB5Q,GAAoB5c,EAASe,WAAWC,QAC3D,WAAEysB,EAAY7Q,gBAAiB8Q,GAA6B3mB,EAC5D4mB,GAAuB5yB,EAAAA,EAAAA,KAAOA,EAAAA,EAAAA,IAAO,CACvCyyB,kBACAC,cACD7Q,GAAkB8Q,GACrB3mB,EAAUM,OAASslB,GAAQY,EAAUI,IAM7C3tB,EAASqH,OAAUN,EAAUM,QAAUxH,EAAAA,GAInC+sB,IACAA,GAAiB5sB,GAKrB4L,GAAmB5L,IACnB3I,EAAAA,EAAAA,MACAue,GAAa5V,IACb1I,EAAAA,EAAAA,MACAuU,KAiBR,SAAS+hB,GAAiB5tB,GACtB,OAAO,IAAI7B,MAAM6B,EAASmH,MAgBpB,CACEliB,IAAIvB,EAAQ/C,GAER,OADA4W,EAAAA,EAAAA,GAAMyI,EAAU,MAAiB,UAC1Btc,EAAO/C,MAI9B,SAASosC,GAAmB/sB,GACxB,MAAMmX,EAASa,IAIXhY,EAASgY,QAAUA,GAAW,IAElC,IAAI7Q,EAkBA,MAAO,CACCA,YACA,OAAOA,IAAUA,EAAQymB,GAAiB5tB,KAE9CkH,MAAOlH,EAASkH,MAChBE,KAAMpH,EAASoH,KACf+P,UAIZ,SAASjD,GAAelU,GACpB,GAAIA,EAASgY,QACT,OAAQhY,EAASmsB,cACZnsB,EAASmsB,YAAc,IAAIhuB,OAAMc,EAAAA,EAAAA,KAAUV,EAAAA,EAAAA,IAAQyB,EAASgY,UAAW,CACpE/yB,IAAIvB,EAAQ/C,GACR,OAAIA,KAAO+C,EACAA,EAAO/C,GAETA,KAAOwzB,GACLA,GAAoBxzB,GAAKqf,QAD/B,MASzB,SAASyT,GAAiB1M,EAAW8mB,GAAkB,GACnD,OAAOjuB,EAAAA,EAAAA,IAAWmH,GACZA,EAAU+mB,aAAe/mB,EAAUpiB,KACnCoiB,EAAUpiB,MAASkpC,GAAmB9mB,EAAUgnB,OA0B1D,SAAShD,GAAiBrqC,GACtB,OAAOkf,EAAAA,EAAAA,IAAWlf,IAAU,cAAeA,EAG/C,MAAM8X,GAAY,CAACiH,EAAiBC,KAEzBsuB,EAAAA,EAAAA,IAAWvuB,EAAiBC,EAAc2L,IA4JrD,SAAS8M,GAAEjuB,EAAM+jC,EAAiBrlB,GAC9B,MAAMvT,EAAIhT,UAAUf,OACpB,OAAU,IAAN+T,GACIzU,EAAAA,EAAAA,IAASqtC,MAAqB91B,EAAAA,EAAAA,IAAQ81B,GAElChE,GAAQgE,GACDlmB,GAAY7d,EAAM,KAAM,CAAC+jC,IAG7BlmB,GAAY7d,EAAM+jC,GAIlBlmB,GAAY7d,EAAM,KAAM+jC,IAI/B54B,EAAI,EACJuT,EAAWtoB,MAAMC,UAAUsB,MAAMqF,KAAK7E,UAAW,GAEtC,IAANgT,GAAW40B,GAAQrhB,KACxBA,EAAW,CAACA,IAETb,GAAY7d,EAAM+jC,EAAiBrlB,IAI5Bnc,OAAiE,IAyOvF,MAAMlH,GAAU,U,4GCnpPhB,MAAM2oC,EAAQ,6BACRC,EAA2B,qBAAbjpC,SAA2BA,SAAW,KACpDkpC,EAAoBD,GAAqBA,EAAI/oC,cAAc,YAC3DipC,EAAU,CACZ7O,OAAQ,CAAC1R,EAAOjZ,EAAQusB,KACpBvsB,EAAOy5B,aAAaxgB,EAAOsT,GAAU,OAEzC7V,OAAQuC,IACJ,MAAMjZ,EAASiZ,EAAMwS,WACjBzrB,GACAA,EAAO05B,YAAYzgB,IAG3B1oB,cAAe,CAAC5C,EAAK07B,EAAOqE,EAAIvzB,KAC5B,MAAM7N,EAAK+8B,EACLiQ,EAAIK,gBAAgBN,EAAO1rC,GAC3B2rC,EAAI/oC,cAAc5C,EAAK+/B,EAAK,CAAEA,WAAO/hC,GAI3C,MAHY,WAARgC,GAAoBwM,GAA2B,MAAlBA,EAAMy/B,UACnCttC,EAAGutC,aAAa,WAAY1/B,EAAMy/B,UAE/BttC,GAEX2+B,WAAY4L,GAAQyC,EAAIQ,eAAejD,GACvC1L,cAAe0L,GAAQyC,EAAInO,cAAc0L,GACzCxL,QAAS,CAAC0O,EAAMlD,KACZkD,EAAKC,UAAYnD,GAErBtL,eAAgB,CAACj/B,EAAIuqC,KACjBvqC,EAAG2tC,YAAcpD,GAErBpL,WAAYsO,GAAQA,EAAKtO,WACzBE,YAAaoO,GAAQA,EAAKpO,YAC1BuO,cAAeC,GAAYb,EAAIY,cAAcC,GAC7CtO,WAAWv/B,EAAI6Q,GACX7Q,EAAGutC,aAAa18B,EAAI,KAExB4uB,UAAUz/B,GACN,MAAM2pC,EAAS3pC,EAAGy/B,WAAU,GAa5B,MAHK,WAAWz/B,IACZ2pC,EAAOtrB,OAASre,EAAGqe,QAEhBsrB,GAMXhK,oBAAoBtzB,EAASqH,EAAQusB,EAAQlD,EAAO3b,EAAOC,GAEvD,MAAMysB,EAAS7N,EAASA,EAAO8N,gBAAkBr6B,EAAOs6B,UAIxD,GAAI5sB,IAAUA,IAAUC,GAAOD,EAAMie,cAEjC,MAAO,EAEH,GADA3rB,EAAOy5B,aAAa/rB,EAAMqe,WAAU,GAAOQ,GACvC7e,IAAUC,KAASD,EAAQA,EAAMie,aACjC,UAGP,CAED4N,EAAkBgB,UAAYlR,EAAS,QAAO1wB,UAAkBA,EAChE,MAAM+/B,EAAWa,EAAkB5gC,QACnC,GAAI0wB,EAAO,CAEP,MAAMjrB,EAAUs6B,EAAS8B,WACzB,MAAOp8B,EAAQo8B,WACX9B,EAASn/B,YAAY6E,EAAQo8B,YAEjC9B,EAASgB,YAAYt7B,GAEzB4B,EAAOy5B,aAAaf,EAAUnM,GAElC,MAAO,CAEH6N,EAASA,EAAOzO,YAAc3rB,EAAOw6B,WAErCjO,EAASA,EAAO8N,gBAAkBr6B,EAAOs6B,aAOrD,SAASG,EAAWnuC,EAAIT,EAAOw9B,GAI3B,MAAMqR,EAAoBpuC,EAAGquC,KACzBD,IACA7uC,GAASA,EAAQ,CAACA,KAAU6uC,GAAqB,IAAIA,IAAoBvjC,KAAK,MAErE,MAATtL,EACAS,EAAGsuC,gBAAgB,SAEdvR,EACL/8B,EAAGutC,aAAa,QAAShuC,GAGzBS,EAAGuuC,UAAYhvC,EAIvB,SAASivC,EAAWxuC,EAAIglB,EAAM1J,GAC1B,MAAMvO,EAAQ/M,EAAG+M,MACX0hC,GAAclkB,EAAAA,EAAAA,IAASjP,GAC7B,GAAIA,IAASmzB,EAAa,CACtB,IAAK,MAAMjvC,KAAO8b,EACdozB,EAAS3hC,EAAOvN,EAAK8b,EAAK9b,IAE9B,GAAIwlB,KAASuF,EAAAA,EAAAA,IAASvF,GAClB,IAAK,MAAMxlB,KAAOwlB,EACG,MAAb1J,EAAK9b,IACLkvC,EAAS3hC,EAAOvN,EAAK,QAKhC,CACD,MAAMmvC,EAAiB5hC,EAAMC,QACzByhC,EACIzpB,IAAS1J,IACTvO,EAAM6hC,QAAUtzB,GAGf0J,GACLhlB,EAAGsuC,gBAAgB,SAKnB,SAAUtuC,IACV+M,EAAMC,QAAU2hC,IAI5B,MAAME,EAAc,iBACpB,SAASH,EAAS3hC,EAAOvJ,EAAM4L,GAC3B,IAAI4H,EAAAA,EAAAA,IAAQ5H,GACRA,EAAI6H,SAAQ8C,GAAK20B,EAAS3hC,EAAOvJ,EAAMuW,UAKvC,GAFW,MAAP3K,IACAA,EAAM,IACN5L,EAAK0f,WAAW,MAEhBnW,EAAM+hC,YAAYtrC,EAAM4L,OAEvB,CACD,MAAM2/B,EAAWC,EAAWjiC,EAAOvJ,GAC/BqrC,EAAY7sC,KAAKoN,GAEjBrC,EAAM+hC,aAAYnrB,EAAAA,EAAAA,IAAUorB,GAAW3/B,EAAI1N,QAAQmtC,EAAa,IAAK,aAGrE9hC,EAAMgiC,GAAY3/B,GAKlC,MAAM6/B,EAAW,CAAC,SAAU,MAAO,MAC7BC,EAAc,GACpB,SAASF,EAAWjiC,EAAOoiC,GACvB,MAAMhrB,EAAS+qB,EAAYC,GAC3B,GAAIhrB,EACA,OAAOA,EAEX,IAAI3gB,GAAOkgB,EAAAA,EAAAA,IAASyrB,GACpB,GAAa,WAAT3rC,GAAqBA,KAAQuJ,EAC7B,OAAQmiC,EAAYC,GAAW3rC,EAEnCA,GAAO+uB,EAAAA,EAAAA,IAAW/uB,GAClB,IAAK,IAAIX,EAAI,EAAGA,EAAIosC,EAAS9uC,OAAQ0C,IAAK,CACtC,MAAMksC,EAAWE,EAASpsC,GAAKW,EAC/B,GAAIurC,KAAYhiC,EACZ,OAAQmiC,EAAYC,GAAWJ,EAGvC,OAAOI,EAGX,MAAMC,EAAU,+BAChB,SAASC,EAAUrvC,EAAIR,EAAKD,EAAOw9B,EAAOle,GACtC,GAAIke,GAASv9B,EAAI0jB,WAAW,UACX,MAAT3jB,EACAS,EAAGsvC,kBAAkBF,EAAS5vC,EAAIkB,MAAM,EAAGlB,EAAIW,SAG/CH,EAAGuvC,eAAeH,EAAS5vC,EAAKD,OAGnC,CAGD,MAAMiwC,GAAYC,EAAAA,EAAAA,IAAqBjwC,GAC1B,MAATD,GAAkBiwC,KAAcE,EAAAA,EAAAA,IAAmBnwC,GACnDS,EAAGsuC,gBAAgB9uC,GAGnBQ,EAAGutC,aAAa/tC,EAAKgwC,EAAY,GAAKjwC,IAOlD,SAASowC,EAAa3vC,EAAIR,EAAKD,EAI/BmoB,EAAcwY,EAAiB7C,EAAgBiE,GAC3C,GAAY,cAAR9hC,GAA+B,gBAARA,EAKvB,OAJIkoB,GACA4Z,EAAgB5Z,EAAcwY,EAAiB7C,QAEnDr9B,EAAGR,GAAgB,MAATD,EAAgB,GAAKA,GAGnC,GAAY,UAARC,GACe,aAAfQ,EAAG4vC,UAEF5vC,EAAG4vC,QAAQvvC,SAAS,KAAM,CAG3BL,EAAGqe,OAAS9e,EACZ,MAAMqX,EAAoB,MAATrX,EAAgB,GAAKA,EAWtC,OAVIS,EAAGT,QAAUqX,GAIE,WAAf5W,EAAG4vC,UACH5vC,EAAGT,MAAQqX,QAEF,MAATrX,GACAS,EAAGsuC,gBAAgB9uC,IAI3B,IAAIqwC,GAAa,EACjB,GAAc,KAAVtwC,GAAyB,MAATA,EAAe,CAC/B,MAAMwJ,SAAc/I,EAAGR,GACV,YAATuJ,EAEAxJ,GAAQmwC,EAAAA,EAAAA,IAAmBnwC,GAEb,MAATA,GAA0B,WAATwJ,GAEtBxJ,EAAQ,GACRswC,GAAa,GAEC,WAAT9mC,IAGLxJ,EAAQ,EACRswC,GAAa,GAMrB,IACI7vC,EAAGR,GAAOD,EAEd,MAAOwsC,GACEznC,EAKTurC,GAAc7vC,EAAGsuC,gBAAgB9uC,GAIrC,MAAOswC,EAASC,GAAoC,MAChD,IAAID,EAAUE,KAAKC,IACfF,GAAqB,EACzB,GAAsB,qBAAX9oC,OAAwB,CAK3B+oC,KAAKC,MAAQlsC,SAASmsC,YAAY,SAASC,YAI3CL,EAAUvU,YAAY0U,IAAIhqC,KAAKs1B,cAInC,MAAM6U,EAAUC,UAAUhsC,UAAUF,MAAM,mBAC1C4rC,KAAwBK,GAAW92B,OAAO82B,EAAQ,KAAO,IAE7D,MAAO,CAACN,EAASC,IAnB+B,GAuBpD,IAAIO,EAAY,EAChB,MAAMrvB,EAAkBL,QAAQC,UAC1B0vB,EAAQ,KACVD,EAAY,GAEVE,EAAS,IAAMF,IAAcrvB,EAAEC,KAAKqvB,GAASD,EAAYR,KAC/D,SAASW,EAAiBzwC,EAAI6iB,EAAOW,EAASlgB,GAC1CtD,EAAGywC,iBAAiB5tB,EAAOW,EAASlgB,GAExC,SAASotC,EAAoB1wC,EAAI6iB,EAAOW,EAASlgB,GAC7CtD,EAAG0wC,oBAAoB7tB,EAAOW,EAASlgB,GAE3C,SAASqtC,EAAW3wC,EAAImvC,EAASyB,EAAWC,EAAWhyB,EAAW,MAE9D,MAAMiyB,EAAW9wC,EAAG+wC,OAAS/wC,EAAG+wC,KAAO,IACjCC,EAAkBF,EAAS3B,GACjC,GAAI0B,GAAaG,EAEbA,EAAgBzxC,MAAQsxC,MAEvB,CACD,MAAOrtC,EAAMF,GAAW2tC,EAAU9B,GAClC,GAAI0B,EAAW,CAEX,MAAMK,EAAWJ,EAAS3B,GAAWgC,EAAcN,EAAWhyB,GAC9D4xB,EAAiBzwC,EAAIwD,EAAM0tC,EAAS5tC,QAE/B0tC,IAELN,EAAoB1wC,EAAIwD,EAAMwtC,EAAiB1tC,GAC/CwtC,EAAS3B,QAAW9vC,IAIhC,MAAM+xC,EAAoB,4BAC1B,SAASH,EAAUztC,GACf,IAAIF,EACJ,GAAI8tC,EAAkBpvC,KAAKwB,GAAO,CAE9B,IAAI+zB,EADJj0B,EAAU,GAEV,MAAQi0B,EAAI/zB,EAAKW,MAAMitC,GACnB5tC,EAAOA,EAAK9C,MAAM,EAAG8C,EAAKrD,OAASo3B,EAAE,GAAGp3B,QACxCmD,EAAQi0B,EAAE,GAAGztB,gBAAiB,EAGtC,MAAO,EAAC6Z,EAAAA,EAAAA,IAAUngB,EAAK9C,MAAM,IAAK4C,GAEtC,SAAS6tC,EAAcE,EAAcxyB,GACjC,MAAMqyB,EAAWnF,IAOb,MAAMoE,EAAYpE,EAAEoE,WAAaL,KAC7BC,GAAsBI,GAAae,EAAQI,SAAW,KACtDtyB,EAAAA,EAAAA,IAA2BuyB,EAA8BxF,EAAGmF,EAAQ3xC,OAAQsf,EAAU,EAA8B,CAACktB,KAK7H,OAFAmF,EAAQ3xC,MAAQ8xC,EAChBH,EAAQI,SAAWd,IACZU,EAEX,SAASK,EAA8BxF,EAAGxsC,GACtC,IAAIyX,EAAAA,EAAAA,IAAQzX,GAAQ,CAChB,MAAMiyC,EAAezF,EAAE0F,yBAKvB,OAJA1F,EAAE0F,yBAA2B,KACzBD,EAAazrC,KAAKgmC,GAClBA,EAAE2F,UAAW,GAEVnyC,EAAMqY,KAAItR,GAAOylC,IAAOA,EAAE2F,UAAYprC,GAAMA,EAAGylC,KAGtD,OAAOxsC,EAIf,MAAMoyC,EAAa,WACbnT,EAAY,CAACx+B,EAAIR,EAAKoxC,EAAWC,EAAW9T,GAAQ,EAAOrV,EAAcwY,EAAiB7C,EAAgBiE,KAChG,UAAR9hC,EACA2uC,EAAWnuC,EAAI6wC,EAAW9T,GAEb,UAARv9B,EACLgvC,EAAWxuC,EAAI4wC,EAAWC,IAErBjsB,EAAAA,EAAAA,IAAKplB,IAELyjB,EAAAA,EAAAA,IAAgBzjB,IACjBmxC,EAAW3wC,EAAIR,EAAKoxC,EAAWC,EAAW3Q,IAG9B,MAAX1gC,EAAI,IACLA,EAAMA,EAAIkB,MAAM,GAAK,GACZ,MAAXlB,EAAI,IACEA,EAAMA,EAAIkB,MAAM,GAAK,GACvBkxC,EAAgB5xC,EAAIR,EAAKqxC,EAAW9T,IAC1C4S,EAAa3vC,EAAIR,EAAKqxC,EAAWnpB,EAAcwY,EAAiB7C,EAAgBiE,IAOpE,eAAR9hC,EACAQ,EAAG6xC,WAAahB,EAEH,gBAARrxC,IACLQ,EAAG8xC,YAAcjB,GAErBxB,EAAUrvC,EAAIR,EAAKqxC,EAAW9T,KAGtC,SAAS6U,EAAgB5xC,EAAIR,EAAKD,EAAOw9B,GACrC,OAAIA,EAGY,cAARv9B,GAA+B,gBAARA,MAIvBA,KAAOQ,GAAM2xC,EAAW3vC,KAAKxC,KAAQif,EAAAA,EAAAA,IAAWlf,IAW5C,eAARC,GAAgC,cAARA,GAA+B,cAARA,IAKvC,SAARA,KAIQ,SAARA,GAAiC,UAAfQ,EAAG4vC,YAIb,SAARpwC,GAAiC,aAAfQ,EAAG4vC,aAIrB+B,EAAW3vC,KAAKxC,MAAQ+qB,EAAAA,EAAAA,IAAShrB,KAG9BC,KAAOQ,MAiBwB,qBAAhB+xC,aAA8BA,YA2RxD,MAAMC,EAAa,aACbC,EAAY,YAGZC,EAAa,CAACrkC,GAASkY,YAAYiR,EAAAA,EAAAA,GAAE7I,EAAAA,GAAgBgkB,EAAuBtkC,GAAQkY,GAC1FmsB,EAAWvF,YAAc,aACzB,MAAMyF,EAA+B,CACjC5uC,KAAM3E,OACNkK,KAAMlK,OACNwzC,IAAK,CACDtpC,KAAMyiB,QACNiB,SAAS,GAEb6lB,SAAU,CAACzzC,OAAQya,OAAQtY,QAC3BuxC,eAAgB1zC,OAChB2zC,iBAAkB3zC,OAClB4zC,aAAc5zC,OACd6zC,gBAAiB7zC,OACjB8zC,kBAAmB9zC,OACnB+zC,cAAe/zC,OACfg0C,eAAgBh0C,OAChBi0C,iBAAkBj0C,OAClBk0C,aAAcl0C,QAQZuvB,GAN6B8jB,EAAWrkC,OAC5B+L,EAAAA,EAAAA,IAAO,GAAIuU,EAAAA,GAAAA,MAAsBikB,GAKlC,CAAC/jB,EAAMlW,EAAO,OACvBnB,EAAAA,EAAAA,IAAQqX,GACRA,EAAKpX,SAAQ+f,GAAKA,KAAK7e,KAElBkW,GACLA,KAAQlW,KAOV66B,EAAuB3kB,KAClBA,KACDrX,EAAAA,EAAAA,IAAQqX,GACJA,EAAKtH,MAAKiQ,GAAKA,EAAE72B,OAAS,IAC1BkuB,EAAKluB,OAAS,GAG5B,SAASgyC,EAAuBrlB,GAC5B,MAAMmmB,EAAY,GAClB,IAAK,MAAMzzC,KAAOstB,EACRttB,KAAO4yC,IACTa,EAAUzzC,GAAOstB,EAASttB,IAGlC,IAAqB,IAAjBstB,EAASulB,IACT,OAAOY,EAEX,MAAM,KAAEzvC,EAAO,IAAT,KAAcuF,EAAd,SAAoBupC,EAApB,eAA8BC,EAAkB,GAAE/uC,eAAlD,iBAAqEgvC,EAAoB,GAAEhvC,iBAA3F,aAAgHivC,EAAgB,GAAEjvC,aAAlI,gBAAmJkvC,EAAkBH,EAArK,kBAAqLI,EAAoBH,EAAzM,cAA2NI,EAAgBH,EAA3O,eAAyPI,EAAkB,GAAErvC,eAA7Q,iBAAgSsvC,EAAoB,GAAEtvC,iBAAtT,aAA2UuvC,EAAgB,GAAEvvC,cAAoBspB,EACjXomB,EAAYC,EAAkBb,GAC9Bc,EAAgBF,GAAaA,EAAU,GACvCG,EAAgBH,GAAaA,EAAU,IACvC,cAAExnB,EAAF,QAAiBC,EAAjB,iBAA0BE,EAA1B,QAA4CE,EAA5C,iBAAqDE,EAArD,eAAuEC,EAAiBR,EAAxF,SAAuGS,EAAWR,EAAlH,kBAA2HU,EAAoBR,GAAqBonB,EACpKK,EAAc,CAACtzC,EAAIuzC,EAAUh4B,KAC/Bi4B,EAAsBxzC,EAAIuzC,EAAWX,EAAgBH,GACrDe,EAAsBxzC,EAAIuzC,EAAWZ,EAAoBH,GACzDj3B,GAAQA,KAENk4B,EAAc,CAACzzC,EAAIub,KACrBvb,EAAG0zC,YAAa,EAChBF,EAAsBxzC,EAAI6yC,GAC1BW,EAAsBxzC,EAAI+yC,GAC1BS,EAAsBxzC,EAAI8yC,GAC1Bv3B,GAAQA,KAENo4B,EAAiBJ,GACZ,CAACvzC,EAAIub,KACR,MAAM8S,EAAOklB,EAAWpnB,EAAWR,EAC7B9K,EAAU,IAAMyyB,EAAYtzC,EAAIuzC,EAAUh4B,GAChD6S,EAASC,EAAM,CAACruB,EAAI6gB,IACpB+yB,GAAU,KACNJ,EAAsBxzC,EAAIuzC,EAAWb,EAAkBH,GACvDsB,EAAmB7zC,EAAIuzC,EAAWX,EAAgBH,GAC7CO,EAAoB3kB,IACrBylB,EAAmB9zC,EAAI+I,EAAMqqC,EAAevyB,OAK5D,OAAOjH,EAAAA,EAAAA,IAAOq5B,EAAW,CACrBvnB,cAAc1rB,GACVouB,EAAS1C,EAAe,CAAC1rB,IACzB6zC,EAAmB7zC,EAAIuyC,GACvBsB,EAAmB7zC,EAAIwyC,IAE3BtmB,eAAelsB,GACXouB,EAASlC,EAAgB,CAAClsB,IAC1B6zC,EAAmB7zC,EAAI0yC,GACvBmB,EAAmB7zC,EAAI2yC,IAE3BhnB,QAASgoB,GAAc,GACvBxnB,SAAUwnB,GAAc,GACxB5nB,QAAQ/rB,EAAIub,GACRvb,EAAG0zC,YAAa,EAChB,MAAM7yB,EAAU,IAAM4yB,EAAYzzC,EAAIub,GACtCs4B,EAAmB7zC,EAAI6yC,GAEvBkB,IACAF,EAAmB7zC,EAAI8yC,GACvBc,GAAU,KACD5zC,EAAG0zC,aAIRF,EAAsBxzC,EAAI6yC,GAC1BgB,EAAmB7zC,EAAI+yC,GAClBC,EAAoBjnB,IACrB+nB,EAAmB9zC,EAAI+I,EAAMsqC,EAAexyB,OAGpDuN,EAASrC,EAAS,CAAC/rB,EAAI6gB,KAE3BgL,iBAAiB7rB,GACbszC,EAAYtzC,GAAI,GAChBouB,EAASvC,EAAkB,CAAC7rB,KAEhCqsB,kBAAkBrsB,GACdszC,EAAYtzC,GAAI,GAChBouB,EAAS/B,EAAmB,CAACrsB,KAEjCisB,iBAAiBjsB,GACbyzC,EAAYzzC,GACZouB,EAASnC,EAAkB,CAACjsB,OAIxC,SAASmzC,EAAkBb,GACvB,GAAgB,MAAZA,EACA,OAAO,KAEN,IAAI7yC,EAAAA,EAAAA,IAAS6yC,GACd,MAAO,CAAC0B,EAAS1B,EAAS3jB,OAAQqlB,EAAS1B,EAASrjB,QAEnD,CACD,MAAM/jB,EAAI8oC,EAAS1B,GACnB,MAAO,CAACpnC,EAAGA,IAGnB,SAAS8oC,EAAS5kC,GACd,MAAMkJ,GAAMgL,EAAAA,EAAAA,IAASlU,GAGrB,OAAOkJ,EAYX,SAASu7B,EAAmB7zC,EAAIi0C,GAC5BA,EAAIvvC,MAAM,OAAOuS,SAAQ4V,GAAKA,GAAK7sB,EAAGk0C,UAAUx9B,IAAImW,MACnD7sB,EAAGquC,OACCruC,EAAGquC,KAAO,IAAI35B,MAAQgC,IAAIu9B,GAEnC,SAAST,EAAsBxzC,EAAIi0C,GAC/BA,EAAIvvC,MAAM,OAAOuS,SAAQ4V,GAAKA,GAAK7sB,EAAGk0C,UAAU9pB,OAAOyC,KACvD,MAAM,KAAEwhB,GAASruC,EACbquC,IACAA,EAAKl5B,OAAO8+B,GACP5F,EAAK7zB,OACNxa,EAAGquC,UAAOhvC,IAItB,SAASu0C,EAAU5xB,GACfmyB,uBAAsB,KAClBA,sBAAsBnyB,MAG9B,IAAIoyB,EAAQ,EACZ,SAASN,EAAmB9zC,EAAIq0C,EAAcC,EAAiBzzB,GAC3D,MAAMhQ,EAAM7Q,EAAGu0C,SAAWH,EACpBI,EAAoB,KAClB3jC,IAAO7Q,EAAGu0C,QACV1zB,KAGR,GAAIyzB,EACA,OAAOG,WAAWD,EAAmBF,GAEzC,MAAM,KAAEvrC,EAAF,QAAQ2rC,EAAR,UAAiBC,GAAcC,EAAkB50C,EAAIq0C,GAC3D,IAAKtrC,EACD,OAAO8X,IAEX,MAAMg0B,EAAW9rC,EAAO,MACxB,IAAI+rC,EAAQ,EACZ,MAAMzzB,EAAM,KACRrhB,EAAG0wC,oBAAoBmE,EAAUE,GACjCP,KAEEO,EAAShJ,IACPA,EAAExpC,SAAWvC,KAAQ80C,GAASH,GAC9BtzB,KAGRozB,YAAW,KACHK,EAAQH,GACRtzB,MAELqzB,EAAU,GACb10C,EAAGywC,iBAAiBoE,EAAUE,GAElC,SAASH,EAAkB50C,EAAIq0C,GAC3B,MAAMW,EAAS/tC,OAAOguC,iBAAiBj1C,GAEjCk1C,EAAsB11C,IAASw1C,EAAOx1C,IAAQ,IAAIkF,MAAM,MACxDywC,EAAmBD,EAAmBlD,EAAa,SACnDoD,EAAsBF,EAAmBlD,EAAa,YACtDqD,EAAoBC,EAAWH,EAAkBC,GACjDG,EAAkBL,EAAmBjD,EAAY,SACjDuD,EAAqBN,EAAmBjD,EAAY,YACpDwD,EAAmBH,EAAWC,EAAiBC,GACrD,IAAIzsC,EAAO,KACP2rC,EAAU,EACVC,EAAY,EAEZN,IAAiBrC,EACbqD,EAAoB,IACpBtsC,EAAOipC,EACP0C,EAAUW,EACVV,EAAYS,EAAoBj1C,QAG/Bk0C,IAAiBpC,EAClBwD,EAAmB,IACnB1sC,EAAOkpC,EACPyC,EAAUe,EACVd,EAAYa,EAAmBr1C,SAInCu0C,EAAU3tC,KAAKkJ,IAAIolC,EAAmBI,GACtC1sC,EACI2rC,EAAU,EACJW,EAAoBI,EAChBzD,EACAC,EACJ,KACV0C,EAAY5rC,EACNA,IAASipC,EACLoD,EAAoBj1C,OACpBq1C,EAAmBr1C,OACvB,GAEV,MAAMu1C,EAAe3sC,IAASipC,GAC1B,yBAAyBhwC,KAAKgzC,EAAOhD,EAAa,aACtD,MAAO,CACHjpC,OACA2rC,UACAC,YACAe,gBAGR,SAASJ,EAAWK,EAAQzC,GACxB,MAAOyC,EAAOx1C,OAAS+yC,EAAU/yC,OAC7Bw1C,EAASA,EAAOnnC,OAAOmnC,GAE3B,OAAO5uC,KAAKkJ,OAAOijC,EAAUt7B,KAAI,CAACg+B,EAAG/yC,IAAMgzC,EAAKD,GAAKC,EAAKF,EAAO9yC,OAMrE,SAASgzC,EAAK/rB,GACV,OAAkD,IAA3CxQ,OAAOwQ,EAAEppB,MAAM,GAAI,GAAGgB,QAAQ,IAAK,MAG9C,SAASqyC,IACL,OAAOhwC,SAAS+xC,KAAKC,aAGL,IAAIrtC,QACD,IAAIA,QA6f3B,MAAMstC,GAAgCp8B,EAAAA,EAAAA,IAAO,CAAE4kB,aAAa0O,GAG5D,IAAI5J,GAEJ,SAAS2S,KACL,OAAQ3S,KACHA,IAAWtF,EAAAA,EAAAA,IAAegY,IAUnC,MAMMnO,GAAa,IAAI1vB,KACnB,MAAMijB,EAAM6a,KAAiBpO,aAAa1vB,GAK1C,MAAM,MAAEykB,GAAUxB,EAsBlB,OArBAA,EAAIwB,MAASsZ,IACT,MAAMlW,EAAYmW,GAAmBD,GACrC,IAAKlW,EACD,OACJ,MAAMrY,EAAYyT,EAAIc,YACjBzd,EAAAA,EAAAA,IAAWkJ,IAAeA,EAAUzB,QAAWyB,EAAUykB,WAK1DzkB,EAAUykB,SAAWpM,EAAUiO,WAGnCjO,EAAUiO,UAAY,GACtB,MAAMlxB,EAAQ6f,EAAMoD,GAAW,EAAOA,aAAqBoW,YAK3D,OAJIpW,aAAqBqW,UACrBrW,EAAUsO,gBAAgB,WAC1BtO,EAAUuN,aAAa,aAAc,KAElCxwB,GAEJqe,GAyDX,SAAS+a,GAAmBnW,GACxB,IAAIzV,EAAAA,EAAAA,IAASyV,GAAY,CACrB,MAAM1nB,EAAMvU,SAAS6pC,cAAc5N,GAInC,OAAO1nB,EAQX,OAAO0nB,I,kCC3oDX,SAASvoB,EAAQ6+B,EAAKC,GAClB,MAAM3+B,EAAM5W,OAAOjC,OAAO,MACpBy3C,EAAOF,EAAI5xC,MAAM,KACvB,IAAK,IAAI7B,EAAI,EAAGA,EAAI2zC,EAAKr2C,OAAQ0C,IAC7B+U,EAAI4+B,EAAK3zC,KAAM,EAEnB,OAAO0zC,EAAmBnnC,KAASwI,EAAIxI,EAAItF,eAAiBsF,KAASwI,EAAIxI,G,o7BAM7E,MA0BMqnC,EAAuB,mMAGvBC,EAAsCj/B,EAAQg/B,GAyDpD,MAAME,EAAuB,8EACvBlH,EAAqCh4B,EAAQk/B,GAYnD,SAASjH,EAAmBnwC,GACxB,QAASA,GAAmB,KAAVA,EAgGtB,SAAS0qC,EAAe1qC,GACpB,GAAIyX,EAAQzX,GAAQ,CAChB,MAAM+Y,EAAM,GACZ,IAAK,IAAIzV,EAAI,EAAGA,EAAItD,EAAMY,OAAQ0C,IAAK,CACnC,MAAM+vB,EAAOrzB,EAAMsD,GACbwhB,EAAakG,EAASqI,GACtBgkB,EAAiBhkB,GACjBqX,EAAerX,GACrB,GAAIvO,EACA,IAAK,MAAM7kB,KAAO6kB,EACd/L,EAAI9Y,GAAO6kB,EAAW7kB,GAIlC,OAAO8Y,EAEN,OAAIiS,EAAShrB,IAGTE,EAASF,GAFPA,OAEN,EAIT,MAAMs3C,EAAkB,gBAClBC,EAAsB,QAC5B,SAASF,EAAiBhI,GACtB,MAAMpf,EAAM,GAOZ,OANAof,EAAQlqC,MAAMmyC,GAAiB5/B,SAAQ2b,IACnC,GAAIA,EAAM,CACN,MAAMmkB,EAAMnkB,EAAKluB,MAAMoyC,GACvBC,EAAI52C,OAAS,IAAMqvB,EAAIunB,EAAI,GAAG1zB,QAAU0zB,EAAI,GAAG1zB,YAGhDmM,EAkBX,SAASwa,EAAezqC,GACpB,IAAI+Y,EAAM,GACV,GAAIiS,EAAShrB,GACT+Y,EAAM/Y,OAEL,GAAIyX,EAAQzX,GACb,IAAK,IAAIsD,EAAI,EAAGA,EAAItD,EAAMY,OAAQ0C,IAAK,CACnC,MAAMwhB,EAAa2lB,EAAezqC,EAAMsD,IACpCwhB,IACA/L,GAAO+L,EAAa,UAI3B,GAAI5kB,EAASF,GACd,IAAK,MAAMiE,KAAQjE,EACXA,EAAMiE,KACN8U,GAAO9U,EAAO,KAI1B,OAAO8U,EAAI+K,OAmGf,SAAS2zB,EAAmB1vC,EAAGkL,GAC3B,GAAIlL,EAAEnH,SAAWqS,EAAErS,OACf,OAAO,EACX,IAAI82C,GAAQ,EACZ,IAAK,IAAIp0C,EAAI,EAAGo0C,GAASp0C,EAAIyE,EAAEnH,OAAQ0C,IACnCo0C,EAAQC,EAAW5vC,EAAEzE,GAAI2P,EAAE3P,IAE/B,OAAOo0C,EAEX,SAASC,EAAW5vC,EAAGkL,GACnB,GAAIlL,IAAMkL,EACN,OAAO,EACX,IAAI2kC,EAAaC,EAAO9vC,GACpB+vC,EAAaD,EAAO5kC,GACxB,GAAI2kC,GAAcE,EACd,SAAOF,IAAcE,IAAa/vC,EAAEgwC,YAAc9kC,EAAE8kC,UAIxD,GAFAH,EAAa5mC,EAASjJ,GACtB+vC,EAAa9mC,EAASiC,GAClB2kC,GAAcE,EACd,OAAO/vC,IAAMkL,EAIjB,GAFA2kC,EAAangC,EAAQ1P,GACrB+vC,EAAargC,EAAQxE,GACjB2kC,GAAcE,EACd,SAAOF,IAAcE,IAAaL,EAAmB1vC,EAAGkL,GAI5D,GAFA2kC,EAAa13C,EAAS6H,GACtB+vC,EAAa53C,EAAS+S,GAClB2kC,GAAcE,EAAY,CAE1B,IAAKF,IAAeE,EAChB,OAAO,EAEX,MAAME,EAAav2C,OAAO0B,KAAK4E,GAAGnH,OAC5Bq3C,EAAax2C,OAAO0B,KAAK8P,GAAGrS,OAClC,GAAIo3C,IAAeC,EACf,OAAO,EAEX,IAAK,MAAMh4C,KAAO8H,EAAG,CACjB,MAAMmwC,EAAUnwC,EAAEpB,eAAe1G,GAC3Bk4C,EAAUllC,EAAEtM,eAAe1G,GACjC,GAAKi4C,IAAYC,IACXD,GAAWC,IACZR,EAAW5vC,EAAE9H,GAAMgT,EAAEhT,IACtB,OAAO,GAInB,OAAOX,OAAOyI,KAAOzI,OAAO2T,GAEhC,SAASmlC,EAAav/B,EAAKhJ,GACvB,OAAOgJ,EAAIiiB,WAAUzH,GAAQskB,EAAWtkB,EAAMxjB,KAOlD,MAAMwoC,EAAmBxoC,GACdmb,EAASnb,GACVA,EACO,MAAPA,EACI,GACA4H,EAAQ5H,IACL3P,EAAS2P,KACLA,EAAI5O,WAAaq3C,IAAmBp5B,EAAWrP,EAAI5O,WACtDs3C,KAAKC,UAAU3oC,EAAK4oC,EAAU,GAC9Bn5C,OAAOuQ,GAEnB4oC,EAAW,CAACC,EAAM7oC,IAEhBA,GAAOA,EAAIuO,UACJq6B,EAASC,EAAM7oC,EAAI7P,OAErB4X,EAAM/H,GACJ,CACH,CAAE,OAAMA,EAAIoL,SAAU,IAAIpL,EAAI8oC,WAAWC,QAAO,CAACD,GAAU14C,EAAK4P,MAC5D8oC,EAAS,GAAE14C,QAAY4P,EAChB8oC,IACR,KAGFttB,EAAMxb,GACJ,CACH,CAAE,OAAMA,EAAIoL,SAAU,IAAIpL,EAAI2H,YAG7BtX,EAAS2P,IAAS4H,EAAQ5H,IAASyb,EAAczb,GAGnDA,EAFIvQ,OAAOuQ,GAKhB4T,EAEA,GACA0W,EAA0E,GAC1Ehb,EAAO,OAIP4c,EAAK,KAAM,EACX8c,EAAO,YACPxzB,EAAQplB,GAAQ44C,EAAKp2C,KAAKxC,GAC1ByjB,EAAmBzjB,GAAQA,EAAI0jB,WAAW,aAC1CtJ,EAAS5Y,OAAO86B,OAChB1R,EAAS,CAAChS,EAAKpY,KACjB,MAAM6C,EAAIuV,EAAI9X,QAAQN,GAClB6C,GAAK,GACLuV,EAAIuJ,OAAO9e,EAAG,IAGhBqD,EAAiBlF,OAAO5B,UAAU8G,eAClC/D,EAAS,CAACiN,EAAK5P,IAAQ0G,EAAeH,KAAKqJ,EAAK5P,GAChDwX,EAAU7X,MAAM6X,QAChBG,EAAS/H,GAA8B,iBAAtBipC,EAAajpC,GAC9Bwb,EAASxb,GAA8B,iBAAtBipC,EAAajpC,GAC9BgoC,EAAUhoC,GAA8B,kBAAtBipC,EAAajpC,GAC/BqP,EAAcrP,GAAuB,oBAARA,EAC7Bmb,EAAYnb,GAAuB,kBAARA,EAC3BmB,EAAYnB,GAAuB,kBAARA,EAC3B3P,EAAY2P,GAAgB,OAARA,GAA+B,kBAARA,EAC3C6P,EAAa7P,GACR3P,EAAS2P,IAAQqP,EAAWrP,EAAI8R,OAASzC,EAAWrP,EAAI8P,OAE7D24B,EAAiB72C,OAAO5B,UAAUoB,SAClC63C,EAAgB94C,GAAUs4C,EAAe9xC,KAAKxG,GAC9Cgd,EAAahd,GAER84C,EAAa94C,GAAOmB,MAAM,GAAI,GAEnCmqB,EAAiBzb,GAA8B,oBAAtBipC,EAAajpC,GACtC8H,EAAgB1X,GAAQ+qB,EAAS/qB,IAC3B,QAARA,GACW,MAAXA,EAAI,IACJ,GAAK84C,SAAS94C,EAAK,MAAQA,EACzB05B,EAA+BzhB,EAErC,uIAKM8gC,EAAuBjyC,IACzB,MAAM2d,EAAQjjB,OAAOjC,OAAO,MAC5B,OAASu3C,IACL,MAAMkC,EAAMv0B,EAAMqyB,GAClB,OAAOkC,IAAQv0B,EAAMqyB,GAAOhwC,EAAGgwC,MAGjCmC,EAAa,SAIb/0B,EAAW60B,GAAqBjC,GAC3BA,EAAI50C,QAAQ+2C,GAAY,CAACxkB,EAAGpH,IAAOA,EAAIA,EAAE6rB,cAAgB,OAE9DC,EAAc,aAIdh1B,EAAY40B,GAAqBjC,GAAQA,EAAI50C,QAAQi3C,EAAa,OAAO7uC,gBAIzEyoB,EAAagmB,GAAqBjC,GAAQA,EAAIsC,OAAO,GAAGF,cAAgBpC,EAAI51C,MAAM,KAIlF+iB,EAAe80B,GAAqBjC,GAAQA,EAAO,KAAI/jB,EAAW+jB,KAAU,KAE5E/8B,EAAa,CAACha,EAAOsX,KAAc7V,OAAOogC,GAAG7hC,EAAOsX,GACpDqtB,EAAiB,CAAC2U,EAAKj3C,KACzB,IAAK,IAAIiB,EAAI,EAAGA,EAAIg2C,EAAI14C,OAAQ0C,IAC5Bg2C,EAAIh2C,GAAGjB,IAGTyb,GAAM,CAAClT,EAAK3K,EAAKD,KACnByB,OAAOhC,eAAemL,EAAK3K,EAAK,CAC5BF,cAAc,EACd4D,YAAY,EACZ3D,WAGF+jB,GAAYlU,IACd,MAAMlE,EAAI4tC,WAAW1pC,GACrB,OAAO2pC,MAAM7tC,GAAKkE,EAAMlE,GAE5B,IAAI8tC,GACJ,MAAM7a,GAAgB,IACV6a,KACHA,GACyB,qBAAfhyC,WACDA,WACgB,qBAATE,KACHA,KACkB,qBAAXD,OACHA,OACkB,qBAAXxD,EAAAA,EACHA,EAAAA,EACA,K,8BCtkB9B/E,EAAQ,EAAU,CAACu6C,EAAKprC,KACpB,MAAMtL,EAAS02C,EAAIpP,WAAaoP,EAChC,IAAK,MAAOz5C,EAAK4P,KAAQvB,EACrBtL,EAAO/C,GAAO4P,EAElB,OAAO7M,I,iBCTX,SAAS22C,EAAgB/uC,EAAK3K,EAAKD,GAYjC,OAXIC,KAAO2K,EACTnJ,OAAOhC,eAAemL,EAAK3K,EAAK,CAC9BD,MAAOA,EACP2D,YAAY,EACZ5D,cAAc,EACd6D,UAAU,IAGZgH,EAAI3K,GAAOD,EAGN4K,EAGT1L,EAAOC,QAAUw6C,EAAiBz6C,EAAOC,QAAQy6C,YAAa,EAAM16C,EAAOC,QAAQ,WAAaD,EAAOC","sources":["webpack://wavelovers/./node_modules/core-js/internals/a-callable.js","webpack://wavelovers/./node_modules/core-js/internals/a-possible-prototype.js","webpack://wavelovers/./node_modules/core-js/internals/add-to-unscopables.js","webpack://wavelovers/./node_modules/core-js/internals/an-object.js","webpack://wavelovers/./node_modules/core-js/internals/array-includes.js","webpack://wavelovers/./node_modules/core-js/internals/classof-raw.js","webpack://wavelovers/./node_modules/core-js/internals/classof.js","webpack://wavelovers/./node_modules/core-js/internals/clear-error-stack.js","webpack://wavelovers/./node_modules/core-js/internals/copy-constructor-properties.js","webpack://wavelovers/./node_modules/core-js/internals/create-non-enumerable-property.js","webpack://wavelovers/./node_modules/core-js/internals/create-property-descriptor.js","webpack://wavelovers/./node_modules/core-js/internals/define-built-in.js","webpack://wavelovers/./node_modules/core-js/internals/define-global-property.js","webpack://wavelovers/./node_modules/core-js/internals/descriptors.js","webpack://wavelovers/./node_modules/core-js/internals/document-create-element.js","webpack://wavelovers/./node_modules/core-js/internals/engine-user-agent.js","webpack://wavelovers/./node_modules/core-js/internals/engine-v8-version.js","webpack://wavelovers/./node_modules/core-js/internals/enum-bug-keys.js","webpack://wavelovers/./node_modules/core-js/internals/error-stack-installable.js","webpack://wavelovers/./node_modules/core-js/internals/export.js","webpack://wavelovers/./node_modules/core-js/internals/fails.js","webpack://wavelovers/./node_modules/core-js/internals/function-apply.js","webpack://wavelovers/./node_modules/core-js/internals/function-bind-native.js","webpack://wavelovers/./node_modules/core-js/internals/function-call.js","webpack://wavelovers/./node_modules/core-js/internals/function-name.js","webpack://wavelovers/./node_modules/core-js/internals/function-uncurry-this.js","webpack://wavelovers/./node_modules/core-js/internals/get-built-in.js","webpack://wavelovers/./node_modules/core-js/internals/get-method.js","webpack://wavelovers/./node_modules/core-js/internals/global.js","webpack://wavelovers/./node_modules/core-js/internals/has-own-property.js","webpack://wavelovers/./node_modules/core-js/internals/hidden-keys.js","webpack://wavelovers/./node_modules/core-js/internals/html.js","webpack://wavelovers/./node_modules/core-js/internals/ie8-dom-define.js","webpack://wavelovers/./node_modules/core-js/internals/indexed-object.js","webpack://wavelovers/./node_modules/core-js/internals/inherit-if-required.js","webpack://wavelovers/./node_modules/core-js/internals/inspect-source.js","webpack://wavelovers/./node_modules/core-js/internals/install-error-cause.js","webpack://wavelovers/./node_modules/core-js/internals/internal-state.js","webpack://wavelovers/./node_modules/core-js/internals/is-callable.js","webpack://wavelovers/./node_modules/core-js/internals/is-forced.js","webpack://wavelovers/./node_modules/core-js/internals/is-object.js","webpack://wavelovers/./node_modules/core-js/internals/is-pure.js","webpack://wavelovers/./node_modules/core-js/internals/is-symbol.js","webpack://wavelovers/./node_modules/core-js/internals/length-of-array-like.js","webpack://wavelovers/./node_modules/core-js/internals/make-built-in.js","webpack://wavelovers/./node_modules/core-js/internals/math-trunc.js","webpack://wavelovers/./node_modules/core-js/internals/native-symbol.js","webpack://wavelovers/./node_modules/core-js/internals/native-weak-map.js","webpack://wavelovers/./node_modules/core-js/internals/normalize-string-argument.js","webpack://wavelovers/./node_modules/core-js/internals/object-create.js","webpack://wavelovers/./node_modules/core-js/internals/object-define-properties.js","webpack://wavelovers/./node_modules/core-js/internals/object-define-property.js","webpack://wavelovers/./node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack://wavelovers/./node_modules/core-js/internals/object-get-own-property-names.js","webpack://wavelovers/./node_modules/core-js/internals/object-get-own-property-symbols.js","webpack://wavelovers/./node_modules/core-js/internals/object-is-prototype-of.js","webpack://wavelovers/./node_modules/core-js/internals/object-keys-internal.js","webpack://wavelovers/./node_modules/core-js/internals/object-keys.js","webpack://wavelovers/./node_modules/core-js/internals/object-property-is-enumerable.js","webpack://wavelovers/./node_modules/core-js/internals/object-set-prototype-of.js","webpack://wavelovers/./node_modules/core-js/internals/ordinary-to-primitive.js","webpack://wavelovers/./node_modules/core-js/internals/own-keys.js","webpack://wavelovers/./node_modules/core-js/internals/proxy-accessor.js","webpack://wavelovers/./node_modules/core-js/internals/require-object-coercible.js","webpack://wavelovers/./node_modules/core-js/internals/shared-key.js","webpack://wavelovers/./node_modules/core-js/internals/shared-store.js","webpack://wavelovers/./node_modules/core-js/internals/shared.js","webpack://wavelovers/./node_modules/core-js/internals/to-absolute-index.js","webpack://wavelovers/./node_modules/core-js/internals/to-indexed-object.js","webpack://wavelovers/./node_modules/core-js/internals/to-integer-or-infinity.js","webpack://wavelovers/./node_modules/core-js/internals/to-length.js","webpack://wavelovers/./node_modules/core-js/internals/to-object.js","webpack://wavelovers/./node_modules/core-js/internals/to-primitive.js","webpack://wavelovers/./node_modules/core-js/internals/to-property-key.js","webpack://wavelovers/./node_modules/core-js/internals/to-string-tag-support.js","webpack://wavelovers/./node_modules/core-js/internals/to-string.js","webpack://wavelovers/./node_modules/core-js/internals/try-to-string.js","webpack://wavelovers/./node_modules/core-js/internals/uid.js","webpack://wavelovers/./node_modules/core-js/internals/use-symbol-as-uid.js","webpack://wavelovers/./node_modules/core-js/internals/v8-prototype-define-bug.js","webpack://wavelovers/./node_modules/core-js/internals/well-known-symbol.js","webpack://wavelovers/./node_modules/core-js/internals/wrap-error-constructor-with-cause.js","webpack://wavelovers/./node_modules/core-js/modules/es.array.includes.js","webpack://wavelovers/./node_modules/core-js/modules/es.error.cause.js","webpack://wavelovers/./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js","webpack://wavelovers/./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js","webpack://wavelovers/./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js","webpack://wavelovers/./node_modules/@vue/shared/dist/shared.esm-bundler.js","webpack://wavelovers/./node_modules/vue-loader/dist/exportHelper.js","webpack://wavelovers/./node_modules/@babel/runtime/helpers/defineProperty.js"],"sourcesContent":["var isCallable = require('../internals/is-callable');\nvar tryToString = require('../internals/try-to-string');\n\nvar $TypeError = TypeError;\n\n// `Assert: IsCallable(argument) is true`\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw $TypeError(tryToString(argument) + ' is not a function');\n};\n","var isCallable = require('../internals/is-callable');\n\nvar $String = String;\nvar $TypeError = TypeError;\n\nmodule.exports = function (argument) {\n if (typeof argument == 'object' || isCallable(argument)) return argument;\n throw $TypeError(\"Can't set \" + $String(argument) + ' as a prototype');\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar defineProperty = require('../internals/object-define-property').f;\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n defineProperty(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var isObject = require('../internals/is-object');\n\nvar $String = String;\nvar $TypeError = TypeError;\n\n// `Assert: Type(argument) is Object`\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw $TypeError($String(argument) + ' is not an object');\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar lengthOfArrayLike = require('../internals/length-of-array-like');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = lengthOfArrayLike(O);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare -- NaN check\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare -- NaN check\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.es/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.es/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nvar toString = uncurryThis({}.toString);\nvar stringSlice = uncurryThis(''.slice);\n\nmodule.exports = function (it) {\n return stringSlice(toString(it), 8, -1);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar isCallable = require('../internals/is-callable');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar $Object = Object;\n\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nvar $Error = Error;\nvar replace = uncurryThis(''.replace);\n\nvar TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');\nvar V8_OR_CHAKRA_STACK_ENTRY = /\\n\\s*at [^:]*:[^\\n]*/;\nvar IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);\n\nmodule.exports = function (stack, dropEntries) {\n if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {\n while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');\n } return stack;\n};\n","var hasOwn = require('../internals/has-own-property');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source, exceptions) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {\n defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n }\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var isCallable = require('../internals/is-callable');\nvar definePropertyModule = require('../internals/object-define-property');\nvar makeBuiltIn = require('../internals/make-built-in');\nvar defineGlobalProperty = require('../internals/define-global-property');\n\nmodule.exports = function (O, key, value, options) {\n if (!options) options = {};\n var simple = options.enumerable;\n var name = options.name !== undefined ? options.name : key;\n if (isCallable(value)) makeBuiltIn(value, name, options);\n if (options.global) {\n if (simple) O[key] = value;\n else defineGlobalProperty(key, value);\n } else {\n try {\n if (!options.unsafe) delete O[key];\n else if (O[key]) simple = true;\n } catch (error) { /* empty */ }\n if (simple) O[key] = value;\n else definePropertyModule.f(O, key, {\n value: value,\n enumerable: false,\n configurable: !options.nonConfigurable,\n writable: !options.nonWritable\n });\n } return O;\n};\n","var global = require('../internals/global');\n\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, { value: value, configurable: true, writable: true });\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar Deno = global.Deno;\nvar versions = process && process.versions || Deno && Deno.version;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n // in old Chrome, versions of V8 isn't V8 = Chrome / 10\n // but their correct versions are not interesting for us\n version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);\n}\n\n// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`\n// so check `userAgent` even if `.v8` exists, but 0\nif (!version && userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = +match[1];\n }\n}\n\nmodule.exports = version;\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var fails = require('../internals/fails');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = !fails(function () {\n var error = Error('a');\n if (!('stack' in error)) return true;\n // eslint-disable-next-line es-x/no-object-defineproperty -- safe\n Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));\n return error.stack !== 7;\n});\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar defineBuiltIn = require('../internals/define-built-in');\nvar defineGlobalProperty = require('../internals/define-global-property');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.dontCallGetSet - prevent calling a getter on target\n options.name - the .name of the function if it does not match the key\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || defineGlobalProperty(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.dontCallGetSet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty == typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n defineBuiltIn(target, key, sourceProperty, options);\n }\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call;\n\n// eslint-disable-next-line es-x/no-reflect -- safe\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es-x/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n","var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar hasOwn = require('../internals/has-own-property');\n\nvar FunctionPrototype = Function.prototype;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;\n\nvar EXISTS = hasOwn(FunctionPrototype, 'name');\n// additional protection from minified / mangled / dropped function names\nvar PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';\nvar CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));\n\nmodule.exports = {\n EXISTS: EXISTS,\n PROPER: PROPER,\n CONFIGURABLE: CONFIGURABLE\n};\n","var NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar bind = FunctionPrototype.bind;\nvar call = FunctionPrototype.call;\nvar uncurryThis = NATIVE_BIND && bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? function (fn) {\n return fn && uncurryThis(fn);\n} : function (fn) {\n return fn && function () {\n return call.apply(fn, arguments);\n };\n};\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\n\nvar aFunction = function (argument) {\n return isCallable(argument) ? argument : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];\n};\n","var aCallable = require('../internals/a-callable');\n\n// `GetMethod` abstract operation\n// https://tc39.es/ecma262/#sec-getmethod\nmodule.exports = function (V, P) {\n var func = V[P];\n return func == null ? undefined : aCallable(func);\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line es-x/no-global-this -- safe\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n // eslint-disable-next-line no-restricted-globals -- safe\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func -- fallback\n (function () { return this; })() || Function('return this')();\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar toObject = require('../internals/to-object');\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty);\n\n// `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es-x/no-object-hasown -- safe\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};\n","module.exports = {};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thanks to IE8 for its funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar $Object = Object;\nvar split = uncurryThis(''.split);\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins -- safe\n return !$Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split(it, '') : $Object(it);\n} : $Object;\n","var isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n isCallable(NewTarget = dummy.constructor) &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar isCallable = require('../internals/is-callable');\nvar store = require('../internals/shared-store');\n\nvar functionToString = uncurryThis(Function.toString);\n\n// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper\nif (!isCallable(store.inspectSource)) {\n store.inspectSource = function (it) {\n return functionToString(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\n// `InstallErrorCause` abstract operation\n// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause\nmodule.exports = function (O, options) {\n if (isObject(options) && 'cause' in options) {\n createNonEnumerableProperty(O, 'cause', options.cause);\n }\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar hasOwn = require('../internals/has-own-property');\nvar shared = require('../internals/shared-store');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar OBJECT_ALREADY_INITIALIZED = 'Object already initialized';\nvar TypeError = global.TypeError;\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP || shared.state) {\n var store = shared.state || (shared.state = new WeakMap());\n var wmget = uncurryThis(store.get);\n var wmhas = uncurryThis(store.has);\n var wmset = uncurryThis(store.set);\n set = function (it, metadata) {\n if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);\n metadata.facade = it;\n wmset(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget(store, it) || {};\n };\n has = function (it) {\n return wmhas(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);\n metadata.facade = it;\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return hasOwn(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return hasOwn(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","// `IsCallable` abstract operation\n// https://tc39.es/ecma262/#sec-iscallable\nmodule.exports = function (argument) {\n return typeof argument == 'function';\n};\n","var fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : isCallable(detection) ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var isCallable = require('../internals/is-callable');\n\nmodule.exports = function (it) {\n return typeof it == 'object' ? it !== null : isCallable(it);\n};\n","module.exports = false;\n","var getBuiltIn = require('../internals/get-built-in');\nvar isCallable = require('../internals/is-callable');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar $Object = Object;\n\nmodule.exports = USE_SYMBOL_AS_UID ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n var $Symbol = getBuiltIn('Symbol');\n return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));\n};\n","var toLength = require('../internals/to-length');\n\n// `LengthOfArrayLike` abstract operation\n// https://tc39.es/ecma262/#sec-lengthofarraylike\nmodule.exports = function (obj) {\n return toLength(obj.length);\n};\n","var fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\nvar hasOwn = require('../internals/has-own-property');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar CONFIGURABLE_FUNCTION_NAME = require('../internals/function-name').CONFIGURABLE;\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar enforceInternalState = InternalStateModule.enforce;\nvar getInternalState = InternalStateModule.get;\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nvar CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {\n return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;\n});\n\nvar TEMPLATE = String(String).split('String');\n\nvar makeBuiltIn = module.exports = function (value, name, options) {\n if (String(name).slice(0, 7) === 'Symbol(') {\n name = '[' + String(name).replace(/^Symbol\\(([^)]*)\\)/, '$1') + ']';\n }\n if (options && options.getter) name = 'get ' + name;\n if (options && options.setter) name = 'set ' + name;\n if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {\n if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });\n else value.name = name;\n }\n if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {\n defineProperty(value, 'length', { value: options.arity });\n }\n try {\n if (options && hasOwn(options, 'constructor') && options.constructor) {\n if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });\n // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable\n } else if (value.prototype) value.prototype = undefined;\n } catch (error) { /* empty */ }\n var state = enforceInternalState(value);\n if (!hasOwn(state, 'source')) {\n state.source = TEMPLATE.join(typeof name == 'string' ? name : '');\n } return value;\n};\n\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n// eslint-disable-next-line no-extend-native -- required\nFunction.prototype.toString = makeBuiltIn(function toString() {\n return isCallable(this) && getInternalState(this).source || inspectSource(this);\n}, 'toString');\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `Math.trunc` method\n// https://tc39.es/ecma262/#sec-math.trunc\n// eslint-disable-next-line es-x/no-math-trunc -- safe\nmodule.exports = Math.trunc || function trunc(x) {\n var n = +x;\n return (n > 0 ? floor : ceil)(n);\n};\n","/* eslint-disable es-x/no-symbol -- required for testing */\nvar V8_VERSION = require('../internals/engine-v8-version');\nvar fails = require('../internals/fails');\n\n// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n var symbol = Symbol();\n // Chrome 38 Symbol has incorrect toString conversion\n // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances\n return !String(symbol) || !(Object(symbol) instanceof Symbol) ||\n // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances\n !Symbol.sham && V8_VERSION && V8_VERSION < 41;\n});\n","var global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));\n","var toString = require('../internals/to-string');\n\nmodule.exports = function (argument, $default) {\n return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);\n};\n","/* global ActiveXObject -- old IE, WSH */\nvar anObject = require('../internals/an-object');\nvar definePropertiesModule = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n activeXDocument = new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = typeof document != 'undefined'\n ? document.domain && activeXDocument\n ? NullProtoObjectViaActiveX(activeXDocument) // old IE\n : NullProtoObjectViaIFrame()\n : NullProtoObjectViaActiveX(activeXDocument); // WSH\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.es/ecma262/#sec-object.create\n// eslint-disable-next-line es-x/no-object-create -- safe\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : definePropertiesModule.f(result, Properties);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.es/ecma262/#sec-object.defineproperties\n// eslint-disable-next-line es-x/no-object-defineproperties -- safe\nexports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var props = toIndexedObject(Properties);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar anObject = require('../internals/an-object');\nvar toPropertyKey = require('../internals/to-property-key');\n\nvar $TypeError = TypeError;\n// eslint-disable-next-line es-x/no-object-defineproperty -- safe\nvar $defineProperty = Object.defineProperty;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar ENUMERABLE = 'enumerable';\nvar CONFIGURABLE = 'configurable';\nvar WRITABLE = 'writable';\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {\n var current = $getOwnPropertyDescriptor(O, P);\n if (current && current[WRITABLE]) {\n O[P] = Attributes.value;\n Attributes = {\n configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],\n enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],\n writable: false\n };\n }\n } return $defineProperty(O, P, Attributes);\n} : $defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return $defineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar call = require('../internals/function-call');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPropertyKey = require('../internals/to-property-key');\nvar hasOwn = require('../internals/has-own-property');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.es/ecma262/#sec-object.getownpropertynames\n// eslint-disable-next-line es-x/no-object-getownpropertynames -- safe\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe\nexports.f = Object.getOwnPropertySymbols;\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nmodule.exports = uncurryThis({}.isPrototypeOf);\n","var uncurryThis = require('../internals/function-uncurry-this');\nvar hasOwn = require('../internals/has-own-property');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar push = uncurryThis([].push);\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (hasOwn(O, key = names[i++])) {\n ~indexOf(result, key) || push(result, key);\n }\n return result;\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.es/ecma262/#sec-object.keys\n// eslint-disable-next-line es-x/no-object-keys -- safe\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n","/* eslint-disable no-proto -- safe */\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.es/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n// eslint-disable-next-line es-x/no-object-setprototypeof -- safe\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe\n setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);\n setter(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var call = require('../internals/function-call');\nvar isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\n\nvar $TypeError = TypeError;\n\n// `OrdinaryToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-ordinarytoprimitive\nmodule.exports = function (input, pref) {\n var fn, val;\n if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;\n if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n throw $TypeError(\"Can't convert object to primitive value\");\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\nvar concat = uncurryThis([].concat);\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;\n};\n","var defineProperty = require('../internals/object-define-property').f;\n\nmodule.exports = function (Target, Source, key) {\n key in Target || defineProperty(Target, key, {\n configurable: true,\n get: function () { return Source[key]; },\n set: function (it) { Source[key] = it; }\n });\n};\n","var $TypeError = TypeError;\n\n// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw $TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","var global = require('../internals/global');\nvar defineGlobalProperty = require('../internals/define-global-property');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || defineGlobalProperty(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.23.3',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',\n license: 'https://github.com/zloirock/core-js/blob/v3.23.3/LICENSE',\n source: 'https://github.com/zloirock/core-js'\n});\n","var toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toIntegerOrInfinity(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var trunc = require('../internals/math-trunc');\n\n// `ToIntegerOrInfinity` abstract operation\n// https://tc39.es/ecma262/#sec-tointegerorinfinity\nmodule.exports = function (argument) {\n var number = +argument;\n // eslint-disable-next-line no-self-compare -- NaN check\n return number !== number || number === 0 ? 0 : trunc(number);\n};\n","var toIntegerOrInfinity = require('../internals/to-integer-or-infinity');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.es/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar $Object = Object;\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return $Object(requireObjectCoercible(argument));\n};\n","var call = require('../internals/function-call');\nvar isObject = require('../internals/is-object');\nvar isSymbol = require('../internals/is-symbol');\nvar getMethod = require('../internals/get-method');\nvar ordinaryToPrimitive = require('../internals/ordinary-to-primitive');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar $TypeError = TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw $TypeError(\"Can't convert object to primitive value\");\n }\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};\n","var toPrimitive = require('../internals/to-primitive');\nvar isSymbol = require('../internals/is-symbol');\n\n// `ToPropertyKey` abstract operation\n// https://tc39.es/ecma262/#sec-topropertykey\nmodule.exports = function (argument) {\n var key = toPrimitive(argument, 'string');\n return isSymbol(key) ? key : key + '';\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var classof = require('../internals/classof');\n\nvar $String = String;\n\nmodule.exports = function (argument) {\n if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');\n return $String(argument);\n};\n","var $String = String;\n\nmodule.exports = function (argument) {\n try {\n return $String(argument);\n } catch (error) {\n return 'Object';\n }\n};\n","var uncurryThis = require('../internals/function-uncurry-this');\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};\n","/* eslint-disable es-x/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n && !Symbol.sham\n && typeof Symbol.iterator == 'symbol';\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\n\n// V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () { /* empty */ }, 'prototype', {\n value: 42,\n writable: false\n }).prototype != 42;\n});\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar hasOwn = require('../internals/has-own-property');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar symbolFor = Symbol && Symbol['for'];\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {\n var description = 'Symbol.' + name;\n if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {\n WellKnownSymbolsStore[name] = Symbol[name];\n } else if (USE_SYMBOL_AS_UID && symbolFor) {\n WellKnownSymbolsStore[name] = symbolFor(description);\n } else {\n WellKnownSymbolsStore[name] = createWellKnownSymbol(description);\n }\n } return WellKnownSymbolsStore[name];\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar hasOwn = require('../internals/has-own-property');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar proxyAccessor = require('../internals/proxy-accessor');\nvar inheritIfRequired = require('../internals/inherit-if-required');\nvar normalizeStringArgument = require('../internals/normalize-string-argument');\nvar installErrorCause = require('../internals/install-error-cause');\nvar clearErrorStack = require('../internals/clear-error-stack');\nvar ERROR_STACK_INSTALLABLE = require('../internals/error-stack-installable');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar IS_PURE = require('../internals/is-pure');\n\nmodule.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {\n var STACK_TRACE_LIMIT = 'stackTraceLimit';\n var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;\n var path = FULL_NAME.split('.');\n var ERROR_NAME = path[path.length - 1];\n var OriginalError = getBuiltIn.apply(null, path);\n\n if (!OriginalError) return;\n\n var OriginalErrorPrototype = OriginalError.prototype;\n\n // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006\n if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;\n\n if (!FORCED) return OriginalError;\n\n var BaseError = getBuiltIn('Error');\n\n var WrappedError = wrapper(function (a, b) {\n var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);\n var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();\n if (message !== undefined) createNonEnumerableProperty(result, 'message', message);\n if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));\n if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);\n if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);\n return result;\n });\n\n WrappedError.prototype = OriginalErrorPrototype;\n\n if (ERROR_NAME !== 'Error') {\n if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);\n else copyConstructorProperties(WrappedError, BaseError, { name: true });\n } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {\n proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);\n proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');\n }\n\n copyConstructorProperties(WrappedError, OriginalError);\n\n if (!IS_PURE) try {\n // Safari 13- bug: WebAssembly errors does not have a proper `.name`\n if (OriginalErrorPrototype.name !== ERROR_NAME) {\n createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);\n }\n OriginalErrorPrototype.constructor = WrappedError;\n } catch (error) { /* empty */ }\n\n return WrappedError;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $includes = require('../internals/array-includes').includes;\nvar fails = require('../internals/fails');\nvar addToUnscopables = require('../internals/add-to-unscopables');\n\n// FF99+ bug\nvar BROKEN_ON_SPARSE = fails(function () {\n return !Array(1).includes();\n});\n\n// `Array.prototype.includes` method\n// https://tc39.es/ecma262/#sec-array.prototype.includes\n$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('includes');\n","/* eslint-disable no-unused-vars -- required for functions `.length` */\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar apply = require('../internals/function-apply');\nvar wrapErrorConstructorWithCause = require('../internals/wrap-error-constructor-with-cause');\n\nvar WEB_ASSEMBLY = 'WebAssembly';\nvar WebAssembly = global[WEB_ASSEMBLY];\n\nvar FORCED = Error('e', { cause: 7 }).cause !== 7;\n\nvar exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {\n var O = {};\n O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);\n $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);\n};\n\nvar exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {\n if (WebAssembly && WebAssembly[ERROR_NAME]) {\n var O = {};\n O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);\n $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);\n }\n};\n\n// https://github.com/tc39/proposal-error-cause\nexportGlobalErrorCauseWrapper('Error', function (init) {\n return function Error(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('EvalError', function (init) {\n return function EvalError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('RangeError', function (init) {\n return function RangeError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('ReferenceError', function (init) {\n return function ReferenceError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('SyntaxError', function (init) {\n return function SyntaxError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('TypeError', function (init) {\n return function TypeError(message) { return apply(init, this, arguments); };\n});\nexportGlobalErrorCauseWrapper('URIError', function (init) {\n return function URIError(message) { return apply(init, this, arguments); };\n});\nexportWebAssemblyErrorCauseWrapper('CompileError', function (init) {\n return function CompileError(message) { return apply(init, this, arguments); };\n});\nexportWebAssemblyErrorCauseWrapper('LinkError', function (init) {\n return function LinkError(message) { return apply(init, this, arguments); };\n});\nexportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {\n return function RuntimeError(message) { return apply(init, this, arguments); };\n});\n","import { extend, isArray, isMap, isIntegerKey, hasOwn, isSymbol, isObject, hasChanged, makeMap, capitalize, toRawType, def, isFunction, NOOP } from '@vue/shared';\n\nfunction warn(msg, ...args) {\r\n console.warn(`[Vue warn] ${msg}`, ...args);\r\n}\n\nlet activeEffectScope;\r\nclass EffectScope {\r\n constructor(detached = false) {\r\n /**\r\n * @internal\r\n */\r\n this.active = true;\r\n /**\r\n * @internal\r\n */\r\n this.effects = [];\r\n /**\r\n * @internal\r\n */\r\n this.cleanups = [];\r\n if (!detached && activeEffectScope) {\r\n this.parent = activeEffectScope;\r\n this.index =\r\n (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(this) - 1;\r\n }\r\n }\r\n run(fn) {\r\n if (this.active) {\r\n const currentEffectScope = activeEffectScope;\r\n try {\r\n activeEffectScope = this;\r\n return fn();\r\n }\r\n finally {\r\n activeEffectScope = currentEffectScope;\r\n }\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`cannot run an inactive effect scope.`);\r\n }\r\n }\r\n /**\r\n * This should only be called on non-detached scopes\r\n * @internal\r\n */\r\n on() {\r\n activeEffectScope = this;\r\n }\r\n /**\r\n * This should only be called on non-detached scopes\r\n * @internal\r\n */\r\n off() {\r\n activeEffectScope = this.parent;\r\n }\r\n stop(fromParent) {\r\n if (this.active) {\r\n let i, l;\r\n for (i = 0, l = this.effects.length; i < l; i++) {\r\n this.effects[i].stop();\r\n }\r\n for (i = 0, l = this.cleanups.length; i < l; i++) {\r\n this.cleanups[i]();\r\n }\r\n if (this.scopes) {\r\n for (i = 0, l = this.scopes.length; i < l; i++) {\r\n this.scopes[i].stop(true);\r\n }\r\n }\r\n // nested scope, dereference from parent to avoid memory leaks\r\n if (this.parent && !fromParent) {\r\n // optimized O(1) removal\r\n const last = this.parent.scopes.pop();\r\n if (last && last !== this) {\r\n this.parent.scopes[this.index] = last;\r\n last.index = this.index;\r\n }\r\n }\r\n this.active = false;\r\n }\r\n }\r\n}\r\nfunction effectScope(detached) {\r\n return new EffectScope(detached);\r\n}\r\nfunction recordEffectScope(effect, scope = activeEffectScope) {\r\n if (scope && scope.active) {\r\n scope.effects.push(effect);\r\n }\r\n}\r\nfunction getCurrentScope() {\r\n return activeEffectScope;\r\n}\r\nfunction onScopeDispose(fn) {\r\n if (activeEffectScope) {\r\n activeEffectScope.cleanups.push(fn);\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`onScopeDispose() is called when there is no active effect scope` +\r\n ` to be associated with.`);\r\n }\r\n}\n\nconst createDep = (effects) => {\r\n const dep = new Set(effects);\r\n dep.w = 0;\r\n dep.n = 0;\r\n return dep;\r\n};\r\nconst wasTracked = (dep) => (dep.w & trackOpBit) > 0;\r\nconst newTracked = (dep) => (dep.n & trackOpBit) > 0;\r\nconst initDepMarkers = ({ deps }) => {\r\n if (deps.length) {\r\n for (let i = 0; i < deps.length; i++) {\r\n deps[i].w |= trackOpBit; // set was tracked\r\n }\r\n }\r\n};\r\nconst finalizeDepMarkers = (effect) => {\r\n const { deps } = effect;\r\n if (deps.length) {\r\n let ptr = 0;\r\n for (let i = 0; i < deps.length; i++) {\r\n const dep = deps[i];\r\n if (wasTracked(dep) && !newTracked(dep)) {\r\n dep.delete(effect);\r\n }\r\n else {\r\n deps[ptr++] = dep;\r\n }\r\n // clear bits\r\n dep.w &= ~trackOpBit;\r\n dep.n &= ~trackOpBit;\r\n }\r\n deps.length = ptr;\r\n }\r\n};\n\nconst targetMap = new WeakMap();\r\n// The number of effects currently being tracked recursively.\r\nlet effectTrackDepth = 0;\r\nlet trackOpBit = 1;\r\n/**\r\n * The bitwise track markers support at most 30 levels of recursion.\r\n * This value is chosen to enable modern JS engines to use a SMI on all platforms.\r\n * When recursion depth is greater, fall back to using a full cleanup.\r\n */\r\nconst maxMarkerBits = 30;\r\nlet activeEffect;\r\nconst ITERATE_KEY = Symbol((process.env.NODE_ENV !== 'production') ? 'iterate' : '');\r\nconst MAP_KEY_ITERATE_KEY = Symbol((process.env.NODE_ENV !== 'production') ? 'Map key iterate' : '');\r\nclass ReactiveEffect {\r\n constructor(fn, scheduler = null, scope) {\r\n this.fn = fn;\r\n this.scheduler = scheduler;\r\n this.active = true;\r\n this.deps = [];\r\n this.parent = undefined;\r\n recordEffectScope(this, scope);\r\n }\r\n run() {\r\n if (!this.active) {\r\n return this.fn();\r\n }\r\n let parent = activeEffect;\r\n let lastShouldTrack = shouldTrack;\r\n while (parent) {\r\n if (parent === this) {\r\n return;\r\n }\r\n parent = parent.parent;\r\n }\r\n try {\r\n this.parent = activeEffect;\r\n activeEffect = this;\r\n shouldTrack = true;\r\n trackOpBit = 1 << ++effectTrackDepth;\r\n if (effectTrackDepth <= maxMarkerBits) {\r\n initDepMarkers(this);\r\n }\r\n else {\r\n cleanupEffect(this);\r\n }\r\n return this.fn();\r\n }\r\n finally {\r\n if (effectTrackDepth <= maxMarkerBits) {\r\n finalizeDepMarkers(this);\r\n }\r\n trackOpBit = 1 << --effectTrackDepth;\r\n activeEffect = this.parent;\r\n shouldTrack = lastShouldTrack;\r\n this.parent = undefined;\r\n if (this.deferStop) {\r\n this.stop();\r\n }\r\n }\r\n }\r\n stop() {\r\n // stopped while running itself - defer the cleanup\r\n if (activeEffect === this) {\r\n this.deferStop = true;\r\n }\r\n else if (this.active) {\r\n cleanupEffect(this);\r\n if (this.onStop) {\r\n this.onStop();\r\n }\r\n this.active = false;\r\n }\r\n }\r\n}\r\nfunction cleanupEffect(effect) {\r\n const { deps } = effect;\r\n if (deps.length) {\r\n for (let i = 0; i < deps.length; i++) {\r\n deps[i].delete(effect);\r\n }\r\n deps.length = 0;\r\n }\r\n}\r\nfunction effect(fn, options) {\r\n if (fn.effect) {\r\n fn = fn.effect.fn;\r\n }\r\n const _effect = new ReactiveEffect(fn);\r\n if (options) {\r\n extend(_effect, options);\r\n if (options.scope)\r\n recordEffectScope(_effect, options.scope);\r\n }\r\n if (!options || !options.lazy) {\r\n _effect.run();\r\n }\r\n const runner = _effect.run.bind(_effect);\r\n runner.effect = _effect;\r\n return runner;\r\n}\r\nfunction stop(runner) {\r\n runner.effect.stop();\r\n}\r\nlet shouldTrack = true;\r\nconst trackStack = [];\r\nfunction pauseTracking() {\r\n trackStack.push(shouldTrack);\r\n shouldTrack = false;\r\n}\r\nfunction enableTracking() {\r\n trackStack.push(shouldTrack);\r\n shouldTrack = true;\r\n}\r\nfunction resetTracking() {\r\n const last = trackStack.pop();\r\n shouldTrack = last === undefined ? true : last;\r\n}\r\nfunction track(target, type, key) {\r\n if (shouldTrack && activeEffect) {\r\n let depsMap = targetMap.get(target);\r\n if (!depsMap) {\r\n targetMap.set(target, (depsMap = new Map()));\r\n }\r\n let dep = depsMap.get(key);\r\n if (!dep) {\r\n depsMap.set(key, (dep = createDep()));\r\n }\r\n const eventInfo = (process.env.NODE_ENV !== 'production')\r\n ? { effect: activeEffect, target, type, key }\r\n : undefined;\r\n trackEffects(dep, eventInfo);\r\n }\r\n}\r\nfunction trackEffects(dep, debuggerEventExtraInfo) {\r\n let shouldTrack = false;\r\n if (effectTrackDepth <= maxMarkerBits) {\r\n if (!newTracked(dep)) {\r\n dep.n |= trackOpBit; // set newly tracked\r\n shouldTrack = !wasTracked(dep);\r\n }\r\n }\r\n else {\r\n // Full cleanup mode.\r\n shouldTrack = !dep.has(activeEffect);\r\n }\r\n if (shouldTrack) {\r\n dep.add(activeEffect);\r\n activeEffect.deps.push(dep);\r\n if ((process.env.NODE_ENV !== 'production') && activeEffect.onTrack) {\r\n activeEffect.onTrack(Object.assign({ effect: activeEffect }, debuggerEventExtraInfo));\r\n }\r\n }\r\n}\r\nfunction trigger(target, type, key, newValue, oldValue, oldTarget) {\r\n const depsMap = targetMap.get(target);\r\n if (!depsMap) {\r\n // never been tracked\r\n return;\r\n }\r\n let deps = [];\r\n if (type === \"clear\" /* CLEAR */) {\r\n // collection being cleared\r\n // trigger all effects for target\r\n deps = [...depsMap.values()];\r\n }\r\n else if (key === 'length' && isArray(target)) {\r\n depsMap.forEach((dep, key) => {\r\n if (key === 'length' || key >= newValue) {\r\n deps.push(dep);\r\n }\r\n });\r\n }\r\n else {\r\n // schedule runs for SET | ADD | DELETE\r\n if (key !== void 0) {\r\n deps.push(depsMap.get(key));\r\n }\r\n // also run for iteration key on ADD | DELETE | Map.SET\r\n switch (type) {\r\n case \"add\" /* ADD */:\r\n if (!isArray(target)) {\r\n deps.push(depsMap.get(ITERATE_KEY));\r\n if (isMap(target)) {\r\n deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));\r\n }\r\n }\r\n else if (isIntegerKey(key)) {\r\n // new index added to array -> length changes\r\n deps.push(depsMap.get('length'));\r\n }\r\n break;\r\n case \"delete\" /* DELETE */:\r\n if (!isArray(target)) {\r\n deps.push(depsMap.get(ITERATE_KEY));\r\n if (isMap(target)) {\r\n deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));\r\n }\r\n }\r\n break;\r\n case \"set\" /* SET */:\r\n if (isMap(target)) {\r\n deps.push(depsMap.get(ITERATE_KEY));\r\n }\r\n break;\r\n }\r\n }\r\n const eventInfo = (process.env.NODE_ENV !== 'production')\r\n ? { target, type, key, newValue, oldValue, oldTarget }\r\n : undefined;\r\n if (deps.length === 1) {\r\n if (deps[0]) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n triggerEffects(deps[0], eventInfo);\r\n }\r\n else {\r\n triggerEffects(deps[0]);\r\n }\r\n }\r\n }\r\n else {\r\n const effects = [];\r\n for (const dep of deps) {\r\n if (dep) {\r\n effects.push(...dep);\r\n }\r\n }\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n triggerEffects(createDep(effects), eventInfo);\r\n }\r\n else {\r\n triggerEffects(createDep(effects));\r\n }\r\n }\r\n}\r\nfunction triggerEffects(dep, debuggerEventExtraInfo) {\r\n // spread into array for stabilization\r\n const effects = isArray(dep) ? dep : [...dep];\r\n for (const effect of effects) {\r\n if (effect.computed) {\r\n triggerEffect(effect, debuggerEventExtraInfo);\r\n }\r\n }\r\n for (const effect of effects) {\r\n if (!effect.computed) {\r\n triggerEffect(effect, debuggerEventExtraInfo);\r\n }\r\n }\r\n}\r\nfunction triggerEffect(effect, debuggerEventExtraInfo) {\r\n if (effect !== activeEffect || effect.allowRecurse) {\r\n if ((process.env.NODE_ENV !== 'production') && effect.onTrigger) {\r\n effect.onTrigger(extend({ effect }, debuggerEventExtraInfo));\r\n }\r\n if (effect.scheduler) {\r\n effect.scheduler();\r\n }\r\n else {\r\n effect.run();\r\n }\r\n }\r\n}\n\nconst isNonTrackableKeys = /*#__PURE__*/ makeMap(`__proto__,__v_isRef,__isVue`);\r\nconst builtInSymbols = new Set(\r\n/*#__PURE__*/\r\nObject.getOwnPropertyNames(Symbol)\r\n // ios10.x Object.getOwnPropertyNames(Symbol) can enumerate 'arguments' and 'caller'\r\n // but accessing them on Symbol leads to TypeError because Symbol is a strict mode\r\n // function\r\n .filter(key => key !== 'arguments' && key !== 'caller')\r\n .map(key => Symbol[key])\r\n .filter(isSymbol));\r\nconst get = /*#__PURE__*/ createGetter();\r\nconst shallowGet = /*#__PURE__*/ createGetter(false, true);\r\nconst readonlyGet = /*#__PURE__*/ createGetter(true);\r\nconst shallowReadonlyGet = /*#__PURE__*/ createGetter(true, true);\r\nconst arrayInstrumentations = /*#__PURE__*/ createArrayInstrumentations();\r\nfunction createArrayInstrumentations() {\r\n const instrumentations = {};\r\n ['includes', 'indexOf', 'lastIndexOf'].forEach(key => {\r\n instrumentations[key] = function (...args) {\r\n const arr = toRaw(this);\r\n for (let i = 0, l = this.length; i < l; i++) {\r\n track(arr, \"get\" /* GET */, i + '');\r\n }\r\n // we run the method using the original args first (which may be reactive)\r\n const res = arr[key](...args);\r\n if (res === -1 || res === false) {\r\n // if that didn't work, run it again using raw values.\r\n return arr[key](...args.map(toRaw));\r\n }\r\n else {\r\n return res;\r\n }\r\n };\r\n });\r\n ['push', 'pop', 'shift', 'unshift', 'splice'].forEach(key => {\r\n instrumentations[key] = function (...args) {\r\n pauseTracking();\r\n const res = toRaw(this)[key].apply(this, args);\r\n resetTracking();\r\n return res;\r\n };\r\n });\r\n return instrumentations;\r\n}\r\nfunction createGetter(isReadonly = false, shallow = false) {\r\n return function get(target, key, receiver) {\r\n if (key === \"__v_isReactive\" /* IS_REACTIVE */) {\r\n return !isReadonly;\r\n }\r\n else if (key === \"__v_isReadonly\" /* IS_READONLY */) {\r\n return isReadonly;\r\n }\r\n else if (key === \"__v_isShallow\" /* IS_SHALLOW */) {\r\n return shallow;\r\n }\r\n else if (key === \"__v_raw\" /* RAW */ &&\r\n receiver ===\r\n (isReadonly\r\n ? shallow\r\n ? shallowReadonlyMap\r\n : readonlyMap\r\n : shallow\r\n ? shallowReactiveMap\r\n : reactiveMap).get(target)) {\r\n return target;\r\n }\r\n const targetIsArray = isArray(target);\r\n if (!isReadonly && targetIsArray && hasOwn(arrayInstrumentations, key)) {\r\n return Reflect.get(arrayInstrumentations, key, receiver);\r\n }\r\n const res = Reflect.get(target, key, receiver);\r\n if (isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {\r\n return res;\r\n }\r\n if (!isReadonly) {\r\n track(target, \"get\" /* GET */, key);\r\n }\r\n if (shallow) {\r\n return res;\r\n }\r\n if (isRef(res)) {\r\n // ref unwrapping - skip unwrap for Array + integer key.\r\n return targetIsArray && isIntegerKey(key) ? res : res.value;\r\n }\r\n if (isObject(res)) {\r\n // Convert returned value into a proxy as well. we do the isObject check\r\n // here to avoid invalid value warning. Also need to lazy access readonly\r\n // and reactive here to avoid circular dependency.\r\n return isReadonly ? readonly(res) : reactive(res);\r\n }\r\n return res;\r\n };\r\n}\r\nconst set = /*#__PURE__*/ createSetter();\r\nconst shallowSet = /*#__PURE__*/ createSetter(true);\r\nfunction createSetter(shallow = false) {\r\n return function set(target, key, value, receiver) {\r\n let oldValue = target[key];\r\n if (isReadonly(oldValue) && isRef(oldValue) && !isRef(value)) {\r\n return false;\r\n }\r\n if (!shallow && !isReadonly(value)) {\r\n if (!isShallow(value)) {\r\n value = toRaw(value);\r\n oldValue = toRaw(oldValue);\r\n }\r\n if (!isArray(target) && isRef(oldValue) && !isRef(value)) {\r\n oldValue.value = value;\r\n return true;\r\n }\r\n }\r\n const hadKey = isArray(target) && isIntegerKey(key)\r\n ? Number(key) < target.length\r\n : hasOwn(target, key);\r\n const result = Reflect.set(target, key, value, receiver);\r\n // don't trigger if target is something up in the prototype chain of original\r\n if (target === toRaw(receiver)) {\r\n if (!hadKey) {\r\n trigger(target, \"add\" /* ADD */, key, value);\r\n }\r\n else if (hasChanged(value, oldValue)) {\r\n trigger(target, \"set\" /* SET */, key, value, oldValue);\r\n }\r\n }\r\n return result;\r\n };\r\n}\r\nfunction deleteProperty(target, key) {\r\n const hadKey = hasOwn(target, key);\r\n const oldValue = target[key];\r\n const result = Reflect.deleteProperty(target, key);\r\n if (result && hadKey) {\r\n trigger(target, \"delete\" /* DELETE */, key, undefined, oldValue);\r\n }\r\n return result;\r\n}\r\nfunction has(target, key) {\r\n const result = Reflect.has(target, key);\r\n if (!isSymbol(key) || !builtInSymbols.has(key)) {\r\n track(target, \"has\" /* HAS */, key);\r\n }\r\n return result;\r\n}\r\nfunction ownKeys(target) {\r\n track(target, \"iterate\" /* ITERATE */, isArray(target) ? 'length' : ITERATE_KEY);\r\n return Reflect.ownKeys(target);\r\n}\r\nconst mutableHandlers = {\r\n get,\r\n set,\r\n deleteProperty,\r\n has,\r\n ownKeys\r\n};\r\nconst readonlyHandlers = {\r\n get: readonlyGet,\r\n set(target, key) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`Set operation on key \"${String(key)}\" failed: target is readonly.`, target);\r\n }\r\n return true;\r\n },\r\n deleteProperty(target, key) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`Delete operation on key \"${String(key)}\" failed: target is readonly.`, target);\r\n }\r\n return true;\r\n }\r\n};\r\nconst shallowReactiveHandlers = /*#__PURE__*/ extend({}, mutableHandlers, {\r\n get: shallowGet,\r\n set: shallowSet\r\n});\r\n// Props handlers are special in the sense that it should not unwrap top-level\r\n// refs (in order to allow refs to be explicitly passed down), but should\r\n// retain the reactivity of the normal readonly object.\r\nconst shallowReadonlyHandlers = /*#__PURE__*/ extend({}, readonlyHandlers, {\r\n get: shallowReadonlyGet\r\n});\n\nconst toShallow = (value) => value;\r\nconst getProto = (v) => Reflect.getPrototypeOf(v);\r\nfunction get$1(target, key, isReadonly = false, isShallow = false) {\r\n // #1772: readonly(reactive(Map)) should return readonly + reactive version\r\n // of the value\r\n target = target[\"__v_raw\" /* RAW */];\r\n const rawTarget = toRaw(target);\r\n const rawKey = toRaw(key);\r\n if (!isReadonly) {\r\n if (key !== rawKey) {\r\n track(rawTarget, \"get\" /* GET */, key);\r\n }\r\n track(rawTarget, \"get\" /* GET */, rawKey);\r\n }\r\n const { has } = getProto(rawTarget);\r\n const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;\r\n if (has.call(rawTarget, key)) {\r\n return wrap(target.get(key));\r\n }\r\n else if (has.call(rawTarget, rawKey)) {\r\n return wrap(target.get(rawKey));\r\n }\r\n else if (target !== rawTarget) {\r\n // #3602 readonly(reactive(Map))\r\n // ensure that the nested reactive `Map` can do tracking for itself\r\n target.get(key);\r\n }\r\n}\r\nfunction has$1(key, isReadonly = false) {\r\n const target = this[\"__v_raw\" /* RAW */];\r\n const rawTarget = toRaw(target);\r\n const rawKey = toRaw(key);\r\n if (!isReadonly) {\r\n if (key !== rawKey) {\r\n track(rawTarget, \"has\" /* HAS */, key);\r\n }\r\n track(rawTarget, \"has\" /* HAS */, rawKey);\r\n }\r\n return key === rawKey\r\n ? target.has(key)\r\n : target.has(key) || target.has(rawKey);\r\n}\r\nfunction size(target, isReadonly = false) {\r\n target = target[\"__v_raw\" /* RAW */];\r\n !isReadonly && track(toRaw(target), \"iterate\" /* ITERATE */, ITERATE_KEY);\r\n return Reflect.get(target, 'size', target);\r\n}\r\nfunction add(value) {\r\n value = toRaw(value);\r\n const target = toRaw(this);\r\n const proto = getProto(target);\r\n const hadKey = proto.has.call(target, value);\r\n if (!hadKey) {\r\n target.add(value);\r\n trigger(target, \"add\" /* ADD */, value, value);\r\n }\r\n return this;\r\n}\r\nfunction set$1(key, value) {\r\n value = toRaw(value);\r\n const target = toRaw(this);\r\n const { has, get } = getProto(target);\r\n let hadKey = has.call(target, key);\r\n if (!hadKey) {\r\n key = toRaw(key);\r\n hadKey = has.call(target, key);\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n checkIdentityKeys(target, has, key);\r\n }\r\n const oldValue = get.call(target, key);\r\n target.set(key, value);\r\n if (!hadKey) {\r\n trigger(target, \"add\" /* ADD */, key, value);\r\n }\r\n else if (hasChanged(value, oldValue)) {\r\n trigger(target, \"set\" /* SET */, key, value, oldValue);\r\n }\r\n return this;\r\n}\r\nfunction deleteEntry(key) {\r\n const target = toRaw(this);\r\n const { has, get } = getProto(target);\r\n let hadKey = has.call(target, key);\r\n if (!hadKey) {\r\n key = toRaw(key);\r\n hadKey = has.call(target, key);\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n checkIdentityKeys(target, has, key);\r\n }\r\n const oldValue = get ? get.call(target, key) : undefined;\r\n // forward the operation before queueing reactions\r\n const result = target.delete(key);\r\n if (hadKey) {\r\n trigger(target, \"delete\" /* DELETE */, key, undefined, oldValue);\r\n }\r\n return result;\r\n}\r\nfunction clear() {\r\n const target = toRaw(this);\r\n const hadItems = target.size !== 0;\r\n const oldTarget = (process.env.NODE_ENV !== 'production')\r\n ? isMap(target)\r\n ? new Map(target)\r\n : new Set(target)\r\n : undefined;\r\n // forward the operation before queueing reactions\r\n const result = target.clear();\r\n if (hadItems) {\r\n trigger(target, \"clear\" /* CLEAR */, undefined, undefined, oldTarget);\r\n }\r\n return result;\r\n}\r\nfunction createForEach(isReadonly, isShallow) {\r\n return function forEach(callback, thisArg) {\r\n const observed = this;\r\n const target = observed[\"__v_raw\" /* RAW */];\r\n const rawTarget = toRaw(target);\r\n const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;\r\n !isReadonly && track(rawTarget, \"iterate\" /* ITERATE */, ITERATE_KEY);\r\n return target.forEach((value, key) => {\r\n // important: make sure the callback is\r\n // 1. invoked with the reactive map as `this` and 3rd arg\r\n // 2. the value received should be a corresponding reactive/readonly.\r\n return callback.call(thisArg, wrap(value), wrap(key), observed);\r\n });\r\n };\r\n}\r\nfunction createIterableMethod(method, isReadonly, isShallow) {\r\n return function (...args) {\r\n const target = this[\"__v_raw\" /* RAW */];\r\n const rawTarget = toRaw(target);\r\n const targetIsMap = isMap(rawTarget);\r\n const isPair = method === 'entries' || (method === Symbol.iterator && targetIsMap);\r\n const isKeyOnly = method === 'keys' && targetIsMap;\r\n const innerIterator = target[method](...args);\r\n const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;\r\n !isReadonly &&\r\n track(rawTarget, \"iterate\" /* ITERATE */, isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY);\r\n // return a wrapped iterator which returns observed versions of the\r\n // values emitted from the real iterator\r\n return {\r\n // iterator protocol\r\n next() {\r\n const { value, done } = innerIterator.next();\r\n return done\r\n ? { value, done }\r\n : {\r\n value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),\r\n done\r\n };\r\n },\r\n // iterable protocol\r\n [Symbol.iterator]() {\r\n return this;\r\n }\r\n };\r\n };\r\n}\r\nfunction createReadonlyMethod(type) {\r\n return function (...args) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n const key = args[0] ? `on key \"${args[0]}\" ` : ``;\r\n console.warn(`${capitalize(type)} operation ${key}failed: target is readonly.`, toRaw(this));\r\n }\r\n return type === \"delete\" /* DELETE */ ? false : this;\r\n };\r\n}\r\nfunction createInstrumentations() {\r\n const mutableInstrumentations = {\r\n get(key) {\r\n return get$1(this, key);\r\n },\r\n get size() {\r\n return size(this);\r\n },\r\n has: has$1,\r\n add,\r\n set: set$1,\r\n delete: deleteEntry,\r\n clear,\r\n forEach: createForEach(false, false)\r\n };\r\n const shallowInstrumentations = {\r\n get(key) {\r\n return get$1(this, key, false, true);\r\n },\r\n get size() {\r\n return size(this);\r\n },\r\n has: has$1,\r\n add,\r\n set: set$1,\r\n delete: deleteEntry,\r\n clear,\r\n forEach: createForEach(false, true)\r\n };\r\n const readonlyInstrumentations = {\r\n get(key) {\r\n return get$1(this, key, true);\r\n },\r\n get size() {\r\n return size(this, true);\r\n },\r\n has(key) {\r\n return has$1.call(this, key, true);\r\n },\r\n add: createReadonlyMethod(\"add\" /* ADD */),\r\n set: createReadonlyMethod(\"set\" /* SET */),\r\n delete: createReadonlyMethod(\"delete\" /* DELETE */),\r\n clear: createReadonlyMethod(\"clear\" /* CLEAR */),\r\n forEach: createForEach(true, false)\r\n };\r\n const shallowReadonlyInstrumentations = {\r\n get(key) {\r\n return get$1(this, key, true, true);\r\n },\r\n get size() {\r\n return size(this, true);\r\n },\r\n has(key) {\r\n return has$1.call(this, key, true);\r\n },\r\n add: createReadonlyMethod(\"add\" /* ADD */),\r\n set: createReadonlyMethod(\"set\" /* SET */),\r\n delete: createReadonlyMethod(\"delete\" /* DELETE */),\r\n clear: createReadonlyMethod(\"clear\" /* CLEAR */),\r\n forEach: createForEach(true, true)\r\n };\r\n const iteratorMethods = ['keys', 'values', 'entries', Symbol.iterator];\r\n iteratorMethods.forEach(method => {\r\n mutableInstrumentations[method] = createIterableMethod(method, false, false);\r\n readonlyInstrumentations[method] = createIterableMethod(method, true, false);\r\n shallowInstrumentations[method] = createIterableMethod(method, false, true);\r\n shallowReadonlyInstrumentations[method] = createIterableMethod(method, true, true);\r\n });\r\n return [\r\n mutableInstrumentations,\r\n readonlyInstrumentations,\r\n shallowInstrumentations,\r\n shallowReadonlyInstrumentations\r\n ];\r\n}\r\nconst [mutableInstrumentations, readonlyInstrumentations, shallowInstrumentations, shallowReadonlyInstrumentations] = /* #__PURE__*/ createInstrumentations();\r\nfunction createInstrumentationGetter(isReadonly, shallow) {\r\n const instrumentations = shallow\r\n ? isReadonly\r\n ? shallowReadonlyInstrumentations\r\n : shallowInstrumentations\r\n : isReadonly\r\n ? readonlyInstrumentations\r\n : mutableInstrumentations;\r\n return (target, key, receiver) => {\r\n if (key === \"__v_isReactive\" /* IS_REACTIVE */) {\r\n return !isReadonly;\r\n }\r\n else if (key === \"__v_isReadonly\" /* IS_READONLY */) {\r\n return isReadonly;\r\n }\r\n else if (key === \"__v_raw\" /* RAW */) {\r\n return target;\r\n }\r\n return Reflect.get(hasOwn(instrumentations, key) && key in target\r\n ? instrumentations\r\n : target, key, receiver);\r\n };\r\n}\r\nconst mutableCollectionHandlers = {\r\n get: /*#__PURE__*/ createInstrumentationGetter(false, false)\r\n};\r\nconst shallowCollectionHandlers = {\r\n get: /*#__PURE__*/ createInstrumentationGetter(false, true)\r\n};\r\nconst readonlyCollectionHandlers = {\r\n get: /*#__PURE__*/ createInstrumentationGetter(true, false)\r\n};\r\nconst shallowReadonlyCollectionHandlers = {\r\n get: /*#__PURE__*/ createInstrumentationGetter(true, true)\r\n};\r\nfunction checkIdentityKeys(target, has, key) {\r\n const rawKey = toRaw(key);\r\n if (rawKey !== key && has.call(target, rawKey)) {\r\n const type = toRawType(target);\r\n console.warn(`Reactive ${type} contains both the raw and reactive ` +\r\n `versions of the same object${type === `Map` ? ` as keys` : ``}, ` +\r\n `which can lead to inconsistencies. ` +\r\n `Avoid differentiating between the raw and reactive versions ` +\r\n `of an object and only use the reactive version if possible.`);\r\n }\r\n}\n\nconst reactiveMap = new WeakMap();\r\nconst shallowReactiveMap = new WeakMap();\r\nconst readonlyMap = new WeakMap();\r\nconst shallowReadonlyMap = new WeakMap();\r\nfunction targetTypeMap(rawType) {\r\n switch (rawType) {\r\n case 'Object':\r\n case 'Array':\r\n return 1 /* COMMON */;\r\n case 'Map':\r\n case 'Set':\r\n case 'WeakMap':\r\n case 'WeakSet':\r\n return 2 /* COLLECTION */;\r\n default:\r\n return 0 /* INVALID */;\r\n }\r\n}\r\nfunction getTargetType(value) {\r\n return value[\"__v_skip\" /* SKIP */] || !Object.isExtensible(value)\r\n ? 0 /* INVALID */\r\n : targetTypeMap(toRawType(value));\r\n}\r\nfunction reactive(target) {\r\n // if trying to observe a readonly proxy, return the readonly version.\r\n if (isReadonly(target)) {\r\n return target;\r\n }\r\n return createReactiveObject(target, false, mutableHandlers, mutableCollectionHandlers, reactiveMap);\r\n}\r\n/**\r\n * Return a shallowly-reactive copy of the original object, where only the root\r\n * level properties are reactive. It also does not auto-unwrap refs (even at the\r\n * root level).\r\n */\r\nfunction shallowReactive(target) {\r\n return createReactiveObject(target, false, shallowReactiveHandlers, shallowCollectionHandlers, shallowReactiveMap);\r\n}\r\n/**\r\n * Creates a readonly copy of the original object. Note the returned copy is not\r\n * made reactive, but `readonly` can be called on an already reactive object.\r\n */\r\nfunction readonly(target) {\r\n return createReactiveObject(target, true, readonlyHandlers, readonlyCollectionHandlers, readonlyMap);\r\n}\r\n/**\r\n * Returns a reactive-copy of the original object, where only the root level\r\n * properties are readonly, and does NOT unwrap refs nor recursively convert\r\n * returned properties.\r\n * This is used for creating the props proxy object for stateful components.\r\n */\r\nfunction shallowReadonly(target) {\r\n return createReactiveObject(target, true, shallowReadonlyHandlers, shallowReadonlyCollectionHandlers, shallowReadonlyMap);\r\n}\r\nfunction createReactiveObject(target, isReadonly, baseHandlers, collectionHandlers, proxyMap) {\r\n if (!isObject(target)) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n console.warn(`value cannot be made reactive: ${String(target)}`);\r\n }\r\n return target;\r\n }\r\n // target is already a Proxy, return it.\r\n // exception: calling readonly() on a reactive object\r\n if (target[\"__v_raw\" /* RAW */] &&\r\n !(isReadonly && target[\"__v_isReactive\" /* IS_REACTIVE */])) {\r\n return target;\r\n }\r\n // target already has corresponding Proxy\r\n const existingProxy = proxyMap.get(target);\r\n if (existingProxy) {\r\n return existingProxy;\r\n }\r\n // only specific value types can be observed.\r\n const targetType = getTargetType(target);\r\n if (targetType === 0 /* INVALID */) {\r\n return target;\r\n }\r\n const proxy = new Proxy(target, targetType === 2 /* COLLECTION */ ? collectionHandlers : baseHandlers);\r\n proxyMap.set(target, proxy);\r\n return proxy;\r\n}\r\nfunction isReactive(value) {\r\n if (isReadonly(value)) {\r\n return isReactive(value[\"__v_raw\" /* RAW */]);\r\n }\r\n return !!(value && value[\"__v_isReactive\" /* IS_REACTIVE */]);\r\n}\r\nfunction isReadonly(value) {\r\n return !!(value && value[\"__v_isReadonly\" /* IS_READONLY */]);\r\n}\r\nfunction isShallow(value) {\r\n return !!(value && value[\"__v_isShallow\" /* IS_SHALLOW */]);\r\n}\r\nfunction isProxy(value) {\r\n return isReactive(value) || isReadonly(value);\r\n}\r\nfunction toRaw(observed) {\r\n const raw = observed && observed[\"__v_raw\" /* RAW */];\r\n return raw ? toRaw(raw) : observed;\r\n}\r\nfunction markRaw(value) {\r\n def(value, \"__v_skip\" /* SKIP */, true);\r\n return value;\r\n}\r\nconst toReactive = (value) => isObject(value) ? reactive(value) : value;\r\nconst toReadonly = (value) => isObject(value) ? readonly(value) : value;\n\nfunction trackRefValue(ref) {\r\n if (shouldTrack && activeEffect) {\r\n ref = toRaw(ref);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n trackEffects(ref.dep || (ref.dep = createDep()), {\r\n target: ref,\r\n type: \"get\" /* GET */,\r\n key: 'value'\r\n });\r\n }\r\n else {\r\n trackEffects(ref.dep || (ref.dep = createDep()));\r\n }\r\n }\r\n}\r\nfunction triggerRefValue(ref, newVal) {\r\n ref = toRaw(ref);\r\n if (ref.dep) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n triggerEffects(ref.dep, {\r\n target: ref,\r\n type: \"set\" /* SET */,\r\n key: 'value',\r\n newValue: newVal\r\n });\r\n }\r\n else {\r\n triggerEffects(ref.dep);\r\n }\r\n }\r\n}\r\nfunction isRef(r) {\r\n return !!(r && r.__v_isRef === true);\r\n}\r\nfunction ref(value) {\r\n return createRef(value, false);\r\n}\r\nfunction shallowRef(value) {\r\n return createRef(value, true);\r\n}\r\nfunction createRef(rawValue, shallow) {\r\n if (isRef(rawValue)) {\r\n return rawValue;\r\n }\r\n return new RefImpl(rawValue, shallow);\r\n}\r\nclass RefImpl {\r\n constructor(value, __v_isShallow) {\r\n this.__v_isShallow = __v_isShallow;\r\n this.dep = undefined;\r\n this.__v_isRef = true;\r\n this._rawValue = __v_isShallow ? value : toRaw(value);\r\n this._value = __v_isShallow ? value : toReactive(value);\r\n }\r\n get value() {\r\n trackRefValue(this);\r\n return this._value;\r\n }\r\n set value(newVal) {\r\n newVal = this.__v_isShallow ? newVal : toRaw(newVal);\r\n if (hasChanged(newVal, this._rawValue)) {\r\n this._rawValue = newVal;\r\n this._value = this.__v_isShallow ? newVal : toReactive(newVal);\r\n triggerRefValue(this, newVal);\r\n }\r\n }\r\n}\r\nfunction triggerRef(ref) {\r\n triggerRefValue(ref, (process.env.NODE_ENV !== 'production') ? ref.value : void 0);\r\n}\r\nfunction unref(ref) {\r\n return isRef(ref) ? ref.value : ref;\r\n}\r\nconst shallowUnwrapHandlers = {\r\n get: (target, key, receiver) => unref(Reflect.get(target, key, receiver)),\r\n set: (target, key, value, receiver) => {\r\n const oldValue = target[key];\r\n if (isRef(oldValue) && !isRef(value)) {\r\n oldValue.value = value;\r\n return true;\r\n }\r\n else {\r\n return Reflect.set(target, key, value, receiver);\r\n }\r\n }\r\n};\r\nfunction proxyRefs(objectWithRefs) {\r\n return isReactive(objectWithRefs)\r\n ? objectWithRefs\r\n : new Proxy(objectWithRefs, shallowUnwrapHandlers);\r\n}\r\nclass CustomRefImpl {\r\n constructor(factory) {\r\n this.dep = undefined;\r\n this.__v_isRef = true;\r\n const { get, set } = factory(() => trackRefValue(this), () => triggerRefValue(this));\r\n this._get = get;\r\n this._set = set;\r\n }\r\n get value() {\r\n return this._get();\r\n }\r\n set value(newVal) {\r\n this._set(newVal);\r\n }\r\n}\r\nfunction customRef(factory) {\r\n return new CustomRefImpl(factory);\r\n}\r\nfunction toRefs(object) {\r\n if ((process.env.NODE_ENV !== 'production') && !isProxy(object)) {\r\n console.warn(`toRefs() expects a reactive object but received a plain one.`);\r\n }\r\n const ret = isArray(object) ? new Array(object.length) : {};\r\n for (const key in object) {\r\n ret[key] = toRef(object, key);\r\n }\r\n return ret;\r\n}\r\nclass ObjectRefImpl {\r\n constructor(_object, _key, _defaultValue) {\r\n this._object = _object;\r\n this._key = _key;\r\n this._defaultValue = _defaultValue;\r\n this.__v_isRef = true;\r\n }\r\n get value() {\r\n const val = this._object[this._key];\r\n return val === undefined ? this._defaultValue : val;\r\n }\r\n set value(newVal) {\r\n this._object[this._key] = newVal;\r\n }\r\n}\r\nfunction toRef(object, key, defaultValue) {\r\n const val = object[key];\r\n return isRef(val)\r\n ? val\r\n : new ObjectRefImpl(object, key, defaultValue);\r\n}\n\nclass ComputedRefImpl {\r\n constructor(getter, _setter, isReadonly, isSSR) {\r\n this._setter = _setter;\r\n this.dep = undefined;\r\n this.__v_isRef = true;\r\n this._dirty = true;\r\n this.effect = new ReactiveEffect(getter, () => {\r\n if (!this._dirty) {\r\n this._dirty = true;\r\n triggerRefValue(this);\r\n }\r\n });\r\n this.effect.computed = this;\r\n this.effect.active = this._cacheable = !isSSR;\r\n this[\"__v_isReadonly\" /* IS_READONLY */] = isReadonly;\r\n }\r\n get value() {\r\n // the computed ref may get wrapped by other proxies e.g. readonly() #3376\r\n const self = toRaw(this);\r\n trackRefValue(self);\r\n if (self._dirty || !self._cacheable) {\r\n self._dirty = false;\r\n self._value = self.effect.run();\r\n }\r\n return self._value;\r\n }\r\n set value(newValue) {\r\n this._setter(newValue);\r\n }\r\n}\r\nfunction computed(getterOrOptions, debugOptions, isSSR = false) {\r\n let getter;\r\n let setter;\r\n const onlyGetter = isFunction(getterOrOptions);\r\n if (onlyGetter) {\r\n getter = getterOrOptions;\r\n setter = (process.env.NODE_ENV !== 'production')\r\n ? () => {\r\n console.warn('Write operation failed: computed value is readonly');\r\n }\r\n : NOOP;\r\n }\r\n else {\r\n getter = getterOrOptions.get;\r\n setter = getterOrOptions.set;\r\n }\r\n const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter, isSSR);\r\n if ((process.env.NODE_ENV !== 'production') && debugOptions && !isSSR) {\r\n cRef.effect.onTrack = debugOptions.onTrack;\r\n cRef.effect.onTrigger = debugOptions.onTrigger;\r\n }\r\n return cRef;\r\n}\n\nvar _a;\r\nconst tick = /*#__PURE__*/ Promise.resolve();\r\nconst queue = [];\r\nlet queued = false;\r\nconst scheduler = (fn) => {\r\n queue.push(fn);\r\n if (!queued) {\r\n queued = true;\r\n tick.then(flush);\r\n }\r\n};\r\nconst flush = () => {\r\n for (let i = 0; i < queue.length; i++) {\r\n queue[i]();\r\n }\r\n queue.length = 0;\r\n queued = false;\r\n};\r\nclass DeferredComputedRefImpl {\r\n constructor(getter) {\r\n this.dep = undefined;\r\n this._dirty = true;\r\n this.__v_isRef = true;\r\n this[_a] = true;\r\n let compareTarget;\r\n let hasCompareTarget = false;\r\n let scheduled = false;\r\n this.effect = new ReactiveEffect(getter, (computedTrigger) => {\r\n if (this.dep) {\r\n if (computedTrigger) {\r\n compareTarget = this._value;\r\n hasCompareTarget = true;\r\n }\r\n else if (!scheduled) {\r\n const valueToCompare = hasCompareTarget ? compareTarget : this._value;\r\n scheduled = true;\r\n hasCompareTarget = false;\r\n scheduler(() => {\r\n if (this.effect.active && this._get() !== valueToCompare) {\r\n triggerRefValue(this);\r\n }\r\n scheduled = false;\r\n });\r\n }\r\n // chained upstream computeds are notified synchronously to ensure\r\n // value invalidation in case of sync access; normal effects are\r\n // deferred to be triggered in scheduler.\r\n for (const e of this.dep) {\r\n if (e.computed instanceof DeferredComputedRefImpl) {\r\n e.scheduler(true /* computedTrigger */);\r\n }\r\n }\r\n }\r\n this._dirty = true;\r\n });\r\n this.effect.computed = this;\r\n }\r\n _get() {\r\n if (this._dirty) {\r\n this._dirty = false;\r\n return (this._value = this.effect.run());\r\n }\r\n return this._value;\r\n }\r\n get value() {\r\n trackRefValue(this);\r\n // the computed ref may get wrapped by other proxies e.g. readonly() #3376\r\n return toRaw(this)._get();\r\n }\r\n}\r\n_a = \"__v_isReadonly\" /* IS_READONLY */;\r\nfunction deferredComputed(getter) {\r\n return new DeferredComputedRefImpl(getter);\r\n}\n\nexport { EffectScope, ITERATE_KEY, ReactiveEffect, computed, customRef, deferredComputed, effect, effectScope, enableTracking, getCurrentScope, isProxy, isReactive, isReadonly, isRef, isShallow, markRaw, onScopeDispose, pauseTracking, proxyRefs, reactive, readonly, ref, resetTracking, shallowReactive, shallowReadonly, shallowRef, stop, toRaw, toRef, toRefs, track, trigger, triggerRef, unref };\n","import { pauseTracking, resetTracking, isRef, toRaw, isShallow as isShallow$1, isReactive, ReactiveEffect, ref, shallowReadonly, track, reactive, shallowReactive, trigger, isProxy, EffectScope, markRaw, proxyRefs, computed as computed$1, isReadonly } from '@vue/reactivity';\nexport { EffectScope, ReactiveEffect, customRef, effect, effectScope, getCurrentScope, isProxy, isReactive, isReadonly, isRef, isShallow, markRaw, onScopeDispose, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, stop, toRaw, toRef, toRefs, triggerRef, unref } from '@vue/reactivity';\nimport { isString, isFunction, isPromise, isArray, NOOP, getGlobalThis, extend, EMPTY_OBJ, toHandlerKey, toNumber, hyphenate, camelize, isOn, hasOwn, isModelListener, hasChanged, remove, isObject, isSet, isMap, isPlainObject, invokeArrayFns, isBuiltInDirective, capitalize, isGloballyWhitelisted, def, isReservedProp, EMPTY_ARR, toRawType, makeMap, NO, normalizeClass, normalizeStyle } from '@vue/shared';\nexport { camelize, capitalize, normalizeClass, normalizeProps, normalizeStyle, toDisplayString, toHandlerKey } from '@vue/shared';\n\nconst stack = [];\r\nfunction pushWarningContext(vnode) {\r\n stack.push(vnode);\r\n}\r\nfunction popWarningContext() {\r\n stack.pop();\r\n}\r\nfunction warn(msg, ...args) {\r\n // avoid props formatting or warn handler tracking deps that might be mutated\r\n // during patch, leading to infinite recursion.\r\n pauseTracking();\r\n const instance = stack.length ? stack[stack.length - 1].component : null;\r\n const appWarnHandler = instance && instance.appContext.config.warnHandler;\r\n const trace = getComponentTrace();\r\n if (appWarnHandler) {\r\n callWithErrorHandling(appWarnHandler, instance, 11 /* APP_WARN_HANDLER */, [\r\n msg + args.join(''),\r\n instance && instance.proxy,\r\n trace\r\n .map(({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`)\r\n .join('\\n'),\r\n trace\r\n ]);\r\n }\r\n else {\r\n const warnArgs = [`[Vue warn]: ${msg}`, ...args];\r\n /* istanbul ignore if */\r\n if (trace.length &&\r\n // avoid spamming console during tests\r\n !false) {\r\n warnArgs.push(`\\n`, ...formatTrace(trace));\r\n }\r\n console.warn(...warnArgs);\r\n }\r\n resetTracking();\r\n}\r\nfunction getComponentTrace() {\r\n let currentVNode = stack[stack.length - 1];\r\n if (!currentVNode) {\r\n return [];\r\n }\r\n // we can't just use the stack because it will be incomplete during updates\r\n // that did not start from the root. Re-construct the parent chain using\r\n // instance parent pointers.\r\n const normalizedStack = [];\r\n while (currentVNode) {\r\n const last = normalizedStack[0];\r\n if (last && last.vnode === currentVNode) {\r\n last.recurseCount++;\r\n }\r\n else {\r\n normalizedStack.push({\r\n vnode: currentVNode,\r\n recurseCount: 0\r\n });\r\n }\r\n const parentInstance = currentVNode.component && currentVNode.component.parent;\r\n currentVNode = parentInstance && parentInstance.vnode;\r\n }\r\n return normalizedStack;\r\n}\r\n/* istanbul ignore next */\r\nfunction formatTrace(trace) {\r\n const logs = [];\r\n trace.forEach((entry, i) => {\r\n logs.push(...(i === 0 ? [] : [`\\n`]), ...formatTraceEntry(entry));\r\n });\r\n return logs;\r\n}\r\nfunction formatTraceEntry({ vnode, recurseCount }) {\r\n const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``;\r\n const isRoot = vnode.component ? vnode.component.parent == null : false;\r\n const open = ` at <${formatComponentName(vnode.component, vnode.type, isRoot)}`;\r\n const close = `>` + postfix;\r\n return vnode.props\r\n ? [open, ...formatProps(vnode.props), close]\r\n : [open + close];\r\n}\r\n/* istanbul ignore next */\r\nfunction formatProps(props) {\r\n const res = [];\r\n const keys = Object.keys(props);\r\n keys.slice(0, 3).forEach(key => {\r\n res.push(...formatProp(key, props[key]));\r\n });\r\n if (keys.length > 3) {\r\n res.push(` ...`);\r\n }\r\n return res;\r\n}\r\n/* istanbul ignore next */\r\nfunction formatProp(key, value, raw) {\r\n if (isString(value)) {\r\n value = JSON.stringify(value);\r\n return raw ? value : [`${key}=${value}`];\r\n }\r\n else if (typeof value === 'number' ||\r\n typeof value === 'boolean' ||\r\n value == null) {\r\n return raw ? value : [`${key}=${value}`];\r\n }\r\n else if (isRef(value)) {\r\n value = formatProp(key, toRaw(value.value), true);\r\n return raw ? value : [`${key}=Ref<`, value, `>`];\r\n }\r\n else if (isFunction(value)) {\r\n return [`${key}=fn${value.name ? `<${value.name}>` : ``}`];\r\n }\r\n else {\r\n value = toRaw(value);\r\n return raw ? value : [`${key}=`, value];\r\n }\r\n}\n\nconst ErrorTypeStrings = {\r\n [\"sp\" /* SERVER_PREFETCH */]: 'serverPrefetch hook',\r\n [\"bc\" /* BEFORE_CREATE */]: 'beforeCreate hook',\r\n [\"c\" /* CREATED */]: 'created hook',\r\n [\"bm\" /* BEFORE_MOUNT */]: 'beforeMount hook',\r\n [\"m\" /* MOUNTED */]: 'mounted hook',\r\n [\"bu\" /* BEFORE_UPDATE */]: 'beforeUpdate hook',\r\n [\"u\" /* UPDATED */]: 'updated',\r\n [\"bum\" /* BEFORE_UNMOUNT */]: 'beforeUnmount hook',\r\n [\"um\" /* UNMOUNTED */]: 'unmounted hook',\r\n [\"a\" /* ACTIVATED */]: 'activated hook',\r\n [\"da\" /* DEACTIVATED */]: 'deactivated hook',\r\n [\"ec\" /* ERROR_CAPTURED */]: 'errorCaptured hook',\r\n [\"rtc\" /* RENDER_TRACKED */]: 'renderTracked hook',\r\n [\"rtg\" /* RENDER_TRIGGERED */]: 'renderTriggered hook',\r\n [0 /* SETUP_FUNCTION */]: 'setup function',\r\n [1 /* RENDER_FUNCTION */]: 'render function',\r\n [2 /* WATCH_GETTER */]: 'watcher getter',\r\n [3 /* WATCH_CALLBACK */]: 'watcher callback',\r\n [4 /* WATCH_CLEANUP */]: 'watcher cleanup function',\r\n [5 /* NATIVE_EVENT_HANDLER */]: 'native event handler',\r\n [6 /* COMPONENT_EVENT_HANDLER */]: 'component event handler',\r\n [7 /* VNODE_HOOK */]: 'vnode hook',\r\n [8 /* DIRECTIVE_HOOK */]: 'directive hook',\r\n [9 /* TRANSITION_HOOK */]: 'transition hook',\r\n [10 /* APP_ERROR_HANDLER */]: 'app errorHandler',\r\n [11 /* APP_WARN_HANDLER */]: 'app warnHandler',\r\n [12 /* FUNCTION_REF */]: 'ref function',\r\n [13 /* ASYNC_COMPONENT_LOADER */]: 'async component loader',\r\n [14 /* SCHEDULER */]: 'scheduler flush. This is likely a Vue internals bug. ' +\r\n 'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core'\r\n};\r\nfunction callWithErrorHandling(fn, instance, type, args) {\r\n let res;\r\n try {\r\n res = args ? fn(...args) : fn();\r\n }\r\n catch (err) {\r\n handleError(err, instance, type);\r\n }\r\n return res;\r\n}\r\nfunction callWithAsyncErrorHandling(fn, instance, type, args) {\r\n if (isFunction(fn)) {\r\n const res = callWithErrorHandling(fn, instance, type, args);\r\n if (res && isPromise(res)) {\r\n res.catch(err => {\r\n handleError(err, instance, type);\r\n });\r\n }\r\n return res;\r\n }\r\n const values = [];\r\n for (let i = 0; i < fn.length; i++) {\r\n values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));\r\n }\r\n return values;\r\n}\r\nfunction handleError(err, instance, type, throwInDev = true) {\r\n const contextVNode = instance ? instance.vnode : null;\r\n if (instance) {\r\n let cur = instance.parent;\r\n // the exposed instance is the render proxy to keep it consistent with 2.x\r\n const exposedInstance = instance.proxy;\r\n // in production the hook receives only the error code\r\n const errorInfo = (process.env.NODE_ENV !== 'production') ? ErrorTypeStrings[type] : type;\r\n while (cur) {\r\n const errorCapturedHooks = cur.ec;\r\n if (errorCapturedHooks) {\r\n for (let i = 0; i < errorCapturedHooks.length; i++) {\r\n if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {\r\n return;\r\n }\r\n }\r\n }\r\n cur = cur.parent;\r\n }\r\n // app-level handling\r\n const appErrorHandler = instance.appContext.config.errorHandler;\r\n if (appErrorHandler) {\r\n callWithErrorHandling(appErrorHandler, null, 10 /* APP_ERROR_HANDLER */, [err, exposedInstance, errorInfo]);\r\n return;\r\n }\r\n }\r\n logError(err, type, contextVNode, throwInDev);\r\n}\r\nfunction logError(err, type, contextVNode, throwInDev = true) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n const info = ErrorTypeStrings[type];\r\n if (contextVNode) {\r\n pushWarningContext(contextVNode);\r\n }\r\n warn(`Unhandled error${info ? ` during execution of ${info}` : ``}`);\r\n if (contextVNode) {\r\n popWarningContext();\r\n }\r\n // crash in dev by default so it's more noticeable\r\n if (throwInDev) {\r\n throw err;\r\n }\r\n else {\r\n console.error(err);\r\n }\r\n }\r\n else {\r\n // recover in prod to reduce the impact on end-user\r\n console.error(err);\r\n }\r\n}\n\nlet isFlushing = false;\r\nlet isFlushPending = false;\r\nconst queue = [];\r\nlet flushIndex = 0;\r\nconst pendingPreFlushCbs = [];\r\nlet activePreFlushCbs = null;\r\nlet preFlushIndex = 0;\r\nconst pendingPostFlushCbs = [];\r\nlet activePostFlushCbs = null;\r\nlet postFlushIndex = 0;\r\nconst resolvedPromise = /*#__PURE__*/ Promise.resolve();\r\nlet currentFlushPromise = null;\r\nlet currentPreFlushParentJob = null;\r\nconst RECURSION_LIMIT = 100;\r\nfunction nextTick(fn) {\r\n const p = currentFlushPromise || resolvedPromise;\r\n return fn ? p.then(this ? fn.bind(this) : fn) : p;\r\n}\r\n// #2768\r\n// Use binary-search to find a suitable position in the queue,\r\n// so that the queue maintains the increasing order of job's id,\r\n// which can prevent the job from being skipped and also can avoid repeated patching.\r\nfunction findInsertionIndex(id) {\r\n // the start index should be `flushIndex + 1`\r\n let start = flushIndex + 1;\r\n let end = queue.length;\r\n while (start < end) {\r\n const middle = (start + end) >>> 1;\r\n const middleJobId = getId(queue[middle]);\r\n middleJobId < id ? (start = middle + 1) : (end = middle);\r\n }\r\n return start;\r\n}\r\nfunction queueJob(job) {\r\n // the dedupe search uses the startIndex argument of Array.includes()\r\n // by default the search index includes the current job that is being run\r\n // so it cannot recursively trigger itself again.\r\n // if the job is a watch() callback, the search will start with a +1 index to\r\n // allow it recursively trigger itself - it is the user's responsibility to\r\n // ensure it doesn't end up in an infinite loop.\r\n if ((!queue.length ||\r\n !queue.includes(job, isFlushing && job.allowRecurse ? flushIndex + 1 : flushIndex)) &&\r\n job !== currentPreFlushParentJob) {\r\n if (job.id == null) {\r\n queue.push(job);\r\n }\r\n else {\r\n queue.splice(findInsertionIndex(job.id), 0, job);\r\n }\r\n queueFlush();\r\n }\r\n}\r\nfunction queueFlush() {\r\n if (!isFlushing && !isFlushPending) {\r\n isFlushPending = true;\r\n currentFlushPromise = resolvedPromise.then(flushJobs);\r\n }\r\n}\r\nfunction invalidateJob(job) {\r\n const i = queue.indexOf(job);\r\n if (i > flushIndex) {\r\n queue.splice(i, 1);\r\n }\r\n}\r\nfunction queueCb(cb, activeQueue, pendingQueue, index) {\r\n if (!isArray(cb)) {\r\n if (!activeQueue ||\r\n !activeQueue.includes(cb, cb.allowRecurse ? index + 1 : index)) {\r\n pendingQueue.push(cb);\r\n }\r\n }\r\n else {\r\n // if cb is an array, it is a component lifecycle hook which can only be\r\n // triggered by a job, which is already deduped in the main queue, so\r\n // we can skip duplicate check here to improve perf\r\n pendingQueue.push(...cb);\r\n }\r\n queueFlush();\r\n}\r\nfunction queuePreFlushCb(cb) {\r\n queueCb(cb, activePreFlushCbs, pendingPreFlushCbs, preFlushIndex);\r\n}\r\nfunction queuePostFlushCb(cb) {\r\n queueCb(cb, activePostFlushCbs, pendingPostFlushCbs, postFlushIndex);\r\n}\r\nfunction flushPreFlushCbs(seen, parentJob = null) {\r\n if (pendingPreFlushCbs.length) {\r\n currentPreFlushParentJob = parentJob;\r\n activePreFlushCbs = [...new Set(pendingPreFlushCbs)];\r\n pendingPreFlushCbs.length = 0;\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n seen = seen || new Map();\r\n }\r\n for (preFlushIndex = 0; preFlushIndex < activePreFlushCbs.length; preFlushIndex++) {\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n checkRecursiveUpdates(seen, activePreFlushCbs[preFlushIndex])) {\r\n continue;\r\n }\r\n activePreFlushCbs[preFlushIndex]();\r\n }\r\n activePreFlushCbs = null;\r\n preFlushIndex = 0;\r\n currentPreFlushParentJob = null;\r\n // recursively flush until it drains\r\n flushPreFlushCbs(seen, parentJob);\r\n }\r\n}\r\nfunction flushPostFlushCbs(seen) {\r\n // flush any pre cbs queued during the flush (e.g. pre watchers)\r\n flushPreFlushCbs();\r\n if (pendingPostFlushCbs.length) {\r\n const deduped = [...new Set(pendingPostFlushCbs)];\r\n pendingPostFlushCbs.length = 0;\r\n // #1947 already has active queue, nested flushPostFlushCbs call\r\n if (activePostFlushCbs) {\r\n activePostFlushCbs.push(...deduped);\r\n return;\r\n }\r\n activePostFlushCbs = deduped;\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n seen = seen || new Map();\r\n }\r\n activePostFlushCbs.sort((a, b) => getId(a) - getId(b));\r\n for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) {\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n checkRecursiveUpdates(seen, activePostFlushCbs[postFlushIndex])) {\r\n continue;\r\n }\r\n activePostFlushCbs[postFlushIndex]();\r\n }\r\n activePostFlushCbs = null;\r\n postFlushIndex = 0;\r\n }\r\n}\r\nconst getId = (job) => job.id == null ? Infinity : job.id;\r\nfunction flushJobs(seen) {\r\n isFlushPending = false;\r\n isFlushing = true;\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n seen = seen || new Map();\r\n }\r\n flushPreFlushCbs(seen);\r\n // Sort queue before flush.\r\n // This ensures that:\r\n // 1. Components are updated from parent to child. (because parent is always\r\n // created before the child so its render effect will have smaller\r\n // priority number)\r\n // 2. If a component is unmounted during a parent component's update,\r\n // its update can be skipped.\r\n queue.sort((a, b) => getId(a) - getId(b));\r\n // conditional usage of checkRecursiveUpdate must be determined out of\r\n // try ... catch block since Rollup by default de-optimizes treeshaking\r\n // inside try-catch. This can leave all warning code unshaked. Although\r\n // they would get eventually shaken by a minifier like terser, some minifiers\r\n // would fail to do that (e.g. https://github.com/evanw/esbuild/issues/1610)\r\n const check = (process.env.NODE_ENV !== 'production')\r\n ? (job) => checkRecursiveUpdates(seen, job)\r\n : NOOP;\r\n try {\r\n for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {\r\n const job = queue[flushIndex];\r\n if (job && job.active !== false) {\r\n if ((process.env.NODE_ENV !== 'production') && check(job)) {\r\n continue;\r\n }\r\n // console.log(`running:`, job.id)\r\n callWithErrorHandling(job, null, 14 /* SCHEDULER */);\r\n }\r\n }\r\n }\r\n finally {\r\n flushIndex = 0;\r\n queue.length = 0;\r\n flushPostFlushCbs(seen);\r\n isFlushing = false;\r\n currentFlushPromise = null;\r\n // some postFlushCb queued jobs!\r\n // keep flushing until it drains.\r\n if (queue.length ||\r\n pendingPreFlushCbs.length ||\r\n pendingPostFlushCbs.length) {\r\n flushJobs(seen);\r\n }\r\n }\r\n}\r\nfunction checkRecursiveUpdates(seen, fn) {\r\n if (!seen.has(fn)) {\r\n seen.set(fn, 1);\r\n }\r\n else {\r\n const count = seen.get(fn);\r\n if (count > RECURSION_LIMIT) {\r\n const instance = fn.ownerInstance;\r\n const componentName = instance && getComponentName(instance.type);\r\n warn(`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. ` +\r\n `This means you have a reactive effect that is mutating its own ` +\r\n `dependencies and thus recursively triggering itself. Possible sources ` +\r\n `include component template, render function, updated hook or ` +\r\n `watcher source function.`);\r\n return true;\r\n }\r\n else {\r\n seen.set(fn, count + 1);\r\n }\r\n }\r\n}\n\n/* eslint-disable no-restricted-globals */\r\nlet isHmrUpdating = false;\r\nconst hmrDirtyComponents = new Set();\r\n// Expose the HMR runtime on the global object\r\n// This makes it entirely tree-shakable without polluting the exports and makes\r\n// it easier to be used in toolings like vue-loader\r\n// Note: for a component to be eligible for HMR it also needs the __hmrId option\r\n// to be set so that its instances can be registered / removed.\r\nif ((process.env.NODE_ENV !== 'production')) {\r\n getGlobalThis().__VUE_HMR_RUNTIME__ = {\r\n createRecord: tryWrap(createRecord),\r\n rerender: tryWrap(rerender),\r\n reload: tryWrap(reload)\r\n };\r\n}\r\nconst map = new Map();\r\nfunction registerHMR(instance) {\r\n const id = instance.type.__hmrId;\r\n let record = map.get(id);\r\n if (!record) {\r\n createRecord(id, instance.type);\r\n record = map.get(id);\r\n }\r\n record.instances.add(instance);\r\n}\r\nfunction unregisterHMR(instance) {\r\n map.get(instance.type.__hmrId).instances.delete(instance);\r\n}\r\nfunction createRecord(id, initialDef) {\r\n if (map.has(id)) {\r\n return false;\r\n }\r\n map.set(id, {\r\n initialDef: normalizeClassComponent(initialDef),\r\n instances: new Set()\r\n });\r\n return true;\r\n}\r\nfunction normalizeClassComponent(component) {\r\n return isClassComponent(component) ? component.__vccOpts : component;\r\n}\r\nfunction rerender(id, newRender) {\r\n const record = map.get(id);\r\n if (!record) {\r\n return;\r\n }\r\n // update initial record (for not-yet-rendered component)\r\n record.initialDef.render = newRender;\r\n [...record.instances].forEach(instance => {\r\n if (newRender) {\r\n instance.render = newRender;\r\n normalizeClassComponent(instance.type).render = newRender;\r\n }\r\n instance.renderCache = [];\r\n // this flag forces child components with slot content to update\r\n isHmrUpdating = true;\r\n instance.update();\r\n isHmrUpdating = false;\r\n });\r\n}\r\nfunction reload(id, newComp) {\r\n const record = map.get(id);\r\n if (!record)\r\n return;\r\n newComp = normalizeClassComponent(newComp);\r\n // update initial def (for not-yet-rendered components)\r\n updateComponentDef(record.initialDef, newComp);\r\n // create a snapshot which avoids the set being mutated during updates\r\n const instances = [...record.instances];\r\n for (const instance of instances) {\r\n const oldComp = normalizeClassComponent(instance.type);\r\n if (!hmrDirtyComponents.has(oldComp)) {\r\n // 1. Update existing comp definition to match new one\r\n if (oldComp !== record.initialDef) {\r\n updateComponentDef(oldComp, newComp);\r\n }\r\n // 2. mark definition dirty. This forces the renderer to replace the\r\n // component on patch.\r\n hmrDirtyComponents.add(oldComp);\r\n }\r\n // 3. invalidate options resolution cache\r\n instance.appContext.optionsCache.delete(instance.type);\r\n // 4. actually update\r\n if (instance.ceReload) {\r\n // custom element\r\n hmrDirtyComponents.add(oldComp);\r\n instance.ceReload(newComp.styles);\r\n hmrDirtyComponents.delete(oldComp);\r\n }\r\n else if (instance.parent) {\r\n // 4. Force the parent instance to re-render. This will cause all updated\r\n // components to be unmounted and re-mounted. Queue the update so that we\r\n // don't end up forcing the same parent to re-render multiple times.\r\n queueJob(instance.parent.update);\r\n // instance is the inner component of an async custom element\r\n // invoke to reset styles\r\n if (instance.parent.type.__asyncLoader &&\r\n instance.parent.ceReload) {\r\n instance.parent.ceReload(newComp.styles);\r\n }\r\n }\r\n else if (instance.appContext.reload) {\r\n // root instance mounted via createApp() has a reload method\r\n instance.appContext.reload();\r\n }\r\n else if (typeof window !== 'undefined') {\r\n // root instance inside tree created via raw render(). Force reload.\r\n window.location.reload();\r\n }\r\n else {\r\n console.warn('[HMR] Root or manually mounted instance modified. Full reload required.');\r\n }\r\n }\r\n // 5. make sure to cleanup dirty hmr components after update\r\n queuePostFlushCb(() => {\r\n for (const instance of instances) {\r\n hmrDirtyComponents.delete(normalizeClassComponent(instance.type));\r\n }\r\n });\r\n}\r\nfunction updateComponentDef(oldComp, newComp) {\r\n extend(oldComp, newComp);\r\n for (const key in oldComp) {\r\n if (key !== '__file' && !(key in newComp)) {\r\n delete oldComp[key];\r\n }\r\n }\r\n}\r\nfunction tryWrap(fn) {\r\n return (id, arg) => {\r\n try {\r\n return fn(id, arg);\r\n }\r\n catch (e) {\r\n console.error(e);\r\n console.warn(`[HMR] Something went wrong during Vue component hot-reload. ` +\r\n `Full reload required.`);\r\n }\r\n };\r\n}\n\nlet devtools;\r\nlet buffer = [];\r\nlet devtoolsNotInstalled = false;\r\nfunction emit(event, ...args) {\r\n if (devtools) {\r\n devtools.emit(event, ...args);\r\n }\r\n else if (!devtoolsNotInstalled) {\r\n buffer.push({ event, args });\r\n }\r\n}\r\nfunction setDevtoolsHook(hook, target) {\r\n var _a, _b;\r\n devtools = hook;\r\n if (devtools) {\r\n devtools.enabled = true;\r\n buffer.forEach(({ event, args }) => devtools.emit(event, ...args));\r\n buffer = [];\r\n }\r\n else if (\r\n // handle late devtools injection - only do this if we are in an actual\r\n // browser environment to avoid the timer handle stalling test runner exit\r\n // (#4815)\r\n typeof window !== 'undefined' &&\r\n // some envs mock window but not fully\r\n window.HTMLElement &&\r\n // also exclude jsdom\r\n !((_b = (_a = window.navigator) === null || _a === void 0 ? void 0 : _a.userAgent) === null || _b === void 0 ? void 0 : _b.includes('jsdom'))) {\r\n const replay = (target.__VUE_DEVTOOLS_HOOK_REPLAY__ =\r\n target.__VUE_DEVTOOLS_HOOK_REPLAY__ || []);\r\n replay.push((newHook) => {\r\n setDevtoolsHook(newHook, target);\r\n });\r\n // clear buffer after 3s - the user probably doesn't have devtools installed\r\n // at all, and keeping the buffer will cause memory leaks (#4738)\r\n setTimeout(() => {\r\n if (!devtools) {\r\n target.__VUE_DEVTOOLS_HOOK_REPLAY__ = null;\r\n devtoolsNotInstalled = true;\r\n buffer = [];\r\n }\r\n }, 3000);\r\n }\r\n else {\r\n // non-browser env, assume not installed\r\n devtoolsNotInstalled = true;\r\n buffer = [];\r\n }\r\n}\r\nfunction devtoolsInitApp(app, version) {\r\n emit(\"app:init\" /* APP_INIT */, app, version, {\r\n Fragment,\r\n Text,\r\n Comment,\r\n Static\r\n });\r\n}\r\nfunction devtoolsUnmountApp(app) {\r\n emit(\"app:unmount\" /* APP_UNMOUNT */, app);\r\n}\r\nconst devtoolsComponentAdded = /*#__PURE__*/ createDevtoolsComponentHook(\"component:added\" /* COMPONENT_ADDED */);\r\nconst devtoolsComponentUpdated = \r\n/*#__PURE__*/ createDevtoolsComponentHook(\"component:updated\" /* COMPONENT_UPDATED */);\r\nconst devtoolsComponentRemoved = \r\n/*#__PURE__*/ createDevtoolsComponentHook(\"component:removed\" /* COMPONENT_REMOVED */);\r\nfunction createDevtoolsComponentHook(hook) {\r\n return (component) => {\r\n emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);\r\n };\r\n}\r\nconst devtoolsPerfStart = /*#__PURE__*/ createDevtoolsPerformanceHook(\"perf:start\" /* PERFORMANCE_START */);\r\nconst devtoolsPerfEnd = /*#__PURE__*/ createDevtoolsPerformanceHook(\"perf:end\" /* PERFORMANCE_END */);\r\nfunction createDevtoolsPerformanceHook(hook) {\r\n return (component, type, time) => {\r\n emit(hook, component.appContext.app, component.uid, component, type, time);\r\n };\r\n}\r\nfunction devtoolsComponentEmit(component, event, params) {\r\n emit(\"component:emit\" /* COMPONENT_EMIT */, component.appContext.app, component, event, params);\r\n}\n\nfunction emit$1(instance, event, ...rawArgs) {\r\n if (instance.isUnmounted)\r\n return;\r\n const props = instance.vnode.props || EMPTY_OBJ;\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n const { emitsOptions, propsOptions: [propsOptions] } = instance;\r\n if (emitsOptions) {\r\n if (!(event in emitsOptions) &&\r\n !(false )) {\r\n if (!propsOptions || !(toHandlerKey(event) in propsOptions)) {\r\n warn(`Component emitted event \"${event}\" but it is neither declared in ` +\r\n `the emits option nor as an \"${toHandlerKey(event)}\" prop.`);\r\n }\r\n }\r\n else {\r\n const validator = emitsOptions[event];\r\n if (isFunction(validator)) {\r\n const isValid = validator(...rawArgs);\r\n if (!isValid) {\r\n warn(`Invalid event arguments: event validation failed for event \"${event}\".`);\r\n }\r\n }\r\n }\r\n }\r\n }\r\n let args = rawArgs;\r\n const isModelListener = event.startsWith('update:');\r\n // for v-model update:xxx events, apply modifiers on args\r\n const modelArg = isModelListener && event.slice(7);\r\n if (modelArg && modelArg in props) {\r\n const modifiersKey = `${modelArg === 'modelValue' ? 'model' : modelArg}Modifiers`;\r\n const { number, trim } = props[modifiersKey] || EMPTY_OBJ;\r\n if (trim) {\r\n args = rawArgs.map(a => a.trim());\r\n }\r\n if (number) {\r\n args = rawArgs.map(toNumber);\r\n }\r\n }\r\n if ((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) {\r\n devtoolsComponentEmit(instance, event, args);\r\n }\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n const lowerCaseEvent = event.toLowerCase();\r\n if (lowerCaseEvent !== event && props[toHandlerKey(lowerCaseEvent)]) {\r\n warn(`Event \"${lowerCaseEvent}\" is emitted in component ` +\r\n `${formatComponentName(instance, instance.type)} but the handler is registered for \"${event}\". ` +\r\n `Note that HTML attributes are case-insensitive and you cannot use ` +\r\n `v-on to listen to camelCase events when using in-DOM templates. ` +\r\n `You should probably use \"${hyphenate(event)}\" instead of \"${event}\".`);\r\n }\r\n }\r\n let handlerName;\r\n let handler = props[(handlerName = toHandlerKey(event))] ||\r\n // also try camelCase event handler (#2249)\r\n props[(handlerName = toHandlerKey(camelize(event)))];\r\n // for v-model update:xxx events, also trigger kebab-case equivalent\r\n // for props passed via kebab-case\r\n if (!handler && isModelListener) {\r\n handler = props[(handlerName = toHandlerKey(hyphenate(event)))];\r\n }\r\n if (handler) {\r\n callWithAsyncErrorHandling(handler, instance, 6 /* COMPONENT_EVENT_HANDLER */, args);\r\n }\r\n const onceHandler = props[handlerName + `Once`];\r\n if (onceHandler) {\r\n if (!instance.emitted) {\r\n instance.emitted = {};\r\n }\r\n else if (instance.emitted[handlerName]) {\r\n return;\r\n }\r\n instance.emitted[handlerName] = true;\r\n callWithAsyncErrorHandling(onceHandler, instance, 6 /* COMPONENT_EVENT_HANDLER */, args);\r\n }\r\n}\r\nfunction normalizeEmitsOptions(comp, appContext, asMixin = false) {\r\n const cache = appContext.emitsCache;\r\n const cached = cache.get(comp);\r\n if (cached !== undefined) {\r\n return cached;\r\n }\r\n const raw = comp.emits;\r\n let normalized = {};\r\n // apply mixin/extends props\r\n let hasExtends = false;\r\n if (__VUE_OPTIONS_API__ && !isFunction(comp)) {\r\n const extendEmits = (raw) => {\r\n const normalizedFromExtend = normalizeEmitsOptions(raw, appContext, true);\r\n if (normalizedFromExtend) {\r\n hasExtends = true;\r\n extend(normalized, normalizedFromExtend);\r\n }\r\n };\r\n if (!asMixin && appContext.mixins.length) {\r\n appContext.mixins.forEach(extendEmits);\r\n }\r\n if (comp.extends) {\r\n extendEmits(comp.extends);\r\n }\r\n if (comp.mixins) {\r\n comp.mixins.forEach(extendEmits);\r\n }\r\n }\r\n if (!raw && !hasExtends) {\r\n cache.set(comp, null);\r\n return null;\r\n }\r\n if (isArray(raw)) {\r\n raw.forEach(key => (normalized[key] = null));\r\n }\r\n else {\r\n extend(normalized, raw);\r\n }\r\n cache.set(comp, normalized);\r\n return normalized;\r\n}\r\n// Check if an incoming prop key is a declared emit event listener.\r\n// e.g. With `emits: { click: null }`, props named `onClick` and `onclick` are\r\n// both considered matched listeners.\r\nfunction isEmitListener(options, key) {\r\n if (!options || !isOn(key)) {\r\n return false;\r\n }\r\n key = key.slice(2).replace(/Once$/, '');\r\n return (hasOwn(options, key[0].toLowerCase() + key.slice(1)) ||\r\n hasOwn(options, hyphenate(key)) ||\r\n hasOwn(options, key));\r\n}\n\n/**\r\n * mark the current rendering instance for asset resolution (e.g.\r\n * resolveComponent, resolveDirective) during render\r\n */\r\nlet currentRenderingInstance = null;\r\nlet currentScopeId = null;\r\n/**\r\n * Note: rendering calls maybe nested. The function returns the parent rendering\r\n * instance if present, which should be restored after the render is done:\r\n *\r\n * ```js\r\n * const prev = setCurrentRenderingInstance(i)\r\n * // ...render\r\n * setCurrentRenderingInstance(prev)\r\n * ```\r\n */\r\nfunction setCurrentRenderingInstance(instance) {\r\n const prev = currentRenderingInstance;\r\n currentRenderingInstance = instance;\r\n currentScopeId = (instance && instance.type.__scopeId) || null;\r\n return prev;\r\n}\r\n/**\r\n * Set scope id when creating hoisted vnodes.\r\n * @private compiler helper\r\n */\r\nfunction pushScopeId(id) {\r\n currentScopeId = id;\r\n}\r\n/**\r\n * Technically we no longer need this after 3.0.8 but we need to keep the same\r\n * API for backwards compat w/ code generated by compilers.\r\n * @private\r\n */\r\nfunction popScopeId() {\r\n currentScopeId = null;\r\n}\r\n/**\r\n * Only for backwards compat\r\n * @private\r\n */\r\nconst withScopeId = (_id) => withCtx;\r\n/**\r\n * Wrap a slot function to memoize current rendering instance\r\n * @private compiler helper\r\n */\r\nfunction withCtx(fn, ctx = currentRenderingInstance, isNonScopedSlot // false only\r\n) {\r\n if (!ctx)\r\n return fn;\r\n // already normalized\r\n if (fn._n) {\r\n return fn;\r\n }\r\n const renderFnWithContext = (...args) => {\r\n // If a user calls a compiled slot inside a template expression (#1745), it\r\n // can mess up block tracking, so by default we disable block tracking and\r\n // force bail out when invoking a compiled slot (indicated by the ._d flag).\r\n // This isn't necessary if rendering a compiled ``, so we flip the\r\n // ._d flag off when invoking the wrapped fn inside `renderSlot`.\r\n if (renderFnWithContext._d) {\r\n setBlockTracking(-1);\r\n }\r\n const prevInstance = setCurrentRenderingInstance(ctx);\r\n const res = fn(...args);\r\n setCurrentRenderingInstance(prevInstance);\r\n if (renderFnWithContext._d) {\r\n setBlockTracking(1);\r\n }\r\n if ((process.env.NODE_ENV !== 'production') || __VUE_PROD_DEVTOOLS__) {\r\n devtoolsComponentUpdated(ctx);\r\n }\r\n return res;\r\n };\r\n // mark normalized to avoid duplicated wrapping\r\n renderFnWithContext._n = true;\r\n // mark this as compiled by default\r\n // this is used in vnode.ts -> normalizeChildren() to set the slot\r\n // rendering flag.\r\n renderFnWithContext._c = true;\r\n // disable block tracking by default\r\n renderFnWithContext._d = true;\r\n return renderFnWithContext;\r\n}\n\n/**\r\n * dev only flag to track whether $attrs was used during render.\r\n * If $attrs was used during render then the warning for failed attrs\r\n * fallthrough can be suppressed.\r\n */\r\nlet accessedAttrs = false;\r\nfunction markAttrsAccessed() {\r\n accessedAttrs = true;\r\n}\r\nfunction renderComponentRoot(instance) {\r\n const { type: Component, vnode, proxy, withProxy, props, propsOptions: [propsOptions], slots, attrs, emit, render, renderCache, data, setupState, ctx, inheritAttrs } = instance;\r\n let result;\r\n let fallthroughAttrs;\r\n const prev = setCurrentRenderingInstance(instance);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n accessedAttrs = false;\r\n }\r\n try {\r\n if (vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */) {\r\n // withProxy is a proxy with a different `has` trap only for\r\n // runtime-compiled render functions using `with` block.\r\n const proxyToUse = withProxy || proxy;\r\n result = normalizeVNode(render.call(proxyToUse, proxyToUse, renderCache, props, setupState, data, ctx));\r\n fallthroughAttrs = attrs;\r\n }\r\n else {\r\n // functional\r\n const render = Component;\r\n // in dev, mark attrs accessed if optional props (attrs === props)\r\n if ((process.env.NODE_ENV !== 'production') && attrs === props) {\r\n markAttrsAccessed();\r\n }\r\n result = normalizeVNode(render.length > 1\r\n ? render(props, (process.env.NODE_ENV !== 'production')\r\n ? {\r\n get attrs() {\r\n markAttrsAccessed();\r\n return attrs;\r\n },\r\n slots,\r\n emit\r\n }\r\n : { attrs, slots, emit })\r\n : render(props, null /* we know it doesn't need it */));\r\n fallthroughAttrs = Component.props\r\n ? attrs\r\n : getFunctionalFallthrough(attrs);\r\n }\r\n }\r\n catch (err) {\r\n blockStack.length = 0;\r\n handleError(err, instance, 1 /* RENDER_FUNCTION */);\r\n result = createVNode(Comment);\r\n }\r\n // attr merging\r\n // in dev mode, comments are preserved, and it's possible for a template\r\n // to have comments along side the root element which makes it a fragment\r\n let root = result;\r\n let setRoot = undefined;\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n result.patchFlag > 0 &&\r\n result.patchFlag & 2048 /* DEV_ROOT_FRAGMENT */) {\r\n [root, setRoot] = getChildRoot(result);\r\n }\r\n if (fallthroughAttrs && inheritAttrs !== false) {\r\n const keys = Object.keys(fallthroughAttrs);\r\n const { shapeFlag } = root;\r\n if (keys.length) {\r\n if (shapeFlag & (1 /* ELEMENT */ | 6 /* COMPONENT */)) {\r\n if (propsOptions && keys.some(isModelListener)) {\r\n // If a v-model listener (onUpdate:xxx) has a corresponding declared\r\n // prop, it indicates this component expects to handle v-model and\r\n // it should not fallthrough.\r\n // related: #1543, #1643, #1989\r\n fallthroughAttrs = filterModelListeners(fallthroughAttrs, propsOptions);\r\n }\r\n root = cloneVNode(root, fallthroughAttrs);\r\n }\r\n else if ((process.env.NODE_ENV !== 'production') && !accessedAttrs && root.type !== Comment) {\r\n const allAttrs = Object.keys(attrs);\r\n const eventAttrs = [];\r\n const extraAttrs = [];\r\n for (let i = 0, l = allAttrs.length; i < l; i++) {\r\n const key = allAttrs[i];\r\n if (isOn(key)) {\r\n // ignore v-model handlers when they fail to fallthrough\r\n if (!isModelListener(key)) {\r\n // remove `on`, lowercase first letter to reflect event casing\r\n // accurately\r\n eventAttrs.push(key[2].toLowerCase() + key.slice(3));\r\n }\r\n }\r\n else {\r\n extraAttrs.push(key);\r\n }\r\n }\r\n if (extraAttrs.length) {\r\n warn(`Extraneous non-props attributes (` +\r\n `${extraAttrs.join(', ')}) ` +\r\n `were passed to component but could not be automatically inherited ` +\r\n `because component renders fragment or text root nodes.`);\r\n }\r\n if (eventAttrs.length) {\r\n warn(`Extraneous non-emits event listeners (` +\r\n `${eventAttrs.join(', ')}) ` +\r\n `were passed to component but could not be automatically inherited ` +\r\n `because component renders fragment or text root nodes. ` +\r\n `If the listener is intended to be a component custom event listener only, ` +\r\n `declare it using the \"emits\" option.`);\r\n }\r\n }\r\n }\r\n }\r\n // inherit directives\r\n if (vnode.dirs) {\r\n if ((process.env.NODE_ENV !== 'production') && !isElementRoot(root)) {\r\n warn(`Runtime directive used on component with non-element root node. ` +\r\n `The directives will not function as intended.`);\r\n }\r\n // clone before mutating since the root may be a hoisted vnode\r\n root = cloneVNode(root);\r\n root.dirs = root.dirs ? root.dirs.concat(vnode.dirs) : vnode.dirs;\r\n }\r\n // inherit transition data\r\n if (vnode.transition) {\r\n if ((process.env.NODE_ENV !== 'production') && !isElementRoot(root)) {\r\n warn(`Component inside renders non-element root node ` +\r\n `that cannot be animated.`);\r\n }\r\n root.transition = vnode.transition;\r\n }\r\n if ((process.env.NODE_ENV !== 'production') && setRoot) {\r\n setRoot(root);\r\n }\r\n else {\r\n result = root;\r\n }\r\n setCurrentRenderingInstance(prev);\r\n return result;\r\n}\r\n/**\r\n * dev only\r\n * In dev mode, template root level comments are rendered, which turns the\r\n * template into a fragment root, but we need to locate the single element\r\n * root for attrs and scope id processing.\r\n */\r\nconst getChildRoot = (vnode) => {\r\n const rawChildren = vnode.children;\r\n const dynamicChildren = vnode.dynamicChildren;\r\n const childRoot = filterSingleRoot(rawChildren);\r\n if (!childRoot) {\r\n return [vnode, undefined];\r\n }\r\n const index = rawChildren.indexOf(childRoot);\r\n const dynamicIndex = dynamicChildren ? dynamicChildren.indexOf(childRoot) : -1;\r\n const setRoot = (updatedRoot) => {\r\n rawChildren[index] = updatedRoot;\r\n if (dynamicChildren) {\r\n if (dynamicIndex > -1) {\r\n dynamicChildren[dynamicIndex] = updatedRoot;\r\n }\r\n else if (updatedRoot.patchFlag > 0) {\r\n vnode.dynamicChildren = [...dynamicChildren, updatedRoot];\r\n }\r\n }\r\n };\r\n return [normalizeVNode(childRoot), setRoot];\r\n};\r\nfunction filterSingleRoot(children) {\r\n let singleRoot;\r\n for (let i = 0; i < children.length; i++) {\r\n const child = children[i];\r\n if (isVNode(child)) {\r\n // ignore user comment\r\n if (child.type !== Comment || child.children === 'v-if') {\r\n if (singleRoot) {\r\n // has more than 1 non-comment child, return now\r\n return;\r\n }\r\n else {\r\n singleRoot = child;\r\n }\r\n }\r\n }\r\n else {\r\n return;\r\n }\r\n }\r\n return singleRoot;\r\n}\r\nconst getFunctionalFallthrough = (attrs) => {\r\n let res;\r\n for (const key in attrs) {\r\n if (key === 'class' || key === 'style' || isOn(key)) {\r\n (res || (res = {}))[key] = attrs[key];\r\n }\r\n }\r\n return res;\r\n};\r\nconst filterModelListeners = (attrs, props) => {\r\n const res = {};\r\n for (const key in attrs) {\r\n if (!isModelListener(key) || !(key.slice(9) in props)) {\r\n res[key] = attrs[key];\r\n }\r\n }\r\n return res;\r\n};\r\nconst isElementRoot = (vnode) => {\r\n return (vnode.shapeFlag & (6 /* COMPONENT */ | 1 /* ELEMENT */) ||\r\n vnode.type === Comment // potential v-if branch switch\r\n );\r\n};\r\nfunction shouldUpdateComponent(prevVNode, nextVNode, optimized) {\r\n const { props: prevProps, children: prevChildren, component } = prevVNode;\r\n const { props: nextProps, children: nextChildren, patchFlag } = nextVNode;\r\n const emits = component.emitsOptions;\r\n // Parent component's render function was hot-updated. Since this may have\r\n // caused the child component's slots content to have changed, we need to\r\n // force the child to update as well.\r\n if ((process.env.NODE_ENV !== 'production') && (prevChildren || nextChildren) && isHmrUpdating) {\r\n return true;\r\n }\r\n // force child update for runtime directive or transition on component vnode.\r\n if (nextVNode.dirs || nextVNode.transition) {\r\n return true;\r\n }\r\n if (optimized && patchFlag >= 0) {\r\n if (patchFlag & 1024 /* DYNAMIC_SLOTS */) {\r\n // slot content that references values that might have changed,\r\n // e.g. in a v-for\r\n return true;\r\n }\r\n if (patchFlag & 16 /* FULL_PROPS */) {\r\n if (!prevProps) {\r\n return !!nextProps;\r\n }\r\n // presence of this flag indicates props are always non-null\r\n return hasPropsChanged(prevProps, nextProps, emits);\r\n }\r\n else if (patchFlag & 8 /* PROPS */) {\r\n const dynamicProps = nextVNode.dynamicProps;\r\n for (let i = 0; i < dynamicProps.length; i++) {\r\n const key = dynamicProps[i];\r\n if (nextProps[key] !== prevProps[key] &&\r\n !isEmitListener(emits, key)) {\r\n return true;\r\n }\r\n }\r\n }\r\n }\r\n else {\r\n // this path is only taken by manually written render functions\r\n // so presence of any children leads to a forced update\r\n if (prevChildren || nextChildren) {\r\n if (!nextChildren || !nextChildren.$stable) {\r\n return true;\r\n }\r\n }\r\n if (prevProps === nextProps) {\r\n return false;\r\n }\r\n if (!prevProps) {\r\n return !!nextProps;\r\n }\r\n if (!nextProps) {\r\n return true;\r\n }\r\n return hasPropsChanged(prevProps, nextProps, emits);\r\n }\r\n return false;\r\n}\r\nfunction hasPropsChanged(prevProps, nextProps, emitsOptions) {\r\n const nextKeys = Object.keys(nextProps);\r\n if (nextKeys.length !== Object.keys(prevProps).length) {\r\n return true;\r\n }\r\n for (let i = 0; i < nextKeys.length; i++) {\r\n const key = nextKeys[i];\r\n if (nextProps[key] !== prevProps[key] &&\r\n !isEmitListener(emitsOptions, key)) {\r\n return true;\r\n }\r\n }\r\n return false;\r\n}\r\nfunction updateHOCHostEl({ vnode, parent }, el // HostNode\r\n) {\r\n while (parent && parent.subTree === vnode) {\r\n (vnode = parent.vnode).el = el;\r\n parent = parent.parent;\r\n }\r\n}\n\nconst isSuspense = (type) => type.__isSuspense;\r\n// Suspense exposes a component-like API, and is treated like a component\r\n// in the compiler, but internally it's a special built-in type that hooks\r\n// directly into the renderer.\r\nconst SuspenseImpl = {\r\n name: 'Suspense',\r\n // In order to make Suspense tree-shakable, we need to avoid importing it\r\n // directly in the renderer. The renderer checks for the __isSuspense flag\r\n // on a vnode's type and calls the `process` method, passing in renderer\r\n // internals.\r\n __isSuspense: true,\r\n process(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, \r\n // platform-specific impl passed from renderer\r\n rendererInternals) {\r\n if (n1 == null) {\r\n mountSuspense(n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, rendererInternals);\r\n }\r\n else {\r\n patchSuspense(n1, n2, container, anchor, parentComponent, isSVG, slotScopeIds, optimized, rendererInternals);\r\n }\r\n },\r\n hydrate: hydrateSuspense,\r\n create: createSuspenseBoundary,\r\n normalize: normalizeSuspenseChildren\r\n};\r\n// Force-casted public typing for h and TSX props inference\r\nconst Suspense = (SuspenseImpl );\r\nfunction triggerEvent(vnode, name) {\r\n const eventListener = vnode.props && vnode.props[name];\r\n if (isFunction(eventListener)) {\r\n eventListener();\r\n }\r\n}\r\nfunction mountSuspense(vnode, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, rendererInternals) {\r\n const { p: patch, o: { createElement } } = rendererInternals;\r\n const hiddenContainer = createElement('div');\r\n const suspense = (vnode.suspense = createSuspenseBoundary(vnode, parentSuspense, parentComponent, container, hiddenContainer, anchor, isSVG, slotScopeIds, optimized, rendererInternals));\r\n // start mounting the content subtree in an off-dom container\r\n patch(null, (suspense.pendingBranch = vnode.ssContent), hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds);\r\n // now check if we have encountered any async deps\r\n if (suspense.deps > 0) {\r\n // has async\r\n // invoke @fallback event\r\n triggerEvent(vnode, 'onPending');\r\n triggerEvent(vnode, 'onFallback');\r\n // mount the fallback tree\r\n patch(null, vnode.ssFallback, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r\n isSVG, slotScopeIds);\r\n setActiveBranch(suspense, vnode.ssFallback);\r\n }\r\n else {\r\n // Suspense has no async deps. Just resolve.\r\n suspense.resolve();\r\n }\r\n}\r\nfunction patchSuspense(n1, n2, container, anchor, parentComponent, isSVG, slotScopeIds, optimized, { p: patch, um: unmount, o: { createElement } }) {\r\n const suspense = (n2.suspense = n1.suspense);\r\n suspense.vnode = n2;\r\n n2.el = n1.el;\r\n const newBranch = n2.ssContent;\r\n const newFallback = n2.ssFallback;\r\n const { activeBranch, pendingBranch, isInFallback, isHydrating } = suspense;\r\n if (pendingBranch) {\r\n suspense.pendingBranch = newBranch;\r\n if (isSameVNodeType(newBranch, pendingBranch)) {\r\n // same root type but content may have changed.\r\n patch(pendingBranch, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r\n if (suspense.deps <= 0) {\r\n suspense.resolve();\r\n }\r\n else if (isInFallback) {\r\n patch(activeBranch, newFallback, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r\n isSVG, slotScopeIds, optimized);\r\n setActiveBranch(suspense, newFallback);\r\n }\r\n }\r\n else {\r\n // toggled before pending tree is resolved\r\n suspense.pendingId++;\r\n if (isHydrating) {\r\n // if toggled before hydration is finished, the current DOM tree is\r\n // no longer valid. set it as the active branch so it will be unmounted\r\n // when resolved\r\n suspense.isHydrating = false;\r\n suspense.activeBranch = pendingBranch;\r\n }\r\n else {\r\n unmount(pendingBranch, parentComponent, suspense);\r\n }\r\n // increment pending ID. this is used to invalidate async callbacks\r\n // reset suspense state\r\n suspense.deps = 0;\r\n // discard effects from pending branch\r\n suspense.effects.length = 0;\r\n // discard previous container\r\n suspense.hiddenContainer = createElement('div');\r\n if (isInFallback) {\r\n // already in fallback state\r\n patch(null, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r\n if (suspense.deps <= 0) {\r\n suspense.resolve();\r\n }\r\n else {\r\n patch(activeBranch, newFallback, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r\n isSVG, slotScopeIds, optimized);\r\n setActiveBranch(suspense, newFallback);\r\n }\r\n }\r\n else if (activeBranch && isSameVNodeType(newBranch, activeBranch)) {\r\n // toggled \"back\" to current active branch\r\n patch(activeBranch, newBranch, container, anchor, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r\n // force resolve\r\n suspense.resolve(true);\r\n }\r\n else {\r\n // switched to a 3rd branch\r\n patch(null, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r\n if (suspense.deps <= 0) {\r\n suspense.resolve();\r\n }\r\n }\r\n }\r\n }\r\n else {\r\n if (activeBranch && isSameVNodeType(newBranch, activeBranch)) {\r\n // root did not change, just normal patch\r\n patch(activeBranch, newBranch, container, anchor, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r\n setActiveBranch(suspense, newBranch);\r\n }\r\n else {\r\n // root node toggled\r\n // invoke @pending event\r\n triggerEvent(n2, 'onPending');\r\n // mount pending branch in off-dom container\r\n suspense.pendingBranch = newBranch;\r\n suspense.pendingId++;\r\n patch(null, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r\n if (suspense.deps <= 0) {\r\n // incoming branch has no async deps, resolve now.\r\n suspense.resolve();\r\n }\r\n else {\r\n const { timeout, pendingId } = suspense;\r\n if (timeout > 0) {\r\n setTimeout(() => {\r\n if (suspense.pendingId === pendingId) {\r\n suspense.fallback(newFallback);\r\n }\r\n }, timeout);\r\n }\r\n else if (timeout === 0) {\r\n suspense.fallback(newFallback);\r\n }\r\n }\r\n }\r\n }\r\n}\r\nlet hasWarned = false;\r\nfunction createSuspenseBoundary(vnode, parent, parentComponent, container, hiddenContainer, anchor, isSVG, slotScopeIds, optimized, rendererInternals, isHydrating = false) {\r\n /* istanbul ignore if */\r\n if ((process.env.NODE_ENV !== 'production') && !false && !hasWarned) {\r\n hasWarned = true;\r\n // @ts-ignore `console.info` cannot be null error\r\n console[console.info ? 'info' : 'log'](` is an experimental feature and its API will likely change.`);\r\n }\r\n const { p: patch, m: move, um: unmount, n: next, o: { parentNode, remove } } = rendererInternals;\r\n const timeout = toNumber(vnode.props && vnode.props.timeout);\r\n const suspense = {\r\n vnode,\r\n parent,\r\n parentComponent,\r\n isSVG,\r\n container,\r\n hiddenContainer,\r\n anchor,\r\n deps: 0,\r\n pendingId: 0,\r\n timeout: typeof timeout === 'number' ? timeout : -1,\r\n activeBranch: null,\r\n pendingBranch: null,\r\n isInFallback: true,\r\n isHydrating,\r\n isUnmounted: false,\r\n effects: [],\r\n resolve(resume = false) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n if (!resume && !suspense.pendingBranch) {\r\n throw new Error(`suspense.resolve() is called without a pending branch.`);\r\n }\r\n if (suspense.isUnmounted) {\r\n throw new Error(`suspense.resolve() is called on an already unmounted suspense boundary.`);\r\n }\r\n }\r\n const { vnode, activeBranch, pendingBranch, pendingId, effects, parentComponent, container } = suspense;\r\n if (suspense.isHydrating) {\r\n suspense.isHydrating = false;\r\n }\r\n else if (!resume) {\r\n const delayEnter = activeBranch &&\r\n pendingBranch.transition &&\r\n pendingBranch.transition.mode === 'out-in';\r\n if (delayEnter) {\r\n activeBranch.transition.afterLeave = () => {\r\n if (pendingId === suspense.pendingId) {\r\n move(pendingBranch, container, anchor, 0 /* ENTER */);\r\n }\r\n };\r\n }\r\n // this is initial anchor on mount\r\n let { anchor } = suspense;\r\n // unmount current active tree\r\n if (activeBranch) {\r\n // if the fallback tree was mounted, it may have been moved\r\n // as part of a parent suspense. get the latest anchor for insertion\r\n anchor = next(activeBranch);\r\n unmount(activeBranch, parentComponent, suspense, true);\r\n }\r\n if (!delayEnter) {\r\n // move content from off-dom container to actual container\r\n move(pendingBranch, container, anchor, 0 /* ENTER */);\r\n }\r\n }\r\n setActiveBranch(suspense, pendingBranch);\r\n suspense.pendingBranch = null;\r\n suspense.isInFallback = false;\r\n // flush buffered effects\r\n // check if there is a pending parent suspense\r\n let parent = suspense.parent;\r\n let hasUnresolvedAncestor = false;\r\n while (parent) {\r\n if (parent.pendingBranch) {\r\n // found a pending parent suspense, merge buffered post jobs\r\n // into that parent\r\n parent.effects.push(...effects);\r\n hasUnresolvedAncestor = true;\r\n break;\r\n }\r\n parent = parent.parent;\r\n }\r\n // no pending parent suspense, flush all jobs\r\n if (!hasUnresolvedAncestor) {\r\n queuePostFlushCb(effects);\r\n }\r\n suspense.effects = [];\r\n // invoke @resolve event\r\n triggerEvent(vnode, 'onResolve');\r\n },\r\n fallback(fallbackVNode) {\r\n if (!suspense.pendingBranch) {\r\n return;\r\n }\r\n const { vnode, activeBranch, parentComponent, container, isSVG } = suspense;\r\n // invoke @fallback event\r\n triggerEvent(vnode, 'onFallback');\r\n const anchor = next(activeBranch);\r\n const mountFallback = () => {\r\n if (!suspense.isInFallback) {\r\n return;\r\n }\r\n // mount the fallback tree\r\n patch(null, fallbackVNode, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r\n isSVG, slotScopeIds, optimized);\r\n setActiveBranch(suspense, fallbackVNode);\r\n };\r\n const delayEnter = fallbackVNode.transition && fallbackVNode.transition.mode === 'out-in';\r\n if (delayEnter) {\r\n activeBranch.transition.afterLeave = mountFallback;\r\n }\r\n suspense.isInFallback = true;\r\n // unmount current active branch\r\n unmount(activeBranch, parentComponent, null, // no suspense so unmount hooks fire now\r\n true // shouldRemove\r\n );\r\n if (!delayEnter) {\r\n mountFallback();\r\n }\r\n },\r\n move(container, anchor, type) {\r\n suspense.activeBranch &&\r\n move(suspense.activeBranch, container, anchor, type);\r\n suspense.container = container;\r\n },\r\n next() {\r\n return suspense.activeBranch && next(suspense.activeBranch);\r\n },\r\n registerDep(instance, setupRenderEffect) {\r\n const isInPendingSuspense = !!suspense.pendingBranch;\r\n if (isInPendingSuspense) {\r\n suspense.deps++;\r\n }\r\n const hydratedEl = instance.vnode.el;\r\n instance\r\n .asyncDep.catch(err => {\r\n handleError(err, instance, 0 /* SETUP_FUNCTION */);\r\n })\r\n .then(asyncSetupResult => {\r\n // retry when the setup() promise resolves.\r\n // component may have been unmounted before resolve.\r\n if (instance.isUnmounted ||\r\n suspense.isUnmounted ||\r\n suspense.pendingId !== instance.suspenseId) {\r\n return;\r\n }\r\n // retry from this component\r\n instance.asyncResolved = true;\r\n const { vnode } = instance;\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n pushWarningContext(vnode);\r\n }\r\n handleSetupResult(instance, asyncSetupResult, false);\r\n if (hydratedEl) {\r\n // vnode may have been replaced if an update happened before the\r\n // async dep is resolved.\r\n vnode.el = hydratedEl;\r\n }\r\n const placeholder = !hydratedEl && instance.subTree.el;\r\n setupRenderEffect(instance, vnode, \r\n // component may have been moved before resolve.\r\n // if this is not a hydration, instance.subTree will be the comment\r\n // placeholder.\r\n parentNode(hydratedEl || instance.subTree.el), \r\n // anchor will not be used if this is hydration, so only need to\r\n // consider the comment placeholder case.\r\n hydratedEl ? null : next(instance.subTree), suspense, isSVG, optimized);\r\n if (placeholder) {\r\n remove(placeholder);\r\n }\r\n updateHOCHostEl(instance, vnode.el);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n popWarningContext();\r\n }\r\n // only decrease deps count if suspense is not already resolved\r\n if (isInPendingSuspense && --suspense.deps === 0) {\r\n suspense.resolve();\r\n }\r\n });\r\n },\r\n unmount(parentSuspense, doRemove) {\r\n suspense.isUnmounted = true;\r\n if (suspense.activeBranch) {\r\n unmount(suspense.activeBranch, parentComponent, parentSuspense, doRemove);\r\n }\r\n if (suspense.pendingBranch) {\r\n unmount(suspense.pendingBranch, parentComponent, parentSuspense, doRemove);\r\n }\r\n }\r\n };\r\n return suspense;\r\n}\r\nfunction hydrateSuspense(node, vnode, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, rendererInternals, hydrateNode) {\r\n /* eslint-disable no-restricted-globals */\r\n const suspense = (vnode.suspense = createSuspenseBoundary(vnode, parentSuspense, parentComponent, node.parentNode, document.createElement('div'), null, isSVG, slotScopeIds, optimized, rendererInternals, true /* hydrating */));\r\n // there are two possible scenarios for server-rendered suspense:\r\n // - success: ssr content should be fully resolved\r\n // - failure: ssr content should be the fallback branch.\r\n // however, on the client we don't really know if it has failed or not\r\n // attempt to hydrate the DOM assuming it has succeeded, but we still\r\n // need to construct a suspense boundary first\r\n const result = hydrateNode(node, (suspense.pendingBranch = vnode.ssContent), parentComponent, suspense, slotScopeIds, optimized);\r\n if (suspense.deps === 0) {\r\n suspense.resolve();\r\n }\r\n return result;\r\n /* eslint-enable no-restricted-globals */\r\n}\r\nfunction normalizeSuspenseChildren(vnode) {\r\n const { shapeFlag, children } = vnode;\r\n const isSlotChildren = shapeFlag & 32 /* SLOTS_CHILDREN */;\r\n vnode.ssContent = normalizeSuspenseSlot(isSlotChildren ? children.default : children);\r\n vnode.ssFallback = isSlotChildren\r\n ? normalizeSuspenseSlot(children.fallback)\r\n : createVNode(Comment);\r\n}\r\nfunction normalizeSuspenseSlot(s) {\r\n let block;\r\n if (isFunction(s)) {\r\n const trackBlock = isBlockTreeEnabled && s._c;\r\n if (trackBlock) {\r\n // disableTracking: false\r\n // allow block tracking for compiled slots\r\n // (see ./componentRenderContext.ts)\r\n s._d = false;\r\n openBlock();\r\n }\r\n s = s();\r\n if (trackBlock) {\r\n s._d = true;\r\n block = currentBlock;\r\n closeBlock();\r\n }\r\n }\r\n if (isArray(s)) {\r\n const singleChild = filterSingleRoot(s);\r\n if ((process.env.NODE_ENV !== 'production') && !singleChild) {\r\n warn(` slots expect a single root node.`);\r\n }\r\n s = singleChild;\r\n }\r\n s = normalizeVNode(s);\r\n if (block && !s.dynamicChildren) {\r\n s.dynamicChildren = block.filter(c => c !== s);\r\n }\r\n return s;\r\n}\r\nfunction queueEffectWithSuspense(fn, suspense) {\r\n if (suspense && suspense.pendingBranch) {\r\n if (isArray(fn)) {\r\n suspense.effects.push(...fn);\r\n }\r\n else {\r\n suspense.effects.push(fn);\r\n }\r\n }\r\n else {\r\n queuePostFlushCb(fn);\r\n }\r\n}\r\nfunction setActiveBranch(suspense, branch) {\r\n suspense.activeBranch = branch;\r\n const { vnode, parentComponent } = suspense;\r\n const el = (vnode.el = branch.el);\r\n // in case suspense is the root node of a component,\r\n // recursively update the HOC el\r\n if (parentComponent && parentComponent.subTree === vnode) {\r\n parentComponent.vnode.el = el;\r\n updateHOCHostEl(parentComponent, el);\r\n }\r\n}\n\nfunction provide(key, value) {\r\n if (!currentInstance) {\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`provide() can only be used inside setup().`);\r\n }\r\n }\r\n else {\r\n let provides = currentInstance.provides;\r\n // by default an instance inherits its parent's provides object\r\n // but when it needs to provide values of its own, it creates its\r\n // own provides object using parent provides object as prototype.\r\n // this way in `inject` we can simply look up injections from direct\r\n // parent and let the prototype chain do the work.\r\n const parentProvides = currentInstance.parent && currentInstance.parent.provides;\r\n if (parentProvides === provides) {\r\n provides = currentInstance.provides = Object.create(parentProvides);\r\n }\r\n // TS doesn't allow symbol as index type\r\n provides[key] = value;\r\n }\r\n}\r\nfunction inject(key, defaultValue, treatDefaultAsFactory = false) {\r\n // fallback to `currentRenderingInstance` so that this can be called in\r\n // a functional component\r\n const instance = currentInstance || currentRenderingInstance;\r\n if (instance) {\r\n // #2400\r\n // to support `app.use` plugins,\r\n // fallback to appContext's `provides` if the instance is at root\r\n const provides = instance.parent == null\r\n ? instance.vnode.appContext && instance.vnode.appContext.provides\r\n : instance.parent.provides;\r\n if (provides && key in provides) {\r\n // TS doesn't allow symbol as index type\r\n return provides[key];\r\n }\r\n else if (arguments.length > 1) {\r\n return treatDefaultAsFactory && isFunction(defaultValue)\r\n ? defaultValue.call(instance.proxy)\r\n : defaultValue;\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`injection \"${String(key)}\" not found.`);\r\n }\r\n }\r\n else if ((process.env.NODE_ENV !== 'production')) {\r\n warn(`inject() can only be used inside setup() or functional components.`);\r\n }\r\n}\n\n// Simple effect.\r\nfunction watchEffect(effect, options) {\r\n return doWatch(effect, null, options);\r\n}\r\nfunction watchPostEffect(effect, options) {\r\n return doWatch(effect, null, ((process.env.NODE_ENV !== 'production')\r\n ? Object.assign(Object.assign({}, options), { flush: 'post' }) : { flush: 'post' }));\r\n}\r\nfunction watchSyncEffect(effect, options) {\r\n return doWatch(effect, null, ((process.env.NODE_ENV !== 'production')\r\n ? Object.assign(Object.assign({}, options), { flush: 'sync' }) : { flush: 'sync' }));\r\n}\r\n// initial value for watchers to trigger on undefined initial values\r\nconst INITIAL_WATCHER_VALUE = {};\r\n// implementation\r\nfunction watch(source, cb, options) {\r\n if ((process.env.NODE_ENV !== 'production') && !isFunction(cb)) {\r\n warn(`\\`watch(fn, options?)\\` signature has been moved to a separate API. ` +\r\n `Use \\`watchEffect(fn, options?)\\` instead. \\`watch\\` now only ` +\r\n `supports \\`watch(source, cb, options?) signature.`);\r\n }\r\n return doWatch(source, cb, options);\r\n}\r\nfunction doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EMPTY_OBJ) {\r\n if ((process.env.NODE_ENV !== 'production') && !cb) {\r\n if (immediate !== undefined) {\r\n warn(`watch() \"immediate\" option is only respected when using the ` +\r\n `watch(source, callback, options?) signature.`);\r\n }\r\n if (deep !== undefined) {\r\n warn(`watch() \"deep\" option is only respected when using the ` +\r\n `watch(source, callback, options?) signature.`);\r\n }\r\n }\r\n const warnInvalidSource = (s) => {\r\n warn(`Invalid watch source: `, s, `A watch source can only be a getter/effect function, a ref, ` +\r\n `a reactive object, or an array of these types.`);\r\n };\r\n const instance = currentInstance;\r\n let getter;\r\n let forceTrigger = false;\r\n let isMultiSource = false;\r\n if (isRef(source)) {\r\n getter = () => source.value;\r\n forceTrigger = isShallow$1(source);\r\n }\r\n else if (isReactive(source)) {\r\n getter = () => source;\r\n deep = true;\r\n }\r\n else if (isArray(source)) {\r\n isMultiSource = true;\r\n forceTrigger = source.some(s => isReactive(s) || isShallow$1(s));\r\n getter = () => source.map(s => {\r\n if (isRef(s)) {\r\n return s.value;\r\n }\r\n else if (isReactive(s)) {\r\n return traverse(s);\r\n }\r\n else if (isFunction(s)) {\r\n return callWithErrorHandling(s, instance, 2 /* WATCH_GETTER */);\r\n }\r\n else {\r\n (process.env.NODE_ENV !== 'production') && warnInvalidSource(s);\r\n }\r\n });\r\n }\r\n else if (isFunction(source)) {\r\n if (cb) {\r\n // getter with cb\r\n getter = () => callWithErrorHandling(source, instance, 2 /* WATCH_GETTER */);\r\n }\r\n else {\r\n // no cb -> simple effect\r\n getter = () => {\r\n if (instance && instance.isUnmounted) {\r\n return;\r\n }\r\n if (cleanup) {\r\n cleanup();\r\n }\r\n return callWithAsyncErrorHandling(source, instance, 3 /* WATCH_CALLBACK */, [onCleanup]);\r\n };\r\n }\r\n }\r\n else {\r\n getter = NOOP;\r\n (process.env.NODE_ENV !== 'production') && warnInvalidSource(source);\r\n }\r\n if (cb && deep) {\r\n const baseGetter = getter;\r\n getter = () => traverse(baseGetter());\r\n }\r\n let cleanup;\r\n let onCleanup = (fn) => {\r\n cleanup = effect.onStop = () => {\r\n callWithErrorHandling(fn, instance, 4 /* WATCH_CLEANUP */);\r\n };\r\n };\r\n // in SSR there is no need to setup an actual effect, and it should be noop\r\n // unless it's eager\r\n if (isInSSRComponentSetup) {\r\n // we will also not call the invalidate callback (+ runner is not set up)\r\n onCleanup = NOOP;\r\n if (!cb) {\r\n getter();\r\n }\r\n else if (immediate) {\r\n callWithAsyncErrorHandling(cb, instance, 3 /* WATCH_CALLBACK */, [\r\n getter(),\r\n isMultiSource ? [] : undefined,\r\n onCleanup\r\n ]);\r\n }\r\n return NOOP;\r\n }\r\n let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE;\r\n const job = () => {\r\n if (!effect.active) {\r\n return;\r\n }\r\n if (cb) {\r\n // watch(source, cb)\r\n const newValue = effect.run();\r\n if (deep ||\r\n forceTrigger ||\r\n (isMultiSource\r\n ? newValue.some((v, i) => hasChanged(v, oldValue[i]))\r\n : hasChanged(newValue, oldValue)) ||\r\n (false )) {\r\n // cleanup before running cb again\r\n if (cleanup) {\r\n cleanup();\r\n }\r\n callWithAsyncErrorHandling(cb, instance, 3 /* WATCH_CALLBACK */, [\r\n newValue,\r\n // pass undefined as the old value when it's changed for the first time\r\n oldValue === INITIAL_WATCHER_VALUE ? undefined : oldValue,\r\n onCleanup\r\n ]);\r\n oldValue = newValue;\r\n }\r\n }\r\n else {\r\n // watchEffect\r\n effect.run();\r\n }\r\n };\r\n // important: mark the job as a watcher callback so that scheduler knows\r\n // it is allowed to self-trigger (#1727)\r\n job.allowRecurse = !!cb;\r\n let scheduler;\r\n if (flush === 'sync') {\r\n scheduler = job; // the scheduler function gets called directly\r\n }\r\n else if (flush === 'post') {\r\n scheduler = () => queuePostRenderEffect(job, instance && instance.suspense);\r\n }\r\n else {\r\n // default: 'pre'\r\n scheduler = () => queuePreFlushCb(job);\r\n }\r\n const effect = new ReactiveEffect(getter, scheduler);\r\n if ((process.env.NODE_ENV !== 'production')) {\r\n effect.onTrack = onTrack;\r\n effect.onTrigger = onTrigger;\r\n }\r\n // initial run\r\n if (cb) {\r\n if (immediate) {\r\n job();\r\n }\r\n else {\r\n oldValue = effect.run();\r\n }\r\n }\r\n else if (flush === 'post') {\r\n queuePostRenderEffect(effect.run.bind(effect), instance && instance.suspense);\r\n }\r\n else {\r\n effect.run();\r\n }\r\n return () => {\r\n effect.stop();\r\n if (instance && instance.scope) {\r\n remove(instance.scope.effects, effect);\r\n }\r\n };\r\n}\r\n// this.$watch\r\nfunction instanceWatch(source, value, options) {\r\n const publicThis = this.proxy;\r\n const getter = isString(source)\r\n ? source.includes('.')\r\n ? createPathGetter(publicThis, source)\r\n : () => publicThis[source]\r\n : source.bind(publicThis, publicThis);\r\n let cb;\r\n if (isFunction(value)) {\r\n cb = value;\r\n }\r\n else {\r\n cb = value.handler;\r\n options = value;\r\n }\r\n const cur = currentInstance;\r\n setCurrentInstance(this);\r\n const res = doWatch(getter, cb.bind(publicThis), options);\r\n if (cur) {\r\n setCurrentInstance(cur);\r\n }\r\n else {\r\n unsetCurrentInstance();\r\n }\r\n return res;\r\n}\r\nfunction createPathGetter(ctx, path) {\r\n const segments = path.split('.');\r\n return () => {\r\n let cur = ctx;\r\n for (let i = 0; i < segments.length && cur; i++) {\r\n cur = cur[segments[i]];\r\n }\r\n return cur;\r\n };\r\n}\r\nfunction traverse(value, seen) {\r\n if (!isObject(value) || value[\"__v_skip\" /* SKIP */]) {\r\n return value;\r\n }\r\n seen = seen || new Set();\r\n if (seen.has(value)) {\r\n return value;\r\n }\r\n seen.add(value);\r\n if (isRef(value)) {\r\n traverse(value.value, seen);\r\n }\r\n else if (isArray(value)) {\r\n for (let i = 0; i < value.length; i++) {\r\n traverse(value[i], seen);\r\n }\r\n }\r\n else if (isSet(value) || isMap(value)) {\r\n value.forEach((v) => {\r\n traverse(v, seen);\r\n });\r\n }\r\n else if (isPlainObject(value)) {\r\n for (const key in value) {\r\n traverse(value[key], seen);\r\n }\r\n }\r\n return value;\r\n}\n\nfunction useTransitionState() {\r\n const state = {\r\n isMounted: false,\r\n isLeaving: false,\r\n isUnmounting: false,\r\n leavingVNodes: new Map()\r\n };\r\n onMounted(() => {\r\n state.isMounted = true;\r\n });\r\n onBeforeUnmount(() => {\r\n state.isUnmounting = true;\r\n });\r\n return state;\r\n}\r\nconst TransitionHookValidator = [Function, Array];\r\nconst BaseTransitionImpl = {\r\n name: `BaseTransition`,\r\n props: {\r\n mode: String,\r\n appear: Boolean,\r\n persisted: Boolean,\r\n // enter\r\n onBeforeEnter: TransitionHookValidator,\r\n onEnter: TransitionHookValidator,\r\n onAfterEnter: TransitionHookValidator,\r\n onEnterCancelled: TransitionHookValidator,\r\n // leave\r\n onBeforeLeave: TransitionHookValidator,\r\n onLeave: TransitionHookValidator,\r\n onAfterLeave: TransitionHookValidator,\r\n onLeaveCancelled: TransitionHookValidator,\r\n // appear\r\n onBeforeAppear: TransitionHookValidator,\r\n onAppear: TransitionHookValidator,\r\n onAfterAppear: TransitionHookValidator,\r\n onAppearCancelled: TransitionHookValidator\r\n },\r\n setup(props, { slots }) {\r\n const instance = getCurrentInstance();\r\n const state = useTransitionState();\r\n let prevTransitionKey;\r\n return () => {\r\n const children = slots.default && getTransitionRawChildren(slots.default(), true);\r\n if (!children || !children.length) {\r\n return;\r\n }\r\n let child = children[0];\r\n if (children.length > 1) {\r\n let hasFound = false;\r\n // locate first non-comment child\r\n for (const c of children) {\r\n if (c.type !== Comment) {\r\n if ((process.env.NODE_ENV !== 'production') && hasFound) {\r\n // warn more than one non-comment child\r\n warn(' can only be used on a single element or component. ' +\r\n 'Use for lists.');\r\n break;\r\n }\r\n child = c;\r\n hasFound = true;\r\n if (!(process.env.NODE_ENV !== 'production'))\r\n break;\r\n }\r\n }\r\n }\r\n // there's no need to track reactivity for these props so use the raw\r\n // props for a bit better perf\r\n const rawProps = toRaw(props);\r\n const { mode } = rawProps;\r\n // check mode\r\n if ((process.env.NODE_ENV !== 'production') &&\r\n mode &&\r\n mode !== 'in-out' &&\r\n mode !== 'out-in' &&\r\n mode !== 'default') {\r\n warn(`invalid mode: ${mode}`);\r\n }\r\n if (state.isLeaving) {\r\n return emptyPlaceholder(child);\r\n }\r\n // in the case of , we need to\r\n // compare the type of the kept-alive children.\r\n const innerChild = getKeepAliveChild(child);\r\n if (!innerChild) {\r\n return emptyPlaceholder(child);\r\n }\r\n const enterHooks = resolveTransitionHooks(innerChild, rawProps, state, instance);\r\n setTransitionHooks(innerChild, enterHooks);\r\n const oldChild = instance.subTree;\r\n const oldInnerChild = oldChild && getKeepAliveChild(oldChild);\r\n let transitionKeyChanged = false;\r\n const { getTransitionKey } = innerChild.type;\r\n if (getTransitionKey) {\r\n const key = getTransitionKey();\r\n if (prevTransitionKey === undefined) {\r\n prevTransitionKey = key;\r\n }\r\n else if (key !== prevTransitionKey) {\r\n prevTransitionKey = key;\r\n transitionKeyChanged = true;\r\n }\r\n }\r\n // handle mode\r\n if (oldInnerChild &&\r\n oldInnerChild.type !== Comment &&\r\n (!isSameVNodeType(innerChild, oldInnerChild) || transitionKeyChanged)) {\r\n const leavingHooks = resolveTransitionHooks(oldInnerChild, rawProps, state, instance);\r\n // update old tree's hooks in case of dynamic transition\r\n setTransitionHooks(oldInnerChild, leavingHooks);\r\n // switching between different views\r\n if (mode === 'out-in') {\r\n state.isLeaving = true;\r\n // return placeholder node and queue update when leave finishes\r\n leavingHooks.afterLeave = () => {\r\n state.isLeaving = false;\r\n instance.update();\r\n };\r\n return emptyPlaceholder(child);\r\n }\r\n else if (mode === 'in-out' && innerChild.type !== Comment) {\r\n leavingHooks.delayLeave = (el, earlyRemove, delayedLeave) => {\r\n const leavingVNodesCache = getLeavingNodesForType(state, oldInnerChild);\r\n leavingVNodesCache[String(oldInnerChild.key)] = oldInnerChild;\r\n // early removal callback\r\n el._leaveCb = () => {\r\n earlyRemove();\r\n el._leaveCb = undefined;\r\n delete enterHooks.delayedLeave;\r\n };\r\n enterHooks.delayedLeave = delayedLeave;\r\n };\r\n }\r\n }\r\n return child;\r\n };\r\n }\r\n};\r\n// export the public type for h/tsx inference\r\n// also to avoid inline import() in generated d.ts files\r\nconst BaseTransition = BaseTransitionImpl;\r\nfunction getLeavingNodesForType(state, vnode) {\r\n const { leavingVNodes } = state;\r\n let leavingVNodesCache = leavingVNodes.get(vnode.type);\r\n if (!leavingVNodesCache) {\r\n leavingVNodesCache = Object.create(null);\r\n leavingVNodes.set(vnode.type, leavingVNodesCache);\r\n }\r\n return leavingVNodesCache;\r\n}\r\n// The transition hooks are attached to the vnode as vnode.transition\r\n// and will be called at appropriate timing in the renderer.\r\nfunction resolveTransitionHooks(vnode, props, state, instance) {\r\n const { appear, mode, persisted = false, onBeforeEnter, onEnter, onAfterEnter, onEnterCancelled, onBeforeLeave, onLeave, onAfterLeave, onLeaveCancelled, onBeforeAppear, onAppear, onAfterAppear, onAppearCancelled } = props;\r\n const key = String(vnode.key);\r\n const leavingVNodesCache = getLeavingNodesForType(state, vnode);\r\n const callHook = (hook, args) => {\r\n hook &&\r\n callWithAsyncErrorHandling(hook, instance, 9 /* TRANSITION_HOOK */, args);\r\n };\r\n const callAsyncHook = (hook, args) => {\r\n const done = args[1];\r\n callHook(hook, args);\r\n if (isArray(hook)) {\r\n if (hook.every(hook => hook.length <= 1))\r\n done();\r\n }\r\n else if (hook.length <= 1) {\r\n done();\r\n }\r\n };\r\n const hooks = {\r\n mode,\r\n persisted,\r\n beforeEnter(el) {\r\n let hook = onBeforeEnter;\r\n if (!state.isMounted) {\r\n if (appear) {\r\n hook = onBeforeAppear || onBeforeEnter;\r\n }\r\n else {\r\n return;\r\n }\r\n }\r\n // for same element (v-show)\r\n if (el._leaveCb) {\r\n el._leaveCb(true /* cancelled */);\r\n }\r\n // for toggled element with same key (v-if)\r\n const leavingVNode = leavingVNodesCache[key];\r\n if (leavingVNode &&\r\n isSameVNodeType(vnode, leavingVNode) &&\r\n leavingVNode.el._leaveCb) {\r\n // force early removal (not cancelled)\r\n leavingVNode.el._leaveCb();\r\n }\r\n callHook(hook, [el]);\r\n },\r\n enter(el) {\r\n let hook = onEnter;\r\n let afterHook = onAfterEnter;\r\n let cancelHook = onEnterCancelled;\r\n if (!state.isMounted) {\r\n if (appear) {\r\n hook = onAppear || onEnter;\r\n afterHook = onAfterAppear || onAfterEnter;\r\n cancelHook = onAppearCancelled || onEnterCancelled;\r\n }\r\n else {\r\n return;\r\n }\r\n }\r\n let called = false;\r\n const done = (el._enterCb = (cancelled) => {\r\n if (called)\r\n return;\r\n called = true;\r\n if (cancelled) {\r\n callHook(cancelHook, [el]);\r\n }\r\n else {\r\n callHook(afterHook, [el]);\r\n }\r\n if (hooks.delayedLeave) {\r\n hooks.delayedLeave();\r\n }\r\n el._enterCb = undefined;\r\n });\r\n if (hook) {\r\n callAsyncHook(hook, [el, done]);\r\n }\r\n else {\r\n done();\r\n }\r\n },\r\n leave(el, remove) {\r\n const key = String(vnode.key);\r\n if (el._enterCb) {\r\n el._enterCb(true /* cancelled */);\r\n }\r\n if (state.isUnmounting) {\r\n return remove();\r\n }\r\n callHook(onBeforeLeave, [el]);\r\n let called = false;\r\n const done = (el._leaveCb = (cancelled) => {\r\n if (called)\r\n return;\r\n called = true;\r\n remove();\r\n if (cancelled) {\r\n callHook(onLeaveCancelled, [el]);\r\n }\r\n else {\r\n callHook(onAfterLeave, [el]);\r\n }\r\n el._leaveCb = undefined;\r\n if (leavingVNodesCache[key] === vnode) {\r\n delete leavingVNodesCache[key];\r\n }\r\n });\r\n leavingVNodesCache[key] = vnode;\r\n if (onLeave) {\r\n callAsyncHook(onLeave, [el, done]);\r\n }\r\n else {\r\n done();\r\n }\r\n },\r\n clone(vnode) {\r\n return resolveTransitionHooks(vnode, props, state, instance);\r\n }\r\n };\r\n return hooks;\r\n}\r\n// the placeholder really only handles one special case: KeepAlive\r\n// in the case of a KeepAlive in a leave phase we need to return a KeepAlive\r\n// placeholder with empty content to avoid the KeepAlive instance from being\r\n// unmounted.\r\nfunction emptyPlaceholder(vnode) {\r\n if (isKeepAlive(vnode)) {\r\n vnode = cloneVNode(vnode);\r\n vnode.children = null;\r\n return vnode;\r\n }\r\n}\r\nfunction getKeepAliveChild(vnode) {\r\n return isKeepAlive(vnode)\r\n ? vnode.children\r\n ? vnode.children[0]\r\n : undefined\r\n : vnode;\r\n}\r\nfunction setTransitionHooks(vnode, hooks) {\r\n if (vnode.shapeFlag & 6 /* COMPONENT */ && vnode.component) {\r\n setTransitionHooks(vnode.component.subTree, hooks);\r\n }\r\n else if (vnode.shapeFlag & 128 /* SUSPENSE */) {\r\n vnode.ssContent.transition = hooks.clone(vnode.ssContent);\r\n vnode.ssFallback.transition = hooks.clone(vnode.ssFallback);\r\n }\r\n else {\r\n vnode.transition = hooks;\r\n }\r\n}\r\nfunction getTransitionRawChildren(children, keepComment = false, parentKey) {\r\n let ret = [];\r\n let keyedFragmentCount = 0;\r\n for (let i = 0; i < children.length; i++) {\r\n let child = children[i];\r\n // #5360 inherit parent key in case of