From b0675b87b517cfdf143d1de4faee0ad2a488c74f Mon Sep 17 00:00:00 2001 From: Yilin Xia Date: Mon, 17 Feb 2025 10:09:52 -0600 Subject: [PATCH 01/11] initial commit --- .gitignore | 2 + LICENSE | 674 + README.md | 87 +- eslint.config.mjs | 26 + index.html | 18 + package-lock.json | 7756 +++++ package.json | 90 + public/dataset.gexf | 39182 +++++++++++++++++++++++++ public/favicon-16x16.png | Bin 0 -> 802 bytes public/favicon-32x32.png | Bin 0 -> 1341 bytes public/favicon.ico | Bin 0 -> 15086 bytes public/logo.svg | 402 + public/logo_CNRS_CIS.jpg | Bin 0 -> 73570 bytes public/logo_ouestware_text.svg | 133 + public/manifest.json | 8 + public/robots.txt | 3 + src/components/Connection.tsx | 48 + src/components/DropInput.tsx | 42 + src/components/Footer.tsx | 43 + src/components/Loader.tsx | 17 + src/components/Matomo.tsx | 31 + src/components/Modal.tsx | 81 + src/components/Node.tsx | 51 + src/index.tsx | 14 + src/lib/computedData.ts | 300 + src/lib/consts.ts | 118 + src/lib/context.ts | 49 + src/lib/data.ts | 508 + src/lib/errors.tsx | 117 + src/lib/graph.ts | 234 + src/lib/navState.test.ts | 421 + src/lib/navState.ts | 338 + src/lib/notifications.ts | 47 + src/styles/_animations.scss | 22 + src/styles/_base.scss | 183 + src/styles/_filters.scss | 105 + src/styles/_graph.scss | 117 + src/styles/_home.scss | 32 + src/styles/_layout.scss | 151 + src/styles/_utils.scss | 44 + src/styles/_variables-override.scss | 16 + src/styles/_variables.scss | 8 + src/styles/index.scss | 60 + src/types/glsl.d.ts | 1 + src/types/iwanthue.d.ts | 1 + src/utils/array.ts | 3 + src/utils/canvas.ts | 113 + src/utils/color.ts | 8 + src/utils/file.ts | 15 + src/utils/number.test.ts | 96 + src/utils/number.ts | 45 + src/utils/string.test.ts | 55 + src/utils/string.ts | 58 + src/utils/threshold.test.ts | 34 + src/utils/threshold.ts | 13 + src/utils/url.test.ts | 53 + src/utils/url.ts | 96 + src/utils/useBlocker.ts | 33 + src/utils/useQueryParam.ts | 71 + src/utils/useTimeout.ts | 36 + src/views/ContextPanel.tsx | 94 + src/views/EditionPanel.tsx | 339 + src/views/EventsController.tsx | 30 + src/views/Filters.tsx | 468 + src/views/GraphAppearance.tsx | 95 + src/views/GraphControls.tsx | 224 + src/views/GraphFullScreenControl.tsx | 43 + src/views/GraphSumUp.tsx | 105 + src/views/GraphView.tsx | 322 + src/views/HomeView.tsx | 151 + src/views/LocalWarningBanner.tsx | 46 + src/views/NodeSizeCaption.tsx | 75 + src/views/NodesAppearanceBlock.tsx | 109 + src/views/Notifications.tsx | 97 + src/views/ReadabilityBlock.tsx | 241 + src/views/Root.tsx | 25 + src/views/SelectedNodePanel.tsx | 134 + src/views/modals/PublishModal.tsx | 207 + src/views/modals/ShareModal.tsx | 164 + src/views/modals/index.ts | 9 + tsconfig.json | 22 + vite-env.d.ts | 1 + vite.config.mts | 9 + vitest.config.mts | 13 + 84 files changed, 55331 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 eslint.config.mjs create mode 100644 index.html create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 public/dataset.gexf create mode 100644 public/favicon-16x16.png create mode 100644 public/favicon-32x32.png create mode 100644 public/favicon.ico create mode 100644 public/logo.svg create mode 100644 public/logo_CNRS_CIS.jpg create mode 100644 public/logo_ouestware_text.svg create mode 100644 public/manifest.json create mode 100644 public/robots.txt create mode 100644 src/components/Connection.tsx create mode 100644 src/components/DropInput.tsx create mode 100644 src/components/Footer.tsx create mode 100644 src/components/Loader.tsx create mode 100644 src/components/Matomo.tsx create mode 100644 src/components/Modal.tsx create mode 100644 src/components/Node.tsx create mode 100644 src/index.tsx create mode 100644 src/lib/computedData.ts create mode 100644 src/lib/consts.ts create mode 100644 src/lib/context.ts create mode 100644 src/lib/data.ts create mode 100644 src/lib/errors.tsx create mode 100644 src/lib/graph.ts create mode 100644 src/lib/navState.test.ts create mode 100644 src/lib/navState.ts create mode 100644 src/lib/notifications.ts create mode 100644 src/styles/_animations.scss create mode 100644 src/styles/_base.scss create mode 100644 src/styles/_filters.scss create mode 100644 src/styles/_graph.scss create mode 100644 src/styles/_home.scss create mode 100644 src/styles/_layout.scss create mode 100644 src/styles/_utils.scss create mode 100644 src/styles/_variables-override.scss create mode 100644 src/styles/_variables.scss create mode 100644 src/styles/index.scss create mode 100644 src/types/glsl.d.ts create mode 100644 src/types/iwanthue.d.ts create mode 100644 src/utils/array.ts create mode 100644 src/utils/canvas.ts create mode 100644 src/utils/color.ts create mode 100644 src/utils/file.ts create mode 100644 src/utils/number.test.ts create mode 100644 src/utils/number.ts create mode 100644 src/utils/string.test.ts create mode 100644 src/utils/string.ts create mode 100644 src/utils/threshold.test.ts create mode 100644 src/utils/threshold.ts create mode 100644 src/utils/url.test.ts create mode 100644 src/utils/url.ts create mode 100644 src/utils/useBlocker.ts create mode 100644 src/utils/useQueryParam.ts create mode 100644 src/utils/useTimeout.ts create mode 100644 src/views/ContextPanel.tsx create mode 100644 src/views/EditionPanel.tsx create mode 100644 src/views/EventsController.tsx create mode 100644 src/views/Filters.tsx create mode 100644 src/views/GraphAppearance.tsx create mode 100644 src/views/GraphControls.tsx create mode 100644 src/views/GraphFullScreenControl.tsx create mode 100644 src/views/GraphSumUp.tsx create mode 100644 src/views/GraphView.tsx create mode 100644 src/views/HomeView.tsx create mode 100644 src/views/LocalWarningBanner.tsx create mode 100644 src/views/NodeSizeCaption.tsx create mode 100644 src/views/NodesAppearanceBlock.tsx create mode 100644 src/views/Notifications.tsx create mode 100644 src/views/ReadabilityBlock.tsx create mode 100644 src/views/Root.tsx create mode 100644 src/views/SelectedNodePanel.tsx create mode 100644 src/views/modals/PublishModal.tsx create mode 100644 src/views/modals/ShareModal.tsx create mode 100644 src/views/modals/index.ts create mode 100644 tsconfig.json create mode 100644 vite-env.d.ts create mode 100644 vite.config.mts create mode 100644 vitest.config.mts diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1b29a94 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +.ipython_checkpoints diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..267c3ab --- /dev/null +++ b/LICENSE @@ -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. + + retina + Copyright (C) 2022 OuestWare + + 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) 2022 OuestWare + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md index be790e1..f1955f5 100644 --- a/README.md +++ b/README.md @@ -1 +1,86 @@ -# deepgit \ No newline at end of file +# Retina + +Retina is a free open source web application to share network visualizations online, without any server required. It is developed by [OuestWare](https://www.ouestware.com/en/) for [Tommaso Venturini](http://www.tommasoventurini.it/) from [CNRS Center Internet et Société](https://cis.cnrs.fr/). It is released under the [GNU GPLv3 license](https://gitlab.com/ouestware/retina/-/blob/main/LICENSE). + +

+ + +

+ +You can see a running example [here](https://ouestware.gitlab.io/retina/beta/#/graph/?url=https%3A%2F%2Fouestware.gitlab.io%2Fretina%2Fbeta%2Fdataset.gexf&c=c&s=s&sa[]=s&sa[]=r&ca[]=t&ca[]=c&st[]=t&st[]=c&ds=1&dc=1), or try it with your own graphs at [ouestware.gitlab.io/retina](https://ouestware.gitlab.io/retina/). + +## Features + +Retina aims at helping people sharing interactive network maps online: + +1. Graph _editors_ give Retina a graph file, and tell it how their graph file should be interpreted +2. They share a link to their visualization with graph _explorers_ +3. Graph _explorers_ can then see the graph and interact with it + +### Filtering + +Users can filter nodes on their attributes. Retina tries to detect whether attributes represent quantitative, qualitative or textual information. Graph _editors_ can select which fields can be used to filter or not for graph _explorers_. + +### Colors and sizes caption + +In most graph file formats, nodes and edges can have colors and sizes of their own, but we cannot know how they have been determined. This makes it impossible to display a caption for the graph. + +Retina allows mapping node colors on node attributes (in a way inspired by [Gephi](https://gephi.org/features/)), so that it can display a **proper caption**. + +### Sharing + +Graphs in Retina can be shared as classic links or special links to be embedded in iframes. An export can also disable all actions that modify the state (colors and size fields, filters) to the user, to share more of an "enhanced zoomable image" of the graph. + +## How to use it + +1. Open [Retina](https://ouestware.gitlab.io/retina/) +2. Get some graph file (such as a [GEXF](https://gexf.net/) graph file from [Gephi](https://gephi.org/) for instance) +3. Put it somewhere on the internet, so that you can have a public URL leading to it +4. Go to [ouestware.gitlab.io/retina](https://ouestware.gitlab.io/retina) +5. Click on `Online` +6. Enter your GEXF file URL, and click on `Visualize` + +You can now fine tune some settings for viewers, and when you are ready click on the `Share` button on the top of the left panel. + +You can now share the URL of the page to people, and they'll see the same network as you do. + +## How to contribute + +Retina was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) using [TypeScript](https://www.typescriptlang.org/). + +It uses [SASS](https://sass-lang.com/) for styles, and is based on [Bootstrap](https://getbootstrap.com/) for its base styles and its grid system, and [react-icons](https://react-icons.github.io/react-icons/) for icons. + +Finally, the graphs are rendered using [sigma.js](https://www.sigmajs.org/) and [graphology](https://graphology.github.io/). + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode. +Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits. +You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode. +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder. +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes. +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..4efb11a --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,26 @@ +import js from "@eslint/js"; +import reactHooks from "eslint-plugin-react-hooks"; +import reactRefresh from "eslint-plugin-react-refresh"; +import globals from "globals"; +import tsEslint from "typescript-eslint"; + +export default tsEslint.config( + { ignores: ["dist"] }, + { + extends: [js.configs.recommended, ...tsEslint.configs.recommended], + files: ["**/*.{ts,tsx}"], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + "react-hooks": reactHooks, + "react-refresh": reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + "react-refresh/only-export-components": ["warn", { allowConstantExport: true }], + "@typescript-eslint/no-explicit-any": ["off"], + }, + }, +); diff --git a/index.html b/index.html new file mode 100644 index 0000000..e75ceac --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + + + + + + Retina + + + +
+
+ + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..a001682 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,7756 @@ +{ + "name": "retina", + "version": "1.0.0-beta.4", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "retina", + "version": "1.0.0-beta.4", + "dependencies": { + "@react-sigma/core": "^4.0.3", + "@sigma/export-image": "^3.0.0-beta.1", + "@sigma/node-border": "^3.0.0-beta.7", + "bootstrap": "^5.3.3", + "chroma-js": "^3.1.2", + "classnames": "^2.5.1", + "file-saver": "^2.0.5", + "graphology": "^0.25.4", + "graphology-gexf": "^0.13.2", + "graphology-graphml": "^0.5.2", + "graphology-layout": "^0.6.1", + "graphology-layout-forceatlas2": "^0.10.1", + "graphology-layout-noverlap": "^0.4.2", + "graphology-types": "^0.24.8", + "iwanthue": "^2.0.0", + "jotai": "^2.10.3", + "lodash": "^4.17.21", + "rc-slider": "^11.1.7", + "react": "^18.3.1", + "react-animate-height": "^3.2.3", + "react-dom": "^18.3.1", + "react-dropzone": "^14.3.5", + "react-icons": "^5.3.0", + "react-linkify": "^1.0.0-alpha", + "react-router": "^7.0.1", + "react-router-dom": "^7.0.1", + "react-select": "^5.8.3", + "react-transition-group": "^4.4.5", + "sigma": "^3.0.0-beta.38" + }, + "devDependencies": { + "@eslint/js": "^9.15.0", + "@playwright/test": "^1.49.0", + "@trivago/prettier-plugin-sort-imports": "^4.3.0", + "@types/chroma-js": "^2.4.4", + "@types/classnames": "^2.3.4", + "@types/file-saver": "^2.0.7", + "@types/lodash": "^4.17.13", + "@types/node": "^22.10.1", + "@types/react": "^18.3.12", + "@types/react-dom": "^18.3.1", + "@types/react-dropzone": "^5.1.0", + "@types/react-linkify": "^1.0.4", + "@types/react-select": "^5.0.1", + "@types/react-transition-group": "^4.4.11", + "@vitejs/plugin-react-swc": "^3.7.2", + "@vitest/browser": "^2.1.6", + "eslint": "^9.15.0", + "eslint-plugin-react-hooks": "^5.1.0-rc.0", + "eslint-plugin-react-refresh": "^0.4.14", + "globals": "^15.12.0", + "playwright": "^1.49.0", + "prettier": "^3.4.1", + "sass": "^1.77.6", + "typescript": "^5.7.2", + "typescript-eslint": "^8.16.0", + "vite": "^6.1.0", + "vite-tsconfig-paths": "^5.1.3", + "vitest": "^2.1.6" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.17.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz", + "integrity": "sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.17.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-environment-visitor/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", + "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", + "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports/node_modules/@babel/generator": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports/node_modules/@babel/traverse": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-module-imports/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", + "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.9" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/parser/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz", + "integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/generator": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/types": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/traverse/node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/types": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.16.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bundled-es-modules/cookie": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/cookie/-/cookie-2.0.1.tgz", + "integrity": "sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==", + "dev": true, + "license": "ISC", + "dependencies": { + "cookie": "^0.7.2" + } + }, + "node_modules/@bundled-es-modules/statuses": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/statuses/-/statuses-1.0.1.tgz", + "integrity": "sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==", + "dev": true, + "license": "ISC", + "dependencies": { + "statuses": "^2.0.1" + } + }, + "node_modules/@bundled-es-modules/tough-cookie": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@bundled-es-modules/tough-cookie/-/tough-cookie-0.1.6.tgz", + "integrity": "sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==", + "dev": true, + "license": "ISC", + "dependencies": { + "@types/tough-cookie": "^4.0.5", + "tough-cookie": "^4.1.4" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz", + "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.3.3", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz", + "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==", + "license": "MIT" + }, + "node_modules/@emotion/memoize": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz", + "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==", + "license": "MIT" + }, + "node_modules/@emotion/react": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz", + "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/cache": "^11.14.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz", + "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==", + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz", + "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==", + "license": "MIT" + }, + "node_modules/@emotion/unitless": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz", + "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==", + "license": "MIT" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz", + "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz", + "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==", + "license": "MIT" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", + "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", + "license": "MIT" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", + "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", + "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", + "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", + "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", + "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", + "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", + "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", + "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", + "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", + "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", + "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", + "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", + "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", + "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", + "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", + "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", + "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", + "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", + "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", + "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", + "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", + "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", + "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", + "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", + "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", + "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.11.0.tgz", + "integrity": "sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", + "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.20.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.20.0.tgz", + "integrity": "sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz", + "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.10.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz", + "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.9", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz", + "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.9" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.13", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz", + "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.9" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz", + "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==", + "license": "MIT" + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@inquirer/confirm": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.6.tgz", + "integrity": "sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.1.7", + "@inquirer/type": "^3.0.4" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/core": { + "version": "10.1.7", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.7.tgz", + "integrity": "sha512-AA9CQhlrt6ZgiSy6qoAigiA1izOa751ugX6ioSjqgJ+/Gd+tEN/TORk5sUYNjXuHWfW0r1n/a6ak4u/NqHHrtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/figures": "^1.0.10", + "@inquirer/type": "^3.0.4", + "ansi-escapes": "^4.3.2", + "cli-width": "^4.1.0", + "mute-stream": "^2.0.0", + "signal-exit": "^4.1.0", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.10.tgz", + "integrity": "sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.4.tgz", + "integrity": "sha512-2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mswjs/interceptors": { + "version": "0.37.6", + "resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.37.6.tgz", + "integrity": "sha512-wK+5pLK5XFmgtH3aQ2YVvA3HohS3xqV/OxuVOdNx9Wpnz7VE/fnC+e1A7ln6LFYeck7gOJ/dsZV6OLplOtAJ2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@open-draft/deferred-promise": "^2.2.0", + "@open-draft/logger": "^0.3.0", + "@open-draft/until": "^2.0.0", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.3", + "strict-event-emitter": "^0.5.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@open-draft/deferred-promise": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz", + "integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@open-draft/logger": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz", + "integrity": "sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-node-process": "^1.2.0", + "outvariant": "^1.4.0" + } + }, + "node_modules/@open-draft/until": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz", + "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", + "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", + "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", + "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", + "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", + "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", + "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", + "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", + "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", + "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", + "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", + "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", + "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@playwright/test": { + "version": "1.50.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.50.1.tgz", + "integrity": "sha512-Jii3aBg+CEDpgnuDxEp/h7BimHcUTDlpEtce89xEumlJ5ef2hqepZ+PWp1DDpYC/VO9fmWVI1IlEaoI5fK9FXQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright": "1.50.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.28", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", + "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-sigma/core": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@react-sigma/core/-/core-4.0.3.tgz", + "integrity": "sha512-/y/U1GH18xjGYMWNYXXqHGJ+8tHf+e4z1i0gNSm9iuhch8sGFJooO3VfyPJlBox42Wl4/gCapQhOHAfVW0pRtw==", + "license": "MIT", + "peerDependencies": { + "graphology": "^0.25.4", + "react": "^18.0.0", + "sigma": "^3.0.0-beta.24" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.7.tgz", + "integrity": "sha512-l6CtzHYo8D2TQ3J7qJNpp3Q1Iye56ssIAtqbM2H8axxCEEwvN7o8Ze9PuIapbxFL3OHrJU2JBX6FIIVnP/rYyw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.7.tgz", + "integrity": "sha512-KvyJpFUueUnSp53zhAa293QBYqwm94TgYTIfXyOTtidhm5V0LbLCJQRGkQClYiX3FXDQGSvPxOTD/6rPStMMDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.7.tgz", + "integrity": "sha512-jq87CjmgL9YIKvs8ybtIC98s/M3HdbqXhllcy9EdLV0yMg1DpxES2gr65nNy7ObNo/vZ/MrOTxt0bE5LinL6mA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.7.tgz", + "integrity": "sha512-rSI/m8OxBjsdnMMg0WEetu/w+LhLAcCDEiL66lmMX4R3oaml3eXz3Dxfvrxs1FbzPbJMaItQiksyMfv1hoIxnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.7.tgz", + "integrity": "sha512-oIoJRy3ZrdsXpFuWDtzsOOa/E/RbRWXVokpVrNnkS7npz8GEG++E1gYbzhYxhxHbO2om1T26BZjVmdIoyN2WtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.7.tgz", + "integrity": "sha512-X++QSLm4NZfZ3VXGVwyHdRf58IBbCu9ammgJxuWZYLX0du6kZvdNqPwrjvDfwmi6wFdvfZ/s6K7ia0E5kI7m8Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.7.tgz", + "integrity": "sha512-Z0TzhrsNqukTz3ISzrvyshQpFnFRfLunYiXxlCRvcrb3nvC5rVKI+ZXPFG/Aa4jhQa1gHgH3A0exHaRRN4VmdQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.7.tgz", + "integrity": "sha512-nkznpyXekFAbvFBKBy4nNppSgneB1wwG1yx/hujN3wRnhnkrYVugMTCBXED4+Ni6thoWfQuHNYbFjgGH0MBXtw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.7.tgz", + "integrity": "sha512-KCjlUkcKs6PjOcxolqrXglBDcfCuUCTVlX5BgzgoJHw+1rWH1MCkETLkLe5iLLS9dP5gKC7mp3y6x8c1oGBUtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.7.tgz", + "integrity": "sha512-uFLJFz6+utmpbR313TTx+NpPuAXbPz4BhTQzgaP0tozlLnGnQ6rCo6tLwaSa6b7l6gRErjLicXQ1iPiXzYotjw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.7.tgz", + "integrity": "sha512-ws8pc68UcJJqCpneDFepnwlsMUFoWvPbWXT/XUrJ7rWUL9vLoIN3GAasgG+nCvq8xrE3pIrd+qLX/jotcLy0Qw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.7.tgz", + "integrity": "sha512-vrDk9JDa/BFkxcS2PbWpr0C/LiiSLxFbNOBgfbW6P8TBe9PPHx9Wqbvx2xgNi1TOAyQHQJ7RZFqBiEohm79r0w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.7.tgz", + "integrity": "sha512-rB+ejFyjtmSo+g/a4eovDD1lHWHVqizN8P0Hm0RElkINpS0XOdpaXloqM4FBkF9ZWEzg6bezymbpLmeMldfLTw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.7.tgz", + "integrity": "sha512-nNXNjo4As6dNqRn7OrsnHzwTgtypfRA3u3AKr0B3sOOo+HkedIbn8ZtFnB+4XyKJojIfqDKmbIzO1QydQ8c+Pw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.7.tgz", + "integrity": "sha512-9kPVf9ahnpOMSGlCxXGv980wXD0zRR3wyk8+33/MXQIpQEOpaNe7dEHm5LMfyRZRNt9lMEQuH0jUKj15MkM7QA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.7.tgz", + "integrity": "sha512-7wJPXRWTTPtTFDFezA8sle/1sdgxDjuMoRXEKtx97ViRxGGkVQYovem+Q8Pr/2HxiHp74SSRG+o6R0Yq0shPwQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.7.tgz", + "integrity": "sha512-MN7aaBC7mAjsiMEZcsJvwNsQVNZShgES/9SzWp1HC9Yjqb5OpexYnRjF7RmE4itbeesHMYYQiAtUAQaSKs2Rfw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.7.tgz", + "integrity": "sha512-aeawEKYswsFu1LhDM9RIgToobquzdtSc4jSVqHV8uApz4FVvhFl/mKh92wc8WpFc6aYCothV/03UjY6y7yLgbg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.7.tgz", + "integrity": "sha512-4ZedScpxxIrVO7otcZ8kCX1mZArtH2Wfj3uFCxRJ9NO80gg1XV0U/b2f/MKaGwj2X3QopHfoWiDQ917FRpwY3w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sigma/export-image": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sigma/export-image/-/export-image-3.0.0.tgz", + "integrity": "sha512-6JmWle7byUzAOGE3P3ttDqn2PbdnNETyFU13i4R0G3PIZcIiVqPRpRWBkz11E89oxKEzEf1XdwQKa9VxHDMD0w==", + "license": "MIT", + "dependencies": { + "file-saver": "^2.0.5" + }, + "peerDependencies": { + "sigma": ">=3.0.0-beta.10" + } + }, + "node_modules/@sigma/node-border": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sigma/node-border/-/node-border-3.0.0.tgz", + "integrity": "sha512-mE3zUfjvJVuAMhSjiP/zdlkqe0OVTETxd04XHUwof01YqdzTk0OB4ACJIhWrwgsBXl7tTd9lPuKoroafLh8MtQ==", + "license": "MIT", + "peerDependencies": { + "sigma": ">=3.0.0-beta.17" + } + }, + "node_modules/@swc/core": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.10.16.tgz", + "integrity": "sha512-nOINg/OUcZazCW7B55QV2/UB8QAqz9FYe4+z229+4RYboBTZ102K7ebOEjY5sKn59JgAkhjZTz+5BKmXpDFopw==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3", + "@swc/types": "^0.1.17" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.10.16", + "@swc/core-darwin-x64": "1.10.16", + "@swc/core-linux-arm-gnueabihf": "1.10.16", + "@swc/core-linux-arm64-gnu": "1.10.16", + "@swc/core-linux-arm64-musl": "1.10.16", + "@swc/core-linux-x64-gnu": "1.10.16", + "@swc/core-linux-x64-musl": "1.10.16", + "@swc/core-win32-arm64-msvc": "1.10.16", + "@swc/core-win32-ia32-msvc": "1.10.16", + "@swc/core-win32-x64-msvc": "1.10.16" + }, + "peerDependencies": { + "@swc/helpers": "*" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.10.16.tgz", + "integrity": "sha512-iikIxwqCQ4Bvz79vJ4ELh26efPf1u5D9TFdmXSJUBs7C3mmMHvk5zyWD9A9cTowXiW6WHs2gE58U1R9HOTTIcg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.10.16.tgz", + "integrity": "sha512-R2Eb9aktWd62vPfW9H/c/OaQ0e94iURibBo4uzUUcgxNNmB4+wb6piKbHxGdr/5bEsT+vJ1lwZFSRzfb45E7DA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.10.16.tgz", + "integrity": "sha512-mkqN3HBAMnuiSGZ/k2utScuH8rAPshvNj0T1LjBWon+X9DkMNHSA+aMLdWsy0yZKF1zjOPc4L3Uq2l2wzhUlzA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.10.16.tgz", + "integrity": "sha512-PH/+q/L5nVZJ91CU07CL6Q9Whs6iR6nneMZMAgtVF9Ix8ST0cWVItdUhs6D38kFklCFhaOrpHhS01HlMJ72vWw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.10.16.tgz", + "integrity": "sha512-1169+C9XbydKKc6Ec1XZxTGKtHjZHDIFn0r+Nqp/QSVwkORrOY1Vz2Hdu7tn/lWMg36ZkGePS+LnnyV67s/7yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.10.16.tgz", + "integrity": "sha512-n2rV0XwkjoHn4MDJmpYp5RBrnyi94/6GsJVpbn6f+/eqSrZn3mh3dT7pdZc9zCN1Qp9eDHo+uI6e/wgvbL22uA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.10.16.tgz", + "integrity": "sha512-EevCpwreBrkPrJjQVIbiM81lK42ukNNSlBmrSRxxbx2V9VGmOd5qxX0cJBn0TRRSLIPi62BuMS76F9iYjqsjgg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.10.16.tgz", + "integrity": "sha512-BvE7RWAnKJeELVQWLok6env5I4GUVBTZSvaSN/VPgxnTjF+4PsTeQptYx0xCYhp5QCv68wWYsBnZKuPDS+SBsw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.10.16.tgz", + "integrity": "sha512-7Jf/7AeCgbLR/JsQgMJuacHIq4Jeie3knf6+mXxn8aCvRypsOTIEu0eh7j24SolOboxK1ijqJ86GyN1VA2Rebg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.10.16", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.10.16.tgz", + "integrity": "sha512-p0blVm0R8bjaTtmW+FoPmLxLSQdRNbqhuWcR/8g80OzMSkka9mk5/J3kn/5JRVWh+MaR9LHRHZc1Q1L8zan13g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/@swc/types": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.17.tgz", + "integrity": "sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3" + } + }, + "node_modules/@testing-library/dom": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", + "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/user-event": { + "version": "14.6.1", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz", + "integrity": "sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@trivago/prettier-plugin-sort-imports": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@trivago/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.3.0.tgz", + "integrity": "sha512-r3n0onD3BTOVUNPhR4lhVK4/pABGpbA7bW3eumZnYdKaHkf1qEC+Mag6DPbGNuuh0eG8AaYj+YqmVHSiGslaTQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@babel/generator": "7.17.7", + "@babel/parser": "^7.20.5", + "@babel/traverse": "7.23.2", + "@babel/types": "7.17.0", + "javascript-natural-sort": "0.7.1", + "lodash": "^4.17.21" + }, + "peerDependencies": { + "@vue/compiler-sfc": "3.x", + "prettier": "2.x - 3.x" + }, + "peerDependenciesMeta": { + "@vue/compiler-sfc": { + "optional": true + } + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/chroma-js": { + "version": "2.4.5", + "resolved": "https://registry.npmjs.org/@types/chroma-js/-/chroma-js-2.4.5.tgz", + "integrity": "sha512-6ISjhzJViaPCy2q2e6PgK+8HcHQDQ0V2LDiKmYAh+jJlLqDa6HbwDh0wOevHY0kHHUx0iZwjSRbVD47WOUx5EQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/classnames": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.3.4.tgz", + "integrity": "sha512-dwmfrMMQb9ujX1uYGvB5ERDlOzBNywnZAZBtOe107/hORWP05ESgU4QyaanZMWYYfd2BzrG78y13/Bju8IQcMQ==", + "deprecated": "This is a stub types definition. classnames provides its own type definitions, so you do not need this installed.", + "dev": true, + "license": "MIT", + "dependencies": { + "classnames": "*" + } + }, + "node_modules/@types/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/file-saver": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.7.tgz", + "integrity": "sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.13.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz", + "integrity": "sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.20.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.18", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.18.tgz", + "integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.5", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz", + "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@types/react-dropzone": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@types/react-dropzone/-/react-dropzone-5.1.0.tgz", + "integrity": "sha512-VCdDCwSsr1MT2frsVl5p8qH+LWwUGzsaNtGkEQekHviZqK0dmTbiIp2Pzfb8lTkH4oTE2JtBbWnbuM6B4FH80A==", + "deprecated": "This is a stub types definition. react-dropzone provides its own type definitions, so you do not need this installed.", + "dev": true, + "license": "MIT", + "dependencies": { + "react-dropzone": "*" + } + }, + "node_modules/@types/react-linkify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@types/react-linkify/-/react-linkify-1.0.4.tgz", + "integrity": "sha512-NOMw4X3kjvjY0lT5kXQdxZCXpPNi2hOuuqG+Kz+5EOQpi9rDUJJDitdE1j2JRNmrTnNIjrLnYG0HKyuOWN/uKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-select": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/react-select/-/react-select-5.0.1.tgz", + "integrity": "sha512-h5Im0AP0dr4AVeHtrcvQrLV+gmPa7SA0AGdxl2jOhtwiE6KgXBFSogWw8az32/nusE6AQHlCOHQWjP1S/+oMWA==", + "deprecated": "This is a stub types definition. react-select provides its own type definitions, so you do not need this installed.", + "dev": true, + "license": "MIT", + "dependencies": { + "react-select": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.12", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz", + "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/statuses": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.5.tgz", + "integrity": "sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.24.0.tgz", + "integrity": "sha512-aFcXEJJCI4gUdXgoo/j9udUYIHgF23MFkg09LFz2dzEmU0+1Plk4rQWv/IYKvPHAtlkkGoB3m5e6oUp+JPsNaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.24.0", + "@typescript-eslint/type-utils": "8.24.0", + "@typescript-eslint/utils": "8.24.0", + "@typescript-eslint/visitor-keys": "8.24.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.24.0.tgz", + "integrity": "sha512-MFDaO9CYiard9j9VepMNa9MTcqVvSny2N4hkY6roquzj8pdCBRENhErrteaQuu7Yjn1ppk0v1/ZF9CG3KIlrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.24.0", + "@typescript-eslint/types": "8.24.0", + "@typescript-eslint/typescript-estree": "8.24.0", + "@typescript-eslint/visitor-keys": "8.24.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.24.0.tgz", + "integrity": "sha512-HZIX0UByphEtdVBKaQBgTDdn9z16l4aTUz8e8zPQnyxwHBtf5vtl1L+OhH+m1FGV9DrRmoDuYKqzVrvWDcDozw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.24.0", + "@typescript-eslint/visitor-keys": "8.24.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.24.0.tgz", + "integrity": "sha512-8fitJudrnY8aq0F1wMiPM1UUgiXQRJ5i8tFjq9kGfRajU+dbPyOuHbl0qRopLEidy0MwqgTHDt6CnSeXanNIwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.24.0", + "@typescript-eslint/utils": "8.24.0", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.24.0.tgz", + "integrity": "sha512-VacJCBTyje7HGAw7xp11q439A+zeGG0p0/p2zsZwpnMzjPB5WteaWqt4g2iysgGFafrqvyLWqq6ZPZAOCoefCw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.24.0.tgz", + "integrity": "sha512-ITjYcP0+8kbsvT9bysygfIfb+hBj6koDsu37JZG7xrCiy3fPJyNmfVtaGsgTUSEuTzcvME5YI5uyL5LD1EV5ZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.24.0", + "@typescript-eslint/visitor-keys": "8.24.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.24.0.tgz", + "integrity": "sha512-07rLuUBElvvEb1ICnafYWr4hk8/U7X9RDCOqd9JcAMtjh/9oRmcfN4yGzbPVirgMR0+HLVHehmu19CWeh7fsmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.24.0", + "@typescript-eslint/types": "8.24.0", + "@typescript-eslint/typescript-estree": "8.24.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.24.0.tgz", + "integrity": "sha512-kArLq83QxGLbuHrTMoOEWO+l2MwsNS2TGISEdx8xgqpkbytB07XmlQyQdNDrCc1ecSqx0cnmhGvpX+VBwqqSkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.24.0", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react-swc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.8.0.tgz", + "integrity": "sha512-T4sHPvS+DIqDP51ifPqa9XIRAz/kIvIi8oXcnOZZgHmMotgmmdxe/DD5tMFlt5nuIRzT0/QuiwmKlH0503Aapw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@swc/core": "^1.10.15" + }, + "peerDependencies": { + "vite": "^4 || ^5 || ^6" + } + }, + "node_modules/@vitest/browser": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/browser/-/browser-2.1.9.tgz", + "integrity": "sha512-AHDanTP4Ed6J5R6wRBcWRQ+AxgMnNJxsbaa229nFQz5KOMFZqlW11QkIDoLgCjBOpQ1+c78lTN5jVxO8ME+S4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@testing-library/dom": "^10.4.0", + "@testing-library/user-event": "^14.5.2", + "@vitest/mocker": "2.1.9", + "@vitest/utils": "2.1.9", + "magic-string": "^0.30.12", + "msw": "^2.6.4", + "sirv": "^3.0.0", + "tinyrainbow": "^1.2.0", + "ws": "^8.18.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "playwright": "*", + "vitest": "2.1.9", + "webdriverio": "*" + }, + "peerDependenciesMeta": { + "playwright": { + "optional": true + }, + "safaridriver": { + "optional": true + }, + "webdriverio": { + "optional": true + } + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/@vitest/browser/node_modules/@vitest/mocker": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz", + "integrity": "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.9", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/browser/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "peer": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/@vitest/browser/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/@vitest/browser/node_modules/vite": { + "version": "5.4.14", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz", + "integrity": "sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/@vitest/expect": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.9.tgz", + "integrity": "sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.9", + "@vitest/utils": "2.1.9", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/pretty-format": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz", + "integrity": "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.9.tgz", + "integrity": "sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.9", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.9.tgz", + "integrity": "sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.9", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.9.tgz", + "integrity": "sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.9.tgz", + "integrity": "sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.9", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/attr-accept": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.5.tgz", + "integrity": "sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/bootstrap": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz", + "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "license": "MIT", + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/chai": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", + "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/chroma-js": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-3.1.2.tgz", + "integrity": "sha512-IJnETTalXbsLx1eKEgx19d5L6SRM7cH4vINw/99p/M11HCuXGRWL+6YmCm7FWFGIo6dtWuQoQi1dc5yQ7ESIHg==", + "license": "(BSD-3-Clause AND Apache-2.0)" + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" + }, + "node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 12" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true, + "license": "MIT" + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", + "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", + "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.24.2", + "@esbuild/android-arm": "0.24.2", + "@esbuild/android-arm64": "0.24.2", + "@esbuild/android-x64": "0.24.2", + "@esbuild/darwin-arm64": "0.24.2", + "@esbuild/darwin-x64": "0.24.2", + "@esbuild/freebsd-arm64": "0.24.2", + "@esbuild/freebsd-x64": "0.24.2", + "@esbuild/linux-arm": "0.24.2", + "@esbuild/linux-arm64": "0.24.2", + "@esbuild/linux-ia32": "0.24.2", + "@esbuild/linux-loong64": "0.24.2", + "@esbuild/linux-mips64el": "0.24.2", + "@esbuild/linux-ppc64": "0.24.2", + "@esbuild/linux-riscv64": "0.24.2", + "@esbuild/linux-s390x": "0.24.2", + "@esbuild/linux-x64": "0.24.2", + "@esbuild/netbsd-arm64": "0.24.2", + "@esbuild/netbsd-x64": "0.24.2", + "@esbuild/openbsd-arm64": "0.24.2", + "@esbuild/openbsd-x64": "0.24.2", + "@esbuild/sunos-x64": "0.24.2", + "@esbuild/win32-arm64": "0.24.2", + "@esbuild/win32-ia32": "0.24.2", + "@esbuild/win32-x64": "0.24.2" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.20.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.20.1.tgz", + "integrity": "sha512-m1mM33o6dBUjxl2qb6wv6nGNwCAsns1eKtaQ4l/NPHeTvhiUPbtdfMyktxN4B3fgHIgsYh1VT3V9txblpQHq+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.19.0", + "@eslint/core": "^0.11.0", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "9.20.0", + "@eslint/plugin-kit": "^0.2.5", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.1", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.2.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz", + "integrity": "sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.19.tgz", + "integrity": "sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/expect-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", + "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.0.tgz", + "integrity": "sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/file-saver": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", + "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==", + "license": "MIT" + }, + "node_modules/file-selector": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/file-selector/-/file-selector-2.1.2.tgz", + "integrity": "sha512-QgXo+mXTe8ljeqUFaX3QVHc5osSItJ/Km+xpocx0aSqWGMSCf6qYs/VnzZgS864Pjn5iceMRFigeAV7AfTlaig==", + "license": "MIT", + "dependencies": { + "tslib": "^2.7.0" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "license": "MIT" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "15.15.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz", + "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true, + "license": "MIT" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/graphology": { + "version": "0.25.4", + "resolved": "https://registry.npmjs.org/graphology/-/graphology-0.25.4.tgz", + "integrity": "sha512-33g0Ol9nkWdD6ulw687viS8YJQBxqG5LWII6FI6nul0pq6iM2t5EKquOTFDbyTblRB3O9I+7KX4xI8u5ffekAQ==", + "license": "MIT", + "dependencies": { + "events": "^3.3.0", + "obliterator": "^2.0.2" + }, + "peerDependencies": { + "graphology-types": ">=0.24.0" + } + }, + "node_modules/graphology-gexf": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/graphology-gexf/-/graphology-gexf-0.13.2.tgz", + "integrity": "sha512-7LW1em9RNCtZ7qsnTSEVl0EYGz7lzbZTW8e5xxbcrM2LojZl0x8KS2Z3Q1KNhFX2gVVQ+h0M/CTcdz+B9MQfjg==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.3", + "graphology-utils": "^2.4.1", + "xml-writer": "^1.7.0" + }, + "peerDependencies": { + "graphology-types": ">=0.20.0" + } + }, + "node_modules/graphology-graphml": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/graphology-graphml/-/graphology-graphml-0.5.2.tgz", + "integrity": "sha512-Z9m3amTxszia2dYdtdHJI9gHcbw2gSyCTWRmgsj2dAXMj8VwcoEEWnFPYykqMFw1sIuoQviZueadyE3H02wKOQ==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.3", + "graphology-operators": "^1.5.0", + "graphology-utils": "^2.4.1", + "xml-writer": "^1.7.0" + } + }, + "node_modules/graphology-layout": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/graphology-layout/-/graphology-layout-0.6.1.tgz", + "integrity": "sha512-m9aMvbd0uDPffUCFPng5ibRkb2pmfNvdKjQWeZrf71RS1aOoat5874+DcyNfMeCT4aQguKC7Lj9eCbqZj/h8Ag==", + "license": "MIT", + "dependencies": { + "graphology-utils": "^2.3.0", + "pandemonium": "^2.4.0" + }, + "peerDependencies": { + "graphology-types": ">=0.19.0" + } + }, + "node_modules/graphology-layout-forceatlas2": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/graphology-layout-forceatlas2/-/graphology-layout-forceatlas2-0.10.1.tgz", + "integrity": "sha512-ogzBeF1FvWzjkikrIFwxhlZXvD2+wlY54lqhsrWprcdPjopM2J9HoMweUmIgwaTvY4bUYVimpSsOdvDv1gPRFQ==", + "license": "MIT", + "dependencies": { + "graphology-utils": "^2.1.0" + }, + "peerDependencies": { + "graphology-types": ">=0.19.0" + } + }, + "node_modules/graphology-layout-noverlap": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/graphology-layout-noverlap/-/graphology-layout-noverlap-0.4.2.tgz", + "integrity": "sha512-13WwZSx96zim6l1dfZONcqLh3oqyRcjIBsqz2c2iJ3ohgs3605IDWjldH41Gnhh462xGB1j6VGmuGhZ2FKISXA==", + "license": "MIT", + "dependencies": { + "graphology-utils": "^2.3.0" + }, + "peerDependencies": { + "graphology-types": ">=0.19.0" + } + }, + "node_modules/graphology-operators": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/graphology-operators/-/graphology-operators-1.6.1.tgz", + "integrity": "sha512-ZKGcaN+6L5hv0VelrDgkZ2IQL1c7nrqkTRiHDwBCjmbkS56vWh/iQNDnvd/c9YIpoygtEK0mgGOr/m4i7BOYrw==", + "license": "MIT", + "dependencies": { + "graphology-utils": "^2.0.0" + }, + "peerDependencies": { + "graphology-types": ">=0.20.0" + } + }, + "node_modules/graphology-types": { + "version": "0.24.8", + "resolved": "https://registry.npmjs.org/graphology-types/-/graphology-types-0.24.8.tgz", + "integrity": "sha512-hDRKYXa8TsoZHjgEaysSRyPdT6uB78Ci8WnjgbStlQysz7xR52PInxNsmnB7IBOM1BhikxkNyCVEFgmPKnpx3Q==", + "license": "MIT" + }, + "node_modules/graphology-utils": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/graphology-utils/-/graphology-utils-2.5.2.tgz", + "integrity": "sha512-ckHg8MXrXJkOARk56ZaSCM1g1Wihe2d6iTmz1enGOz4W/l831MBCKSayeFQfowgF8wd+PQ4rlch/56Vs/VZLDQ==", + "license": "MIT", + "peerDependencies": { + "graphology-types": ">=0.23.0" + } + }, + "node_modules/graphql": { + "version": "16.10.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.10.0.tgz", + "integrity": "sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/headers-polyfill": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/headers-polyfill/-/headers-polyfill-4.0.3.tgz", + "integrity": "sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz", + "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-node-process": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz", + "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iwanthue": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/iwanthue/-/iwanthue-2.0.0.tgz", + "integrity": "sha512-baARnKbEygsic78ekXFxvEfVyiWPchkeoUYy6StEhjF4ayCanBZQhEiXlzPXIUXtgVCYyvwex0dnw1Ghg8UCCg==", + "license": "MIT", + "dependencies": { + "obliterator": "^2.0.3" + } + }, + "node_modules/javascript-natural-sort": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", + "integrity": "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==", + "dev": true, + "license": "MIT" + }, + "node_modules/jotai": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/jotai/-/jotai-2.12.0.tgz", + "integrity": "sha512-j5B4NmUw8gbuN7AG4NufWw00rfpm6hexL2CVhKD7juoP2YyD9FEUV5ar921JMvadyrxQhU1NpuKUL3QfsAlVpA==", + "license": "MIT", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=17.0.0", + "react": ">=17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + } + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/linkify-it": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz", + "integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==", + "license": "MIT", + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loupe": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.3.tgz", + "integrity": "sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==", + "dev": true, + "license": "MIT" + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.17", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mnemonist": { + "version": "0.39.8", + "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.39.8.tgz", + "integrity": "sha512-vyWo2K3fjrUw8YeeZ1zF0fy6Mu59RHokURlld8ymdUPjMlD9EC9ov1/YPqTgqRvUN9nTr3Gqfz29LYAmu0PHPQ==", + "license": "MIT", + "dependencies": { + "obliterator": "^2.0.1" + } + }, + "node_modules/mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/msw": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/msw/-/msw-2.7.0.tgz", + "integrity": "sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "@bundled-es-modules/cookie": "^2.0.1", + "@bundled-es-modules/statuses": "^1.0.1", + "@bundled-es-modules/tough-cookie": "^0.1.6", + "@inquirer/confirm": "^5.0.0", + "@mswjs/interceptors": "^0.37.0", + "@open-draft/deferred-promise": "^2.2.0", + "@open-draft/until": "^2.1.0", + "@types/cookie": "^0.6.0", + "@types/statuses": "^2.0.4", + "graphql": "^16.8.1", + "headers-polyfill": "^4.0.2", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.3", + "path-to-regexp": "^6.3.0", + "picocolors": "^1.1.1", + "strict-event-emitter": "^0.5.1", + "type-fest": "^4.26.1", + "yargs": "^17.7.2" + }, + "bin": { + "msw": "cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mswjs" + }, + "peerDependencies": { + "typescript": ">= 4.8.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/mute-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz", + "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/obliterator": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.5.tgz", + "integrity": "sha512-42CPE9AhahZRsMNslczq0ctAEtqk8Eka26QofnqC346BZdHDySk3LWka23LI7ULIw11NmltpiLagIq8gBozxTw==", + "license": "MIT" + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/outvariant": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz", + "integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==", + "dev": true, + "license": "MIT" + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pandemonium": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/pandemonium/-/pandemonium-2.4.1.tgz", + "integrity": "sha512-wRqjisUyiUfXowgm7MFH2rwJzKIr20rca5FsHXCMNm1W5YPP1hCtrZfgmQ62kP7OZ7Xt+cR858aB28lu5NX55g==", + "license": "MIT", + "dependencies": { + "mnemonist": "^0.39.2" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/playwright": { + "version": "1.50.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.50.1.tgz", + "integrity": "sha512-G8rwsOQJ63XG6BbKj2w5rHeavFjy5zynBA9zsJMMtBoe/Uf757oG12NXz6e6OirF7RCrTVAKFXbLmn1RbL7Qaw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.50.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/playwright-core": { + "version": "1.50.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.50.1.tgz", + "integrity": "sha512-ra9fsNWayuYumt+NiM069M6OkcRb1FZSK8bgi66AtpFoWkg2+y0bJSNmkFrWhMbEBbVKC/EruAHH3g0zmtwGmQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/postcss": { + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz", + "integrity": "sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.1.tgz", + "integrity": "sha512-hPpFQvHwL3Qv5AdRvBFMhnKo4tYxp0ReXiPn2bxkiohEX6mBeBwEpBSQTkD458RaaDKQMYSp4hX4UtfUTA5wDw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz", + "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/rc-slider": { + "version": "11.1.8", + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-11.1.8.tgz", + "integrity": "sha512-2gg/72YFSpKP+Ja5AjC5DPL1YnV8DEITDQrcc1eASrUYjl0esptaBVJBh5nLTXCCp15eD8EuGjwezVGSHhs9tQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.36.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util": { + "version": "5.44.4", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.44.4.tgz", + "integrity": "sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "react-is": "^18.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-animate-height": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/react-animate-height/-/react-animate-height-3.2.3.tgz", + "integrity": "sha512-R6DSvr7ud07oeCixScyvXWEMJY/Mt2+GyOWC1KMaRc69gOBw+SsCg4TJmrp4rKUM1hyd6p+YKw90brjPH93Y2A==", + "license": "MIT", + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-dropzone": { + "version": "14.3.5", + "resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-14.3.5.tgz", + "integrity": "sha512-9nDUaEEpqZLOz5v5SUcFA0CjM4vq8YbqO0WRls+EYT7+DvxUdzDPKNCPLqGfj3YL9MsniCLCD4RFA6M95V6KMQ==", + "license": "MIT", + "dependencies": { + "attr-accept": "^2.2.4", + "file-selector": "^2.1.0", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "react": ">= 16.8 || 18.0.0" + } + }, + "node_modules/react-icons": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.4.0.tgz", + "integrity": "sha512-7eltJxgVt7X64oHh6wSWNwwbKTCtMfK35hcjvJS0yxEAhPM8oUKdS3+kqaW1vicIltw+kR2unHaa12S9pPALoQ==", + "license": "MIT", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true, + "license": "MIT" + }, + "node_modules/react-linkify": { + "version": "1.0.0-alpha", + "resolved": "https://registry.npmjs.org/react-linkify/-/react-linkify-1.0.0-alpha.tgz", + "integrity": "sha512-7gcIUvJkAXXttt1fmBK9cwn+1jTa4hbKLGCZ9J1U6EOkyb2/+LKL1Z28d9rtDLMnpvImlNlLPdTPooorl5cpmg==", + "license": "MIT", + "dependencies": { + "linkify-it": "^2.0.3", + "tlds": "^1.199.0" + } + }, + "node_modules/react-router": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.1.5.tgz", + "integrity": "sha512-8BUF+hZEU4/z/JD201yK6S+UYhsf58bzYIDq2NS1iGpwxSXDu7F+DeGSkIXMFBuHZB21FSiCzEcUb18cQNdRkA==", + "license": "MIT", + "dependencies": { + "@types/cookie": "^0.6.0", + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0", + "turbo-stream": "2.4.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/react-router-dom": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.1.5.tgz", + "integrity": "sha512-/4f9+up0Qv92D3bB8iN5P1s3oHAepSGa9h5k6tpTFlixTTskJZwKGhJ6vRJ277tLD1zuaZTt95hyGWV1Z37csQ==", + "license": "MIT", + "dependencies": { + "react-router": "7.1.5" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/react-router/node_modules/cookie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", + "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/react-select": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.10.0.tgz", + "integrity": "sha512-k96gw+i6N3ExgDwPIg0lUPmexl1ygPe6u5BdQFNBhkpbwroIgCNXdubtIzHfThYXYYTubwOBafoMnn7ruEP1xA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", + "@types/react-transition-group": "^4.4.0", + "memoize-one": "^6.0.0", + "prop-types": "^15.6.0", + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.2.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.34.7", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.7.tgz", + "integrity": "sha512-8qhyN0oZ4x0H6wmBgfKxJtxM7qS98YJ0k0kNh5ECVtuchIJ7z9IVVvzpmtQyT10PXKMtBxYr1wQ5Apg8RS8kXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.34.7", + "@rollup/rollup-android-arm64": "4.34.7", + "@rollup/rollup-darwin-arm64": "4.34.7", + "@rollup/rollup-darwin-x64": "4.34.7", + "@rollup/rollup-freebsd-arm64": "4.34.7", + "@rollup/rollup-freebsd-x64": "4.34.7", + "@rollup/rollup-linux-arm-gnueabihf": "4.34.7", + "@rollup/rollup-linux-arm-musleabihf": "4.34.7", + "@rollup/rollup-linux-arm64-gnu": "4.34.7", + "@rollup/rollup-linux-arm64-musl": "4.34.7", + "@rollup/rollup-linux-loongarch64-gnu": "4.34.7", + "@rollup/rollup-linux-powerpc64le-gnu": "4.34.7", + "@rollup/rollup-linux-riscv64-gnu": "4.34.7", + "@rollup/rollup-linux-s390x-gnu": "4.34.7", + "@rollup/rollup-linux-x64-gnu": "4.34.7", + "@rollup/rollup-linux-x64-musl": "4.34.7", + "@rollup/rollup-win32-arm64-msvc": "4.34.7", + "@rollup/rollup-win32-ia32-msvc": "4.34.7", + "@rollup/rollup-win32-x64-msvc": "4.34.7", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sass": { + "version": "1.85.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz", + "integrity": "sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/sigma": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sigma/-/sigma-3.0.1.tgz", + "integrity": "sha512-z67BX1FhIpD+wLs2WJ7QS2aR49TcSr3YaVZ2zU8cAc5jMiUYlSbeDp4EI6euBDUpm3/lzO4pfytP/gW4BhXWuA==", + "license": "MIT", + "dependencies": { + "events": "^3.3.0", + "graphology-utils": "^2.5.2" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sirv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.0.tgz", + "integrity": "sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/std-env": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", + "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/strict-event-emitter": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz", + "integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinypool": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", + "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", + "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", + "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tlds": { + "version": "1.255.0", + "resolved": "https://registry.npmjs.org/tlds/-/tlds-1.255.0.tgz", + "integrity": "sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==", + "license": "MIT", + "bin": { + "tlds": "bin.js" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ts-api-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz", + "integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tsconfck": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.5.tgz", + "integrity": "sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==", + "dev": true, + "license": "MIT", + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^18 || >=20" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/turbo-stream": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz", + "integrity": "sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==", + "license": "ISC" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "4.34.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.34.1.tgz", + "integrity": "sha512-6kSc32kT0rbwxD6QL1CYe8IqdzN/J/ILMrNK+HMQCKH3insCDRY/3ITb0vcBss0a3t72fzh2YSzj8ko1HgwT3g==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.24.0.tgz", + "integrity": "sha512-/lmv4366en/qbB32Vz5+kCNZEMf6xYHwh1z48suBwZvAtnXKbP+YhGe8OLE2BqC67LMqKkCNLtjejdwsdW6uOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.24.0", + "@typescript-eslint/parser": "8.24.0", + "@typescript-eslint/utils": "8.24.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" + } + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "dev": true, + "license": "MIT" + }, + "node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.0.tgz", + "integrity": "sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/vite": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.1.0.tgz", + "integrity": "sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.24.2", + "postcss": "^8.5.1", + "rollup": "^4.30.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.9.tgz", + "integrity": "sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vite-node/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vite-node/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/vite-node/node_modules/vite": { + "version": "5.4.14", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz", + "integrity": "sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-tsconfig-paths": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-5.1.4.tgz", + "integrity": "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "globrex": "^0.1.2", + "tsconfck": "^3.0.3" + }, + "peerDependencies": { + "vite": "*" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/vitest": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.9.tgz", + "integrity": "sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.9", + "@vitest/mocker": "2.1.9", + "@vitest/pretty-format": "^2.1.9", + "@vitest/runner": "2.1.9", + "@vitest/snapshot": "2.1.9", + "@vitest/spy": "2.1.9", + "@vitest/utils": "2.1.9", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.9", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.9", + "@vitest/ui": "2.1.9", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/vitest/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vitest/node_modules/@vitest/mocker": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.9.tgz", + "integrity": "sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.9", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/vitest/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vitest/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/vitest/node_modules/vite": { + "version": "5.4.14", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.14.tgz", + "integrity": "sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-writer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/xml-writer/-/xml-writer-1.7.0.tgz", + "integrity": "sha512-elFVMRiV5jb59fbc87zzVa0C01QLBEWP909mRuWqFqrYC5wNTH5QW4AaKMNv7d6zAsuOulkD7wnztZNLQW0Nfg==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yaml": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", + "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", + "dev": true, + "license": "ISC", + "optional": true, + "peer": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz", + "integrity": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..3ae05cb --- /dev/null +++ b/package.json @@ -0,0 +1,90 @@ +{ + "name": "retina", + "version": "1.0.0-beta.4", + "homepage": "https://ouestware.gitlab.io/retina", + "scripts": { + "start": "vite", + "build": "vite build", + "test": "vitest", + "clean": "prettier --write src", + "lint": "eslint ." + }, + "dependencies": { + "@react-sigma/core": "^4.0.3", + "@sigma/export-image": "^3.0.0-beta.1", + "@sigma/node-border": "^3.0.0-beta.7", + "bootstrap": "^5.3.3", + "chroma-js": "^3.1.2", + "classnames": "^2.5.1", + "file-saver": "^2.0.5", + "graphology": "^0.25.4", + "graphology-gexf": "^0.13.2", + "graphology-graphml": "^0.5.2", + "graphology-layout": "^0.6.1", + "graphology-layout-forceatlas2": "^0.10.1", + "graphology-layout-noverlap": "^0.4.2", + "graphology-types": "^0.24.8", + "iwanthue": "^2.0.0", + "jotai": "^2.10.3", + "lodash": "^4.17.21", + "rc-slider": "^11.1.7", + "react": "^18.3.1", + "react-animate-height": "^3.2.3", + "react-dom": "^18.3.1", + "react-dropzone": "^14.3.5", + "react-icons": "^5.3.0", + "react-linkify": "^1.0.0-alpha", + "react-router": "^7.0.1", + "react-router-dom": "^7.0.1", + "react-select": "^5.8.3", + "react-transition-group": "^4.4.5", + "sigma": "^3.0.0-beta.38" + }, + "devDependencies": { + "@eslint/js": "^9.15.0", + "@playwright/test": "^1.49.0", + "@trivago/prettier-plugin-sort-imports": "^4.3.0", + "@types/chroma-js": "^2.4.4", + "@types/classnames": "^2.3.4", + "@types/file-saver": "^2.0.7", + "@types/lodash": "^4.17.13", + "@types/node": "^22.10.1", + "@types/react": "^18.3.12", + "@types/react-dom": "^18.3.1", + "@types/react-dropzone": "^5.1.0", + "@types/react-linkify": "^1.0.4", + "@types/react-select": "^5.0.1", + "@types/react-transition-group": "^4.4.11", + "@vitejs/plugin-react-swc": "^3.7.2", + "@vitest/browser": "^2.1.6", + "eslint": "^9.15.0", + "eslint-plugin-react-hooks": "^5.1.0-rc.0", + "eslint-plugin-react-refresh": "^0.4.14", + "globals": "^15.12.0", + "playwright": "^1.49.0", + "prettier": "^3.4.1", + "sass": "^1.77.6", + "typescript": "^5.7.2", + "typescript-eslint": "^8.16.0", + "vite": "^6.1.0", + "vite-tsconfig-paths": "^5.1.3", + "vitest": "^2.1.6" + }, + "eslintConfig": { + "extends": [ + "react-app" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/public/dataset.gexf b/public/dataset.gexf new file mode 100644 index 0000000..a4bdf8a --- /dev/null +++ b/public/dataset.gexf @@ -0,0 +1,39182 @@ + + + + Sciences-Po médialab and OuestWare + A cartography of Wikipedia pages around data visualization (from https://sigmajs.org website) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..ecebcbf9be446f58d5a8c5a306bd6b51f90ca4b5 GIT binary patch literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L90|Vm?5N7-pv#bax$X?><>&pI&nMFW{ahkOI2cTT9r;B5V#`(~Rz8;eqWscQX zZ#SLOC2w*(#y9rlG(XoCp`aN;F5C6utXkR~mN*Mltc+g1K-TJo!;1-v6c+oH>bZzG zxj8Kt=*p7N`<$Hn<5ynwe7*Gs^~az8KXCYeB|}5P-;7=M^*6b~tk=HY`LV=Vdh3_| z@~Q7$PS%>lb?ch(*Ewp>3#^}47{$~r{ygQ&f-2>1@f|mA1jbBLkEr=L5*#Mo6LLNj`OgZ9mk&`JBUg92Mc z1HC3~SzfX4F26~6jMW*7{=Zjum8p7)-qkGewMgCm&8_IN`u=PwgVOyH-q+8FuIabo z7nhrxbMlJ)-pdaPzjMdTS-w>Bi^?z4gjTO``)z#lSN>=0ZTw(p>iyRY7+0z#t`Q|E zi6yC4$wjF^iowXh$Vk_~Sl7TL#L&#j#Kg+LP}{)3%D|wUrFl1shTQy=%(P0}8rUMO z*?}4)K{f>ErER1{tn5>XPASgue|l%JNF zld4csS&*ubSx}P9z)&&g@h2XR!Y~buQ~syVcs>ncU{>bVOXe0<7WSSj!Yr)d(qM8p wg;{xXh{EX`S56!`b42C{`{@Rc1zvg#ufzpQJ~^3A1zN%2>FVdQ&MBb@0PsO9SpWb4 literal 0 HcmV?d00001 diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..897be1774860e0206b39c5b2932f390ba57a6d47 GIT binary patch literal 1341 zcmZ`(eLNF*82>RHBQKGplxamcGec^~FxoOxjLb=9HZfynZc*-Li9(-sNtu^UUKS(o zC3=xhrDMb++L}8w0RY-~9M)fn zu#M7CQ})rs#-Ej-7Uk~i4nTuIYmKsLL!{#TeE~=@2Y{CjfLuxOJ^+w}1Yjl{0CYY8 zMy#T?<1R`;HNxiz7AP_W{q4#L%EFNo0f5wRl!`^C?j0qm&cXY7ss9C0)B9dkSAW}4 zrB;c@x|49-m-BvzB?WHHXit>Ah#r>I*gw+olr%eNe@Ro{n-wu6ddA4M8}HgqO>R-K zwVgR{x5L2nG~e=L{&(k2>f#vY#w*=BF~t^D5KY$r|)+%#4cI>Xm+1GM3p6J_3kw_~5j z%kO+S^wzhtfq%y|1=aOW<6sQoaU9kA8(P#o*(+t0ed*PnG|U^yHuuX+^7)$@Tr9qF zTjW=Ific-d3xtc9a__$Fa5~3 zwB!MBxu<7H&!S0Q)w=$QWveR_RotsF9r!>jEy*W{y7T&ve##;woveQ26h4DXM2G{- zhrh)HR>w$7TOHjR%TulVQhYIyg5Kf0CwEJYNY;KgL!{y$$GCcXqe!trKU4u`MRu3MY52b{HpH zJ5`T4WKB>t#O!WqjMNJCA+IJ_Cig8#I#ic+pBP@nAgoCN5|>L3E1H=H?}fO|eB!qD zrLpvo#Du=AT+dB9I>r0D23~ZGbZA(Sp;KskE1^!MP0biAJRK)q5}lsVpdeU9YKS3N z+r^4wwffgWbt@01PBv`bE2Q(^OeI}B@18zn^4cI)$Tm(N=gD*@k7cMN=b#AuTg_fm zx!tK9AI#_Tt3NNKV($KN+}kDzE2O7Ey@k{Qec-Wm2p$;-&@3Deuv%`$dZ< zFfI2*`9Uj4l!x2vQ$gyy)KNZ8!kF&K5IlDnQ=3KYuDH+HqIrKedt2@!#DWUvb9~ld zS!O6=JOE>87SUmKPG>P3*4`udYGG~x*bm)@$8&rpb_G`9mt+;YvaH1B%n_ds8_SiL z8&hYOYp&COUD=XaIK(VV39t*SBGOPVr?DB!<%CzoKVs)x141EW8|RAWOSSJ_bQkou zg-!f48ho(mI?rUapH%mmn_x|3)VaKuHMZrPb7qRAt06Md;j$=Nqf@YY?eaaF!ugle z&2xQNj{($ZZ?k4pDW_$rkT8J0OW%iIs_bwY{Ujy70mQGy4`NYs(rP&ox>7LmaVDsV z@UD@Y{(#3|zG{(odh@#vyxlq4N`HL0>Dsem$Y2@qd_)0z{dnE#^cjV$QlUbthZi|l zTrF0f@ji}MFej42p`od4ni2pCi9*>R?QM__B)bD>2M06~WsO9lkx1`Zq4IV7$H0t_ zjHW05zrm@&tUzfn-be_Dr*pUzHVtsOTtsvnBaupB(GcDWqVIKZOfp zvE%8{u{0PbnMH#|vp7@$&J;~7Zq`T$+P}ZgPtuS7(;q&9YQNVx+K~aK&qN0{z4TYksESNw66~!c;u3DxFzq!=U z)b9LT=~Q>STD59568+(-8xir>+ym2};pK?B#l zdv`Z+;zal5mtVTIYu7p}zyA8G`}EUK-6M}Y;!Zf>gmif}X$=2W-8zoqt6R5jJ@Gt3 zb*pMfzjp1~?#e5#bRT~Bq1(1?o3Wb+%gf8%TW`JPTD58w;sK{j@js%udz5Z9{H`h8 z+#&oMp<%UNy?U;9@80f*AAU&WHR)q%X{mes@y8vw46oo6J?~WwdD#PXvs{xVO`XuZi-0;e{8v`Sa&jiML!E zuUxq@-JZsa|6O)O2JzfQb(`^y4|(y$7aexHGs~JaYup)UoDq(LbofwJ`Io(166O7v zV~%lOef8DOWV-_HWy_Yi#*G`B4EVTCxym4UTd95MU+@n<|NL_W{C~#7^y$;1bGm5n zz4xx0O@@?zTy8dV^2sN=pMLtOO6+dky4Cy9JMX;HF;`AGx%ItcwU?gqIGGcoqOe#S8}4UapOk!#1l`r!w)~)`&D?x=8iq~Sii>dn{QN&uRHkQ zgS}k+`t@^VWo21uELpO|_et^gt@z(9gABXt`%>fo>Z`BLikAkHCr@@q9d(q~59?3+ z_U)Z~wmb2}6J4W5jocxJ9O7j%yaye0kZakprT6pr`fIPfHmCI({TL4E=b!2P>sxpG zUcY{Q$NWz!_|O3Z281}V5#k7Kdg-N*KWH)kSc}Z|@s&~C z!Y6#;&!E8^XKow4bO=s#$Q~%EKr_|%4Z#--&n>sylGM#ze);9TAAGS6S-&WRJ~E__ z5B8PI_#i{Jwdb4!L(I5&z98RH7;HEktlv0%8rN{R`Y_w<3kO#Xv703I2e)~#Dt&_D7p_mj%Hb?e+E zms}FcFnsv%*yiMBQv4G$g!+H?-FIXAl$4Z&xapf-k&CgxzcLS^_H)ri7scX@et^dL z=b!I!j~X>9`l-Ti)>!Dvf6mkx{A9e09zD83yYvTQ2HIky<}l-Mr#H|VjS5&xn888m26Y#%<@xZ%^$Z@MpM-bH;AGBO@JvVV(X z_^Sr0{?gfi!E|Me&?53M; z%8Ku!k3RDJTfAd9)At0-5#qWVZnz;U&RiO>_CZT}+pc;@ivK|G1{)9PHJ6;`q)C%1 z**<NojK%)tKYi!Z*&g~ix5@4fe4sC(Jy7~>r%-Vav|^HunnT*{0YGkm;Yvg22= z8Iyr^3tz=|a{WoMc@jNh7h)6eXzkoA{tt`tpORse@d13}jW?1|hTrhlci(+?xUa(> z5m!Sm>Px|iEmbwoPM)A!w{D^C<@0-`^Um`=`|MLkG*+1mtf31RE)4n1_5&Y7zUZ#I z?s8qbcJ*-?@q|@kZ@w`Ht5P0*_~DRu+4d~4S~C;>yc6%|sg|1z#5Cly|ElujlTSu@ zUy)1xQ?}LD_y?YT`so$Uul@{KScAyT86TQgoQpM!(|h`R+1OC)3naI&c=6&tgLOaN zk^L2ZdcAz*sp&jsd1g%*6P1DWlsJ8773S%6yN_Aol@gJ4id+*evv~*#<+I8mtMAs z@3Fc&pj#+Azi9ogFS>&S!<=Ihf0@3?9?P{h&k(#p`qs^vzogW}uEfJb(%~eH&vexV zns+PZ^ESXEep~NWh}Zw>{hN}dpYBbx*SCGEi(}`?YdRMM&aDd`^spev1D5NK2Czg6 zHgKIL6tGZ~fdzsO`kz72CJ5Br!|lMlAW%0U2m*Ec9V%PAglB__1PXaJs2N+pa~$N` zA1US$;_!=)0`MC@;v| z;5+1dDm?RDe7vvsO{#&38p3t4aDHQS$whLOMP3m9%No69%N8Glj~qGD=VxduJ#16G zV@G+Ao=*~<8Ag}954l3l+>#1$8aXHJn=R%YB_4LI0w24G?*XFgbBN?1*%u;bRSLR+ z=M?|!?QEtbv9gESPofWd*2f-uEUUapJQ34G@{j$K26G#49LIycJ&N27v`)^QJ2w%3adEMG{q@)VeYJvu0>}AST$})+MT-`Jw_IyN zk?gsWClKA%s^!cj_T+JeeDQtv-RE;P>`7V2h0~8Qzh8Lag}AOhKaYH>Bhz%i9kO|R zyZ!dtGxq218!-+vIg4O?h$V=>$v0B%jN-Q2Zp&z^*e~}!7zfqxj;QEf1#R}#nQ{T> zm3t!ShTIOc$mx)eCFZ2BRrZ#=`#1U{jrhsLM#kU%bi%R+WJJH;tHRiCU-|4&dTtM z=>^|JKgsY9nPM+~6K|&%`ZCVw)9Bk-N|Y|Yu|aaT_MWl9HlBLwsdTh{FGxGle_C(? zzqvD!Ubq9oH*k@I#JNj8Qsor0w(`Sw08+tXo z(1%`hOwbLySeqzB2bs>iumQ>Ni}0m>Q=49{y6P&vv1jmmIPT-77wq2hbVi>uUd}tC`8@o4`r3rw@6x4< z=ONSiFSsRtv1If6mTA+brIYvhDx+%<`LRjn0eM8~^5x4b_2mUV3pv@#r5EJTTwW%- zT>4w zrh2gCKLz^O__yDFTL~3=Z0>R)D{ZJz+h;81&6`)LU)&2jYmg1SY5rgHdoDa&fBp3t zyKyhEXV0FdGk?#_<{t9{esalq;DHefsqA?KOtOOm>6fX)N^dZTOI+!g(xb8H<%0`SHge{as4lB^A5lCB1(wn%aR? zEb?=Im#u#R57>KE#x#j8KETf9Wy7nKPp@5(^6yXN+NImY@W48sbncx*)4q|X$4jO?Rk|cC(@>+Uz2JFBISV$GLQ)$QV=SbY3XzHzc_=4Q1$Gy{s* zSFU^yrD&8oC?s_dv{AkxPq~LY(L7PDS@>J6QK0=>ss;&#J)X6*zI!YYKH&s6 zG(=13p~5^zo`TItzG@B2Q{=c)mA-39|MyBK3(<#uZ_?bICLOdCy4a$9 zjPpeH!0fMx`=mST&i-M&aF^H_DfbBBn-~awkvV!d8Tp_=Va*i%HIjd+-Fs(z;TL_w zGx2cTzL&dKx`*+RbU#FQ(#nmg@4x@v$H@2)^oZZGv9UJLmRzNxf4cOwk9@$!=v^ZA zrO!O`jN|_q@Q-um%(1Q>_V3@HI5~_n#AjRC$+nkYez`)s^aswhZ@lrwGM&%Ok?rkf z_6O8hwU + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/logo_CNRS_CIS.jpg b/public/logo_CNRS_CIS.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d756efa4a5c8be06624f9406096056c62d116b56 GIT binary patch literal 73570 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 literal 0 HcmV?d00001 diff --git a/public/logo_ouestware_text.svg b/public/logo_ouestware_text.svg new file mode 100644 index 0000000..d0c8739 --- /dev/null +++ b/public/logo_ouestware_text.svg @@ -0,0 +1,133 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..7854dac --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,8 @@ +{ + "short_name": "Retina", + "name": "A web application to share network visualizations", + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/src/components/Connection.tsx b/src/components/Connection.tsx new file mode 100644 index 0000000..925ca41 --- /dev/null +++ b/src/components/Connection.tsx @@ -0,0 +1,48 @@ +import React, { FC, useContext } from "react"; + +import { GraphContext } from "../lib/context"; + +const Connection: FC<{ origin: string; edges: string[] }> = ({ origin, edges }) => { + const { data } = useContext(GraphContext); + const { graph } = data; + + const edge = edges.length === 1 ? edges[0] : null; + + if (!edges.length) return null; + + if (edge) { + if (graph.getEdgeAttribute(edge, "directed")) { + if (graph.source(edge) === origin) { + return ( + + + + + ); + } else { + return ( + + + + + ); + } + } else { + return ( + + + + ); + } + } + + return ( + + + {edges.length} + + + ); +}; + +export default Connection; diff --git a/src/components/DropInput.tsx b/src/components/DropInput.tsx new file mode 100644 index 0000000..7c480e0 --- /dev/null +++ b/src/components/DropInput.tsx @@ -0,0 +1,42 @@ +import cx from "classnames"; +import React, { FC } from "react"; +import { useDropzone } from "react-dropzone"; +import { FaTimes } from "react-icons/fa"; + +import { Loaders } from "../lib/data"; + +const DropInput: FC<{ value: File | null; onChange: (file: File | null) => void }> = ({ value, onChange }) => { + const { getRootProps, getInputProps } = useDropzone({ + maxFiles: 1, + accept: { + "application/graph": Object.keys(Loaders).map((s) => "." + s), + }, + onDrop: (acceptedFiles) => { + const value = acceptedFiles[0] || null; + onChange(value); + }, + }); + + return ( +
+ +

{value ? value.name : "Drag and drop a graph file here, or click to select a file"}

+ +

+ +

+
+ ); +}; + +export default DropInput; diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..a4a1ae0 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,43 @@ +import React, { FC } from "react"; +import { AiOutlineHeart } from "react-icons/ai"; +import { BsCodeSlash } from "react-icons/bs"; +import { Link } from "react-router-dom"; + +import Matomo from "./Matomo"; + +const Footer: FC = () => ( + <> +
+ + Retina logo + +
+ Retina is built with by{" "} + + OuestWare + + ,{" "} + + CNRS CIS + {" "} + and{" "} + + Tommaso Venturini + +
+
+ + + +
+
+ + +); + +export default Footer; diff --git a/src/components/Loader.tsx b/src/components/Loader.tsx new file mode 100644 index 0000000..e76eee6 --- /dev/null +++ b/src/components/Loader.tsx @@ -0,0 +1,17 @@ +import { FC } from "react"; + +export const Loader: FC = () => { + return ( +
+ Loading... +
+ ); +}; + +export const LoaderFill: FC = () => { + return ( +
+ +
+ ); +}; diff --git a/src/components/Matomo.tsx b/src/components/Matomo.tsx new file mode 100644 index 0000000..f7230a3 --- /dev/null +++ b/src/components/Matomo.tsx @@ -0,0 +1,31 @@ +import React, { useContext } from "react"; +import { useLocation } from "react-router-dom"; + +import { GraphContext } from "../lib/context"; + +const matomoUrl: string | undefined = import.meta.env.MATOMO_URL; +const matomoSiteId: string | undefined = import.meta.env.MATOMO_SITE_ID; + +const Matomo: React.FC = () => { + const location = useLocation(); + const context = useContext(GraphContext); + + const url = context?.navState?.url || "local"; + + return ( + <> + {matomoUrl && matomoSiteId && ( + + )} + + ); +}; + +export default Matomo; diff --git a/src/components/Modal.tsx b/src/components/Modal.tsx new file mode 100644 index 0000000..afd659c --- /dev/null +++ b/src/components/Modal.tsx @@ -0,0 +1,81 @@ +import cx from "classnames"; +import { FC } from "react"; +import { createPortal } from "react-dom"; + +import { AppContext } from "../lib/context"; + +interface Props { + title?: string | JSX.Element; + onClose?: () => void; + showHeader?: boolean; + footerAlignLeft?: boolean; + className?: string; + bodyClassName?: string; + children: JSX.Element | [JSX.Element] | [JSX.Element, JSX.Element]; +} + +const UnmountedModal: FC = ({ + onClose, + title, + children, + showHeader = true, + footerAlignLeft = false, + className, + bodyClassName, +}) => { + const childrenArray = Array.isArray(children) ? children : [children]; + const body = childrenArray[0]; + const footer = childrenArray[1]; + + return ( +
+
onClose && onClose()} /> +
+
+ {showHeader && ( +
+ {title && ( +
+ {title} +
+ )} + +
+ )} + {body && ( + + )} + {footer && ( +
+ {footer} +
+ )} +
+
+
+ ); +}; + +const Modal: FC = ({ children, ...props }) => ( + + {(context) => createPortal({children}, context.portalTarget)} + +); + +export default Modal; diff --git a/src/components/Node.tsx b/src/components/Node.tsx new file mode 100644 index 0000000..98f8318 --- /dev/null +++ b/src/components/Node.tsx @@ -0,0 +1,51 @@ +import cx from "classnames"; +import React, { FC, useContext } from "react"; +import { Link } from "react-router-dom"; + +import { GraphContext } from "../lib/context"; +import { NodeData } from "../lib/data"; +import { navStateToQueryURL } from "../lib/navState"; + +const Node: FC<{ + node: string; + attributes: NodeData; + link?: boolean; + className?: string; +}> = ({ node, attributes, link, className }) => { + const { + navState, + setHovered, + computedData: { filteredNodes }, + } = useContext(GraphContext); + const baseClassName = "node fs-6 d-flex flex-row align-items-center"; + + const content = ( + <> + + {attributes.label} + + ); + + return link ? ( + setHovered(node)} + onMouseLeave={() => setHovered(undefined)} + to={"/graph/?" + navStateToQueryURL({ ...navState, selectedNode: node })} + title={attributes.label || undefined} + > + {content} + + ) : ( +
+ {content} +
+ ); +}; + +export default Node; diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..19be6f3 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,14 @@ +import React from "react"; +import { createRoot } from "react-dom/client"; + +import { AppContext } from "./lib/context"; +import "./styles/index.scss"; +import Root from "./views/Root"; + +createRoot(document.getElementById("root") as HTMLElement).render( + + + + + , +); diff --git a/src/lib/computedData.ts b/src/lib/computedData.ts new file mode 100644 index 0000000..c0e92c7 --- /dev/null +++ b/src/lib/computedData.ts @@ -0,0 +1,300 @@ +import chroma from "chroma-js"; +import _, { max, min, sortBy } from "lodash"; +import { Dimensions } from "sigma/types"; + +import { findRanges } from "../utils/number"; +import { + DEFAULT_NODE_COLOR, + DEFAULT_NODE_SIZE_RATIO, + EDGE_SIZE_MAX, + EDGE_SIZE_MIN, + GRADIENT, + MAX_PALETTE_SIZE, + NODE_DEFAULT_SIZE, + NODE_SIZE_MAX, + NODE_SIZE_MIN, + PALETTES, +} from "./consts"; +import { Data, countRanges, countTerms, filterNodes, getFilterableFields, getValue } from "./data"; +import { NavState } from "./navState"; + +export interface TermsValue { + id: string; + label: string; + globalCount: number; + filteredCount: number; +} +export interface RangeValue { + min: number; + max: number; + label: string; + globalCount: number; + filteredCount: number; +} +export interface TermsMetric { + type: "quali"; + field: string; + values: TermsValue[]; +} +export interface RangeMetric { + type: "quanti"; + field: string; + unit: number; + min: number; + max: number; + ranges: RangeValue[]; +} +export interface SearchMetrics { + type: "content"; + field: string; + samples: string[]; +} +export type Metric = TermsMetric | RangeMetric | SearchMetrics; +export interface ComputedData { + filteredNodes?: Set | null; // Only present when there are filters + filteredEdges?: Set | null; // Only present when there are filters + metrics: Record; + + // Color and size providers: + // Only present when there is a selected color field + nodeColors?: Record | null; + getColor?: ((value: any) => string) | null; + // Only present when there is a selected size field + getSize?: ((value: any) => number) | null; + nodeSizes: Record; + edgeSizes: Record; + nodeSizeExtents: [number, number]; + edgeSizeExtents: [number, number]; +} + +export function getEmptyComputedData(): ComputedData { + return { + metrics: {}, + nodeSizes: {}, + edgeSizes: {}, + nodeSizeExtents: [0, Infinity], + edgeSizeExtents: [0, Infinity], + }; +} + +export function getNodeColors( + { graph, fieldsIndex }: Data, + { nodeColorField }: Pick, +): Pick { + const result: Pick = {}; + + if (typeof nodeColorField === "string") { + result.nodeColors = {}; + const field = fieldsIndex[nodeColorField]; + let getColor: ComputedData["getColor"] = null; + + if (field.type === "quali") { + const values = sortBy(field.values, (v) => -v.count); + const palette = PALETTES[Math.min(values.length, MAX_PALETTE_SIZE)]; + const colorsDict: Record = values.reduce( + (iter, v, i) => ({ ...iter, [v.id]: palette[i] || DEFAULT_NODE_COLOR }), + {}, + ); + getColor = (value: any) => colorsDict[value] || DEFAULT_NODE_COLOR; + } else if (field.type === "quanti") { + const gradient = chroma.scale(GRADIENT).domain([0, 1]); + getColor = (value: any) => + typeof value === "number" ? gradient((value - field.min) / (field.max - field.min)).hex() : DEFAULT_NODE_COLOR; + } + + if (getColor) { + graph.forEachNode((node, nodeData) => { + result.nodeColors![node] = getColor!(getValue(nodeData, field)); + }); + + result.getColor = getColor; + } + } + + return result; +} + +export function getNodeSizes( + { graph, fieldsIndex }: Data, + { nodeSizeField, nodeSizeRatio }: NavState, + { width, height }: Dimensions, +): Pick { + let nodeSizes: ComputedData["nodeSizes"]; + let getSize: ComputedData["getSize"] = null; + let nodeSizeExtents: ComputedData["nodeSizeExtents"] = [0, Infinity]; + + const ratio = nodeSizeRatio || DEFAULT_NODE_SIZE_RATIO; + const screenSizeRatio = Math.min(width, height) / 1000; + const graphSizeRatio = 1 / Math.log10(graph.order + 2); + + if (typeof nodeSizeField === "string") { + nodeSizes = {}; + const field = fieldsIndex[nodeSizeField]; + + if (field.type === "quanti") { + getSize = (value: any) => { + const size = + typeof value === "number" + ? ((NODE_SIZE_MAX - NODE_SIZE_MIN) * (value - field.min)) / (field.max - field.min) + NODE_SIZE_MIN + : NODE_DEFAULT_SIZE; + return size * ratio * screenSizeRatio * graphSizeRatio; + }; + graph.forEachNode((node, nodeData) => { + nodeSizes![node] = getSize!(getValue(nodeData, field)); + }); + nodeSizeExtents = [field.min, field.max]; + } + } else { + nodeSizes = {}; + const values = graph.mapNodes((_node, attributes) => attributes.rawSize); + nodeSizeExtents = [min(values) as number, max(values) as number]; + graph.forEachNode((node, { rawSize }) => { + nodeSizes[node] = + (((NODE_SIZE_MAX - NODE_SIZE_MIN) * (rawSize - nodeSizeExtents[0])) / + (nodeSizeExtents[1] - nodeSizeExtents[0]) + + NODE_SIZE_MIN) * + ratio * + screenSizeRatio * + graphSizeRatio; + }); + } + + if (nodeSizeExtents[0] === nodeSizeExtents[1]) nodeSizeExtents[0] = 0; + + return { getSize, nodeSizes, nodeSizeExtents }; +} + +export function getEdgeSizes( + { graph, edgesSizeField }: Data, + { edgeSizeRatio }: NavState, + { width, height }: Dimensions, +): Pick { + const ratio = edgeSizeRatio || DEFAULT_NODE_SIZE_RATIO; + const screenSizeRatio = Math.min(width, height) / 1000; + const graphSizeRatio = 1 / Math.log10(graph.order + 2); + + const values = graph.mapEdges((_edge, { attributes }) => attributes[edgesSizeField]); + const edgeSizeExtents: ComputedData["edgeSizeExtents"] = [min(values) as number, max(values) as number]; + if (edgeSizeExtents[0] === edgeSizeExtents[1]) edgeSizeExtents[0] = 0; + + const edgeSizes: ComputedData["edgeSizes"] = {}; + graph.forEachEdge((edge, { attributes }) => { + edgeSizes[edge] = + (((EDGE_SIZE_MAX - EDGE_SIZE_MIN) * ((attributes[edgesSizeField] || edgeSizeExtents[0]) - edgeSizeExtents[0])) / + (edgeSizeExtents[1] - edgeSizeExtents[0]) + + EDGE_SIZE_MIN) * + ratio * + screenSizeRatio * + graphSizeRatio; + }); + + if (edgeSizeExtents[0] === edgeSizeExtents[1]) edgeSizeExtents[0] = 0; + + return { edgeSizes, edgeSizeExtents }; +} + +export function getMetrics( + data: Data, + navState: Pick, + currentMetrics?: ComputedData["metrics"], +): Pick { + const { graph } = data; + + const allFilterable = getFilterableFields(data, navState); + + currentMetrics = currentMetrics || {}; + const metrics: ComputedData["metrics"] = {}; + + // 1. Filter nodes and edges: + const nodes = filterNodes(data, navState); + const nodesArray = nodes ? Array.from(nodes) : null; + const filteredNodes = nodes; + const filteredEdges = nodes + ? new Set(graph.filterEdges((_edge, _attributes, source, target) => nodes.has(source) && nodes.has(target))) + : null; + + // 2. Count metrics: + allFilterable?.forEach((field) => { + const oldMetric = currentMetrics![field.id]; + + switch (field.type) { + case "quali": { + const globalCounts: Record = oldMetric + ? (oldMetric as TermsMetric).values.reduce((iter, v) => ({ ...iter, [v.id]: v.globalCount }), {}) + : countTerms(graph, field); + const counts = nodesArray ? countTerms(graph, field, nodesArray) : globalCounts; + metrics[field.id] = { + type: "quali", + field: field.id, + values: sortBy( + Object.values(field.values).map((value) => ({ + id: value.id, + label: value.label, + globalCount: globalCounts[value.id] || 0, + filteredCount: counts[value.id] || 0, + })), + (o) => -o.globalCount, + ), + }; + break; + } + case "quanti": { + if (oldMetric) { + const { unit, ranges, min, max } = oldMetric as RangeMetric; + const newRanges = ranges.map((v) => [v.min, v.max] as [number, number]); + const counts = nodesArray ? countRanges(graph, field, newRanges, nodesArray) : null; + metrics[field.id] = { + type: "quanti", + field: field.id, + unit, + min, + max, + ranges: ranges.map((v, i) => ({ + ...v, + filteredCount: (counts ? counts[i] : v.globalCount) || 0, + })), + }; + } else { + const { ranges, unit } = findRanges(field.min, field.max); + const globalCounts = countRanges(graph, field, ranges); + const counts = nodesArray ? countRanges(graph, field, ranges, nodesArray) : globalCounts; + const values = graph + .mapNodes((_n, nodeData) => getValue(nodeData, field)) + .filter((v) => typeof v === "number"); + + if (values.length) + metrics[field.id] = { + type: "quanti", + field: field.id, + unit, + min: min(values) as number, + max: max(values) as number, + ranges: ranges.map(([min, max], i) => ({ + min, + max, + label: `${min} - ${max}`, + globalCount: globalCounts[i], + filteredCount: counts[i], + })), + }; + } + break; + } + case "content": { + metrics[field.id] = oldMetric || { + type: "content", + field: field.id, + samples: _(graph.nodes()) + .map((node) => getValue(graph.getNodeAttributes(node), field)) + .filter((str) => !!str) + .uniq() + .take(3) + .value(), + }; + break; + } + } + }); + + return { metrics, filteredNodes, filteredEdges }; +} diff --git a/src/lib/consts.ts b/src/lib/consts.ts new file mode 100644 index 0000000..b756991 --- /dev/null +++ b/src/lib/consts.ts @@ -0,0 +1,118 @@ +import { createNodeBorderProgram } from "@sigma/node-border"; +import { Attributes } from "graphology-types"; +import RAW_PALETTES from "iwanthue/precomputed/k-means-fancy-light"; +import { createElement } from "react"; +import { Props as LinkifyProps } from "react-linkify"; +import { NodeCircleProgram } from "sigma/rendering"; +import { Settings } from "sigma/settings"; + +export const SAMPLE_DATASET_URI = import.meta.env.BASE_URL + "/dataset.gexf"; + +// Palettes +export const PALETTES = RAW_PALETTES as Record; +export const MAX_PALETTE_SIZE = Math.max(...Object.keys(PALETTES).map((s) => +s)); +export const GRADIENT = ["#99f3cb", "#222123"]; + +// Graph rendering +export const NODE_DEFAULT_SIZE = 5; +export const NODE_SIZE_MIN = 10; +export const NODE_SIZE_MAX = 50; + +export const EDGE_DEFAULT_SIZE = 3; +export const EDGE_SIZE_MIN = 1; +export const EDGE_SIZE_MAX = 5; +export const HIGHLIGHTED_EDGE_SIZE_RATIO = 2; + +export const DEFAULT_NODE_COLOR = "#aaa"; +export const DEFAULT_EDGE_COLOR = "#ccc"; +export const HIDDEN_NODE_COLOR = "#f0f0f0"; +export const HIGHLIGHTED_NODE_COLOR = "#333333"; +export const HIDDEN_EDGE_COLOR = "#f6f6f6"; + +export const MIN_NODE_SIZE_RATIO = 0.1; +export const MAX_NODE_SIZE_RATIO = 10; +export const DEFAULT_NODE_SIZE_RATIO = 1; +export const NODE_SIZE_RATIO_STEP = 0.001; + +export const MIN_EDGE_SIZE_RATIO = 0.1; +export const MAX_EDGE_SIZE_RATIO = 10; +export const DEFAULT_EDGE_SIZE_RATIO = 1; +export const EDGE_SIZE_RATIO_STEP = 0.001; + +export const MIN_LABEL_SIZE = 5; +export const MAX_LABEL_SIZE = 50; +export const DEFAULT_LABEL_SIZE = 14; +export const LABEL_SIZE_STEP = 1; + +export const MIN_LABEL_THRESHOLD = 0.1; +export const MAX_LABEL_THRESHOLD = 10; +export const DEFAULT_LABEL_THRESHOLD = 1; +export const LABEL_THRESHOLD_STEP = 0.001; + +export const ANIMATION_DURATION = 400; +export const MAX_OPTIONS = 50; + +export const BASE_SIGMA_SETTINGS: Partial = { + labelFont: '"Public Sans", sans-serif', + allowInvalidContainer: true, + zIndex: true, + nodeReducer: hiddenReducer, + edgeReducer: hiddenReducer, + defaultNodeType: "circle", + nodeProgramClasses: { + circle: NodeCircleProgram, + bordered: createNodeBorderProgram({ + borders: [ + { size: { value: 0.2 }, color: { attribute: "borderColor" } }, + { size: { fill: true }, color: { attribute: "color" } }, + ], + }), + }, +}; + +// Data indexation +export const RESERVED_FIELDS = new Set(["label", "size", "color", "x", "y", "z"]); + +export const RETINA_FIELD_PREFIX = "RETINA::"; +export const RETINA_HIDDEN_FIELD_PREFIX = RETINA_FIELD_PREFIX + "HIDDEN::"; +export const RETINA_NUMBER_FIELD_PREFIX = RETINA_FIELD_PREFIX + "NUMBER::"; +export const RETINA_STRING_FIELD_PREFIX = RETINA_FIELD_PREFIX + "STRING::"; + +export function isHiddenRetinaField(str: string): boolean { + return str.indexOf(RETINA_HIDDEN_FIELD_PREFIX) === 0; +} + +export function removeRetinaPrefix(str: string): string { + return str.replace(RETINA_NUMBER_FIELD_PREFIX, "").replace(RETINA_STRING_FIELD_PREFIX, ""); +} + +export function hiddenReducer(_key: string, data: Attributes) { + return { ...data, hidden: true }; +} + +// Vendor component styles +export const SLIDER_STYLE = { + dotStyle: { borderColor: "#ccc" }, + railStyle: { backgroundColor: "#ccc" }, + activeDotStyle: { borderColor: "black" }, + trackStyle: { backgroundColor: "black" }, + handleStyle: { backgroundColor: "white", borderColor: "black" }, +}; +export const RANGE_STYLE = { + dotStyle: { borderColor: "#ccc" }, + railStyle: { backgroundColor: "#ccc" }, + activeDotStyle: { borderColor: "black" }, + trackStyle: [{ backgroundColor: "black" }, { backgroundColor: "black" }], + handleStyle: [ + { backgroundColor: "white", borderColor: "black" }, + { backgroundColor: "white", borderColor: "black" }, + ], +}; +export const DEFAULT_SELECT_PROPS = { + classNamePrefix: "react-select", +}; +export const DEFAULT_LINKIFY_PROPS: Partial = { + textDecorator: (str) => str.replace(/^https?:\/\//, ""), + componentDecorator: (decoratedHref: string, decoratedText: string, key: number) => + createElement("a", { key, href: decoratedHref, target: "_blank", rel: "noreferrer", decoratedText }), +}; diff --git a/src/lib/context.ts b/src/lib/context.ts new file mode 100644 index 0000000..7118a00 --- /dev/null +++ b/src/lib/context.ts @@ -0,0 +1,49 @@ +import { createContext } from "react"; +import Sigma from "sigma"; + +import { ModalName } from "../views/modals"; +import { ComputedData } from "./computedData"; +import { Data } from "./data"; +import { NavState } from "./navState"; + +export const PANELS = ["main", "readability"] as const; +export type Panel = (typeof PANELS)[number]; + +export const AppContext = createContext<{ portalTarget: HTMLDivElement }>({ + portalTarget: document.createElement("div"), +}); + +type GraphContextType = { + embedMode: boolean; + data: Data; + graphFile: { + name: string; + extension: string; + textContent: string; + }; + + isPanelExpanded: boolean; + setIsPanelExpanded: (isPanelExpanded: boolean) => void; + + navState: NavState; + computedData: ComputedData; + hovered: string | Set | undefined; + + setNavState: (newNavState: NavState) => void; + setHovered: (hovered?: string | Set) => void; + + panel: Panel; + setPanel: (panel: Panel) => void; + + modal: ModalName | undefined; + openModal: (modal: ModalName) => void; + closeModal: () => void; + + sigma: Sigma | undefined; + setSigma: (sigma: Sigma | undefined) => void; + root: HTMLElement | undefined; +}; +export const GraphContext = createContext( + // "Fake" initial value (proper value will be given by Provider) + null as unknown as GraphContextType, +); diff --git a/src/lib/data.ts b/src/lib/data.ts new file mode 100644 index 0000000..31728de --- /dev/null +++ b/src/lib/data.ts @@ -0,0 +1,508 @@ +import { MultiGraph } from "graphology"; +import gexf from "graphology-gexf/browser"; +import graphml from "graphology-graphml/browser"; +import forceAtlas2 from "graphology-layout-forceatlas2"; +import noverlap from "graphology-layout-noverlap"; +import circular from "graphology-layout/circular"; +import AbstractGraph from "graphology-types"; +import { constant, flatMap, groupBy, isNil, keyBy, mapValues, max, min, omitBy, uniq } from "lodash"; +import { NodeDisplayData } from "sigma/types"; + +import { isNumber } from "../utils/number"; +import { minimize, normalize } from "../utils/string"; +import { + DEFAULT_EDGE_COLOR, + DEFAULT_NODE_COLOR, + NODE_DEFAULT_SIZE, + RESERVED_FIELDS, + RETINA_FIELD_PREFIX, + RETINA_NUMBER_FIELD_PREFIX, + RETINA_STRING_FIELD_PREFIX, + removeRetinaPrefix, +} from "./consts"; +import { BAD_EXTENSION } from "./errors"; +import { FILTER_FIELD_TYPES, Filter, NavState } from "./navState"; + +/** + * Types: + * ****** + */ +export interface BaseField { + type: string; + label: string; + typeLabel?: string; + computed?: boolean; + id: string; + rawFieldId: string; + nullValuesCount: number; +} +export interface ContentField extends BaseField { + type: "content"; +} +export interface QuantiField extends BaseField { + type: "quanti"; + min: number; + max: number; +} +export interface QualiField extends BaseField { + type: "quali"; + values: Record< + string, + { + id: string; + label: string; + count: number; + } + >; +} +export type Field = QualiField | QuantiField | ContentField; +export type FieldType = Field["type"]; +export type TypedField = Partial<{ + content: ContentField; + quanti: QuantiField; + quali: QualiField; +}>; + +export type CustomNodeDisplayData = NodeDisplayData & { trueColor: string }; + +export type RawData = Record; + +export interface NodeData { + x: number; + y: number; + label: string; + size: number; + rawSize: number; // size from graph file or default size + color: string; + rawColor: string; // color from graph file or default color + + // For render only: + italic?: true; // for missing labels + + labelSize: number; + subtitles: string[]; + + // Everything computed and cached by Retina: + computed: { + degree: number; + }; + + // Everything from the graph file: + attributes: RawData; +} + +export interface EdgeData { + size: number; + rawSize: number; // size from graph file or default size + color: string; + label?: string; + rawColor: string; // color from graph file or default color + type?: "arrow"; + + directed?: boolean; // `undefined` if not determined + + // Optional state: + hidden?: boolean; + + // Everything from the graph file: + attributes: RawData; +} + +export type RawGraph = AbstractGraph; +export type RetinaGraph = MultiGraph; + +export interface Data { + graph: RetinaGraph; + fields: string[]; // A (sorted) array of field keys + fieldsIndex: Record; // The actual field contents + edgeFields: string[]; + edgeFieldsIndex: Record; + // TODO: + // - Move that edgeSizeField value into navState + // - Add an input to select it + edgesSizeField: string; +} + +export interface Report { + missingNodeSizes?: number; + missingNodeColors?: number; + missingNodeLabels?: number; + missingNodePositions?: number; + missingEdgeSizes?: number; + missingEdgeColors?: number; +} + +/** + * Loading graph: + * ************** + */ +export const Loaders: { [extension: string]: (text: string) => RawGraph } = { + gexf: (text) => gexf.parse(MultiGraph, text, { addMissingNodes: true }), + graphml: (text) => graphml.parse(MultiGraph, text, { addMissingNodes: true }), +}; +export async function loadGraphURL(path: string): Promise<{ name: string; extension: string; textContent: string }> { + const name = (path.split("/").pop() || "").toLowerCase(); + const extension = (name.split(".").pop() || "").toLowerCase(); + const textContent = await fetch(path).then((res) => res.text()); + + return { name, extension, textContent }; +} +export async function loadGraphFile(file: File): Promise<{ name: string; extension: string; textContent: string }> { + const name = file.name; + const extension = (name.split(".").pop() || "").toLowerCase(); + const textContent = await file.text(); + + return { name, extension, textContent }; +} +export async function readGraph({ + extension, + textContent, +}: { + name: string; + extension: string; + textContent: string; +}): Promise { + if (!Loaders[extension]) { + const e = new Error(`Graph file extension ".${extension}" not recognized.`); + e.name = BAD_EXTENSION; + throw e; + } + + return Loaders[extension](textContent); +} + +export function prepareGraph(rawGraph: RawGraph): { graph: RetinaGraph; report: Report } { + const graph = new MultiGraph(); + const report: Report = {}; + + rawGraph.forEachNode((node, attributes) => { + const { x, y, size, color, label } = attributes; + + if (typeof attributes.x !== "number" || typeof attributes.y !== "number") + report.missingNodePositions = (report.missingNodePositions || 0) + 1; + if (typeof attributes.size !== "number") report.missingNodeSizes = (report.missingNodeSizes || 0) + 1; + if (typeof attributes.color !== "string") report.missingNodeColors = (report.missingNodeColors || 0) + 1; + if (typeof attributes.label !== "string") report.missingNodeLabels = (report.missingNodeLabels || 0) + 1; + + const newNodeAttributes: NodeData = { + x: typeof x === "number" ? x : 0, + y: typeof y === "number" ? y : 0, + label: typeof label === "string" ? label : node, + size: typeof size === "number" ? size : NODE_DEFAULT_SIZE, + rawSize: typeof size === "number" ? size : NODE_DEFAULT_SIZE, + color: typeof color === "string" ? color : DEFAULT_NODE_COLOR, + rawColor: typeof color === "string" ? color : DEFAULT_NODE_COLOR, + + italic: typeof label !== "string" || undefined, + + labelSize: NODE_DEFAULT_SIZE, + subtitles: [], + + attributes, + + computed: { + degree: NaN, + }, + }; + + graph.addNode(node, newNodeAttributes); + }); + rawGraph.forEachEdge((edge, attributes, source, target) => { + const { size, color, label } = attributes; + const directed = rawGraph.isDirected(edge); + + if (typeof attributes.size !== "number") report.missingEdgeSizes = (report.missingEdgeSizes || 0) + 1; + if (typeof attributes.color !== "string") report.missingEdgeColors = (report.missingEdgeColors || 0) + 1; + + const newEdgeAttributes: EdgeData = { + size: typeof size === "number" ? size : NODE_DEFAULT_SIZE, + rawSize: typeof size === "number" ? size : NODE_DEFAULT_SIZE, + color: typeof color === "string" ? color : DEFAULT_EDGE_COLOR, + rawColor: typeof color === "string" ? color : DEFAULT_EDGE_COLOR, + label: typeof label === "string" ? label : undefined, + directed, + + hidden: false, + type: undefined, + + attributes, + }; + + if (directed) graph.addDirectedEdgeWithKey(edge, source, target, newEdgeAttributes); + else graph.addUndirectedEdgeWithKey(edge, source, target, newEdgeAttributes); + }); + + // For positions however, we need to run FA2 for some time first: + // TODO: Try running this in a worker instead + if (report.missingNodePositions) { + circular.assign(graph); + + forceAtlas2.assign(graph, { + settings: forceAtlas2.inferSettings(graph), + iterations: 150, + }); + + noverlap.assign(graph, { maxIterations: 150 }); + } + + return { graph, report }; +} + +/** + * Initializing graph data: + * ************************ + */ +export function inferFieldTypes(values: (string | number)[], nodesCount: number): FieldType[] { + const types: FieldType[] = []; + + if (values.every((v) => isNumber(v))) types.push("quanti"); + + const uniqValuesCount = uniq(values).length; + if (uniqValuesCount > 1 && uniqValuesCount < Math.max(Math.pow(nodesCount, 0.75), 5)) types.push("quali"); + if (!types.length) types.push("content"); + + return types; +} + +export function getValue(node: NodeData, field: Field): any { + return field.computed ? (node.computed as any)[field.rawFieldId] : node.attributes[field.rawFieldId]; +} + +export function getFields(graph: RetinaGraph, type: "node" | "edge"): Field[] { + let fields: Record = {}; + + // Inject computed fields (here, only "Degree" for now): + const computedFields: Field[] = []; + if (type === "node") { + const degreeExtent: [number, number] = [Infinity, -Infinity]; + graph.forEachNode((node) => { + graph.updateNodeAttribute(node, "computed", (o) => { + const degree = graph.degree(node); + degreeExtent[0] = Math.min(degreeExtent[0], degree); + degreeExtent[1] = Math.max(degreeExtent[1], degree); + return { ...o, degree }; + }); + }); + computedFields.push({ + type: "quanti", + id: RETINA_FIELD_PREFIX + "degree", + computed: true, + rawFieldId: "degree", + label: "Degree", + min: degreeExtent[0], + max: degreeExtent[1], + nullValuesCount: 0, + }); + } + + // Identify all values: + graph[type === "node" ? "forEachNode" : "forEachEdge"]((_, { attributes }) => { + for (const key in attributes) { + const value = attributes[key]; + if (!isNil(value)) { + if (!fields[key]) fields[key] = []; + fields[key].push(attributes[key]); + } + } + }); + + // Remove reserved fields: + fields = omitBy(fields, (_, field) => RESERVED_FIELDS.has(field)); + + // Minimize field IDs: + const keys = Object.keys(fields).concat(computedFields.map((o) => o.id)); + const minimized: Record = minimize( + keys.map(removeRetinaPrefix).map((s) => normalize(s || "").trim()), + ).reduce( + (iter, mini, i) => ({ + ...iter, + [keys[i]]: mini, + }), + {}, + ); + + // Update computed fields IDs: + computedFields.forEach((field) => (field.id = minimized[field.id])); + + // Infer field types: + const totalRowsCount = type === "node" ? graph.order : graph.size; + const inferedFields: Field[] = flatMap(fields, (values, key) => { + const types = + key.indexOf(RETINA_NUMBER_FIELD_PREFIX) === 0 + ? (["quanti"] as FieldType[]) + : key.indexOf(RETINA_STRING_FIELD_PREFIX) === 0 + ? (["quali"] as FieldType[]) + : inferFieldTypes(values, totalRowsCount); + + return types.map((type) => { + const id = minimized[key]; + const label = removeRetinaPrefix(key); + + switch (type) { + case "quali": + return { + type, + id: types.length > 1 ? `${id}-s` : id, + rawFieldId: key, + label, + typeLabel: types.length > 1 ? "as qualitative values" : undefined, + nullValuesCount: totalRowsCount - values.length, + values: mapValues(groupBy(values), (a, v) => ({ + id: v, + label: v, + count: a.length, + })), + }; + case "quanti": { + const numbers = values.filter((v) => isNumber(v)).map((v) => +v) as number[]; + return { + type, + id: types.length > 1 ? `${id}-n` : id, + rawFieldId: key, + label, + typeLabel: types.length > 1 ? "as quantitative values" : undefined, + nullValuesCount: totalRowsCount - values.length, + min: min(numbers) as number, + max: max(numbers) as number, + }; + } + case "content": + default: + return { + type: "content", + id: types.length > 1 ? `${id}-t` : id, + rawFieldId: key, + label, + nullValuesCount: totalRowsCount - values.length, + typeLabel: types.length > 1 ? "as searchable text" : undefined, + }; + } + }); + }); + + return inferedFields.concat(computedFields); +} + +export function enrichData(graph: RetinaGraph): Data { + const fields = getFields(graph, "node"); + const edgeFields = getFields(graph, "edge"); + + // Reindex number fields as numbers: + const fieldsToReindex = uniq( + fields.filter((field) => field.type === "quanti" && !field.computed).map((field) => field.rawFieldId), + ); + if (fieldsToReindex.length) { + graph.forEachNode((node) => { + graph.updateNodeAttribute(node, "attributes", (attributes = {}) => ({ + ...attributes, + ...fieldsToReindex.reduce((iter, key) => ({ ...iter, [key]: +attributes[key] }), {}), + })); + }); + } + const edgeFieldsToReindex = uniq( + edgeFields.filter((field) => field.type === "quanti" && !field.computed).map((field) => field.rawFieldId), + ); + if (edgeFieldsToReindex.length) { + graph.forEachEdge((edge) => { + graph.updateEdgeAttribute(edge, "attributes", (attributes = {}) => ({ + ...attributes, + ...fieldsToReindex.reduce((iter, key) => ({ ...iter, [key]: +attributes[key] }), {}), + })); + }); + } + + // Guess edge size field: + const ACCEPTABLE_SIZE_FIELDS = new Set(["size", "weight"]); + const edgesSizeField = + edgeFields.find((field) => ACCEPTABLE_SIZE_FIELDS.has(field.rawFieldId.toLowerCase()) && field.type === "quanti") + ?.rawFieldId || "size"; + + return { + graph, + fieldsIndex: keyBy(fields, "id"), + fields: fields.map((field) => field.id), + edgeFieldsIndex: keyBy(edgeFields, "id"), + edgeFields: edgeFields.map((field) => field.id), + edgesSizeField, + }; +} + +/** + * Filtering data: + * *************** + */ +export function countTerms(graph: RetinaGraph, field: Field, nodes?: string[] | null): Record { + const counts: Record = {}; + const nodesToSearch = nodes || graph.nodes(); + + nodesToSearch.forEach((n) => { + const v = getValue(graph.getNodeAttributes(n), field); + if (!isNil(v)) counts[v] = (counts[v] || 0) + 1; + }); + + return counts; +} +export function countRanges( + graph: RetinaGraph, + field: Field, + ranges: [number, number][], + nodes?: string[] | null, +): number[] { + const counts: number[] = ranges.map(constant(0)); + const nodesToSearch = nodes || graph.nodes(); + + nodesToSearch.forEach((n) => { + const v = getValue(graph.getNodeAttributes(n), field); + if (typeof v === "number") { + const matchIndex = ranges.findIndex(([min, max]) => v >= min && v < max); + if (matchIndex >= 0) counts[matchIndex]++; + } + }); + + return counts; +} + +export function filterNode(nodeData: NodeData, filters: Filter[], fieldsIndex: Record): boolean { + return filters.every((filter) => { + const field = fieldsIndex[filter.field]; + if (!field || field.type !== FILTER_FIELD_TYPES[filter.type]) return false; + + const value = getValue(nodeData, field); + + switch (filter.type) { + case "range": + return ( + typeof value === "number" && + (typeof filter.min !== "number" || filter.min <= value) && + (typeof filter.max !== "number" || filter.max > value) + ); + case "terms": + return !isNil(value) && filter.values.includes(value + ""); + case "search": + return value && normalize(value).includes(filter.normalizedValue); + default: + return false; + } + }); +} + +export function filterNodes(data: Data, { filters }: Pick): Set | null { + const { graph, fieldsIndex } = data; + + if (!filters || !filters.length) return null; + return new Set(graph.filterNodes((node, attributes) => filterNode(attributes, filters, fieldsIndex))); +} + +/** + * Various views: + * ************** + */ +export function getFilterableFields( + data: Data, + { filterable, colorable, sizeable }: Pick, +): Field[] { + const { fields, fieldsIndex } = data; + const filterableSet = new Set([...(filterable || []), ...(colorable || []), ...(sizeable || [])]); + + return fields.filter((f) => filterableSet.has(f)).map((f) => fieldsIndex[f]); +} diff --git a/src/lib/errors.tsx b/src/lib/errors.tsx new file mode 100644 index 0000000..18f6856 --- /dev/null +++ b/src/lib/errors.tsx @@ -0,0 +1,117 @@ +import { flatMap, pickBy, sortBy } from "lodash"; + +import { Report } from "./data"; +import { NotificationInput } from "./notifications"; + +/** + * Errors management: + */ +export const MISSING_URL = "missing-url"; +export const MISSING_FILE = "missing-file"; +export const BAD_EXTENSION = "bad-ext"; +export const BAD_URL = "bad-url"; +export const BAD_FILE = "bad-file"; +export const UNKNOWN = "unknown"; + +const ERRORS_DICT: Record = { + [MISSING_URL]: "You need to specify a graph file URL.", + [MISSING_FILE]: "You need to specify a local file or a graph URL to load.", + [BAD_EXTENSION]: "The extension of the given graph file is not recognized.", + [BAD_URL]: "The graph at the given URL could not be loaded.", + [BAD_FILE]: "The graph at the given URL could not be parsed.", + [UNKNOWN]: "An unknown error occurred.", +}; + +export function getErrorMessage(errorType: string): string { + return ERRORS_DICT[errorType] || "Something went wrong."; +} + +/** + * Reports management: + */ +const LEVELS_ORDER = { + error: 0, + warning: 1, + info: 2, +}; + +const REPORT_DICT: Record< + string, + { level: "info" | "warning" | "error"; log: (count: number) => string | JSX.Element } +> = { + missingEdgeSizes: { + level: "info", + log: (n) => `${n === 1 ? "One" : n} edge${n > 1 ? "s have" : " has"} no size.`, + }, + missingEdgeColors: { + level: "info", + log: (n) => `${n === 1 ? "One" : n} edge${n > 1 ? "s have" : " has"} no color.`, + }, + missingNodeSizes: { + level: "info", + log: (n) => `${n === 1 ? "One" : n} node${n > 1 ? "s have" : " has"} no size.`, + }, + missingNodeColors: { + level: "info", + log: (n) => `${n === 1 ? "One" : n} node${n > 1 ? "s have" : " has"} no color. `, + }, + missingNodeLabels: { + level: "warning", + log: (n) => + `${n > 1 ? n : "One"} node${n > 1 ? "s have" : " has"} no label. ${ + n > 1 ? "Their keys are" : "Its key is" + } used instead (${n > 1 ? "they are" : "it is"} italic in the graph).`, + }, + missingNodePositions: { + level: "warning", + log: (n) => ( + <> + {n === 1 ? "One" : n} node{n > 1 ? "s have" : " has"} no position. The layout has been determined using{" "} + + ForceAtlas2 + + . However, it would be better to load a file with the layout already computed. + + ), + }, +}; + +export function getReportNotification(report: Report, skipInfo?: boolean): NotificationInput | null { + const minimalReport: Record = pickBy(report, (val, key) => !!val && !!REPORT_DICT[key]); + const messages = sortBy( + flatMap(minimalReport, (val, key) => { + const log = REPORT_DICT[key].log(val); + const level = REPORT_DICT[key].level; + + if (skipInfo && level === "info") return []; + + return [{ message: log, level }]; + }), + ({ level }) => LEVELS_ORDER[level] || Infinity, + ); + + if (!messages.length) return null; + + const mostImportantLevel = messages[0].level; + + return { + type: mostImportantLevel, + keepAlive: mostImportantLevel !== "info", + message: ( + <> + {messages.length > 1 ? "Some things" : "Something"} to note about the graph dataset: +
    + {messages.map(({ message, level }, i) => ( +
  • + {message} +
  • + ))} +
+ + ), + }; +} diff --git a/src/lib/graph.ts b/src/lib/graph.ts new file mode 100644 index 0000000..7d49392 --- /dev/null +++ b/src/lib/graph.ts @@ -0,0 +1,234 @@ +import chroma from "chroma-js"; +import { Attributes } from "graphology-types"; +import { isNil, isSet, memoize } from "lodash"; +import { Settings } from "sigma/settings"; + +import { ComputedData } from "./computedData"; +import { + DEFAULT_EDGE_COLOR, + DEFAULT_EDGE_SIZE_RATIO, + DEFAULT_LABEL_SIZE, + DEFAULT_NODE_SIZE_RATIO, + HIDDEN_NODE_COLOR, + HIGHLIGHTED_EDGE_SIZE_RATIO, + HIGHLIGHTED_NODE_COLOR, +} from "./consts"; +import { Data, EdgeData, NodeData, getValue } from "./data"; +import { NavState } from "./navState"; + +const getLighterColor = memoize((color: string): string => { + return chroma.average([color, HIDDEN_NODE_COLOR], "lab").hex(); +}); + +export function applyNodeColors({ graph }: Data, { nodeColors }: Pick) { + graph.forEachNode((node, { rawColor }) => + graph.setNodeAttribute(node, "color", nodeColors ? nodeColors[node] : rawColor), + ); +} + +export function applyNodeSizes( + { graph }: Data, + { nodeSizes }: Pick, + { nodeSizeRatio }: Pick, +) { + const ratio = typeof nodeSizeRatio === "number" ? nodeSizeRatio : DEFAULT_NODE_SIZE_RATIO; + graph.forEachNode((node, { rawSize }) => + graph.setNodeAttribute(node, "size", (nodeSizes ? nodeSizes[node] : rawSize) * ratio), + ); +} + +export function applyNodeLabelSizes( + { graph, fieldsIndex }: Data, + { nodeSizeExtents }: Pick, + { nodeSizeField, minLabelSize, maxLabelSize }: Pick, +) { + const minSize = typeof minLabelSize === "number" ? minLabelSize : DEFAULT_LABEL_SIZE; + const maxSize = typeof maxLabelSize === "number" ? maxLabelSize : DEFAULT_LABEL_SIZE; + const extentDelta = nodeSizeExtents[1] - nodeSizeExtents[0]; + const factor = (maxSize - minSize) / (extentDelta || 1); + graph.forEachNode((node, nodeData) => { + const nodeSize = nodeSizeField ? getValue(nodeData, fieldsIndex[nodeSizeField]) : nodeData.rawSize; + graph.setNodeAttribute(node, "labelSize", minSize + (nodeSize - nodeSizeExtents[0]) * factor); + }); +} + +export function applyNodeSubtitles({ graph, fieldsIndex }: Data, { subtitleFields }: Pick) { + graph.forEachNode((node, nodeData) => + graph.setNodeAttribute( + node, + "subtitles", + subtitleFields + ? subtitleFields.flatMap((f) => { + const field = fieldsIndex[f]; + const val = getValue(nodeData, field); + return isNil(val) ? [] : [`${field.label}: ${typeof val === "number" ? val.toLocaleString() : val}`]; + }) + : [], + ), + ); +} + +export function applyEdgeColors( + { graph }: Data, + { nodeColors }: Pick, + { edgeColoring }: Pick, +) { + let getColor: (edge: string, data: EdgeData) => string; + + switch (edgeColoring) { + case "s": + case "t": + getColor = (edge: string) => { + const node = edgeColoring === "s" ? graph.source(edge) : graph.target(edge); + return nodeColors ? nodeColors[node] : graph.getNodeAttribute(node, "rawColor"); + }; + break; + case "c": + getColor = () => DEFAULT_EDGE_COLOR; + break; + case "o": + default: + getColor = (edge, { rawColor }) => rawColor; + } + + graph.forEachEdge((edge, data) => graph.setEdgeAttribute(edge, "color", getColor(edge, data))); +} + +export function applyEdgeDirections({ graph }: Data, { edgeDirection }: Pick) { + let getDirection: (edge: string, data: EdgeData) => boolean | undefined; + + switch (edgeDirection) { + case "d": + getDirection = () => true; + break; + case "u": + getDirection = () => false; + break; + case "o": + default: + getDirection = (edge) => graph.isDirected(edge); + } + + graph.forEachEdge((edge, data) => { + const directed = getDirection(edge, data); + graph.mergeEdgeAttributes(edge, { directed, type: directed ? "arrow" : undefined }); + }); +} + +export function applyEdgeSizes( + { graph }: Data, + { edgeSizes }: Pick, + { edgeSizeRatio }: Pick, +) { + const ratio = typeof edgeSizeRatio === "number" ? edgeSizeRatio : DEFAULT_EDGE_SIZE_RATIO; + graph.forEachEdge((edge, { rawSize }) => + graph.setEdgeAttribute(edge, "size", (edgeSizes ? edgeSizes[edge] : rawSize) * ratio), + ); +} + +export function applyGraphStyle(data: Data, computedData: ComputedData, navState: NavState) { + applyNodeColors(data, computedData); + applyNodeSizes(data, computedData, navState); + applyNodeLabelSizes(data, computedData, navState); + applyNodeSubtitles(data, navState); + applyEdgeColors(data, computedData, navState); + applyEdgeDirections(data, navState); + applyEdgeSizes(data, computedData, navState); +} + +export function getReducers( + dataset: Data, + navState: NavState, + computedData: ComputedData, + hovered: string | Set | undefined, +): { + node: NonNullable; + edge: NonNullable; +} { + const { graph } = dataset; + const { selectedNode } = navState; + const { filteredNodes } = computedData; + + const greyedOutNodes = new Set(); + const emphasizedNodesSet = new Set(); + const highlightedNodesSet = new Set(); + + if (isSet(hovered)) { + if (selectedNode) highlightedNodesSet.add(selectedNode); + + graph.forEachNode((n) => { + if (hovered.has(n)) { + emphasizedNodesSet.add(n); + } else if (n !== selectedNode) { + greyedOutNodes.add(n); + } + }); + } else if (typeof hovered === "string" || selectedNode) { + if (hovered) { + highlightedNodesSet.add(hovered); + emphasizedNodesSet.add(hovered); + } + if (selectedNode) { + highlightedNodesSet.add(selectedNode); + emphasizedNodesSet.add(selectedNode); + } + + const highlightedNodes = Array.from(highlightedNodesSet); + graph.forEachNode((n) => { + if (highlightedNodes.some((highlightedNode) => graph.areNeighbors(n, highlightedNode))) { + emphasizedNodesSet.add(n); + } else if (!highlightedNodesSet.has(n)) { + greyedOutNodes.add(n); + } + }); + } + + return { + node(node: string, anyData: Attributes) { + const data = anyData as NodeData; + const res = { ...anyData }; + + let noLabel = false; + + if (emphasizedNodesSet.has(node)) { + res.color = data.color; + res.borderColor = HIGHLIGHTED_NODE_COLOR; + res.type = "bordered"; + res.zIndex = 1000; + noLabel = false; + } else if (filteredNodes && !filteredNodes.has(node)) { + res.color = HIDDEN_NODE_COLOR; + noLabel = true; + } else if (greyedOutNodes.has(node)) { + res.color = getLighterColor(data.color); + noLabel = true; + } + + if (highlightedNodesSet.has(node)) { + res.highlighted = true; + noLabel = false; + } + + if (noLabel) { + res.hideLabel = true; + res.subtitles = []; + res.zIndex = -1; + } + + return res; + }, + edge(edge: string, data: Attributes) { + const res = { ...data }; + + if (graph.extremities(edge).some((n) => greyedOutNodes.has(n) || (filteredNodes && !filteredNodes.has(n)))) { + res.hidden = true; + } + + if (hovered || selectedNode) { + res.size *= HIGHLIGHTED_EDGE_SIZE_RATIO; + } + + return res; + }, + }; +} diff --git a/src/lib/navState.test.ts b/src/lib/navState.test.ts new file mode 100644 index 0000000..1930012 --- /dev/null +++ b/src/lib/navState.test.ts @@ -0,0 +1,421 @@ +import { MultiGraph } from "graphology"; +import { describe, expect, test } from "vitest"; + +import { normalize } from "../utils/string"; +import { + DEFAULT_LABEL_SIZE, + DEFAULT_LABEL_THRESHOLD, + DEFAULT_NODE_SIZE_RATIO, + MAX_EDGE_SIZE_RATIO, + MAX_LABEL_SIZE, + MAX_LABEL_THRESHOLD, + MAX_NODE_SIZE_RATIO, + MIN_EDGE_SIZE_RATIO, + MIN_LABEL_SIZE, + MIN_LABEL_THRESHOLD, + MIN_NODE_SIZE_RATIO, +} from "./consts"; +import { Data, enrichData, prepareGraph } from "./data"; +import { + DEFAULT_EDGE_COLORING, + DEFAULT_EDGE_DIRECTION, + DEFAULT_ROLE, + Role, + cleanFilter, + cleanNavState, + navStateToQueryURL, + queryURLToNavState, +} from "./navState"; + +function data(): Data { + const rawGraph = new MultiGraph(); + rawGraph.import({ + nodes: [ + { key: "John", attributes: { name: "Doe", age: 34, childrenCount: 2, description: "Lorem ipsum" } }, + { key: "Jack", attributes: { name: "Black", age: 56, childrenCount: 1, description: "Lorem ipsum dolor" } }, + ], + edges: [{ source: "John", target: "Jack" }], + }); + + const { graph } = prepareGraph(rawGraph); + return enrichData(graph); +} + +describe("NavState", () => { + describe("#cleanFilter", () => { + test("should do nothing for valid terms filter", () => { + expect(cleanFilter({ type: "terms", field: "n", values: ["Doe"] }, data())).toStrictEqual({ + type: "terms", + field: "n", + values: ["Doe"], + }); + }); + test("should remove unexisting values from terms filters", () => { + expect(cleanFilter({ type: "terms", field: "n", values: ["Doe", "Obama"] }, data())).toStrictEqual({ + type: "terms", + field: "n", + values: ["Doe"], + }); + }); + test("should return null if no term value exists", () => { + expect(cleanFilter({ type: "terms", field: "n", values: ["Obama"] }, data())).toStrictEqual(null); + }); + test("should return null if the terms field does not exist", () => { + expect(cleanFilter({ type: "terms", field: "firstName", values: ["John"] }, data())).toStrictEqual(null); + }); + test("should return null if the terms field is not a quali field", () => { + expect(cleanFilter({ type: "terms", field: "a-n", values: ["10"] }, data())).toStrictEqual(null); + }); + + test("should do nothing for valid range filter", () => { + expect(cleanFilter({ type: "range", field: "a-n", min: 10 }, data())).toStrictEqual({ + type: "range", + field: "a-n", + min: 10, + }); + }); + test("should return null if there is no min nor no max", () => { + expect(cleanFilter({ type: "range", field: "a-n" }, data())).toStrictEqual(null); + }); + test("should return null if the range field does not exist", () => { + expect(cleanFilter({ type: "range", field: "birthYear", max: 1980 }, data())).toStrictEqual(null); + }); + test("should return null if the range field is not a quanti field", () => { + expect(cleanFilter({ type: "range", field: "n", max: 123 }, data())).toStrictEqual(null); + }); + }); + + describe("#cleanNavState", () => { + test("should do nothing for valid nav state", () => { + expect( + cleanNavState( + { + sizeable: ["a-n"], + colorable: ["n"], + nodeSizeField: "a-n", + nodeColorField: "n", + selectedNode: "John", + disableDefaultSize: true, + disableDefaultColor: true, + edgeColoring: "s", + }, + data(), + ), + ).toStrictEqual({ + sizeable: ["a-n"], + colorable: ["n"], + nodeSizeField: "a-n", + nodeColorField: "n", + selectedNode: "John", + disableDefaultSize: true, + disableDefaultColor: true, + edgeColoring: "s", + }); + }); + + test("should remove `role` if it is not a proper value", () => { + expect(cleanNavState({ role: "woopsy" as Role }, data())).toStrictEqual({}); + }); + test("should remove `role` if it is the default value", () => { + expect(cleanNavState({ role: DEFAULT_ROLE }, data())).toStrictEqual({}); + }); + test("should keep `role` otherwise", () => { + expect(cleanNavState({ role: "x" }, data())).toStrictEqual({ role: "x" }); + expect(cleanNavState({ role: "v" }, data())).toStrictEqual({ role: "v" }); + }); + + test("should remove `selectedNode` if it does not exist in the graph", () => { + expect(cleanNavState({ selectedNode: "nothing" }, data())).toStrictEqual({}); + }); + + test("should keep `subtitleFields` if they are valid", () => { + expect(cleanNavState({ subtitleFields: ["a-n"] }, data())).toStrictEqual({ subtitleFields: ["a-n"] }); + }); + + test("should remove `subtitleFields` if it does not exist in the graph", () => { + expect(cleanNavState({ subtitleFields: ["nothing"] }, data())).toStrictEqual({}); + }); + + test("should remove `color` if it does not exist in the graph", () => { + expect(cleanNavState({ nodeColorField: "nothing" }, data())).toStrictEqual({}); + }); + + test("should remove `color` if it is not declared in `colorable`", () => { + expect(cleanNavState({ nodeColorField: "n", colorable: ["a-n"] }, data())).toStrictEqual({ colorable: ["a-n"] }); + }); + + test("should remove `size` if it does not exist in the graph", () => { + expect(cleanNavState({ nodeSizeField: "nothing" }, data())).toStrictEqual({}); + }); + + test("should remove `size` if it is not declared in `sizeable`", () => { + expect(cleanNavState({ nodeSizeField: "a-n", sizeable: ["c-n"] }, data())).toStrictEqual({ sizeable: ["c-n"] }); + }); + + test("should remove `size` if it is not a range field", () => { + expect(cleanNavState({ nodeSizeField: "n", sizeable: ["n"] }, data())).toStrictEqual({}); + }); + + test("should remove empty `filters` array", () => { + expect(cleanNavState({ filters: [] }, data())).toStrictEqual({}); + }); + + test("should clean `filters` array", () => { + expect( + cleanNavState({ filters: [{ type: "terms", field: "n", values: ["Doe", "Obama"] }] }, data()), + ).toStrictEqual({ filters: [{ type: "terms", field: "n", values: ["Doe"] }] }); + }); + + test("should remove `nodeSizeRatio` if it is not a proper number", () => { + expect(cleanNavState({ nodeSizeRatio: "5" as any }, data())).toStrictEqual({}); + }); + test("should remove `nodeSizeRatio` if it is the default correction ratio", () => { + expect(cleanNavState({ nodeSizeRatio: DEFAULT_NODE_SIZE_RATIO }, data())).toStrictEqual({}); + }); + test("should clamp `nodeSizeRatio` if it is out of the tolerance range", () => { + expect(cleanNavState({ nodeSizeRatio: 0.001 }, data())).toStrictEqual({ nodeSizeRatio: MIN_NODE_SIZE_RATIO }); + expect(cleanNavState({ nodeSizeRatio: 1000 }, data())).toStrictEqual({ nodeSizeRatio: MAX_NODE_SIZE_RATIO }); + }); + + test("should remove `edgeSizeRatio` if it is not a proper number", () => { + expect(cleanNavState({ edgeSizeRatio: "5" as any }, data())).toStrictEqual({}); + }); + test("should remove `edgeSizeRatio` if it is the default correction ratio", () => { + expect(cleanNavState({ edgeSizeRatio: DEFAULT_NODE_SIZE_RATIO }, data())).toStrictEqual({}); + }); + test("should clamp `edgeSizeRatio` if it is out of the tolerance range", () => { + expect(cleanNavState({ edgeSizeRatio: 0.001 }, data())).toStrictEqual({ edgeSizeRatio: MIN_EDGE_SIZE_RATIO }); + expect(cleanNavState({ edgeSizeRatio: 1000 }, data())).toStrictEqual({ edgeSizeRatio: MAX_EDGE_SIZE_RATIO }); + }); + + test("should remove `edgeColoring` if it is not a proper value", () => { + expect(cleanNavState({ edgeColoring: "woopsy" as any }, data())).toStrictEqual({}); + }); + test("should remove `edgeColoring` if it is the default value", () => { + expect(cleanNavState({ edgeColoring: DEFAULT_EDGE_COLORING }, data())).toStrictEqual({}); + }); + test("should keep `edgeColoring` otherwise", () => { + expect(cleanNavState({ edgeColoring: "o" }, data())).toStrictEqual({ edgeColoring: "o" }); + expect(cleanNavState({ edgeColoring: "s" }, data())).toStrictEqual({ edgeColoring: "s" }); + expect(cleanNavState({ edgeColoring: "t" }, data())).toStrictEqual({ edgeColoring: "t" }); + }); + + test("should remove `edgeDirection` if it is not a proper value", () => { + expect(cleanNavState({ edgeDirection: "woopsy" as any }, data())).toStrictEqual({}); + }); + test("should remove `edgeDirection` if it is the default value", () => { + expect(cleanNavState({ edgeDirection: DEFAULT_EDGE_DIRECTION }, data())).toStrictEqual({}); + }); + test("should keep `edgeDirection` otherwise", () => { + expect(cleanNavState({ edgeDirection: "d" }, data())).toStrictEqual({ edgeDirection: "d" }); + expect(cleanNavState({ edgeDirection: "u" }, data())).toStrictEqual({ edgeDirection: "u" }); + }); + + test("should remove `showGraphMeta` if it is not `true`", () => { + expect(cleanNavState({ showGraphMeta: false }, data())).toStrictEqual({}); + expect(cleanNavState({ showGraphMeta: 123 as any }, data())).toStrictEqual({}); + }); + test("should keep `showGraphMeta` if it is `true`", () => { + expect(cleanNavState({ showGraphMeta: true }, data())).toStrictEqual({ showGraphMeta: true }); + }); + + test("should remove min/max label size if it is not proper numbers", () => { + expect(cleanNavState({ minLabelSize: "5" as any, maxLabelSize: "25" as any }, data())).toStrictEqual({}); + }); + test("should remove min/max label size if they are the default correction ratio", () => { + expect( + cleanNavState({ minLabelSize: DEFAULT_LABEL_SIZE, maxLabelSize: DEFAULT_LABEL_SIZE }, data()), + ).toStrictEqual({}); + }); + test("should clamp min/max label size if out of the tolerance range", () => { + expect(cleanNavState({ minLabelSize: 0.001, maxLabelSize: 0.001 }, data())).toStrictEqual({ + minLabelSize: MIN_LABEL_SIZE, + maxLabelSize: MIN_LABEL_SIZE, + }); + expect(cleanNavState({ minLabelSize: 1000, maxLabelSize: 1000 }, data())).toStrictEqual({ + minLabelSize: MAX_LABEL_SIZE, + maxLabelSize: MAX_LABEL_SIZE, + }); + }); + test("should clamp max label size if lower than min label size", () => { + expect(cleanNavState({ minLabelSize: 7, maxLabelSize: 6 }, data())).toStrictEqual({ + minLabelSize: 7, + maxLabelSize: 7, + }); + }); + + test("should remove `labelThresholdRatio` if it is not a proper number", () => { + expect(cleanNavState({ labelThresholdRatio: "5" as any }, data())).toStrictEqual({}); + }); + test("should remove `labelThresholdRatio` if it is the default correction ratio", () => { + expect(cleanNavState({ labelThresholdRatio: DEFAULT_LABEL_THRESHOLD }, data())).toStrictEqual({}); + }); + test("should clamp `labelThresholdRatio` if it is out of the tolerance range", () => { + expect(cleanNavState({ labelThresholdRatio: 0.001 }, data())).toStrictEqual({ + labelThresholdRatio: MIN_LABEL_THRESHOLD, + }); + expect(cleanNavState({ labelThresholdRatio: 1000 }, data())).toStrictEqual({ + labelThresholdRatio: MAX_LABEL_THRESHOLD, + }); + }); + test("should remove `url` when `local` is true", () => { + expect(cleanNavState({ url: "http://pouet", local: true }, data())).toStrictEqual({ + local: true, + }); + }); + test("should remove `local` when it is not `true`", () => { + expect(cleanNavState({ disableDefaultSize: true }, data())).toStrictEqual({}); + }); + test("should remove `disableDefaultSize` when `sizeable` is empty", () => { + expect(cleanNavState({ disableDefaultSize: true }, data())).toStrictEqual({}); + }); + test("should remove `disableDefaultColor` when `colorable` is empty", () => { + expect(cleanNavState({ disableDefaultColor: true }, data())).toStrictEqual({}); + }); + test("should force a `size` value when `disableDefaultSize` is true", () => { + expect(cleanNavState({ disableDefaultSize: true, sizeable: ["a-n", "c-n"] }, data())).toStrictEqual({ + disableDefaultSize: true, + sizeable: ["a-n", "c-n"], + nodeSizeField: "a-n", + }); + expect( + cleanNavState({ disableDefaultSize: true, sizeable: ["a-n", "c-n"], nodeSizeField: "c-n" }, data()), + ).toStrictEqual({ + disableDefaultSize: true, + sizeable: ["a-n", "c-n"], + nodeSizeField: "c-n", + }); + }); + test("should force a `color` value when `disableDefaultColor` is true", () => { + expect(cleanNavState({ disableDefaultColor: true, colorable: ["n", "a-n"] }, data())).toStrictEqual({ + disableDefaultColor: true, + colorable: ["n", "a-n"], + nodeColorField: "n", + }); + expect( + cleanNavState({ disableDefaultColor: true, colorable: ["n", "a-n"], nodeColorField: "a-n" }, data()), + ).toStrictEqual({ + disableDefaultColor: true, + colorable: ["n", "a-n"], + nodeColorField: "a-n", + }); + }); + }); + + describe("#navStateToQueryURL", () => { + test("should work with base keys", () => { + expect( + navStateToQueryURL({ + url: "foobar", + role: "d", + nodeColorField: "name", + nodeSizeField: "age", + selectedNode: "John", + subtitleFields: ["age"], + }), + ).toBe("url=foobar&r=d&c=name&s=age&n=John&st=age"); + expect( + navStateToQueryURL({ + local: true, + minLabelSize: 10, + maxLabelSize: 15, + nodeSizeRatio: 0.5, + edgeSizeRatio: 0.7, + edgeColoring: "s", + edgeDirection: "d", + showGraphMeta: true, + labelThresholdRatio: 2, + }), + ).toBe("l=1&nr=0.5&er=0.7&ec=s&ed=d&gm=1<=2&ls=10&le=15"); + }); + + test("should work with one filter", () => { + expect( + navStateToQueryURL({ + filters: [{ type: "terms", field: "name", values: ["Doe"] }], + }), + ).toBe("name.t=Doe"); + }); + + test("should work with multiple filters", () => { + expect( + navStateToQueryURL({ + filters: [ + { type: "terms", field: "name", values: ["Doe", "Black"] }, + { type: "range", field: "age", min: 10, max: 30 }, + { type: "search", field: "content", value: "loremipsum", normalizedValue: normalize("loremipsum") }, + ], + }), + ).toBe("name.t[]=Doe&name.t[]=Black&age.min=10&age.max=30&content.v=loremipsum"); + }); + + test("should handle properly filters encoding", () => { + expect( + navStateToQueryURL({ + filters: [{ type: "terms", field: "name&firstname", values: ['Jean, "Jacques"', "José"] }], + }), + ).toBe("name%26firstname.t[]=Jean%2C%20%22Jacques%22&name%26firstname.t[]=Jos%C3%A9"); + }); + + test("should work with filterable fields", () => { + expect(navStateToQueryURL({ filterable: ["age", "name"] })).toBe("fa[]=age&fa[]=name"); + }); + }); + + describe("#queryURLToNavState", () => { + test("should work with base keys", () => { + expect(queryURLToNavState("url=foobar&r=d&c=name&s=age&n=John&st[]=age")).toStrictEqual({ + url: "foobar", + role: "d", + nodeColorField: "name", + nodeSizeField: "age", + selectedNode: "John", + subtitleFields: ["age"], + }); + expect(queryURLToNavState("l=1&nr=0.5&er=0.7&ec=s&ed=d&gm=1<=2&ls=10&le=15")).toStrictEqual({ + local: true, + minLabelSize: 10, + maxLabelSize: 15, + nodeSizeRatio: 0.5, + edgeSizeRatio: 0.7, + edgeColoring: "s", + edgeDirection: "d", + showGraphMeta: true, + labelThresholdRatio: 2, + }); + }); + + test("should work with one filter", () => { + expect(queryURLToNavState("name.t=Doe")).toStrictEqual({ + filters: [{ type: "terms", field: "name", values: ["Doe"] }], + }); + }); + + test("should work with filters", () => { + expect( + queryURLToNavState("name.t[]=Doe&name.t[]=Black&age.min=10&age.max=30&content.v=loremipsum"), + ).toStrictEqual({ + filters: [ + { type: "terms", field: "name", values: ["Doe", "Black"] }, + { type: "range", field: "age", min: 10, max: 30 }, + { type: "search", field: "content", value: "loremipsum", normalizedValue: normalize("loremipsum") }, + ], + }); + }); + + test("should handle properly filters encoding", () => { + expect( + queryURLToNavState("name%26firstname.t[]=Jean%2C%20%22Jacques%22&name%26firstname.t[]=Jos%C3%A9"), + ).toStrictEqual({ + filters: [{ type: "terms", field: "name&firstname", values: ['Jean, "Jacques"', "José"] }], + }); + }); + + test("should work with filterable fields", () => { + expect(queryURLToNavState("fa=age")).toStrictEqual({ filterable: ["age"] }); + expect(queryURLToNavState("fa[]=age")).toStrictEqual({ filterable: ["age"] }); + expect(queryURLToNavState("fa=age&fa=name")).toStrictEqual({ filterable: ["age", "name"] }); + expect(queryURLToNavState("fa[]=age&fa[]=name")).toStrictEqual({ filterable: ["age", "name"] }); + }); + }); +}); diff --git a/src/lib/navState.ts b/src/lib/navState.ts new file mode 100644 index 0000000..030cb3d --- /dev/null +++ b/src/lib/navState.ts @@ -0,0 +1,338 @@ +import { clamp, groupBy, isNil, keyBy, map, omitBy, uniq } from "lodash"; + +import { arrayify } from "../utils/array"; +import { normalize } from "../utils/string"; +import { queryStringToRecord, urlSearchParamsToString } from "../utils/url"; +import { + DEFAULT_EDGE_SIZE_RATIO, + DEFAULT_LABEL_SIZE, + DEFAULT_LABEL_THRESHOLD, + DEFAULT_NODE_SIZE_RATIO, + MAX_EDGE_SIZE_RATIO, + MAX_LABEL_SIZE, + MAX_LABEL_THRESHOLD, + MAX_NODE_SIZE_RATIO, + MIN_EDGE_SIZE_RATIO, + MIN_LABEL_SIZE, + MIN_LABEL_THRESHOLD, + MIN_NODE_SIZE_RATIO, +} from "./consts"; +import { Data, FieldType, QualiField, Report } from "./data"; + +export interface SearchFilter { + type: "search"; + field: string; + value: string; + normalizedValue: string; +} +export interface TermsFilter { + type: "terms"; + field: string; + values: string[]; +} +export interface RangeFilter { + type: "range"; + field: string; + min?: number; + max?: number; +} +export type Filter = SearchFilter | TermsFilter | RangeFilter; +export type FilterType = Filter["type"]; + +export const FILTER_FIELD_TYPES: Record = { + search: "content", + range: "quanti", + terms: "quali", +}; + +// Stand for "edit", "explore" or "view" +export const ROLES = ["d", "x", "v"] as const; +export const ROLES_SET: Set = new Set(ROLES); +export type Role = (typeof ROLES)[number]; +export const DEFAULT_ROLE: Role = "d"; + +// Stand for "source", "target", "original" or "constant" +export const EDGE_COLORING_MODES = ["c", "o", "s", "t"] as const; +export const EDGE_COLORING_MODES_SET: Set = new Set(EDGE_COLORING_MODES); +export type EdgeColoring = (typeof EDGE_COLORING_MODES)[number]; +export const DEFAULT_EDGE_COLORING: EdgeColoring = "c"; + +// Stand for "original", "directed" or "undirected" +export const EDGE_DIRECTION_MODES = ["o", "d", "u"] as const; +export const EDGE_DIRECTION_MODES_SET: Set = new Set(EDGE_DIRECTION_MODES); +export type EdgeDirection = (typeof EDGE_DIRECTION_MODES)[number]; +export const DEFAULT_EDGE_DIRECTION: EdgeDirection = "o"; + +export interface NavState { + url?: string | undefined; + local?: boolean | undefined; + role?: Role | undefined; + + // Editor state: + sizeable?: string[] | undefined; + colorable?: string[] | undefined; + filterable?: string[] | undefined; + subtitleFields?: string[] | undefined; + disableDefaultSize?: boolean | undefined; + disableDefaultColor?: boolean | undefined; + showGraphMeta?: boolean | undefined; + + // Viewer state: + nodeSizeField?: string | undefined; + nodeColorField?: string | undefined; + filters?: Filter[] | undefined; + selectedNode?: string | undefined; + nodeSizeRatio?: number | undefined; + edgeSizeRatio?: number | undefined; + useEdgeWeights?: boolean | undefined; + labelThresholdRatio?: number | undefined; + minLabelSize?: number | undefined; + maxLabelSize?: number | undefined; + edgeColoring?: EdgeColoring | undefined; + edgeDirection?: EdgeDirection | undefined; + + // Only for some specific transitions: + preventBlocker?: boolean; +} + +export function cleanFilter(filter: Filter, data: Data): Filter | null { + const field = data.fieldsIndex[filter.field]; + if (!field || field.type !== FILTER_FIELD_TYPES[filter.type]) return null; + + if (filter.type === "terms") { + const valuesIndex = (field as QualiField).values; + const values = filter.values.filter((v) => valuesIndex[v]); + return values.length ? { ...filter, values } : null; + } else if (filter.type === "range") { + return typeof filter.min === "number" || typeof filter.max === "number" ? filter : null; + } else { + return filter.value ? filter : null; + } +} + +export function cleanNavState(state: NavState, data: Data): NavState { + const { graph, fieldsIndex } = data; + const { + sizeable, + colorable, + filterable, + subtitleFields, + nodeColorField, + nodeSizeField, + filters, + selectedNode, + nodeSizeRatio, + edgeSizeRatio, + edgeColoring, + edgeDirection, + minLabelSize, + maxLabelSize, + showGraphMeta, + labelThresholdRatio, + disableDefaultSize, + disableDefaultColor, + } = state; + + const cleanedSubtitleFields = uniq((subtitleFields || []).filter((f) => fieldsIndex[f])); + const cleanedColorable = uniq((colorable || []).filter((f) => fieldsIndex[f])); + const cleanedSizeable = uniq((sizeable || []).filter((f) => fieldsIndex[f]?.type === "quanti")); + const cleanedFilterable = uniq( + (filterable || []).filter((f) => fieldsIndex[f] && !cleanedSizeable.includes(f) && !cleanedColorable.includes(f)), + ); + const cleanedSizeableIndex = keyBy(cleanedSizeable); + const cleanedColorableIndex = keyBy(cleanedColorable); + + const cleanedDisableDefaultSize = disableDefaultSize && !!cleanedSizeable.length; + const cleanedDisableDefaultColor = disableDefaultColor && !!cleanedColorable.length; + + const cleanedFilters = (filters || []) + .map((filter) => cleanFilter(filter, data)) + .filter((filter) => !isNil(filter)) as Filter[]; + + const cleanedMinLabelSize = clamp( + typeof minLabelSize === "number" ? minLabelSize : DEFAULT_LABEL_SIZE, + MIN_LABEL_SIZE, + MAX_LABEL_SIZE, + ); + const cleanedMaxLabelSize = clamp( + typeof maxLabelSize === "number" ? maxLabelSize : DEFAULT_LABEL_SIZE, + cleanedMinLabelSize, + MAX_LABEL_SIZE, + ); + + const cleanedState: NavState = { + local: state.local, + url: !state.local ? state.url : undefined, + role: state.role && ROLES_SET.has(state.role) && state.role !== DEFAULT_ROLE ? state.role : undefined, + // Editor state: + sizeable: cleanedSizeable.length ? cleanedSizeable : undefined, + colorable: cleanedColorable.length ? cleanedColorable : undefined, + filterable: cleanedFilterable.length ? cleanedFilterable : undefined, + subtitleFields: cleanedSubtitleFields.length ? cleanedSubtitleFields : undefined, + // Viewer state: + nodeSizeField: + (nodeSizeField && fieldsIndex[nodeSizeField] && cleanedSizeableIndex[nodeSizeField] + ? nodeSizeField + : undefined) || (cleanedDisableDefaultSize ? cleanedSizeable[0] : undefined), + nodeColorField: + (nodeColorField && fieldsIndex[nodeColorField] && cleanedColorableIndex[nodeColorField] + ? nodeColorField + : undefined) || (cleanedDisableDefaultColor ? cleanedColorable[0] : undefined), + filters: cleanedFilters.length ? cleanedFilters : undefined, + selectedNode: graph.hasNode(selectedNode) ? selectedNode : undefined, + nodeSizeRatio: + typeof nodeSizeRatio === "number" && nodeSizeRatio !== DEFAULT_NODE_SIZE_RATIO + ? clamp(nodeSizeRatio, MIN_NODE_SIZE_RATIO, MAX_NODE_SIZE_RATIO) + : undefined, + edgeSizeRatio: + typeof edgeSizeRatio === "number" && edgeSizeRatio !== DEFAULT_EDGE_SIZE_RATIO + ? clamp(edgeSizeRatio, MIN_EDGE_SIZE_RATIO, MAX_EDGE_SIZE_RATIO) + : undefined, + labelThresholdRatio: + typeof labelThresholdRatio === "number" && labelThresholdRatio !== DEFAULT_LABEL_THRESHOLD + ? clamp(labelThresholdRatio, MIN_LABEL_THRESHOLD, MAX_LABEL_THRESHOLD) + : undefined, + edgeColoring: + edgeColoring && EDGE_COLORING_MODES_SET.has(edgeColoring) && edgeColoring !== DEFAULT_EDGE_COLORING + ? edgeColoring + : undefined, + edgeDirection: + edgeDirection && EDGE_DIRECTION_MODES_SET.has(edgeDirection) && edgeDirection !== DEFAULT_EDGE_DIRECTION + ? edgeDirection + : undefined, + showGraphMeta: showGraphMeta === true ? true : undefined, + minLabelSize: cleanedMinLabelSize !== DEFAULT_LABEL_SIZE ? cleanedMinLabelSize : undefined, + maxLabelSize: cleanedMaxLabelSize !== DEFAULT_LABEL_SIZE ? cleanedMaxLabelSize : undefined, + disableDefaultSize: cleanedDisableDefaultSize || undefined, + disableDefaultColor: cleanedDisableDefaultColor || undefined, + }; + + return omitBy(cleanedState, isNil) as NavState; +} + +export function navStateToQueryURL(state: NavState): string { + const params = new URLSearchParams(); + + if (state.url) params.append("url", state.url); + if (state.local) params.append("l", "1"); + if (state.role) params.append("r", state.role); + if (state.nodeColorField) params.append("c", state.nodeColorField); + if (state.nodeSizeField) params.append("s", state.nodeSizeField); + if (state.selectedNode) params.append("n", state.selectedNode); + if (state.sizeable) state.sizeable.forEach((f) => params.append("sa", f)); + if (state.colorable) state.colorable.forEach((f) => params.append("ca", f)); + if (state.filterable) state.filterable.forEach((f) => params.append("fa", f)); + if (state.subtitleFields) state.subtitleFields.forEach((f) => params.append("st", f)); + if (state.filters) { + state.filters.forEach((filter) => { + if (filter.type === "terms") { + const key = `${filter.field}.t`; + filter.values.forEach((s) => params.append(key, s)); + } else if (filter.type === "range") { + if (typeof filter.min === "number") params.append(`${filter.field}.min`, filter.min + ""); + if (typeof filter.max === "number") params.append(`${filter.field}.max`, filter.max + ""); + } else { + params.append(`${filter.field}.v`, filter.value + ""); + } + }); + } + if (state.nodeSizeRatio) params.append("nr", state.nodeSizeRatio + ""); + if (state.edgeSizeRatio) params.append("er", state.edgeSizeRatio + ""); + if (state.edgeColoring) params.append("ec", state.edgeColoring); + if (state.edgeDirection) params.append("ed", state.edgeDirection); + if (state.showGraphMeta) params.append("gm", "1"); + if (state.labelThresholdRatio) params.append("lt", state.labelThresholdRatio + ""); + if (state.disableDefaultSize) params.append("ds", "1"); + if (state.disableDefaultColor) params.append("dc", "1"); + if (state.minLabelSize) params.append("ls", state.minLabelSize + ""); + if (state.maxLabelSize) params.append("le", state.maxLabelSize + ""); + + return urlSearchParamsToString(params); +} + +export function queryURLToNavState(queryURL: string): NavState { + const { url, l, r, s, c, n, fa, ca, sa, le, ls, nr, er, ec, ed, gm, lt, ds, dc, st, ...query } = + queryStringToRecord(queryURL); + const navState: NavState = {}; + + if (typeof url === "string") navState.url = url; + if (typeof l === "string") navState.local = l === "1"; + if (typeof r === "string" && ROLES_SET.has(r)) navState.role = r as Role; + if (typeof s === "string") navState.nodeSizeField = s; + if (typeof c === "string") navState.nodeColorField = c; + if (typeof n === "string") navState.selectedNode = n; + if (typeof nr === "string") navState.nodeSizeRatio = +nr; + if (typeof er === "string") navState.edgeSizeRatio = +er; + if (typeof ec === "string") navState.edgeColoring = ec as EdgeColoring; + if (typeof ed === "string") navState.edgeDirection = ed as EdgeDirection; + if (typeof gm === "string") navState.showGraphMeta = gm === "1"; + if (typeof ls === "string") navState.minLabelSize = +ls; + if (typeof le === "string") navState.maxLabelSize = +le; + if (typeof lt === "string") navState.labelThresholdRatio = +lt; + if (typeof ds === "string") navState.disableDefaultSize = ds === "1"; + if (typeof dc === "string") navState.disableDefaultColor = dc === "1"; + if (sa) navState.sizeable = arrayify(sa); + if (ca) navState.colorable = arrayify(ca); + if (fa) navState.filterable = arrayify(fa); + if (st) navState.subtitleFields = arrayify(st); + + const fields = groupBy(Object.keys(query), (key) => key.replace(/\.(v|t|min|max)$/, "")); + const filters = map(fields, ([q0, q1], field): Filter => { + // Terms case: + if (q0 === `${field}.t`) { + return { + type: "terms", + field, + values: arrayify(query[q0]), + }; + // Search case: + } else if (q0 === `${field}.v`) { + return { + type: "search", + field, + value: query[q0] + "", + normalizedValue: normalize(query[q0] + ""), + }; + // Range case: + } else { + const filter: Filter = { + type: "range", + field, + }; + [q0, q1].forEach((key) => { + if (key === `${field}.min`) filter.min = +query[key]; + if (key === `${field}.max`) filter.max = +query[key]; + }); + return filter; + } + }); + if (filters.length) navState.filters = filters; + + return navState; +} + +export function guessNavState(data: Data, report: Report): NavState { + const { fields, fieldsIndex, graph } = data; + + const colorable = fields.filter( + (f) => fieldsIndex[f].type === "quali" && fieldsIndex[f].nullValuesCount <= graph.order * 0.5, + ); + const colorableRawFieldIDsSet = new Set(colorable.map((f) => fieldsIndex[f].rawFieldId)); + const sizeable = fields.filter( + (f) => + fieldsIndex[f].type === "quanti" && + !colorableRawFieldIDsSet.has(fieldsIndex[f].rawFieldId) && + fieldsIndex[f].nullValuesCount <= graph.order * 0.5, + ); + + return cleanNavState( + { + sizeable, + colorable, + nodeSizeField: (report.missingNodeSizes || 0) >= graph.order * 0.5 ? sizeable[0] : undefined, + nodeColorField: (report.missingNodeColors || 0) >= graph.order * 0.5 ? colorable[0] : undefined, + edgeColoring: (report.missingEdgeColors || 0) >= graph.size * 0.5 ? "c" : "o", + }, + data, + ); +} diff --git a/src/lib/notifications.ts b/src/lib/notifications.ts new file mode 100644 index 0000000..58d7660 --- /dev/null +++ b/src/lib/notifications.ts @@ -0,0 +1,47 @@ +import { atom, useAtom } from "jotai"; +import { useCallback } from "react"; + +export interface NotificationInput { + message: string | JSX.Element; + type?: "success" | "info" | "warning" | "error"; + + // Options: + keepAlive?: boolean; +} + +interface NotificationTechnical extends NotificationInput { + id: string; + createdAt: number; +} + +const notificationsAtom = atom([]); + +let INCREMENTAL_ID = 1; + +export function useNotifications() { + const [notifications, setNotifications] = useAtom(notificationsAtom); + + const notify = useCallback( + (notification: NotificationInput) => { + const id = ++INCREMENTAL_ID + ""; + const fullNotification = { + ...notification, + createdAt: Date.now(), + id, + }; + setNotifications((notifications) => notifications.concat([fullNotification])); + + return id; + }, + [setNotifications], + ); + + const remove = useCallback( + (id: string) => { + setNotifications((notifications) => notifications.filter((notification) => notification.id !== id)); + }, + [setNotifications], + ); + + return { notifications, notify, remove }; +} diff --git a/src/styles/_animations.scss b/src/styles/_animations.scss new file mode 100644 index 0000000..76023db --- /dev/null +++ b/src/styles/_animations.scss @@ -0,0 +1,22 @@ +.fade-enter { + opacity: 0; + transform: scale(0.9); +} +.fade-enter-active { + opacity: 1; + transform: translateX(0); + transition: + opacity 300ms, + transform 300ms; +} + +.fade-exit { + opacity: 1; +} +.fade-exit-active { + opacity: 0; + transform: scale(0.9); + transition: + opacity 300ms, + transform 300ms; +} diff --git a/src/styles/_base.scss b/src/styles/_base.scss new file mode 100644 index 0000000..c5e478c --- /dev/null +++ b/src/styles/_base.scss @@ -0,0 +1,183 @@ +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: $font-family-serif; +} + +hr { + margin: 2em 0; +} + +.text-ellipsis { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; +} + +.circle, +.disc { + display: inline-block; + height: 1em; + width: 1em; + border-radius: 1em; + vertical-align: top; +} +.circle { + position: relative; + + &::after { + content: " "; + position: absolute; + inset: 1px; + border-radius: 1em; + background: white; + } +} +.hoverable:hover { + cursor: pointer; + opacity: 0.7; +} + +.triangle { + width: 0; + height: 0; + border-top: 0.3em solid transparent; + border-bottom: 0.3em solid transparent; +} +.triangle-left { + border-right: 0.8em solid $arrow-color; +} +.triangle-right { + border-left: 0.8em solid $arrow-color; +} +.line { + width: 2.6em; + height: 0.25em; + background: $arrow-color; + position: relative; + + &:first-child:last-child { + width: 3.4em; + } + + .count { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + + padding: 0.3em; + background: white; + + box-sizing: content-box; + } +} + +.edge, +.edges { + display: inline-block; + width: 3em; + text-align: center; +} + +.btn > svg { + vertical-align: text-bottom; +} +.btn-inline { + line-height: 1em; +} + +.w-1 { + width: 1% !important; +} +.w-45 { + width: 45% !important; +} +.line-height-1 { + line-height: 1em !important; +} + +.flex-regular-width { + flex-shrink: 1 !important; + flex-grow: 1 !important; + flex-basis: 0 !important; + width: 0 !important; +} + +input:placeholder-shown { + text-overflow: ellipsis; + overflow: hidden; +} + +.cursor-pointer { + cursor: pointer !important; +} + +.input-inline { + width: 5em; +} + +.custom-scrollbar { + scrollbar-color: grey whitesmoke; + scrollbar-width: thin; + + &::-webkit-scrollbar-track { + background-color: whitesmoke; + } + + &::-webkit-scrollbar { + width: 3px; + height: 3px; + background-color: #fff; + } + + &::-webkit-scrollbar-thumb { + background-color: grey; + } +} + +input[type="number"] { + -moz-appearance: textfield; +} + +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; +} + +/** + * Vendors: + */ +.react-select__menu-portal { + z-index: $zindex-tooltip !important; +} +.react-select__control { + border-color: black !important; +} +.react-select__menu { + margin-bottom: 1em; +} +.react-select__menu-list { + @extend .custom-scrollbar; +} +.react-select__control--is-focused { + box-shadow: 0 0 0 1px black !important; +} + +.scrollbar-left { + direction: rtl; + + & > * { + direction: ltr; + } +} + +.dropzone { + padding: 4rem; + border-radius: 1rem; + border: 3px dotted black; + width: 100%; +} diff --git a/src/styles/_filters.scss b/src/styles/_filters.scss new file mode 100644 index 0000000..c336aa0 --- /dev/null +++ b/src/styles/_filters.scss @@ -0,0 +1,105 @@ +$viz-in-color: #333; +$viz-out-color: #999; + +.terms-filter { + $bar-height: 5px; + + .term { + margin-bottom: 0.1em; + border-radius: 5px; + padding: 2px; + + &.editable .value { + cursor: pointer; + } + .value:hover { + opacity: 0.7; + } + + .value span { + color: $viz-out-color; + } + + &.active .value span { + color: $viz-in-color; + } + } + + .bar { + height: $bar-height; + position: relative; + + .global, + .filtered { + position: absolute; + left: 0; + top: 0; + bottom: 0; + transition: width ease-in-out 0.2s; + } + + .global { + background: $gray-300; + } + .filtered { + background: $gray-800; + } + } +} + +.range-filter { + height: 160px; + + display: flex; + flex-direction: row; + justify-content: space-between; + + .bar { + position: relative; + height: 100%; + flex-grow: 1; + + &:not(:last-child) { + margin-right: 1px; + } + } + + .global, + .filtered { + position: absolute; + left: 0; + right: 0; + bottom: 0; + transition: height ease-in-out 0.2s; + } + + .global { + background: $gray-300; + } + .filtered { + background: $gray-800; + } + .label { + @extend .ellipsis; + + position: absolute; + text-align: center; + width: 100%; + font-size: 0.8em; + + &.inside { + top: 0; + } + &.outside { + bottom: 100%; + color: $text-muted; + } + } +} + +.rc-slider-mark-text { + color: $viz-out-color !important; +} +.rc-slider-mark-text-active { + color: $viz-in-color !important; +} diff --git a/src/styles/_graph.scss b/src/styles/_graph.scss new file mode 100644 index 0000000..50b4721 --- /dev/null +++ b/src/styles/_graph.scss @@ -0,0 +1,117 @@ +.graph-view { + $stage-margin: 1rem; + $button-size: 2em; + + .graph-button { + width: $button-size; + height: $button-size; + text-align: center; + display: flex; + align-items: center; + justify-content: center; + font-size: 1.5em; + margin-bottom: 0.4em; + background: white; + + &:hover { + background: black; + } + } + + .graph { + position: relative; + flex-grow: 1; + + .controls { + position: absolute; + top: $stage-margin; + right: $stage-margin; + display: flex; + flex-direction: column; + align-items: flex-end; + + & > * { + z-index: $zindex-buttons; + } + } + + .captions { + position: absolute; + bottom: $stage-margin; + left: $stage-margin; + + .size-caption { + z-index: $zindex-caption; + + .nodes { + display: flex; + flex-direction: row; + align-items: flex-end; + } + + .circle-wrapper { + height: 50px; + overflow: hidden; + display: flex; + align-items: center; + min-width: 30px; + justify-content: center; + } + + .dotted-circle { + border-radius: 100%; + background: #cccccc66; + border: 2px dotted black; + } + } + } + + .sigma-wrapper { + width: 100%; + height: 100%; + overflow: hidden; + position: relative; + } + + .sigma-container { + position: absolute; + width: 100vw; + height: 100%; + + left: 50%; + margin-left: -50vw; + + background: #fcfcfc; + + .sigma-mouse { + z-index: $zindex-sigma-mouse; + } + } + + // Sigma layer is behind everything else, despite being absolutely placed: + & > * { + z-index: 1; + } + .sigma { + z-index: 0; + } + } + + .context-panel { + background: white; + } + + .toggle-button { + position: absolute; + top: $stage-margin; + left: $stage-margin; + z-index: $zindex-buttons; + } +} + +// Inside a portal, but spawned from the GraphControl component: +.search-node.active-node, +.search-node:hover { + background: #eee; + cursor: pointer; +} diff --git a/src/styles/_home.scss b/src/styles/_home.scss new file mode 100644 index 0000000..16dcc68 --- /dev/null +++ b/src/styles/_home.scss @@ -0,0 +1,32 @@ +.home-view { + display: flex; + flex-direction: column; + min-height: 100vh; + + .expanding-block { + width: 100%; + } + + .title-block { + flex-grow: 1; + + padding: 20vh 0.5rem 0.5rem; + max-width: 500px; + margin: 0 auto; + text-align: center; + + min-height: 85vh; + } + + .gexf-form { + transition: opacity ease-in-out 0.6s; + } + + .footer { + flex-shrink: 0; + + width: 600px; + max-width: 100%; + margin: 0 auto; + } +} diff --git a/src/styles/_layout.scss b/src/styles/_layout.scss new file mode 100644 index 0000000..e2eda0b --- /dev/null +++ b/src/styles/_layout.scss @@ -0,0 +1,151 @@ +body { + padding: 0; + margin: 0; + + #root { + display: flex; + flex-direction: row; + background: white; + align-items: stretch; + overflow: hidden; + + width: 100vw; + height: 100vh; + + main { + flex-grow: 1; + } + } + + #toasts-container { + position: fixed; + bottom: 0; + right: 0; + z-index: $zindex-tooltip; + + .toast { + max-width: calc(100vw - 1rem); + } + } + + #portal-target { + position: absolute; + top: 0; + left: 0; + } +} + +// Side panels layout: +.side-panel { + border-right: 1px solid $border-color; + overflow: hidden; + height: 100%; + + z-index: $zindex-panel; + + display: flex; + flex-direction: column; + + .block { + &:not(:last-child) { + border-bottom: 1px solid $border-color; + } + } + + .panel-header { + border-bottom: 1px solid $border-color; + flex-shrink: 0; + + .header-buttons { + padding-left: 4.5em !important; + } + } + + .panel-content { + flex-shrink: 1; + flex-grow: 1; + flex-basis: 0; + + display: flex; + flex-direction: column; + + @extend .custom-scrollbar; + overflow-y: scroll; + + & > * > *:not(hr) { + padding: 1rem; + } + } +} + +// Graph container layout: +.graph-view { + height: 100%; + position: relative; + overflow: hidden; + + .wrapper { + position: absolute; + inset: 0 0 0 auto; + + display: flex; + flex-direction: row; + + transition: width $base-transition; + } +} +.edition-panel { + transition: all $base-transition; + z-index: $zindex-panel + 1; + + &.expanded { + box-shadow: 5px 0 15px rgba($black, 0.35); + } +} + +@include media-breakpoint-up(md) { + $panelSize: 500px; + + .graph-view.panel-collapsed .wrapper { + width: calc(#{$panelSize} + 100%); + } + .graph-view.panel-expanded .wrapper { + width: 100%; + } + .side-panel { + width: $panelSize; + } + .edition-panel.collapsed { + margin-left: -$panelSize; + } +} +@include media-breakpoint-down(md) { + .graph-view.panel-collapsed .wrapper { + width: 200%; + } + .graph-view.panel-expanded .wrapper { + width: 100%; + } + .side-panel { + width: 100vw; + } + .edition-panel.collapsed { + margin-left: -100vw; + } +} + +// Modals layout: +.modal { + display: block; + + .modal-backdrop { + opacity: 0.1; + z-index: $zindex-modal-backdrop; + } + .modal-content { + z-index: $zindex-modal; + } + .modal-body { + @extend .custom-scrollbar; + } +} diff --git a/src/styles/_utils.scss b/src/styles/_utils.scss new file mode 100644 index 0000000..5ce1354 --- /dev/null +++ b/src/styles/_utils.scss @@ -0,0 +1,44 @@ +.flex-centered { + display: flex; + align-items: center; + justify-content: center; +} + +.fill { + position: absolute; + inset: 0; +} + +.hidden { + visibility: hidden; +} + +.with-end-buttons { + display: flex; + flex-direction: row; + align-items: center; + + & > *:first-child { + flex-grow: 1; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + line-height: 1.8em; + } + + & > *:not(:first-child) { + flex-shrink: 0; + } +} + +.ellipsis { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + +.box { + display: inline-block; + width: 1.5em; + text-align: center; +} diff --git a/src/styles/_variables-override.scss b/src/styles/_variables-override.scss new file mode 100644 index 0000000..056d821 --- /dev/null +++ b/src/styles/_variables-override.scss @@ -0,0 +1,16 @@ +// Bootstrap variables can be overridden here: +$green: #7bd16c !default; +$cyan: #c9dbed !default; +$gray-700: #495057 !default; + +$font-size-base: 0.875rem !default; +$font-family-sans-serif: "Public Sans", Helvetica, Arial, sans-serif !default; +$font-family-serif: Sanchez, sans-serif !default; + +$link-color: $gray-700 !default; +$btn-link-color: $link-color; +$link-hover-color: black !default; +$btn-border-radius: 0.25rem !default; +$table-bg: transparent !default; + +$toast-max-width: 380px !default; diff --git a/src/styles/_variables.scss b/src/styles/_variables.scss new file mode 100644 index 0000000..b4f44f4 --- /dev/null +++ b/src/styles/_variables.scss @@ -0,0 +1,8 @@ +// Custom variables: +$zindex-caption: 100; +$zindex-sigma-mouse: 101; +$zindex-panel: 102; +$zindex-buttons: 103; +$arrow-color: #ccc; + +$base-transition: ease-in-out 0.5s; diff --git a/src/styles/index.scss b/src/styles/index.scss new file mode 100644 index 0000000..2e6eafd --- /dev/null +++ b/src/styles/index.scss @@ -0,0 +1,60 @@ +// Fonts: +@import url("https://fonts.googleapis.com/css2?family=Sanchez&family=Public+Sans&display=swap"); + +@import "variables-override"; + +// Bootstrap files: +@import "bootstrap/scss/functions"; +@import "bootstrap/scss/variables"; +@import "bootstrap/scss/variables-dark"; + +@import "variables"; + +@import "bootstrap/scss/maps"; +@import "bootstrap/scss/mixins"; +@import "bootstrap/scss/utilities"; +@import "bootstrap/scss/root"; +@import "bootstrap/scss/reboot"; +@import "bootstrap/scss/type"; +@import "bootstrap/scss/images"; +@import "bootstrap/scss/containers"; +@import "bootstrap/scss/grid"; +@import "bootstrap/scss/tables"; +@import "bootstrap/scss/forms"; +@import "bootstrap/scss/buttons"; +@import "bootstrap/scss/transitions"; +@import "bootstrap/scss/dropdown"; +@import "bootstrap/scss/button-group"; +@import "bootstrap/scss/nav"; +@import "bootstrap/scss/navbar"; +@import "bootstrap/scss/card"; +@import "bootstrap/scss/accordion"; +@import "bootstrap/scss/breadcrumb"; +@import "bootstrap/scss/pagination"; +@import "bootstrap/scss/badge"; +@import "bootstrap/scss/alert"; +@import "bootstrap/scss/progress"; +@import "bootstrap/scss/list-group"; +@import "bootstrap/scss/close"; +@import "bootstrap/scss/toasts"; +@import "bootstrap/scss/modal"; +@import "bootstrap/scss/tooltip"; +@import "bootstrap/scss/popover"; +@import "bootstrap/scss/carousel"; +@import "bootstrap/scss/spinners"; +@import "bootstrap/scss/offcanvas"; +@import "bootstrap/scss/placeholders"; +@import "bootstrap/scss/helpers"; +@import "bootstrap/scss/utilities/api"; + +// Other external libraries: +@import "rc-slider/assets/index.css"; + +// Internal files: +@import "base"; +@import "utils"; +@import "layout"; +@import "home"; +@import "graph"; +@import "filters"; +@import "animations"; \ No newline at end of file diff --git a/src/types/glsl.d.ts b/src/types/glsl.d.ts new file mode 100644 index 0000000..5c41b16 --- /dev/null +++ b/src/types/glsl.d.ts @@ -0,0 +1 @@ +declare module "*.glsl"; diff --git a/src/types/iwanthue.d.ts b/src/types/iwanthue.d.ts new file mode 100644 index 0000000..955a388 --- /dev/null +++ b/src/types/iwanthue.d.ts @@ -0,0 +1 @@ +declare module "iwanthue/precomputed/*"; diff --git a/src/utils/array.ts b/src/utils/array.ts new file mode 100644 index 0000000..f0527a2 --- /dev/null +++ b/src/utils/array.ts @@ -0,0 +1,3 @@ +export function arrayify(value: T | T[]): T[] { + return Array.isArray(value) ? value : [value]; +} diff --git a/src/utils/canvas.ts b/src/utils/canvas.ts new file mode 100644 index 0000000..e697a46 --- /dev/null +++ b/src/utils/canvas.ts @@ -0,0 +1,113 @@ +import { Settings } from "sigma/settings"; +import { NodeDisplayData, PartialButFor, PlainObject } from "sigma/types"; + +import { RETINA_HIDDEN_FIELD_PREFIX } from "../lib/consts"; + +/** + * This function draw in the input canvas 2D context a rectangle. + * It only deals with tracing the path, and does not fill or stroke. + */ +export function drawRoundRect( + ctx: CanvasRenderingContext2D, + x: number, + y: number, + width: number, + height: number, + radius: number, +): void { + ctx.beginPath(); + ctx.moveTo(x + radius, y); + ctx.lineTo(x + width - radius, y); + ctx.quadraticCurveTo(x + width, y, x + width, y + radius); + ctx.lineTo(x + width, y + height - radius); + ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); + ctx.lineTo(x + radius, y + height); + ctx.quadraticCurveTo(x, y + height, x, y + height - radius); + ctx.lineTo(x, y + radius); + ctx.quadraticCurveTo(x, y, x + radius, y); + ctx.closePath(); +} + +/** + * Custom hover renderer + */ +export function drawHover(context: CanvasRenderingContext2D, data: PlainObject, settings: PlainObject) { + const size = data.labelSize; + const font = settings.labelFont; + const weight = settings.labelWeight; + const isItalic = data[RETINA_HIDDEN_FIELD_PREFIX + "italic"]; + const subtitleSize = size - 2; + + const label = data.label; + const subtitles: string[] = data.subtitles || []; + const color = settings.labelColor.attribute + ? data[settings.labelColor.attribute] || settings.labelColor.color || "#000" + : settings.labelColor.color; + + // Then we draw the label background + context.beginPath(); + context.fillStyle = "#fff"; + context.shadowOffsetX = 0; + context.shadowOffsetY = 2; + context.shadowBlur = 8; + context.shadowColor = "#000"; + + context.font = `${weight} ${size}px ${font}`; + const labelWidth = context.measureText(label).width; + context.font = `${weight} ${subtitleSize}px ${font}`; + const subtitleWidth = Math.max(0, ...subtitles.map((s: string) => context.measureText(s).width)); + + const textWidth = Math.max(labelWidth, subtitleWidth); + + const x = Math.round(data.x); + const y = Math.round(data.y); + const w = Math.round(textWidth + size / 2 + data.size + 3); + const hLabel = Math.round(size * 0.7); + const hSubtitle = Math.round(subtitleSize * 1.3); + + drawRoundRect(context, x, y - 0.8 * size, w, hSubtitle * subtitles.length + hLabel + 0.8 * size, 5); + context.closePath(); + context.fill(); + + context.shadowOffsetX = 0; + context.shadowOffsetY = 0; + context.shadowBlur = 0; + + // And finally we draw the labels + context.fillStyle = color; + context.font = `${isItalic ? "italic " : ""}${weight} ${size}px ${font}`; + context.fillText(label, data.x + data.size + 3, data.y + size / 3); + + subtitles.forEach((s, i) => { + context.fillStyle = "#666"; + context.font = `${weight} ${subtitleSize}px ${font}`; + context.fillText(s, data.x + data.size + 3, data.y + size / 3 + hSubtitle * (i + 1)); + }); +} + +/** + * Custom label renderer + */ +export default function drawLabel( + context: CanvasRenderingContext2D, + data: PartialButFor, + settings: Settings, +): void { + const label = data.hideLabel ? null : data.label; + + if (!label) return; + + const size = data.labelSize, + font = settings.labelFont, + weight = settings.labelWeight, + isItalic = data[RETINA_HIDDEN_FIELD_PREFIX + "italic"]; + + context.font = `${isItalic ? "italic " : ""}${weight} ${size}px ${font}`; + const width = context.measureText(label).width + 8; + + context.fillStyle = "#ffffff66"; + context.fillRect(data.x + data.size, data.y - (size / 3) * 2, width, size * 1.5); + + context.fillStyle = "#000"; + context.fillText(label, data.x + data.size + 3, data.y + size / 3); +} diff --git a/src/utils/color.ts b/src/utils/color.ts new file mode 100644 index 0000000..bfbb98b --- /dev/null +++ b/src/utils/color.ts @@ -0,0 +1,8 @@ +import chroma from "chroma-js"; + +/** + * This helper determines whether a text should be black or white considering its background color. + */ +export function getFontColor(color: string): "black" | "white" { + return chroma(color).luminance() > 0.5 ? "black" : "white"; +} diff --git a/src/utils/file.ts b/src/utils/file.ts new file mode 100644 index 0000000..0705cbe --- /dev/null +++ b/src/utils/file.ts @@ -0,0 +1,15 @@ +export function saveFileFromText(content: string, name: string, type?: string): void { + const blob = new Blob([content], { type: type || "text/plain" }); + + const a = document.createElement("a"); + a.download = name; + a.href = window.URL.createObjectURL(blob); + a.click(); +} + +export function saveFileFromURL(url: string, name: string): void { + const a = document.createElement("a"); + a.download = name; + a.href = url; + a.click(); +} diff --git a/src/utils/number.test.ts b/src/utils/number.test.ts new file mode 100644 index 0000000..f9fa337 --- /dev/null +++ b/src/utils/number.test.ts @@ -0,0 +1,96 @@ +import { times } from "lodash"; +import { describe, expect, test } from "vitest"; + +import { findRanges, isNumber, shortenNumber } from "./number"; + +describe("Number utils", () => { + describe("#findRanges", () => { + test("should find around 10 steps", () => { + expect(findRanges(0.3, 9.7)).toStrictEqual({ unit: 1, ranges: times(10).map((n) => [n, n + 1]) }); + expect(findRanges(3, 97)).toStrictEqual({ unit: 10, ranges: times(10).map((n) => [n * 10, (n + 1) * 10]) }); + }); + + test("should look for a better 2 fit", () => { + expect(findRanges(0.3, 19.7)).toStrictEqual({ unit: 2, ranges: times(10).map((n) => [2 * n, 2 * (n + 1)]) }); + }); + + test("should look for the proper power of 10", () => { + expect(findRanges(0.03, 0.97)).toStrictEqual({ unit: 0.1, ranges: times(10).map((n) => [n / 10, (n + 1) / 10]) }); + }); + + test("should look for a better 2 or 5 fit, with the proper power of 10", () => { + expect(findRanges(10.03, 11.97)).toStrictEqual({ + unit: 0.2, + ranges: times(10).map((n) => [10 + n / 5, 10 + (n + 1) / 5]), + }); + }); + + test("should make an extra range if the max fits exactly the last range", () => { + expect(findRanges(0, 8).ranges).toStrictEqual(times(9).map((n) => [n, n + 1])); + expect(findRanges(0, 7.99).ranges).toStrictEqual(times(8).map((n) => [n, n + 1])); + }); + }); + + describe("#shortenNumber", () => { + test("should normally print small numbers", () => { + expect(shortenNumber(0)).toStrictEqual("0"); + expect(shortenNumber(1)).toStrictEqual("1"); + expect(shortenNumber(123)).toStrictEqual("123"); + expect(shortenNumber(1.23)).toStrictEqual("1.23"); + }); + + test("should work properly with small floats", () => { + expect(shortenNumber(0.0001)).toStrictEqual("0.0001"); + expect(shortenNumber(0.000123456)).toStrictEqual("0.000123"); + expect(shortenNumber(1.000123456)).toStrictEqual("1"); + expect(shortenNumber(1234.000123456)).toStrictEqual("1.2k"); + }); + + test("should work properly over 100", () => { + expect(shortenNumber(100)).toStrictEqual("100"); + expect(shortenNumber(1000)).toStrictEqual("1k"); + expect(shortenNumber(1234)).toStrictEqual("1.2k"); + expect(shortenNumber(12345)).toStrictEqual("12.3k"); + expect(shortenNumber(123456)).toStrictEqual("123.5k"); + expect(shortenNumber(1234567)).toStrictEqual("1.2m"); + }); + + test("should work properly with negative values", () => { + expect(shortenNumber(-1)).toStrictEqual("-1"); + expect(shortenNumber(-100)).toStrictEqual("-100"); + expect(shortenNumber(-1000)).toStrictEqual("-1k"); + expect(shortenNumber(-123)).toStrictEqual("-123"); + expect(shortenNumber(-1234)).toStrictEqual("-1.2k"); + expect(shortenNumber(-12345)).toStrictEqual("-12.3k"); + expect(shortenNumber(-123456)).toStrictEqual("-123.5k"); + expect(shortenNumber(-1234567)).toStrictEqual("-1.2m"); + expect(shortenNumber(-0.0001)).toStrictEqual("-0.0001"); + expect(shortenNumber(-0.000123456)).toStrictEqual("-0.000123"); + expect(shortenNumber(-1234.000123456)).toStrictEqual("-1.2k"); + }); + }); + + describe("#isNumber", () => { + test("should work with obvious cases", () => { + expect(isNumber(123)).toBe(true); + expect(isNumber(-123)).toBe(true); + expect(isNumber("123")).toBe(true); + expect(isNumber("-123")).toBe(true); + + expect(isNumber(false)).toBe(false); + expect(isNumber(null)).toBe(false); + expect(isNumber(undefined)).toBe(false); + expect(isNumber("abc")).toBe(false); + expect(isNumber({ abc: 123 })).toBe(false); + expect(isNumber([123])).toBe(false); + expect(isNumber(new Date())).toBe(false); + }); + + test("should properly handles strings that are not optimal numbers", () => { + expect(isNumber(" 123")).toBe(true); + expect(isNumber("123 ")).toBe(true); + expect(isNumber("123.00")).toBe(true); + expect(isNumber("000123")).toBe(true); + }); + }); +}); diff --git a/src/utils/number.ts b/src/utils/number.ts new file mode 100644 index 0000000..891d12f --- /dev/null +++ b/src/utils/number.ts @@ -0,0 +1,45 @@ +import { inRange, round } from "lodash"; + +export function findRanges(min: number, max: number): { unit: number; ranges: [number, number][] } { + if (max <= min) return { ranges: [[Math.min(min, max), Math.max(min, max)]], unit: Math.abs(max - min) }; + + const ranges: [number, number][] = []; + + const diff = max - min; + const digits = Math.floor(Math.log10(diff)) - 1; + const p = Math.pow(10, digits); + const unit = [0.1, 0.2, 0.5, 1, 2, 5, 10, 20, 50].map((n) => n * p).find((n) => inRange(diff / n, 5, 15)); + + if (!unit) return { ranges: [[min, max]], unit: max - min }; + + for (let i = Math.floor(min / unit); i <= max / unit; i++) { + ranges.push([round(i * unit, -digits), round((i + 1) * unit, -digits)]); + } + + return { unit, ranges }; +} + +export function shortenNumber(n: number): string { + if (n === 0) return "0"; + if (n < 0) return "-" + shortenNumber(-n); + + const suffixes = ["", "k", "m", "b", "t"]; + const suffixNum = Math.floor(Math.log10(n) / 3); + const shortValue = suffixNum ? +(n / Math.pow(1000, suffixNum)).toFixed(2) : n; + + return suffixes[suffixNum] + ? (shortValue % 1 ? shortValue.toFixed(1) : shortValue) + suffixes[suffixNum] + : n + .toPrecision(3) + .replace(/(?:(\.0+[^0]+)|(\.[^0\d]*))0+$/g, "$1") + .replace(/\.$/g, ""); +} + +export function isNumber(v: unknown): boolean { + if (typeof v === "number") return true; + if (typeof v === "string") { + return !isNaN(+v); + } + + return false; +} diff --git a/src/utils/string.test.ts b/src/utils/string.test.ts new file mode 100644 index 0000000..615d77a --- /dev/null +++ b/src/utils/string.test.ts @@ -0,0 +1,55 @@ +import { describe, expect, test } from "vitest"; + +import { minimize, normalize, slugify } from "./string"; + +describe("String utils", () => { + describe("#slugify", () => { + test("should replace characters that are not letters or digits by _s", () => { + expect(slugify("123abc456!*; lol")).toBe("123abc456_lol"); + }); + + test("should toggle to lower case", () => { + expect(slugify("LoreMIpSumdOLor")).toBe("loremipsumdolor"); + }); + + test("should clean accents", () => { + expect(slugify("pâté")).toBe("pate"); + }); + }); + + describe("#normalize", () => { + test("should not remove characters that are not letters", () => { + expect(normalize("123abc456!*; lol")).toBe("123abc456!*; lol"); + }); + + test("should toggle to lower case", () => { + expect(normalize("LoreMIpSumdOLor")).toBe("loremipsumdolor"); + }); + + test("should clean accents", () => { + expect(normalize("pâté")).toBe("pate"); + }); + }); + + describe("#minimize", () => { + test("should work with normal base case", () => { + expect(minimize(["john", "marius", "albert"].map(normalize))).toStrictEqual(["j", "m", "a"]); + }); + + test("should use two letters for similar words", () => { + expect(minimize(["john", "marius", "maxime"].map(normalize))).toStrictEqual(["j", "mr", "mx"]); + }); + + test("should use more than two letters when necessary", () => { + expect(minimize(["maxime", "marius", "marcellus"].map(normalize))).toStrictEqual(["mx", "mri", "mrc"]); + }); + + test("should use digits when letters don't differ enough", () => { + expect(minimize(["creme", "crème", "crémé"].map(normalize))).toStrictEqual(["c1", "c2", "c3"]); + }); + + test("should use additional letters AND digits when needed", () => { + expect(minimize(["cassis", "creme", "crème"].map(normalize))).toStrictEqual(["ca", "cr1", "cr2"]); + }); + }); +}); diff --git a/src/utils/string.ts b/src/utils/string.ts new file mode 100644 index 0000000..6e62ee3 --- /dev/null +++ b/src/utils/string.ts @@ -0,0 +1,58 @@ +import { forEach, groupBy, range, size } from "lodash"; + +/** + * Takes a string and returns a new string with only letters and strings, + * desaccentuated and lower-cased, and with other characters replaced by _s. + */ +export function slugify(string: string): string { + return string + .normalize("NFD") + .replace(/[\u0300-\u036f]/g, "") + .toLowerCase() + .replace(/[^a-z0-9]+/gi, "_"); +} + +/** + * Takes a string and returns a desaccentuated and lower-cased new string. + */ +export function normalize(string: string): string { + return string + .normalize("NFD") + .replace(/[\u0300-\u036f]/g, "") + .toLowerCase(); +} + +/** + * Takes an array of strings, and returns an array of those strings as minified + * as we could, taking the first letter, and adding letters as long as it's + * necessary (and digits in the end when words are too similar). + */ +function _minimize(strings: string[], __internal_nested__: boolean): string[] { + const minimized: Record = {}; + const indexedByFirstLetter = groupBy(range(strings.length), (index) => strings[index][0] || ""); + const injectLetter = !__internal_nested__ || size(indexedByFirstLetter) > 1; + + // Deal with characters with same first letter: + forEach(indexedByFirstLetter, (indices, firstLetter) => { + if (indices.length === 1) { + minimized[indices[0]] = firstLetter; + } else if (firstLetter) { + const superMinimized = _minimize( + indices.map((i) => strings[i].substring(1)), + true, + ); + indices.forEach((indexInStrings, indexInIndices) => { + minimized[indexInStrings] = (injectLetter ? firstLetter : "") + superMinimized[indexInIndices]; + }); + } else { + indices.forEach((indexInStrings, i) => { + minimized[indexInStrings] = i + 1 + ""; + }); + } + }); + + return strings.map((str, i) => minimized[i]); +} +export function minimize(strings: string[]): string[] { + return _minimize(strings, false); +} diff --git a/src/utils/threshold.test.ts b/src/utils/threshold.test.ts new file mode 100644 index 0000000..e5e5202 --- /dev/null +++ b/src/utils/threshold.test.ts @@ -0,0 +1,34 @@ +import { describe, expect, test } from "vitest"; + +import { MAX_LABEL_THRESHOLD, MIN_LABEL_THRESHOLD } from "../lib/consts"; +import { inputToStateThreshold, stateToInputThreshold } from "./threshold"; + +describe("Label thresholds translation utils", () => { + describe("#inputThresholdToStateThreshold", () => { + test("should work 'normally' with normal single values cases", () => { + expect(inputToStateThreshold(1)).toBe(6); + expect(inputToStateThreshold(2)).toBe(3); + expect(inputToStateThreshold(0.5)).toBe(12); + }); + + test("should work with extreme values", () => { + expect(inputToStateThreshold(MAX_LABEL_THRESHOLD)).toBe(0); + expect(inputToStateThreshold(MAX_LABEL_THRESHOLD + 0.001)).toBe(0); + expect(inputToStateThreshold(MIN_LABEL_THRESHOLD)).toBe(Infinity); + expect(inputToStateThreshold(MIN_LABEL_THRESHOLD - 0.001)).toBe(Infinity); + }); + }); + + describe("#stateThresholdToInputThreshold", () => { + test("should work 'normally' with normal single values cases", () => { + expect(stateToInputThreshold(6)).toBe(1); + expect(stateToInputThreshold(3)).toBe(2); + expect(stateToInputThreshold(12)).toBe(0.5); + }); + + test("should work with extreme values", () => { + expect(stateToInputThreshold(0)).toBe(MAX_LABEL_THRESHOLD); + expect(stateToInputThreshold(Infinity)).toBe(MIN_LABEL_THRESHOLD); + }); + }); +}); diff --git a/src/utils/threshold.ts b/src/utils/threshold.ts new file mode 100644 index 0000000..0fafdd7 --- /dev/null +++ b/src/utils/threshold.ts @@ -0,0 +1,13 @@ +import { MAX_LABEL_THRESHOLD, MIN_LABEL_THRESHOLD } from "../lib/consts"; + +export function stateToInputThreshold(v: number): number { + if (v === Infinity) return MIN_LABEL_THRESHOLD; + if (v === 0) return MAX_LABEL_THRESHOLD; + return 6 / v; +} + +export function inputToStateThreshold(v: number): number { + if (v <= MIN_LABEL_THRESHOLD) return Infinity; + if (v >= MAX_LABEL_THRESHOLD) return 0; + return 6 / v; +} diff --git a/src/utils/url.test.ts b/src/utils/url.test.ts new file mode 100644 index 0000000..4266fce --- /dev/null +++ b/src/utils/url.test.ts @@ -0,0 +1,53 @@ +import { describe, expect, test } from "vitest"; + +import { buildURLSearchParams, queryStringToRecord, urlSearchParamsToString } from "./url"; + +describe("URL utils", () => { + describe("#buildURLSearchParams", () => { + test("should work 'normally' with normal single values cases", () => { + const data = { a: "abc", b: "def" }; + expect(buildURLSearchParams(data).toString()).toStrictEqual(new URLSearchParams(data).toString()); + }); + + test("should encode arrays using [] suffix", () => { + const data = { a: "abc", b: ["def", "ghi"] }; + const params = buildURLSearchParams(data); + expect([...params.getAll("a")]).toStrictEqual(["abc"]); + expect([...params.getAll("b")]).toStrictEqual(["def", "ghi"]); + }); + }); + + describe("#urlSearchParamsToString", () => { + test("should work 'normally' with normal single values cases", () => { + const params = new URLSearchParams(); + params.append("a", "abc"); + params.append("b", "def"); + expect(urlSearchParamsToString(params)).toBe(params.toString()); + }); + + test("should detect arrays", () => { + const params = new URLSearchParams(); + params.append("a", "abc"); + params.append("b", "def"); + params.append("b", "ghi"); + expect(urlSearchParamsToString(params)).toStrictEqual("a=abc&b[]=def&b[]=ghi"); + }); + }); + + describe("#queryStringToRecord", () => { + test("should work 'normally' with normal single values cases", () => { + expect(queryStringToRecord("a=abc&b=def")).toStrictEqual({ a: "abc", b: "def" }); + }); + + test("should detect arrays", () => { + expect(queryStringToRecord("a=abc&b[]=def&b[]=ghi")).toStrictEqual({ a: "abc", b: ["def", "ghi"] }); + }); + + test("should be flexible about the `[]` suffix", () => { + expect(queryStringToRecord("a=abc")).toStrictEqual({ a: "abc" }); + expect(queryStringToRecord("a[]=abc")).toStrictEqual({ a: "abc" }); + expect(queryStringToRecord("a=abc&a=def")).toStrictEqual({ a: ["abc", "def"] }); + expect(queryStringToRecord("a[]=abc&a[]=def")).toStrictEqual({ a: ["abc", "def"] }); + }); + }); +}); diff --git a/src/utils/url.ts b/src/utils/url.ts new file mode 100644 index 0000000..506f40f --- /dev/null +++ b/src/utils/url.ts @@ -0,0 +1,96 @@ +import { forEach } from "lodash"; + +/** + * Takes a URLSearchParams, and returns a valid query URL that handles keys with + * multiple values with the `"[]"` suffix, when URLSearchParams#toString does + * not. + * + * @example + * const params = new URLSearchParams(); + * params.append('age', '123'); + * params.append('hobby', 'soccer'); + * params.append('hobby', 'cooking'); + * + * console.log(params.toString()); + * // "age=123&hobby=soccer&hobby=cooking" + * + * console.log(urlSearchParamsToString(params)); + * // "age=123&hobby[]=soccer&hobby[]=cooking" + */ +export function urlSearchParamsToString(params: URLSearchParams): string { + const pairs = []; + const searchedKeys = new Set(); + + for (const key of params.keys()) { + if (searchedKeys.has(key)) continue; + searchedKeys.add(key); + + const values = params.getAll(key); + + if (values.length === 1) { + pairs.push([key, values[0]].map((s) => encodeURIComponent(s)).join("=")); + } else { + const fullKey = encodeURIComponent(key) + "[]"; + values.forEach((s) => pairs.push(`${fullKey}=${encodeURIComponent(s)}`)); + } + } + + return pairs.join("&"); +} + +/** + * Takes a record with strings or string arrays as values, and returns a new + * URLSearchParams instance that has all values for array values. + * + * @example + * const data = { hobby: ['soccer', 'cooking'] }; + * console.log(buildURLSearchParams(data).getAll('hobby')); + * // ['soccer', 'cooking'] + */ +export function buildURLSearchParams(data: Record): URLSearchParams { + const params = new URLSearchParams(); + + forEach(data, (value, key) => { + if (Array.isArray(value)) { + value.forEach((v) => { + params.append(key, v); + }); + } else { + params.append(key, value); + } + }); + + return params; +} + +/** + * Takes a query string and returns a properly parsed record, that handles array + * values with the `"[]"` prefix. + * + * @example + * const data = queryStringToRecord("age=123&hobby[]=soccer&hobby[]=cooking"); + * + * console.log(data.age); + * // "123" + * console.log(data.hobby); + * // ["soccer", "cooking"] + * console.log(data["hobby[]"]); + * // undefined + */ +export function queryStringToRecord(query: string): Record { + const params = new URLSearchParams(query); + + const data: Record = {}; + const searchedKeys = new Set(); + + for (const key of params.keys()) { + if (searchedKeys.has(key)) continue; + searchedKeys.add(key); + + const values = params.getAll(key); + + if (values.length) data[key.replace(/\[]$/, "")] = values.length === 1 ? values[0] : [...values]; + } + + return data; +} diff --git a/src/utils/useBlocker.ts b/src/utils/useBlocker.ts new file mode 100644 index 0000000..ef6cf9e --- /dev/null +++ b/src/utils/useBlocker.ts @@ -0,0 +1,33 @@ +/** + * React-router v6 lost a very interesting feature, which can block transitions from happening, for instance when a form + * is not confirmed. A ticket is opened to restore this feature (https://github.com/remix-run/react-router/issues/8139) + * and @rmorse wrote a fallback Gist here: https://gist.github.com/rmorse/426ffcc579922a82749934826fa9f743 + * This file is that fallback, but properly typed for TypeScript: + */ +import type { History, Transition } from "history"; +import { useContext, useEffect } from "react"; +import { UNSAFE_NavigationContext as NavigationContext } from "react-router-dom"; + +export declare type Navigator = Pick; + +export function useBlocker(blocker: (tx: Transition) => void, when = true) { + const navigator = useContext(NavigationContext).navigator as Navigator; + + useEffect(() => { + if (!when) return; + + const unblock = navigator.block((tx) => { + const autoUnblockingTx = { + ...tx, + retry() { + unblock(); + tx.retry(); + }, + }; + + blocker(autoUnblockingTx); + }); + + return unblock; + }, [navigator, blocker, when]); +} diff --git a/src/utils/useQueryParam.ts b/src/utils/useQueryParam.ts new file mode 100644 index 0000000..94eeb35 --- /dev/null +++ b/src/utils/useQueryParam.ts @@ -0,0 +1,71 @@ +import { useNavigate } from "react-router-dom"; + +type SetterInputFunction = (prev: Z) => Z; + +export function getQuery(): string { + return window.location.hash.replace(/^.*\?/, ""); +} + +function getQueryParams(): URLSearchParams { + const hash = window.location.hash; + if (hash.includes("?")) return new URLSearchParams(getQuery()); + return new URLSearchParams(); +} + +/** + * Hook to manage a variable in the url. + * + * @param key {string} Name of the variable + * @param defaultValue {string} The default / initial value of the attribute (not set in the url) + * @param read {function} A function to get the state value from the query value + * @param write {function} A function to get the query value from the state value + */ +export function useQueryParam( + key: string, + defaultValue: T, + read?: (queryValue: string | null) => T, + write?: (stateValue: T) => string | null, +): [T, (value: T | SetterInputFunction, replace?: boolean) => void] { + const navigate = useNavigate(); + + /** + * Retrieve the value of the given parameter. + */ + function getQueryParam(key: string): T { + const urlQueryParams = getQueryParams(); + const value = urlQueryParams.get(key); + + if (value === null) { + return defaultValue; + } + if (read) { + return read(value); + } + return value as unknown as T; + } + + /** + * Given a parameter, it returns the setter for it. + */ + function getSetQueryParam(key: string): (value: T | SetterInputFunction) => void { + return (value: T | SetterInputFunction, replace?: boolean): void => { + const urlQueryParams = getQueryParams(); + const prevValue = getQueryParam(key); + const newValue = typeof value === "function" ? (value as SetterInputFunction)(prevValue) : value; + + if (newValue !== prevValue) { + if (newValue !== defaultValue) { + const cleanedNewValue = write ? write(newValue) : newValue; + if (cleanedNewValue) urlQueryParams.set(key, cleanedNewValue + ""); + else urlQueryParams.delete(key); + } else { + urlQueryParams.delete(key); + } + + navigate({ search: `?${urlQueryParams.toString()}` }, { replace }); + } + }; + } + + return [getQueryParam(key), getSetQueryParam(key)]; +} diff --git a/src/utils/useTimeout.ts b/src/utils/useTimeout.ts new file mode 100644 index 0000000..04890ed --- /dev/null +++ b/src/utils/useTimeout.ts @@ -0,0 +1,36 @@ +import { useCallback, useEffect, useRef } from "react"; + +function isTimeoutValid(timeout: number): boolean { + return !isNaN(timeout) && timeout >= 0 && timeout !== Infinity; +} + +/** + * React hook for delaying calls with time. + * returns callback to use for cancelling + */ +export const useTimeout = ( + callback: () => void, + timeout: number = 0, +): { cancel: () => void; reschedule: () => void } => { + const timeoutIdRef = useRef(null); + + const cancel = useCallback(() => { + const timeoutId = timeoutIdRef.current; + if (timeoutId) { + timeoutIdRef.current = null; + clearTimeout(timeoutId); + } + }, [timeoutIdRef]); + + const reschedule = useCallback(() => { + cancel(); + timeoutIdRef.current = isTimeoutValid(timeout) ? window.setTimeout(callback, timeout) : null; + }, [callback, timeout, cancel]); + + useEffect(() => { + timeoutIdRef.current = isTimeoutValid(timeout) ? window.setTimeout(callback, timeout) : null; + return cancel; + }, [callback, timeout, cancel]); + + return { cancel, reschedule }; +}; diff --git a/src/views/ContextPanel.tsx b/src/views/ContextPanel.tsx new file mode 100644 index 0000000..64a4e5b --- /dev/null +++ b/src/views/ContextPanel.tsx @@ -0,0 +1,94 @@ +import cx from "classnames"; +import React, { FC, JSX, useContext, useMemo } from "react"; +import { BsShare } from "react-icons/bs"; +import { FaHome } from "react-icons/fa"; +import { MdOutlinePreview } from "react-icons/md"; +import { VscSettings } from "react-icons/vsc"; +import { Link } from "react-router-dom"; + +import Footer from "../components/Footer"; +import { GraphContext } from "../lib/context"; +import Filters from "./Filters"; +import GraphSumUp from "./GraphSumUp"; +import NodesAppearanceBlock from "./NodesAppearanceBlock"; +import ReadabilityBlock from "./ReadabilityBlock"; +import SelectedNodePanel from "./SelectedNodePanel"; + +const ContextPanel: FC = () => { + const { navState, embedMode, data, panel, setPanel, openModal } = useContext(GraphContext); + + const selectedNode = useMemo( + () => + navState?.selectedNode && data?.graph.hasNode(navState.selectedNode) + ? data.graph.getNodeAttributes(navState.selectedNode) + : null, + [data?.graph, navState?.selectedNode], + ); + + let content: JSX.Element; + if (panel === "readability") { + content = ; + } else if (selectedNode) { + content = ; + } else { + content = ( + <> + + + + + ); + } + + const selectedButtonClass = "btn-dark opacity-100"; + + return ( +
+
+
+ + + + + + {!embedMode && ( + + )} + + + + +
+
+ +
+
{content}
+ +
+
+
+
+
+
+ ); +}; + +export default ContextPanel; diff --git a/src/views/EditionPanel.tsx b/src/views/EditionPanel.tsx new file mode 100644 index 0000000..58929a1 --- /dev/null +++ b/src/views/EditionPanel.tsx @@ -0,0 +1,339 @@ +import cx from "classnames"; +import { keyBy, pull, uniqBy } from "lodash"; +import React, { FC, JSX, useContext, useMemo } from "react"; +import { BiSolidNetworkChart } from "react-icons/bi"; +import { BsPaletteFill, BsShare } from "react-icons/bs"; +import { FaTimes } from "react-icons/fa"; +import { MdBubbleChart } from "react-icons/md"; +import { RiFilterFill } from "react-icons/ri"; +import { VscSettings } from "react-icons/vsc"; +import Select from "react-select"; + +import { DEFAULT_SELECT_PROPS } from "../lib/consts"; +import { GraphContext } from "../lib/context"; +import { + DEFAULT_EDGE_COLORING, + DEFAULT_EDGE_DIRECTION, + EDGE_COLORING_MODES, + EDGE_DIRECTION_MODES, + EdgeColoring, + EdgeDirection, + NavState, +} from "../lib/navState"; + +const EDGE_COLORING_LABELS: Record = { + s:
Use source node color
, + t:
Use target node color
, + o:
Use original color
, + c: ( +
+ Color all edges as grey +
+ (can be useful to keep the user focus on nodes) +
+
+ ), +}; + +const EDGE_DIRECTION_LABELS: Record = { + o:
Trust the original graph file
, + d: ( +
+ All edges should be treated as directed +
+ ), + u: ( +
+ All edges should be treated as undirected +
+ ), +}; + +interface Option { + value: string; + label: string; + field?: string; +} + +const EditionPanel: FC<{ isExpanded: boolean }> = ({ isExpanded }) => { + const { navState, data, setNavState, openModal, setPanel } = useContext(GraphContext); + const { fields, fieldsIndex } = data; + const { filterable, colorable, sizeable, subtitleFields } = navState; + + const edgeColoring = navState.edgeColoring || DEFAULT_EDGE_COLORING; + const edgeDirection = navState.edgeDirection || DEFAULT_EDGE_DIRECTION; + + const sizeableSet = new Set(sizeable); + const colorableSet = new Set(colorable); + const filterableSet = new Set(filterable); + + const sets: Record> = { + sizeable: sizeableSet, + colorable: colorableSet, + filterable: filterableSet, + }; + + const subtitleOptions: Option[] = useMemo( + () => + uniqBy( + fields.map((key) => { + const field = fieldsIndex[key]; + return { + value: `${key}-field`, + label: field.label, + field: key, + }; + }), + ({ field }) => fieldsIndex[field].rawFieldId, + ), + [fields, fieldsIndex], + ); + const optionsIndex = keyBy(subtitleOptions, "field"); + const selectedOptions = (subtitleFields || []).map((f) => optionsIndex[f]); + + return ( +
+
+
+
+ + +

+ Retina logo{" "} + Welcome to Retina +

+ +

+ Before sharing your graph online, you can first select various options on how users will{" "} + read and interrogate this graph. +

+

+ Once you're done, simply close this panel. You will be able to access this form again later, from the{" "} + {" "} + panel. +

+ {!navState.local && ( +

+ PS: This panel is only here to help you configure Retina. Unless you specifically want it to be, it will + not be visible to the users you share your graph with, if you click the{" "} + {" "} + button to share or embed this graph. +

+ )} + +
+ +
+ +
+

Which fields should be actionable?

+ + + + + + + + + + + + {fields.map((f) => { + const field = fieldsIndex[f]; + + return ( + + {["filterable", "colorable", "sizeable"].map((key) => { + const colorOrSize = sizeableSet.has(f) || colorableSet.has(f); + const disabled = + (key === "filterable" && colorOrSize) || + (key === "sizeable" && field.type !== "quanti") || + (key === "colorable" && field.type !== "quali" && field.type !== "quanti"); + const checked = sets[key].has(f) || (key === "filterable" && colorOrSize); + const keyToUpdate = { + sizeable: "size", + colorable: "color", + }[key]; + + return ( + + ); + })} + + + ); + })} + + + ); + })} + + + +
+ + Filter + + + + Colors + + + + Sizes + + +
+ + setNavState({ + ...navState, + [key]: e.target.checked + ? ((navState as any)[key] || []).concat(f) + : pull((navState as any)[key] || [], f), + ...(e.target.checked && keyToUpdate ? { [keyToUpdate]: f } : {}), + }) + } + /> + + {field.label} + {field.typeLabel &&
{field.typeLabel}
} +
+ {["colorable", "sizeable"].map((key) => { + const keyToUpdate = ( + { + sizeable: "disableDefaultSize", + colorable: "disableDefaultColor", + } as Record + )[key]; + const disabled = ((navState as any)[key] || []).length < 1; + const checked = !navState[keyToUpdate]; + + return ( + + setNavState({ ...navState, [keyToUpdate]: !e.target.checked })} + /> + Allow using default graph file colors and/or sizes
+
+ +
+ + setValue(e.target.value)} + /> + + ); +}; + +const TermsFilterComponent: FC<{ + field: QualiField; + data: TermsMetric; + filter?: TermsFilter | undefined; + setFilter: (filter: TermsFilter | null) => void; + getColor?: ((value: any) => string) | null; + editable: boolean; +}> = ({ field, data, filter, setFilter, getColor, editable }) => { + const { data: graphData, setHovered } = useContext(GraphContext); + const [alphaSort, setAlphaSort] = useState(false); + const [expanded, setExpanded] = useState(false); + const maxCount = max(data.values.map((v) => v.globalCount)) as number; + const filteredValues = filter?.values ? new Set(filter.values) : null; + + const showExpandToggle = data.values.length > MAX_PALETTE_SIZE; + const values = useMemo( + () => + take( + alphaSort ? sortBy(data.values, (value) => value.label.toLowerCase()) : data.values, + showExpandToggle && !expanded ? MAX_PALETTE_SIZE : Infinity, + ), + [showExpandToggle, expanded, alphaSort, data.values], + ); + + return ( + <> +
+ +
+
    + {values.map((v) => { + const id = `terms-filters-${field.id}-${v.id}`; + const state = !filteredValues ? "idle" : filteredValues.has(v.id) ? "checked" : "unchecked"; + + return ( +
  • { + if (!editable) return; + + const checkedValues = filter ? filter.values : data.values.map((v) => v.id); + const newValues = + state === "idle" + ? [v.id] + : state === "unchecked" + ? checkedValues.concat(v.id) + : checkedValues.filter((s) => s !== v.id); + + if (newValues.length) { + setFilter({ + field: field.id, + type: "terms", + values: newValues, + }); + } else { + setFilter(null); + } + }} + onMouseEnter={() => { + setHovered( + new Set(graphData.graph.filterNodes((node, nodeData) => getValue(nodeData, field) === v.id)), + ); + }} + onMouseLeave={() => { + setHovered(undefined); + }} + > +
    + {state === "idle" ? ( + + ) : state === "checked" ? ( + + ) : ( + + )} + + {v.label}{" "} + {v.filteredCount > 0 && ( + + ({v.filteredCount} node{v.filteredCount > 1 ? "s" : ""}) + + )} + +
    +
    +
    +
    +
    +
  • + ); + })} +
+ {showExpandToggle && ( + + )} + + ); +}; + +const RangeFilterComponent: FC<{ + field: QuantiField; + data: RangeMetric; + filter?: RangeFilter | undefined; + setFilter: (filter: RangeFilter | null) => void; + getColor?: ((value: any) => string) | null; + editable: boolean; +}> = ({ field, data, filter, setFilter, getColor, editable }) => { + const { ranges, unit } = data; + const absMin = first(ranges)!.min; + const absMax = last(ranges)!.max; + const currentMin = typeof filter?.min === "number" ? filter.min : absMin; + const currentMax = typeof filter?.max === "number" ? filter.max : absMax; + const maxCount = Math.max(...ranges.map((r) => r.globalCount)); + const marks: SliderProps["marks"] = mapValues( + keyBy(uniq(ranges.flatMap((r) => [r.min, r.max]).concat([currentMin, currentMax]))), + (v) => + v === currentMin || v === currentMax + ? { + label: shortenNumber(v), + style: { fontWeight: "bold", background: "white", padding: "0 0.2em", zIndex: 1 }, + } + : shortenNumber(v), + ); + const [inputValues, setInputValues] = useState<{ min: number; max: number }>({ min: currentMin, max: currentMax }); + + useEffect(() => { + setInputValues({ min: currentMin, max: currentMax }); + }, [currentMin, currentMax]); + + const updateFilter = ([min, max]: number[]) => { + const newMin = min <= absMin ? undefined : min; + const newMax = max >= absMax ? undefined : max; + + if (!isNumber(newMin) && !isNumber(newMax)) { + setFilter(null); + } else { + const newFilter: RangeFilter = { + field: field.id, + type: "range", + }; + if (isNumber(newMin)) newFilter.min = newMin; + if (isNumber(newMax)) newFilter.max = newMax; + + setFilter(newFilter); + } + }; + + return ( +
+
    + {ranges.map((range) => { + const filteredHeight = (range.filteredCount / maxCount) * 100; + const isLabelInside = filteredHeight > 90; + const bgColor = getColor ? getColor(mean([range.min, range.max])) : "#343a40"; + const fontColor = getFontColor(bgColor); + + return ( +
    +
    +
    + {!!range.filteredCount && ( + + {shortenNumber(range.filteredCount)} + + )} +
    +
    + ); + })} +
+ + + + {editable && ( +
{ + e.preventDefault(); + updateFilter([inputValues.min, inputValues.max]); + }} + > + + Filter from{" "} + setInputValues((o) => ({ ...o, min: +e.target.value }))} + />{" "} + to{" "} + setInputValues((o) => ({ ...o, max: +e.target.value }))} + /> + + +
+ )} +
+ ); +}; + +const FilterWrapper: FC<{ + title: string; + subtitle?: string; + clearFilter?: () => void; + isColorField?: boolean; + isSizeField?: boolean; + children?: React.ReactNode; +}> = ({ title, subtitle, clearFilter, children, isColorField, isSizeField }) => { + const [expanded, setExpanded] = useState(!!isColorField || !!clearFilter); + + return ( +
+

+
+ {isColorField && } + {isSizeField && } +
+ {title} {subtitle &&
{subtitle}
} +
+
+ + + +

+ + + {children} + +
+ ); +}; + +const Filters: FC = () => { + const { navState, data, computedData, setNavState } = useContext(GraphContext); + const editable = navState.role !== "v"; + + const setFilters = useCallback( + (filters: Filter[] | null) => setNavState({ ...navState, filters: filters || undefined }), + [navState, setNavState], + ); + + const { getColor } = computedData; + const { filters, nodeColorField, nodeSizeField } = navState; + const filtersIndex = keyBy(filters || [], "field"); + + const allFilterable = getFilterableFields(data, navState); + + const cleanAndSetFilters = (field: string, filter: Filter | null) => { + const newFilters = filter + ? (filters || []).filter((f) => f.field !== field).concat(filter) + : (filters || []).filter((f) => f.field !== field); + + setFilters(newFilters.length ? newFilters : null); + }; + + if (!allFilterable.length) return null; + + return ( +
+ {allFilterable.map((field) => { + const metric = computedData.metrics[field.id]; + + if (!metric || !field) return null; + + switch (field.type) { + case "quanti": + return ( + cleanAndSetFilters(field.id, null) : undefined} + isColorField={field.id === nodeColorField} + isSizeField={field.id === nodeSizeField} + > + cleanAndSetFilters(field.id, filter)} + getColor={field.id === nodeColorField ? getColor : null} + editable={editable} + /> + + ); + case "quali": + return ( + cleanAndSetFilters(field.id, null) : undefined} + isColorField={field.id === nodeColorField} + isSizeField={field.id === nodeSizeField} + > + cleanAndSetFilters(field.id, filter)} + getColor={field.id === nodeColorField ? getColor : null} + editable={editable} + /> + + ); + case "content": + default: + return editable ? ( + cleanAndSetFilters(field.id, null) : undefined} + isColorField={field.id === nodeColorField} + isSizeField={field.id === nodeSizeField} + > + cleanAndSetFilters(field.id, filter)} + /> + + ) : null; + } + })} +
+ ); +}; + +export default Filters; diff --git a/src/views/GraphAppearance.tsx b/src/views/GraphAppearance.tsx new file mode 100644 index 0000000..19b216a --- /dev/null +++ b/src/views/GraphAppearance.tsx @@ -0,0 +1,95 @@ +import { useSigma } from "@react-sigma/core"; +import React, { FC, useContext, useEffect, useState } from "react"; +import { DEFAULT_SETTINGS } from "sigma/settings"; + +import { LoaderFill } from "../components/Loader"; +import { DEFAULT_LABEL_THRESHOLD } from "../lib/consts"; +import { GraphContext } from "../lib/context"; +import { + applyEdgeColors, + applyEdgeDirections, + applyEdgeSizes, + applyNodeColors, + applyNodeLabelSizes, + applyNodeSizes, + applyNodeSubtitles, + getReducers, +} from "../lib/graph"; +import drawLabel, { drawHover } from "../utils/canvas"; +import { inputToStateThreshold } from "../utils/threshold"; + +const GraphAppearance: FC = () => { + const { data, navState, computedData, setSigma, hovered } = useContext(GraphContext); + const { + nodeSizeField, + minLabelSize, + maxLabelSize, + subtitleFields, + nodeSizeRatio, + edgeSizeRatio, + edgeColoring, + edgeDirection, + } = navState; + const labelThreshold = inputToStateThreshold(navState.labelThresholdRatio || DEFAULT_LABEL_THRESHOLD); + const { nodeColors, nodeSizes, edgeSizes, nodeSizeExtents } = computedData; + const sigma = useSigma(); + + const [isRendered, setIsRendered] = useState(false); + + useEffect(() => { + setSigma(sigma); + sigma.setSetting("defaultDrawNodeLabel", (context, data, settings) => + drawLabel(context, { ...sigma.getNodeDisplayData(data.key), ...data }, settings), + ); + sigma.setSetting("defaultDrawNodeHover", (context, data, settings) => + drawHover(context, { ...sigma.getNodeDisplayData(data.key), ...data }, settings), + ); + + return () => setSigma(undefined); + }, [sigma, setSigma]); + + useEffect(() => { + const { node, edge } = getReducers(data, navState, computedData, hovered); + sigma.setSetting("nodeReducer", node); + sigma.setSetting("edgeReducer", edge); + setIsRendered(true); + }, [data, navState, computedData, hovered, sigma]); + + useEffect(() => { + const labelDensity = labelThreshold === 0 ? Infinity : DEFAULT_SETTINGS.labelDensity; + sigma.setSetting("labelRenderedSizeThreshold", labelThreshold); + sigma.setSetting("labelDensity", labelDensity); + }, [labelThreshold, sigma]); + + useEffect(() => { + applyNodeColors(data, { nodeColors }); + }, [sigma, data, nodeColors]); + + useEffect(() => { + applyNodeSizes(data, { nodeSizes }, { nodeSizeRatio }); + }, [sigma, data, nodeSizeRatio, nodeSizes]); + + useEffect(() => { + applyNodeLabelSizes(data, { nodeSizeExtents }, { nodeSizeField, minLabelSize, maxLabelSize }); + }, [sigma, data, nodeSizeField, minLabelSize, maxLabelSize, nodeSizeExtents]); + + useEffect(() => { + applyNodeSubtitles(data, { subtitleFields }); + }, [sigma, data, subtitleFields]); + + useEffect(() => { + applyEdgeColors(data, { nodeColors }, { edgeColoring }); + }, [sigma, data, nodeColors, edgeColoring]); + + useEffect(() => { + applyEdgeDirections(data, { edgeDirection }); + }, [sigma, data, edgeDirection]); + + useEffect(() => { + applyEdgeSizes(data, { edgeSizes }, { edgeSizeRatio }); + }, [sigma, data, edgeSizes, edgeSizeRatio]); + + return isRendered ? null : ; +}; + +export default GraphAppearance; diff --git a/src/views/GraphControls.tsx b/src/views/GraphControls.tsx new file mode 100644 index 0000000..844f563 --- /dev/null +++ b/src/views/GraphControls.tsx @@ -0,0 +1,224 @@ +import { useSigma } from "@react-sigma/core"; +import { downloadAsPNG } from "@sigma/export-image"; +import cx from "classnames"; +import { keyBy, take } from "lodash"; +import React, { FC, useCallback, useContext, useEffect, useMemo, useState } from "react"; +import { BiRadioCircleMarked } from "react-icons/bi"; +import { BsSearch, BsZoomIn, BsZoomOut } from "react-icons/bs"; +import { FaFileImage } from "react-icons/fa"; +import { OptionProps } from "react-select"; +import AsyncSelect from "react-select/async"; +import { Coordinates } from "sigma/types"; + +import Node from "../components/Node"; +import { ANIMATION_DURATION, DEFAULT_SELECT_PROPS, MAX_OPTIONS, RETINA_FIELD_PREFIX } from "../lib/consts"; +import { AppContext, GraphContext } from "../lib/context"; +import { NodeData } from "../lib/data"; +import { normalize, slugify } from "../utils/string"; +import GraphFullScreenControl from "./GraphFullScreenControl"; + +const TYPE_NODE = "node" as const; +const TYPE_MESSAGE = "message" as const; + +interface NodeOption { + type: typeof TYPE_NODE; + value: string; + label: string; + node: NodeData; +} +interface MessageOption { + type: typeof TYPE_MESSAGE; + value: string; + label: string; + isDisabled: true; +} +type Option = NodeOption | MessageOption; + +function cropOptions(options: Option[]): Option[] { + const moreOptionsCount = options.length - MAX_OPTIONS; + return moreOptionsCount > 1 + ? take(options, MAX_OPTIONS).concat({ + type: TYPE_MESSAGE, + value: RETINA_FIELD_PREFIX + "more-values", + label: `...and ${moreOptionsCount > 1 ? moreOptionsCount + " more nodes" : "one more node"}`, + isDisabled: true, + }) + : options; +} + +function doesMatch(normalizedQuery: string, searchableNormalizedStrings: string[]): boolean { + return searchableNormalizedStrings.some((str) => str.includes(normalizedQuery)); +} + +const OptionComponent = ({ data, innerProps, className, isFocused }: OptionProps) => { + return ( +
+ {data.type === TYPE_NODE && ( + + )} + {data.type === TYPE_MESSAGE &&
{data.label}
} +
+ ); +}; + +const IndicatorComponent = () => { + return ( +
+ +
+ ); +}; + +const GraphSearch: FC = () => { + const sigma = useSigma(); + const { portalTarget } = useContext(AppContext); + const { + setNavState, + navState, + data, + computedData: { filteredNodes }, + } = useContext(GraphContext); + const [nodesIndex, setNodesIndex] = useState>({}); + + // Index nodes on mount: + useEffect(() => { + setNodesIndex( + data.graph.reduceNodes( + (iter, node, attributes) => ({ + ...iter, + [node]: [normalize(node), normalize(attributes.label)], + }), + {}, + ), + ); + }, [data.graph]); + + const options: Option[] = useMemo( + () => + data.graph + .mapNodes((node, attributes) => { + return { + type: TYPE_NODE, + value: node, + label: attributes.label, + node: attributes, + }; + }) + .filter((n) => !filteredNodes || filteredNodes.has(n.value)), + [data.graph, filteredNodes], + ); + const firstOptions = useMemo(() => cropOptions(options), [options]); + const optionsSet = keyBy(options, "value"); + const selectNode = useCallback( + (option: Option | null) => { + if (!option) { + setNavState({ ...navState, selectedNode: undefined }); + } else { + setNavState({ ...navState, selectedNode: option.value }); + const nodePosition = sigma.getNodeDisplayData(option.value) as Coordinates; + sigma.getCamera().animate( + { ...nodePosition, ratio: 0.5 }, + { + duration: ANIMATION_DURATION, + }, + ); + } + }, + [navState, setNavState, sigma], + ); + const filterOptions = useCallback( + (query: string, callback: (options: Option[]) => void) => { + const normalizedQuery = normalize(query); + callback( + cropOptions( + options.filter( + (option) => option.type === TYPE_NODE && doesMatch(normalizedQuery, nodesIndex[option.value] || []), + ), + ), + ); + }, + [nodesIndex, options], + ); + + return ( + + {...DEFAULT_SELECT_PROPS} + isClearable + menuPortalTarget={portalTarget} + className="mb-2" + placeholder="Search for nodes..." + defaultOptions={firstOptions} + loadOptions={filterOptions} + value={navState.selectedNode ? optionsSet[navState.selectedNode] || null : null} + onChange={(option: Option | null) => selectNode(option?.type === TYPE_NODE ? option : null)} + components={{ + Option: OptionComponent, + DropdownIndicator: IndicatorComponent, + }} + styles={{ + control: (styles) => { + return { + ...styles, + width: "200px", + }; + }, + }} + /> + ); +}; + +const GraphControls: FC = () => { + const sigma = useSigma(); + const graph = sigma.getGraph(); + + const zoom = useCallback( + (ratio?: number): void => { + if (sigma) { + if (!ratio) { + sigma.getCamera().animatedReset({ duration: ANIMATION_DURATION }); + } else if (ratio > 0) { + sigma.getCamera().animatedZoom({ duration: ANIMATION_DURATION, factor: 1.5 }); + } else if (ratio < 0) { + sigma.getCamera().animatedUnzoom({ duration: ANIMATION_DURATION, factor: 1.5 }); + } + } + }, + [sigma], + ); + + const downloadImage = useCallback(() => { + const slug = slugify(graph.getAttribute("title") || "graph"); + downloadAsPNG(sigma, { + fileName: slug, + backgroundColor: "white", + }); + }, [graph, sigma]); + + return ( + <> + + + + + + + + + + + ); +}; + +export default GraphControls; diff --git a/src/views/GraphFullScreenControl.tsx b/src/views/GraphFullScreenControl.tsx new file mode 100644 index 0000000..2cc642f --- /dev/null +++ b/src/views/GraphFullScreenControl.tsx @@ -0,0 +1,43 @@ +import React, { FC, useCallback, useContext, useEffect, useState } from "react"; +import { BsArrowsFullscreen, BsFullscreenExit } from "react-icons/bs"; + +import { GraphContext } from "../lib/context"; + +function toggleFullScreen(dom: HTMLElement) { + if (!document.fullscreenEnabled) return; + + if (document.fullscreenElement !== dom) { + dom.requestFullscreen(); + } else { + document.exitFullscreen(); + } +} + +const GraphFullScreenControl: FC = () => { + const { root } = useContext(GraphContext); + + const [isFullScreen, setFullScreen] = useState(false); + const refreshState = useCallback(() => { + const isFullScreen = !!root && document.fullscreenElement === root; + setFullScreen(isFullScreen); + }, [root]); + + useEffect(() => { + document.addEventListener("fullscreenchange", refreshState); + return () => document.removeEventListener("fullscreenchange", refreshState); + }, [refreshState]); + + if (!document.fullscreenEnabled) return null; + + return ( + + ); +}; + +export default GraphFullScreenControl; diff --git a/src/views/GraphSumUp.tsx b/src/views/GraphSumUp.tsx new file mode 100644 index 0000000..714a52d --- /dev/null +++ b/src/views/GraphSumUp.tsx @@ -0,0 +1,105 @@ +import { map, startCase } from "lodash"; +import React, { FC, useCallback, useContext, useMemo } from "react"; +import { BiNetworkChart } from "react-icons/bi"; +import { FaFileDownload } from "react-icons/fa"; +import { MdOutlineOpenInNew } from "react-icons/md"; +import { RiFilterOffFill } from "react-icons/ri"; +import Linkify from "react-linkify"; + +import { DEFAULT_LINKIFY_PROPS } from "../lib/consts"; +import { GraphContext } from "../lib/context"; +import { Data } from "../lib/data"; +import { cleanNavState, navStateToQueryURL } from "../lib/navState"; +import { saveFileFromURL } from "../utils/file"; + +const GraphSumUp: FC = () => { + const { origin, pathname } = window.location; + const { embedMode, navState, data, computedData, setNavState } = useContext(GraphContext); + + const { graph } = data; + const attributes = useMemo(() => graph.getAttributes(), [graph]); + const { filteredNodes, filteredEdges } = computedData; + + const nodesTotal = graph.order; + const edgesTotal = graph.size; + const nodesVisible = filteredNodes ? filteredNodes.size : nodesTotal; + const edgesVisible = filteredEdges ? filteredEdges.size : edgesTotal; + const hasFilter = nodesVisible < nodesTotal; + + const downloadData = useCallback(() => { + const url = navState.url || ""; + saveFileFromURL(url, url.replace(/(^.*[\\/]|[?#].*$)/g, "")); + }, [navState.url]); + + const graphURL = useMemo(() => { + return origin + pathname + `#/graph?` + navStateToQueryURL(cleanNavState(navState, data as Data)); + }, [data, navState, origin, pathname]); + + return ( +
+

+ Graph overview +

+ +
+ + {navState.showGraphMeta && ( + <> + {map(attributes, (value, key) => ( +

+ {startCase(key)}:{" "} + + {value} + +

+ ))} + +
+ + )} + +

+ {nodesVisible.toLocaleString()} node{nodesVisible > 1 ? "s" : ""} + {hasFilter ? ( + {((nodesVisible / nodesTotal) * 100).toFixed(1)}% of full graph + ) : null} +

+

+ {edgesVisible.toLocaleString()} edge{edgesVisible > 1 ? "s" : ""} + {hasFilter ? ( + {((edgesVisible / edgesTotal) * 100).toFixed(1)}% of full graph + ) : null} +

+ +
+ +
+ {embedMode && ( + + + + )} + + {navState.role !== "v" && ( + + )} +
+
+ ); +}; + +export default GraphSumUp; diff --git a/src/views/GraphView.tsx b/src/views/GraphView.tsx new file mode 100644 index 0000000..c5ac23e --- /dev/null +++ b/src/views/GraphView.tsx @@ -0,0 +1,322 @@ +import { SigmaContainer } from "@react-sigma/core"; +import cx from "classnames"; +import React, { FC, createElement, useCallback, useEffect, useMemo, useRef, useState } from "react"; +import { BsChevronDoubleLeft, BsChevronDoubleRight } from "react-icons/bs"; +import { useLocation, useNavigate } from "react-router"; +import Sigma from "sigma"; +import { Dimensions } from "sigma/types"; + +import { LoaderFill } from "../components/Loader"; +import { + ComputedData, + getEdgeSizes, + getEmptyComputedData, + getMetrics, + getNodeColors, + getNodeSizes, +} from "../lib/computedData"; +import { BASE_SIGMA_SETTINGS } from "../lib/consts"; +import { GraphContext, Panel } from "../lib/context"; +import { Data, enrichData, loadGraphFile, loadGraphURL, prepareGraph, readGraph } from "../lib/data"; +import { + BAD_FILE, + BAD_URL, + MISSING_FILE, + MISSING_URL, + UNKNOWN, + getErrorMessage, + getReportNotification, +} from "../lib/errors"; +import { applyGraphStyle } from "../lib/graph"; +import { + DEFAULT_ROLE, + NavState, + cleanNavState, + guessNavState, + navStateToQueryURL, + queryURLToNavState, +} from "../lib/navState"; +import { useNotifications } from "../lib/notifications"; +import ContextPanel from "./ContextPanel"; +import EditionPanel from "./EditionPanel"; +import EventsController from "./EventsController"; +import GraphAppearance from "./GraphAppearance"; +import GraphControls from "./GraphControls"; +import LocalWarningBanner from "./LocalWarningBanner"; +import NodeSizeCaption from "./NodeSizeCaption"; +import { MODALS, ModalName } from "./modals"; + +const GraphView: FC<{ embed?: boolean }> = ({ embed = false }) => { + const navigate = useNavigate(); + const location = useLocation(); + const { notify } = useNotifications(); + const [ready, setReady] = useState(true); // set default value as `!embed` to get an overlay + + const state = location.state as { file?: unknown; fromHome?: unknown } | undefined; + const localFile = useMemo(() => (state?.file instanceof File ? state.file : null), [state]); + const fromHome = useMemo(() => !!state?.fromHome, [state]); + + const domRoot = useRef(null); + const [sigma, setSigma] = useState(undefined); + const [dimensions, setDimensions] = useState({ width: 1000, height: 1000 }); + const [hovered, setHovered] = useState | undefined>(undefined); + const [graphFile, setGraphFile] = useState<{ + name: string; + extension: string; + textContent: string; + } | null>(null); + const [data, setData] = useState(null); + const rawNavState = useMemo(() => queryURLToNavState(location.search), [location.search]); + + const url = useMemo(() => rawNavState.url, [rawNavState]); + const local = useMemo(() => rawNavState.local, [rawNavState]); + const navState = useMemo(() => (data ? cleanNavState(rawNavState, data) : null), [rawNavState, data]); + const setNavState = useCallback( + (newNavState: NavState) => { + navigate( + location.hash.replace(/^#/, "").replace(/\?.*/, "") + + "?" + + navStateToQueryURL(data ? cleanNavState(newNavState, data) : newNavState), + ); + }, + [data, location.hash, navigate], + ); + + const [modalName, setModalName] = useState(undefined); + const [panel, setPanel] = useState("main"); + const [isPanelExpanded, setIsPanelExpanded] = useState(!embed && navState?.role !== "d"); + + const [computedData, setComputedData] = useState(null); + + // Refresh aggregations and filtered items lists: + useEffect(() => { + if (data) { + setComputedData((old) => ({ + nodeSizes: {}, + edgeSizes: {}, + nodeSizeExtents: [0, Infinity], + edgeSizeExtents: [0, Infinity], + ...old, + ...getMetrics( + data, + { + filters: navState?.filters, + filterable: navState?.filterable, + colorable: navState?.colorable, + sizeable: navState?.sizeable, + }, + old?.metrics, + ), + })); + } + }, [sigma, data, navState?.filters, navState?.filterable, navState?.colorable, navState?.sizeable]); + + // On first computedData update, apply graph style: + useEffect(() => { + if (data && computedData && navState && !sigma) { + applyGraphStyle(data, computedData, navState); + } + }, [sigma, data, navState, computedData]); + + // Keep dimensions up to date: + useEffect(() => { + if (!sigma) return; + + const handler = () => setDimensions(sigma.getDimensions()); + sigma.on("resize", handler); + return () => { + sigma.off("resize", handler); + }; + }, [sigma]); + + // Refresh node colors and sizes: + useEffect(() => { + if (data) { + setComputedData((current) => ({ + ...(current || getEmptyComputedData()), + ...getNodeColors(data, { nodeColorField: navState?.nodeColorField }), + })); + } + }, [data, navState?.nodeColorField]); + useEffect(() => { + if (data) { + setComputedData((current) => ({ + ...(current || getEmptyComputedData()), + ...getNodeSizes( + data, + { nodeSizeField: navState?.nodeSizeField, nodeSizeRatio: navState?.nodeSizeRatio }, + dimensions, + ), + })); + } + }, [data, navState?.nodeSizeField, navState?.nodeSizeRatio, dimensions]); + useEffect(() => { + if (data) { + setComputedData((current) => ({ + ...(current || getEmptyComputedData()), + ...getEdgeSizes(data, { edgeSizeRatio: navState?.edgeSizeRatio }, dimensions), + })); + } + }, [data, navState?.edgeSizeRatio, dimensions]); + + /* eslint-disable react-hooks/exhaustive-deps */ + useEffect(() => { + if (!ready) return; + + let promise: + | Promise<{ + name: string; + extension: string; + textContent: string; + }> + | undefined; + + if (!url && !local) { + navigate("/?", { + state: { + error: MISSING_URL, + }, + }); + return; + } else if (local) { + if (localFile) { + promise = loadGraphFile(localFile); + } else { + navigate("/?", { + state: { + error: MISSING_FILE, + }, + }); + return; + } + } else { + promise = loadGraphURL(url as string); + } + + if (promise) { + promise + .then(({ name, extension, textContent }) => { + setGraphFile({ name, extension, textContent }); + return readGraph({ name, extension, textContent }); + }) + .then((rawGraph) => prepareGraph(rawGraph)) + .then(({ graph, report }) => { + const notif = getReportNotification(report, /*rawNavState.role !== "d"*/ true); + if (notif) notify(notif); + + const richData = enrichData(graph); + setData(richData); + + if (fromHome) { + setNavState({ + ...rawNavState, + ...guessNavState(richData, report), + }); + } + }) + .catch((e) => { + const error = e.name === BAD_URL ? BAD_URL : BAD_FILE; + console.error(getErrorMessage(error).replace(/\.$/, "") + ":"); + console.error(e.message); + navigate("/?", { + state: { + error: error, + }, + }); + }); + } else { + // This case should never occur, but TypeScript doesn't understand that; + navigate("/?", { + state: { + error: UNKNOWN, + }, + }); + } + }, [url, local, ready]); + /* eslint-enable react-hooks/exhaustive-deps */ + + if (!ready) + return ( +
setReady(true)} + > +

+ Retina logo +

+

Click here to see the graph visualization

+
+ ); + + if (!data || !graphFile || !navState || !computedData) return ; + + return ( + setModalName(modal), + closeModal: () => setModalName(undefined), + + panel, + setPanel, + + sigma, + setSigma, + root: domRoot.current || undefined, + }} + > + {navState.local && } + +
+
+ +
+ + + + +
+ +
+ +
+ +
+
+
+
+ + +
+ + {/* Currently opened modal: */} + {modalName && createElement(MODALS[modalName], { close: () => setModalName(undefined) })} +
+ ); +}; + +export default GraphView; diff --git a/src/views/HomeView.tsx b/src/views/HomeView.tsx new file mode 100644 index 0000000..0ca7ae0 --- /dev/null +++ b/src/views/HomeView.tsx @@ -0,0 +1,151 @@ +import cx from "classnames"; +import React, { FC, useEffect, useState } from "react"; +import { AiOutlineCloud } from "react-icons/ai"; +import { RiComputerLine } from "react-icons/ri"; +import { useLocation, useNavigate } from "react-router"; + +import DropInput from "../components/DropInput"; +import Footer from "../components/Footer"; +import { SAMPLE_DATASET_URI } from "../lib/consts"; +import { getErrorMessage } from "../lib/errors"; +import { useNotifications } from "../lib/notifications"; + +const HomeView: FC = () => { + const navigate = useNavigate(); + const location = useLocation(); + const { notify } = useNotifications(); + const error = ((location.state as { error?: unknown } | undefined)?.error || "") + ""; + const [state, setState] = useState< + { type: "hidden" } | { type: "choice" } | { type: "url"; input: string } | { type: "local"; input: File | null } + >({ type: "hidden" }); + + useEffect(() => { + const id = setTimeout(() => setState({ type: "choice" }), 500); + return () => clearTimeout(id); + }, []); + + useEffect(() => { + if (error) + notify({ + message: getErrorMessage(error), + type: "error", + }); + }, [error, notify]); + + return ( +
+
+
+ Retina Logo +
+

+ + Retina{" "} + + beta + + +

+

+ Retina is a web application that helps you share your graph visualizations online. +

+

+ It currently accepts GEXF and{" "} + GraphML files. +

+
+
+ {state.type === "choice" && ( + <> +

Your graph file is...

+
+ + +
+ + )} + {state.type === "url" && ( +
{ + e.preventDefault(); + navigate(`/graph/?r=d&url=${encodeURIComponent(state.input)}`, { state: { fromHome: true } }); + }} + > + + setState({ type: "url", input: e.target.value })} + /> + + +
+ )} + {state.type === "local" && ( +
{ + e.preventDefault(); + navigate(`/graph/?r=d&l=1`, { state: { file: state.input as File, fromHome: true } }); + }} + > + setState({ type: "local", input: file })} /> + + + + )} +
+
+
+ +
+
+
+
+
+ ); +}; + +export default HomeView; diff --git a/src/views/LocalWarningBanner.tsx b/src/views/LocalWarningBanner.tsx new file mode 100644 index 0000000..8fdc9c7 --- /dev/null +++ b/src/views/LocalWarningBanner.tsx @@ -0,0 +1,46 @@ +import React, { FC, useContext } from "react"; +import { AiFillQuestionCircle } from "react-icons/ai"; + +import { GraphContext } from "../lib/context"; +import { queryURLToNavState } from "../lib/navState"; +import { useBlocker } from "../utils/useBlocker"; + +const LocalWarningBanner: FC = () => { + const { navState, openModal } = useContext(GraphContext); + + useBlocker((tx) => { + const newNavState = queryURLToNavState(tx.location.search); + + if ( + navState.preventBlocker || + !!navState.local === !!newNavState.local || + window.confirm( + "You are working on a local file, and you cannot share your visualizations yet. Are you sure you want to leave that page?", + ) + ) + tx.retry(); + }, navState.local); + + return ( + <> + {navState.local && ( +
+
+
+ You are currently using a local file, that only you can access. +
+
+ To be able to share your visualizations online, you need to first{" "} + publish your graph file online. +
+
+ +
+ )} + + ); +}; + +export default LocalWarningBanner; diff --git a/src/views/NodeSizeCaption.tsx b/src/views/NodeSizeCaption.tsx new file mode 100644 index 0000000..058a50e --- /dev/null +++ b/src/views/NodeSizeCaption.tsx @@ -0,0 +1,75 @@ +import { useSigma } from "@react-sigma/core"; +import { FC, useCallback, useContext, useEffect, useMemo, useState } from "react"; + +import { GraphContext } from "../lib/context"; +import { shortenNumber } from "../utils/number"; + +const NodeSizeCaption: FC = () => { + const { navState, data, computedData } = useContext(GraphContext); + + const { nodeSizeField } = navState; + const { fieldsIndex } = data; + const { getSize, nodeSizeExtents } = computedData; + const sigma = useSigma(); + + const sizeField = useMemo( + () => (nodeSizeField ? fieldsIndex[nodeSizeField] : undefined), + [fieldsIndex, nodeSizeField], + ); + const [state, setState] = useState<{ + minValue: number; + minRadius: number; + maxValue: number; + maxRadius: number; + } | null>(null); + + const refreshState = useCallback(() => { + if (!sigma || !sizeField || !nodeSizeExtents || !getSize) return null; + + const ratio = Math.sqrt(sigma.getCamera().ratio); + + setState({ + minValue: nodeSizeExtents[0], + minRadius: getSize(nodeSizeExtents[0]) / ratio, + maxValue: nodeSizeExtents[1], + maxRadius: getSize(nodeSizeExtents[1]) / ratio, + }); + }, [getSize, sigma, nodeSizeExtents, sizeField]); + + // Refresh caption when metric changes: + useEffect(() => { + refreshState(); + }, [nodeSizeExtents, sizeField, getSize, refreshState]); + + // Refresh caption on camera update: + useEffect(() => { + sigma.getCamera().addListener("updated", refreshState); + return () => { + sigma.getCamera().removeListener("updated", refreshState); + }; + }, [nodeSizeExtents, sizeField, getSize, sigma, refreshState]); + + if (!sizeField || !state) return null; + + return ( +
+

{sizeField.label}:

+
+
+
+
+
+
{shortenNumber(state.minValue)}
+
+
+
+
+
+
{shortenNumber(state.maxValue)}
+
+
+
+ ); +}; + +export default NodeSizeCaption; diff --git a/src/views/NodesAppearanceBlock.tsx b/src/views/NodesAppearanceBlock.tsx new file mode 100644 index 0000000..bf333b1 --- /dev/null +++ b/src/views/NodesAppearanceBlock.tsx @@ -0,0 +1,109 @@ +import cx from "classnames"; +import React, { FC, useContext, useMemo } from "react"; +import { BsPaletteFill } from "react-icons/bs"; +import { MdBubbleChart } from "react-icons/md"; +import Select from "react-select"; + +import { DEFAULT_SELECT_PROPS } from "../lib/consts"; +import { AppContext, GraphContext } from "../lib/context"; + +interface Option { + value: string; + label: string; + field?: string; +} + +const NodesAppearanceBlock: FC = () => { + const { portalTarget } = useContext(AppContext); + const { navState, data, setNavState } = useContext(GraphContext); + const { fieldsIndex } = data; + const { role, nodeColorField, nodeSizeField, colorable, sizeable, disableDefaultColor, disableDefaultSize } = + navState; + + const colorOptions: Option[] = useMemo( + () => [ + ...(disableDefaultColor ? [] : [{ value: "none", label: "Default (use colors from the graph file)" }]), + ...(colorable || []).map((key) => { + const field = fieldsIndex[key]; + return { + value: `${key}-field`, + label: field.label, + field: key, + }; + }), + ], + [colorable, fieldsIndex, disableDefaultColor], + ); + const colorOption = nodeColorField + ? colorOptions.find((o) => o.field === nodeColorField) || colorOptions[0] + : colorOptions[0]; + + const sizeOptions: Option[] = useMemo( + () => [ + ...(disableDefaultSize ? [] : [{ value: "none", label: "Default (use sizes from the graph file)" }]), + ...(sizeable || []).map((key) => { + const field = fieldsIndex[key]; + return { + value: `${key}-field`, + label: field.label, + field: key, + }; + }), + ], + [sizeable, fieldsIndex, disableDefaultSize], + ); + const sizeOption = nodeSizeField + ? sizeOptions.find((o) => o.field === nodeSizeField) || sizeOptions[0] + : sizeOptions[0]; + const showSizes = sizeOptions.length > 1; + const showColors = colorOptions.length > 1; + + if (!showSizes && !showColors) return null; + if (role === "v") return null; + + return ( +
+
+ {showColors && ( +
+ + setNavState({ ...navState, nodeSizeField: o?.field })} + isDisabled={sizeOptions.length <= 1} + /> +
+ )} +
+
+ ); +}; + +export default NodesAppearanceBlock; diff --git a/src/views/Notifications.tsx b/src/views/Notifications.tsx new file mode 100644 index 0000000..595c55b --- /dev/null +++ b/src/views/Notifications.tsx @@ -0,0 +1,97 @@ +import cx from "classnames"; +import { FC, useCallback, useState } from "react"; +import { CSSTransition } from "react-transition-group"; + +import { NotificationInput, useNotifications } from "../lib/notifications"; +import { useTimeout } from "../utils/useTimeout"; + +const CLASSES_TOAST = { + success: "bg-success", + info: "bg-info", + warning: "bg-warning", + error: "text-white bg-danger", +}; + +const CLASSES_TOAST_CLOSE: Record = { + error: "btn-close-white", +}; + +const CLASSES_ALERT = { + success: "alert-success", + info: "alert-info", + warning: "alert-warning", + error: "alert-danger", +}; + +const Notifications: FC = () => { + const { notifications, remove } = useNotifications(); + + return ( +
+ {notifications.map((notification) => ( + remove(notification.id)} + /> + ))} +
+ ); +}; + +export const Notification: FC<{ + notification: NotificationInput; + onClose?: () => void; + type?: "toast" | "text"; +}> = ({ notification, onClose, type }) => { + const [show, setShow] = useState(true); + + const setShowFalse = useCallback(() => setShow(false), [setShow]); + const { cancel, reschedule } = useTimeout( + setShowFalse, + notification.keepAlive ? -1 : notification.type !== "success" ? 10000 : 5000, + ); + + if (type === "toast") { + const notifType = notification.type || "info"; + return ( + { + if (onClose) onClose(); + }} + > +
+
+
{notification.message}
+ {onClose && ( +
+
+
+ ); + } + + return ( +
+ {notification.message} + {onClose &&
+ ); +}; + +export default Notifications; diff --git a/src/views/ReadabilityBlock.tsx b/src/views/ReadabilityBlock.tsx new file mode 100644 index 0000000..7a85ada --- /dev/null +++ b/src/views/ReadabilityBlock.tsx @@ -0,0 +1,241 @@ +import cx from "classnames"; +import { isEqual } from "lodash"; +import Slider, { SliderProps } from "rc-slider"; +import React, { FC, useContext, useState } from "react"; +import { FaTimes, FaUndo } from "react-icons/fa"; +import { FaGear } from "react-icons/fa6"; +import { VscSettings } from "react-icons/vsc"; + +import { + DEFAULT_EDGE_SIZE_RATIO, + DEFAULT_LABEL_SIZE, + DEFAULT_LABEL_THRESHOLD, + DEFAULT_NODE_SIZE_RATIO, + LABEL_SIZE_STEP, + LABEL_THRESHOLD_STEP, + MAX_LABEL_SIZE, + MAX_LABEL_THRESHOLD, + MAX_NODE_SIZE_RATIO, + MIN_LABEL_SIZE, + MIN_LABEL_THRESHOLD, + MIN_NODE_SIZE_RATIO, + NODE_SIZE_RATIO_STEP, + RANGE_STYLE, + SLIDER_STYLE, +} from "../lib/consts"; +import { GraphContext } from "../lib/context"; +import { NavState } from "../lib/navState"; + +const ReadabilityBlock: FC = () => { + const { navState, setNavState } = useContext(GraphContext); + + const [initialNavState] = useState(navState); + + const minLabelSize = typeof navState.minLabelSize === "number" ? navState.minLabelSize : DEFAULT_LABEL_SIZE; + const maxLabelSize = typeof navState.maxLabelSize === "number" ? navState.maxLabelSize : DEFAULT_LABEL_SIZE; + const nodeSizeRatio = typeof navState.nodeSizeRatio === "number" ? navState.nodeSizeRatio : DEFAULT_NODE_SIZE_RATIO; + const edgeSizeRatio = typeof navState.edgeSizeRatio === "number" ? navState.edgeSizeRatio : DEFAULT_EDGE_SIZE_RATIO; + const labelThresholdRatio = + typeof navState.labelThresholdRatio === "number" ? navState.labelThresholdRatio : DEFAULT_LABEL_THRESHOLD; + + const cancel = () => setNavState(initialNavState); + + return ( +
+

+ Settings +

+ +
+ +
+ + + {navState.role !== "v" && ( + + )} +
+ +
+ +
+

+ + +

+
+ { + setNavState({ ...navState, minLabelSize, maxLabelSize }); + }) as SliderProps["onChange"] + } + // Styles: + {...RANGE_STYLE} + /> +
+
+ +
+

+ + +

+
+ { + setNavState({ ...navState, nodeSizeRatio: v }); + }) as SliderProps["onChange"] + } + // Styles: + {...SLIDER_STYLE} + /> +
+
+ +
+

+ + +

+
+ { + setNavState({ ...navState, edgeSizeRatio: v }); + }) as SliderProps["onChange"] + } + // Styles: + {...SLIDER_STYLE} + /> +
+
+ +
+

+ + +

+
+ { + setNavState({ ...navState, labelThresholdRatio: v }); + }) as SliderProps["onChange"] + } + // Styles: + {...SLIDER_STYLE} + /> +
+
+
+ ); +}; + +export default ReadabilityBlock; diff --git a/src/views/Root.tsx b/src/views/Root.tsx new file mode 100644 index 0000000..94354cc --- /dev/null +++ b/src/views/Root.tsx @@ -0,0 +1,25 @@ +import React, { FC } from "react"; +import { Route } from "react-router"; +import { HashRouter, Navigate, Routes } from "react-router-dom"; + +import GraphView from "./GraphView"; +import HomeView from "./HomeView"; +import Notifications from "./Notifications"; + +const Root: FC = () => { + return ( + <> + + + } /> + } /> + } /> + } /> + + + + + ); +}; + +export default Root; diff --git a/src/views/SelectedNodePanel.tsx b/src/views/SelectedNodePanel.tsx new file mode 100644 index 0000000..8c593e7 --- /dev/null +++ b/src/views/SelectedNodePanel.tsx @@ -0,0 +1,134 @@ +import cx from "classnames"; +import { map, mapKeys, omitBy, startCase, uniq } from "lodash"; +import React, { FC, useContext } from "react"; +import { BiRadioCircleMarked } from "react-icons/bi"; +import { FaTimes } from "react-icons/fa"; +import Linkify from "react-linkify"; +import { Coordinates } from "sigma/types"; + +import Connection from "../components/Connection"; +import Node from "../components/Node"; +import { ANIMATION_DURATION, DEFAULT_LINKIFY_PROPS, isHiddenRetinaField, removeRetinaPrefix } from "../lib/consts"; +import { GraphContext } from "../lib/context"; +import { NodeData } from "../lib/data"; + +const HIDDEN_KEYS = new Set(["x", "y", "z", "size", "label", "color"]); + +const SelectedNodePanel: FC<{ node: string; data: NodeData }> = ({ node, data: { attributes } }) => { + const { + navState, + setNavState, + data: { graph }, + sigma, + computedData: { filteredNodes }, + } = useContext(GraphContext); + + if (!attributes) return null; + + const currentAttributes = graph.getNodeAttributes(node); + const filteredAttributes = mapKeys( + omitBy(attributes, (_, key) => isHiddenRetinaField(key) || HIDDEN_KEYS.has(key)), + (_, key) => removeRetinaPrefix(key), + ); + const visibleNeighbors: string[] = []; + const hiddenNeighbors: string[] = []; + uniq(graph.neighbors(node)).forEach((n) => { + if (filteredNodes && !filteredNodes.has(n)) hiddenNeighbors.push(n); + else visibleNeighbors.push(n); + }); + + const isHidden = filteredNodes && !filteredNodes.has(node); + + return ( +
+

+ + {currentAttributes.label} + {isHidden ? ( + <> + {" "} + (currently filtered out) + + ) : null} +

+ +
+ +
+ + +
+ +
+ + {map(filteredAttributes, (value, key) => ( +

+ {startCase(key)}:{" "} + + {typeof value === "number" ? value.toLocaleString() : {value}} + +

+ ))} + +
+ + {!(visibleNeighbors.length + hiddenNeighbors.length) &&

This node has no neighbor.

} + + {!!visibleNeighbors.length && ( + <> +
+ This node has {visibleNeighbors.length > 1 ? visibleNeighbors.length + " neighbors" : "one neighbor"}{" "} + visible in this graph: +
+
    + {visibleNeighbors.map((neighbor) => ( +
  • + + +
  • + ))} +
+ + )} + + {!!hiddenNeighbors.length && ( + <> +
+ This node{visibleNeighbors.length ? " also" : ""} has{" "} + {hiddenNeighbors.length > 1 ? hiddenNeighbors.length + " neighbors " : "one neighbor "} + that {hiddenNeighbors.length > 1 ? "are" : "is"} currently filtered out: +
+
    + {hiddenNeighbors.map((neighbor) => ( +
  • + + +
  • + ))} +
+ + )} +
+ ); +}; + +export default SelectedNodePanel; diff --git a/src/views/modals/PublishModal.tsx b/src/views/modals/PublishModal.tsx new file mode 100644 index 0000000..c25bc83 --- /dev/null +++ b/src/views/modals/PublishModal.tsx @@ -0,0 +1,207 @@ +import { noop } from "lodash"; +import React, { FC, useContext, useState } from "react"; +import { AiOutlineCheckCircle, AiOutlineCloudUpload } from "react-icons/ai"; +import { FiCopy } from "react-icons/fi"; + +import Modal from "../../components/Modal"; +import { GraphContext } from "../../lib/context"; +import { useNotifications } from "../../lib/notifications"; + +const PublishModal: FC<{ close: () => void }> = ({ close }) => { + const { notify } = useNotifications(); + const { graphFile, navState, setNavState } = useContext(GraphContext); + const [url, setUrl] = useState(""); + const [state, setState] = useState<{ type: "idle"; errorMessage?: string } | { type: "loading" }>({ + type: "idle", + }); + + const handleSubmit = async () => { + if (state.type !== "idle") return; + + setState({ type: "loading" }); + fetch(url) + .then((response) => response.text()) + .then((textData) => { + if (textData === graphFile.textContent) { + // First, update navState so that blocker is skipped next update: + setNavState({ + ...navState, + preventBlocker: true, + }); + + // Then, actually update the navState: + setNavState({ + ...navState, + url, + local: undefined, + }); + notify({ + type: "success", + message: "Congrats, you can now share your graph online!", + }); + close(); + } else { + setState({ + type: "idle", + errorMessage: "The file at the given URL does not match the one you are using now.", + }); + } + }) + .catch(() => { + setState({ + type: "idle", + errorMessage: "The file at the given URL could not be properly loaded.", + }); + }); + }; + + return ( + + Publish your graph online + + } + onClose={state.type !== "loading" ? close : noop} + > +
{ + e.preventDefault(); + handleSubmit(); + }} + > +

+ To be able to share your visualizations online, Retina needs to be able to access your graph + file online, through HTTP. You can publish it on a server or your own, a cloud provider... +

+ +

+ Here is how to upload it on{" "} + + GitHub Gist + + , a site where you can freely upload your graph for Retina: +

+ +
    +
  1. + Go to{" "} + + gist.github.com + + , create an account (if not done already) and log in +
  2. +
  3. + + Click{" "} + {" "} + to copy your graph file content + +
  4. +
  5. + Create{" "} + + a new gist + +
  6. +
  7. Paste your file content in the main input (the big white rectangle)
  8. +
  9. + + Click{" "} + {" "} + to copy your graph file name + +
  10. +
  11. + Paste your file name in the Filename including extension… input +
  12. +
  13. + Click on Create secret gist +
  14. +
  15. + Click on the Raw button (on the top right of the graph file content) +
  16. +
+

+ At this point, you should have a webpage with only the graph content visible. That means your graph has + properly been uploaded! +

+

+ +

+
+ setUrl(e.target.value)} + /> +
+ {state.type === "idle" && !!state.errorMessage &&
{state.errorMessage}
} +
+ + +
+
+
+ ); +}; + +export default PublishModal; diff --git a/src/views/modals/ShareModal.tsx b/src/views/modals/ShareModal.tsx new file mode 100644 index 0000000..0486da2 --- /dev/null +++ b/src/views/modals/ShareModal.tsx @@ -0,0 +1,164 @@ +import React, { ChangeEvent, FC, useContext, useMemo, useRef, useState } from "react"; +import { BsShare } from "react-icons/bs"; +import { FiCopy } from "react-icons/fi"; + +import Modal from "../../components/Modal"; +import { GraphContext } from "../../lib/context"; +import { Data } from "../../lib/data"; +import { cleanNavState, navStateToQueryURL } from "../../lib/navState"; +import { useNotifications } from "../../lib/notifications"; + +const ShareModal: FC<{ close: () => void }> = ({ close }) => { + const { notify } = useNotifications(); + const { data, navState } = useContext(GraphContext); + + const [shareMode, setShareMode] = useState<"x" | "v">("x"); + const [isEmbed, setIsEmbed] = useState(false); + const onEmbedChange = (e: ChangeEvent) => setIsEmbed(e.target.value === "embed"); + const codeOrURLLabel = isEmbed ? "code" : "URL"; + + const { origin, pathname } = window.location; + const shareURL = useMemo(() => { + return ( + origin + + pathname + + `#/${isEmbed ? "embed" : "graph"}/?` + + navStateToQueryURL(cleanNavState({ ...navState, role: shareMode }, data as Data)) + ); + }, [data, isEmbed, navState, origin, pathname, shareMode]); + + const domCode = useRef(null); + const copyCodeOrURL = () => { + if (isEmbed && !domCode.current) { + notify({ + type: "error", + message: `An error occurred while trying to copy the ${codeOrURLLabel}.`, + }); + } + + const codeOrURL = isEmbed ? domCode.current!.innerText : shareURL; + + navigator.clipboard + .writeText(codeOrURL) + .then(() => + notify({ + type: "success", + message: `The ${codeOrURLLabel} is copied to your clipboard.`, + }), + ) + .catch(() => + notify({ + type: "error", + message: `An error occurred while trying to copy the ${codeOrURLLabel}.`, + }), + ); + }; + + return ( + + Share this graph + + } + onClose={close} + > + <> +
+ +
+
+ + +
+
+ + +
+
+
+ +
+ +
+ setShareMode(e.target.checked ? "x" : "v")} + /> + +
+ +
+ +

+ {isEmbed ? ( + <>You can embed this graph in your website using this code: + ) : ( + <>You can use this URL to share the graph with other users: + )} +

+ {isEmbed ? ( +
+            {``}
+          
+ ) : ( +
+ + + {shareURL} + +
+ )} + +
+ {isEmbed && ( + + )} + +
+
+ ); +}; + +export default ShareModal; diff --git a/src/views/modals/index.ts b/src/views/modals/index.ts new file mode 100644 index 0000000..bca9dc9 --- /dev/null +++ b/src/views/modals/index.ts @@ -0,0 +1,9 @@ +import PublishModal from "./PublishModal"; +import ShareModal from "./ShareModal"; + +export const MODALS = { + publish: PublishModal, + share: ShareModal, +} as const; + +export type ModalName = keyof typeof MODALS; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..bb4c182 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "downlevelIteration": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + "types": ["vite/client"] + }, + "include": ["src"] +} diff --git a/vite-env.d.ts b/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/vite.config.mts b/vite.config.mts new file mode 100644 index 0000000..94f84c6 --- /dev/null +++ b/vite.config.mts @@ -0,0 +1,9 @@ +import react from "@vitejs/plugin-react-swc"; +import { defineConfig } from "vite"; + +// https://vitejs.dev/config/ +console.log(`Building Retina with BASE_PATH="${process.env.BASE_PATH || "/retina"}"`); +export default defineConfig({ + base: process.env.BASE_PATH || "/retina", + plugins: [react()], +}); diff --git a/vitest.config.mts b/vitest.config.mts new file mode 100644 index 0000000..44d4a49 --- /dev/null +++ b/vitest.config.mts @@ -0,0 +1,13 @@ +import { defineConfig } from "vitest/config"; + +export default defineConfig({ + test: { + include: ["src/**/*.test.ts"], + browser: { + provider: "playwright", + name: "chromium", + enabled: true, + headless: true, + }, + }, +}); From 68e89c1e356b26703931639fcc024336505b6366 Mon Sep 17 00:00:00 2001 From: Yilin Xia Date: Thu, 20 Feb 2025 12:00:34 -0600 Subject: [PATCH 02/11] update readme --- README.md | 94 +- public/deepgit_logo.png | Bin 0 -> 51610 bytes public/dxl_logo.png | Bin 0 -> 7993 bytes public/favicon-16x16.png | Bin 802 -> 0 bytes public/favicon-32x32.png | Bin 1341 -> 0 bytes public/logic_tag_clusters.gexf | 3142 ++++++++++++++++++++++++++++++++ public/logo.svg | 402 ---- public/logo_CNRS_CIS.jpg | Bin 73570 -> 0 bytes public/logo_ouestware_text.svg | 133 -- public/ossci_logo.jpg | Bin 0 -> 3638 bytes 10 files changed, 3159 insertions(+), 612 deletions(-) create mode 100644 public/deepgit_logo.png create mode 100644 public/dxl_logo.png delete mode 100644 public/favicon-16x16.png delete mode 100644 public/favicon-32x32.png create mode 100644 public/logic_tag_clusters.gexf delete mode 100644 public/logo.svg delete mode 100644 public/logo_CNRS_CIS.jpg delete mode 100644 public/logo_ouestware_text.svg create mode 100644 public/ossci_logo.jpg diff --git a/README.md b/README.md index f1955f5..a117d8b 100644 --- a/README.md +++ b/README.md @@ -1,86 +1,26 @@ -# Retina -Retina is a free open source web application to share network visualizations online, without any server required. It is developed by [OuestWare](https://www.ouestware.com/en/) for [Tommaso Venturini](http://www.tommasoventurini.it/) from [CNRS Center Internet et Société](https://cis.cnrs.fr/). It is released under the [GNU GPLv3 license](https://gitlab.com/ouestware/retina/-/blob/main/LICENSE). +
+ WESE Logo +

DeepGit

+
-

- - -

- -You can see a running example [here](https://ouestware.gitlab.io/retina/beta/#/graph/?url=https%3A%2F%2Fouestware.gitlab.io%2Fretina%2Fbeta%2Fdataset.gexf&c=c&s=s&sa[]=s&sa[]=r&ca[]=t&ca[]=c&st[]=t&st[]=c&ds=1&dc=1), or try it with your own graphs at [ouestware.gitlab.io/retina](https://ouestware.gitlab.io/retina/). - -## Features - -Retina aims at helping people sharing interactive network maps online: - -1. Graph _editors_ give Retina a graph file, and tell it how their graph file should be interpreted -2. They share a link to their visualization with graph _explorers_ -3. Graph _explorers_ can then see the graph and interact with it - -### Filtering - -Users can filter nodes on their attributes. Retina tries to detect whether attributes represent quantitative, qualitative or textual information. Graph _editors_ can select which fields can be used to filter or not for graph _explorers_. - -### Colors and sizes caption - -In most graph file formats, nodes and edges can have colors and sizes of their own, but we cannot know how they have been determined. This makes it impossible to display a caption for the graph. - -Retina allows mapping node colors on node attributes (in a way inspired by [Gephi](https://gephi.org/features/)), so that it can display a **proper caption**. - -### Sharing - -Graphs in Retina can be shared as classic links or special links to be embedded in iframes. An export can also disable all actions that modify the state (colors and size fields, filters) to the user, to share more of an "enhanced zoomable image" of the graph. - -## How to use it - -1. Open [Retina](https://ouestware.gitlab.io/retina/) -2. Get some graph file (such as a [GEXF](https://gexf.net/) graph file from [Gephi](https://gephi.org/) for instance) -3. Put it somewhere on the internet, so that you can have a public URL leading to it -4. Go to [ouestware.gitlab.io/retina](https://ouestware.gitlab.io/retina) -5. Click on `Online` -6. Enter your GEXF file URL, and click on `Visualize` +# Overview +DeepGit is a free, open-source web application designed to help researchers and research software engineers discover and explore research software within specific domains. -You can now fine tune some settings for viewers, and when you are ready click on the `Share` button on the top of the left panel. -You can now share the URL of the page to people, and they'll see the same network as you do. -## How to contribute +# Acknowledgment + -## Learn More +DeepGit is built upon [Retina](https://ouestware.gitlab.io/retina/1.0.0-beta.4/#/) developed by [OuestWare](https://www.ouestware.com/en/) -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). +# License +The software is available under [GNU GPLv3 license](https://gitlab.com/ouestware/retina/-/blob/main/LICENSE). -To learn React, check out the [React documentation](https://reactjs.org/). +# Contact +For any queries, please [open an issue](https://github.com/data-exp-lab/deepgit/issues) on GitHub \ No newline at end of file diff --git a/public/deepgit_logo.png b/public/deepgit_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..d5228ebd3709e5162f63ffa8134815c746b459ed GIT binary patch literal 51610 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 K6t5OF3j80C%y(Y^ literal 0 HcmV?d00001 diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png deleted file mode 100644 index ecebcbf9be446f58d5a8c5a306bd6b51f90ca4b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L90|Vm?5N7-pv#bax$X?><>&pI&nMFW{ahkOI2cTT9r;B5V#`(~Rz8;eqWscQX zZ#SLOC2w*(#y9rlG(XoCp`aN;F5C6utXkR~mN*Mltc+g1K-TJo!;1-v6c+oH>bZzG zxj8Kt=*p7N`<$Hn<5ynwe7*Gs^~az8KXCYeB|}5P-;7=M^*6b~tk=HY`LV=Vdh3_| z@~Q7$PS%>lb?ch(*Ewp>3#^}47{$~r{ygQ&f-2>1@f|mA1jbBLkEr=L5*#Mo6LLNj`OgZ9mk&`JBUg92Mc z1HC3~SzfX4F26~6jMW*7{=Zjum8p7)-qkGewMgCm&8_IN`u=PwgVOyH-q+8FuIabo z7nhrxbMlJ)-pdaPzjMdTS-w>Bi^?z4gjTO``)z#lSN>=0ZTw(p>iyRY7+0z#t`Q|E zi6yC4$wjF^iowXh$Vk_~Sl7TL#L&#j#Kg+LP}{)3%D|wUrFl1shTQy=%(P0}8rUMO z*?}4)K{f>ErER1{tn5>XPASgue|l%JNF zld4csS&*ubSx}P9z)&&g@h2XR!Y~buQ~syVcs>ncU{>bVOXe0<7WSSj!Yr)d(qM8p wg;{xXh{EX`S56!`b42C{`{@Rc1zvg#ufzpQJ~^3A1zN%2>FVdQ&MBb@0PsO9SpWb4 diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png deleted file mode 100644 index 897be1774860e0206b39c5b2932f390ba57a6d47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1341 zcmZ`(eLNF*82>RHBQKGplxamcGec^~FxoOxjLb=9HZfynZc*-Li9(-sNtu^UUKS(o zC3=xhrDMb++L}8w0RY-~9M)fn zu#M7CQ})rs#-Ej-7Uk~i4nTuIYmKsLL!{#TeE~=@2Y{CjfLuxOJ^+w}1Yjl{0CYY8 zMy#T?<1R`;HNxiz7AP_W{q4#L%EFNo0f5wRl!`^C?j0qm&cXY7ss9C0)B9dkSAW}4 zrB;c@x|49-m-BvzB?WHHXit>Ah#r>I*gw+olr%eNe@Ro{n-wu6ddA4M8}HgqO>R-K zwVgR{x5L2nG~e=L{&(k2>f#vY#w*=BF~t^D5KY$r|)+%#4cI>Xm+1GM3p6J_3kw_~5j z%kO+S^wzhtfq%y|1=aOW<6sQoaU9kA8(P#o*(+t0ed*PnG|U^yHuuX+^7)$@Tr9qF zTjW=Ific-d3xtc9a__$Fa5~3 zwB!MBxu<7H&!S0Q)w=$QWveR_RotsF9r!>jEy*W{y7T&ve##;woveQ26h4DXM2G{- zhrh)HR>w$7TOHjR%TulVQhYIyg5Kf0CwEJYNY;KgL!{y$$GCcXqe!trKU4u`MRu3MY52b{HpH zJ5`T4WKB>t#O!WqjMNJCA+IJ_Cig8#I#ic+pBP@nAgoCN5|>L3E1H=H?}fO|eB!qD zrLpvo#Du=AT+dB9I>r0D23~ZGbZA(Sp;KskE1^!MP0biAJRK)q5}lsVpdeU9YKS3N z+r^4wwffgWbt@01PBv`bE2Q(^OeI}B@18zn^4cI)$Tm(N=gD*@k7cMN=b#AuTg_fm zx!tK9AI#_Tt3NNKV($KN+}kDzE2O7Ey@k{Qec-Wm2p$;-&@3Deuv%`$dZ< zFfI2*`9Uj4l!x2vQ$gyy)KNZ8!kF&K5IlDnQ=3KYuDH+HqIrKedt2@!#DWUvb9~ld zS!O6=JOE>87SUmKPG>P3*4`udYGG~x*bm)@$8&rpb_G`9mt+;YvaH1B%n_ds8_SiL z8&hYOYp&COUD=XaIK(VV39t*SBGOPVr?DB!<%CzoKVs)x141EW8|RAWOSSJ_bQkou zg-!f48ho(mI?rUapH%mmn_x|3)VaKuHMZrPb7qRAt06Md;j$=Nqf@YY?eaaF!ugle z&2xQNj{($ZZ?k4pDW_$rkT8J0OW%iIs_bwY{Ujy70mQGy4`NYs(rP&ox>7LmaVDsV z@UD@Y{(#3|zG{(odh@#vyxlq4N`HL0>Dsem$Y2@qd_)0z{dnE#^cjV$QlUbthZi|l zTrF0f@ji}MFej42p`od4ni2pCi9*>R?QM__B)bD>2M06~WsO9lkx1`Zq4IV7$H0t_ zjHW05zrm@&tUzfn-be_Dr*pUzHVtsOTtsvnBaupB(GcDWqVIKZOfp zvE%8{u{0PbnMH#|vp7@$&J;~7Zq`T$+P}ZgPtuS7(;q + + + NetworkX 3.4.2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/logo.svg b/public/logo.svg deleted file mode 100644 index 2602035..0000000 --- a/public/logo.svg +++ /dev/null @@ -1,402 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/logo_CNRS_CIS.jpg b/public/logo_CNRS_CIS.jpg deleted file mode 100644 index d756efa4a5c8be06624f9406096056c62d116b56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 73570 zcmeFY1ymeswlG?R5F`l%g1fuBli=>|(74k;=|9Wrz^Y!YgUAwk@d+(~+yX))wx%+RxGeubiSpW$M36Mv8fcq8T zgN%>84FIU90L%aYpaCdI!~hBcLPC5Mkx2duYa%fM$iL$sAWm`vh%JDN_!_>k2Oj>8 z2LKnu{?|ZA{+<8#JvS#er!W_nFefi1V#_Be%*zJ=$RCjYA`PME!-GFyQ3)S63y`C=C#9vet-XsF z^&d1J4jo=1b*$8V&%l?HIaU@3l z7bCsBz1h8a*j>T499%*|LL8jj9NgS&2nse2Ul&gcA2t^cnm;8-TYG@O_HLf`t}c|n zBwARydU=XbBQ*bRlAE2Yr>lpZtJ`0N{|68J_4Mz4_>&1StA9-Xr^Eh^P(|gRlR7*9 z^1|=7czDV{5T^aJNO)-bx><8*T6?&9fkDf{Pmaka7*qvrX0 zyn>XJI@s05-U)HSLsL$YQb9(FpG%0JpN*TH>z95vVFZ`GjjyzYCxYZxI zfW)ZXz^+zaAZsh?zu-MwZ9Kg#z}7Eq5i=E|eraQ4?_%%iOR4@VY?O?OUQU!eoRq)J zW%`rF+s+yx=)ax;2SPW;uT1#E437V7;qT}EE^GcIN2KB}@UJ;7PWkWgZx8(21ON8G zzdi785B%E$|Mz*|Z&k6i3!)VEM%29b`vB|jwaKrNl9Gp=6A+YCP|C@sJY$oLxM@ze+WI14ByG zb>K0g1Hb@;0AdS}huceab>%;5_kXlKpZ&cv0H)Y}$@)hW{{;8g3Q;j5S_?D;jX1~+ z?1_MX^%%7Yx?cltRqy z83LxX{X5w5?_iJ}*cm~Cm^nb}?Bs>8;rH>YM|xuIqN9b_QzO2lfCr!n$N`c7C7=Mv z08#)yz=iM&KjOm%a0Bd!BjCT_|0SCgPz78OydcEZ4e$lPfIVOf*a4mZD+23sKC`^*0bKE(K&Up;JixPM0>J&^SYt1En9gXkfT zivZxM0RTMz0st6BfA|b>?$>!B4+a3*{)kYG0zg_i0MH}ov5fB*5I#b5qyMAvOUVC7 zz%SPDyQ? zfpH7!*%vo7P0h}I=aJOV^n%pW@(Ji#cqUEL@e2F?_OZ5(0Tf@uC?&0J3C>5T!Tp>5 zKdeBs?g%XQU#YhPL z^95qPTsn-tCa^b~xw3FkAd%K(oN*-x&qKTU=>^0P_ zr>SQz$PaSl4m0JVC^GrYW&r<|K#C4`a?T((c(69o!S-p;)n}iss~+n+b=3b$*@nhA zPg>suOlt1L;`$PlHqN(vOWxp+o;|0vjn-A2x38IvM>`L=zRr`@LgKk zuzFij&&jI)r;ef}Zc z|1$Ck{*F=ixTjp`%~p7hRb|yZ0B@krBRH2k&pLl`Uc0YnId!-kT#x0fonzB3F<(?I zuGjE3N9Ob%P(2~_x+!OKWG2E<1)>)fTX7?*Xe| ztT#QVdwNw%KbbhJ{NIQD_UV5)ivI`2`KHV+8G1?k$xEj;8@ka}M%hXxy zt*Lz@a8Dr3^6w`z^AGqHw#CKw*1laIEfb@z-vbWAc^9P9{sj69-WBSGgqh#j(EFJm z4}PzM^?|iV_pfhnOdXr)WygCoHf*LWe$XsiQr2`lR3$c9xNFjvZfD94-M(SI>0LWz zq5ryEPTkgVaLbUY4K-~~JGnKvymM3V}u*u>5u25y!DO^bHyykj##OE&Nt8ib* z+To8Ir2cm4wV}hCWh`gB42EFuZzrPT?YoC(7jJU-_m$7aUv|xErL&sSgM6xH#)+G< zb=Ui^!+1?7du_cfilK*{y-GrwN~m?g)XPc2MscpC zWhoMqqL*GF8LhAcA*MUuAMZOVzKsf_I;Un&n7-t9#l1}SQjkE`5#!AWHfeK{ysiPU zuvJ4uv|-|6Hp0pnF<6=F(Qi#x&H01#{9TMqa!&adV^&;FW`-#~MV63B_~yA3A2VgI z62a4rG$*kZ>IOS@@;p5lw`)wc3(`=~jG-jiYlrrrJOQe#erZ|oPgE^9EjY~`WdNg~ zM@_)WTBOQYqTSF!W5&+5H!}`ScV_&YZZI~XD1mgPRaoUXx@On?g3R3mYPQ4u`NXnZ zI|Ek?+DM=3?y)I1_EI#M@HDHBJ-|7O(R7VK><<13bN2sWzW!2$EWacp@-mRW#ib)P z->DtC>wGAmE2z>J{-u1)HTAvk!|DW!=uPe8YR_oT^++OQ;fTh0nsOP-23nd@?zd|w zf|CAOfmPxk0^Xk6-l{YV?*%$r| z&*HTk^tG)!#466~Riy0HqLHJok(rsd>iC=y_=r9?Lf)9)WT?ltR#X^Dg!nBSJW9hr zTcZ4NBp4}k{r#B73OnHY=}$LdIZcWttxFI)`7|D_`RvLmz{cixe{_cudR3&n)o98C;=eu%G z`K9gws+OvS?Fd=eHg&a}<@z*i|cN8YXr%z8`9A*LWak*6&N9Xztfn zQPryFW^9RfL~Us%K#e9n!sl|>E=C*$Rz$WWM^<82{ZE`-ywTyCtBe#Nx!r{Kqq>@cP06MDjTH7NGYA-)N6^N5Le&^MKkqrCwl&rA zHE)?#C5aHdvk84J9hUCj&EmfSk(BQNJCe16t*y1e&J*qr4>tcBhJSkc+03rVeA(=+ zVp8K#WYM65e`h?GX$CT6SuII2SjoO5cSE+4y3{$nG^G_}(VYpkn78uG?krWpYc+Ty zfc^-A5eigD_`B{;4KC%`Eg6Tv8}6Fx+10p@d%aqfno?7J6V~UP20L`dhKS*>|W@G`I`>9kDes#NhY+d#K4C*rMN=44L`iEW9ES_5{Ic%g}$~#OD4#kZ8?!YW|e{(~u0Fep@^4uAD7p}d= z^(Do6lrXi5i3{<5VN@P!1yveT zTI}mEeRq_x>?Izv>9ndC;>!3f>rMQNn7j>(O&S6Z3I^hD$e(o7bT%y*k3CT+I7!u-kATOQLNnS{BvEeN(3<$GoXmrjC=i7eAPwerwEfRhdH6zT*z^=;{2+bJ23Pxp* zvmD$UjJF#Et4A5to$xuW<6}Oe5EsOg%3u zi0LYKZ8ZgXxLm{DhmEDLt+P0ug+Eem77qHn;Ot6A=~bX=P#fYy=Qw$xy+5H~`?#q* z14Dp%CC^@b5kE}P>aCR9b61HnScwiv>KhMscTco!J-h&sT^-y5bq`hVuJjbt zt`X0@k%NxAI$*GZ4N~a(?1Z^f2a3vU5A~XSx^WovVw;@PQDJ{@z_~@gQ)4*wC} z9RGny4ijgz%gS*{wycdtfFG|kse>y$-O_qF4PgryOluxVK;>_~N%sJhwEuQ&_i*6_##u`VIMT>Nq&StySFLz{o@iHPuqL5lI(=~! zE@h}0soIWAkf1EnKQzi^bI1-NwM7?5@ykh0icYQq5r#d+2>g$sgy$%CGzW0)bOpiF z*P=LE``Ejn4%ps~!WpKqhEO>cEDm0M`uqqFRR4yu{R8rhM+PVhyvlC_zm#Tv^+0N- zB!0GoG|&GHOQl0z^~g2O>!-}X9`wwm#35+QXcwBCP+>P5WnjIkxU6YrHEUY@Jz6bF zRQ^aI9vCdLC{vPsLmX5PltUF>}ueyRMP*1m}ULcpI8ywAkM9IR!Kpj>=!z=*J~9 zj~MxqsLXzb(rS3J)Ds$%^k(F@hP@|xh_AsJ@$+=Q#7#WjJmK|(vD-TTd8|bu?dul% zUOBbd%@n5S#WrD_nDU0zzRYY>#kPG-47vVfG@k@KZpJE46VQU&D(_;Qhe~G;xuoMj zDswy&x*y$?={_HgTX5(b!sz!mc+j&Jxv?i}gT^rt;h2zp6OIsmb=vkWa;P!Rj+}`X z*XN}(!#1_g4X362RcSO($Rd;~G@hn41EwqeUcVOWb&Tvbe3e9TdP#81s3r?sjZ1}W z@#;T6FaF7~@J9EFHmqKW?%={Iv`Dk$O9I5mx@MGd45!toQnJ=i($vMpQpRSFhI);# z(PUw3oIs(~W}6WT#eF^YLU$PEU;o@=L#~mX_Vh|V|AUeLm2)An6f&7Z~nwB=QmFled%nf0ipzgMVj6k;L;d#pS^Qm?GwS^S4QJ?v_ z$fdg>#}fhws#?)HIB}gXys)CsXYQR63!}~#jc8M$k*6g3+R@mlbmmJ-veg#oGj^s! z7qTi$CLkj7wfe+3eAy0D6Vr>B*-k|j`OMdSJg;|?n6iS)CzP0dVncZIK2*2`vsuql zp+}*bF9xQ@MBG3yWchM%mmG*13;2nbcsFO~`AX(IG9LBm#JtX`H}pC#JREzXsWeHa z&aP;Nq2H$x`jGp&^W55(VTzbuE5%rGPIvUKZwEI**WRG`Jn|*@dF;p<-sxuJV@)qj zzSwGA$Du}X3Xe7y%V5BjP5$igLi)J=h*P=q zK;%Uz823MM<2Av(|FnJ0IrJPRnr^a;R&hwVi% zU%ZA*=PQ=@d_*8(U>C0V559UG%$gB-px223Y3*?n!pHW%4cIa9v#KWe%T5rlPwttD zYQ834C0AshlR+l%x4Z%MirlN0&Ip zJ5#q~@Y}a!C(XvQ=h@hBXpE84Dn>+?E9FYYd5?A@38Ro%F6&M3Rwxe*M(T!Bl^ z`SEHZg3L1gS!0IWh0}Mg$Eq_1D78v*@X?ITn;7ktO7uWE(H9YPsphA%)%vFui{aK( zEO@yPyavU?;=?VMv{czj6mUbEzc0*V++&l5OaN44T&g5=%6NsZGpi(0!;N<4DYQ$} z>BkT5{fgsj+&)C{?pTD|%=EBa&dq7t*Hmy%Qi%zLrIxumV#T(~QIA365T4u=%#~cx zk{Oj@Hz=YU7&s;gD|986=XJP4)Mfe|E}?yDhO8MWG4n$5rTm^V-SomNjc)G-pe(c= zg-~0j0TAxonAFV{AwReA^$#aoqW)|5OmEvmzfW@1OK|D$iPk3`*nPt@4~KkeSBsA+ ze4CF)Tz;O=W-XtArQ6}-z6wbrX@UA(oW?#c^in@%{Z`_`FuSE^Tn=HK@_a*b^{(pU zW?7ZfZlSW!W^lrzr(4=}!J;=tqMtfl z9Ls+W_lu_+@*iI#8}r4-YRYog5(jgzLH&M0;XQ&Rvv*annjuF!GkV&^zR83%n_(={ zZU&`%`G=`>{niAzKZ|4DDUN=0%~%F=)q2jl*GDp~f(?-lEypcj!OSPK1(RHi> z5mA|zj-c+dC?n$a$Ua-0R^PdeJEAr9%Dnf+Dw|uj7sX`uNj9H?4d?3Q*dVqPjdu?# z*H~J`!&CD&Vy=XQ;W-{W`4n%aAV=~Zk(zuAkroqes)&M-oTWS(PeledP!G))aDLiOjWIZCYfX=3i-54om$Kw{zXJs^r~K_=G1`9rDjDa?Ei zlXmhD&!2v*R8FhBg3X_N*xP9blildK@`T-_SNA}TaqMttRySdH1j7Z5Z8x$bB_H~z zYFIm$@Ndq|Di?#J$Q;g#wd!#?gDj`ytBccHF;u0j?qmRd_>?Bw_GTMxlf-A0%QmU#11iWJ$1GVG(BnM&h`ev0i?%;Nhc1u@P04 zAng}rYGKEBoI7YunkFFQvocnbTTI%Rzumd+;lvTruCzgAX( z4cR28S&w(0h{eR)!i2cdGoL(j2A$Wg{m0uhCqoGB5u-!T$oPwwJt~jB36{*&tptiE zn+A?NJ!`!XpB<8Mw~d^x#oIS3%BZM7`?yM-KB!fefp5Whayg&U*IrZS8+P<2t@I_C znv}EvPuJM^g=$dN?K}IyWgcyQC(I!W^;*sMMfUK?3+7$ope0Q z4E8K)hpRCadM4^vW>VTupXA>Id?FH}DYGOCTKoR2*$swE+qYgD$tX3+LdE_b_%WtU zu+~RU1!_i1VOSPg@yth$f|y&8PD?r@4~-^(Zr@Wu{S*|E^d)HI~#SA|=!(35oj$MWN! z93joP3Z&aq7tZt3f3Ev9$>{l(Nkpt;#V*Mf-K1R4!jSn|*TKQyx|k<6Ce|jRf=n1( zf}_A~DDTMCaPO;DW*!}l5O2l6?zccZY&Vr z6lyU8)k~P`+w>vU45ci1WrJqdiwQ}#7ypH2LPMkJgGyE1MkTZ8Ls=E|j6>jN+j1p| zkSf?_9x45SuqloMTaN)_iTs5E?MC7`yEr+=vSq&-)N-JB4@1_qzKrwO zE@|Q0eKsZNUKwHavWV5`36KLt|q zDTJ`C9H*)9rMTNSiKiyMhy;oE%d${BfuYOw)w;a3c?&%8+vp|O%j;!Vb(CP36d!2w zTf#My`*GQJ4>->+51Snah{2D1I|h72#o&iW-rhhNta|oj!mqtasZgH}urXzO zRrJGaAl!|!GZ~uW?UXg95!gbLafGNyR-J z)N2y!gj7`QA>+C?+YQu3eLR^UqQ^OcX?-ddJ*ooRW1QOqkT2KwfQp9sc09QheOZ>O zNUVdJt@FuiJ4xD|agQub#TmPJfp_*ySH1+pq&w^&D{e~Qp+u`KsYlpcyO5Uv)nt^4 zQW2>T`ok`vvZQ96!sf*=hmj_-+D zZvK1)Ug;jG*FBu|*W}|%;(o`+eweSSOZH*9kUt=)W=+OV^KDTG-8N>jSu1msejoZL zgxd>)>z*D>o}3)5f4xdmNBVsc8b;TR1L7^T>Z@y{U94^FA#)t_y>!I;>dGVAq9>?y zPCA!uF3Wc9X4Vo_S+&+hRHwD5%+d~ihTODFBbmyHvfLzmHUrGYWjjA+>OQKjKFw9` z{sDQV67r2|uXNK{?@C!{|MtO4Dmr=sA-$ZH9F%S%!P}9b_%uVT-Tt@edC|x!i(I>5wF8kPM+Ktq zgQ)sUIvy02>BYk)FbvCFHH%V42@R;Grltcsi35NXx+LFZt-OQOZ7S)myGA}ZnZaT< z!XTRj3Bf4UoOdf9=PNsSqGLwLWBZJNUW47l8ZU$BRMu(*W?W{Km9%2`)%tNFzPNx_ zVBR*|0QF0e`j*o*cwqE!7b8X+mga((!Xp%1#0|Vuev>|7#`2=2; zsL!@l2A@+xWW`4us_0jxsCBNeG4JBS{^Zpnf^zP-TjE&{xXf)Ccq~tMePbSblUu3o zTL0MCR{y1h>uaw9ofQlNyh$~4{RJBfhiMf~YUqD$A+m2fY0JU!oBa9}G_?BV19p0N zq2dL|eX@(QhSiXDU(!-?tE3=!VpW+NmVmb>SrHc0HquLOl52SU>5U<$8O}3 zEU%OJ-D+R2wHH+Mn8?8KpeoAw#K>T5v4TvCUrddiRJ06E1fn05_ac*4;pz6!NwXii zY2Y3U<^J?H+k$Y_-_d*N2x+Ns6UpF;yJr?i44?n{#VCPA+6)yu3jlIyao)|6k zm4oTMX%I=9P4oBO)XZ46@D}Wvjmv?K=wGCniZWGaQjBI+C^~uDQnITf z7D`?Tp?$_alwv{t zP?go)p|kkB*6()4fW*`K#Cg1l7A5j&BoE2kh3KEX=t;{fd9FBxQNv*Yxf?A5Tl9xd zvw%09&K#Bsy4MbN(1(s^21PZ^zp0=5w#fEzv6vR_v{&=mU_Q=S;#VD7tz^mswF-I> zPl;Xj@q|9K5C*&^)-L2!0teC9V*5uwHnRI4Y`jPrIm3bEVfG1ES5mREuH=#@eELXM zwwKWOm}Z2C{Cq=Z-luQyIO&d zCfWm~T2)Sp&Kcia8klZgN^)6}9K4Z#7$btm!=80IxK7FqAN&%&MRo+S8EidH2e&Z9 z%IP$_FD+^htmMXU?T&%-3jFW%KcT;V1r!cP1m8%tu-pUwcO2JdJV;_xPE#_rMgKyU5E!?WPZpD{nMulEGS+_El89=fY7&dkU~ zR_dzV**>B7?tU73antbtta^0O`O~&k@a*FC>lXmPl(UZ<;MsP2>nrfnMjJ5xm1+;F zg62E>5)ASR{)^-yy0SxLL+vanZT2#Mo}u%lFdow$Y(?`~T~K zKssD%NRza)KcNASYtaAg8GZDuBYeP?EK4Z6+rg{$+^gckU$xpln+M(M% zY?5abH-M^TdJ6O zw=vtH1K%;F+*i9+)H`CaYP{-t-WcRM@6elIe}2uqMgH5-DphOD<|E%~cOISh-P{w8 z@g$pEzO!9z*G^}|kf~p;p$v$Nja}k0`W_4g}z+a;~e#&T&5d?bTl`TeAV(rMyj!JmHS5(WuP3-2-(p`GItduHN^r42q5u zc&{8Fsdn0GY&vAQTv8hF-X_P*>$R+IBd$s&iTBea>~-nBhlt)aHmA@Sbhv)m$F)1~ zIOY%el6ehZ(e{II-H!W|ZNFGHD{-K$iNOy}o9|Sd0>+61mixfb_V)mUXIB8?5xcn6 z#`(48W|E>XSUo%EM#LFB95s>Q?=;nH7Bp)Q&)#bv)-)jw2r8SLofDkwRp)2Zd^R8u z?3Se-ix(vtvIA{#Y}LUfp?@oXvpnP}c!mBlD8N_b#u2!v$-)$uR5!~ZSN%EvNo=o3 zDmE^OV5>i|v!M#hpXtlmIvvW@(fZ+j*`q;0+fN#CG6|J6q=_wV*o50br?rOcX z1y|U^^$HHkZ@VrwDpXbbx^SC*UHnFjepYy=E2(BR^SYfLOS6Ib@D~6V?yiP-k?buK zd>CAC4=8P#v#TKPtmLLM44++x?}76zlHmNG*+}H7J*jteUWhep?oEjM4aE{AE8>5# z|M(>|Ug-JEPu?t~Q{-8SNt&cj3?>r8rJxs%VDzxs5;{pFg%3t&ZV3%w{qsct$QFUzE%ApH zshJ;(k2w^ETD%DpQ`{C@b(<61#)_KGYGMZRXSfI6VYHx&bQ|cLsrIM1EKirct4Xtq zOiJ`6zh&24fw6n03j1u7HNWg%;9_lAuzguXJN(#}aZJ}HBZJLJJHr#q()3xTC66<) zSmE+e$W#8P!nnUB7=I%w^uu7)U%iDpOvRg$OZehvlhQmhpt!Q;^^P}~9 zR=FqE)YgWy*ZeYxVJ8Xf6T5s9V7R3%tqz_%cuSBU0KWpnxgv5LN83GyVX=7B*K{YOGVKf(_8OxE2!0diW>OJW`;Tgs#6Z_ zTBmI+atSpYYILpJ`MK#L)U-uY^l9+FGI6ZDoLbk`Vo(l0M1KiHZ#hgwV_jiSthtPL z^|ho_A7z+3R>;e8TSk-$@#@$wW<9t*ol_z@03ns1t8~xMdj+jV5~5^MG!4)@Jqq!E zF4`3KYEHCe1usQ!!m5E(MlG(TBw`1Tew?<1&RucgiP44>2$SBlTg5R=H|k4&wogR) zZ`(tjG-Fl|dgA`@^Z&xtO))c@nA85V@*W^H+Jfzz`70IMcET=2+5_)_?`N-?Um-N1 znBUb0M>D(#1kT=^zTMzNhk43e=K6UC;vjmG6O#{53lKy_JkZzVuqlCx&Et9)h`h>3 z_XMYTI9gL`MYlZrli`6|W_VGvx&vj#VrGUd0UV>CZ45Ct=z$7`d~#ay{Q zwLW+yn?6dT@`*j%4CfP0X+f(*! zeDMrI6pWLbt!O7qcFN}{w}+?{)p(md8k*sQ`&~or3k=&AORbJx!YdJv*~?TkQ64am zY31o*tkLUW%+S}3vDZFIZ{`WDidGojFqUWEAL@$y@ZZ=;>kJ>?0XwBub4NST16J9kU-fgl@SY31G;HliS&ul((FlUupN~BC8XrX2wZ7+G@LIRk~d=h>y_Go8cO~@v$ z^vg0Huf?|_ay~4Zy%sO{EQyHR?m;GL#T=J*)^;%nu6eoT)uzf9{dUQ4iSBr|pqxZ$ zka;PcgvGR8BTKQ-OviK4XnWLg@FfF{2)3Y3h!Z71tufEPyY%6*zHh&)$CS^hWqEAl z=T<44PbP1kc9`U$8X1&d*5Q+B!9lG%7Opd1t?>)-#5V=gBrT)i4@@Q@yN`YP+%=q> zEXuO`)Ko5H$551#FFi5R9VNZ=yPfL8+ya3w-Haqk1NlAv#6w| z&mbB$FhDm6#f!>q4-DpHeToDtpAlZVF0##CT+ugRx==iwQH7Z#$zg&RN+E(U&XcMd zw$Y{6bBZ!;p1rF=W1OX4)AWI|Nb0u2f**&($6(qm(Ve;@ig`o|Ew=9NBF@52>tFmi zbc?SbuG_kK4I-Xq1J&Vifo0xg=B0H8CqyXuaWCurmQ4M=vvzMA%uGd^=$=N&+yiO` zxur&a)I`wM#F$#GGTpiB8n;4~(hcSQ=Db!ul-)HSXzL?x(fH?2U@o&Vj3UC%@tQu& z#{p=kXZ-uLZY)J~Lj_Qhak@e0&&M}N=(WWy;C?K|nB@Fb_ejUy@C%UZJH{~fA60MS zJxpfgnKD?XTXpyLlr&e#KZ=@v)xkJZo5%GF8iF-2wgzIE>rz%EwQAEOw7sd(ahixO zG-se*B4{eDN{aNE+12r{PRy<5Nk|pD`~>;*KP^HuBplx83&Y5qd}V0u&gNvC6%S(I zKZJCUa}zgfh%FPfGUDt$4r#W$^e+&flp#=}r!vjmua4eq&?9^-)#7)Y{%({V@2D{$ z{oI+UDKHu8;JR^>Dr5V_+h?xf$Hh+mgt~?%m56RrReDIW5(a6S=jYu<4Vy>-6ZH|q z<@zsGJLK(U*>UHH*APQn!lzFI6_&Po9Rk{9$BLz^c+&Qh`)kBa`&Jee)R|zx5=GWz zbIwmzrl_=2pm6pym%KE)V!||Fy59!5^6qi88+Mj(bE~(j#?-E=e8(E(tYIj=+)Pg_ z8|;g2qEbb>Y!&^DQS&6SBdd5JyCTzB6KrTm|EbksI?QPPi~dO04UsNu0rhfSLUg>{ z(rrK_Dr1}FU1Xj7N?xDpLYC}7y6{VBn9B+ZX2kc*2zrlah}CSnNYS@>8;8V#dS$d1 z1WW>aB+BZb1g|8k{S&nM_$o1nuk0$QDit(aa}^Cb@%``0T}lYJ__rv~@foO;EyEjI zq`f|`#p;!?%e-_*?+w+TKMm{^?a_4Qc8_68&0=HCfOrKq$#QM<*!7a@W2d~S)6o~L z!bxgL4w0yq;L8?;Kb`yYCImH#%PNkk!zH_FW2_HS(k7fO@ej71-YwH!+YI-~6J*{P zb0DXK#*#bsX0?hyo-E|rvZv^DZ_?|S=-_e1#vNk?I?kSKyi~bvKDszZ{41l}Z#kft zsZ&o}{O1@Tc2;RLo{S=}v(^6<{t30Ce%JT-L*bqA<;{&Ca53BNDz1(DwKRt!*cKqa zhLvv(g=Cz0tR3!sL;h-b)^???6;u%rc$W$I@0vE|Fk`sRjK_A?zWU!%NnZpH-ccJ~ zF35CQFZ{gu=ySwe!>Cv53X_)*S~?wdcv7J6J|?q!51;6&d@2lkRSfgaz}sj5l_Z4WI%MY$iR1l z^m|iZ4J?t~$EmO=EOCL@hW%wTts~RbOY~p$99edTLi3&@s}7Ipw9`dv*lt2?C{)Xw z>AB)us=uTdl4hO`#~?%+HmX{3u#iPq5EF0@=n>HQdCkfg^E0xX6`p?T)5rWAm&$ zzaGN1dT=lVhldxhbchADH62%(owT;rAU7KOOJrGpFUyiw@w{3dkF!xOuJPPVc7A)h z!SS_6e>B*-RzY0i8pmp)I~?%{PeUqmuFUtA4X?4uYOBW|pW@%6x31NhKP543tzN;& zc*xz+wXkZjew&*i$gX{A_ULIQNa%0?i}QEKAZ1?*6y#_eD88(#`+o537-T-3FWL#J z(C|xG97?5otrVIx0YiU3H#Bu@p2jpSA|w;>4p(_-{k4whd$EecFGXee9d@=;ccMbv zN6pVp6D`xEjI0EiP0iA>&;9mC3pVkXf<52FZ^g|GKFP+4N_teepLFAl(Zi(CuCu4z zYD|*IlU`;-MZ23q_{OS_+omS2_G#LnTr)dQR2r&tymr$VPr_Oos>vV5R+BxRR4Ykk zpdx{vzCmp!@q~(X%f>Y37^~=PPloAtP%~jWH`AF`DA8(O5Ltt)mgv8ts4y-~k$d+^fURAV zc|z9tWNOdIXD9h#o@C=?5d6G$x%~9QZGYi3&_^R8N@yf)!q{#@@mvYyJG9hmN=3&Y z?u{^WT;X7%I48Lu@_D)gYpz{x+Ki4?GH-%%;jcEvJYR*IfQW0%!xn`}De8US7*~|7 z5K^^?z$8t{&wC);(Q0}TYyB*}<{s#Jzsr-QW?MR2fcDYNvJ%gtvF5ioiOx~BvT&f2V2tz8k&`$sP@{w~tY9m|flrPq2!$l82DY#saQ^nw#155qu z(oUu%aUEZl;_RkqSZ!e!ddO_HV`>ERPnFY!u#i8Z`75M?gT?xew7m6@-seOTW;s#8 zk3~>;yUOxKr$zI0^ano=%Ze*NG`VV6Q%y29Ii4AmHk2|ibt}?-9E^LFs*~Mc5U#pp zy|l!-_XS-}ZMZ!%aW#A}Q??=6x~Esi6VhU4Ek0gt5Jr=XmgFp8QI5U$T$0g>|6zon z?Xzh<3X={<_2mP&i971!=@ju+Z9O!~jB+K8VK!gPNHFfZnpe$ATHelhjM8t-u0#mY zZ@URr(jJN&7lKK(H$U$idF*o7CB)w;6@I92CY4j-i=CMb;@lWy36wkoire@$sPs{KrhlJqw zH!5b94YRXhgBBkx6S*B|=un{Rdsy@&6>0E2!|P(^&{sK2+-VvxKIWN6p#~v^noM!- z$?3_8)%d?w#Z`3IDvDF%;82U*kS16g(^a*naKz<^$^2wCv zjO+_Px$tpFoRW;9dS86`+}e|Q;j41CK>;1Kh1uqsvWe~8S-Z)y+#s3;e{3G|(k2#G z17vg_?d;0^y7=E zrE^cT8@P86GPk;gKR zp{LxIhWtC6xxb3WQcYgVDQZfMLGQ`ZN6rq-KF+QLC>ib;N&dF;-1o4LaAyCalHTjq zY6?jSSN{Hp>*`@x5`n5=&Y0C#=e<;UnE^xnWaYyAEcy&Q0?ZA_V56^hbyrL9v+oRQ zNJuE!q2XmZE0&I4&^;qG;XA(vLYbnZxU5>*@B5^sKKJJ?g;^PU&|=$kh0=fLwVA=q zXjI@$q~av~cx#G$8SJ$p@TT?7W$z;R1WEsOYou6BMq|d_Olr0>XJhbt!y-if9k6H! zACc0at8vxr0#SU4y+Q7%ZO|+R1BJ(pc~*?ef1=1p;!@D1X{JSK5mZW9zK&^D@{ zq!A2CqGt3L+B)neoC!GxckV9EEX<$#+Fd;NJGdGlrv2Ie-jrUUY(#O=Q!ZouOkk*2 zsoI)}Fz>yWYWK?wy=d;pFdX%d8-^sgR}=gMRFgWU#V+2z)-Dbr(+b1HN?mD23H zjwfkipnuk2!`bqvZFFt)o600}8`}!w{Sp5}YHN#Fq= zS+4kNr8Cg%X?bm~wPU@h#rFYwLguvc$JxTQjrBeKrOM@{dpu#x%P?!I%_aG9byk)} zQ@Z^8(GYxJ{`grnC$G5Q4hpBmJ}xKoFR)3-?O=W|M6ve`KXBp_9@ksur_XOx<>^|R zS4ia>y1P(W%13)A_Oz`Qj~-t{g6V-U4~W`0EaaMJKW2)4X@{s^1jf!nx}3b4L>4m8 z?BYg z%)&;c=%TD1S~a>#xlAj4Ha?6~b668YYUW3R!Cyi>#Vn?RVr%dsGOftFQ zwWKee0{6)Tzbq);v~>O^+fh;=qIt(OZD!bzh@=~G*H#Ji+5pHMF+y>D_LF&t+Zz9Vvdm~;|J0vw!4FaNvvur|U2?x54 zcE@j=T9;e%=47;)p&w0PBka14n6x!DX@iuNy3sChoctQ7pcV}VOxDJQ)Yw(|_Dz9_!))1$rH8PiVnSApfC(LVtJ z+fC@%br|x#{krQ9q*e(&y~=4y3P&}X;8#!KSJ3vLkHC$gFUc+7GCr!adxnNOKQ-|6 z8!{xwq0+4Qh4^f?>^%UG)Sl@0-AN+-FK9!u?6f>F`^tCmtU09bMxjxYLSjAIeE}bG zy*O$=HJd-n`8I1<_JlQ!b)#9ADS>++ZaZ0WJ&pfq)VGJDFMfB}UpF8L?kg^>l}g-Z zlp&+Wgo0pMhti-fQNLY3i3aqycJ>c!{SIMSA#ouCI>p*I#)(o2@u>}8w>6{h68lW7ny!)90+c_C8zIy4JPE zdbD#CdF+UdqEp@TRTW8wg?o(xrrO3@DJ)U#kAjxgH<1-f1*!@g-o;8@xw995unodj z;_Yb2*>Zav-BypwnF6O9zv~Q?59!jCOuZNBGz~1a;q*xV+#X4M1b_?k9o)pgXuXAG zpV;dhMv5$lsn&%{D#^>3i99PCEUJ$s6xhi0; z)>pR)XLYtt-~P`1)WCVda=!U|gcq~WBv&{-KQ!gcF^OqPh}bk0Zb8Q_G1-coJVgOIU0Zu@{79ExMZ{+?QfTr^ zDK$I03(0lf<{mywS3OF&WI) zN9p78tg5MNH|%eVy!!z7?)4R9%7-c>-iB&y)d4B5HRG~M?v(BP zG9Kg+Y?0XN@k}Fu%?UUVp>HowVz1K}O*Hezi9L9(?__Os&e|0d6UpXZoL97+u8rh| zxK@P%>jnklLm-tm!S3=g6u8uc;QQJ&=>x3y3kiwQ(V=mgg)!ysnD6Dxz3D)Hx zcJ!d8C>pa&zLD=HpK9m-0_uXKsVQbgSyFN7=@_M)_yuVOw;7xvG@qG2M$mxju$JFj zg&2PAU#4`{R+^hTw=nM4NzcW6y8nn(>*Pi(tNqI?J(L|?{o^i=yjdn8eWckz3k=J$ zmYCiOgRy`JCOBhH16~3q&(eI?Yh6zd9LV@hKX{CZpRCkd`mmt=s86xei<}3iWM>;P z`ewf4_dd>}r8z@DA1z0-o8c$`@EK~`;=hhajGTFJ5tut=1ko5?{0$1uDrfO%e zZQ>PAocX?`OeNKY)GO%JMFS^zxHEMg4)3ZKYfJ{(6badZQxv?` zCN}8c(>hnsY`h!nD-z-M>7ojLB>creS=0GYi3ygCaHp} zOGswKSYG9}Raa`EeI$7#eXyNq{36^!ICT)GmmV1{PtZY-x#I{6T&}OwIwvN7wA&^#yW~TU1{v(~Z*))9CdV7<`j2Ki}6mDwpEp3B(=IWS&Io z<1%*2V2mSMhQtFK&~}XVRKL)&Sf`B^tnS^Qj>Kn(LII0EtJh-gbp5;)Hi1<@$&lH5NI5xGC*0jRrhl}g2(2A&?%nR;w(SMsZm zuha8U-L*OKc}3*hO*|aqLXw878pI<6^Nw?tC_C@QR!{3NHTM~IYoTl1*-qrB51$b` zpKW{(8+3BbV>`@ul=2GGkMV@NMhE*=o9p7sLGLO%Ln&6u%lkPZJP0k*^INWxCx7sc z#^-P&%y_o0Sne8d=W~Z~dS;h8%*tR8^Cs3_j_=j$8|6_(n{BP;Yj%d&E;eRnMM_;} zzjK~ADYmaqEc6QX!)9{KHh$N-F-Vs8Btq_gX$)lRn$E2VKN=p83m+?j{|%cGNY7|K5{4sRURC!|L2ih&<_cDBi-#+E*Gln^cL&4|RBCIb zx1Ls^sGVDBZ`5UaEku=XJ9O0W`1a`tB{132a)t* zprCTB7QY3q_qMkBGHHimA@-w08iBtkq(oO?s(3-0%7-$YM@wpj$IcX}9-1d+Xf?&T z9ep%@BQ?G8`{9CE60SbIcJ>X`b2qR{`?m}>E+*=B;V)TPzn-xFNj@K2=(Ak&NQWHs+?wIrlw7c2>*gK z#ch3G%Z7Q#V>u83e~3=vM5*Wqidlw4J(0D{cS0KNtdcnxF)M)7b}sAk*18Vv&1gvq zbz0Ab6NZzEg^JOpR>Zzitq(6HpF6ooobV8)yk3&v;+#rOnSY;Y(*>P z+$}ny&zF1rVini%o#24eSD2L~JQIGzOoGKm4AX~6eOX)7QJ*Y^eLs$pnr)6`Q5{To zH)ao1gY>PRSkrLkSH;)0%BVgaH#IWxW$o;(n=W-UVYW8QCkmMBPRR4I>kba;|4FQB zbqbCjxW`IFHJwFUzZE+U8bVKbam`qJp75$a(I}Anw#Hh#W1OG8;k*v!=&dsO1b!f4 zCN(l^JJoDm%jQxeD!@CU&hobH4@M;!R;%!B?q1~0%)ZmCM^a1kF^t@xnqY3#9pv)2 zNb};jY;Y0xMXLPhcq<9!W$pRWsxI4=zlp2?fV1HR#(}4ObC1F|6byfg(@x-~fxJD0s_ph5PPWeICaqXS7SPzDl(bsy5)+y11*HytB!W!WWh_PgpW) zjx<6z(9h=iI8vhyEdA-bLpUKAptdwuUzR$1T=1K*n}St-So}|V`F=rOW8frehkMQJ z)TFi$iJaQ!t2rCVJ0%;^Gb<*KG2KGageLtSnVv!E(Aofi-E%&^Pqz%`&McI1uDX^J6&& zuEGj7I6sl{P$acQ8S?LD3*V_;uSzK#auS;=l>g3NIx{j0!FMSqc^FiXPQ{m|b-FOv zr0@72i&4_rvv>9ol(WgBsn^||OOdmx`dMlFh?SACK=Gs{8$o!ttd4}uTR4wgV1tI`c-WIx`!4sQ>mr-RMkrjbi zWuJ{+t~&19fN7+9UWZ3$+m@4&;&;mS0zf(xz;xqmz4?961?k8cd~7Cf+6!&3;AdA8 zoMb`LH<}#rA(%MZ%OAWk(BbCFf;4|4r0^Desk0K*rM#=fYt83FNoCLZ3osJ)oP-b# zZNZ_gFB=nXpReNYoYR3RBJ8p}*NY1Ujp-jW^ozh@ z4sHuCO)Sr#{h~XJQYAp+tD4Q<72c-*m`jFW){b=XUrUz3_A7v+rU$8(yR9VmzwabPmUm{44;)}h=Hd+Iu_=+5;TX< zpXCy+x>wI(#^soWRc$7*hLoe8OtG+e$uRw~)qNIRdj2{aLoe`ZA%XY{@O82_uF%9C zS)H`38B|d7_#I)8(Y29(B+}^6r)i)`z-s?2PxQv0c; zu1fdeyO&%^92&M!1Vx2KmOfMd95tS3(4jeXO54Hih(c{t&wJxpOS zJ*FS6r-@|V<<_>gmdrgZ=Nv*7ag0^c3$m+#@4?4||JXwRPJ9QEUS93r%D^0vg+1DwV30j_6EhZS zeU))e)+VptxaV#0Ez_9MJ%(7aAQhb>IMvGPnYxbW^Vrq|T6zQ@5j{O;%Y&qD%*-DR z)*oliDrNt2CL{J|Q@3S1;VsPw1|nfaVEEg`&4ioKd zRq#;E3Bw=dEKV}g9A%n#M~g4IlOhehG6sE;Es~_|=+0VeJQYP+JDX`a^@E-E1XTB9qvd)N>tlEFbi4c(=@b9QJR=Il zQtXD@=p0->>~SQ85rIEoN|^Hx`JnJjr)B0{1n;tJQw|1;A0^=G4GBCiol}JuT za+dH;;eYk#-1+6_y`s?d;|PD&^v1bMJ>(&w)ijwGGCw$^_T4D?>s*$9YIL%D+>^-B z$)M9lbO`-V7+G@tVnSP8?0zoW?eT;@&D+u-ouCcPC?Q9ya}2iC0!0pC6WVItaM%)D zZ5FP`i#f9F!H|DNk?jvjF)FXchcNG|7$?oh~=7U~SIdGgA zOzc50A+KwF&9El*l1Xw;7lgt^+-KfHmFkSC`Jc}OF4K_vUVHgymN-PeRogFwxSC(I zhzXDS#ZQYY$Wub2mEhpgdQ)oHmGOM z@V%mzW_{{1z9Y+8?*~%cKZc|}W~$T)nnEd(DRSb;N2L-tyZnx32S|e)@G%bcP3Lcf zJdgwQwWn320dEO=!*13&nGywq>iH!Or$nLI9dr73M=0ZYC&<57q2=XDL_**8RkhAC z`DFLyfcOeW3>nc9@dFc1@ojwn8wml3a%&}3wGAi24z0QG^_M)JUN~tw9LD&<1ydqv z*h>m8Wn=`M4u2EKHh&AtIdWUA+M_b&?j5c4$BHCbLPL7ZZuY+zY4qoFKcC-ZQ8;vB zq~)DvELm-sje7LbMdz6&=}t=a+!p_G5|pqItF-}Q|v8BadE_)R#+#bc9+z+C#|bv|ax_d^>GzDEB3{#)nga8UsODvKrMd8Q^- zy=wkZ*^d?6b6lM}^__&`o->9g!m5@fk|gVu56a}6u5qbiuX`7*aS{tzzSxK@zZkcn z{kG?_jW^dbidnl|{o1YX>x;oAuMhewIH?uo^CYFY{yk$3)_1#!B2E{bFgkZp1mP`s zvHysPAL-in(CF>;iu922^v_Q~uirFsf5v3o02KLVrBX~i6m}c@T^H%wjUUr1NkiD- zL=A$nVcACbWQH+Ri5nK;k<9>~7mu&!s_;-C;PM^QwfR~^2pMBRbld-!`o?e(7Rq@A zD2j%$Z!bJixzvf47^~&*UvbQ~g&&_Pb3am4C8yDkwK5C;w(I^+iC@b8cP9dM(#rlo`?%d)zM6 zpfs-KU5mapqb+Aj(om}hvp<_A`))|-^@&gh+P!XXIZ?It4hMSPjHISkvgyA3$GFK72Ac%)eH z$sa#%5EisqWy3QBy4;!d$GRE?4aBW^+`oM!{P>?fgw+VhUNf^c;oo@gw1V3fUO(^oC9!^Nu5TX^F-&{)d<;MKrp=XF&z8s!aMv6`rn=rpIS1v{hA$zWV z?V>Ba{JPd24$Q0NwaT;Tr+L#CE|!%Q!3dp&Q8vT3vgxLQtvO9x-;@PY#u`q@l3eZQ z3*X{5er-iEDq|60&^Nls$grBr_J)P2vBXp!oWnDvOr_?R9b!eIu@BrPdn-KpV3 zKf#l`xZ5mCwzi0Z#PKzA9RBfbDQ;EzIXZ{hsC_kCu$**<&1ce2bI6tCwT?+m%DMuw zQH}0X)5xmG%mzR6@V@jikWwe|<0$NZuFVRYMJTaV{GmMi^mg5FN3!ERfS{*dxdMM} z;ThG8#yIdZuf2XOxIa}EJ!73v&_o1hA*{^5k#bOaSnI=Nt14mBj;_D zZk*_JVK#3#>dZ9=h=K)4&FIP7J16lI;*v$ia&I#aR}4+W+h;83QpvlqS!jG_GdE!% zgUkBP(G-Fr=Z3SnzP;?u)9`9j(Q23nX^Ae2 zY76-Yk#%I7csG05Ka{=IdBUZU zctPo1ZFYfmxQF&ezpTfIQxc`#b-wB}SrvcqTE{B(x1WDVZQBweG}vP*Y#isM=J%Bm zE6t|XK-(J_9aNH*85ftWNe@c}&dW3CG4FW28{s=BO&H_7JYS}(*RITNR^?u9vn>y2 zi44}HMwh@@!stLAqWm;LBYaaBxM$tVotc3=p&XPRvs5p6MpA87tX^tX7zt8Y{EX_m z+1ev-dvE@^$luptN@DM}%Ab-K|8x~$gZM_}@w<)j@c6(pFWdmUcvO6(S(K;$*pvLfojck)PL*DfH1;P}{QKHBhYUn%( z&eGW&taobmGHtgK(2G}SmF6GMdx}(AHg1rufS}2g41A`v?^MRbPH^efFxdyrIApbH zmfOkZ_oHEe8lh8tc)2zYO;Xpt_;!x8c6j( zr+=IXzVH>{+8#Y}T*OStxv8O<|MzL|zt2Ue?c4YoO8>ab&)5|?VJG4WFInaP;%->^ zTyc@+8OAnupGe=|l%zA?)&Y<5voLamdqlTyACA4oxQ6S~m$Qf>bNsfr!16T3pN^+ous?j<3Qy(5ESlV?=ZE!)8X+cMmZsGjEm8@KjCh@OB&QmT>V(UiXQ754T`2GL28u0B zd$UJyWAWIr+3am$YYlS3+4yUL=aRHnJwI~uZBx?1Z*58$eC8roh-$@>U!8UNGJ8jM z#ETE8?)+Wg`VXw%CnKT)mU2m&a}NM6=0+dwR|2=J{$whxi^XTBe!UX=`f<%7i1OBI zi}Gx_Q@u8iM)(L#9;3@+4D7N zOMxWhLzmANlK5$%=HrdgYO%{n6KOkAL0^ab_i7z|bs2H7U~cVLqR32>KKImjixI%i zn0oDEGp(D_8@BvY990bN)@fa_88#I8HYvB6Bi^B|j1GorpQMag2A1i0Fh!AO$IPyE zyVTC{ZJPS{T7LoUL}q69CW8qU_BOuIL(HUgW7A2$;)3y7iZ|1< zUT2e0H@0`+vv?J3zihltPo*1xWDO1j1GI`yao_*X4 z8LJHm*D7ZY3yk@cb()7Ksmk*&;Pm{iZ}0vu;4yn67_n%Rkquh=)oV?PuMctO{Ejyy z<e=&t&~M0H3DI9bkx~kr%Kxxx zg`MPHir!*9v7GupcmdP~VUK~g&(2<--lZjAXqb3+i&!I~EGd@I>Hp=58fg4mXcqIh z<)U`}`3v5j2i3Dy?dZCc`20Y7$?{$qCPco$MM6pV7KaH~wqo5pI!ihoV-e7*etH>0 zQ=!#X+3yzGY#Qd5pl#0lo*!##6I;GCOjgz+zWQEMakqCk;SKXnkEeKT4RT zs!#oT77r@%5b802Ar*#JWlnthGPDWU$7$`ttw@f;YF4YelhP*7=J+$=W7KZ6u&4Y) z`SRdJiVRb`@<{OS{7tM5U9LsrYI72wd4)v*5A8~jk8u$SknhtWPORp#G4T`?9qB*2 zx_;G}t;x|3&D~5Mjs$~ZC5l~W@)V@rnSb2ncUF(zn~*n4FCIiyhq1|_8tnW_ssJM0 z6#WF#70b}!0Pt>Z+PDO#Bx8TC8IAANaOC;8(;K!*mZEPlmaXcIjj~ z0EnZc+5Qpw0mhM;_(w`F2)qI@bzamn3ptom<0Rej{(T}U9A*QFAKE-`cd95oztl^^ z)DqR|yyx~V@*Rald0h#GRs0YSdwhXKpW8A^y|ygV(wK$Dmp+g8*|76IpCh zhyQZ&;v!%8HX+yQ==j8gwOw0`L!cI~ zs?<0!;cer+OIv>;D8~}^dnW({+_TTyv&Y0YM0+KN=x^|`zhK>iA9>UN(Aehv9hool z-;?tM+sBVkQuic?M&{ac$%Zmxe+Y|Z65VmxaF^0-;qdzK^5__$xQn_~StZ>4 zhj(6fXPU=PFeh>z3hkd1u9TGK6TD(6!&tMVxW?ogFN%H}7S$=&zW-K**z#oKcw+R$ zI{SNj1GI_dw&E^DjqFIKNrJ(GKvDaEhz6PzjVWHdmDy0^!krN99py!rfkQed*J$%; zY77{Zx+GUx-P&E4fSzBjRwY*qwiuaJmFN+L89V>45Qp8R|AaV*O9s0JOB|>sRvJmm zvFku{hK9KfllJYgCqpDjxtt}_?CZR4NvYL8kL9XHMF%|m0>yn@7gv8MniUKqiClC> z&v&~k+Gu;5`<`SrZiSq1lWd6vvh`dFvbE@&%lsu64`U)7)No0BqF;UtvY@% z`<%iXD{U`VhSdk5q{S#{tTwXHJIkGm7-=YBDcM}k1Ch82Ncc3@t^-a!g_ zI_D74UjW|jKQiTt_=RT&dtEQ>J)JG0b&ks`^0Uc!7S3Sas_mwgnQ1N^`V1~?0Y~oQ zDKvZRd9TK3O}$@zvb^Ea;@?*l)Gy|ZIrwWw{Cv+wUSCHIv$^Xa*V3x>@a>}cTJ&x& ze42ekZt&GB)ZwMG+rR5FY_M?xjS}}{IHt!&lw{@Pg-~JMMKfdIPF3je+VqL*?>)_F zt!rDzOs+0pQLQb6?QMusqiEG46g5#k)r)HLmEqOj=5_BrsTWH8UO-5>7VtlOMm6ud2Z&vm~}%?Wm+F zM0Hxp6bhRM*fCxjRw=f=wMt^Mr|U4*(b$7I-6HN1-In%^fWEW(cZ>|HTeh@fM$MXC zRm&XC-L=bFhpYY5c9cmg4W3d;^JLe$9=r9Cs||F`)|JpkZ#CJ$utu@sW7*ku7Tx@< zDGJ*;bHVpWfa3NB<;z)@`%8$?E53@Dl?lvLpU@fJy&f_yS{Ng9V@?8Z2m9?mg>LIu z-$<`$7L=>$_J`Ar@nw3CL?+SJ!&A1;W1W~f@eP5-HHjjEq;&*Gwx6FfF_UoEln(IT z;f~ER3V+VSijBu9dWr8#(^f?Ey+=Cq9)s*uc;Ni@p(YC}I~S11sU}J@C)-b^OG5v>*D5nPWDL2m{!;`FZ+3a=~9JrTgPSltq7T zV2g?+0|=Ct#U7IQFCRL8zGb?Fe{lQ-yU%E$uX{aiAh#ej{*`bZV0F?ccu9E8_*ypD zeWYF_rojP!q7;#f15$FxXGwhn4FzmH9lR*NN_IuHlfRLP;lRA9u(FhA#GKUc|>S<9OT(Murzl@6}>&IP^0-j?U>V=%?_MhW_omdPA8w&)rNdnqPm+uTBP9G1@k(*^Fa_mO4k^ zL1({HlRPn(sYL~@v7#ncEL1D%H#oSZITo_~Qne^t)IWjKZok9W&h3m!2A=UKaj&Fe zu}`irjXxuw&I@|j<}^4;u5!aT2(3Tu)g2Yrq0qRdd{$D&hr5EQt@SV9rwc9nD~W*j zPpCv`d6sv8w>tfEB~M}sIKeVUSm)tAr)!{`|09qVBI=8@F7~gk|5vfjt)P`NWS!ek zvtbr(yOaJi9}jLfXRgbqy0tnEPKi&^t7q2ce9yGP*u;|&*C*$;YL2GQ>vBX-z22pE zS#0uWp(AaRb+kS0FW@1D{h0-DpZJ3KsO|h0@E3qtENbzK?8-Qxo8ip(FJPN%=(Gi4 z{p$t(o*|5C`}Sw2p(ztL+cY_8rsWtvw9^mw_&?HUDHn!KS~c3tciG3V<>giD`o|P2mC=bIcN?duoO(7BuVG2JdOV6+o@ngv}UENaqer#%y?2jb$;=L0J5dQwfCNTyq~y+h#Skcrn?=O(_nB*d_4T2m>*Vx zu2~?Yp3|9|%yz>{b!sEi)xav<4tK5aio@u&)=|Yd6jeU%CF>)*0bzfn8AofrH&c6c zndZB#dR|Z+tBum`_@?HLcW99vBb2D!Sh2@hXZveygP#0KCq0V#HiPR0X%aX)-9AOA zc%CPm+2-fTi~5Q^QJb6m@-pj8h2j?N@REc1pWKBE_w5kVvR0qehpZ^2Zekwye>C|} zP!VRf&frVF&y+%h{8x#;N}V3oiJ#i>*HjY?-r^+gxd)+G5Pg5O_G;G-?os#to#<5k z9qm}>%7}YZDPclQBV*V#{rwWS;gmV2mF5bs&mc86J1`^G09r_4X+}o*8J}ig)T=jU zoy~U*Sy7wD(KSsr5}%LV5&nLH59-Q0MAjg3X`P^A)7mfrS%$`cb{5YM?JxYYG9_Cy z=_ju-lTOcOaKJwZ3(Q;yAd9mt*J4evVJ3qbg*2W!k9q3}gWd+UMIeJ0{vtIn#+}!YP=bJ|1bymDpAn zz5KJ#j$UEZ@#k!{duL5=N1;igrbZL0S+-W78w-XkniPF>BW6cqCfkAqO+r>!#!sYD z?6+{SR0f9ir_RJ~iXNL<*l%^Fa~FRRUTTzU(WO|=k);@gl&M?Qe7u!UQEMie!0Xhl z)Go-B6kGUdx-(_pOM{0;pDDZ8GEetuJP2=?+cxrBp*RlL?ZR~__IlPDr-#u>$?q!U z);lfTLuQmuQwsTStd^&xkIvvZvQ}TC7)r?D#l7MWthxw>HM#PBbNqiUgy9sU(pbp& z40i_RU7^#Xt*%F-C5C-zC|RS`Z71dC40U4+<}en2f+3ZC_6gfe{$aG@8<(Rnm*bw_ zPY~j*{lX)neG0s#rBHA5$1%ncFXK>?mT@NhWYOcJ4Wwq1Q%vhrl)N_ zo|9V^Hahb~RpzTs{U%63`WDRXqp+6S$@{BZ(?9ctHaMs9Tf|s{8?p0I(Js(79-L@D zxVl@qMn99Jw6U0}##E0w4^ik-9v-v&u*7a8k1iH}9WMSWm;<2mxLC8FeAlzHLB+@G zkTll+aBUH|0uHD)u#iza^zk}9#$TSnd&|#5(_Lg6)*ZFqp{uN(O}fk-Q-sH%c|hpp z1rhP>4AX%Uo)5&14Cjab;KOoxO;i<}O1?|Q6b+6ju@6dP(4qNm_2|i>&g&EbJEjeP zAP)d2D3@%Q_oa0FoWuP-Hv0Vpv9BenL4pxiTX)Amc=K$XWVj3~REJM~aHjDD!a z)0H{SEv1*@fD~!Fcf~>Ew>(DSXK-Qt>X(s6IpE_B^<^%S__tq_Zp*eiG9FXKeig@qJgOfZEeYwc&*p;aAih$cd7^3vY`rxpz*#Se7 zYn{x8B!De`(Yf;2ka`ZtdYw{@IsS%ZwKF5PdA&GZ@Wz_!L$KF=)r{&z8Pk#t&XrT? zUXeE-c9D{n3mS>VQFCdO%hJz`yF+d{RsbUyExptXX~|RDaCar-k?*N%#qkgn9|y(D zbzvIG>F7$S=V@KEc7T|^ixdC`M6L)W)0`Dr*-Xf_{Kk}#c#TQi74L({yT065cb&|`e&S@SZyvnBRa{5r6*wvxy+4A4H7f&t6erefR@>0}*clVr*j zS6_KJeu|HdBb!JF62`^4c$CIWL<>?VqskwpiKNfgOyS3pqYAgcQI$dqOyC+e01okw zXW<01aF`SG4YFtLBIbT4eulAPPG@=kgvR<=zgri-^0&~o@z6ac8)iyde3mR>CdmTp z&2@fG2D8n#E9e^0Og!>CO1ow3FOhN7lj9Rj%`9DvRsZ~+ZUiQ2nB{p`BP^u%mD&ga zo_#g4UE?O{G^-AYK#JugfA2P5NrIQcD4*g9#7gg%B$3Jpl%y=>Z)#QS zc}S-U!0M~-j^zf%UwXeXS$i(VFK^g4YWBpN(wDgV>^Gb|QlUg|@sj--7{NP0PkbGp zuGjjsPM^3{jjqzRiiBy~1tt~r5I!ENzdJ{KNT|P)>fCn5Ylp(}ZFyI(IM#_u6}Z0_ z%C4Q5%l#_fCKn}L33KZ=CR19%k}a5Wg{y^VbQW|9mfeu+vKU&&kXO-xgLE`kE^p>K zy{Z^$lEE5qC42+Lw(7c}l?%Eu5`+7CetK%wGE7SaM~QW;xh>bE0=nv((*JO=F*&X>rl8EvkWm=*D@0+z{Z-F zmO_%Gl*|#7(|+IdS(PDOp@juu{Xct2SgkI#Ot`RNF47<@#+V~hu>IAkW>EwKBW&PK zcVTwCB;~oicH@Yq)nZWb&0S-p{d!{^K>-GXm|7xlmzfioI9}wfb_{%G{OZuApyxHg ze&mc=_Q6)7>GpuEL;6o4$qvE!g!2j+q%WXJ4AHf-h19Xq{&`b+?P@Za#XHQ|Cb}Z_ zrC8G~d!oRy*K2b9^KZraB>e7n2Ar^q`$y@EU;?rKNNPksgRwn#bZ|qw4LZaMKzRQw zOO6E+5yfvHpRuonQzC%fhO+$N@jUfVf8#t&ULf!bP1wD}k5a_Kzmad@mBF?2L+Jk< zQBERi@D~vA7f_luy8lXB%AC!)PeUML%j8pJi6*)N|J3O2Jy^9hd~QLU)?p>X zPUKhkt4d00E@jy8=p1An@J=kO`Dvr*KQn$6Do9n_H`zliij1ISCdFhpwhJ2eQ8;w? zgQ#s-?T0LOsb8AK`}rHYqG{tjZ+YSh^^HDW2yh_uxKJqa$I8BCBK;P2>Zlx8t0%=J zg=257`~;{AOq3m;sF8v-264HQlrfeeo372duif6V+Hd+yK)!lS{6RzRD|&U6j)JD# z{V>G0#Jen$K)@QpyDvAGJoI&eh0)7{pZPX*G;h91pVJds&55d_Q}6{1-E}krkTt%W!h~^K}GS ziZIV=D{qWLgMMU8oxhQ@8OJnEsvH3fP?kha&r73Zd(bg-NenwP^^18TGl_anQu}`- zPP%b3hm&MOi@$MuSQM~-<@FqYGAavbHvs$tXm`x?Hpw`8%_HKw+9Waef}S8K(AhrO z_KDWMa^!4|ctDSs>=5RrlduPpLX zUkG_s*w^0oF!Wmi*l<=FTLl$+s3>K2WNb^O}J=oUkURWmUlyF9BH zKH_ENxmF?Y8f1SAE+f=RV8ziMzcHr`PE*-?2M0*iHdkBi^r>JT1ytiv+8kgs?ZS^o z=3NAZ?69`^t*=R`4f@uXuci#~NvY%0%0{t>6SU|m5HPdAU3L8h%;xy78TjAC!vFY4 z$lg0YzV1RCQMvvpsyMclJ)c;>dXIu-ZOrX1MU(oEA)-7mRSFmloRbqzkNh|YGcF(S z!TG?34I1`cx*z3)r+>SE&6Au}4bFK$k_Qm9lR4iV{(Ac|L5E@%08r`a{zO@xx!^jN zk99?1qYp9{lPWkKN+QK@%!mc1IXMNsj@JVtV58yq)|}uLa5zUhK>^jw;0e7DjIEIn zvGujztB)u%#>XpQP0G5d_hZ#IMYzbN>oT7nr!*EF*4Bghus$*yDc8U+v1C&L#q4#s` z#FhgZ`8pFi#bq}($x_8;A6RIV)G(vw4v3|QsE%4v%*20QYC1NdizoL0bGw<2V06Rk z{3(yw3&u^qF#L3T*EKKb}Mk%Rw4XwhjODZ5A?AG#>X1 zArj43ihv_`#FulWddO+>{7!hd@it__^ZUO(c=+=5Mayh;gIiaT9!eL}+)sRKB~72R zH(ReXQ!2F6fH9?8a==^SG>*IR!)x1JJTv4OYtzMJiSSOG?IA z9NZ9E?jiwqIZgQ>&!_pBbef9#F4x*twGmqAv^Or1v-&P`RjKp1XaVdzYmT2~DuVwyN8 zUh@eiJ|4r(@6*zov)y|@OUCf{E&E8ZkFn=bWbtf6Q>pD}qhDPH>pOZ=$UYf`gx>Ft zZ&UJp51Q-;avh@w{A-vBG_~)aE~-h_C|kQp8S@WlcPn(!KtAq%MQ{O*Mq=qz&m3l9LPT`Sw;{7*l)XTyNcrzql%ICArK(%m zk5w*X#&fT9;Plb~7jj=tnKg~c^AV&9RaxQ?rVCoNohj#e$~pS5;^<^ z%j|4KWqd$ z=`SFix#~3u@GRS!cO|*|7qE|F;}85LGR^YMH-TUDF>rZfi49BdH0QD;p{>5c02c!K zhPG5~y}Pr1Wa2}8t!Z@p@gKj-P8ZZABC{R@auRL(I&iw}3JY7^ z@k_3~j`MQ-#JJz@=?#Q~SStpg^V!2VPv4c2Gn4epS;=vMV@K3;} zsE|M{A(m~E1Df=WODlHyZc7B>S|{vS*fZA{$vx4Te5IbnXS+bstRnXCwE~M&o)5Ok z8G{@MpSu2=mM|Kkz~od)%5Nr3&36h2|IZ3Gbm@IJLT7|``GL$#_(q{a8UF?qSgDaI zwJ0Yo$2Nz{11Z=gXj7zB*x+V&4PfBgw#$Mi zs>689dpOrLapj1UlCY_q7#J?W9l`e3e+~Oj^eaI#WI$y=EBZi*N8a!mlpXYa^ZZ&k z(N4NUmB>QDoQ#}yu`06Zop0vQ!S2XrmtHHM_AUV7@EddnSuvO0c`IpN3DbRiM>E;} zsGxWh*YZrCPqtqZ`5hB1FYpLSIaQv#GeI#6XFvyWu`-jMOI$#f+8&4fN_+b9lXuJA(>od|_Loc1f!rBn!UhCh>$ns>!ANkq@XDC|URU2d>TSKcpgctH+WG0oD_I$dH54mK6~t|q zAsU5rCqUYR$qEZ&C~Ytxa}*+pgMOELj~lRy_H=#{b_*beTXw$tdbgy z`d*=ijiiv2LI`i#Mj$@n#U}UGe76Vt&W7BC-)UH4cwZ|o5sye0q+8Q~!nNu-lIkfk z^DyK5T<~<6<&qzm!{&e;O}jmm7IcqDZ^DXm6n1HSbNz&N$$9f$3@-S!5F>&!mpp12 zVc?&U0-w-f;lM2Sx<4Tl+*(yseY z6h{vGzMkmh)&BjkjojD6_S(OItzEdUu;UR%8wUprE+;}nBz)7+-@c!apsE@}BAS?# z=(ojFX}+`AsHm-MEbLmY2#ev5kl+FUfE8`= zYTjipnYr8`4Te=qAfX2D8osCDoGK+)MAZ0O#Gt;>d}02;=kU4rTAFI}I@z}Iu^`%f z^Kf52-&j<989>mz-Nv_?nC<)bT#!1&OIp_rkIsTq5j++{x;~wgzS-AAL0=FpqpN}4 zq?Dq08lpf{x#X2?g26||Z~$CQb&@ygOU|)=5A>6Js6VdbZfdQY^*1%(zE+r0O=HLD z|H0dPM>X|D>!K(s0)h(CoAeISJ4o-HP($w!I)n}?O*({5DAEFi&^rMXfzUx(fY78% z7o>=YzWmNTcieN&Irp45-h1P%KX$US$5?A-t-aS?bFOcG9}fj3$|s5>)x3c-3QDCd zoiT1mr3L#$h{T%ypO^p7T%iSU{2$4bh(98S>!k;eiFk03US$h|%ClbIWKd7P?7V(7 z^g4)vn^fPE@BE(-51EPl$%|R7+>w-kr}aF_j0C`tb8L`@(I@qK|b&&^wiFo?1{@1eFOPOS;sbn@M2AGYT&poOcTz3#o!a z`MS{smC4F}jSDpF_TQGxAZ!3e%{J~v3b)WodXnvlG^Z^?^Sm9uy~lLp%PM=KYXf=Em)7z}yYG^Wg%ecE&BvWjQs0h!TB!fx!7jH2RjhrB9LbT9fve-hh5! zq%vz|li5;-fzZ~$;=@-S|9^V;KlmOppLN#@2dvAlqVBkjK3TP3;qyv&FoyR(iWp8N z^Z!81K@X+AvaBvq{oK8*-;@iF6iT?i_yOmI%z51PxG(eBe%oK1;wv0_IlR9(GKzn3 zTABai+_t>79>)D7VO{ZjyO{ijdB|~Fnfw`|wr$Z!6O6Scl-! zE~Z@0q`Ya)v83FNdrB+YEUiwScI|TXyKLZ(+>H1lFD|9a&jrmnG2<*{s};rOI%d+I z&5pBEhyWTAR1|iU!~JUJ1a13m*oU>)n}%m zLcP$X)t-)b*q)5^2XaB;_rx!QhVAZtJ3I)-v84FoGZq+5*A>jQBygqo?br)hK0D<%RCrl_ zwFF?4*8DKzhGq7XnG^&%YPF995@<@Y$?m;t*B z8DWtGF-}bNq*dW8vvz;hv4Iiy(YBmZ6e5oPn4}?QGYs|pjco?C>|dNA zJ<#fB_}bWV}JES{}rOml_3+(EOtI>SqtF7`%coTn@o~Z)20CXmJv2gpAUE>Z^03lWWF5N zCe8aX-qmDCiW0q$f&b8gLA7Kq4}#)lC-p{RF}WR$m_5go?qT4d+O962V>kq|B!opA zWn_Egx=X0s=yx|2_E~rQ{|92cA4r$DMtkP$qI<5J9r$fgYMoVBq$x*#et!P~qsCf& z2>wPT!F()k8uvi2yw%*neh2>L%8xwnCTH_Uk&;YCH$h zJj|mpcCW9B>+QIjlKQi#R($o4EdI#prOGuJ<+!T0T%F;S1}7_o4da$}Alb*YH=%pv zLk&?E_kTXucrkS#q@OPW9{E({sHFAFb!*1%FbP?V7jzUSAl)%f3ZuhU;D&5ZETjNt zh#}t*O8^4_-L#1{zN>()-t+tk8bZ?kp5$^Y*}Mo(>tCDIDpoE0qPs_v|Z`>El8a%O5or`H%WT12b-Q_$0EwuGW=~QGQ7W znOt09PR#~*oS$<0KQf><+$TkXyH_!;8Jx@amPM0mP2BHw2V^UEadmjZU0%L(HVZ&Y z7%0Cm;L|CESA}K9!}1913-&|_6t>u~*c9iNoL9%xm&~=7EC(W9ZEhnmZ2rVC^c*oaM zw*ZA^FK3@l?E1hwWY_bQfCEaPxhtlWu^D- zx&CWB_Fre2|Mfxi>XPAbc6P5~@{?ng1f4y`P%1$sgQ8){o!1PpeKe~%SIOecWLtjM zIMrQsSf0wr49o*TAJ$b5i(SY`{4lOv5e9hIEF-Y5hJZbT$q%=IIp%eFekJ-|-XUlL zlFkMpyhJA`5W7Cz=%W@cqrZPNzI&jOLiK!Ke@J0m%bLwOA+AxKKewqCc=X*h=40&!XB* zN4gAq1S#1StF9*SLJln5yIcJ?5c&OH?guF|3uwi`afKpqa%lalRsc+!NcOW}2*-?` zL6TLzsFR>9AR9}=ab%9vHhTR0<=&LLb;U|s!Wza(pBezKRMp@%gOkZW2gjVJ(LdrL$-g!CWr2y?CEUWM0iLnw8zo>Am1(Xm8tPY~M_e z*>$ZH&*Vlmx-~nqG{5{6k{ht_)mkGoJkre9*dD9Why*+=nyhyxGOV*)s&sG_G`uoz zahL=d<5Q<}Iq%P2+|mX!udV83D=w}e1L>pKeNO0N^zZaKJ@ogyWP=69+{mnkv?@Kv z`e|50n!Tj$vQ4Xg{;CLR%lDIr1^?lxr;ujEc7|@z%eO!>l1^*R9mPiva2nSuBHj97 zz0l34Wa72Ml*9^d+{V#gx}e%q)~WTS_4zZ7yWJHEbA>u6ewF5N>shxumkI{5jO5Tg zQF(_MuF34avo}y8jal4aINEdGd2Q5~kL;(rwy*AVk>Hieqdr=UIpcN7u$aqTWyKKE zb8EU-1a$UPXw-L=?7jae15!IUxvSA0t`S^>GW%L_I3sJU8591n zP-RI=@=1Djw~LbM3BJ7{CXNbjJ-D6ccl@$zX~Iu^z69)^<>6^4vigKMFnqFi*v$K? z$*n9$-}mfjUF>r;M{)jJ>48bB^KJIf~`-@XlxYv=3pLemjOAWl+V4&}Om!;hL;P&%} zKcCMtCj&Hv+`0?2OCu_I2{L~*dc!rzqAS8TsX~I@Z}HgeNw}n*ykc0c${}>QQwVbG z?MMxkGUgQ>}E=r=6f+{wMRw7c2fq>Gd5zb zsZh+I^;-U|w00|%ynIk~kkfj}TexGj^muEa%#Y`-p$~%y!8K=jL66%A$wuulA;6ELU3q6Vvl^(p-pn_76Ww?EOyFncw=TLbHjcCv{NQ=)+h*%i} zAlr1lXd6u=ZO47z5m75um3Tt>Zj;|5&Tj78_jy@2AI@w{+dz|iS#3}G$$0DSvZw`_ zu*R=QQ{9Cfn`h9VJgpN0g-*}6QD$c;rlUzhBBb&S4j$L-_*MBTQnwTre-^LsleSpw zkFSH#ZqK6y8VhXuKe}W7eBTE$7vrB#FtB6E3M%#|Lch1&mk9fFEO05eXXfMv0w;u- z&5{IJR<{PyEM&oYGm}gPipzkakW`Z;QRz-M`_`OPTNz;GSb1rT)rWki&yIv7zaIMC z(kcCNcA3CpwFXdIXoPl2`x4qGW;&Qo$EF2c3M-3MNlDyiUt_!op)=6%o() z4Y9q{>7GX^IUhqdo@eZ&%4@`(6l3r~#$Eo%STZVP-=meC_QXoe#G}@)(Sga7BZ0qy za>nx&+QerZ?X$AV?qz}ESn5jLdz|j5<{0tl$^H31&#x*Z?SHtty33Fe75;#=vn{pu z=~a`_RU;l>Nk$yn2W5h!xe1Nyix<<0o~5N(vQ6wDZV-){cw93oDVlf!_f@}2HwSqZ zdJXZ)HMLJ}G|<=7h>!_}+E^dO4`}OF69Nzo<~nxD;^y07Ef=N9`7cX`QEVbVuzB^Q zo~w#`5AQul>5!?U$MI8qM;pH(N5e(?w$nV2hFaJmVybbbrX}2+GFjJk`gGFLmNPVD z;TkUGY~VfkXl#ZlL3ynWpeoKuuJ!ibGaCPIQFH93{sViLG+EGuys(}xFZXGP^Mvqg z4eC4FD~~Zx7t2}7sLa_8y{GQ(0c`ul#KZ&Mqy&$us z*2)?@-5Jx$4FTvd`s`Wy=$-z)T6YNbNIkk~q--7WHL@~Z9Gi2^KPOg0-Ii7~81dH{ zu=yrX{!laNe5!QRc$u)En$t9%?a){P%Ac&-pv*l*kq=x0 zRc%e*c7CB~RbeG0RuRa9)=b;jmd=btLq3^)#kpTow-}L_kM1!|UnUd^%wJ~~zp1Gc z@ZEhqm}(I6E;Ad}(D!ohvjHz7DV=tW=10{>63Z>kgS0n&Kp60WA&w?@`BS$*NB@N_ z+NaO27HBNaHBArqW^3FuX=SHmTagAEAVU(c8CNulVWwUH{8JbqIJNpooX;IXw(A8{ zp;NEAV9Fni9{j}+uw#q1+8H^(g!%B(#edjn6`l`oy0tzk;|#Em3~n&hl@9ZD$Kbk< zEELS!78Or7y{eqccsNB*i@CmWr>HjDT^~RPYdyrM3n~4g0Qzzqy4OBS1RYAD? z$CE$T07Oscm;4t!sL3ZilRXdebPRI$DHrvk1%?f_IiF)=8^itMnkE&cdtX^uY}swL z&9oFIlw|y9c%So9?yxt`r2F#BD{tXbUcWCr&Oj%!?9^mJEFT&I1flnwbQOAMud=s$ zm@UuTt5~n349~k*k&?-g0n0k5r+{<9;d6|O&D*n==#M2&w~J>XqM$q{;ocm{wrQjN47seHG3M-#jn^xvyrecHNf z)8XUyJ2Z(tp9w2i)qP65Y1Iua%Mw2v^jnfFsD7aqKO&aFyx7Lr{2D7%gN-&cxP-v+ z>=%)ed&Ucy1kv{KH30OX43%k(2@^HNz^;Z{h~t>}Fxq7ciP~7s%;-xpuvrpFOo|CC zjFi&Tk{~l|{f>kkLk7vJcsSJ2*Qu=G_?J%3uJYoXOL8CFjO)G8eYo{(G;~f^%b*$# zce26K1e4OTEiN~;-i`v#c%@g zrW*4B<}RAQ{^)0?b)zxjd8#eq8R;}NUj_p&z6cRhlq+R*(9rRMJtOr^(^D#GWv5Af zb%#lX7%}?2Yw2F4?#^HBp1Maic>h)7SyT4QiNAAZ!Zic4Dt*t^gAX(Y;vRvu!(&pN z-83%=9v=Ouy+s9+e@SLN2K=nL7Cf=vtY9diPK@d{D{#M7FLj{mkhHzL`uy|bh{w`g zqyk2Gie9W}1u^8E5_ON!4lS8|7yiy(ay|5%OL>5MB&0UNTn5qf{M@HLJH@h(o@G)# zF{9MT@UDD$|E)ocv7$NnZ-crS{ipm~?X zJOSc$y?J--O3@tCdc)re>i&!KmCmwt%+VsR(Pub9x*0sl7qKVtY=m;gLmTMI&dbCC z;x934QrK4=%e|pmXv}RiPLy(iVzt)DejF7Vw)oGN95Z{lhwj#NqN+*_$as_W8Vo=P zBV|LTYP!B9`z@B`JP|ejsTd22jvWENLzFje&8LOETEQdt%lGP`v=^m29#r_a)aO=K z$|H>hSxCyo3!pT(voUGAT1;74D9O2__XGJ6*am)^W9=XOrE4n4?Kq?AIOOUKX;*qk zqm$uOV!8_8L23*&Zd96o#%$SDkiUb-tZvwC4=?aoJ#Xr8YKpH|f0L$0L=%wp4S=ev zGZH;NKNOt}gTs{V1Aa;mW1(I>VBqpGrVf(WN3FV1=7DA4253-^6E}ff!+# zIF7wPOxEn@^}*UGg3z=QYTYpsgy}keIa;>>_BkO4^>U}8j6M$|x4rG!mOpC2N=5kz zkb5<91K8uaH@=tF1Yjh5slB{c`<2md#}D&6Jxiu7kO4x;+P7A^2gJW8JMwnk=cUMa6>SvCveeXlMddJV?~5oVH-;(x$3i zqPf`k6>cby?`Z7OY4=6V!|e;26Q09CowwUy3eJp-`Ga;)WsG9BkU2l~HE3K`zdl*T zat`)NlRp~zv0*R^#HZI-Ulys#D>Z$pVNvyhE-_@8hQgz}X3EpzvT&x6th(kQAhU*} z{9FD~%|gRmkg>Y<$g@$7tB?hu7@Ey~7l<>}Lxv|b@9$~w^NBN0;ujg8``R(Yb|bRi zXK(X;gCu4qZ=qJhv9SAF2Qy27wA3*4hZ^UkB2fT4k);?wiS}iwJ5$N5gm&6cz29w- zHIo(a&Z3?D>J{$FpS_&noE$mh9O(=o0%a0nI8W~2yVW#VqxLNN3If^jbQl?jxZ<3j>~ptyHdL{ zaF6zOQb9rD=sR9Y)drV@$)X#)U_-Ck3meRN*fpza^f9KCFgj4jkUIw}x zcq9@d$UbMeI`8}VB9clyX%Km{lGvH5bp0j9fB?)nOVxp&4RW$|pwtj>Ieu2V4wrMV z&ZZ4-z<}d)`#W}I<9(P8lw+&(mpT3@xevF_2}UPe;8oh=x0TtyvTOI^H}OYpU&Lx9 z>Sgsi8yrUKilUQNLx{(F_=6AViea_KO(1>~Os161#|HMVq8gxl`UNr)tisnOUufoM zDn=x76tsoL9rMA$3pjl;D3?$KKr9%+uizTX5-1Zq>4$}`9ZtRm;U>#)btRwQ%xQ#$ zY!uz~Drs}Q)AAhCbA(Hd_4Fl1Pae9i&eR^l)PuBRw91f@;#}f_>)T@)IQf5ZR3k=M z<5EIHjnDgwknuHziE!R5%PhnN_)Vi$YtlO;pu&7=Vf#vDVNBdiU9n$X7zDqR#5LAW zv1(&44u?idb>wVFyuqP1ILw;AosO9p+Y10LmFh^pL{YM(qS#DX2M6Y+FG4(Hi^b!$_SMd-TUh^O3KUWF0wchL;L*jm!nR&t)nM_ZFy+mxj}O0Zgw4=;SI?>s@A)f1`c5b?KzEJxL|m0pd*#c38oJdh+JNxXjN2 zqlY$_47B`;Kb5?8UC*(E(bv=VBxJ)!eW}`_N+v#(xpJ9Mx>wBYi^~Ip$i1NZ*#sEvxBp5tYXID*xZ*+E@~UW4<>@qbu=6c8D&cgB6be2@x|=JxOK} z28a}K%3KPNtTStr)e=NXKq)ddk8GJAPO0t=xHTsIf_>UjsZ%^>En7h^Hh5>DB&%TK z4;L9^Rb=cA8}RA0`L^sAW~Rj=u0S82KL*sK_!CX3UM!!1%)<8#d&H5(z>cqY6yKx` zAk&f=k<+b0V&3`aK}Tq-AzxaS2?<|02C&QUdDnm~LK5Gkj_S4e6}6~xfe!T$GVrB} z3y0oikqfx9y;$&PW$({=x&ClnwU~A4wZ1x*d8T0S3@pYCrX}OF&mvW*e5;d|NNRys z+Kn*3lx=O=+P1Yq@uDXVOC}^nc|fi(c1SP_S3Lar2FsMYgL2bn)uMVY8gN(YhXG4&`x3uV$9&P|AFVG6-#Kd}4y96tyL6i}A9{PtOFHO{h)E}9M5hmn{ZBrwEYG=W3rLZxr;9S&;6ECLKQSq~{6@9ny z-y4(cW$qU5{XV=TC{%x{44*%2&F-Zoov!(w-Y^{Gv$|rsHNNIxg_vSu|#>+O4gKP&`vVuuvwMdG9>2wHU%VguO>2uL*<+IM%NUi!|nc;>i=m12M6KYX5W8p4lSl`&UrOXY@Wj_Vkn+Sy2-o-^r$7l zFctEsaP z>%L4*ZQqX3Z;xq9oT`HVu5mm@Qc_MCZYn%H+Fy2VZt?|MN?P`Sb#)D_0cb5G>y^fol7njg5ps}!5 zW~L=SsnQ#l_Z|YuSllIM^m51$%ej>yC$_=b4IpM_?~v^CnOb?|2t z*oaj9H`d;_D1_AI5(it4S9Df4y9WoBh&ywjj1j@)YvN;-td?Thcf_3a`C4p8`K|8; zmu5!WEvDW#R@Oe=d6=hD^Dd_B&3|ZsNqw1k6$(}UPLo1z$=WUoE^Hh<|3ge{5D8fK zFu(HDc&;tbQCv;@$GC#`+0C|jYOX*?&^2Mzm&v6TUkBf2f1TGqZ|RUoe=i+^bEhF> z+sV`lm@>tzH#(sZlXGbGIWH-euV}tLk(7bcBReN-^i_S4RFE-Ij(Q!Pr0*7f@EF|h zLFcFcVAucQ2Y)Or>lL#Z$jo$zs|k`+YEjO-_R{PAF@010u!PGF>0g|DIAM8yHT3sv z2GwsI&Z=whug||Xe&_z~l>4Li$lCwunhm2ap2@G z+lXPSXNVD5%6e#W8}HrIDhnTP0srR=wWol`&E+Xk1?w!x3&?D)Jin0 z1QVbBi^{Q=LUrlH?^m9kaabAK1u z?=EVZ5N9vxTi9~gWuOxUndp@SwCk)rb*C?smYW4?&BvD>hyhIuCz=+%MY}RKTq#ZZ zutzMC45Exoh!Jh9g&lU&fyB*tIGG}@Wl^dMO^mprum6pC?lnOHe*39IgbxZe{rrlP zGjGEh-NcLIh5vsir>krpm8rLW&>%)X~b7jIBGgo^kdW z8+xtx>#a}vz+6|10w3Q*uosc5>Vz zQZPq7D=k5^U>-EaHYz(NMtQsvT-fTn@bsCo%98Jr|EtRUgcuIZ9eR)NgP%vlyvB-N z)pZ>_fALH;!mYyC%u)Lt8$=zlXkS$tCxGR)?-amh2zN~SCE<*G{g>fl$S85*kgt?-@Y<+=w* zL$s~}Wk1O3wb-^uplv1HOUlr5beF9l$XO@-K;m`*T-?W)e2ry%7D;zMoSL4=-?ki+Xf1D(x6wnYCW@yW_|2B+`>S!v`oW+(qHPIL3c+ktaSe z)`mZZ65DE&>NHH@jcu1I_ouk3lMFVxEx{AaL_$ob-HTJDLJmj-#XwluyUe9eAZZxq zsA1Zm1Tl~@j?Wv*V>cA6g~f9`;%qE%rb788ZOQz+#KCUQ;Nbj7F6+1?Pp#=ho)lKr z1rP}or_LNN%O0D5KwCIOkH&re(N-;9)skd%ma$zKko2|V^yK7TEuoy%Ns0&sr3d#M zf6B?+Xocz{gz2{D@oy)wII6KO2c=se>-wSKjm6{4k55KzIwoI-L^K{!&9wVys(y0+ z^Fi7uvnX3aKQStEMT9GJAS3EJi27Ax$M9>}pi7;v(>)FU0t&g zA$LaFHneIsgf#fN6At^H!j~?A2ZBL z!T#c~z|s(|^j>FJSJXW)vjJ5?)6Vt8Q;^C+mc&l9LX4HlK7I1(22*bgu5=ym7&h z4Xg5jlJH4Gw=7skBsY+#E6W~`4qdMDzzmognn|-wS7_+|v^u$`2{t}vKe*&+-kzSS z>9{!^3UX9=ccA=9)?kzbHx)Rvm9o^#;rm=NM$^NvaMkFCKoZP<-(91X(|iQ+U9U-_~$|XcZIm!r*i&^Ol4Lc*{6cx3=G*`RarI51F5EyQx8G}#)U6v z%ao;N1L$~PT+ZUvPJK59Z5T})h`u&hM$=Skm%;F)uGXoGD_Bl}g}b7}?^=hy?#X;q zw! zL|=j`r_immtWY3b;k#Ir-GHt3#KB zms(%`SABSyr@ZSm;!9Ov`k$){96gb65lcIj^`LewDr?2}G0D1*WU)K%tn2FPGQe*t z{R$}2V19{LXGzkE>`h+zBBtCp2PO-eRqW=ge>~~EeV@9{1YJiq)aasD!squ3>(Faj z>0Cq7e-0ZyOZ=E1Kh6mBo4LqjTRJ2F5lHxe{OpW-TL=1}-M}LqU%oTL#HRCw9DkyR zaxbULc0^$H3w75?D>}3p1iYm79nzhLAuVCcSfWCg!WV_fPM#Stc?M!^A9CiCif%X^mCP%`t1ZF7;Q~u%-@aw7GDb0R+0pf1 z=nEz=Q3JOaWJBt&{5v%ZiCUQWU$q=;*O+;v4$xJIyLzZbR*%oY3IoR|)HZKQM@}yYcON9UAp^ky%-X%AVm7Zf9qoU-^AMKNQnQZXAX0s|>e? zlyc^7e4vw!)|o%qCVSB_se^+Cs0vxMrf1$EY{BZ6`GkLnja z=Kb3j{nuFEXn$V38L>`+t^sbf=`|oyHfj_)1NI@QWwsbKbzy>h$*O>hJ$}Qnz9FTjx#zH?hHrV0LNPkQk#!}GY4H;|tRCo>7do9P9b(>`3bOCOA)3AD zI~<(i%N3QpP{y-UKTZ*E%XFzIOInr%tjs@Okp+?py1MU+#Y75Jv!mT}9yxOAO6nzO zP$3VM&CyG3%$bBh$-jfX+>`naTsq5Ryhm}VKVqcN@ckS8fD%vRv zm>HKtb$0u83x>{f3Gz6P!{iw$v# z@}QQtjhA~*JW?f_5{4~AiBeShS&Syb3dMiU^q3yoGMd|WQZ7;&pM7uCR?84a6PcGn zSe{bg+-u~+zckxR)u9n21)8k4!3#Z9qXT8CL4?#BFpu0Hubdwgp?_5R;XsGfe=g?_ z-Or@!$tS3JU-Kd)?gx&!^)z1Xqs~LpGCpHAVOKhf-U}U2pYCn#LKYNv)b zvDwgN175%WQNQM+t3TTmjdY%rpN_70aviKs>Lp-lw8-8!5E?40>Em1GZ+R_p_4;4~ zpU|i{fvtBCAlTl}f@yxR1gI9-&K${9_-Ggx8>eo_(P>$= z+4KTB@>#1n@+rqWB9THH@|1he`IK>2b=o9ty;LfQfaf)KO0n#mKHV(cZ@-}1{EPF= zvk2Gz4U+|i=$KB~f8X5j{ckzrkG{J#i&w;a=n*i{UbVDWY`$G|rW?dZM_P;5!q|y* zSzVlJ!Y#jEkhr!2TQY=3rCZqj=oGb#_v7aD?49Zluu^YSv&N>)%%`qmYyq+jf;fz`7KSewOY3oNvb+yW(S_k zTj983TjcB}l=A)PA@l|GN6UMsMazENt=bo6Y8jiaXq7#NWy6iW_D)&3{qB*fLB!tiQc@oN*;yDzb?O+vt zY-GLvy$%27oFwyT@@Z1(UoO z-8Zte#Z=yQ@og0-7&N^-^GJ()MBcyxQDcETX36JZ$|F&J@!n`gon`DFFFb>i$rYw$ zQ_kq~F0-Rg6DunB>FK{&kKON#SbA!(znr~S?mvkpZzpQ~Q;F>w^K7xfq4NVwjS1HvEh^;Qg@6#E64J3kxdd!&$e1^kvu-JXUw%X_IZjCZ0W{1?kC;~ z6myB$D3lCvOvp5hE{N7fQUOa591g#HGQCdDG&?^waw}}KtlcAV^Kc7qRtNWj2KhS7GQK$RN0ywH z>(ei=@_Rxy|1xA`N8puU5jUCBSfE5Q#CtS%vJkYL)ys?Lwn0dg;09JS*P~MtLV0KV z8QGdImM57m%4)fTvZWHYGuR$e;55)QODtV)693)|kgDPr`i5o5t6OSV(S(Vx76w0P ztx&0a-C^3gbx7CLHF#*`l}*E%-zkd?1%=7LRbGoG_^X*T)%#wiY3%M#yO&p7;S+41 z>O?R!r-0rYCLog>#P;Xhp#^;CAEd4W<9*(p~A@#6Hkv@wo^LfiV6~~ z>H@->G)h=wry0p>L)y#Mt4^eDyAxwvJ^$id1RH9lu4AdKKHvZShWgh5bW-v!j!p{R zIYl-JD%D3$0ai~_^VPv`Q(?Y?7Y=Df)EtO14)3glv~`k`hzd5Ji8~u67iac)XNFY1 zG)Qd`^|B1pkGn1|@cDRZjv`aCJ;9t>q^4$VJV*Z_8*5UNNEg7IvkL+qTdm#l&oQe7 zS3g=>fv$)t2ji0&dJsLC{=HJ*jwkP6O^2kv>@A+AIMMN6ZUi~k zUxJ<#PTrsjqxjYi%I^f9*TZzx4rrX1w-8DVCZ$m6eDgdv^O=*ycV09L&XnU~33WQr zk6)|VH(Snqj;uV@y9?H9u^>;}(&gHF=|6cG7qZoVk4i*zCuqX3IqNg5KWHH{w7l84 z>4%0xb!&+!pOR0MGjEm~`FET-FCbq@$A0l_jlb`s`|24ogVKrGszYs4B%s3?G1fc0 zi4xXXo9}SpbXJ0g$r+B)so?x%7BfSWWMJII49pv*F=SWVzUb_cU0tooS~@MnY1d@x z%pj4OUsMbY>CPOO>&_S?4`$}%WZLQ9$D7OsjJ3PNHv)*^v7(9+k}m#7tA%=G^|H05o6dz2=AYD6u3+)aSFFPd!w+tePfnx-Ep_s-;vL!c{myjj z*Uq#Rx*z}I#9^nAANQnskmW54FI`gtCV$Rh7W@ydQ@%tTq_=*XFN`y=yj5CIFMpSH z2y$pqFK*GEg|vizE6Q9Ttlj1+&W-pUqwBhkU3qA)@m`!Z`=+JO|~J5O43siu6)1i6DjGD{%E|m?hd<&G44DbH?436CF zSbc-R1@}g^SM|n>dUB=m3#D63R4jBp4+=aDmpL5XuU}MLT3@N{QH~)dn9aH635)IM8e8$|qr(qegArQ)d_b6M2 zh>wMNqwTsx!iRa?LY-@#(&4ol3m>kD8x{{+8&+F$+FS({6xUyReEI%;qSA%Wxv1a7 zadWrKpuxC&r;LSAz%D*5@)*cCb3ZaX;Uri`I&e6pAV)&gYom;j*4ImQoiu{`M5+u63N`OFfG_qciMa= zZPe736;*+8Vg}Nr1CxMNYAW)*Arqhvy)*g`8!|GnKm;=p62phzITT4H_!KI>QyKPI zI%=(kt!|+57th>u+$Y*ci)7rnx48sK1h};f`H`L_fEMKn?q~a%Eq0J+zV-Pe3Id1f z2r4aAmE6zl zNp9q)0sqDE$Ak(_@dhl0l21$cBbO_IJ1c{bS%-8VUI`JFEpfgVfs9Q1{aIlTw3(=M z?{mV^)f8eiy-A~%GpgFTTH{Fl?F7E9v~e$ter(d&*mt`ykH&qt%NrP~8B0{yp+HZ- z3WqVNvp5T$9}b#qHI$blUl? zJwZiEJBu-pU#mVkg`{l5e%8v61=LbKtci}xF@)~(^znKcXx-zf(3W!#x*!J7TiOy z#vwS31$VdLnSRfiv(`E1&di#%?z*$)!|g9sPgi%y2o_M0Us2F8FNrvXN7%!&7LVM@F3c z8C!Qyv(+zJ-Q`$tKVU_Efz~3;2d;dRsOlqoxBr?jikIa>r%P?`qUb*vrPe%Xn54Xe zs{0fd@Jq|v?tA$PshGC)x5^t^1-9y`tC-`R)o!Rq~s4JF$>_uiEk1ivcDSC_>B)2qvJ4XeEi zgX5g>;f?O&lXZ`NiHt=BZ?4~OxD8fj zOzGl!7W@1~&fSWpDX`Y260oL$1Be#jJ*%w}ICf|a*-Qx6LFIn4dLDgwiWBLO@RGaT!5H6|KseLo z!`GEXq>UqmN8{}Bdvlq9Fz%19v;OX@nwX}g{;a4I5`mpq3H2c&-bP|xVrR9nOp;@} z%k$|eVoC#Qs-qTm8GUzsJSgQ`dU$tZR{QnVj^@S7LD9sQwQcWi(uxGk?RNa6x2h{@ z9Zy)<8x?fuQVl(C$g3x&y_;m)vYRE@sugotP)#+9D-&{ID)FDKAPPNl!xPo99ZS5E zXOpIUEZm+^0zz(4GJA^&oOA*^ljOumcKssvY6sfHA+iEeLB7t}-?6|k(zfGy%7d9EWNTLqR$rER1xEpSWM85&W0QNd zAt8+g%~Cj^E_Huzch!J1yVdDbIQF1GHu4wcg^T*uyJ z{Eoq!&D@qK%&iz@a#B8Jbv}B z^n2XICbK>(O%~Mk+M{xBZ)n^B8~RXZuZIe)FLOrt-uE0*E2^6^tZe7_e&%P8=HVob zO>Uj=M9}Iw74q#4e5xS`6dH%eovl&R!_xOwM!zR(k(tZ5)spIgNw?n=z^1+r;1^dj zSgyADH{s>n=yIFncOs-q9pmpw(`WmB>ZEJ!F;e1iNfmw7?b#7Pvs435Et7x?#8~{$ zeDxp4&Jf>!hk0Ir=Ka|kPx7NwB_;-q6sA5pcy~Y2vntMOE-4LoEN?^o8Tp6FuYQ=p=t}+n&?8n{2j@QyBq4c3*{F30Fn5R7_=z+92qlcM0?#BmqLv69TJ{Vsm}2lU<^$ zaFd{|=$vs6yz;VOeni|Qj(Lu3%G=mDe}p9?in+Yq-48rZ^EkbCKWDspsQF<;f$-w( zQ*+feHS$+)cIb^Aoz7TRQ&aVJZjYSzn_XMq6sH`cPeU#agc>|SSFIvyA?vC=^c}o*sRFnKz$sXTA=T&q7gt_b3JxQ$kR`}+mxGIgN1x~HAAR@C!J+=MaSU@rA}P_aS99XmS=TJ05t|~Q#vV*lcR{z0rwWlW>6!Z@}{(WiPr9_rP z5`F+2@@*#JdwS(8w4Ri{utcPoRZOoJVf=NQ%8HejHtx*eeY;uSq{+IvEj!G&+#*_8f69F|mlLYHFV<#$mas>Sx#FT`VLAIt%D z0KJ8kW=qYR5<#`e-`Qf~jkTF(i~h4obhqoLI0l!6Wju8o3akC&rAfa4xdEU*2xk0{ z2T!$HrnQ^b*d1EsF{IM4#%!5yy_gdHAj*^Kvznsa;fv(gArDZ=01uq!VyovHQL^(S z;~Zp>a^0@ZMAQxo?cGnx2U^aj7Ko>WxOYF*?^CiKU~u67=8)#=8WGbD!@6t!H;WudDwrN4dxd zhm?41jf`wbzYI8ut5P)a6u}Y)!W!l*qw@tNDTV~&(xMWbJo361)~Jc=GplvXvbj@3 zGR=mS_@^+kXi8o*VH9^JjoY6W1oVDhM2jAANtRjsCS^Oq$tr!XTut2Qa(mi8 zYG+%=ez&bOp(?u$Nu8q|w&;y)7i8)%FGwu%m^8yjMidf`T&ZaE!Tv_~sBj=PUaA61 zlSSe7w;sA5k(%|@oSLP8Fs<7ySrvVeMVHI_CZhhf;3OqPdTLcx&>WvyySzYLQSfzd zQ1xc>J6+{^d}VdUUq>v!(vR{V5{$j-!W!%zM}EU0S`Azu0=;Tx)mTG0zxTVVGhMc z9nOI~F=bCc!Q0%oxKPFfXB3>f%bBUut$pvX#$X4vo%=C$F?QUaXIqnhb-`D-Vq(ho z74bOfgSw~rY@&2<2tC2aEp%ZJZ$aND|AjEF0QOrz?ZLGdLTH|20#?9YAii5o%!0#N z5B6Jlwr~VY&>4L)!|Akp<4RrZwhPlMqU#JHJn@ZIJ6S;QL&Dx?!r=AOCGmFuTJO*8 zm+X5u%9OMxe-HqR@YkUCKwwRG@H565R_N@AfDiEgy~^sg*uY zcjMh-_IVO<{fV6Y^<(E!h@M0nZIBFg$iusmrIit39`-YKiZFp_nGRwhI8tQ98k>*? zQ2#5q{BXdllJRe0s)%hYL|}v*_b^j99{#|=?S6_>R(D2D&*Hl!Ofp&*rz&}q`v+lV zz24g|k96Ur8+^UnHS^BkZ|6a+G~_j)UKEHc82p5%6x5XX&rgPbti!ARKyXLE0V{N* znV^+acXWkgD#PMqY2jn|&9SSO$;y=GSd>JnE-FD}qjs|A=BqM~w1m`HFM5MqOIpK> zv>0EUYoO?U!k|*ha%%QZKo8$kqH-sXm(uY<35LEpFIg937kM%0)j^J*w4(G~Bzx=h zGQgEqElZ@3p(7TsK)?TWp5PzG{Ob}u*kfhCVkn@@AT0c6wr3T|9z`J`b6!JSakC2I9|iJ-3;&AV`je)dXh%s5&l!qFZeR2 z<%-|GywNI?yZ^VV5w`snf1|!peuxh<@f|!?Z8noJT`yTI!<!-H`elzSUu3;9V!NguJvuCXIbvaW5Dw_V8d0Dz*zJU1FILNAjmA5Z5mSE*j-Y5! zreZTF2;LL;gs-S2J7P^w)9&?(PBPIDIV$YEE-rWotVylTu9O+d9_dDm!s2GI`BCKW z5zVjcJr};Sd}s6LS`+!y-hkS_ka63^uYLthd_uDm#pd~&afszCWu!KIaZ|E8Ddxj` zhLcRycaGl-)fCHZ8%NA+Xsa|!D9!rzORKLQYX!nPd#t#sl zD^F4lf>!j>BsER%#0?ux3=`yMXQSGis*A*DC@Z~2-ujy%_oo_$FQfx;-$d#1geHQN z*w=M~hh)WZsFWMI#=ownSaUhTAdS$q;*RrsO=%l7M&5&w*z6329X+&JLPmo8 zScO|RcW(GoqWbLp=?<$UBb<0mlW(1KaBMHsN1F37vqH+S!QrYdMQY0U)mUfB^i3ch^rke8bR9ZRkvDRkXS$<9YU( zQeS8Elv}>R!}qYo=WXF5yFV%Ci)*hppL8}#%+v#!CbMk4*1v@QUri0R^%kU2R~dBd zYxgMr{+#5>>s@aPZTwvP<*=A+5a!sH*(+4Wl$xO}=f_=qbjihAf3Y)B0i(y4WMMNf zN1*gy0#0)92=llkfSACVQUYmiM`NG(L)FjMqD~q7(5uN0N0VCx95dP`l@^L>>ojBz z9I4Q=E015KGsYtdo%A`=9IDQ-*t%SpjuS0by}wct|2ZkJ&EQtssNOoiMBa)e{3by$ zK`6!m;FL+LX{|7qY_Lxit2)D{!-aGQfyhu59F}F$6=clnS}Of*#tmFn5dDFV9GjdS zOtLeMruGkQyY~mpL(#w41>!F$K{(qAJ1KR)QyRzKpU+$>(u-F?;&_tSoP&)SIl1MI z1WOAxX&FTnuEZ)^ReFX|x)MKm$rr%t7+T!cHGVp+yc~xdR+pb;$`pXSIiewuaC&To zF!phGlVYfQwh8h9$%iS7+sR%Q+Vc&GRg3Dx&G^(=cX>aI-<%DGUWV05fQb~iD6khR z+4WFIhqs{IZtvOWATeHeW>w)9_?rta$YDy=#>-{tv-HB;nHTj3YO)*n;70MzCgFKG z$DGn*AY!aB-8Ul&lV`V#kD@Nfi9%6MlG?OL@m9;7R{Y&8#65A=WRCSZg2$liFsxoEAo}RndUK^ zl9*N^TbT3=W--_2;Kaj11#GZnzT!haL5Rh-AJ}kgdltD;e)Lp8Rtch^T`0UAv+y<*?Tdr^8W2{mJKW}WLjM7gg}F%%`af9UrB9xIaM*-<2Xg9{-;LbaR2GWBd=Ej z-4Tu1I=4S~s4ibamTDI5dyqV49eUGM1HQ^w(m>8SVs$A+D|L}E+dT6Py4wqX+IBC! z1xP2;W;Iq z$K0#Ho!qedAf$iU2DLGrbu)s*9udYp7h&y~py& z^r8dZ={_hAn%ZSnlofkiwn;Gy?=})YdwuQ^JT)0`nSEcIU?gfph4A7HY4Zv(J9p77 z#MjmMT#eJ6FfuI^_ljw3=dYvC~g&zIv;v91h+X9nli!xZ*ULFWT0y z9gZvfvUs47pPnaK<^d3`QVY`ddAmh&&rn6zzDN7s7T*nwF_l~` z^2~nsBTXYKU7isxQ>yi^I{Y_vuFYG21$l5?vCbfTu%{&sQ1%tMR2F*@Mf}%o0CZ!S zeP4+-9yFtZIo#Jf`z#?oZJj9Ph%CV@APyE)DLDq}!WocDR4iye$t(#@CYgcj-mIaP z2L0<@$tfV`hD zdJ)=&pn6|ZywE9=&nmoPd-BJNSJ?PPrbYtb(5}d;yPp>kfs_!QYybL2;P`qumy1L# zKoe{zXjxhDqI!~1Q&?tbfgxeJS@GhHl#G~ye0bac(kLhUB36lUwQGCWUULDoeJhdLwW#h^qnoS8+vj2H_w0V^G3q3`7xLLq(T*k+ zt}cxWdxNQ_8UJP&W9o5&$7pVeQ?#?Xkf8>gJ$;WS74_IPovo83C+Y&cK>~oIQx(dO%6fwK?tG??X%?FKS8;QG3z^ zK)KVUhpvKrzqoOQqj~O#SjrtXr7qX2Dcz6~PFJ+9pmc{#4AbooU)9T027?gZlOJdO zOl|O}n46pH7gnyki>ai|Blymg`0et3$#oj9dn6$wHWLm^SkqW}{(zxAaOV)zuhb_z z5*Y~1b+%oWslD;7=-4A>niTfc0gXyN2m97ixh&E29I!L4*c6(xs1Z^b5R{jhk$RlD zWXt@`>1fXYcRFulk6!ncXU$U1cc<_+bydG5pzGFG`40lyyN}`N$u;u*%H3V=_}r*e zP%|<`P>JN0N0E6^?m(AKZ2*>%Zu=+vR}99XndONK*K5cPj~|c4Jicu~E6TqwwLgo* zX61C?yfF-uSUCf6)AcM~5(T?YaWfXVxi`rA7G@;pm9<7%JP2uh$O|Y_k@Aiwl}_tiqfPSQjrzNM7eDt7ng` z%skR7*zO_MQ8tJ#am~?c-M85SN>#8b%>wNdz2x^>K2yY9+87&5(=c7eSs#tT=-LTj zS(2c2%UWi%vFR(5EZK(e(QL>lF36K8P>~x~C5j48%8g*KEy-{L;;7tp!;@HAhT`4f z+6(ZDP6J2ynDY<5srF@aO`YgnP3@rHJYN5@;dIT+Gu#Ud)oqJ2)UF07dAd95RVe>d zU&m8w7V=39N#;G#NJ?;n1iJH!`m(Bzzt?JuIx|k}P{_RzDykkR<~KH2po(;+C~Sfp z6kE>m0JS8!Nx$|8uM^^>1XcR6Ygpy7|}6qWHBHg}oh1Tyui?YF;KborguMQ;MIFDZd%*kFOK z6ulRg4Mu%)*tFg;aA+Y=uUWfDpOMg}aH%k>#ik+72!^t~B>`bx;YzgAoJtN4B;@}< zNHfZ0x;fxbSW@z%pkHVU{X>B3Z%dl)4-Sn`4`{nus;ychMZBwO^K9|^%;Z?ri8#Cp zo&6N;unA9m`)%{7cp`W^VR5VcG!EZylUB)2c(@E~(=9XYiAw4DnXfG;7%t8|KS{g6 zO)7@x2 zazpSDjYE2-R}zQIklqn>Y9=`&}93IZkc-# z%f?%B1TSa0N~QKUuRXbA#`<4?nOg@2Ff|?KUpbKmfalrHUw3($aV0Qcbli_sWe);W zd6JHu(inw+gLIkFez z7RWIY6O&D5vMoMRKP8Z47tEeXcHlCTZ=uW5JwC!zTmK70qmaCV zb}1^0TK{?mKRSoMb*Zswg4L6F#k89B(WJr7+g@MKa`*(+*`x1ZyJU|;O-YxiC3}-} z&^v97;X}1S!t==^QMMb@vn~AMCkCVYba?h^Y(~n4Gu5^54YO^7{fM9@(bVL231rG- zTs;bCUm|$L2sG^|sLZ1zYq+BFb;h^2#@kWVihq^v{y4m`+PO1;=T(Yx0}^I1I-RfA zXr72(;Z>@r8%g55mQOZAOD`+umT9UDY5BD7aL1P(VrD64ab~tfPrj{8(2R-BkKEur z@f~u)pf9biyE1pgeqbuj5s>5}tum*B8llKBJbSECO`uc3`6}(z@TZ|#-`qE0bz%`I zD$Z%lx;~{2V_xRTrN0`l3()rE8hiLgWTRIgwKR)XFWlJ2*_^4b3<`N_^gmFuyFjSV z6Sq%U#CpEJ^PIX;Uvby1xJLMyrPkV1uvj0Ry(s7(1<`Lj?$_F*k#qzlkC3)yndNu* zIuM+GwTE_oyQ*QIajP9&F2*Dw#%R3x(Iz-wsO^u*J|w?Xl(i1m!dMg>-7;hZt*u5z z&wn-){umEOjAj6$B#3TfvQviOsZk+f%NNIAPdme>=?^c}kE!0nOCk+1hnoBEy_ITc!t9G(vJ$f}#q$8OFaB8pWn%;TX08g7gVo2ZkS1?o)< z8v9d_Xgu8Ff)mU@m7~SU8mFpErIdJE847pjV7{}g`PiU4VD*o>1IIYg#pD6Hx)yu+ zMr{*KGCpYx{f4?}YaN}n?CM`MH29LQW#%A|cqIh}F@ju*+x9a&eY@Pn4@!ic)`*-f zR}&0$0F_#1{}$E#hGFE3hV18ervY-7-6!J^Ms^g-^K5pYc_>8I9JR;EJX+&oUj;Oe z!XH)T^VF{>IWqR?y+hDEAX8v~T0g9lJKWMaR;d0i>TI!RQ>rWju^&w4=8#Ef#9JMS zW3YM7ZX6n*Bpqe)3uZ%kZ!R~<BF1u{qDEXv>W}!C&ax_BS&4 z(Y2riH?<52%^v$=aFh3>^;_dc0nBuMx1k;k9E{$9mEVmmt!>wNIk9EW)`Z`H8{9zTnkSZRK0%m&h0fTApn`25|ait`gxa*4v+MlwkfL*U`SJs zKl+5!dW|%Q^Zky+!MW+O`9H^w~7$<3Vlpsy6P{&ZzGfk*!Hwbf$6Uky*|IdYN5QL)*9SlnGCUAuM|l^nlS! z#t#Gv-K4AjH$y(|tx@bUYq_;wHvGwlv}_b}T>F$JS3&6G2H>eeVi7Zc>rW%08miP8 zAe0BDNi~Wanziok&(YXsdubCzzKI?iKLx{5lf}gCq{Xr{PW!-c`I)Bu`B$8gjWX>H zzX&Abo!{bwz>^8_XScQ5Cl797F%D75+bqC{&l`A&<@nm|u?t-M5~Qa~31a zXbhnu^7I_dKdb0?4PRx=b=Fz7M`*_Q(HJo9xxJ#PmmZz_j4Jej-5@zNA^?{M7_#Rx ztORE}`aJ@@Ilz?Q=V z)J)rDwa&?l|D$Ce3X%ulS;gtQ{NL2zt+H5iVxfL|`S{0l=wIzJg1>2E&Al*x!h2vK zPDo*#z9XIC5T3~QUano3nCJR3e1PQRl>RGdyQY4xJk)~g2}Pro2G942>xSvbi3AUg zqH<1(=rpKKTFs8sI3L(4uDtI{YOHII_Ez8>*S!!AbtSbg3iEdbKZ>y!v3GC?;sMjm zr;9t?$D)`tH8mwe5zp=6{JkIlX18D$aNp5zuv76Hm(^iO-w~;1gFTk!n=xUB=#0=A zk^&>WeV?%uryHS5OSzc6jK~3n?R9Fsy0l2YVMVaCO_+J7G5}z3v#;7ldeL5b`BdNN zfllN7ThYJ%`ekf}5Ando=9ozSD!JWDON#&~E~I*qxz1LBbbj?m$@=V+@Kq1HF{B}(t-pLh=wK{QTo4M{B*@k&!ev{uR|b}iwdKd-Lmoj|R( zHq?SE(y!B6s)^E{w$K$FzgLp__+BXUZCWK&FOEpnTlN`(m0ZyZ0X5f`Wf?E-1TGb**d!+8ngPGLprNHWb*xOco_q+&Z9=nT)!-VzO%pY^V@c zly!l)Gv!1B$&@5ZB<8ww7EVn-`9q{QOQzUM|kD%gtO8hQ9J%_5>B&sa+`RBP}*> z3h|Zg)5`eLFqH~t&COWYz)7QZ=aOWm^%leXlK2b}gH|o@x`<8({I=H&X@lAhllu05 zs}x8B+ElJ?H7NBaNMmbSVcxv)&1VKaJP97~j6PZQ*>UUl-Lr_X^cw<+Vng+tV`tK8 z#*xhoF816Y{?)e-d1-w)5K)GZ11VGINH0ULO~-VjAA&_BFS{@nPjyIwD+ zw(yq9gxdCtZUR#aU_|)s5&q&xN*l!=gp$fJgR&LSjZR2~MqP9M9`&q(LoR z)|f@90>Cl?jou?QgXeeQgx~}rIDaldwJy!ek#pc4!B+HV9XR3Q16ya&l6ziJg}yW| z6A=;|{Gd5qgw`|ANb`0YBZ{Db1D&1#EWYr7yoxAp&i_V(kNC$4z+-bWMLBlawt^8+ zt_IT3cePcwKe+74yee7GbNTS%HH*b+x{bgU(@aSgO@e#2~I5ycV# zAwt=Bb#z3@UFXOEx|WFx@nS5&;R;`x#dfpN+G~I6VRp%II0K!;L}qHO=#+h2leP6P#bJVb;^A!SKlR>HOFns#l9tP=onX6S~uC_T{2%ZdNfDCR$r=r7)_S< zb-K~2y8M&M_1yPriJ5YZ#gUihAMG_;cx>6CBV)|I$YrAIaZ7TIB!m`(cc#h61JNG!Tp#YH8xVBjkv;=kX(F^|O!D)G+$r1)pqX9x}IeN6QPQ7V#x{pW9^Y-JCGZ&=caj{Tx(~ zYRxKN5UU|`xf(EAbA;3XEV)m~1abkYyI};}oZQ!=3U#)QRYGpZ2scEfYkCJ48 zT(il6&|ONE{+PpWT|}{AVI6iC&JYloZk9%FDQ%6KANbK%g?+I-BneO(Qx(;<-*~W+ z5TAKAwtYP&*w~t4Rnf#K3F~>?+T@@kVPTz5SgPv;Ekzg}viiht-(+E4l;5Lng1}gD zEOv#pVzD|uUSuFJuf8O0iWNE6}HYksi?(mxHpobGtUzy3RD%Nb{KM@Qyxu%^ARP@!>|GrGb zaz-R%=`hUcw4J39Iwj{)2t~=?C3#CpH>FE`v0c)+`pqRSdJc|0IVYREY^flT$C*xm zI7IIKoSG z+GFC_?yu1Bpnq$<{G;d*2d)C1Z00XEdd?SX@$j^Eh_}@&)8q4L{iPs4xb7P9e(LPP zhR@=<^+JtK43ZQZy#2cpsXe*LkGO+G=zAoRNB?CTs9EWWXar4A4QBO8>Wk?nUNWFGSec8;8UUkUVprx zvBEQj53<-q$^1s+3M8f_xuzmxOElZ3))%ze$I0e#0Yz43;E=}zZT{Q&SeGIRSiAF< z^9;%xx{51}El=89x7&vgr6~G77t9^ccjIs_o%DDvoK2!qs*@htp!k5B$C@S0v?{<# zQG2jAwD*!X7A+yu8G21S%dq%uV-^axInA7l>9-nuK~%U;=c)*z`fhn$QO^oSiezvAsz>DC@+M|B`dV)fi|Hos|=0mA+gn> zQsfC8p?+KdE!WYcfi*=q5Ze$Bu3XWt7cDBYqM}!CHZBnp0#8Yl6iPB(J>8UOi_)ar>_a zm~J&UxATe4O=lI|btct^Wi&JLKL`bOldcNF8|vBRfkV$b>gh!%-Sx2%f0H~ryn&=> zT_aIywrkn{ChF)Rv}e_C6oW39SP~P@SzWMQjO7e`7llCqQ*Lmvk6Sq;!@2LVIW*Pr z90$&&yclXOmL1o)H8w&%N*p8JkG*u?8Q!_*xTavPT6P@Khh2hw7DOUf)({aiUrnRCYqDCl;`6|3%D3I7v@-lLxKmq-_HK! zNyJGWp2|5u__qsiGxr#_?KG9Y8ZK#^O3lh4W-TZ^qj&HPmtVGe?gh!#L%aARHbIv+ z3@UD1zk(|uqx*rDoN_uX;&_>=CR=0814srLp}oFOiLI0rhgRm*JVuY0!g_-A)U{DtJTwb_h8|}j&yn93=u>GsO64dhmZeB9%CMA_tQif ziaG+qhV@62qjRUPM~Ra>1lkMIn5Mgw86%P%yY&Jn7olP;6ccOJnQs+UP3$?G_& zv|$p14yd{QU$~6Vn9I9(;d)9lKR%c!;y=Eza~>NLxn@IMz?S@j@M1CR(p~vU0jXh* z`}jp-VSjnDufL@23o7unJ#M-V@&}sb0fE;Yg6cHkZW0QRaG4m3ZH3_vRNZdw*5u0w z2!2>es^Fvv)1AU}1&JXZ&FonCfZ4_S30Sp4l4p%BK+$SEi%DTC`fHmURX!&uyA}F5 z$iC-#^0e4!(Bu56xikV}WpI$CqWrZ?6=K!F)I<)8Us-)=U8Bw`T~wu1VK<;b^|s^; zkDGa!!)^!alJq|Q)VzV9CAISYX0HxRryuM}%yt;x*5qa^7Oqnav7a$XqHi zQDCxyGy=rIzv@Ky*wQp-X#(Z0;bL>%>z3Yn=7||Y-8U&|@{=S6Texn1Wo-$^dt%LX zLITlS!&~FUxZ}72(P^!c80M&Ag&scp+Eu?ez-3qG>zDj8voagPYRY2v?Oa*-^uAMW zQ(_ay9OtOA*6TFe)WdC7C;T|{wW~;`iQf_%TbkH_3z01ZGJR-sJY={bGA%7PeNVlf z>_=*!3MF3u%0r{0$h17Y#z){6MIa$ftu!`nYL!iYgg7X(VA=%<+al~ zQexAsz%_2hvdw8EM}X?Qo`8|uHKN0256gXCZx=836#+g^X@;t_H>^fK+wL^i{6}sMFa=+hwt|LZ>QKkF(JgoC7jz6+kamMQCn2ps2Pn zLQ?CmqZ=3Xq`SN%*);{hoK_bJg(2p~W${?7pg1gjoh;OVE7DY0fIq>rN5HS)*&|eH zRMGS_YDrvRdKoc%WP13Z27<_6eYpS42b~Hiu}Ao0wOmHH`N$4jB{JA0dSz2BZO1cN zi_aVV@rzo5a~(OpbLP!-q+_UF^GO}A(#$yXcZv!xq9q`P3GNb*@n{2xv;T9$?$`1A z07cjBFUu{?9akDm4F@ihbhqQ$`XUBJ((|NF1m78dhzzTsn%*mkS8PeXONNTO^1 zWEdxBgpiO=&csMAJ&Ek*F+3up(+RE#kxG|7C3$!dm3EdMZO9|}#RkHxP$C1@#8O&fJG+?)jpB*4#G)%FhZcmQ263Pj(E{kAi5f zFa5qv2v<3)(yddpMza_v6Bw5AxSNV@_pUq9R8@~C2>Pef_^)4`su2c=__OAp)D`YvzvL0=|8)fC2uXuT7wU)7VtggiJWFb|8$#V4~((l`c^amIjGg>dEOY_|2;-(57Oh&&yVXHaxS-SW_zD|IYWj>$TC%$+0e zDn!zv-#!dzKU^sBXt|n&`pH6`ed?@P-kN1mlh+3&cHsbsbEKO;)Yg-vcG*@_Xc_uQ z`D2qa$H5x)Xi7t$xgfq5pGf^`!dU(w5Ggeyp~^CYs64y26%yqDVg6u@G!jF1Vw>f6 zUcy#Kcr>4e3{O$V7VJ@+C(qV~p$BMR%uTk^t73`AqF`7{DY3|6V53OL>>3Q4e~7U6$0trxY@(UgaW}1_Oo}A981TyhZ;YA$ z`Wo@?M?k{*jroF)e^A=F$g32SufN%H%gtOccfprYcZtc4A>a=JcCgNlJbDn-+GZEwTVVE4vWH&kP+hO$@gfvG_t6Y9k(eI(I^ha`iK!}re_-v_M>z2K z6!FRIGj$H`rk`*|F%O*m9?{+fa}qs%=@$`YM+ zbxsA|-0HPL`)uE4k0hp-V)T5E3G4h^Nhb&yC&aj?_NxL%+K$0o2%5yeB!k@F)XqLIqWi2ku6Gs z;GJ9imz2r%vAg{TZ+U>uBOjV`uL+q}%k7tb@0i zbu!u(wECSuj5(R%CdcHIL}!vas|6@}ND`!V+;#mrT=T!Sz6RGg5kH3s_&;+s4_qo6 z1XcI_pN@wdl@pP7k9UB6`}1esm?G!}FzEmE^Z)cVF6+6&f?naenQD>gl?(m}(%OP5 z{C0XO;scAOCWpIriFvcp!DCGr(e8qS)Pr%)t!o5FZrZ-CG9Ax_U%!~3(Rl&!E)V!V zm;3qhE7^Y+{-61PihmLte&OP{#zi%V+=M15TsteT0OVUFb{36Fc6UXRx)j5sacVGP tVpz89gX!>{YufvOh`n^>SFM+iwkVgP|LLmp-#hqk5Bw)Q5cmi7KLA3pvRnWF diff --git a/public/logo_ouestware_text.svg b/public/logo_ouestware_text.svg deleted file mode 100644 index d0c8739..0000000 --- a/public/logo_ouestware_text.svg +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/ossci_logo.jpg b/public/ossci_logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ff960e378978c83b3072ab6d2df1fa5f24f573e GIT binary patch literal 3638 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 Date: Sun, 23 Feb 2025 10:04:24 -0600 Subject: [PATCH 03/11] update readme --- README.md | 12 +++++------- public/logic_tag_clusters.gexf | 4 ++-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a117d8b..641bdea 100644 --- a/README.md +++ b/README.md @@ -5,18 +5,16 @@
# Overview -DeepGit is a free, open-source web application designed to help researchers and research software engineers discover and explore research software within specific domains. - - - -# Acknowledgment - +

+ + +# Acknowledgment DeepGit is built upon [Retina](https://ouestware.gitlab.io/retina/1.0.0-beta.4/#/) developed by [OuestWare](https://www.ouestware.com/en/) # License diff --git a/public/logic_tag_clusters.gexf b/public/logic_tag_clusters.gexf index c9af326..48bf7cf 100644 --- a/public/logic_tag_clusters.gexf +++ b/public/logic_tag_clusters.gexf @@ -8,8 +8,8 @@ - - + + From 7296905de583ab6eb30fbad85604b8e84d640d6b Mon Sep 17 00:00:00 2001 From: Yilin Xia Date: Mon, 24 Feb 2025 16:29:54 -0600 Subject: [PATCH 04/11] update a few things --- package-lock.json | 2 +- package.json | 2 +- src/components/Footer.tsx | 25 ++++++++++--------------- src/views/EditionPanel.tsx | 12 ++++++------ src/views/HomeView.tsx | 6 +++--- 5 files changed, 21 insertions(+), 26 deletions(-) diff --git a/package-lock.json b/package-lock.json index a001682..160ff89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -53,7 +53,7 @@ "@types/react-linkify": "^1.0.4", "@types/react-select": "^5.0.1", "@types/react-transition-group": "^4.4.11", - "@vitejs/plugin-react-swc": "^3.7.2", + "@vitejs/plugin-react-swc": "^3.8.0", "@vitest/browser": "^2.1.6", "eslint": "^9.15.0", "eslint-plugin-react-hooks": "^5.1.0-rc.0", diff --git a/package.json b/package.json index 3ae05cb..af2f548 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "@types/react-linkify": "^1.0.4", "@types/react-select": "^5.0.1", "@types/react-transition-group": "^4.4.11", - "@vitejs/plugin-react-swc": "^3.7.2", + "@vitejs/plugin-react-swc": "^3.8.0", "@vitest/browser": "^2.1.6", "eslint": "^9.15.0", "eslint-plugin-react-hooks": "^5.1.0-rc.0", diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index a4a1ae0..39b4fda 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,6 +1,5 @@ import React, { FC } from "react"; -import { AiOutlineHeart } from "react-icons/ai"; -import { BsCodeSlash } from "react-icons/bs"; +import { FaGithub } from "react-icons/fa"; import { Link } from "react-router-dom"; import Matomo from "./Matomo"; @@ -10,29 +9,25 @@ const Footer: FC = () => ( diff --git a/src/views/EditionPanel.tsx b/src/views/EditionPanel.tsx index 58929a1..e8a456e 100644 --- a/src/views/EditionPanel.tsx +++ b/src/views/EditionPanel.tsx @@ -113,12 +113,12 @@ const EditionPanel: FC<{ isExpanded: boolean }> = ({ isExpanded }) => {

Retina logo{" "} - Welcome to Retina + /> + Welcome to DeepGit

@@ -138,7 +138,7 @@ const EditionPanel: FC<{ isExpanded: boolean }> = ({ isExpanded }) => {

{!navState.local && (

- PS: This panel is only here to help you configure Retina. Unless you specifically want it to be, it will + PS: This panel is only here to help you configure DeepGit. Unless you specifically want it to be, it will not be visible to the users you share your graph with, if you click the{" "}