diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..d337f5d
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2023 ZMT
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1b18425
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+.PHONY: install show public help sync
+
+UID:=$(shell stat -c %u $(CURDIR))
+CURRENT_BRANCH:=$(shell git branch | grep \* | cut -d ' ' -f2)
+
+install: ## one time installation
+ npm i docsify-cli -g
+
+show: ## serves website locally in http://localhost:3000/
+ docsify serve .
+
+public: sync ## pushes to main repo and publishes website
+ git push
+
+sync: ## updates current repository with latest changes in github
+ git pull
+
+help: ## This help.
+ @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
+
+.DEFAULT_GOAL := help
\ No newline at end of file
diff --git a/README.md b/README.md
index ae93ca0..bcfa764 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,14 @@
-# s4l-manual
\ No newline at end of file
+# Welcome
+
+Welcome to the **_S4L__lite_** Dashboard Manual. This user manual is intended to provide you with detailed information and background on about how to use the dashboard in **_S4L__lite_**.
+
+If you don't have a user account yet, please request your login via the [**_S4L__lite_** webpage](https://zmt.swiss/support/support/s4l-web-lite/). You can log in at https://s4l-lite.io with a valid email address and password combination.
+
+Under the ```TUTORIALS``` dashboard tab, you will find a set of pre-built read-only tutorial projects with results and scripts that illustrate how **_S4L__lite_** can be used to solve various simulation problems.
+
+For more specific technical information, please refer to the **_S4L__lite_** manual.
+
+
+
+
+
diff --git a/_footer.html b/_footer.html
new file mode 100644
index 0000000..7a199db
--- /dev/null
+++ b/_footer.html
@@ -0,0 +1,29 @@
+
+
diff --git a/_navbar.md b/_navbar.md
new file mode 100644
index 0000000..d307266
--- /dev/null
+++ b/_navbar.md
@@ -0,0 +1,19 @@
+
+
+* ZMT
+
+ * [ZMT](https://zmt.swiss/)
+
+* Powered By
+
+ * [Sim4Life](https://zmt.swiss/academic/s4l-academic/)
+ * [oSPARC](https://github.com/ITISFoundation/osparc-simcore)
+ * [Adminer](https://www.adminer.org/)
+ * [Celery](https://docs.celeryproject.org/en/stable/)
+ * [Dask](https://dask.org/)
+ * [Docker](https://www.docker.com/)
+ * [Flower](https://github.com/mher/flower)
+ * [Github](https://github.com/)
+ * [MinIO](https://min.io/)
+ * [Portainer](https://www.portainer.io/)
+ * [Redis](https://redis.io/)
diff --git a/_sidebar.md b/_sidebar.md
new file mode 100644
index 0000000..17dc17b
--- /dev/null
+++ b/_sidebar.md
@@ -0,0 +1,16 @@
+
+
+* [Welcome](README.md)
+* [What is **_S4L__lite_**](/docs/what_is_s4l_lite.md)
+* [Overview](/docs/overview/platform.md)
+ * [Landing Page](/docs/overview/landing_page.md)
+ * [Dashboard](/docs/overview/dashboard/dashboard.md)
+ * [Project Management](/docs/overview/dashboard/new_project.md)
+ * [Tutorials](/docs/overview/dashboard/tutorials.md)
+ * [Sharing and Publishing](/docs/overview/dashboard/share.md)
+ * [**_S4L__lite_** Manual](/docs/overview/s4l_lite.md)
+* [License Agreements](/docs/licensing/license.md)
+ * [Sim4Life](/docs/licensing/copyright_Sim4Life.md)
+* [Release Notes](/docs/release/releases.md)
+ * [Known Issues](/docs/release/knownbugs.md)
+* [Support](/docs/support/support.md)
diff --git a/assets/dashboard/dashboard.png b/assets/dashboard/dashboard.png
new file mode 100644
index 0000000..5f09b65
Binary files /dev/null and b/assets/dashboard/dashboard.png differ
diff --git a/assets/dashboard/new_project.png b/assets/dashboard/new_project.png
new file mode 100644
index 0000000..97cd88f
Binary files /dev/null and b/assets/dashboard/new_project.png differ
diff --git a/assets/dashboard/project_card.png b/assets/dashboard/project_card.png
new file mode 100644
index 0000000..fafd1ef
Binary files /dev/null and b/assets/dashboard/project_card.png differ
diff --git a/assets/dashboard/projects.png b/assets/dashboard/projects.png
new file mode 100644
index 0000000..3045aed
Binary files /dev/null and b/assets/dashboard/projects.png differ
diff --git a/assets/dashboard/tutorials.png b/assets/dashboard/tutorials.png
new file mode 100644
index 0000000..0e24062
Binary files /dev/null and b/assets/dashboard/tutorials.png differ
diff --git a/assets/landingpage.png b/assets/landingpage.png
new file mode 100644
index 0000000..01f92c9
Binary files /dev/null and b/assets/landingpage.png differ
diff --git a/assets/opensmash.gif b/assets/opensmash.gif
new file mode 100644
index 0000000..ea34c74
Binary files /dev/null and b/assets/opensmash.gif differ
diff --git a/assets/s4l-docs.gif b/assets/s4l-docs.gif
new file mode 100644
index 0000000..bcb0fa6
Binary files /dev/null and b/assets/s4l-docs.gif differ
diff --git a/assets/s4lintro.gif b/assets/s4lintro.gif
new file mode 100644
index 0000000..6656d62
Binary files /dev/null and b/assets/s4lintro.gif differ
diff --git a/assets/s4llite-white.png b/assets/s4llite-white.png
new file mode 100644
index 0000000..9210c52
Binary files /dev/null and b/assets/s4llite-white.png differ
diff --git a/assets/share.png b/assets/share.png
new file mode 100644
index 0000000..96a4b72
Binary files /dev/null and b/assets/share.png differ
diff --git a/assets/tutorials.png b/assets/tutorials.png
new file mode 100644
index 0000000..ce60625
Binary files /dev/null and b/assets/tutorials.png differ
diff --git a/docs/licensing/copyright_Sim4Life.html b/docs/licensing/copyright_Sim4Life.html
new file mode 100644
index 0000000..501f3fd
--- /dev/null
+++ b/docs/licensing/copyright_Sim4Life.html
@@ -0,0 +1,35043 @@
+
+
+
+
+
+End User Licence Agreement
+
+Terms and Conditions
+
+
+1. Conclusion of the Licence Agreement
+
+1.1 This End User Licence Agreement (the "Agreement") is entered into between ZMT Zürich MedTech AG ("ZMT") and you (“Customer”). The conditions of the use by Customer of the Software, the Model Data and the Documentation (altogether the “Licenced Rights”) are set forth in these Terms and Conditions and in the invoice received from ZMT or ZMT’s representative or distributor (the “Invoice”).
+
+1.2 In this Agreement, Software, Model Data and Documentation shall mean:
+
+1.2.1 “Software” means the software programme(s) originating from, or directly or indirectly distributed by, ZMT and installed, used or reproduced by Customer.
+
+1.2.2 “Model Data” means:
+
+a. the CAD data of virtual biophysical models of one or more humans and parts of humans designed for computational simulations, identified by ZMT as Virtual Population Models (the “ViP Models”); and
+
+b. other CAD data for simulation purposes;
+
+including the related physical and biological properties of materials including tissues, altogether originating from, or directly or indirectly distributed by, ZMT and installed, used or reproduced by Customer.
+
+1.2.3 “Documentation” means any documentation, instructions and reference materials related to the Software and/or to the Model Data provided to Customer in any form whatsoever.
+
+1.3 Customer’s right to install, use and reproduce the Licenced Rights is conditioned on acceptance of, and compliance with, these Terms and Conditions. By installing, using or reproducing any of the Licenced Rights the Customer is deemed to have accepted these Terms and Conditions.
+
+1.4 If Customer does not accept these Terms and Conditions, he shall not install, use or reproduce the Licenced Rights and return them to ZMT. Furthermore, Customer shall cease any and all attempts to download, install, use or reproduce any of the Licenced Rights and delete any and all Licenced Rights downloaded or installed.
+
+1.5 The Licenced Rights are protected by copyright.
+
+
+2. Grant of the Licence
+
+2.1 ZMT grants Customer a non-exclusive right to use the Licenced Rights for Customer's own purposes (the “Licence”).
+
+2.2 Use of the Software: Customer shall be entitled to use the Licenced Rights for one of the following purposes only, as set forth in the Invoice:
+
+2.2.1 for commercial purposes which shall include all use in accordance with this Agreement for research, development and commercial purposes of Customer.
+
+2.2.2 for academic purposes, which shall include the following use by the Customer in accordance with this Agreement:
+
+a. use solely for purposes of non-profit research financed substantially from public sources. In particular, academic purposes shall not allow the use of the Licenced Rights by Customer for research commissioned by third parties who pursue a commercial purpose; and
+
+b. use for teaching at Customer”s institution, including the use by students enrolled at Customer’s institution who work on a diploma or doctoral thesis, as long as the use is restricted to the work on such diploma or doctoral thesis.
+
+2.2.3 for evaluation purposes, which shall include all use by Customer in accordance with this Agreement solely to evaluate and test the functionality of the Licenced Rights. In particular, the evaluation purpose shall not allow the use of the Licenced Rights for any commercial purpose or any research financed by third parties who pursue a commercial purpose.
+
+2.3 Floating Licence: Customer is entitled to:
+
+2.3.1 install the licence key provided by ZMT for the Licenced Rights (the “Licence Key”) on the server identified in the Invoice (the “Licence Server”) which shall be located at the location identified in the Invoice (the “Licence Server Location”);
+
+2.3.2 install the Licenced Rights or portions thereof on one or more computers, provided that the use of the individual installations are controlled by the Licence Key; and
+
+2.3.3 allow the concurrent use of the Licenced Rights in the number of instances not exceeding the number of instances of concurrent use set forth in the Invoice;
+
+2.3.4 allow the use of the Licenced Rights by users who shall be physically present at all times during their use within a geographic area with a radius of fifty (50) kilometres around the Licence Server Location. If Customer is granted a Licence for research purposes, only access on the campus of the Customer’s institution shall be allowed.
+
+2.4 Customer shall be entitled to make a backup copy of the Licenced Rights as reasonably necessary to support the use of the Licenced Rights in accordance with this Agreement.
+
+2.5 The Licenced Rights may contain software programmes, libraries, model data and other components which have been provided by third parties (“Third Party Materials”). Third Party Materials may be sub-licenced under particular terms applicable thereto as set forth in the about.txt file included with the Licenced Rights or the Third Party Materials. Terms applicable to Third Party Materials shall prevail over these Terms and Conditions.
+
+2.6 The Licence shall only be valid if Customer has made in time and in full all payments pursuant to the Invoice.
+
+2.7 ZMT may use various technologies to authenticate and validate the use by Customer of the Licenced Rights and to process related information in ZMT’s information systems. Customer allows the use of such technologies.
+
+
+3. Restrictions
+
+3.1 Customer may not transfer, licence, sub-licence, rent, sell, or distribute the Licenced Rights in whole or in part to any third party or make it available to any third party on a time sharing or any other basis.
+
+3.2 Customer will obtain only object code of the Software and shall not modify, isolate, disassemble, decompile or otherwise reverse-engineer the Software or create any derivative, compilation or collective work involving the Software.
+
+3.3 When the Model Data are loaded, they may neither be read from the computer memory or graphics card memory nor be intercepted on the data bus.
+
+3.4 In the event that ZMT is informed that one or more of the persons, on whose personal data any of the Model Data is based, have withdrawn their consent to any further use of their data in full or in part, ZMT will inform Customer that any further use whatsoever of the respective Model Data is strictly forbidden.
+
+3.5 Customer shall not remove, obscure or alter notices as to the proprietary rights of ZMT and its Licensors, serial numbers or other identifiers from the Licenced Rights or any copies of the Licenced Rights Customer makes or uses.
+
+3.6 Customer shall not relocate the Licence Server, nor make it available for use in instances exceeding the number of concurrent instances of use set forth in the Invoice or located outside the radius. Should the Customer wish to do any of those, he shall obtain the prior express and written consent of ZMT and, if applicable, pay the additional Licence Fee.
+
+3.7 Customer shall take appropriate action, inter alia by instruction, agreement or otherwise, to ensure that any persons permitted to access the Licenced Rights comply with the terms of this Agreement.
+
+
+4. Delivery
+
+4.1 ZMT will make available the Licenced Rights, as set forth in the Invoice:
+
+4.1.1 either for download from the download server notified by ZMT;
+
+4.1.2 or by delivery on a tangible medium (“Tangible Medium”), whereby the property to the Tangible Medium shall remain with ZMT at all times during the term of the Licence and thereafter.
+
+4.2 In addition, ZMT will make available the following:
+
+a. the Licence Key for download from the download server by sending a message to Customer containing the download link; and
+
+b. the dongle (“Dongle”), if the Licence Key is programmed for identity verification by means of a Dongle. The property to the Dongle shall remain with ZMT at all times during the term of the Licence and thereafter.
+
+4.3 It shall be the task of Customer to install and set up the Licenced Rights on the Licence Server.
+
+
+5. Results
+
+5.1 “Results” shall be deemed any results, data or visualisations obtained inter alia through use of the Model Data, irrespective of whether they are or may be protected by intellectual property regulations (e.g. as derived work).
+
+5.2 Any Results obtained inter alia through the use of any ViP Model may only be published in scientific journals, on scientific conferences or in submissions to regulators.
+
+5.3 If any Results obtained inter alia through the use of any ViP Model are published, reference shall be made in the publication to IT’IS Foundation (www.itis.ethz.ch/vip) and to the following paper:
+
+Christ A, Kainz W, Hahn E G, Honegger K, Zefferer M, Neufeld E, Rascher W, Janka R, Bautz W, Chen J, Kiefer B, Schmitt P, Hollenbach H P, Shen J X, Oberle M, Szczerba D, Kam A, Guag J W, Kuster N: The Virtual Family - Development of surface-based anatomical models of two adults and two children for dosimetric simulations, Physics in Medicine and Biology, 55(2): N23-N38, 2010.
+
+5.4 Any Results obtained inter alia through the use of any ViP Model may only be made accessible to any third party in the form of images if the faces and genitals are disguised in appropriate manner.
+
+5.5 Any Results may only be used within the limits which apply to the Licence. Any other use requires the prior express and written consent of ZMT.
+
+
+6. Intellectual Property
+
+6.1 ZMT and its Licensors are and shall remain the sole owners of any and all intellectual property rights in the Licenced Rights. This Agreement does not convey nor shall Customer attempt to obtain any title to any intellectual property right in the Licenced Rights.
+
+6.2 ZMT shall indemnify Customer against all claims and related reasonable expenses arising out of any infringement of any intellectual property right to the extent that it is based on the use of the Licenced Rights in accordance with this Agreement, provided that:
+
+6.2.1 Customer promptly notifies ZMT in writing of such claims being made;
+
+6.2.2 ZMT has sole control of any litigation and settlement negotiations on such claims;
+
+6.2.3 Customer provides all reasonable assistance and information necessary to defend such claims.
+
+6.3 Should any such claim be upheld by a court having competent jurisdiction or in a settlement to which ZMT consents, or in the event that ZMT deems it appropriate, ZMT shall, at its discretion:
+
+6.3.1 procure for Customer the right to continue using the Licenced Rights;
+
+6.3.2 replace or modify the Licenced Rights to be non-infringing; or
+
+6.3.3 terminate the Licence and refund to Customer all Licence Fees paid that have not been used on a pro rata basis from delivery to the end of the term of the Licence as set forth in the Invoice. If the Licence is perpetual, the refund shall be calculated on the basis of a term of the Licence of five (5) years.
+
+6.4 This clause 6 states ZMT's entire liability for intellectual property right infringement.
+
+
+7. Term of the Licence
+
+7.1 Unless terminated earlier according to these Terms and Conditions, the term of the Licence shall be as follows:
+
+7.1.1 as long as Customer uses the Licenced Rights (perpetual), if so provided in the Invoice; or
+
+7.1.2 for a limited term, if so provided in the Invoice. Licences for a limited term may, upon request of Customer, be extended for a new term by paying the then current Licence Fee as invoiced by ZMT; or
+
+7.1.3 Licences for evaluation purposes shall be limited to the term programmed in the Licence Key, but shall not exceed thirty (30) days even if programmed in the Licence Key for a longer term. ZMT may terminate the Licence for evaluation purposes at any time and in its sole discretion.
+
+7.3 The Licence Key provides, inter alia, for certain periods of use. If the Licence is for a term longer than the programming on the Licence Key, Customer may require ZMT to provide a Licence Key for extension of the programmed term prior to the expiry of each Licence Key programming , and ZMT shall do so in due time in accordance with the terms and conditions of the Agreement.
+
+7.4 Upon termination of the Licence Customer shall return the Tangible Medium and the Dongle, if applicable, to ZMT and delete all copies of the Licenced Rights on any of its installations. Upon request of ZMT Customer shall confirm in writing within ten (10) days from the request that he has complied with this obligation.
+
+
+8. Title to Support Services
+
+8.1 Perpetual Licence: In the event that the Invoice provides for a perpetual Licence, ZMT shall provide Support Services as follows:
+
+8.1.1 During the first year of the Licence, ZMT shall provide Support Services, the fee therefor being included in the Licence Fee.
+
+8.1.2 From the second year of the Licence, Customer may order Support Services as available from ZMT at then applicable rates (“Support Charge”).
+
+8.1.3 If Customer has not continuously required the Support Services and Customer desires to begin such support again, all previous periods shall be retroactively paid in full as a precondition to such Support Services being provided.
+
+8.2 Limited Term of the Licence: In the event that the Invoice provides for a limited term of the Licence, Support Services during the term of the Licence shall be included in the Licence Fee.
+
+8.3 Support Charge: ZMT is entitled to refuse any Support Services in the event that Customer has not paid the Support Charge or the Licence Fee, if the Support Charge is included in the Licence Fee.
+
+
+9. Extent of Support Services
+
+9.1 The following support services (the “Support Services”) shall be provided:
+
+9.1.1 Remote consultation pertaining to the installation and use of the Software and their interaction with hardware, operating environments and other software through telephone, electronic mail or with direct on-line access on Customer’s computer system shall be provided by ZMT’s local representative or distributor, where available, or the ZMT headquarter during normal business hours (headquarter: 9 a.m. to 6 p.m. Central European Time on Zürich working days);
+
+9.1.2 ZMT shall make commercially reasonable efforts to correct errors occurring during the operation of the Licenced Rights by providing, at ZMT's discretion:
+
+a. a workaround for any material error in the Licenced Rights which is directly attributable to ZMT;
+
+b. a temporary correction of the Licenced Rights (patching);
+
+c. a permanent correction of the Licenced Rights (update);
+
+d. a new release of the Licenced Rights as such release becomes available.
+
+9.2 If Customer requires correcting errors, he shall report to ZMT in sufficient detail the error occurred including the error message(s) shown and other relevant information.
+
+9.3 ZMT shall be entitled to require at its discretion that Customer shall install certain updates or new releases designated by ZMT.
+
+9.4 Patches, updates and new releases of the Licenced Rights may be provided under revised Terms and Conditions. Such revised Terms and conditions shall be effective upon installation of such workaround, patch, update or new release. If no revised Terms and Conditions apply, all workarounds, patches, updates and new releases to the Licenced Rights will be provided by ZMT under the terms of the Licence set forth in of this Agreement.
+
+9.5 Support Services shall not include, in particular, the following, whereby such services may be available from ZMT at its then current rates:
+
+9.5.1 setting up the Licenced Rights in the environment of the Customer;
+
+9.5.2 correcting problems resulting from any modification to the Licenced Rights made by Customer or any third party;
+
+9.5.3 support for the projects of the Customer for which the Licenced Rights are used.
+
+9.6 Support Services are only provided for the newest releases of the Licenced Rights. ZMT shall not be obliged to support any other than the newest releases of the Licenced Rights.
+
+9.7 ZMT may provide limited support for Licences for research purposes as it may define at its discretion.
+
+
+10. Licence Fee and Support Charge
+
+10.1 In consideration of the grant of the Licence, Customer shall pay to ZMT a licence fee (the “Licence Fee”) as set forth in the Invoice. In consideration of the Support Services, Customer shall pay to ZMT the Support Charge if the Support Charge is, pursuant to these Terms and Conditions, not included in the Licence Fee.
+
+10.2 The Licence Fee and the Support Charge are exclusive of all taxes, custom duties, insurance, shipping, packing and other charges and expenses.
+
+10.3 The Licence Fee and the Support Charge and all additional charges such as taxes and other charges and expenses as applicable shall be payable as set forth in the Invoice.
+
+
+11. Warranty
+
+11.1 Customer only is responsible for the selection and the use of the Licenced Rights as well as of the hardware, other software programmes, other model data and other components to be used together with the Licenced Rights.
+
+11.2 With respect to the Software and the Model Data licenced for commercial or academic purposes, the warranty of ZMT is strictly limited to the following:
+
+11.2.1 the Software and the Model Data will substantially conform to the description given in the Documentation, provided that Customer meets the requirements as to the hardware and software environment set forth in the Documentation. ZMT makes no further or other warranties, express or implied, with respect to the Software and the Model Data or their use and operation alone or in conjunction with any other software, other hardware and any services provided under this Agreement. ZMT specifically disclaims any warranty of fitness of the Software and the Model Data for any particular purpose, even if Customer has informed ZMT of such purpose.
+
+11.2.2 In lieu of any other remedy for breach of warranty ZMT makes available Support Services as set out in this Agreement.
+
+11.3 Licenced Rights licenced for evaluation purposes may not be fully functional and the Customer assumes the entire risk as to the use, the results and the performance of the Licenced Rights. ZMT does not provide any warranty whatsoever for Licenced Rights licenced for evaluation purposes.
+
+11.4 With respect to the Tangible Medium on which the Licenced Rights are delivered, if applicable, ZMT only warrants that the Tangible Medium will be free from defects in materials and workmanship under normal use and service. Customer shall within ten (10) days from receipt examine the Tangible Medium and immediately give notice to ZMT of any defects. ZMT will replace such defective Tangible Medium. This clause 11.4 also applies to the replacement Tangible Medium.
+
+11.5 Furthermore, the warranty is voided in full if any dysfunction results from misapplication, utilisation of an improper hardware or software environment, unauthorised maintenance or by any breach of this Agreement.
+
+11.6 Nothing set forth in this Agreement with respect to Support Services shall be construed as expanding or adding to the warranty otherwise provided in this Agreement.
+
+11.7 ZMT does not provide any warranty other than expressly set forth in this clause 11.
+
+
+12. Liability
+
+ZMT shall be liable to Customer only for damage directly caused by breach of this Agreement by wilful intent or gross negligence and its liability shall not in any event exceed the amounts received as Licence Fee under this Agreement. All further liability shall be excluded; in particular, ZMT shall not in any event be liable for any loss of profits, loss of business, loss of use or data, interruption of business, or for indirect, special, incidental or consequential damage or injury of any kind.
+
+
+13. Confidentiality
+
+13.1 The Licenced Rights may contain information, ideas, concepts and procedures that are business secrets of ZMT. Customer agrees not to disclose Confidential Information or any other of ZMT's business secrets (altogether the “Confidential Information”) in full or in part to any third party without ZMT's prior express and written consent.
+
+13.2 Customer may give access to Confidential Information only to its employees and students and only on a need-to-know basis. Customer shall use all due care to keep Confidential Information confidential.
+
+13.3 The obligations set out in this clause 13 shall survive the termination of this Agreement.
+
+
+14. Payment Terms
+
+14.1 Payments to ZMT or any of its agents under this Agreement shall be made in the currency set forth in the Invoice.
+
+14.2 There shall be no reduction or set-off of the Licence Fee, the Support Charge or any other sum due to ZMT or any of its representatives or distributors under this Agreement for any claims of Customer or its affiliates against ZMT, its affiliates, representatives or distributors nor for any other reason.
+
+14.3 If any sum due to ZMT or any of its representatives or distributors under this Agreement should become overdue, ZMT may, without declaring Customer to be in default, charge Customer default interest of 8.5 per cent per annum on the overdue amount.
+
+
+15. Termination
+
+15.1 This Agreement and all Licences granted hereunder may be terminated with immediate effect:
+
+15.1.1 by ZMT if Customer fails to pay any sums due under this Agreement for more than thirty (30) days after such sum becomes due and payable, provided that ZMT has once reminded Customer of the default;
+
+15.1.2 by either Party if any breach or non-performance of the Agreement by the other Party affecting the first Party to such a degree that continuation of the Agreement can in good faith no longer be expected.
+
+15.2 Upon termination of this Agreement, the Licence shall be terminated. Clause 7.4 above shall apply. Customer may not claim reimbursement of Licence Fees and Support Charges not used at the time of termination.
+
+
+16. Miscellaneous
+
+16.1 Assignment: Customer shall not assign or transfer the Licence or this Agreement as a whole or in part to any third party without the prior express and written consent of ZMT.
+
+16.2 Entire Agreement: The Invoice and these Terms and Conditions encompass the entire understanding between the Parties with respect to the subject matter of this Agreement; there are no representations, warranties, covenants, agreements or collateral understandings other than expressly set forth in the Invoice and in these Terms and Conditions.
+
+16.3 Order and Invoice: In the event of differences between Customer's order and the Invoice, the Invoice shall prevail.
+
+16.4 Waivers: Any waiver of any right of ZMT under this Agreement shall only be effective if expressly communicated by ZMT to Customer in writing, with reference to this Agreement.
+
+16.5 Severability: If any provision of this Agreement is held to be invalid or unenforceable in whole or in part, the invalid or unenforceable provision shall be replaced by a valid and enforceable provision having a legal and economic effect which will be as similar as possible to the invalid or unenforceable provision.
+
+
+17. Applicable Law and Jurisdiction
+
+17.1 This Agreement shall be governed by the substantive Swiss Law, to the exclusion of the UN Convention on Contracts for the International Sale of Goods of 11 April 1980.
+
+17.2 All disputes arising out of or in connection with this Agreement shall, to the exclusion of any other courts, be settled by the competent courts of Zürich 4, Switzerland.
+
+- 12 -
+
+
+Version from 24-08-2022
+
+
+
3Dconnexion Software Development Kit version 3.0.2 R7538
+3Dconnexion Software Development Kit License Agreement
+
+
+This 3Dconnexion Software Development Kit ("3Dconnexion SDK") is provided to you by 3Dconnexion in consideration of your acceptance to the installation, use, reproduction and distribution terms as stated below. If you do not accept these terms, you should not continue with the installation, use, reproduction and distribution of the 3Dconnexion SDK.
+
+
+IMPORTANT - READ CAREFULLY BEFORE DOWNLOADING, COPYING, INSTALLING, OR USING THE 3DCONNEXION SDK
+
+
+1. License Grant:
+
+
+Subject to the terms and conditions contained in this Agreement, 3Dconnexion grants to you a personal limited non-exclusive, nontransferable, nonsublicensable, world-wide, royalty-free, revocable license to install, use, copy, modify and distribute in object code form the 3Dconnexion SDK; provided that no license is granted under any patents that may be or later become infringed by your modifications or derivative works in which the 3Dconnexion SDK may be incorporated.
+
+
+2. Attribution Requirements and Trademark License:
+
+
+2.1 In the format set forth below, you must provide attribution to 3Dconnexion in one of the following locations: (1) the "About" or "Info" box menu items (or equivalent) of your software application, (2) the "Read me" files, or (3) on your web site:
+
+
+Development tools and related technology provided under license from 3Dconnexion.
+
+
+THE 3DCONNEXION SDK AND ALL MATERIALS PROVIDED HEREUNDER BY 3DCONNEXION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. 3DCONNEXION AND ITS AFFILIATED COMPANIES MAKE NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT REGARDING THE 3DCONNEXION SDK AND ALL MATERIALS OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH ANY PRODUCT.
+
+
+IN NO EVENT SHALL 3DCONNEXION OR ANY OF ITS AFFILIATED COMPANIES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF USE, REPRODUCTION, MODIFICATON AND/OR DISTRIBUTION, OR THE INABILITY TO USE, ANY PORTION OF THE 3DCONNEXION SDK OR ITS DERIVATIVES OR MODIFICATIONS, INCLUDING THE DEVELOPER FORCE FEEDBACK GAME, AND ANY OF THE MATERIALS PROVIDED HEREUNDER BY 3DCONNEXION, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF 3DCONNEXION OR ANY OF ITS AFFILIATED COMPANIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Because some states/jurisdictions do not allow the exclusion or limitation of consequential or incidental damages, the above limitation may not apply to you.
+
+
Angularjs version 1.6.1
+The MIT License
+
+
+Copyright 2019
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
Apache Thrift version 0.13.0
+
+ Apache License
+
+ Version 2.0, January 2004
+
+ http://www.apache.org/licenses/
+
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+
+ 1. Definitions.
+
+
+ "License" shall mean the terms and conditions for use, reproduction,
+
+ and distribution as defined by Sections 1 through 9 of this document.
+
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+
+ the copyright owner that is granting the License.
+
+
+ "Legal Entity" shall mean the union of the acting entity and all
+
+ other entities that control, are controlled by, or are under common
+
+ control with that entity. For the purposes of this definition,
+
+ "control" means (i) the power, direct or indirect, to cause the
+
+ direction or management of such entity, whether by contract or
+
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+
+ exercising permissions granted by this License.
+
+
+ "Source" form shall mean the preferred form for making modifications,
+
+ including but not limited to software source code, documentation
+
+ source, and configuration files.
+
+
+ "Object" form shall mean any form resulting from mechanical
+
+ transformation or translation of a Source form, including but
+
+ not limited to compiled object code, generated documentation,
+
+ and conversions to other media types.
+
+
+ "Work" shall mean the work of authorship, whether in Source or
+
+ Object form, made available under the License, as indicated by a
+
+ copyright notice that is included in or attached to the work
+
+ (an example is provided in the Appendix below).
+
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+
+ form, that is based on (or derived from) the Work and for which the
+
+ editorial revisions, annotations, elaborations, or other modifications
+
+ represent, as a whole, an original work of authorship. For the purposes
+
+ of this License, Derivative Works shall not include works that remain
+
+ separable from, or merely link (or bind by name) to the interfaces of,
+
+ the Work and Derivative Works thereof.
+
+
+ "Contribution" shall mean any work of authorship, including
+
+ the original version of the Work and any modifications or additions
+
+ to that Work or Derivative Works thereof, that is intentionally
+
+ submitted to Licensor for inclusion in the Work by the copyright owner
+
+ or by an individual or Legal Entity authorized to submit on behalf of
+
+ the copyright owner. For the purposes of this definition, "submitted"
+
+ means any form of electronic, verbal, or written communication sent
+
+ to the Licensor or its representatives, including but not limited to
+
+ communication on electronic mailing lists, source code control systems,
+
+ and issue tracking systems that are managed by, or on behalf of, the
+
+ Licensor for the purpose of discussing and improving the Work, but
+
+ excluding communication that is conspicuously marked or otherwise
+
+ designated in writing by the copyright owner as "Not a Contribution."
+
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+
+ on behalf of whom a Contribution has been received by Licensor and
+
+ subsequently incorporated within the Work.
+
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ copyright license to reproduce, prepare Derivative Works of,
+
+ publicly display, publicly perform, sublicense, and distribute the
+
+ Work and such Derivative Works in Source or Object form.
+
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ (except as stated in this section) patent license to make, have made,
+
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+
+ where such license applies only to those patent claims licensable
+
+ by such Contributor that are necessarily infringed by their
+
+ Contribution(s) alone or by combination of their Contribution(s)
+
+ with the Work to which such Contribution(s) was submitted. If You
+
+ institute patent litigation against any entity (including a
+
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+
+ or a Contribution incorporated within the Work constitutes direct
+
+ or contributory patent infringement, then any patent licenses
+
+ granted to You under this License for that Work shall terminate
+
+ as of the date such litigation is filed.
+
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+
+ Work or Derivative Works thereof in any medium, with or without
+
+ modifications, and in Source or Object form, provided that You
+
+ meet the following conditions:
+
+
+ (a) You must give any other recipients of the Work or
+
+ Derivative Works a copy of this License; and
+
+
+ (b) You must cause any modified files to carry prominent notices
+
+ stating that You changed the files; and
+
+
+ (c) You must retain, in the Source form of any Derivative Works
+
+ that You distribute, all copyright, patent, trademark, and
+
+ attribution notices from the Source form of the Work,
+
+ excluding those notices that do not pertain to any part of
+
+ the Derivative Works; and
+
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+
+ distribution, then any Derivative Works that You distribute must
+
+ include a readable copy of the attribution notices contained
+
+ within such NOTICE file, excluding those notices that do not
+
+ pertain to any part of the Derivative Works, in at least one
+
+ of the following places: within a NOTICE text file distributed
+
+ as part of the Derivative Works; within the Source form or
+
+ documentation, if provided along with the Derivative Works; or,
+
+ within a display generated by the Derivative Works, if and
+
+ wherever such third-party notices normally appear. The contents
+
+ of the NOTICE file are for informational purposes only and
+
+ do not modify the License. You may add Your own attribution
+
+ notices within Derivative Works that You distribute, alongside
+
+ or as an addendum to the NOTICE text from the Work, provided
+
+ that such additional attribution notices cannot be construed
+
+ as modifying the License.
+
+
+ You may add Your own copyright statement to Your modifications and
+
+ may provide additional or different license terms and conditions
+
+ for use, reproduction, or distribution of Your modifications, or
+
+ for any such Derivative Works as a whole, provided Your use,
+
+ reproduction, and distribution of the Work otherwise complies with
+
+ the conditions stated in this License.
+
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+
+ any Contribution intentionally submitted for inclusion in the Work
+
+ by You to the Licensor shall be under the terms and conditions of
+
+ this License, without any additional terms or conditions.
+
+ Notwithstanding the above, nothing herein shall supersede or modify
+
+ the terms of any separate license agreement you may have executed
+
+ with Licensor regarding such Contributions.
+
+
+ 6. Trademarks. This License does not grant permission to use the trade
+
+ names, trademarks, service marks, or product names of the Licensor,
+
+ except as required for reasonable and customary use in describing the
+
+ origin of the Work and reproducing the content of the NOTICE file.
+
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+
+ agreed to in writing, Licensor provides the Work (and each
+
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+
+ implied, including, without limitation, any warranties or conditions
+
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+
+ appropriateness of using or redistributing the Work and assume any
+
+ risks associated with Your exercise of permissions under this License.
+
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+
+ whether in tort (including negligence), contract, or otherwise,
+
+ unless required by applicable law (such as deliberate and grossly
+
+ negligent acts) or agreed to in writing, shall any Contributor be
+
+ liable to You for damages, including any direct, indirect, special,
+
+ incidental, or consequential damages of any character arising as a
+
+ result of this License or out of the use or inability to use the
+
+ Work (including but not limited to damages for loss of goodwill,
+
+ work stoppage, computer failure or malfunction, or any and all
+
+ other commercial damages or losses), even if such Contributor
+
+ has been advised of the possibility of such damages.
+
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+
+ the Work or Derivative Works thereof, You may choose to offer,
+
+ and charge a fee for, acceptance of support, warranty, indemnity,
+
+ or other liability obligations and/or rights consistent with this
+
+ License. However, in accepting such obligations, You may act only
+
+ on Your own behalf and on Your sole responsibility, not on behalf
+
+ of any other Contributor, and only if You agree to indemnify,
+
+ defend, and hold each Contributor harmless for any liability
+
+ incurred by, or claims asserted against, such Contributor by reason
+
+ of your accepting any such warranty or additional liability.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ APPENDIX: How to apply the Apache License to your work.
+
+
+ To apply the Apache License to your work, attach the following
+
+ boilerplate notice, with the fields enclosed by brackets "[]"
+
+ replaced with your own identifying information. (Don't include
+
+ the brackets!) The text should be enclosed in the appropriate
+
+ comment syntax for the file format. We also recommend that a
+
+ file or class name and description of purpose be included on the
+
+ same "printed page" as the copyright notice for easier
+
+ identification within third-party archives.
+
+
+ Copyright [yyyy] [name of copyright owner]
+
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+
+ you may not use this file except in compliance with the License.
+
+ You may obtain a copy of the License at
+
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+
+ Unless required by applicable law or agreed to in writing, software
+
+ distributed under the License is distributed on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+ See the License for the specific language governing permissions and
+
+ limitations under the License.
+
+
+--------------------------------------------------
+
+SOFTWARE DISTRIBUTED WITH THRIFT:
+
+
+The Apache Thrift software includes a number of subcomponents with
+
+separate copyright notices and license terms. Your use of the source
+
+code for the these subcomponents is subject to the terms and
+
+conditions of the following licenses.
+
+
+--------------------------------------------------
+
+Portions of the following files are licensed under the MIT License:
+
+
+ lib/erl/src/Makefile.am
+
+
+Please see doc/otp-base-license.txt for the full terms of this license.
+
+
+--------------------------------------------------
+
+For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components:
+
+
+# Copyright (c) 2007 Thomas Porschberg
+
+#
+
+# Copying and distribution of this file, with or without
+
+# modification, are permitted in any medium without royalty provided
+
+# the copyright notice and this notice are preserved.
+
+
+--------------------------------------------------
+
+For the lib/nodejs/lib/thrift/json_parse.js:
+
+
+/*
+
+ json_parse.js
+
+ 2015-05-02
+
+ Public Domain.
+
+ NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
+
+
+*/
+
+(By Douglas Crockford )
+
+--------------------------------------------------
+
+
Blosc - Blocked Shuffling and Compression Library version 1.10.3
+ See LICENSES/BLOSC.txt for details about copyright and rights to use.
+
+**********************************************************************/
+
+
Boost library and extensions version 1.72.0
+Boost Software License - Version 1.0 - August 17th, 2003
+
+
+Permission is hereby granted, free of charge, to any person or organization
+
+obtaining a copy of the software and accompanying documentation covered by
+
+this license (the "Software") to use, reproduce, display, distribute,
+
+execute, and transmit the Software, and to prepare derivative works of the
+
+Software, and to permit third-parties to whom the Software is furnished to
+
+do so, all subject to the following:
+
+
+The copyright notices in the Software and this entire statement, including
+
+the above license grant, this restriction and the following disclaimer,
+
+must be included in all copies of the Software, in whole or in part, and
+
+all derivative works of the Software, unless such copies or derivative
+
+works are solely in the form of machine-executable object code generated by
+
+a source language processor.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+
+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+
+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+
+DEALINGS IN THE SOFTWARE.
+
+
Boost library and extensions version 1.72.0
+Boost Software License - Version 1.0 - August 17th, 2003
+
+
+Permission is hereby granted, free of charge, to any person or organization
+
+obtaining a copy of the software and accompanying documentation covered by
+
+this license (the "Software") to use, reproduce, display, distribute,
+
+execute, and transmit the Software, and to prepare derivative works of the
+
+Software, and to permit third-parties to whom the Software is furnished to
+
+do so, all subject to the following:
+
+
+The copyright notices in the Software and this entire statement, including
+
+the above license grant, this restriction and the following disclaimer,
+
+must be included in all copies of the Software, in whole or in part, and
+
+all derivative works of the Software, unless such copies or derivative
+
+works are solely in the form of machine-executable object code generated by
+
+a source language processor.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+
+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+
+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+
+DEALINGS IN THE SOFTWARE.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
CGAL version 4.9
+GNU LESSER GENERAL PUBLIC LICENSE
+
+Version 3, 29 June 2007
+
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+
+This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.
+
+
+0. Additional Definitions.
+
+As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License.
+
+
+"The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.
+
+
+An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.
+
+
+A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version".
+
+
+The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.
+
+
+The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.
+
+
+1. Exception to Section 3 of the GNU GPL.
+
+You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.
+
+
+2. Conveying Modified Versions.
+
+If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:
+
+
+a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or
+
+b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.
+
+3. Object Code Incorporating Material from Library Header Files.
+
+The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:
+
+
+a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.
+
+b) Accompany the object code with a copy of the GNU GPL and this license document.
+
+4. Combined Works.
+
+You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:
+
+
+a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.
+
+b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
+
+c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.
+
+d) Do one of the following:
+
+0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
+
+1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
+
+e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)
+
+5. Combined Libraries.
+
+You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:
+
+
+a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.
+
+b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
+
+6. Revised Versions of the GNU Lesser General Public License.
+
+The Free Software Foundation may publish revised and/or new versions of the GNU Lesser 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 Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.
+
+
+If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
+
Chromium Embedded Framework (CEF) version 3.2883.1553
+// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c)
+
+// 2006-2009 Google Inc. All rights reserved.
+
+//
+
+// Redistribution and use in source and binary forms, with or without
+
+// modification, are permitted provided that the following conditions are
+
+// met:
+
+//
+
+// * Redistributions of source code must retain the above copyright
+
+// notice, this list of conditions and the following disclaimer.
+
+// * Redistributions in binary form must reproduce the above
+
+// copyright notice, this list of conditions and the following disclaimer
+
+// in the documentation and/or other materials provided with the
+
+// distribution.
+
+// * Neither the name of Google Inc. nor the name Chromium Embedded
+
+// Framework nor the names of its contributors may be used to endorse
+
+// or promote products derived from this software without specific prior
+
+// written permission.
+
+//
+
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
CrashRpt version 1.4.03
+Copyright (c) 2003, The CrashRpt Project Authors.
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without modification,
+
+are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ * Neither the name of the author nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software without
+
+ specific prior written permission.
+
+
+/*
+
+* End User License Agreement
+
+* --------------------------
+
+*
+
+*
+
+* Preface
+
+* -------
+
+*
+
+* The Software License Agreement in Chapter 1 and the Supplement
+
+* in Chapter 2 contain license terms and conditions that govern
+
+* the use of NVIDIA software. By accepting this agreement, you
+
+* agree to comply with all the terms and conditions applicable
+
+* to the product(s) included herein.
+
+*
+
+*
+
+* NVIDIA Driver
+
+*
+
+*
+
+* Description
+
+*
+
+* This package contains the operating system driver and
+
+* fundamental system software components for NVIDIA GPUs.
+
+*
+
+*
+
+* NVIDIA CUDA Toolkit
+
+*
+
+*
+
+* Description
+
+*
+
+* The NVIDIA CUDA Toolkit provides command-line and graphical
+
+* tools for building, debugging and optimizing the performance
+
+* of applications accelerated by NVIDIA GPUs, runtime and math
+
+* libraries, and documentation including programming guides,
+
+* user manuals, and API references.
+
+*
+
+*
+
+* Default Install Location of CUDA Toolkit
+
+*
+
+* Windows platform:
+
+*
+
+* %ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v#.#
+
+*
+
+* Linux platform:
+
+*
+
+* /usr/local/cuda-#.#
+
+*
+
+* Mac platform:
+
+*
+
+* /Developer/NVIDIA/CUDA-#.#
+
+*
+
+*
+
+* NVIDIA CUDA Samples
+
+*
+
+*
+
+* Description
+
+*
+
+* This package includes over 100+ CUDA examples that demonstrate
+
+* various CUDA programming principles, and efficient CUDA
+
+* implementation of algorithms in specific application domains.
+
+*
+
+*
+
+* Default Install Location of CUDA Samples
+
+*
+
+* Windows platform:
+
+*
+
+* %ProgramData%\NVIDIA Corporation\CUDA Samples\v#.#
+
+*
+
+* Linux platform:
+
+*
+
+* /usr/local/cuda-#.#/samples
+
+*
+
+* and
+
+*
+
+* $HOME/NVIDIA_CUDA-#.#_Samples
+
+*
+
+* Mac platform:
+
+*
+
+* /Developer/NVIDIA/CUDA-#.#/samples
+
+*
+
+*
+
+* NVIDIA Nsight Visual Studio Edition (Windows only)
+
+*
+
+*
+
+* Description
+
+*
+
+* NVIDIA Nsight Development Platform, Visual Studio Edition is a
+
+* development environment integrated into Microsoft Visual
+
+* Studio that provides tools for debugging, profiling, analyzing
+
+* and optimizing your GPU computing and graphics applications.
+
+*
+
+*
+
+* Default Install Location of Nsight Visual Studio Edition
+
+*
+
+* Windows platform:
+
+*
+
+* %ProgramFiles(x86)%\NVIDIA Corporation\Nsight Visual Studio Edition #.#
+
+*
+
+*
+
+* 1. License Agreement for NVIDIA Software Development Kits
+
+* ---------------------------------------------------------
+
+*
+
+*
+
+* Release Date: May 21, 2019
+
+* --------------------------
+
+*
+
+*
+
+* Important Notice�Read before downloading, installing,
+
+* copying or using the licensed software:
+
+* -------------------------------------------------------
+
+*
+
+* This license agreement, including exhibits attached
+
+* ("Agreement�) is a legal agreement between you and NVIDIA
+
+* Corporation ("NVIDIA") and governs your use of a NVIDIA
+
+* software development kit (�SDK�).
+
+*
+
+* Each SDK has its own set of software and materials, but here
+
+* is a description of the types of items that may be included in
+
+* a SDK: source code, header files, APIs, data sets and assets
+
+* (examples include images, textures, models, scenes, videos,
+
+* native API input/output files), binary software, sample code,
+
+* libraries, utility programs, programming code and
+
+* documentation.
+
+*
+
+* This Agreement can be accepted only by an adult of legal age
+
+* of majority in the country in which the SDK is used.
+
+*
+
+* If you are entering into this Agreement on behalf of a company
+
+* or other legal entity, you represent that you have the legal
+
+* authority to bind the entity to this Agreement, in which case
+
+* �you� will mean the entity you represent.
+
+*
+
+* If you don�t have the required age or authority to accept
+
+* this Agreement, or if you don�t accept all the terms and
+
+* conditions of this Agreement, do not download, install or use
+
+* the SDK.
+
+*
+
+* You agree to use the SDK only for purposes that are permitted
+
+* by (a) this Agreement, and (b) any applicable law, regulation
+
+* or generally accepted practices or guidelines in the relevant
+
+* jurisdictions.
+
+*
+
+*
+
+* 1.1. License
+
+*
+
+*
+
+* 1.1.1. License Grant
+
+*
+
+* Subject to the terms of this Agreement, NVIDIA hereby grants
+
+* you a non-exclusive, non-transferable license, without the
+
+* right to sublicense (except as expressly provided in this
+
+* Agreement) to:
+
+*
+
+* 1. Install and use the SDK,
+
+*
+
+* 2. Modify and create derivative works of sample source code
+
+* delivered in the SDK, and
+
+*
+
+* 3. Distribute those portions of the SDK that are identified
+
+* in this Agreement as distributable, as incorporated in
+
+* object code format into a software application that meets
+
+* the distribution requirements indicated in this Agreement.
+
+*
+
+*
+
+* 1.1.2. Distribution Requirements
+
+*
+
+* These are the distribution requirements for you to exercise
+
+* the distribution grant:
+
+*
+
+* 1. Your application must have material additional
+
+* functionality, beyond the included portions of the SDK.
+
+*
+
+* 2. The distributable portions of the SDK shall only be
+
+* accessed by your application.
+
+*
+
+* 3. The following notice shall be included in modifications
+
+* and derivative works of sample source code distributed:
+
+* �This software contains source code provided by NVIDIA
+
+* Corporation.�
+
+*
+
+* 4. Unless a developer tool is identified in this Agreement
+
+* as distributable, it is delivered for your internal use
+
+* only.
+
+*
+
+* 5. The terms under which you distribute your application
+
+* must be consistent with the terms of this Agreement,
+
+* including (without limitation) terms relating to the
+
+* license grant and license restrictions and protection of
+
+* NVIDIA�s intellectual property rights. Additionally, you
+
+* agree that you will protect the privacy, security and
+
+* legal rights of your application users.
+
+*
+
+* 6. You agree to notify NVIDIA in writing of any known or
+
+* suspected distribution or use of the SDK not in compliance
+
+* with the requirements of this Agreement, and to enforce
+
+* the terms of your agreements with respect to distributed
+
+* SDK.
+
+*
+
+*
+
+* 1.1.3. Authorized Users
+
+*
+
+* You may allow employees and contractors of your entity or of
+
+* your subsidiary(ies) to access and use the SDK from your
+
+* secure network to perform work on your behalf.
+
+*
+
+* If you are an academic institution you may allow users
+
+* enrolled or employed by the academic institution to access and
+
+* use the SDK from your secure network.
+
+*
+
+* You are responsible for the compliance with the terms of this
+
+* Agreement by your authorized users. If you become aware that
+
+* your authorized users didn�t follow the terms of this
+
+* Agreement, you agree to take reasonable steps to resolve the
+
+* non-compliance and prevent new occurrences.
+
+*
+
+*
+
+* 1.1.4. Pre-Release SDK
+
+*
+
+* The SDK versions identified as alpha, beta, preview or
+
+* otherwise as pre-release, may not be fully functional, may
+
+* contain errors or design flaws, and may have reduced or
+
+* different security, privacy, accessibility, availability, and
+
+* reliability standards relative to commercial versions of
+
+* NVIDIA software and materials. Use of a pre-release SDK may
+
+* result in unexpected results, loss of data, project delays or
+
+* other unpredictable damage or loss.
+
+*
+
+* You may use a pre-release SDK at your own risk, understanding
+
+* that pre-release SDKs are not intended for use in production
+
+* or business-critical systems.
+
+*
+
+* NVIDIA may choose not to make available a commercial version
+
+* of any pre-release SDK. NVIDIA may also choose to abandon
+
+* development and terminate the availability of a pre-release
+
+* SDK at any time without liability.
+
+*
+
+*
+
+* 1.1.5. Updates
+
+*
+
+* NVIDIA may, at its option, make available patches, workarounds
+
+* or other updates to this SDK. Unless the updates are provided
+
+* with their separate governing terms, they are deemed part of
+
+* the SDK licensed to you as provided in this Agreement. You
+
+* agree that the form and content of the SDK that NVIDIA
+
+* provides may change without prior notice to you. While NVIDIA
+
+* generally maintains compatibility between versions, NVIDIA may
+
+* in some cases make changes that introduce incompatibilities in
+
+* future versions of the SDK.
+
+*
+
+*
+
+* 1.1.6. Third Party Licenses
+
+*
+
+* The SDK may come bundled with, or otherwise include or be
+
+* distributed with, third party software licensed by a NVIDIA
+
+* supplier and/or open source software provided under an open
+
+* source license. Use of third party software is subject to the
+
+* third-party license terms, or in the absence of third party
+
+* terms, the terms of this Agreement. Copyright to third party
+
+* software is held by the copyright holders indicated in the
+
+* third-party software or license.
+
+*
+
+*
+
+* 1.1.7. Reservation of Rights
+
+*
+
+* NVIDIA reserves all rights, title, and interest in and to the
+
+* SDK, not expressly granted to you under this Agreement.
+
+*
+
+*
+
+* 1.2. Limitations
+
+*
+
+* The following license limitations apply to your use of the
+
+* SDK:
+
+*
+
+* 1. You may not reverse engineer, decompile or disassemble,
+
+* or remove copyright or other proprietary notices from any
+
+* portion of the SDK or copies of the SDK.
+
+*
+
+* 2. Except as expressly provided in this Agreement, you may
+
+* not copy, sell, rent, sublicense, transfer, distribute,
+
+* modify, or create derivative works of any portion of the
+
+* SDK. For clarity, you may not distribute or sublicense the
+
+* SDK as a stand-alone product.
+
+*
+
+* 3. Unless you have an agreement with NVIDIA for this
+
+* purpose, you may not indicate that an application created
+
+* with the SDK is sponsored or endorsed by NVIDIA.
+
+*
+
+* 4. You may not bypass, disable, or circumvent any
+
+* encryption, security, digital rights management or
+
+* authentication mechanism in the SDK.
+
+*
+
+* 5. You may not use the SDK in any manner that would cause it
+
+* to become subject to an open source software license. As
+
+* examples, licenses that require as a condition of use,
+
+* modification, and/or distribution that the SDK be:
+
+*
+
+* a. Disclosed or distributed in source code form;
+
+*
+
+* b. Licensed for the purpose of making derivative works;
+
+* or
+
+*
+
+* c. Redistributable at no charge.
+
+*
+
+* 6. Unless you have an agreement with NVIDIA for this
+
+* purpose, you may not use the SDK with any system or
+
+* application where the use or failure of the system or
+
+* application can reasonably be expected to threaten or
+
+* result in personal injury, death, or catastrophic loss.
+
+* Examples include use in nuclear, avionics, navigation,
+
+* military, medical, life support or other life critical
+
+* applications. NVIDIA does not design, test or manufacture
+
+* the SDK for these critical uses and NVIDIA shall not be
+
+* liable to you or any third party, in whole or in part, for
+
+* any claims or damages arising from such uses.
+
+*
+
+* 7. You agree to defend, indemnify and hold harmless NVIDIA
+
+* and its affiliates, and their respective employees,
+
+* contractors, agents, officers and directors, from and
+
+* against any and all claims, damages, obligations, losses,
+
+* liabilities, costs or debt, fines, restitutions and
+
+* expenses (including but not limited to attorney�s fees
+
+* and costs incident to establishing the right of
+
+* indemnification) arising out of or related to your use of
+
+* the SDK outside of the scope of this Agreement, or not in
+
+* compliance with its terms.
+
+*
+
+*
+
+* 1.3. Ownership
+
+*
+
+* 1. NVIDIA or its licensors hold all rights, title and
+
+* interest in and to the SDK and its modifications and
+
+* derivative works, including their respective intellectual
+
+* property rights, subject to your rights described here .
+
+* This SDK may include software and materials from
+
+* NVIDIA�s licensors, and these licensors are intended
+
+* third party beneficiaries that may enforce this Agreement
+
+* with respect to their intellectual property rights.
+
+*
+
+* 2. You hold all rights, title and interest in and to your
+
+* applications and your derivative works of the sample
+
+* source code delivered in the SDK, including their
+
+* respective intellectual property rights, subject to
+
+* NVIDIA�s rights described here .
+
+*
+
+* 3. You may, but don�t have to, provide to NVIDIA
+
+* suggestions, feature requests or other feedback regarding
+
+* the SDK, including possible enhancements or modifications
+
+* to the SDK. For any feedback that you voluntarily provide,
+
+* you hereby grant NVIDIA and its affiliates a perpetual,
+
+* non-exclusive, worldwide, irrevocable license to use,
+
+* reproduce, modify, license, sublicense (through multiple
+
+* tiers of sublicensees), and distribute (through multiple
+
+* tiers of distributors) it without the payment of any
+
+* royalties or fees to you. NVIDIA will use feedback at its
+
+* choice. NVIDIA is constantly looking for ways to improve
+
+* its products, so you may send feedback to NVIDIA through
+
+* the developer portal at https://developer.nvidia.com.
+
+*
+
+*
+
+* 1.4. No Warranties
+
+*
+
+* THE SDK IS PROVIDED BY NVIDIA �AS IS� AND �WITH ALL
+
+* FAULTS.� TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND
+
+* ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND
+
+* OR NATURE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING,
+
+* BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
+
+* FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, OR THE
+
+* ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT. NO
+
+* WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF
+
+* DEALING OR COURSE OF TRADE.
+
+*
+
+*
+
+* 1.5. Limitation of Liability
+
+*
+
+* TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS
+
+* AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
+
+* PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY LOST PROFITS, LOSS
+
+* OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF
+
+* PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION
+
+* WITH THIS AGREEMENT OR THE USE OR PERFORMANCE OF THE SDK,
+
+* WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON BREACH
+
+* OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE),
+
+* PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY OF
+
+* LIABILITY. IN NO EVENT WILL NVIDIA�S AND ITS AFFILIATES
+
+* TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS
+
+* AGREEMENT EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE
+
+* NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS
+
+* LIMIT.
+
+*
+
+* These exclusions and limitations of liability shall apply
+
+* regardless if NVIDIA or its affiliates have been advised of
+
+* the possibility of such damages, and regardless of whether a
+
+* remedy fails its essential purpose. These exclusions and
+
+* limitations of liability form an essential basis of the
+
+* bargain between the parties, and, absent any of these
+
+* exclusions or limitations of liability, the provisions of this
+
+* Agreement, including, without limitation, the economic terms,
+
+* would be substantially different.
+
+*
+
+*
+
+* 1.6. Termination
+
+*
+
+* 1. This Agreement will continue to apply until terminated by
+
+* either you or NVIDIA as described below.
+
+*
+
+* 2. If you want to terminate this Agreement, you may do so by
+
+* stopping to use the SDK.
+
+*
+
+* 3. NVIDIA may, at any time, terminate this Agreement if:
+
+*
+
+* a. (i) you fail to comply with any term of this
+
+* Agreement and the non-compliance is not fixed within
+
+* thirty (30) days following notice from NVIDIA (or
+
+* immediately if you violate NVIDIA�s intellectual
+
+* property rights);
+
+*
+
+* b. (ii) you commence or participate in any legal
+
+* proceeding against NVIDIA with respect to the SDK; or
+
+*
+
+* c. (iii) NVIDIA decides to no longer provide the SDK in
+
+* a country or, in NVIDIA�s sole discretion, the
+
+* continued use of it is no longer commercially viable.
+
+*
+
+* 4. Upon any termination of this Agreement, you agree to
+
+* promptly discontinue use of the SDK and destroy all copies
+
+* in your possession or control. Your prior distributions in
+
+* accordance with this Agreement are not affected by the
+
+* termination of this Agreement. Upon written request, you
+
+* will certify in writing that you have complied with your
+
+* commitments under this section. Upon any termination of
+
+* this Agreement all provisions survive except for the
+
+* license grant provisions.
+
+*
+
+*
+
+* 1.7. General
+
+*
+
+* If you wish to assign this Agreement or your rights and
+
+* obligations, including by merger, consolidation, dissolution
+
+* or operation of law, contact NVIDIA to ask for permission. Any
+
+* attempted assignment not approved by NVIDIA in writing shall
+
+* be void and of no effect. NVIDIA may assign, delegate or
+
+* transfer this Agreement and its rights and obligations, and if
+
+* to a non-affiliate you will be notified.
+
+*
+
+* You agree to cooperate with NVIDIA and provide reasonably
+
+* requested information to verify your compliance with this
+
+* Agreement.
+
+*
+
+* This Agreement will be governed in all respects by the laws of
+
+* the United States and of the State of Delaware as those laws
+
+* are applied to contracts entered into and performed entirely
+
+* within Delaware by Delaware residents, without regard to the
+
+* conflicts of laws principles. The United Nations Convention on
+
+* Contracts for the International Sale of Goods is specifically
+
+* disclaimed. You agree to all terms of this Agreement in the
+
+* English language.
+
+*
+
+* The state or federal courts residing in Santa Clara County,
+
+* California shall have exclusive jurisdiction over any dispute
+
+* or claim arising out of this Agreement. Notwithstanding this,
+
+* you agree that NVIDIA shall still be allowed to apply for
+
+* injunctive remedies or an equivalent type of urgent legal
+
+* relief in any jurisdiction.
+
+*
+
+* If any court of competent jurisdiction determines that any
+
+* provision of this Agreement is illegal, invalid or
+
+* unenforceable, such provision will be construed as limited to
+
+* the extent necessary to be consistent with and fully
+
+* enforceable under the law and the remaining provisions will
+
+* remain in full force and effect. Unless otherwise specified,
+
+* remedies are cumulative.
+
+*
+
+* Each party acknowledges and agrees that the other is an
+
+* independent contractor in the performance of this Agreement.
+
+*
+
+* The SDK has been developed entirely at private expense and is
+
+* �commercial items� consisting of �commercial computer
+
+* software� and �commercial computer software
+
+* documentation� provided with RESTRICTED RIGHTS. Use,
+
+* duplication or disclosure by the U.S. Government or a U.S.
+
+* Government subcontractor is subject to the restrictions in
+
+* this Agreement pursuant to DFARS 227.7202-3(a) or as set forth
+
+* in subparagraphs (c)(1) and (2) of the Commercial Computer
+
+* Software - Restricted Rights clause at FAR 52.227-19, as
+
+* applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas
+
+* Expressway, Santa Clara, CA 95051.
+
+*
+
+* The SDK is subject to United States export laws and
+
+* regulations. You agree that you will not ship, transfer or
+
+* export the SDK into any country, or use the SDK in any manner,
+
+* prohibited by the United States Bureau of Industry and
+
+* Security or economic sanctions regulations administered by the
+
+* U.S. Department of Treasury�s Office of Foreign Assets
+
+* Control (OFAC), or any applicable export laws, restrictions or
+
+* regulations. These laws include restrictions on destinations,
+
+* end users and end use. By accepting this Agreement, you
+
+* confirm that you are not a resident or citizen of any country
+
+* currently embargoed by the U.S. and that you are not otherwise
+
+* prohibited from receiving the SDK.
+
+*
+
+* Any notice delivered by NVIDIA to you under this Agreement
+
+* will be delivered via mail, email or fax. You agree that any
+
+* notices that NVIDIA sends you electronically will satisfy any
+
+* legal communication requirements. Please direct your legal
+
+* notices or other correspondence to NVIDIA Corporation, 2788
+
+* San Tomas Expressway, Santa Clara, California 95051, United
+
+* States of America, Attention: Legal Department.
+
+*
+
+* This Agreement and any exhibits incorporated into this
+
+* Agreement constitute the entire agreement of the parties with
+
+* respect to the subject matter of this Agreement and supersede
+
+* all prior negotiations or documentation exchanged between the
+
+* parties relating to this SDK license. Any additional and/or
+
+* conflicting terms on documents issued by you are null, void,
+
+* and invalid. Any amendment or waiver under this Agreement
+
+* shall be in writing and signed by representatives of both
+
+* parties.
+
+*
+
+*
+
+* 2. CUDA Toolkit Supplement to Software License Agreement for
+
+* NVIDIA Software Development Kits
+
+* ------------------------------------------------------------
+
+*
+
+*
+
+* Release date: August 16, 2018
+
+* -----------------------------
+
+*
+
+* The terms in this supplement govern your use of the NVIDIA
+
+* CUDA Toolkit SDK under the terms of your license agreement
+
+* (�Agreement�) as modified by this supplement. Capitalized
+
+* terms used but not defined below have the meaning assigned to
+
+* them in the Agreement.
+
+*
+
+* This supplement is an exhibit to the Agreement and is
+
+* incorporated as an integral part of the Agreement. In the
+
+* event of conflict between the terms in this supplement and the
+
+* terms in the Agreement, the terms in this supplement govern.
+
+*
+
+*
+
+* 2.1. License Scope
+
+*
+
+* The SDK is licensed for you to develop applications only for
+
+* use in systems with NVIDIA GPUs.
+
+*
+
+*
+
+* 2.2. Distribution
+
+*
+
+* The portions of the SDK that are distributable under the
+
+* Agreement are listed in Attachment A.
+
+*
+
+*
+
+* 2.3. Operating Systems
+
+*
+
+* Those portions of the SDK designed exclusively for use on the
+
+* Linux or FreeBSD operating systems, or other operating systems
+
+* derived from the source code to these operating systems, may
+
+* be copied and redistributed for use in accordance with this
+
+* Agreement, provided that the object code files are not
+
+* modified in any way (except for unzipping of compressed
+
+* files).
+
+*
+
+*
+
+* 2.4. Audio and Video Encoders and Decoders
+
+*
+
+* You acknowledge and agree that it is your sole responsibility
+
+* to obtain any additional third-party licenses required to
+
+* make, have made, use, have used, sell, import, and offer for
+
+* sale your products or services that include or incorporate any
+
+* third-party software and content relating to audio and/or
+
+* video encoders and decoders from, including but not limited
+
+* to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A.,
+
+* MPEG-LA, and Coding Technologies. NVIDIA does not grant to you
+
+* under this Agreement any necessary patent or other rights with
+
+* respect to any audio and/or video encoders and decoders.
+
+*
+
+*
+
+* 2.5. Licensing
+
+*
+
+* If the distribution terms in this Agreement are not suitable
+
+* for your organization, or for any questions regarding this
+
+* Agreement, please contact NVIDIA at
+
+* nvidia-compute-license-questions@nvidia.com.
+
+*
+
+*
+
+* 2.6. Attachment A
+
+*
+
+* The following portions of the SDK are distributable under the
+
+* Agreement:
+
+*
+
+* Component
+
+*
+
+* CUDA Runtime
+
+*
+
+* Windows
+
+*
+
+* cudart.dll, cudart_static.lib, cudadevrt.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libcudart.dylib, libcudart_static.a, libcudadevrt.a
+
+*
+
+* Linux
+
+*
+
+* libcudart.so, libcudart_static.a, libcudadevrt.a
+
+*
+
+* Android
+
+*
+
+* libcudart.so, libcudart_static.a, libcudadevrt.a
+
+*
+
+* Component
+
+*
+
+* CUDA FFT Library
+
+*
+
+* Windows
+
+*
+
+* cufft.dll, cufftw.dll, cufft.lib, cufftw.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libcufft.dylib, libcufft_static.a, libcufftw.dylib,
+
+* libcufftw_static.a
+
+*
+
+* Linux
+
+*
+
+* libcufft.so, libcufft_static.a, libcufftw.so,
+
+* libcufftw_static.a
+
+*
+
+* Android
+
+*
+
+* libcufft.so, libcufft_static.a, libcufftw.so,
+
+* libcufftw_static.a
+
+*
+
+* Component
+
+*
+
+* CUDA BLAS Library
+
+*
+
+* Windows
+
+*
+
+* cublas.dll, cublasLt.dll
+
+*
+
+* Mac OSX
+
+*
+
+* libcublas.dylib, libcublasLt.dylib, libcublas_static.a,
+
+* libcublasLt_static.a
+
+*
+
+* Linux
+
+*
+
+* libcublas.so, libcublasLt.so, libcublas_static.a,
+
+* libcublasLt_static.a
+
+*
+
+* Android
+
+*
+
+* libcublas.so, libcublasLt.so, libcublas_static.a,
+
+* libcublasLt_static.a
+
+*
+
+* Component
+
+*
+
+* NVIDIA "Drop-in" BLAS Library
+
+*
+
+* Windows
+
+*
+
+* nvblas.dll
+
+*
+
+* Mac OSX
+
+*
+
+* libnvblas.dylib
+
+*
+
+* Linux
+
+*
+
+* libnvblas.so
+
+*
+
+* Component
+
+*
+
+* CUDA Sparse Matrix Library
+
+*
+
+* Windows
+
+*
+
+* cusparse.dll, cusparse.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libcusparse.dylib, libcusparse_static.a
+
+*
+
+* Linux
+
+*
+
+* libcusparse.so, libcusparse_static.a
+
+*
+
+* Android
+
+*
+
+* libcusparse.so, libcusparse_static.a
+
+*
+
+* Component
+
+*
+
+* CUDA Linear Solver Library
+
+*
+
+* Windows
+
+*
+
+* cusolver.dll, cusolver.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libcusolver.dylib, libcusolver_static.a
+
+*
+
+* Linux
+
+*
+
+* libcusolver.so, libcusolver_static.a
+
+*
+
+* Android
+
+*
+
+* libcusolver.so, libcusolver_static.a
+
+*
+
+* Component
+
+*
+
+* CUDA Random Number Generation Library
+
+*
+
+* Windows
+
+*
+
+* curand.dll, curand.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libcurand.dylib, libcurand_static.a
+
+*
+
+* Linux
+
+*
+
+* libcurand.so, libcurand_static.a
+
+*
+
+* Android
+
+*
+
+* libcurand.so, libcurand_static.a
+
+*
+
+* Component
+
+*
+
+* CUDA Accelerated Graph Library
+
+*
+
+* Windows
+
+*
+
+* nvgraph.dll, nvgraph.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libnvgraph.dylib, libnvgraph_static.a
+
+*
+
+* Linux
+
+*
+
+* libnvgraph.so, libnvgraph_static.a
+
+*
+
+* Android
+
+*
+
+* libnvgraph.so, libnvgraph_static.a
+
+*
+
+* Component
+
+*
+
+* NVIDIA Performance Primitives Library
+
+*
+
+* Windows
+
+*
+
+* nppc.dll, nppc.lib, nppial.dll, nppial.lib, nppicc.dll,
+
+* nppicc.lib, nppicom.dll, nppicom.lib, nppidei.dll,
+
+* nppidei.lib, nppif.dll, nppif.lib, nppig.dll, nppig.lib,
+
+* nppim.dll, nppim.lib, nppist.dll, nppist.lib, nppisu.dll,
+
+* nppisu.lib, nppitc.dll, nppitc.lib, npps.dll, npps.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libnppc.dylib, libnppc_static.a, libnppial.dylib,
+
+* libnppial_static.a, libnppicc.dylib, libnppicc_static.a,
+
+* libnppicom.dylib, libnppicom_static.a, libnppidei.dylib,
+
+* libnppidei_static.a, libnppif.dylib, libnppif_static.a,
+
+* libnppig.dylib, libnppig_static.a, libnppim.dylib,
+
+* libnppisu_static.a, libnppitc.dylib, libnppitc_static.a,
+
+* libnpps.dylib, libnpps_static.a
+
+*
+
+* Linux
+
+*
+
+* libnppc.so, libnppc_static.a, libnppial.so,
+
+* libnppial_static.a, libnppicc.so, libnppicc_static.a,
+
+* libnppicom.so, libnppicom_static.a, libnppidei.so,
+
+* libnppidei_static.a, libnppif.so, libnppif_static.a
+
+* libnppig.so, libnppig_static.a, libnppim.so,
+
+* libnppim_static.a, libnppist.so, libnppist_static.a,
+
+* libnppisu.so, libnppisu_static.a, libnppitc.so
+
+* libnppitc_static.a, libnpps.so, libnpps_static.a
+
+*
+
+* Android
+
+*
+
+* libnppc.so, libnppc_static.a, libnppial.so,
+
+* libnppial_static.a, libnppicc.so, libnppicc_static.a,
+
+* libnppicom.so, libnppicom_static.a, libnppidei.so,
+
+* libnppidei_static.a, libnppif.so, libnppif_static.a
+
+* libnppig.so, libnppig_static.a, libnppim.so,
+
+* libnppim_static.a, libnppist.so, libnppist_static.a,
+
+* libnppisu.so, libnppisu_static.a, libnppitc.so
+
+* libnppitc_static.a, libnpps.so, libnpps_static.a
+
+*
+
+* Component
+
+*
+
+* NVIDIA JPEG Library
+
+*
+
+* Linux
+
+*
+
+* libnvjpeg.so, libnvjpeg_static.a
+
+*
+
+* Component
+
+*
+
+* Internal common library required for statically linking to
+
+* cuBLAS, cuSPARSE, cuFFT, cuRAND, nvJPEG and NPP
+
+*
+
+* Mac OSX
+
+*
+
+* libculibos.a
+
+*
+
+* Linux
+
+*
+
+* libculibos.a
+
+*
+
+* Component
+
+*
+
+* NVIDIA Runtime Compilation Library
+
+*
+
+* Windows
+
+*
+
+* nvrtc.dll, nvrtc-builtins.dll
+
+*
+
+* Mac OSX
+
+*
+
+* libnvrtc.dylib, libnvrtc-builtins.dylib
+
+*
+
+* Linux
+
+*
+
+* libnvrtc.so, libnvrtc-builtins.so
+
+*
+
+* Component
+
+*
+
+* NVIDIA Optimizing Compiler Library
+
+*
+
+* Windows
+
+*
+
+* nvvm.dll
+
+*
+
+* Mac OSX
+
+*
+
+* libnvvm.dylib
+
+*
+
+* Linux
+
+*
+
+* libnvvm.so
+
+*
+
+* Component
+
+*
+
+* NVIDIA Common Device Math Functions Library
+
+*
+
+* Windows
+
+*
+
+* libdevice.10.bc
+
+*
+
+* Mac OSX
+
+*
+
+* libdevice.10.bc
+
+*
+
+* Linux
+
+*
+
+* libdevice.10.bc
+
+*
+
+* Component
+
+*
+
+* CUDA Occupancy Calculation Header Library
+
+*
+
+* All
+
+*
+
+* cuda_occupancy.h
+
+*
+
+* Component
+
+*
+
+* CUDA Half Precision Headers
+
+*
+
+* All
+
+*
+
+* cuda_fp16.h, cuda_fp16.hpp
+
+*
+
+* Component
+
+*
+
+* CUDA Profiling Tools Interface (CUPTI) Library
+
+*
+
+* Windows
+
+*
+
+* cupti.dll
+
+*
+
+* Mac OSX
+
+*
+
+* libcupti.dylib
+
+*
+
+* Linux
+
+*
+
+* libcupti.so
+
+*
+
+* Component
+
+*
+
+* NVIDIA Tools Extension Library
+
+*
+
+* Windows
+
+*
+
+* nvToolsExt.dll, nvToolsExt.lib
+
+*
+
+* Mac OSX
+
+*
+
+* libnvToolsExt.dylib
+
+*
+
+* Linux
+
+*
+
+* libnvToolsExt.so
+
+*
+
+* Component
+
+*
+
+* NVIDIA CUDA Driver Libraries
+
+*
+
+* Linux
+
+*
+
+* libcuda.so, libnvidia-fatbinaryloader.so,
+
+* libnvidia-ptxjitcompiler.so
+
+*
+
+* The NVIDIA CUDA Driver Libraries are only distributable in
+
+* applications that meet this criteria:
+
+*
+
+* 1. The application was developed starting from a NVIDIA CUDA
+
+* container obtained from Docker Hub or the NVIDIA GPU
+
+* Cloud, and
+
+*
+
+* 2. The resulting application is packaged as a Docker
+
+* container and distributed to users on Docker Hub or the
+
+* NVIDIA GPU Cloud only.
+
+*
+
+* In addition to the rights above, for parties that are
+
+* developing software intended solely for use on Jetson
+
+* development kits or Jetson modules, and running Linux for
+
+* Tegra software, the following shall apply:
+
+*
+
+* * The SDK may be distributed in its entirety, as provided by
+
+* NVIDIA, and without separation of its components, for you
+
+* and/or your licensees to create software development kits
+
+* for use only on the Jetson platform and running Linux for
+
+* Tegra software.
+
+*
+
+*
+
+* 2.7. Attachment B
+
+*
+
+*
+
+* Additional Licensing Obligations
+
+*
+
+* The following third party components included in the SOFTWARE
+
+* are licensed to Licensee pursuant to the following terms and
+
+* conditions:
+
+*
+
+* 1. Licensee's use of the GDB third party component is
+
+* subject to the terms and conditions of GNU GPL v3:
+
+*
+
+* This product includes copyrighted third-party software licensed
+
+* under the terms of the GNU General Public License v3 ("GPL v3").
+
+* All third-party software packages are copyright by their respective
+
+* authors. GPL v3 terms and conditions are hereby incorporated into
+
+* the Agreement by this reference: http://www.gnu.org/licenses/gpl.txt
+
+*
+
+* Consistent with these licensing requirements, the software
+
+* listed below is provided under the terms of the specified
+
+* open source software licenses. To obtain source code for
+
+* software provided under licenses that require
+
+* redistribution of source code, including the GNU General
+
+* Public License (GPL) and GNU Lesser General Public License
+
+* (LGPL), contact oss-requests@nvidia.com. This offer is
+
+* valid for a period of three (3) years from the date of the
+
+* distribution of this product by NVIDIA CORPORATION.
+
+*
+
+* Component License
+
+* CUDA-GDB GPL v3
+
+*
+
+* 2. Licensee represents and warrants that any and all third
+
+* party licensing and/or royalty payment obligations in
+
+* connection with Licensee's use of the H.264 video codecs
+
+* are solely the responsibility of Licensee.
+
+*
+
+* 3. Licensee's use of the Thrust library is subject to the
+
+* terms and conditions of the Apache License Version 2.0.
+
+* All third-party software packages are copyright by their
+
+* respective authors. Apache License Version 2.0 terms and
+
+* conditions are hereby incorporated into the Agreement by
+
+* this reference.
+
+* http://www.apache.org/licenses/LICENSE-2.0.html
+
+*
+
+* In addition, Licensee acknowledges the following notice:
+
+* Thrust includes source code from the Boost Iterator,
+
+* Tuple, System, and Random Number libraries.
+
+*
+
+* Boost Software License - Version 1.0 - August 17th, 2003
+
+* . . . .
+
+*
+
+* Permission is hereby granted, free of charge, to any person or
+
+* organization obtaining a copy of the software and accompanying
+
+* documentation covered by this license (the "Software") to use,
+
+* reproduce, display, distribute, execute, and transmit the Software,
+
+* and to prepare derivative works of the Software, and to permit
+
+* third-parties to whom the Software is furnished to do so, all
+
+* subject to the following:
+
+*
+
+* The copyright notices in the Software and this entire statement,
+
+* including the above license grant, this restriction and the following
+
+* disclaimer, must be included in all copies of the Software, in whole
+
+* or in part, and all derivative works of the Software, unless such
+
+* copies or derivative works are solely in the form of machine-executable
+
+* object code generated by a source language processor.
+
+*
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
+
+* NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+
+* ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
+
+* OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
+
+* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+
+* OTHER DEALINGS IN THE SOFTWARE.
+
+*
+
+* 4. Licensee's use of the LLVM third party component is
+
+* subject to the following terms and conditions:
+
+*
+
+* ======================================================
+
+* LLVM Release License
+
+* ======================================================
+
+* University of Illinois/NCSA
+
+* Open Source License
+
+*
+
+* Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
+
+* All rights reserved.
+
+*
+
+* Developed by:
+
+*
+
+* LLVM Team
+
+*
+
+* University of Illinois at Urbana-Champaign
+
+*
+
+* http://llvm.org
+
+*
+
+* Permission is hereby granted, free of charge, to any person obtaining a copy
+
+* of this software and associated documentation files (the "Software"), to
+
+* deal with the Software without restriction, including without limitation the
+
+* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+
+* sell copies of the Software, and to permit persons to whom the Software is
+
+* furnished to do so, subject to the following conditions:
+
+*
+
+* * Redistributions of source code must retain the above copyright notice,
+
+* this list of conditions and the following disclaimers.
+
+*
+
+* * Redistributions in binary form must reproduce the above copyright
+
+* notice, this list of conditions and the following disclaimers in the
+
+* documentation and/or other materials provided with the distribution.
+
+*
+
+* * Neither the names of the LLVM Team, University of Illinois at Urbana-
+
+* Champaign, nor the names of its contributors may be used to endorse or
+
+* promote products derived from this Software without specific prior
+
+* written permission.
+
+*
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+
+* THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+
+* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+
+* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+
+* DEALINGS WITH THE SOFTWARE.
+
+*
+
+* 5. Licensee's use of the PCRE third party component is
+
+* subject to the following terms and conditions:
+
+*
+
+* ------------
+
+* PCRE LICENCE
+
+* ------------
+
+* PCRE is a library of functions to support regular expressions whose syntax
+
+* and semantics are as close as possible to those of the Perl 5 language.
+
+* Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
+
+* specified below. The documentation for PCRE, supplied in the "doc"
+
+* directory, is distributed under the same terms as the software itself. The
+
+* basic library functions are written in C and are freestanding. Also
+
+* included in the distribution is a set of C++ wrapper functions, and a just-
+
+* in-time compiler that can be used to optimize pattern matching. These are
+
+* both optional features that can be omitted when the library is built.
+
+*
+
+* THE BASIC LIBRARY FUNCTIONS
+
+* ---------------------------
+
+* Written by: Philip Hazel
+
+* Email local part: ph10
+
+* Email domain: cam.ac.uk
+
+* University of Cambridge Computing Service,
+
+* Cambridge, England.
+
+* Copyright (c) 1997-2012 University of Cambridge
+
+* All rights reserved.
+
+*
+
+* PCRE JUST-IN-TIME COMPILATION SUPPORT
+
+* -------------------------------------
+
+* Written by: Zoltan Herczeg
+
+* Email local part: hzmester
+
+* Emain domain: freemail.hu
+
+* Copyright(c) 2010-2012 Zoltan Herczeg
+
+* All rights reserved.
+
+*
+
+* STACK-LESS JUST-IN-TIME COMPILER
+
+* --------------------------------
+
+* Written by: Zoltan Herczeg
+
+* Email local part: hzmester
+
+* Emain domain: freemail.hu
+
+* Copyright(c) 2009-2012 Zoltan Herczeg
+
+* All rights reserved.
+
+*
+
+* THE C++ WRAPPER FUNCTIONS
+
+* -------------------------
+
+* Contributed by: Google Inc.
+
+* Copyright (c) 2007-2012, Google Inc.
+
+* All rights reserved.
+
+*
+
+* THE "BSD" LICENCE
+
+* -----------------
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are met:
+
+*
+
+* * Redistributions of source code must retain the above copyright notice,
+
+* this list of conditions and the following disclaimer.
+
+*
+
+* * Redistributions in binary form must reproduce the above copyright
+
+* notice, this list of conditions and the following disclaimer in the
+
+* documentation and/or other materials provided with the distribution.
+
+*
+
+* * Neither the name of the University of Cambridge nor the name of Google
+
+* Inc. nor the names of their contributors may be used to endorse or
+
+* promote products derived from this software without specific prior
+
+* written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+* POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 6. Some of the cuBLAS library routines were written by or
+
+* derived from code written by Vasily Volkov and are subject
+
+* to the Modified Berkeley Software Distribution License as
+
+* follows:
+
+*
+
+* Copyright (c) 2007-2009, Regents of the University of California
+
+*
+
+* All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following
+
+* disclaimer in the documentation and/or other materials provided
+
+* with the distribution.
+
+* * Neither the name of the University of California, Berkeley nor
+
+* the names of its contributors may be used to endorse or promote
+
+* products derived from this software without specific prior
+
+* written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
+
+* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+
+* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+
+* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+* POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 7. Some of the cuBLAS library routines were written by or
+
+* derived from code written by Davide Barbieri and are
+
+* subject to the Modified Berkeley Software Distribution
+
+* License as follows:
+
+*
+
+* Copyright (c) 2008-2009 Davide Barbieri @ University of Rome Tor Vergata.
+
+*
+
+* All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following
+
+* disclaimer in the documentation and/or other materials provided
+
+* with the distribution.
+
+* * The name of the author may not be used to endorse or promote
+
+* products derived from this software without specific prior
+
+* written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
+
+* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+
+* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+
+* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+* POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 8. Some of the cuBLAS library routines were derived from
+
+* code developed by the University of Tennessee and are
+
+* subject to the Modified Berkeley Software Distribution
+
+* License as follows:
+
+*
+
+* Copyright (c) 2010 The University of Tennessee.
+
+*
+
+* All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following
+
+* disclaimer listed in this license in the documentation and/or
+
+* other materials provided with the distribution.
+
+* * Neither the name of the copyright holders nor the names of its
+
+* contributors may be used to endorse or promote products derived
+
+* from this software without specific prior written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 9. Some of the cuBLAS library routines were written by or
+
+* derived from code written by Jonathan Hogg and are subject
+
+* to the Modified Berkeley Software Distribution License as
+
+* follows:
+
+*
+
+* Copyright (c) 2012, The Science and Technology Facilities Council (STFC).
+
+*
+
+* All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following
+
+* disclaimer in the documentation and/or other materials provided
+
+* with the distribution.
+
+* * Neither the name of the STFC nor the names of its contributors
+
+* may be used to endorse or promote products derived from this
+
+* software without specific prior written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE STFC BE
+
+* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+
+* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+
+* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+
+* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+
+* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 10. Some of the cuBLAS library routines were written by or
+
+* derived from code written by Ahmad M. Abdelfattah, David
+
+* Keyes, and Hatem Ltaief, and are subject to the Apache
+
+* License, Version 2.0, as follows:
+
+*
+
+* -- (C) Copyright 2013 King Abdullah University of Science and Technology
+
+* Authors:
+
+* Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa)
+
+* David Keyes (david.keyes@kaust.edu.sa)
+
+* Hatem Ltaief (hatem.ltaief@kaust.edu.sa)
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions
+
+* are met:
+
+*
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above copyright
+
+* notice, this list of conditions and the following disclaimer in the
+
+* documentation and/or other materials provided with the distribution.
+
+* * Neither the name of the King Abdullah University of Science and
+
+* Technology nor the names of its contributors may be used to endorse
+
+* or promote products derived from this software without specific prior
+
+* written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
+
+*
+
+* 11. Some of the cuSPARSE library routines were written by or
+
+* derived from code written by Li-Wen Chang and are subject
+
+* to the NCSA Open Source License as follows:
+
+*
+
+* Copyright (c) 2012, University of Illinois.
+
+*
+
+* All rights reserved.
+
+*
+
+* Developed by: IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu
+
+*
+
+* Permission is hereby granted, free of charge, to any person obtaining
+
+* a copy of this software and associated documentation files (the
+
+* "Software"), to deal with the Software without restriction, including
+
+* without limitation the rights to use, copy, modify, merge, publish,
+
+* distribute, sublicense, and/or sell copies of the Software, and to
+
+* permit persons to whom the Software is furnished to do so, subject to
+
+* the following conditions:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following
+
+* disclaimers in the documentation and/or other materials provided
+
+* with the distribution.
+
+* * Neither the names of IMPACT Group, University of Illinois, nor
+
+* the names of its contributors may be used to endorse or promote
+
+* products derived from this Software without specific prior
+
+* written permission.
+
+*
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+
+* NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
+
+* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+
+* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+
+* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
+
+* SOFTWARE.
+
+*
+
+* 12. Some of the cuRAND library routines were written by or
+
+* derived from code written by Mutsuo Saito and Makoto
+
+* Matsumoto and are subject to the following license:
+
+*
+
+* Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima
+
+* University. All rights reserved.
+
+*
+
+* Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima
+
+* University and University of Tokyo. All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following
+
+* disclaimer in the documentation and/or other materials provided
+
+* with the distribution.
+
+* * Neither the name of the Hiroshima University nor the names of
+
+* its contributors may be used to endorse or promote products
+
+* derived from this software without specific prior written
+
+* permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 13. Some of the cuRAND library routines were derived from
+
+* code developed by D. E. Shaw Research and are subject to
+
+* the following license:
+
+*
+
+* Copyright 2010-2011, D. E. Shaw Research.
+
+*
+
+* All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions, and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions, and the following
+
+* disclaimer in the documentation and/or other materials provided
+
+* with the distribution.
+
+* * Neither the name of D. E. Shaw Research nor the names of its
+
+* contributors may be used to endorse or promote products derived
+
+* from this software without specific prior written permission.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 14. Some of the Math library routines were written by or
+
+* derived from code developed by Norbert Juffa and are
+
+* subject to the following license:
+
+*
+
+* Copyright (c) 2015-2017, Norbert Juffa
+
+* All rights reserved.
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions
+
+* are met:
+
+*
+
+* 1. Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+*
+
+* 2. Redistributions in binary form must reproduce the above copyright
+
+* notice, this list of conditions and the following disclaimer in the
+
+* documentation and/or other materials provided with the distribution.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 15. Licensee's use of the lz4 third party component is
+
+* subject to the following terms and conditions:
+
+*
+
+* Copyright (C) 2011-2013, Yann Collet.
+
+* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
+
+*
+
+* Redistribution and use in source and binary forms, with or without
+
+* modification, are permitted provided that the following conditions are
+
+* met:
+
+*
+
+* * Redistributions of source code must retain the above copyright
+
+* notice, this list of conditions and the following disclaimer.
+
+* * Redistributions in binary form must reproduce the above
+
+* copyright notice, this list of conditions and the following disclaimer
+
+* in the documentation and/or other materials provided with the
+
+* distribution.
+
+*
+
+* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+*
+
+* 16. The NPP library uses code from the Boost Math Toolkit,
+
+* and is subject to the following license:
+
+*
+
+* Boost Software License - Version 1.0 - August 17th, 2003
+
+* . . . .
+
+*
+
+* Permission is hereby granted, free of charge, to any person or
+
+* organization obtaining a copy of the software and accompanying
+
+* documentation covered by this license (the "Software") to use,
+
+* reproduce, display, distribute, execute, and transmit the Software,
+
+* and to prepare derivative works of the Software, and to permit
+
+* third-parties to whom the Software is furnished to do so, all
+
+* subject to the following:
+
+*
+
+* The copyright notices in the Software and this entire statement,
+
+* including the above license grant, this restriction and the following
+
+* disclaimer, must be included in all copies of the Software, in whole
+
+* or in part, and all derivative works of the Software, unless such
+
+* copies or derivative works are solely in the form of machine-executable
+
+* object code generated by a source language processor.
+
+*
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
+
+* NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+
+* ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
+
+* OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
+
+* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+
+* OTHER DEALINGS IN THE SOFTWARE.
+
+*
+
+* 17. Portions of the Nsight Eclipse Edition is subject to the
+
+* following license:
+
+*
+
+* The Eclipse Foundation makes available all content in this plug-in
+
+* ("Content"). Unless otherwise indicated below, the Content is provided
+
+* to you under the terms and conditions of the Eclipse Public License
+
+* Version 1.0 ("EPL"). A copy of the EPL is available at http://
+
+* www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program"
+
+* will mean the Content.
+
+*
+
+* If you did not receive this Content directly from the Eclipse
+
+* Foundation, the Content is being redistributed by another party
+
+* ("Redistributor") and different terms and conditions may apply to your
+
+* use of any object code in the Content. Check the Redistributor's
+
+* license that was provided with the Content. If no such license exists,
+
+* contact the Redistributor. Unless otherwise indicated below, the terms
+
+* and conditions of the EPL still apply to any source code in the
+
+* Content and such source code may be obtained at http://www.eclipse.org.
+
+*
+
+* 18. Some of the cuBLAS library routines uses code from
+
+* OpenAI, which is subject to the following license:
+
+*
+
+* License URL
+
+* https://github.com/openai/openai-gemm/blob/master/LICENSE
+
+*
+
+* License Text
+
+* The MIT License
+
+*
+
+* Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc.
+
+*
+
+* Permission is hereby granted, free of charge, to any person obtaining a copy
+
+* of this software and associated documentation files (the "Software"), to deal
+
+* in the Software without restriction, including without limitation the rights
+
+* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+* copies of the Software, and to permit persons to whom the Software is
+
+* furnished to do so, subject to the following conditions:
+
+*
+
+* The above copyright notice and this permission notice shall be included in
+
+* all copies or substantial portions of the Software.
+
+*
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+* THE SOFTWARE.
+
+*
+
+* 19. Licensee's use of the Visual Studio Setup Configuration
+
+* Samples is subject to the following license:
+
+*
+
+* The MIT License (MIT)
+
+* Copyright (C) Microsoft Corporation. All rights reserved.
+
+*
+
+* Permission is hereby granted, free of charge, to any person
+
+* obtaining a copy of this software and associated documentation
+
+* files (the "Software"), to deal in the Software without restriction,
+
+* including without limitation the rights to use, copy, modify, merge,
+
+* publish, distribute, sublicense, and/or sell copies of the Software,
+
+* and to permit persons to whom the Software is furnished to do so,
+
+* subject to the following conditions:
+
+*
+
+* The above copyright notice and this permission notice shall be included
+
+* in all copies or substantial portions of the Software.
+
+*
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+
+* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+*
+
+* 20. Licensee's use of linmath.h header for CPU functions for
+
+* GL vector/matrix operations from lunarG is subject to the
+
+* Apache License Version 2.0.
+
+*
+
+* 21. The DX12-CUDA sample uses the d3dx12.h header, which is
+
+* subject to the MIT license .
+
+*
+
+* -----------------
+
+*/
+
+
CUDA API version 11.2
+End User License Agreement
+
+--------------------------
+
+
+The CUDA Toolkit End User License Agreement applies to the
+
+NVIDIA CUDA Toolkit, the NVIDIA CUDA Samples, the NVIDIA
+
+Display Driver, NVIDIA Nsight tools (Visual Studio Edition),
+
+and the associated documentation on CUDA APIs, programming
+
+model and development tools. If you do not agree with the
+
+terms and conditions of the license agreement, then do not
+
+download or use the software.
+
+
+Last updated: Nov 2, 2020.
+
+
+
+Preface
+
+-------
+
+
+The Software License Agreement in Chapter 1 and the Supplement
+
+in Chapter 2 contain license terms and conditions that govern
+
+the use of NVIDIA software. By accepting this agreement, you
+
+agree to comply with all the terms and conditions applicable
+
+to the product(s) included herein.
+
+
+
+NVIDIA Driver
+
+
+
+Description
+
+
+This package contains the operating system driver and
+
+fundamental system software components for NVIDIA GPUs.
+
+
+
+NVIDIA CUDA Toolkit
+
+
+
+Description
+
+
+The NVIDIA CUDA Toolkit provides command-line and graphical
+
+tools for building, debugging and optimizing the performance
+
+of applications accelerated by NVIDIA GPUs, runtime and math
+
+libraries, and documentation including programming guides,
+
+user manuals, and API references.
+
+
+This package includes over 100+ CUDA examples that demonstrate
+
+various CUDA programming principles, and efficient CUDA
+
+implementation of algorithms in specific application domains.
+
+
+NVIDIA Nsight Visual Studio Edition (Windows only)
+
+
+
+Description
+
+
+NVIDIA Nsight Development Platform, Visual Studio Edition is a
+
+development environment integrated into Microsoft Visual
+
+Studio that provides tools for debugging, profiling, analyzing
+
+and optimizing your GPU computing and graphics applications.
+
+
+
+Default Install Location of Nsight Visual Studio Edition
+
+
+Windows platform:
+
+
+%ProgramFiles(x86)%\NVIDIA Corporation\Nsight Visual Studio Edition #.#
+
+
+
+1. License Agreement for NVIDIA Software Development Kits
+
+---------------------------------------------------------
+
+
+
+Important Notice—Read before downloading, installing,
+
+copying or using the licensed software:
+
+-------------------------------------------------------
+
+
+This license agreement, including exhibits attached
+
+("Agreement") is a legal agreement between you and NVIDIA
+
+Corporation ("NVIDIA") and governs your use of a NVIDIA
+
+software development kit ("SDK").
+
+
+Each SDK has its own set of software and materials, but here
+
+is a description of the types of items that may be included in
+
+a SDK: source code, header files, APIs, data sets and assets
+
+(examples include images, textures, models, scenes, videos,
+
+native API input/output files), binary software, sample code,
+
+libraries, utility programs, programming code and
+
+documentation.
+
+
+This Agreement can be accepted only by an adult of legal age
+
+of majority in the country in which the SDK is used.
+
+
+If you are entering into this Agreement on behalf of a company
+
+or other legal entity, you represent that you have the legal
+
+authority to bind the entity to this Agreement, in which case
+
+"you" will mean the entity you represent.
+
+
+If you don’t have the required age or authority to accept
+
+this Agreement, or if you don’t accept all the terms and
+
+conditions of this Agreement, do not download, install or use
+
+the SDK.
+
+
+You agree to use the SDK only for purposes that are permitted
+
+by (a) this Agreement, and (b) any applicable law, regulation
+
+or generally accepted practices or guidelines in the relevant
+
+jurisdictions.
+
+
+
+1.1. License
+
+
+
+1.1.1. License Grant
+
+
+Subject to the terms of this Agreement, NVIDIA hereby grants
+
+you a non-exclusive, non-transferable license, without the
+
+right to sublicense (except as expressly provided in this
+
+Agreement) to:
+
+
+ 1. Install and use the SDK,
+
+
+ 2. Modify and create derivative works of sample source code
+
+ delivered in the SDK, and
+
+
+ 3. Distribute those portions of the SDK that are identified
+
+ in this Agreement as distributable, as incorporated in
+
+ object code format into a software application that meets
+
+ the distribution requirements indicated in this Agreement.
+
+
+
+1.1.2. Distribution Requirements
+
+
+These are the distribution requirements for you to exercise
+
+the distribution grant:
+
+
+ 1. Your application must have material additional
+
+ functionality, beyond the included portions of the SDK.
+
+
+ 2. The distributable portions of the SDK shall only be
+
+ accessed by your application.
+
+
+ 3. The following notice shall be included in modifications
+
+ and derivative works of sample source code distributed:
+
+ "This software contains source code provided by NVIDIA
+
+ Corporation."
+
+
+ 4. Unless a developer tool is identified in this Agreement
+
+ as distributable, it is delivered for your internal use
+
+ only.
+
+
+ 5. The terms under which you distribute your application
+
+ must be consistent with the terms of this Agreement,
+
+ including (without limitation) terms relating to the
+
+ license grant and license restrictions and protection of
+
+ NVIDIA’s intellectual property rights. Additionally, you
+
+ agree that you will protect the privacy, security and
+
+ legal rights of your application users.
+
+
+ 6. You agree to notify NVIDIA in writing of any known or
+
+ suspected distribution or use of the SDK not in compliance
+
+ with the requirements of this Agreement, and to enforce
+
+ the terms of your agreements with respect to distributed
+
+ SDK.
+
+
+
+1.1.3. Authorized Users
+
+
+You may allow employees and contractors of your entity or of
+
+your subsidiary(ies) to access and use the SDK from your
+
+secure network to perform work on your behalf.
+
+
+If you are an academic institution you may allow users
+
+enrolled or employed by the academic institution to access and
+
+use the SDK from your secure network.
+
+
+You are responsible for the compliance with the terms of this
+
+Agreement by your authorized users. If you become aware that
+
+your authorized users didn’t follow the terms of this
+
+Agreement, you agree to take reasonable steps to resolve the
+
+non-compliance and prevent new occurrences.
+
+
+
+1.1.4. Pre-Release SDK
+
+
+The SDK versions identified as alpha, beta, preview or
+
+otherwise as pre-release, may not be fully functional, may
+
+contain errors or design flaws, and may have reduced or
+
+different security, privacy, accessibility, availability, and
+
+reliability standards relative to commercial versions of
+
+NVIDIA software and materials. Use of a pre-release SDK may
+
+result in unexpected results, loss of data, project delays or
+
+other unpredictable damage or loss.
+
+
+You may use a pre-release SDK at your own risk, understanding
+
+that pre-release SDKs are not intended for use in production
+
+or business-critical systems.
+
+
+NVIDIA may choose not to make available a commercial version
+
+of any pre-release SDK. NVIDIA may also choose to abandon
+
+development and terminate the availability of a pre-release
+
+SDK at any time without liability.
+
+
+
+1.1.5. Updates
+
+
+NVIDIA may, at its option, make available patches, workarounds
+
+or other updates to this SDK. Unless the updates are provided
+
+with their separate governing terms, they are deemed part of
+
+the SDK licensed to you as provided in this Agreement. You
+
+agree that the form and content of the SDK that NVIDIA
+
+provides may change without prior notice to you. While NVIDIA
+
+generally maintains compatibility between versions, NVIDIA may
+
+in some cases make changes that introduce incompatibilities in
+
+future versions of the SDK.
+
+
+
+1.1.6. Third Party Licenses
+
+
+The SDK may come bundled with, or otherwise include or be
+
+distributed with, third party software licensed by a NVIDIA
+
+supplier and/or open source software provided under an open
+
+source license. Use of third party software is subject to the
+
+third-party license terms, or in the absence of third party
+
+terms, the terms of this Agreement. Copyright to third party
+
+software is held by the copyright holders indicated in the
+
+third-party software or license.
+
+
+Subject to the other terms of this Agreement, you may use the
+
+SDK to develop and test applications released under Open
+
+Source Initiative (OSI) approved open source software
+
+licenses.
+
+
+
+1.1.7. Reservation of Rights
+
+
+NVIDIA reserves all rights, title, and interest in and to the
+
+SDK, not expressly granted to you under this Agreement.
+
+
+
+1.2. Limitations
+
+
+The following license limitations apply to your use of the
+
+SDK:
+
+
+ 1. You may not reverse engineer, decompile or disassemble,
+
+ or remove copyright or other proprietary notices from any
+
+ portion of the SDK or copies of the SDK.
+
+
+ 2. Except as expressly provided in this Agreement, you may
+
+ not copy, sell, rent, sublicense, transfer, distribute,
+
+ modify, or create derivative works of any portion of the
+
+ SDK. For clarity, you may not distribute or sublicense the
+
+ SDK as a stand-alone product.
+
+
+ 3. Unless you have an agreement with NVIDIA for this
+
+ purpose, you may not indicate that an application created
+
+ with the SDK is sponsored or endorsed by NVIDIA.
+
+
+ 4. You may not bypass, disable, or circumvent any
+
+ encryption, security, digital rights management or
+
+ authentication mechanism in the SDK.
+
+
+ 5. You may not use the SDK in any manner that would cause it
+
+ to become subject to an open source software license. As
+
+ examples, licenses that require as a condition of use,
+
+ modification, and/or distribution that the SDK be:
+
+
+ a. Disclosed or distributed in source code form;
+
+
+ b. Licensed for the purpose of making derivative works;
+
+ or
+
+
+ c. Redistributable at no charge.
+
+
+ 6. Unless you have an agreement with NVIDIA for this
+
+ purpose, you may not use the SDK with any system or
+
+ application where the use or failure of the system or
+
+ application can reasonably be expected to threaten or
+
+ result in personal injury, death, or catastrophic loss.
+
+ Examples include use in avionics, navigation, military,
+
+ medical, life support or other life critical applications.
+
+ NVIDIA does not design, test or manufacture the SDK for
+
+ these critical uses and NVIDIA shall not be liable to you
+
+ or any third party, in whole or in part, for any claims or
+
+ damages arising from such uses.
+
+
+ 7. You agree to defend, indemnify and hold harmless NVIDIA
+
+ and its affiliates, and their respective employees,
+
+ contractors, agents, officers and directors, from and
+
+ against any and all claims, damages, obligations, losses,
+
+ liabilities, costs or debt, fines, restitutions and
+
+ expenses (including but not limited to attorney’s fees
+
+ and costs incident to establishing the right of
+
+ indemnification) arising out of or related to your use of
+
+ the SDK outside of the scope of this Agreement, or not in
+
+ compliance with its terms.
+
+
+
+1.3. Ownership
+
+
+ 1. NVIDIA or its licensors hold all rights, title and
+
+ interest in and to the SDK and its modifications and
+
+ derivative works, including their respective intellectual
+
+ property rights, subject to your rights under Section
+
+ 1.3.2. This SDK may include software and materials from
+
+ NVIDIA’s licensors, and these licensors are intended
+
+ third party beneficiaries that may enforce this Agreement
+
+ with respect to their intellectual property rights.
+
+
+ 2. You hold all rights, title and interest in and to your
+
+ applications and your derivative works of the sample
+
+ source code delivered in the SDK, including their
+
+ respective intellectual property rights, subject to
+
+ NVIDIA’s rights under Section 1.3.1.
+
+
+ 3. You may, but don’t have to, provide to NVIDIA
+
+ suggestions, feature requests or other feedback regarding
+
+ the SDK, including possible enhancements or modifications
+
+ to the SDK. For any feedback that you voluntarily provide,
+
+ you hereby grant NVIDIA and its affiliates a perpetual,
+
+ non-exclusive, worldwide, irrevocable license to use,
+
+ reproduce, modify, license, sublicense (through multiple
+
+ tiers of sublicensees), and distribute (through multiple
+
+ tiers of distributors) it without the payment of any
+
+ royalties or fees to you. NVIDIA will use feedback at its
+
+ choice. NVIDIA is constantly looking for ways to improve
+
+ its products, so you may send feedback to NVIDIA through
+
+ the developer portal at https://developer.nvidia.com.
+
+
+
+1.4. No Warranties
+
+
+THE SDK IS PROVIDED BY NVIDIA "AS IS" AND "WITH ALL
+
+FAULTS." TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND
+
+ITS AFFILIATES EXPRESSLY DISCLAIM ALL WARRANTIES OF ANY KIND
+
+OR NATURE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING,
+
+BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
+
+FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, OR THE
+
+ABSENCE OF ANY DEFECTS THEREIN, WHETHER LATENT OR PATENT. NO
+
+WARRANTY IS MADE ON THE BASIS OF TRADE USAGE, COURSE OF
+
+DEALING OR COURSE OF TRADE.
+
+
+
+1.5. Limitation of Liability
+
+
+TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS
+
+AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
+
+PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY LOST PROFITS, LOSS
+
+OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF
+
+PROCURING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION
+
+WITH THIS AGREEMENT OR THE USE OR PERFORMANCE OF THE SDK,
+
+WHETHER SUCH LIABILITY ARISES FROM ANY CLAIM BASED UPON BREACH
+
+OF CONTRACT, BREACH OF WARRANTY, TORT (INCLUDING NEGLIGENCE),
+
+PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY OF
+
+LIABILITY. IN NO EVENT WILL NVIDIA’S AND ITS AFFILIATES
+
+TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS
+
+AGREEMENT EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE
+
+NUMBER OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS
+
+LIMIT.
+
+
+These exclusions and limitations of liability shall apply
+
+regardless if NVIDIA or its affiliates have been advised of
+
+the possibility of such damages, and regardless of whether a
+
+remedy fails its essential purpose. These exclusions and
+
+limitations of liability form an essential basis of the
+
+bargain between the parties, and, absent any of these
+
+exclusions or limitations of liability, the provisions of this
+
+Agreement, including, without limitation, the economic terms,
+
+would be substantially different.
+
+
+
+1.6. Termination
+
+
+ 1. This Agreement will continue to apply until terminated by
+
+ either you or NVIDIA as described below.
+
+
+ 2. If you want to terminate this Agreement, you may do so by
+
+ stopping to use the SDK.
+
+
+ 3. NVIDIA may, at any time, terminate this Agreement if:
+
+
+ a. (i) you fail to comply with any term of this
+
+ Agreement and the non-compliance is not fixed within
+
+ thirty (30) days following notice from NVIDIA (or
+
+ immediately if you violate NVIDIA’s intellectual
+
+ property rights);
+
+
+ b. (ii) you commence or participate in any legal
+
+ proceeding against NVIDIA with respect to the SDK; or
+
+
+ c. (iii) NVIDIA decides to no longer provide the SDK in
+
+ a country or, in NVIDIA’s sole discretion, the
+
+ continued use of it is no longer commercially viable.
+
+
+ 4. Upon any termination of this Agreement, you agree to
+
+ promptly discontinue use of the SDK and destroy all copies
+
+ in your possession or control. Your prior distributions in
+
+ accordance with this Agreement are not affected by the
+
+ termination of this Agreement. Upon written request, you
+
+ will certify in writing that you have complied with your
+
+ commitments under this section. Upon any termination of
+
+ this Agreement all provisions survive except for the
+
+ license grant provisions.
+
+
+
+1.7. General
+
+
+If you wish to assign this Agreement or your rights and
+
+obligations, including by merger, consolidation, dissolution
+
+or operation of law, contact NVIDIA to ask for permission. Any
+
+attempted assignment not approved by NVIDIA in writing shall
+
+be void and of no effect. NVIDIA may assign, delegate or
+
+transfer this Agreement and its rights and obligations, and if
+
+to a non-affiliate you will be notified.
+
+
+You agree to cooperate with NVIDIA and provide reasonably
+
+requested information to verify your compliance with this
+
+Agreement.
+
+
+This Agreement will be governed in all respects by the laws of
+
+the United States and of the State of Delaware as those laws
+
+are applied to contracts entered into and performed entirely
+
+within Delaware by Delaware residents, without regard to the
+
+conflicts of laws principles. The United Nations Convention on
+
+Contracts for the International Sale of Goods is specifically
+
+disclaimed. You agree to all terms of this Agreement in the
+
+English language.
+
+
+The state or federal courts residing in Santa Clara County,
+
+California shall have exclusive jurisdiction over any dispute
+
+or claim arising out of this Agreement. Notwithstanding this,
+
+you agree that NVIDIA shall still be allowed to apply for
+
+injunctive remedies or an equivalent type of urgent legal
+
+relief in any jurisdiction.
+
+
+If any court of competent jurisdiction determines that any
+
+provision of this Agreement is illegal, invalid or
+
+unenforceable, such provision will be construed as limited to
+
+the extent necessary to be consistent with and fully
+
+enforceable under the law and the remaining provisions will
+
+remain in full force and effect. Unless otherwise specified,
+
+remedies are cumulative.
+
+
+Each party acknowledges and agrees that the other is an
+
+independent contractor in the performance of this Agreement.
+
+
+The SDK has been developed entirely at private expense and is
+
+"commercial items" consisting of "commercial computer
+
+software" and "commercial computer software
+
+documentation" provided with RESTRICTED RIGHTS. Use,
+
+duplication or disclosure by the U.S. Government or a U.S.
+
+Government subcontractor is subject to the restrictions in
+
+this Agreement pursuant to DFARS 227.7202-3(a) or as set forth
+
+in subparagraphs (c)(1) and (2) of the Commercial Computer
+
+Software - Restricted Rights clause at FAR 52.227-19, as
+
+applicable. Contractor/manufacturer is NVIDIA, 2788 San Tomas
+
+Expressway, Santa Clara, CA 95051.
+
+
+The SDK is subject to United States export laws and
+
+regulations. You agree that you will not ship, transfer or
+
+export the SDK into any country, or use the SDK in any manner,
+
+prohibited by the United States Bureau of Industry and
+
+Security or economic sanctions regulations administered by the
+
+U.S. Department of Treasury’s Office of Foreign Assets
+
+Control (OFAC), or any applicable export laws, restrictions or
+
+regulations. These laws include restrictions on destinations,
+
+end users and end use. By accepting this Agreement, you
+
+confirm that you are not a resident or citizen of any country
+
+currently embargoed by the U.S. and that you are not otherwise
+
+prohibited from receiving the SDK.
+
+
+Any notice delivered by NVIDIA to you under this Agreement
+
+will be delivered via mail, email or fax. You agree that any
+
+notices that NVIDIA sends you electronically will satisfy any
+
+legal communication requirements. Please direct your legal
+
+notices or other correspondence to NVIDIA Corporation, 2788
+
+San Tomas Expressway, Santa Clara, California 95051, United
+
+States of America, Attention: Legal Department.
+
+
+This Agreement and any exhibits incorporated into this
+
+Agreement constitute the entire agreement of the parties with
+
+respect to the subject matter of this Agreement and supersede
+
+all prior negotiations or documentation exchanged between the
+
+parties relating to this SDK license. Any additional and/or
+
+conflicting terms on documents issued by you are null, void,
+
+and invalid. Any amendment or waiver under this Agreement
+
+shall be in writing and signed by representatives of both
+
+parties.
+
+
+
+2. CUDA Toolkit Supplement to Software License Agreement for
+
+NVIDIA Software Development Kits
+
+------------------------------------------------------------
+
+
+The terms in this supplement govern your use of the NVIDIA
+
+CUDA Toolkit SDK under the terms of your license agreement
+
+("Agreement") as modified by this supplement. Capitalized
+
+terms used but not defined below have the meaning assigned to
+
+them in the Agreement.
+
+
+This supplement is an exhibit to the Agreement and is
+
+incorporated as an integral part of the Agreement. In the
+
+event of conflict between the terms in this supplement and the
+
+terms in the Agreement, the terms in this supplement govern.
+
+
+
+2.1. License Scope
+
+
+The SDK is licensed for you to develop applications only for
+
+use in systems with NVIDIA GPUs.
+
+
+
+2.2. Distribution
+
+
+The portions of the SDK that are distributable under the
+
+Agreement are listed in Attachment A.
+
+
+
+2.3. Operating Systems
+
+
+Those portions of the SDK designed exclusively for use on the
+
+Linux or FreeBSD operating systems, or other operating systems
+
+derived from the source code to these operating systems, may
+
+be copied and redistributed for use in accordance with this
+
+Agreement, provided that the object code files are not
+
+modified in any way (except for unzipping of compressed
+
+files).
+
+
+
+2.4. Audio and Video Encoders and Decoders
+
+
+You acknowledge and agree that it is your sole responsibility
+
+to obtain any additional third-party licenses required to
+
+make, have made, use, have used, sell, import, and offer for
+
+sale your products or services that include or incorporate any
+
+third-party software and content relating to audio and/or
+
+video encoders and decoders from, including but not limited
+
+to, Microsoft, Thomson, Fraunhofer IIS, Sisvel S.p.A.,
+
+MPEG-LA, and Coding Technologies. NVIDIA does not grant to you
+
+under this Agreement any necessary patent or other rights with
+
+respect to any audio and/or video encoders and decoders.
+
+
+
+2.5. Licensing
+
+
+If the distribution terms in this Agreement are not suitable
+
+for your organization, or for any questions regarding this
+
+Agreement, please contact NVIDIA at
+
+nvidia-compute-license-questions@nvidia.com.
+
+
+
+2.6. Attachment A
+
+
+The following CUDA Toolkit files may be distributed with
+
+Licensee Applications developed by you, including certain
+
+variations of these files that have version number or
+
+architecture specific information embedded in the file name -
+
+as an example only, for release version 9.0 of the 64-bit
+
+Windows software, the file cudart64_90.dll is redistributable.
+
+
+The NVIDIA CUDA Driver Libraries are only distributable in
+
+applications that meet this criteria:
+
+
+ 1. The application was developed starting from a NVIDIA CUDA
+
+ container obtained from Docker Hub or the NVIDIA GPU
+
+ Cloud, and
+
+
+ 2. The resulting application is packaged as a Docker
+
+ container and distributed to users on Docker Hub or the
+
+ NVIDIA GPU Cloud only.
+
+
+In addition to the rights above, for parties that are
+
+developing software intended solely for use on Jetson
+
+development kits or Jetson modules, and running Linux for
+
+Tegra software, the following shall apply:
+
+
+ * The SDK may be distributed in its entirety, as provided by
+
+ NVIDIA, and without separation of its components, for you
+
+ and/or your licensees to create software development kits
+
+ for use only on the Jetson platform and running Linux for
+
+ Tegra software.
+
+
+
+2.7. Attachment B
+
+
+
+Additional Licensing Obligations
+
+
+The following third party components included in the SOFTWARE
+
+are licensed to Licensee pursuant to the following terms and
+
+conditions:
+
+
+ 1. Licensee's use of the GDB third party component is
+
+ subject to the terms and conditions of GNU GPL v3:
+
+
+ This product includes copyrighted third-party software licensed
+
+ under the terms of the GNU General Public License v3 ("GPL v3").
+
+ All third-party software packages are copyright by their respective
+
+ authors. GPL v3 terms and conditions are hereby incorporated into
+
+ the Agreement by this reference: http://www.gnu.org/licenses/gpl.txt
+
+
+ Consistent with these licensing requirements, the software
+
+ listed below is provided under the terms of the specified
+
+ open source software licenses. To obtain source code for
+
+ software provided under licenses that require
+
+ redistribution of source code, including the GNU General
+
+ Public License (GPL) and GNU Lesser General Public License
+
+ (LGPL), contact oss-requests@nvidia.com. This offer is
+
+ valid for a period of three (3) years from the date of the
+
+ distribution of this product by NVIDIA CORPORATION.
+
+
+ Component License
+
+ CUDA-GDB GPL v3
+
+
+ 2. Licensee represents and warrants that any and all third
+
+ party licensing and/or royalty payment obligations in
+
+ connection with Licensee's use of the H.264 video codecs
+
+ are solely the responsibility of Licensee.
+
+
+ 3. Licensee's use of the Thrust library is subject to the
+
+ terms and conditions of the Apache License Version 2.0.
+
+ All third-party software packages are copyright by their
+
+ respective authors. Apache License Version 2.0 terms and
+
+ conditions are hereby incorporated into the Agreement by
+
+ this reference.
+
+ http://www.apache.org/licenses/LICENSE-2.0.html
+
+
+ In addition, Licensee acknowledges the following notice:
+
+ Thrust includes source code from the Boost Iterator,
+
+ Tuple, System, and Random Number libraries.
+
+
+ Boost Software License - Version 1.0 - August 17th, 2003
+
+ . . . .
+
+
+ Permission is hereby granted, free of charge, to any person or
+
+ organization obtaining a copy of the software and accompanying
+
+ documentation covered by this license (the "Software") to use,
+
+ reproduce, display, distribute, execute, and transmit the Software,
+
+ and to prepare derivative works of the Software, and to permit
+
+ third-parties to whom the Software is furnished to do so, all
+
+ subject to the following:
+
+
+ The copyright notices in the Software and this entire statement,
+
+ including the above license grant, this restriction and the following
+
+ disclaimer, must be included in all copies of the Software, in whole
+
+ or in part, and all derivative works of the Software, unless such
+
+ copies or derivative works are solely in the form of machine-executable
+
+ object code generated by a source language processor.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
+
+ NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+
+ ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
+
+ OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
+
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+
+ OTHER DEALINGS IN THE SOFTWARE.
+
+
+ 4. Licensee's use of the LLVM third party component is
+
+ subject to the following terms and conditions:
+
+
+ ======================================================
+
+ LLVM Release License
+
+ ======================================================
+
+ University of Illinois/NCSA
+
+ Open Source License
+
+
+ Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
+
+ All rights reserved.
+
+
+ Developed by:
+
+
+ LLVM Team
+
+
+ University of Illinois at Urbana-Champaign
+
+
+ http://llvm.org
+
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+
+ of this software and associated documentation files (the "Software"), to
+
+ deal with the Software without restriction, including without limitation the
+
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+
+ sell copies of the Software, and to permit persons to whom the Software is
+
+ furnished to do so, subject to the following conditions:
+
+
+ * Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimers.
+
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimers in the
+
+ documentation and/or other materials provided with the distribution.
+
+
+ * Neither the names of the LLVM Team, University of Illinois at Urbana-
+
+ Champaign, nor the names of its contributors may be used to endorse or
+
+ promote products derived from this Software without specific prior
+
+ written permission.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+
+ THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+
+ DEALINGS WITH THE SOFTWARE.
+
+
+ 5. Licensee's use (e.g. nvprof) of the PCRE third party
+
+ component is subject to the following terms and
+
+ conditions:
+
+
+ ------------
+
+ PCRE LICENCE
+
+ ------------
+
+ PCRE is a library of functions to support regular expressions whose syntax
+
+ and semantics are as close as possible to those of the Perl 5 language.
+
+ Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
+
+ specified below. The documentation for PCRE, supplied in the "doc"
+
+ directory, is distributed under the same terms as the software itself. The
+
+ basic library functions are written in C and are freestanding. Also
+
+ included in the distribution is a set of C++ wrapper functions, and a just-
+
+ in-time compiler that can be used to optimize pattern matching. These are
+
+ both optional features that can be omitted when the library is built.
+
+
+ THE BASIC LIBRARY FUNCTIONS
+
+ ---------------------------
+
+ Written by: Philip Hazel
+
+ Email local part: ph10
+
+ Email domain: cam.ac.uk
+
+ University of Cambridge Computing Service,
+
+ Cambridge, England.
+
+ Copyright (c) 1997-2012 University of Cambridge
+
+ All rights reserved.
+
+
+ PCRE JUST-IN-TIME COMPILATION SUPPORT
+
+ -------------------------------------
+
+ Written by: Zoltan Herczeg
+
+ Email local part: hzmester
+
+ Emain domain: freemail.hu
+
+ Copyright(c) 2010-2012 Zoltan Herczeg
+
+ All rights reserved.
+
+
+ STACK-LESS JUST-IN-TIME COMPILER
+
+ --------------------------------
+
+ Written by: Zoltan Herczeg
+
+ Email local part: hzmester
+
+ Emain domain: freemail.hu
+
+ Copyright(c) 2009-2012 Zoltan Herczeg
+
+ All rights reserved.
+
+
+ THE C++ WRAPPER FUNCTIONS
+
+ -------------------------
+
+ Contributed by: Google Inc.
+
+ Copyright (c) 2007-2012, Google Inc.
+
+ All rights reserved.
+
+
+ THE "BSD" LICENCE
+
+ -----------------
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+
+ * Neither the name of the University of Cambridge nor the name of Google
+
+ Inc. nor the names of their contributors may be used to endorse or
+
+ promote products derived from this software without specific prior
+
+ written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+ POSSIBILITY OF SUCH DAMAGE.
+
+
+ 6. Some of the cuBLAS library routines were written by or
+
+ derived from code written by Vasily Volkov and are subject
+
+ to the Modified Berkeley Software Distribution License as
+
+ follows:
+
+
+ Copyright (c) 2007-2009, Regents of the University of California
+
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * Neither the name of the University of California, Berkeley nor
+
+ the names of its contributors may be used to endorse or promote
+
+ products derived from this software without specific prior
+
+ written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
+
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+ POSSIBILITY OF SUCH DAMAGE.
+
+
+ 7. Some of the cuBLAS library routines were written by or
+
+ derived from code written by Davide Barbieri and are
+
+ subject to the Modified Berkeley Software Distribution
+
+ License as follows:
+
+
+ Copyright (c) 2008-2009 Davide Barbieri @ University of Rome Tor Vergata.
+
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * The name of the author may not be used to endorse or promote
+
+ products derived from this software without specific prior
+
+ written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
+
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+ POSSIBILITY OF SUCH DAMAGE.
+
+
+ 8. Some of the cuBLAS library routines were derived from
+
+ code developed by the University of Tennessee and are
+
+ subject to the Modified Berkeley Software Distribution
+
+ License as follows:
+
+
+ Copyright (c) 2010 The University of Tennessee.
+
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer listed in this license in the documentation and/or
+
+ other materials provided with the distribution.
+
+ * Neither the name of the copyright holders nor the names of its
+
+ contributors may be used to endorse or promote products derived
+
+ from this software without specific prior written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ 9. Some of the cuBLAS library routines were written by or
+
+ derived from code written by Jonathan Hogg and are subject
+
+ to the Modified Berkeley Software Distribution License as
+
+ follows:
+
+
+ Copyright (c) 2012, The Science and Technology Facilities Council (STFC).
+
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * Neither the name of the STFC nor the names of its contributors
+
+ may be used to endorse or promote products derived from this
+
+ software without specific prior written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE STFC BE
+
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+
+ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ 10. Some of the cuBLAS library routines were written by or
+
+ derived from code written by Ahmad M. Abdelfattah, David
+
+ Keyes, and Hatem Ltaief, and are subject to the Apache
+
+ License, Version 2.0, as follows:
+
+
+ -- (C) Copyright 2013 King Abdullah University of Science and Technology
+
+ Authors:
+
+ Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa)
+
+ David Keyes (david.keyes@kaust.edu.sa)
+
+ Hatem Ltaief (hatem.ltaief@kaust.edu.sa)
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions
+
+ are met:
+
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of the King Abdullah University of Science and
+
+ Technology nor the names of its contributors may be used to endorse
+
+ or promote products derived from this software without specific prior
+
+ written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
+
+
+ 11. Some of the cuSPARSE library routines were written by or
+
+ derived from code written by Li-Wen Chang and are subject
+
+ to the NCSA Open Source License as follows:
+
+
+ Copyright (c) 2012, University of Illinois.
+
+
+ All rights reserved.
+
+
+ Developed by: IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu
+
+
+ Permission is hereby granted, free of charge, to any person obtaining
+
+ a copy of this software and associated documentation files (the
+
+ "Software"), to deal with the Software without restriction, including
+
+ without limitation the rights to use, copy, modify, merge, publish,
+
+ distribute, sublicense, and/or sell copies of the Software, and to
+
+ permit persons to whom the Software is furnished to do so, subject to
+
+ the following conditions:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimers in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * Neither the names of IMPACT Group, University of Illinois, nor
+
+ the names of its contributors may be used to endorse or promote
+
+ products derived from this Software without specific prior
+
+ written permission.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+
+ NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
+
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
+
+ SOFTWARE.
+
+
+ 12. Some of the cuRAND library routines were written by or
+
+ derived from code written by Mutsuo Saito and Makoto
+
+ Matsumoto and are subject to the following license:
+
+
+ Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima
+
+ University. All rights reserved.
+
+
+ Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima
+
+ University and University of Tokyo. All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * Neither the name of the Hiroshima University nor the names of
+
+ its contributors may be used to endorse or promote products
+
+ derived from this software without specific prior written
+
+ permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ 13. Some of the cuRAND library routines were derived from
+
+ code developed by D. E. Shaw Research and are subject to
+
+ the following license:
+
+
+ Copyright 2010-2011, D. E. Shaw Research.
+
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions, and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions, and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * Neither the name of D. E. Shaw Research nor the names of its
+
+ contributors may be used to endorse or promote products derived
+
+ from this software without specific prior written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ 14. Some of the Math library routines were written by or
+
+ derived from code developed by Norbert Juffa and are
+
+ subject to the following license:
+
+
+ Copyright (c) 2015-2017, Norbert Juffa
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions
+
+ are met:
+
+
+ 1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ 2. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ 15. Licensee's use of the lz4 third party component is
+
+ subject to the following terms and conditions:
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following disclaimer
+
+ in the documentation and/or other materials provided with the
+
+ distribution.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ 16. The NPP library uses code from the Boost Math Toolkit,
+
+ and is subject to the following license:
+
+
+ Boost Software License - Version 1.0 - August 17th, 2003
+
+ . . . .
+
+
+ Permission is hereby granted, free of charge, to any person or
+
+ organization obtaining a copy of the software and accompanying
+
+ documentation covered by this license (the "Software") to use,
+
+ reproduce, display, distribute, execute, and transmit the Software,
+
+ and to prepare derivative works of the Software, and to permit
+
+ third-parties to whom the Software is furnished to do so, all
+
+ subject to the following:
+
+
+ The copyright notices in the Software and this entire statement,
+
+ including the above license grant, this restriction and the following
+
+ disclaimer, must be included in all copies of the Software, in whole
+
+ or in part, and all derivative works of the Software, unless such
+
+ copies or derivative works are solely in the form of machine-executable
+
+ object code generated by a source language processor.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
+
+ NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+
+ ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR
+
+ OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING
+
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+
+ OTHER DEALINGS IN THE SOFTWARE.
+
+
+ 17. Portions of the Nsight Eclipse Edition is subject to the
+
+ following license:
+
+
+ The Eclipse Foundation makes available all content in this plug-in
+
+ ("Content"). Unless otherwise indicated below, the Content is provided
+
+ to you under the terms and conditions of the Eclipse Public License
+
+ Version 1.0 ("EPL"). A copy of the EPL is available at http://
+
+ www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program"
+
+ will mean the Content.
+
+
+ If you did not receive this Content directly from the Eclipse
+
+ Foundation, the Content is being redistributed by another party
+
+ ("Redistributor") and different terms and conditions may apply to your
+
+ use of any object code in the Content. Check the Redistributor's
+
+ license that was provided with the Content. If no such license exists,
+
+ contact the Redistributor. Unless otherwise indicated below, the terms
+
+ and conditions of the EPL still apply to any source code in the
+
+ Content and such source code may be obtained at http://www.eclipse.org.
+
+
+ 18. Some of the cuBLAS library routines uses code from
+
+ OpenAI, which is subject to the following license:
+
+
+ Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc.
+
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+
+ of this software and associated documentation files (the "Software"), to deal
+
+ in the Software without restriction, including without limitation the rights
+
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+ copies of the Software, and to permit persons to whom the Software is
+
+ furnished to do so, subject to the following conditions:
+
+
+ The above copyright notice and this permission notice shall be included in
+
+ all copies or substantial portions of the Software.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+ THE SOFTWARE.
+
+
+ 19. Licensee's use of the Visual Studio Setup Configuration
+
+ Samples is subject to the following license:
+
+
+ The MIT License (MIT)
+
+ Copyright (C) Microsoft Corporation. All rights reserved.
+
+
+ Permission is hereby granted, free of charge, to any person
+
+ obtaining a copy of this software and associated documentation
+
+ files (the "Software"), to deal in the Software without restriction,
+
+ including without limitation the rights to use, copy, modify, merge,
+
+ publish, distribute, sublicense, and/or sell copies of the Software,
+
+ and to permit persons to whom the Software is furnished to do so,
+
+ subject to the following conditions:
+
+
+ The above copyright notice and this permission notice shall be included
+
+ in all copies or substantial portions of the Software.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+ 20. Licensee's use of linmath.h header for CPU functions for
+
+ GL vector/matrix operations from lunarG is subject to the
+
+ Apache License Version 2.0.
+
+
+ 21. The DX12-CUDA sample uses the d3dx12.h header, which is
+
+ subject to the MIT license .
+
+
+-----------------
+
+
Curl version 7.83.0
+COPYRIGHT AND PERMISSION NOTICE
+
+
+Copyright (c) 1996 - 2022, Daniel Stenberg, , and many
+
+contributors, see the THANKS file.
+
+
+All rights reserved.
+
+
+Permission to use, copy, modify, and distribute this software for any purpose
+
+with or without fee is hereby granted, provided that the above copyright
+
+notice and this permission notice appear in all copies.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN
+
+NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+
+DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+
+OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
+
+OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Except as contained in this notice, the name of a copyright holder shall not
+
+be used in advertising or otherwise to promote the sale, use or other dealings
+
+in this Software without prior written authorization of the copyright holder.
+
+
Dakota version 6.6
+License
+
+
+Licensing terms affecting the use, copying, distribution, and modification of Dakota and its related Dakota GUI are summarized here. These terms potentially affect contributions submitted for inclusion in the Dakota project; please review the terms of contribution before authoring.
+
+
+Dakota GUI
+
+
+Dakota Graphical User Interface (Dakota GUI): Copyright 2017 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the Eclipse Public License.
+
+Dakota Graphical User Interface includes components from the Sandia Analysis Workbench Integration Framework:
+
+Sandia Analysis Workbench Integration Framework (SAW): Copyright 2017 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the Eclipse Public License.
+
+For a complete list of related licenses of third-party libraries used by the Dakota GUI, see the LICENSE.txt file distributed alongside the GUI.
+
+Dakota
+
+
+Dakota versions 5.0 and newer are available under a GNU Lesser General Public License (LGPL). Dakota distributions include third-party software packages, each of which have their own (LGPL-compatible) licensing terms. For a summary see the top-level README file in the Dakota distribution.
+
+Dakota versions 3.0 through 4.2+ are available under a GNU General Public License (GPL).
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
Docker CE version 17.06.1
+ Apache License
+
+ Version 2.0, January 2004
+
+ https://www.apache.org/licenses/
+
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+
+ 1. Definitions.
+
+
+ "License" shall mean the terms and conditions for use, reproduction,
+
+ and distribution as defined by Sections 1 through 9 of this document.
+
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+
+ the copyright owner that is granting the License.
+
+
+ "Legal Entity" shall mean the union of the acting entity and all
+
+ other entities that control, are controlled by, or are under common
+
+ control with that entity. For the purposes of this definition,
+
+ "control" means (i) the power, direct or indirect, to cause the
+
+ direction or management of such entity, whether by contract or
+
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+
+ exercising permissions granted by this License.
+
+
+ "Source" form shall mean the preferred form for making modifications,
+
+ including but not limited to software source code, documentation
+
+ source, and configuration files.
+
+
+ "Object" form shall mean any form resulting from mechanical
+
+ transformation or translation of a Source form, including but
+
+ not limited to compiled object code, generated documentation,
+
+ and conversions to other media types.
+
+
+ "Work" shall mean the work of authorship, whether in Source or
+
+ Object form, made available under the License, as indicated by a
+
+ copyright notice that is included in or attached to the work
+
+ (an example is provided in the Appendix below).
+
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+
+ form, that is based on (or derived from) the Work and for which the
+
+ editorial revisions, annotations, elaborations, or other modifications
+
+ represent, as a whole, an original work of authorship. For the purposes
+
+ of this License, Derivative Works shall not include works that remain
+
+ separable from, or merely link (or bind by name) to the interfaces of,
+
+ the Work and Derivative Works thereof.
+
+
+ "Contribution" shall mean any work of authorship, including
+
+ the original version of the Work and any modifications or additions
+
+ to that Work or Derivative Works thereof, that is intentionally
+
+ submitted to Licensor for inclusion in the Work by the copyright owner
+
+ or by an individual or Legal Entity authorized to submit on behalf of
+
+ the copyright owner. For the purposes of this definition, "submitted"
+
+ means any form of electronic, verbal, or written communication sent
+
+ to the Licensor or its representatives, including but not limited to
+
+ communication on electronic mailing lists, source code control systems,
+
+ and issue tracking systems that are managed by, or on behalf of, the
+
+ Licensor for the purpose of discussing and improving the Work, but
+
+ excluding communication that is conspicuously marked or otherwise
+
+ designated in writing by the copyright owner as "Not a Contribution."
+
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+
+ on behalf of whom a Contribution has been received by Licensor and
+
+ subsequently incorporated within the Work.
+
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ copyright license to reproduce, prepare Derivative Works of,
+
+ publicly display, publicly perform, sublicense, and distribute the
+
+ Work and such Derivative Works in Source or Object form.
+
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ (except as stated in this section) patent license to make, have made,
+
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+
+ where such license applies only to those patent claims licensable
+
+ by such Contributor that are necessarily infringed by their
+
+ Contribution(s) alone or by combination of their Contribution(s)
+
+ with the Work to which such Contribution(s) was submitted. If You
+
+ institute patent litigation against any entity (including a
+
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+
+ or a Contribution incorporated within the Work constitutes direct
+
+ or contributory patent infringement, then any patent licenses
+
+ granted to You under this License for that Work shall terminate
+
+ as of the date such litigation is filed.
+
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+
+ Work or Derivative Works thereof in any medium, with or without
+
+ modifications, and in Source or Object form, provided that You
+
+ meet the following conditions:
+
+
+ (a) You must give any other recipients of the Work or
+
+ Derivative Works a copy of this License; and
+
+
+ (b) You must cause any modified files to carry prominent notices
+
+ stating that You changed the files; and
+
+
+ (c) You must retain, in the Source form of any Derivative Works
+
+ that You distribute, all copyright, patent, trademark, and
+
+ attribution notices from the Source form of the Work,
+
+ excluding those notices that do not pertain to any part of
+
+ the Derivative Works; and
+
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+
+ distribution, then any Derivative Works that You distribute must
+
+ include a readable copy of the attribution notices contained
+
+ within such NOTICE file, excluding those notices that do not
+
+ pertain to any part of the Derivative Works, in at least one
+
+ of the following places: within a NOTICE text file distributed
+
+ as part of the Derivative Works; within the Source form or
+
+ documentation, if provided along with the Derivative Works; or,
+
+ within a display generated by the Derivative Works, if and
+
+ wherever such third-party notices normally appear. The contents
+
+ of the NOTICE file are for informational purposes only and
+
+ do not modify the License. You may add Your own attribution
+
+ notices within Derivative Works that You distribute, alongside
+
+ or as an addendum to the NOTICE text from the Work, provided
+
+ that such additional attribution notices cannot be construed
+
+ as modifying the License.
+
+
+ You may add Your own copyright statement to Your modifications and
+
+ may provide additional or different license terms and conditions
+
+ for use, reproduction, or distribution of Your modifications, or
+
+ for any such Derivative Works as a whole, provided Your use,
+
+ reproduction, and distribution of the Work otherwise complies with
+
+ the conditions stated in this License.
+
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+
+ any Contribution intentionally submitted for inclusion in the Work
+
+ by You to the Licensor shall be under the terms and conditions of
+
+ this License, without any additional terms or conditions.
+
+ Notwithstanding the above, nothing herein shall supersede or modify
+
+ the terms of any separate license agreement you may have executed
+
+ with Licensor regarding such Contributions.
+
+
+ 6. Trademarks. This License does not grant permission to use the trade
+
+ names, trademarks, service marks, or product names of the Licensor,
+
+ except as required for reasonable and customary use in describing the
+
+ origin of the Work and reproducing the content of the NOTICE file.
+
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+
+ agreed to in writing, Licensor provides the Work (and each
+
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+
+ implied, including, without limitation, any warranties or conditions
+
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+
+ appropriateness of using or redistributing the Work and assume any
+
+ risks associated with Your exercise of permissions under this License.
+
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+
+ whether in tort (including negligence), contract, or otherwise,
+
+ unless required by applicable law (such as deliberate and grossly
+
+ negligent acts) or agreed to in writing, shall any Contributor be
+
+ liable to You for damages, including any direct, indirect, special,
+
+ incidental, or consequential damages of any character arising as a
+
+ result of this License or out of the use or inability to use the
+
+ Work (including but not limited to damages for loss of goodwill,
+
+ work stoppage, computer failure or malfunction, or any and all
+
+ other commercial damages or losses), even if such Contributor
+
+ has been advised of the possibility of such damages.
+
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+
+ the Work or Derivative Works thereof, You may choose to offer,
+
+ and charge a fee for, acceptance of support, warranty, indemnity,
+
+ or other liability obligations and/or rights consistent with this
+
+ License. However, in accepting such obligations, You may act only
+
+ on Your own behalf and on Your sole responsibility, not on behalf
+
+ of any other Contributor, and only if You agree to indemnify,
+
+ defend, and hold each Contributor harmless for any liability
+
+ incurred by, or claims asserted against, such Contributor by reason
+
+ of your accepting any such warranty or additional liability.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ Copyright 2013-2018 Docker, Inc.
+
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+
+ you may not use this file except in compliance with the License.
+
+ You may obtain a copy of the License at
+
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+
+ Unless required by applicable law or agreed to in writing, software
+
+ distributed under the License is distributed on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+ See the License for the specific language governing permissions and
+
+ limitations under the License.
+
Eigen version 3.3.4
+Mozilla Public License Version 2.0
+
+==================================
+
+
+1. Definitions
+
+--------------
+
+
+1.1. "Contributor"
+
+ means each individual or legal entity that creates, contributes to
+
+ the creation of, or owns Covered Software.
+
+
+1.2. "Contributor Version"
+
+ means the combination of the Contributions of others (if any) used
+
+ by a Contributor and that particular Contributor's Contribution.
+
+
+1.3. "Contribution"
+
+ means Covered Software of a particular Contributor.
+
+
+1.4. "Covered Software"
+
+ means Source Code Form to which the initial Contributor has attached
+
+ the notice in Exhibit A, the Executable Form of such Source Code
+
+ Form, and Modifications of such Source Code Form, in each case
+
+ including portions thereof.
+
+
+1.5. "Incompatible With Secondary Licenses"
+
+ means
+
+
+ (a) that the initial Contributor has attached the notice described
+
+ in Exhibit B to the Covered Software; or
+
+
+ (b) that the Covered Software was made available under the terms of
+
+ version 1.1 or earlier of the License, but not also under the
+
+ terms of a Secondary License.
+
+
+1.6. "Executable Form"
+
+ means any form of the work other than Source Code Form.
+
+
+1.7. "Larger Work"
+
+ means a work that combines Covered Software with other material, in
+
+ a separate file or files, that is not Covered Software.
+
+
+1.8. "License"
+
+ means this document.
+
+
+1.9. "Licensable"
+
+ means having the right to grant, to the maximum extent possible,
+
+ whether at the time of the initial grant or subsequently, any and
+
+ all of the rights conveyed by this License.
+
+
+1.10. "Modifications"
+
+ means any of the following:
+
+
+ (a) any file in Source Code Form that results from an addition to,
+
+ deletion from, or modification of the contents of Covered
+
+ Software; or
+
+
+ (b) any new file in Source Code Form that contains any Covered
+
+ Software.
+
+
+1.11. "Patent Claims" of a Contributor
+
+ means any patent claim(s), including without limitation, method,
+
+ process, and apparatus claims, in any patent Licensable by such
+
+ Contributor that would be infringed, but for the grant of the
+
+ License, by the making, using, selling, offering for sale, having
+
+ made, import, or transfer of either its Contributions or its
+
+ Contributor Version.
+
+
+1.12. "Secondary License"
+
+ means either the GNU General Public License, Version 2.0, the GNU
+
+ Lesser General Public License, Version 2.1, the GNU Affero General
+
+ Public License, Version 3.0, or any later versions of those
+
+ licenses.
+
+
+1.13. "Source Code Form"
+
+ means the form of the work preferred for making modifications.
+
+
+1.14. "You" (or "Your")
+
+ means an individual or a legal entity exercising rights under this
+
+ License. For legal entities, "You" includes any entity that
+
+ controls, is controlled by, or is under common control with You. For
+
+ purposes of this definition, "control" means (a) the power, direct
+
+ or indirect, to cause the direction or management of such entity,
+
+ whether by contract or otherwise, or (b) ownership of more than
+
+ fifty percent (50%) of the outstanding shares or beneficial
+
+ ownership of such entity.
+
+
+2. License Grants and Conditions
+
+--------------------------------
+
+
+2.1. Grants
+
+
+Each Contributor hereby grants You a world-wide, royalty-free,
+
+non-exclusive license:
+
+
+(a) under intellectual property rights (other than patent or trademark)
+
+ Licensable by such Contributor to use, reproduce, make available,
+
+ modify, display, perform, distribute, and otherwise exploit its
+
+ Contributions, either on an unmodified basis, with Modifications, or
+
+ as part of a Larger Work; and
+
+
+(b) under Patent Claims of such Contributor to make, use, sell, offer
+
+ for sale, have made, import, and otherwise transfer either its
+
+ Contributions or its Contributor Version.
+
+
+2.2. Effective Date
+
+
+The licenses granted in Section 2.1 with respect to any Contribution
+
+become effective for each Contribution on the date the Contributor first
+
+distributes such Contribution.
+
+
+2.3. Limitations on Grant Scope
+
+
+The licenses granted in this Section 2 are the only rights granted under
+
+this License. No additional rights or licenses will be implied from the
+
+distribution or licensing of Covered Software under this License.
+
+Notwithstanding Section 2.1(b) above, no patent license is granted by a
+
+Contributor:
+
+
+(a) for any code that a Contributor has removed from Covered Software;
+
+ or
+
+
+(b) for infringements caused by: (i) Your and any other third party's
+
+ modifications of Covered Software, or (ii) the combination of its
+
+ Contributions with other software (except as part of its Contributor
+
+ Version); or
+
+
+(c) under Patent Claims infringed by Covered Software in the absence of
+
+ its Contributions.
+
+
+This License does not grant any rights in the trademarks, service marks,
+
+or logos of any Contributor (except as may be necessary to comply with
+
+the notice requirements in Section 3.4).
+
+
+2.4. Subsequent Licenses
+
+
+No Contributor makes additional grants as a result of Your choice to
+
+distribute the Covered Software under a subsequent version of this
+
+License (see Section 10.2) or under the terms of a Secondary License (if
+
+permitted under the terms of Section 3.3).
+
+
+2.5. Representation
+
+
+Each Contributor represents that the Contributor believes its
+
+Contributions are its original creation(s) or it has sufficient rights
+
+to grant the rights to its Contributions conveyed by this License.
+
+
+2.6. Fair Use
+
+
+This License is not intended to limit any rights You have under
+
+applicable copyright doctrines of fair use, fair dealing, or other
+
+equivalents.
+
+
+2.7. Conditions
+
+
+Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
+
+in Section 2.1.
+
+
+3. Responsibilities
+
+-------------------
+
+
+3.1. Distribution of Source Form
+
+
+All distribution of Covered Software in Source Code Form, including any
+
+Modifications that You create or to which You contribute, must be under
+
+the terms of this License. You must inform recipients that the Source
+
+Code Form of the Covered Software is governed by the terms of this
+
+License, and how they can obtain a copy of this License. You may not
+
+attempt to alter or restrict the recipients' rights in the Source Code
+
+Form.
+
+
+3.2. Distribution of Executable Form
+
+
+If You distribute Covered Software in Executable Form then:
+
+
+(a) such Covered Software must also be made available in Source Code
+
+ Form, as described in Section 3.1, and You must inform recipients of
+
+ the Executable Form how they can obtain a copy of such Source Code
+
+ Form by reasonable means in a timely manner, at a charge no more
+
+ than the cost of distribution to the recipient; and
+
+
+(b) You may distribute such Executable Form under the terms of this
+
+ License, or sublicense it under different terms, provided that the
+
+ license for the Executable Form does not attempt to limit or alter
+
+ the recipients' rights in the Source Code Form under this License.
+
+
+3.3. Distribution of a Larger Work
+
+
+You may create and distribute a Larger Work under terms of Your choice,
+
+provided that You also comply with the requirements of this License for
+
+the Covered Software. If the Larger Work is a combination of Covered
+
+Software with a work governed by one or more Secondary Licenses, and the
+
+Covered Software is not Incompatible With Secondary Licenses, this
+
+License permits You to additionally distribute such Covered Software
+
+under the terms of such Secondary License(s), so that the recipient of
+
+the Larger Work may, at their option, further distribute the Covered
+
+Software under the terms of either this License or such Secondary
+
+License(s).
+
+
+3.4. Notices
+
+
+You may not remove or alter the substance of any license notices
+
+(including copyright notices, patent notices, disclaimers of warranty,
+
+or limitations of liability) contained within the Source Code Form of
+
+the Covered Software, except that You may alter any license notices to
+
+the extent required to remedy known factual inaccuracies.
+
+
+3.5. Application of Additional Terms
+
+
+You may choose to offer, and to charge a fee for, warranty, support,
+
+indemnity or liability obligations to one or more recipients of Covered
+
+Software. However, You may do so only on Your own behalf, and not on
+
+behalf of any Contributor. You must make it absolutely clear that any
+
+such warranty, support, indemnity, or liability obligation is offered by
+
+You alone, and You hereby agree to indemnify every Contributor for any
+
+liability incurred by such Contributor as a result of warranty, support,
+
+indemnity or liability terms You offer. You may include additional
+
+disclaimers of warranty and limitations of liability specific to any
+
+jurisdiction.
+
+
+4. Inability to Comply Due to Statute or Regulation
+
+---------------------------------------------------
+
+
+If it is impossible for You to comply with any of the terms of this
+
+License with respect to some or all of the Covered Software due to
+
+statute, judicial order, or regulation then You must: (a) comply with
+
+the terms of this License to the maximum extent possible; and (b)
+
+describe the limitations and the code they affect. Such description must
+
+be placed in a text file included with all distributions of the Covered
+
+Software under this License. Except to the extent prohibited by statute
+
+or regulation, such description must be sufficiently detailed for a
+
+recipient of ordinary skill to be able to understand it.
+
+
+5. Termination
+
+--------------
+
+
+5.1. The rights granted under this License will terminate automatically
+
+if You fail to comply with any of its terms. However, if You become
+
+compliant, then the rights granted under this License from a particular
+
+Contributor are reinstated (a) provisionally, unless and until such
+
+Contributor explicitly and finally terminates Your grants, and (b) on an
+
+ongoing basis, if such Contributor fails to notify You of the
+
+non-compliance by some reasonable means prior to 60 days after You have
+
+come back into compliance. Moreover, Your grants from a particular
+
+Contributor are reinstated on an ongoing basis if such Contributor
+
+notifies You of the non-compliance by some reasonable means, this is the
+
+first time You have received notice of non-compliance with this License
+
+from such Contributor, and You become compliant prior to 30 days after
+
+Your receipt of the notice.
+
+
+5.2. If You initiate litigation against any entity by asserting a patent
+
+infringement claim (excluding declaratory judgment actions,
+
+counter-claims, and cross-claims) alleging that a Contributor Version
+
+directly or indirectly infringes any patent, then the rights granted to
+
+You by any and all Contributors for the Covered Software under Section
+
+2.1 of this License shall terminate.
+
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all
+
+end user license agreements (excluding distributors and resellers) which
+
+have been validly granted by You or Your distributors under this License
+
+prior to termination shall survive termination.
+
+
+************************************************************************
+
+* *
+
+* 6. Disclaimer of Warranty *
+
+* ------------------------- *
+
+* *
+
+* Covered Software is provided under this License on an "as is" *
+
+* basis, without warranty of any kind, either expressed, implied, or *
+
+* statutory, including, without limitation, warranties that the *
+
+* Covered Software is free of defects, merchantable, fit for a *
+
+* particular purpose or non-infringing. The entire risk as to the *
+
+* quality and performance of the Covered Software is with You. *
+
+* Should any Covered Software prove defective in any respect, You *
+
+* (not any Contributor) assume the cost of any necessary servicing, *
+
+* repair, or correction. This disclaimer of warranty constitutes an *
+
+* essential part of this License. No use of any Covered Software is *
+
+* authorized under this License except under this disclaimer. *
+
+* *
+
+************************************************************************
+
+
+************************************************************************
+
+* *
+
+* 7. Limitation of Liability *
+
+* -------------------------- *
+
+* *
+
+* Under no circumstances and under no legal theory, whether tort *
+
+* (including negligence), contract, or otherwise, shall any *
+
+* Contributor, or anyone who distributes Covered Software as *
+
+* permitted above, be liable to You for any direct, indirect, *
+
+* special, incidental, or consequential damages of any character *
+
+* including, without limitation, damages for lost profits, loss of *
+
+* goodwill, work stoppage, computer failure or malfunction, or any *
+
+* and all other commercial damages or losses, even if such party *
+
+* shall have been informed of the possibility of such damages. This *
+
+* limitation of liability shall not apply to liability for death or *
+
+* personal injury resulting from such party's negligence to the *
+
+* extent applicable law prohibits such limitation. Some *
+
+* jurisdictions do not allow the exclusion or limitation of *
+
+* incidental or consequential damages, so this exclusion and *
+
+* limitation may not apply to You. *
+
+* *
+
+************************************************************************
+
+
+8. Litigation
+
+-------------
+
+
+Any litigation relating to this License may be brought only in the
+
+courts of a jurisdiction where the defendant maintains its principal
+
+place of business and such litigation shall be governed by laws of that
+
+jurisdiction, without reference to its conflict-of-law provisions.
+
+Nothing in this Section shall prevent a party's ability to bring
+
+cross-claims or counter-claims.
+
+
+9. Miscellaneous
+
+----------------
+
+
+This License represents the complete agreement concerning the subject
+
+matter hereof. If any provision of this License is held to be
+
+unenforceable, such provision shall be reformed only to the extent
+
+necessary to make it enforceable. Any law or regulation which provides
+
+that the language of a contract shall be construed against the drafter
+
+shall not be used to construe this License against a Contributor.
+
+
+10. Versions of the License
+
+---------------------------
+
+
+10.1. New Versions
+
+
+Mozilla Foundation is the license steward. Except as provided in Section
+
+10.3, no one other than the license steward has the right to modify or
+
+publish new versions of this License. Each version will be given a
+
+distinguishing version number.
+
+
+10.2. Effect of New Versions
+
+
+You may distribute the Covered Software under the terms of the version
+
+of the License under which You originally received the Covered Software,
+
+or under the terms of any subsequent version published by the license
+
+steward.
+
+
+10.3. Modified Versions
+
+
+If you create software not governed by this License, and you want to
+
+create a new license for such software, you may create and use a
+
+modified version of this License if you rename the license and remove
+
+any references to the name of the license steward (except to note that
+
+such modified license differs from this License).
+
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary
+
+Licenses
+
+
+If You choose to distribute Source Code Form that is Incompatible With
+
+Secondary Licenses under the terms of this version of the License, the
+
+notice described in Exhibit B of this License must be attached.
+
+
+Exhibit A - Source Code Form License Notice
+
+-------------------------------------------
+
+
+ This Source Code Form is subject to the terms of the Mozilla Public
+
+ License, v. 2.0. If a copy of the MPL was not distributed with this
+
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+
+If it is not possible or desirable to put the notice in a particular
+
+file, then You may include the notice in a location (such as a LICENSE
+
+file in a relevant directory) where a recipient would be likely to look
+
+for such a notice.
+
+
+You may add additional accurate notices of copyright ownership.
+
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+
+---------------------------------------------------------
+
+
+ This Source Code Form is "Incompatible With Secondary Licenses", as
+
+ defined by the Mozilla Public License, v. 2.0.
+
+
Eigen version 3.4.0
+Mozilla Public License Version 2.0
+
+==================================
+
+
+1. Definitions
+
+--------------
+
+
+1.1. "Contributor"
+
+ means each individual or legal entity that creates, contributes to
+
+ the creation of, or owns Covered Software.
+
+
+1.2. "Contributor Version"
+
+ means the combination of the Contributions of others (if any) used
+
+ by a Contributor and that particular Contributor's Contribution.
+
+
+1.3. "Contribution"
+
+ means Covered Software of a particular Contributor.
+
+
+1.4. "Covered Software"
+
+ means Source Code Form to which the initial Contributor has attached
+
+ the notice in Exhibit A, the Executable Form of such Source Code
+
+ Form, and Modifications of such Source Code Form, in each case
+
+ including portions thereof.
+
+
+1.5. "Incompatible With Secondary Licenses"
+
+ means
+
+
+ (a) that the initial Contributor has attached the notice described
+
+ in Exhibit B to the Covered Software; or
+
+
+ (b) that the Covered Software was made available under the terms of
+
+ version 1.1 or earlier of the License, but not also under the
+
+ terms of a Secondary License.
+
+
+1.6. "Executable Form"
+
+ means any form of the work other than Source Code Form.
+
+
+1.7. "Larger Work"
+
+ means a work that combines Covered Software with other material, in
+
+ a separate file or files, that is not Covered Software.
+
+
+1.8. "License"
+
+ means this document.
+
+
+1.9. "Licensable"
+
+ means having the right to grant, to the maximum extent possible,
+
+ whether at the time of the initial grant or subsequently, any and
+
+ all of the rights conveyed by this License.
+
+
+1.10. "Modifications"
+
+ means any of the following:
+
+
+ (a) any file in Source Code Form that results from an addition to,
+
+ deletion from, or modification of the contents of Covered
+
+ Software; or
+
+
+ (b) any new file in Source Code Form that contains any Covered
+
+ Software.
+
+
+1.11. "Patent Claims" of a Contributor
+
+ means any patent claim(s), including without limitation, method,
+
+ process, and apparatus claims, in any patent Licensable by such
+
+ Contributor that would be infringed, but for the grant of the
+
+ License, by the making, using, selling, offering for sale, having
+
+ made, import, or transfer of either its Contributions or its
+
+ Contributor Version.
+
+
+1.12. "Secondary License"
+
+ means either the GNU General Public License, Version 2.0, the GNU
+
+ Lesser General Public License, Version 2.1, the GNU Affero General
+
+ Public License, Version 3.0, or any later versions of those
+
+ licenses.
+
+
+1.13. "Source Code Form"
+
+ means the form of the work preferred for making modifications.
+
+
+1.14. "You" (or "Your")
+
+ means an individual or a legal entity exercising rights under this
+
+ License. For legal entities, "You" includes any entity that
+
+ controls, is controlled by, or is under common control with You. For
+
+ purposes of this definition, "control" means (a) the power, direct
+
+ or indirect, to cause the direction or management of such entity,
+
+ whether by contract or otherwise, or (b) ownership of more than
+
+ fifty percent (50%) of the outstanding shares or beneficial
+
+ ownership of such entity.
+
+
+2. License Grants and Conditions
+
+--------------------------------
+
+
+2.1. Grants
+
+
+Each Contributor hereby grants You a world-wide, royalty-free,
+
+non-exclusive license:
+
+
+(a) under intellectual property rights (other than patent or trademark)
+
+ Licensable by such Contributor to use, reproduce, make available,
+
+ modify, display, perform, distribute, and otherwise exploit its
+
+ Contributions, either on an unmodified basis, with Modifications, or
+
+ as part of a Larger Work; and
+
+
+(b) under Patent Claims of such Contributor to make, use, sell, offer
+
+ for sale, have made, import, and otherwise transfer either its
+
+ Contributions or its Contributor Version.
+
+
+2.2. Effective Date
+
+
+The licenses granted in Section 2.1 with respect to any Contribution
+
+become effective for each Contribution on the date the Contributor first
+
+distributes such Contribution.
+
+
+2.3. Limitations on Grant Scope
+
+
+The licenses granted in this Section 2 are the only rights granted under
+
+this License. No additional rights or licenses will be implied from the
+
+distribution or licensing of Covered Software under this License.
+
+Notwithstanding Section 2.1(b) above, no patent license is granted by a
+
+Contributor:
+
+
+(a) for any code that a Contributor has removed from Covered Software;
+
+ or
+
+
+(b) for infringements caused by: (i) Your and any other third party's
+
+ modifications of Covered Software, or (ii) the combination of its
+
+ Contributions with other software (except as part of its Contributor
+
+ Version); or
+
+
+(c) under Patent Claims infringed by Covered Software in the absence of
+
+ its Contributions.
+
+
+This License does not grant any rights in the trademarks, service marks,
+
+or logos of any Contributor (except as may be necessary to comply with
+
+the notice requirements in Section 3.4).
+
+
+2.4. Subsequent Licenses
+
+
+No Contributor makes additional grants as a result of Your choice to
+
+distribute the Covered Software under a subsequent version of this
+
+License (see Section 10.2) or under the terms of a Secondary License (if
+
+permitted under the terms of Section 3.3).
+
+
+2.5. Representation
+
+
+Each Contributor represents that the Contributor believes its
+
+Contributions are its original creation(s) or it has sufficient rights
+
+to grant the rights to its Contributions conveyed by this License.
+
+
+2.6. Fair Use
+
+
+This License is not intended to limit any rights You have under
+
+applicable copyright doctrines of fair use, fair dealing, or other
+
+equivalents.
+
+
+2.7. Conditions
+
+
+Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
+
+in Section 2.1.
+
+
+3. Responsibilities
+
+-------------------
+
+
+3.1. Distribution of Source Form
+
+
+All distribution of Covered Software in Source Code Form, including any
+
+Modifications that You create or to which You contribute, must be under
+
+the terms of this License. You must inform recipients that the Source
+
+Code Form of the Covered Software is governed by the terms of this
+
+License, and how they can obtain a copy of this License. You may not
+
+attempt to alter or restrict the recipients' rights in the Source Code
+
+Form.
+
+
+3.2. Distribution of Executable Form
+
+
+If You distribute Covered Software in Executable Form then:
+
+
+(a) such Covered Software must also be made available in Source Code
+
+ Form, as described in Section 3.1, and You must inform recipients of
+
+ the Executable Form how they can obtain a copy of such Source Code
+
+ Form by reasonable means in a timely manner, at a charge no more
+
+ than the cost of distribution to the recipient; and
+
+
+(b) You may distribute such Executable Form under the terms of this
+
+ License, or sublicense it under different terms, provided that the
+
+ license for the Executable Form does not attempt to limit or alter
+
+ the recipients' rights in the Source Code Form under this License.
+
+
+3.3. Distribution of a Larger Work
+
+
+You may create and distribute a Larger Work under terms of Your choice,
+
+provided that You also comply with the requirements of this License for
+
+the Covered Software. If the Larger Work is a combination of Covered
+
+Software with a work governed by one or more Secondary Licenses, and the
+
+Covered Software is not Incompatible With Secondary Licenses, this
+
+License permits You to additionally distribute such Covered Software
+
+under the terms of such Secondary License(s), so that the recipient of
+
+the Larger Work may, at their option, further distribute the Covered
+
+Software under the terms of either this License or such Secondary
+
+License(s).
+
+
+3.4. Notices
+
+
+You may not remove or alter the substance of any license notices
+
+(including copyright notices, patent notices, disclaimers of warranty,
+
+or limitations of liability) contained within the Source Code Form of
+
+the Covered Software, except that You may alter any license notices to
+
+the extent required to remedy known factual inaccuracies.
+
+
+3.5. Application of Additional Terms
+
+
+You may choose to offer, and to charge a fee for, warranty, support,
+
+indemnity or liability obligations to one or more recipients of Covered
+
+Software. However, You may do so only on Your own behalf, and not on
+
+behalf of any Contributor. You must make it absolutely clear that any
+
+such warranty, support, indemnity, or liability obligation is offered by
+
+You alone, and You hereby agree to indemnify every Contributor for any
+
+liability incurred by such Contributor as a result of warranty, support,
+
+indemnity or liability terms You offer. You may include additional
+
+disclaimers of warranty and limitations of liability specific to any
+
+jurisdiction.
+
+
+4. Inability to Comply Due to Statute or Regulation
+
+---------------------------------------------------
+
+
+If it is impossible for You to comply with any of the terms of this
+
+License with respect to some or all of the Covered Software due to
+
+statute, judicial order, or regulation then You must: (a) comply with
+
+the terms of this License to the maximum extent possible; and (b)
+
+describe the limitations and the code they affect. Such description must
+
+be placed in a text file included with all distributions of the Covered
+
+Software under this License. Except to the extent prohibited by statute
+
+or regulation, such description must be sufficiently detailed for a
+
+recipient of ordinary skill to be able to understand it.
+
+
+5. Termination
+
+--------------
+
+
+5.1. The rights granted under this License will terminate automatically
+
+if You fail to comply with any of its terms. However, if You become
+
+compliant, then the rights granted under this License from a particular
+
+Contributor are reinstated (a) provisionally, unless and until such
+
+Contributor explicitly and finally terminates Your grants, and (b) on an
+
+ongoing basis, if such Contributor fails to notify You of the
+
+non-compliance by some reasonable means prior to 60 days after You have
+
+come back into compliance. Moreover, Your grants from a particular
+
+Contributor are reinstated on an ongoing basis if such Contributor
+
+notifies You of the non-compliance by some reasonable means, this is the
+
+first time You have received notice of non-compliance with this License
+
+from such Contributor, and You become compliant prior to 30 days after
+
+Your receipt of the notice.
+
+
+5.2. If You initiate litigation against any entity by asserting a patent
+
+infringement claim (excluding declaratory judgment actions,
+
+counter-claims, and cross-claims) alleging that a Contributor Version
+
+directly or indirectly infringes any patent, then the rights granted to
+
+You by any and all Contributors for the Covered Software under Section
+
+2.1 of this License shall terminate.
+
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all
+
+end user license agreements (excluding distributors and resellers) which
+
+have been validly granted by You or Your distributors under this License
+
+prior to termination shall survive termination.
+
+
+************************************************************************
+
+* *
+
+* 6. Disclaimer of Warranty *
+
+* ------------------------- *
+
+* *
+
+* Covered Software is provided under this License on an "as is" *
+
+* basis, without warranty of any kind, either expressed, implied, or *
+
+* statutory, including, without limitation, warranties that the *
+
+* Covered Software is free of defects, merchantable, fit for a *
+
+* particular purpose or non-infringing. The entire risk as to the *
+
+* quality and performance of the Covered Software is with You. *
+
+* Should any Covered Software prove defective in any respect, You *
+
+* (not any Contributor) assume the cost of any necessary servicing, *
+
+* repair, or correction. This disclaimer of warranty constitutes an *
+
+* essential part of this License. No use of any Covered Software is *
+
+* authorized under this License except under this disclaimer. *
+
+* *
+
+************************************************************************
+
+
+************************************************************************
+
+* *
+
+* 7. Limitation of Liability *
+
+* -------------------------- *
+
+* *
+
+* Under no circumstances and under no legal theory, whether tort *
+
+* (including negligence), contract, or otherwise, shall any *
+
+* Contributor, or anyone who distributes Covered Software as *
+
+* permitted above, be liable to You for any direct, indirect, *
+
+* special, incidental, or consequential damages of any character *
+
+* including, without limitation, damages for lost profits, loss of *
+
+* goodwill, work stoppage, computer failure or malfunction, or any *
+
+* and all other commercial damages or losses, even if such party *
+
+* shall have been informed of the possibility of such damages. This *
+
+* limitation of liability shall not apply to liability for death or *
+
+* personal injury resulting from such party's negligence to the *
+
+* extent applicable law prohibits such limitation. Some *
+
+* jurisdictions do not allow the exclusion or limitation of *
+
+* incidental or consequential damages, so this exclusion and *
+
+* limitation may not apply to You. *
+
+* *
+
+************************************************************************
+
+
+8. Litigation
+
+-------------
+
+
+Any litigation relating to this License may be brought only in the
+
+courts of a jurisdiction where the defendant maintains its principal
+
+place of business and such litigation shall be governed by laws of that
+
+jurisdiction, without reference to its conflict-of-law provisions.
+
+Nothing in this Section shall prevent a party's ability to bring
+
+cross-claims or counter-claims.
+
+
+9. Miscellaneous
+
+----------------
+
+
+This License represents the complete agreement concerning the subject
+
+matter hereof. If any provision of this License is held to be
+
+unenforceable, such provision shall be reformed only to the extent
+
+necessary to make it enforceable. Any law or regulation which provides
+
+that the language of a contract shall be construed against the drafter
+
+shall not be used to construe this License against a Contributor.
+
+
+10. Versions of the License
+
+---------------------------
+
+
+10.1. New Versions
+
+
+Mozilla Foundation is the license steward. Except as provided in Section
+
+10.3, no one other than the license steward has the right to modify or
+
+publish new versions of this License. Each version will be given a
+
+distinguishing version number.
+
+
+10.2. Effect of New Versions
+
+
+You may distribute the Covered Software under the terms of the version
+
+of the License under which You originally received the Covered Software,
+
+or under the terms of any subsequent version published by the license
+
+steward.
+
+
+10.3. Modified Versions
+
+
+If you create software not governed by this License, and you want to
+
+create a new license for such software, you may create and use a
+
+modified version of this License if you rename the license and remove
+
+any references to the name of the license steward (except to note that
+
+such modified license differs from this License).
+
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary
+
+Licenses
+
+
+If You choose to distribute Source Code Form that is Incompatible With
+
+Secondary Licenses under the terms of this version of the License, the
+
+notice described in Exhibit B of this License must be attached.
+
+
+Exhibit A - Source Code Form License Notice
+
+-------------------------------------------
+
+
+ This Source Code Form is subject to the terms of the Mozilla Public
+
+ License, v. 2.0. If a copy of the MPL was not distributed with this
+
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+
+If it is not possible or desirable to put the notice in a particular
+
+file, then You may include the notice in a location (such as a LICENSE
+
+file in a relevant directory) where a recipient would be likely to look
+
+for such a notice.
+
+
+You may add additional accurate notices of copyright ownership.
+
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+
+---------------------------------------------------------
+
+
+ This Source Code Form is "Incompatible With Secondary Licenses", as
+
+ defined by the Mozilla Public License, v. 2.0.
+
+
FreeImage version 3.18
+GNU General Public License, version 3 (GPL-3.0)
+
+[OSI Approved License]
+
+GNU GENERAL PUBLIC LICENSE
+
+
+Version 3, 29 June 2007
+
+
+Copyright (C) 2007 Free Software Foundation, Inc.
+
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+Preamble
+
+
+The GNU General Public License is a free, copyleft license for software and other kinds of works.
+
+
+The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
+
+
+When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
+
+
+To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
+
+
+For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
+
+
+Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
+
+
+For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
+
+
+Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
+
+
+Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
+
+
+The precise terms and conditions for copying, distribution and modification follow.
+
+TERMS AND CONDITIONS
+
+0. Definitions.
+
+
+�This License� refers to version 3 of the GNU General Public License.
+
+
+�Copyright� also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
+
+
+�The Program� refers to any copyrightable work licensed under this License. Each licensee is addressed as �you�. �Licensees� and �recipients� may be individuals or organizations.
+
+
+To �modify� a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a �modified version� of the earlier work or a work �based on� the earlier work.
+
+
+A �covered work� means either the unmodified Program or a work based on the Program.
+
+
+To �propagate� a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
+
+
+To �convey� a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
+
+
+An interactive user interface displays �Appropriate Legal Notices� to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
+
+1. Source Code.
+
+
+The �source code� for a work means the preferred form of the work for making modifications to it. �Object code� means any non-source form of a work.
+
+
+A �Standard Interface� means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
+
+
+The �System Libraries� of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A �Major Component�, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
+
+
+The �Corresponding Source� for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
+
+
+The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
+
+
+The Corresponding Source for a work in source code form is that same work.
+
+2. Basic Permissions.
+
+
+All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
+
+
+You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
+
+
+Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
+
+3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+
+No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
+
+
+When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
+
+4. Conveying Verbatim Copies.
+
+
+You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
+
+
+You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
+
+5. Conveying Modified Source Versions.
+
+
+You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
+
+
+ a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to �keep intact all notices�.
+
+ c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
+
+
+A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an �aggregate� if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
+
+6. Conveying Non-Source Forms.
+
+
+You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
+
+
+ a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
+
+ d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
+
+
+A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
+
+
+A �User Product� is either (1) a �consumer product�, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, �normally used� refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
+
+
+�Installation Information� for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
+
+
+If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
+
+
+The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
+
+
+Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
+
+7. Additional Terms.
+
+
+�Additional permissions� are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
+
+
+When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
+
+
+Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
+
+
+ a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
+
+
+All other non-permissive additional terms are considered �further restrictions� within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
+
+
+If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
+
+
+Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
+
+8. Termination.
+
+
+You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
+
+
+However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
+
+
+Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
+
+
+Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
+
+9. Acceptance Not Required for Having Copies.
+
+
+You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
+
+10. Automatic Licensing of Downstream Recipients.
+
+
+Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
+
+
+An �entity transaction� is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
+
+
+You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
+
+11. Patents.
+
+
+A �contributor� is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's �contributor version�.
+
+
+A contributor's �essential patent claims� are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, �control� includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
+
+
+Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
+
+
+In the following three paragraphs, a �patent license� is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To �grant� such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
+
+
+If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. �Knowingly relying� means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
+
+
+If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
+
+
+A patent license is �discriminatory� if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
+
+
+Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
+
+12. No Surrender of Others' Freedom.
+
+
+If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
+
+13. Use with the GNU Affero General Public License.
+
+
+Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
+
+14. Revised Versions of this License.
+
+
+The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+
+Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License �or any later version� applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
+
+
+If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
+
+
+Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
+
+15. Disclaimer of Warranty.
+
+
+THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM �AS IS� WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+16. Limitation of Liability.
+
+
+IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+17. Interpretation of Sections 15 and 16.
+
+
+If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
+
+
+END OF TERMS AND CONDITIONS
+
+How to Apply These Terms to Your New Programs
+
+
+If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
+
+
+To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the �copyright� line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This program is free software: you can redistribute it and/or modify
+
+ it under the terms of the GNU General Public License as published by
+
+ the Free Software Foundation, either version 3 of the License, or
+
+ (at your option) any later version.
+
+
+ This program is distributed in the hope that it will be useful,
+
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
+ GNU General Public License for more details.
+
+
+ You should have received a copy of the GNU General Public License
+
+ along with this program. If not, see .
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
+
+
+ Copyright (C)
+
+
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+
+ This is free software, and you are welcome to redistribute it
+
+ under certain conditions; type `show c' for details.
+
+
+The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an �about box�.
+
+
+You should also get your employer (if you work as a programmer) or school, if any, to sign a �copyright disclaimer� for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see .
+
+
+The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read .
+
+
+Boost Software License - Version 1.0 - August 17th, 2003
+
+
+Permission is hereby granted, free of charge, to any person or organization
+
+obtaining a copy of the software and accompanying documentation covered by
+
+this license (the Software) to use, reproduce, display, distribute,
+
+execute, and transmit the Software, and to prepare derivative works of the
+
+Software, and to permit third-parties to whom the Software is furnished to
+
+do so, all subject to the following:
+
+
+The copyright notices in the Software and this entire statement, including
+
+the above license grant, this restriction and the following disclaimer,
+
+must be included in all copies of the Software, in whole or in part, and
+
+all derivative works of the Software, unless such copies or derivative
+
+works are solely in the form of machine-executable object code generated by
+
+a source language processor.
+
+
+THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+
+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+
+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+
+DEALINGS IN THE SOFTWARE.
+
Geometry Central
+MIT License
+
+
+Copyright (c) 2017-2019 Nicholas Sharp and the geometry-central contributors
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
+SOFTWARE.
+
+
Gettext version 0.18.1.1
+ GNU GENERAL PUBLIC LICENSE
+
+ Version 3, 29 June 2007
+
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+ Preamble
+
+
+ The GNU General Public License is a free, copyleft license for
+
+software and other kinds of works.
+
+
+ The licenses for most software and other practical works are designed
+
+to take away your freedom to share and change the works. By contrast,
+
+the GNU General Public License is intended to guarantee your freedom to
+
+share and change all versions of a program--to make sure it remains free
+
+software for all its users. We, the Free Software Foundation, use the
+
+GNU General Public License for most of our software; it applies also to
+
+any other work released this way by its authors. You can apply it to
+
+your programs, too.
+
+
+ When we speak of free software, we are referring to freedom, not
+
+price. Our General Public Licenses are designed to make sure that you
+
+have the freedom to distribute copies of free software (and charge for
+
+them if you wish), that you receive source code or can get it if you
+
+want it, that you can change the software or use pieces of it in new
+
+free programs, and that you know you can do these things.
+
+
+ To protect your rights, we need to prevent others from denying you
+
+these rights or asking you to surrender the rights. Therefore, you have
+
+certain responsibilities if you distribute copies of the software, or if
+
+you modify it: responsibilities to respect the freedom of others.
+
+
+ For example, if you distribute copies of such a program, whether
+
+gratis or for a fee, you must pass on to the recipients the same
+
+freedoms that you received. You must make sure that they, too, receive
+
+or can get the source code. And you must show them these terms so they
+
+know their rights.
+
+
+ Developers that use the GNU GPL protect your rights with two steps:
+
+(1) assert copyright on the software, and (2) offer you this License
+
+giving you legal permission to copy, distribute and/or modify it.
+
+
+ For the developers' and authors' protection, the GPL clearly explains
+
+that there is no warranty for this free software. For both users' and
+
+authors' sake, the GPL requires that modified versions be marked as
+
+changed, so that their problems will not be attributed erroneously to
+
+authors of previous versions.
+
+
+ Some devices are designed to deny users access to install or run
+
+modified versions of the software inside them, although the manufacturer
+
+can do so. This is fundamentally incompatible with the aim of
+
+protecting users' freedom to change the software. The systematic
+
+pattern of such abuse occurs in the area of products for individuals to
+
+use, which is precisely where it is most unacceptable. Therefore, we
+
+have designed this version of the GPL to prohibit the practice for those
+
+products. If such problems arise substantially in other domains, we
+
+stand ready to extend this provision to those domains in future versions
+
+of the GPL, as needed to protect the freedom of users.
+
+
+ Finally, every program is threatened constantly by software patents.
+
+States should not allow patents to restrict development and use of
+
+software on general-purpose computers, but in those that do, we wish to
+
+avoid the special danger that patents applied to a free program could
+
+make it effectively proprietary. To prevent this, the GPL assures that
+
+patents cannot be used to render the program non-free.
+
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow.
+
+
+ TERMS AND CONDITIONS
+
+
+ 0. Definitions.
+
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+
+works, such as semiconductor masks.
+
+
+ "The Program" refers to any copyrightable work licensed under this
+
+License. Each licensee is addressed as "you". "Licensees" and
+
+"recipients" may be individuals or organizations.
+
+
+ To "modify" a work means to copy from or adapt all or part of the work
+
+in a fashion requiring copyright permission, other than the making of an
+
+exact copy. The resulting work is called a "modified version" of the
+
+earlier work or a work "based on" the earlier work.
+
+
+ A "covered work" means either the unmodified Program or a work based
+
+on the Program.
+
+
+ To "propagate" a work means to do anything with it that, without
+
+permission, would make you directly or secondarily liable for
+
+infringement under applicable copyright law, except executing it on a
+
+computer or modifying a private copy. Propagation includes copying,
+
+distribution (with or without modification), making available to the
+
+public, and in some countries other activities as well.
+
+
+ To "convey" a work means any kind of propagation that enables other
+
+parties to make or receive copies. Mere interaction with a user through
+
+a computer network, with no transfer of a copy, is not conveying.
+
+
+ An interactive user interface displays "Appropriate Legal Notices"
+
+to the extent that it includes a convenient and prominently visible
+
+feature that (1) displays an appropriate copyright notice, and (2)
+
+tells the user that there is no warranty for the work (except to the
+
+extent that warranties are provided), that licensees may convey the
+
+work under this License, and how to view a copy of this License. If
+
+the interface presents a list of user commands or options, such as a
+
+menu, a prominent item in the list meets this criterion.
+
+
+ 1. Source Code.
+
+
+ The "source code" for a work means the preferred form of the work
+
+for making modifications to it. "Object code" means any non-source
+
+form of a work.
+
+
+ A "Standard Interface" means an interface that either is an official
+
+standard defined by a recognized standards body, or, in the case of
+
+interfaces specified for a particular programming language, one that
+
+is widely used among developers working in that language.
+
+
+ The "System Libraries" of an executable work include anything, other
+
+than the work as a whole, that (a) is included in the normal form of
+
+packaging a Major Component, but which is not part of that Major
+
+Component, and (b) serves only to enable use of the work with that
+
+Major Component, or to implement a Standard Interface for which an
+
+implementation is available to the public in source code form. A
+
+"Major Component", in this context, means a major essential component
+
+(kernel, window system, and so on) of the specific operating system
+
+(if any) on which the executable work runs, or a compiler used to
+
+produce the work, or an object code interpreter used to run it.
+
+
+ The "Corresponding Source" for a work in object code form means all
+
+the source code needed to generate, install, and (for an executable
+
+work) run the object code and to modify the work, including scripts to
+
+control those activities. However, it does not include the work's
+
+System Libraries, or general-purpose tools or generally available free
+
+programs which are used unmodified in performing those activities but
+
+which are not part of the work. For example, Corresponding Source
+
+includes interface definition files associated with source files for
+
+the work, and the source code for shared libraries and dynamically
+
+linked subprograms that the work is specifically designed to require,
+
+such as by intimate data communication or control flow between those
+
+subprograms and other parts of the work.
+
+
+ The Corresponding Source need not include anything that users
+
+can regenerate automatically from other parts of the Corresponding
+
+Source.
+
+
+ The Corresponding Source for a work in source code form is that
+
+same work.
+
+
+ 2. Basic Permissions.
+
+
+ All rights granted under this License are granted for the term of
+
+copyright on the Program, and are irrevocable provided the stated
+
+conditions are met. This License explicitly affirms your unlimited
+
+permission to run the unmodified Program. The output from running a
+
+covered work is covered by this License only if the output, given its
+
+content, constitutes a covered work. This License acknowledges your
+
+rights of fair use or other equivalent, as provided by copyright law.
+
+
+ You may make, run and propagate covered works that you do not
+
+convey, without conditions so long as your license otherwise remains
+
+in force. You may convey covered works to others for the sole purpose
+
+of having them make modifications exclusively for you, or provide you
+
+with facilities for running those works, provided that you comply with
+
+the terms of this License in conveying all material for which you do
+
+not control copyright. Those thus making or running the covered works
+
+for you must do so exclusively on your behalf, under your direction
+
+and control, on terms that prohibit them from making any copies of
+
+your copyrighted material outside their relationship with you.
+
+
+ Conveying under any other circumstances is permitted solely under
+
+the conditions stated below. Sublicensing is not allowed; section 10
+
+makes it unnecessary.
+
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+
+ No covered work shall be deemed part of an effective technological
+
+measure under any applicable law fulfilling obligations under article
+
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+
+similar laws prohibiting or restricting circumvention of such
+
+measures.
+
+
+ When you convey a covered work, you waive any legal power to forbid
+
+circumvention of technological measures to the extent such circumvention
+
+is effected by exercising rights under this License with respect to
+
+the covered work, and you disclaim any intention to limit operation or
+
+modification of the work as a means of enforcing, against the work's
+
+users, your or third parties' legal rights to forbid circumvention of
+
+technological measures.
+
+
+ 4. Conveying Verbatim Copies.
+
+
+ You may convey verbatim copies of the Program's source code as you
+
+receive it, in any medium, provided that you conspicuously and
+
+appropriately publish on each copy an appropriate copyright notice;
+
+keep intact all notices stating that this License and any
+
+non-permissive terms added in accord with section 7 apply to the code;
+
+keep intact all notices of the absence of any warranty; and give all
+
+recipients a copy of this License along with the Program.
+
+
+ You may charge any price or no price for each copy that you convey,
+
+and you may offer support or warranty protection for a fee.
+
+
+ 5. Conveying Modified Source Versions.
+
+
+ You may convey a work based on the Program, or the modifications to
+
+produce it from the Program, in the form of source code under the
+
+terms of section 4, provided that you also meet all of these conditions:
+
+
+ a) The work must carry prominent notices stating that you modified
+
+ it, and giving a relevant date.
+
+
+ b) The work must carry prominent notices stating that it is
+
+ released under this License and any conditions added under section
+
+ 7. This requirement modifies the requirement in section 4 to
+
+ "keep intact all notices".
+
+
+ c) You must license the entire work, as a whole, under this
+
+ License to anyone who comes into possession of a copy. This
+
+ License will therefore apply, along with any applicable section 7
+
+ additional terms, to the whole of the work, and all its parts,
+
+ regardless of how they are packaged. This License gives no
+
+ permission to license the work in any other way, but it does not
+
+ invalidate such permission if you have separately received it.
+
+
+ d) If the work has interactive user interfaces, each must display
+
+ Appropriate Legal Notices; however, if the Program has interactive
+
+ interfaces that do not display Appropriate Legal Notices, your
+
+ work need not make them do so.
+
+
+ A compilation of a covered work with other separate and independent
+
+works, which are not by their nature extensions of the covered work,
+
+and which are not combined with it such as to form a larger program,
+
+in or on a volume of a storage or distribution medium, is called an
+
+"aggregate" if the compilation and its resulting copyright are not
+
+used to limit the access or legal rights of the compilation's users
+
+beyond what the individual works permit. Inclusion of a covered work
+
+in an aggregate does not cause this License to apply to the other
+
+parts of the aggregate.
+
+
+ 6. Conveying Non-Source Forms.
+
+
+ You may convey a covered work in object code form under the terms
+
+of sections 4 and 5, provided that you also convey the
+
+machine-readable Corresponding Source under the terms of this License,
+
+in one of these ways:
+
+
+ a) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by the
+
+ Corresponding Source fixed on a durable physical medium
+
+ customarily used for software interchange.
+
+
+ b) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by a
+
+ written offer, valid for at least three years and valid for as
+
+ long as you offer spare parts or customer support for that product
+
+ model, to give anyone who possesses the object code either (1) a
+
+ copy of the Corresponding Source for all the software in the
+
+ product that is covered by this License, on a durable physical
+
+ medium customarily used for software interchange, for a price no
+
+ more than your reasonable cost of physically performing this
+
+ conveying of source, or (2) access to copy the
+
+ Corresponding Source from a network server at no charge.
+
+
+ c) Convey individual copies of the object code with a copy of the
+
+ written offer to provide the Corresponding Source. This
+
+ alternative is allowed only occasionally and noncommercially, and
+
+ only if you received the object code with such an offer, in accord
+
+ with subsection 6b.
+
+
+ d) Convey the object code by offering access from a designated
+
+ place (gratis or for a charge), and offer equivalent access to the
+
+ Corresponding Source in the same way through the same place at no
+
+ further charge. You need not require recipients to copy the
+
+ Corresponding Source along with the object code. If the place to
+
+ copy the object code is a network server, the Corresponding Source
+
+ may be on a different server (operated by you or a third party)
+
+ that supports equivalent copying facilities, provided you maintain
+
+ clear directions next to the object code saying where to find the
+
+ Corresponding Source. Regardless of what server hosts the
+
+ Corresponding Source, you remain obligated to ensure that it is
+
+ available for as long as needed to satisfy these requirements.
+
+
+ e) Convey the object code using peer-to-peer transmission, provided
+
+ you inform other peers where the object code and Corresponding
+
+ Source of the work are being offered to the general public at no
+
+ charge under subsection 6d.
+
+
+ A separable portion of the object code, whose source code is excluded
+
+from the Corresponding Source as a System Library, need not be
+
+included in conveying the object code work.
+
+
+ A "User Product" is either (1) a "consumer product", which means any
+
+tangible personal property which is normally used for personal, family,
+
+or household purposes, or (2) anything designed or sold for incorporation
+
+into a dwelling. In determining whether a product is a consumer product,
+
+doubtful cases shall be resolved in favor of coverage. For a particular
+
+product received by a particular user, "normally used" refers to a
+
+typical or common use of that class of product, regardless of the status
+
+of the particular user or of the way in which the particular user
+
+actually uses, or expects or is expected to use, the product. A product
+
+is a consumer product regardless of whether the product has substantial
+
+commercial, industrial or non-consumer uses, unless such uses represent
+
+the only significant mode of use of the product.
+
+
+ "Installation Information" for a User Product means any methods,
+
+procedures, authorization keys, or other information required to install
+
+and execute modified versions of a covered work in that User Product from
+
+a modified version of its Corresponding Source. The information must
+
+suffice to ensure that the continued functioning of the modified object
+
+code is in no case prevented or interfered with solely because
+
+modification has been made.
+
+
+ If you convey an object code work under this section in, or with, or
+
+specifically for use in, a User Product, and the conveying occurs as
+
+part of a transaction in which the right of possession and use of the
+
+User Product is transferred to the recipient in perpetuity or for a
+
+fixed term (regardless of how the transaction is characterized), the
+
+Corresponding Source conveyed under this section must be accompanied
+
+by the Installation Information. But this requirement does not apply
+
+if neither you nor any third party retains the ability to install
+
+modified object code on the User Product (for example, the work has
+
+been installed in ROM).
+
+
+ The requirement to provide Installation Information does not include a
+
+requirement to continue to provide support service, warranty, or updates
+
+for a work that has been modified or installed by the recipient, or for
+
+the User Product in which it has been modified or installed. Access to a
+
+network may be denied when the modification itself materially and
+
+adversely affects the operation of the network or violates the rules and
+
+protocols for communication across the network.
+
+
+ Corresponding Source conveyed, and Installation Information provided,
+
+in accord with this section must be in a format that is publicly
+
+documented (and with an implementation available to the public in
+
+source code form), and must require no special password or key for
+
+unpacking, reading or copying.
+
+
+ 7. Additional Terms.
+
+
+ "Additional permissions" are terms that supplement the terms of this
+
+License by making exceptions from one or more of its conditions.
+
+Additional permissions that are applicable to the entire Program shall
+
+be treated as though they were included in this License, to the extent
+
+that they are valid under applicable law. If additional permissions
+
+apply only to part of the Program, that part may be used separately
+
+under those permissions, but the entire Program remains governed by
+
+this License without regard to the additional permissions.
+
+
+ When you convey a copy of a covered work, you may at your option
+
+remove any additional permissions from that copy, or from any part of
+
+it. (Additional permissions may be written to require their own
+
+removal in certain cases when you modify the work.) You may place
+
+additional permissions on material, added by you to a covered work,
+
+for which you have or can give appropriate copyright permission.
+
+
+ Notwithstanding any other provision of this License, for material you
+
+add to a covered work, you may (if authorized by the copyright holders of
+
+that material) supplement the terms of this License with terms:
+
+
+ a) Disclaiming warranty or limiting liability differently from the
+
+ terms of sections 15 and 16 of this License; or
+
+
+ b) Requiring preservation of specified reasonable legal notices or
+
+ author attributions in that material or in the Appropriate Legal
+
+ Notices displayed by works containing it; or
+
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+
+ requiring that modified versions of such material be marked in
+
+ reasonable ways as different from the original version; or
+
+
+ d) Limiting the use for publicity purposes of names of licensors or
+
+ authors of the material; or
+
+
+ e) Declining to grant rights under trademark law for use of some
+
+ trade names, trademarks, or service marks; or
+
+
+ f) Requiring indemnification of licensors and authors of that
+
+ material by anyone who conveys the material (or modified versions of
+
+ it) with contractual assumptions of liability to the recipient, for
+
+ any liability that these contractual assumptions directly impose on
+
+ those licensors and authors.
+
+
+ All other non-permissive additional terms are considered "further
+
+restrictions" within the meaning of section 10. If the Program as you
+
+received it, or any part of it, contains a notice stating that it is
+
+governed by this License along with a term that is a further
+
+restriction, you may remove that term. If a license document contains
+
+a further restriction but permits relicensing or conveying under this
+
+License, you may add to a covered work material governed by the terms
+
+of that license document, provided that the further restriction does
+
+not survive such relicensing or conveying.
+
+
+ If you add terms to a covered work in accord with this section, you
+
+must place, in the relevant source files, a statement of the
+
+additional terms that apply to those files, or a notice indicating
+
+where to find the applicable terms.
+
+
+ Additional terms, permissive or non-permissive, may be stated in the
+
+form of a separately written license, or stated as exceptions;
+
+the above requirements apply either way.
+
+
+ 8. Termination.
+
+
+ You may not propagate or modify a covered work except as expressly
+
+provided under this License. Any attempt otherwise to propagate or
+
+modify it is void, and will automatically terminate your rights under
+
+this License (including any patent licenses granted under the third
+
+paragraph of section 11).
+
+
+ However, if you cease all violation of this License, then your
+
+license from a particular copyright holder is reinstated (a)
+
+provisionally, unless and until the copyright holder explicitly and
+
+finally terminates your license, and (b) permanently, if the copyright
+
+holder fails to notify you of the violation by some reasonable means
+
+prior to 60 days after the cessation.
+
+
+ Moreover, your license from a particular copyright holder is
+
+reinstated permanently if the copyright holder notifies you of the
+
+violation by some reasonable means, this is the first time you have
+
+received notice of violation of this License (for any work) from that
+
+copyright holder, and you cure the violation prior to 30 days after
+
+your receipt of the notice.
+
+
+ Termination of your rights under this section does not terminate the
+
+licenses of parties who have received copies or rights from you under
+
+this License. If your rights have been terminated and not permanently
+
+reinstated, you do not qualify to receive new licenses for the same
+
+material under section 10.
+
+
+ 9. Acceptance Not Required for Having Copies.
+
+
+ You are not required to accept this License in order to receive or
+
+run a copy of the Program. Ancillary propagation of a covered work
+
+occurring solely as a consequence of using peer-to-peer transmission
+
+to receive a copy likewise does not require acceptance. However,
+
+nothing other than this License grants you permission to propagate or
+
+modify any covered work. These actions infringe copyright if you do
+
+not accept this License. Therefore, by modifying or propagating a
+
+covered work, you indicate your acceptance of this License to do so.
+
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+
+ Each time you convey a covered work, the recipient automatically
+
+receives a license from the original licensors, to run, modify and
+
+propagate that work, subject to this License. You are not responsible
+
+for enforcing compliance by third parties with this License.
+
+
+ An "entity transaction" is a transaction transferring control of an
+
+organization, or substantially all assets of one, or subdividing an
+
+organization, or merging organizations. If propagation of a covered
+
+work results from an entity transaction, each party to that
+
+transaction who receives a copy of the work also receives whatever
+
+licenses to the work the party's predecessor in interest had or could
+
+give under the previous paragraph, plus a right to possession of the
+
+Corresponding Source of the work from the predecessor in interest, if
+
+the predecessor has it or can get it with reasonable efforts.
+
+
+ You may not impose any further restrictions on the exercise of the
+
+rights granted or affirmed under this License. For example, you may
+
+not impose a license fee, royalty, or other charge for exercise of
+
+rights granted under this License, and you may not initiate litigation
+
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+
+any patent claim is infringed by making, using, selling, offering for
+
+sale, or importing the Program or any portion of it.
+
+
+ 11. Patents.
+
+
+ A "contributor" is a copyright holder who authorizes use under this
+
+License of the Program or a work on which the Program is based. The
+
+work thus licensed is called the contributor's "contributor version".
+
+
+ A contributor's "essential patent claims" are all patent claims
+
+owned or controlled by the contributor, whether already acquired or
+
+hereafter acquired, that would be infringed by some manner, permitted
+
+by this License, of making, using, or selling its contributor version,
+
+but do not include claims that would be infringed only as a
+
+consequence of further modification of the contributor version. For
+
+purposes of this definition, "control" includes the right to grant
+
+patent sublicenses in a manner consistent with the requirements of
+
+this License.
+
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+
+patent license under the contributor's essential patent claims, to
+
+make, use, sell, offer for sale, import and otherwise run, modify and
+
+propagate the contents of its contributor version.
+
+
+ In the following three paragraphs, a "patent license" is any express
+
+agreement or commitment, however denominated, not to enforce a patent
+
+(such as an express permission to practice a patent or covenant not to
+
+sue for patent infringement). To "grant" such a patent license to a
+
+party means to make such an agreement or commitment not to enforce a
+
+patent against the party.
+
+
+ If you convey a covered work, knowingly relying on a patent license,
+
+and the Corresponding Source of the work is not available for anyone
+
+to copy, free of charge and under the terms of this License, through a
+
+publicly available network server or other readily accessible means,
+
+then you must either (1) cause the Corresponding Source to be so
+
+available, or (2) arrange to deprive yourself of the benefit of the
+
+patent license for this particular work, or (3) arrange, in a manner
+
+consistent with the requirements of this License, to extend the patent
+
+license to downstream recipients. "Knowingly relying" means you have
+
+actual knowledge that, but for the patent license, your conveying the
+
+covered work in a country, or your recipient's use of the covered work
+
+in a country, would infringe one or more identifiable patents in that
+
+country that you have reason to believe are valid.
+
+
+ If, pursuant to or in connection with a single transaction or
+
+arrangement, you convey, or propagate by procuring conveyance of, a
+
+covered work, and grant a patent license to some of the parties
+
+receiving the covered work authorizing them to use, propagate, modify
+
+or convey a specific copy of the covered work, then the patent license
+
+you grant is automatically extended to all recipients of the covered
+
+work and works based on it.
+
+
+ A patent license is "discriminatory" if it does not include within
+
+the scope of its coverage, prohibits the exercise of, or is
+
+conditioned on the non-exercise of one or more of the rights that are
+
+specifically granted under this License. You may not convey a covered
+
+work if you are a party to an arrangement with a third party that is
+
+in the business of distributing software, under which you make payment
+
+to the third party based on the extent of your activity of conveying
+
+the work, and under which the third party grants, to any of the
+
+parties who would receive the covered work from you, a discriminatory
+
+patent license (a) in connection with copies of the covered work
+
+conveyed by you (or copies made from those copies), or (b) primarily
+
+for and in connection with specific products or compilations that
+
+contain the covered work, unless you entered into that arrangement,
+
+or that patent license was granted, prior to 28 March 2007.
+
+
+ Nothing in this License shall be construed as excluding or limiting
+
+any implied license or other defenses to infringement that may
+
+otherwise be available to you under applicable patent law.
+
+
+ 12. No Surrender of Others' Freedom.
+
+
+ If conditions are imposed on you (whether by court order, agreement or
+
+otherwise) that contradict the conditions of this License, they do not
+
+excuse you from the conditions of this License. If you cannot convey a
+
+covered work so as to satisfy simultaneously your obligations under this
+
+License and any other pertinent obligations, then as a consequence you may
+
+not convey it at all. For example, if you agree to terms that obligate you
+
+to collect a royalty for further conveying from those to whom you convey
+
+the Program, the only way you could satisfy both those terms and this
+
+License would be to refrain entirely from conveying the Program.
+
+
+ 13. Use with the GNU Affero General Public License.
+
+
+ Notwithstanding any other provision of this License, you have
+
+permission to link or combine any covered work with a work licensed
+
+under version 3 of the GNU Affero General Public License into a single
+
+combined work, and to convey the resulting work. The terms of this
+
+License will continue to apply to the part which is the covered work,
+
+but the special requirements of the GNU Affero General Public License,
+
+section 13, concerning interaction through a network will apply to the
+
+combination as such.
+
+
+ 14. Revised Versions of this License.
+
+
+ The Free Software Foundation may publish revised and/or new versions of
+
+the GNU General Public License from time to time. Such new versions will
+
+be similar in spirit to the present version, but may differ in detail to
+
+address new problems or concerns.
+
+
+ Each version is given a distinguishing version number. If the
+
+Program specifies that a certain numbered version of the GNU General
+
+Public License "or any later version" applies to it, you have the
+
+option of following the terms and conditions either of that numbered
+
+version or of any later version published by the Free Software
+
+Foundation. If the Program does not specify a version number of the
+
+GNU General Public License, you may choose any version ever published
+
+by the Free Software Foundation.
+
+
+ If the Program specifies that a proxy can decide which future
+
+versions of the GNU General Public License can be used, that proxy's
+
+public statement of acceptance of a version permanently authorizes you
+
+to choose that version for the Program.
+
+
+ Later license versions may give you additional or different
+
+permissions. However, no additional obligations are imposed on any
+
+author or copyright holder as a result of your choosing to follow a
+
+later version.
+
+
+ 15. Disclaimer of Warranty.
+
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+
+ 16. Limitation of Liability.
+
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+
+SUCH DAMAGES.
+
+
+ 17. Interpretation of Sections 15 and 16.
+
+
+ If the disclaimer of warranty and limitation of liability provided
+
+above cannot be given local legal effect according to their terms,
+
+reviewing courts shall apply local law that most closely approximates
+
+an absolute waiver of all civil liability in connection with the
+
+Program, unless a warranty or assumption of liability accompanies a
+
+copy of the Program in return for a fee.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ How to Apply These Terms to Your New Programs
+
+
+ If you develop a new program, and you want it to be of the greatest
+
+possible use to the public, the best way to achieve this is to make it
+
+free software which everyone can redistribute and change under these terms.
+
+
+ To do so, attach the following notices to the program. It is safest
+
+to attach them to the start of each source file to most effectively
+
+state the exclusion of warranty; and each file should have at least
+
+the "copyright" line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This program is free software: you can redistribute it and/or modify
+
+ it under the terms of the GNU General Public License as published by
+
+ the Free Software Foundation, either version 3 of the License, or
+
+ (at your option) any later version.
+
+
+ This program is distributed in the hope that it will be useful,
+
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
+ GNU General Public License for more details.
+
+
+ You should have received a copy of the GNU General Public License
+
+ along with this program. If not, see .
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+ If the program does terminal interaction, make it output a short
+
+notice like this when it starts in an interactive mode:
+
+
+ Copyright (C)
+
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+
+ This is free software, and you are welcome to redistribute it
+
+ under certain conditions; type `show c' for details.
+
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+
+parts of the General Public License. Of course, your program's commands
+
+might be different; for a GUI interface, you would use an "about box".
+
+
+ You should also get your employer (if you work as a programmer) or school,
+
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+
+For more information on this, and how to apply and follow the GNU GPL, see
+
+.
+
+
+ The GNU General Public License does not permit incorporating your program
+
+into proprietary programs. If your program is a subroutine library, you
+
+may consider it more useful to permit linking proprietary applications with
+
+the library. If this is what you want to do, use the GNU Lesser General
+
+Public License instead of this License. But first, please read
+
+.
+
+
H5Z-ZFP plugin version 1.0.1
+ Copyright (c) 2016, Lawrence Livermore National Security, LLC.
+
+ Produced at the Lawrence Livermore National Laboratory
+
+ Written by Mark C. Miller, miller86@llnl.gov
+
+ LLNL-CODE-707197 All rights reserved.
+
+
+This file is part of H5Z-ZFP. For details, see
+
+https://github.com/LLNL/H5Z-ZFP. Please also read the Additional
+
+BSD Notice.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are
+
+met:
+
+
+* Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the disclaimer below.
+
+
+* Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the disclaimer (as noted below)
+
+ in the documentation and/or other materials provided with the
+
+ distribution.
+
+
+* Neither the name of the LLNS/LLNL nor the names of its contributors
+
+ may be used to endorse or promote products derived from this
+
+ software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE
+
+LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR
+
+CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+
+EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+
+PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Additional BSD Notice
+
+
+1. This notice is required to be provided under our contract with the
+
+U.S. Department of Energy (DOE). This work was produced at Lawrence
+
+Livermore National Laboratory under Contract No. DE-AC52-07NA27344
+
+with the DOE.
+
+
+2. Neither the United States Government nor Lawrence Livermore
+
+National Security, LLC nor any of their employees, makes any warranty,
+
+express or implied, or assumes any liability or responsibility for the
+
+accuracy, completeness, or usefulness of any information, apparatus,
+
+product, or process disclosed, or represents that its use would not
+
+infringe privately-owned rights.
+
+
+3. Also, reference herein to any specific commercial products,
+
+process, or services by trade name, trademark, manufacturer or
+
+otherwise does not necessarily constitute or imply its endorsement,
+
+recommendation, or favoring by the United States Government or
+
+Lawrence Livermore National Security, LLC. The views and opinions of
+
+authors expressed herein do not necessarily state or reflect those of
+
+the United States Government or Lawrence Livermore National Security,
+
+LLC, and shall not be used for advertising or product endorsement
+
+purposes.
+
+
HDF5 version 1.10.3
+
+ Copyright by The HDF Group and
+
+ The Board of Trustees of the University of Illinois.
+
+ All rights reserved.
+
+
+ The files and subdirectories in this directory are part of HDF5.
+
+ The full HDF5 copyright notice, including terms governing use,
+
+ modification, and redistribution, is contained in the COPYING file
+
+ which can be found at the root of the source code distribution tree
+
+ or in https://support.hdfgroup.org/ftp/HDF5/releases. If you do
+
+ not have access to either file, you may request a copy from
+
+ help@hdfgroup.org.
+
+
+
HYPRE version 2.14.0
+COPYRIGHT
+
+
+The following copyright applies to each file in the HYPRE distribution, unless
+
+otherwise stated in the file:
+
+
+Copyright (c) 2008, Lawrence Livermore National Security, LLC.
+
+Produced at the Lawrence Livermore National Laboratory under
+
+Contract No. DE-AC52-07NA27344 with the DOE.
+
+
+This file is part of HYPRE.
+
+
+
+LICENSE
+
+
+HYPRE is free software; you can redistribute it and/or modify it under the
+
+terms of the GNU Lesser General Public License (as published by the Free
+
+Software Foundation) version 2.1 dated February 1999.
+
+
+HYPRE 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 terms and conditions of the GNU Lesser
+
+General Public License for more details.
+
+
+You should have received a copy of the GNU Lesser General Public License along
+
+with this library (file COPYING.LESSER); if not, write to the Free Software
+
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+
+CONTACT INFORMATION
+
+
+The HYPRE team can be contacted at hypre-support@llnl.gov. The software is
+
+released under UCRL_CODE_222953. Please see http://www.llnl.gov/CASC/hypre for
+
+more information and source code availability.
+
+
ICU4C version 58.2
+COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later)
+
+
+Permission is hereby granted, free of charge, to any person obtaining
+
+a copy of the Unicode data files and any associated documentation
+
+(the "Data Files") or Unicode software and any associated documentation
+
+(the "Software") to deal in the Data Files or Software
+
+without restriction, including without limitation the rights to use,
+
+copy, modify, merge, publish, distribute, and/or sell copies of
+
+the Data Files or Software, and to permit persons to whom the Data Files
+
+or Software are furnished to do so, provided that either
+
+(a) this copyright and permission notice appear with all copies
+
+of the Data Files or Software, or
+
+(b) this copyright and permission notice appear in associated
+
+Documentation.
+
+
+THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
+
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+
+NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+
+Except as contained in this notice, the name of a copyright holder
+
+shall not be used in advertising or otherwise to promote the sale,
+
+use or other dealings in these Data Files or Software without prior
+
+written authorization of the copyright holder.
+
+
+---------------------
+
+
+Third-Party Software Licenses
+
+
+This section contains third-party software notices and/or additional
+
+terms for licensed third-party software components included within ICU
+
+libraries.
+
+
+1. ICU License - ICU 1.8.1 to ICU 57.1
+
+
+COPYRIGHT AND PERMISSION NOTICE
+
+
+Copyright (c) 1995-2016 International Business Machines Corporation and others
+
+All rights reserved.
+
+
+Permission is hereby granted, free of charge, to any person obtaining
+
+a copy of this software and associated documentation files (the
+
+"Software"), to deal in the Software without restriction, including
+
+without limitation the rights to use, copy, modify, merge, publish,
+
+distribute, and/or sell copies of the Software, and to permit persons
+
+to whom the Software is furnished to do so, provided that the above
+
+copyright notice(s) and this permission notice appear in all copies of
+
+the Software and that both the above copyright notice(s) and this
+
+permission notice appear in supporting documentation.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+
+OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+
+HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
+
+SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
+
+RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
+
+CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+
+CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+Except as contained in this notice, the name of a copyright holder
+
+shall not be used in advertising or otherwise to promote the sale, use
+
+or other dealings in this Software without prior written authorization
+
+of the copyright holder.
+
+
+All trademarks and registered trademarks mentioned herein are the
+
+property of their respective owners.
+
+
+2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
+
+
+ # The Google Chrome software developed by Google is licensed under
+
+ # the BSD license. Other software included in this distribution is
+
+ # provided under other licenses, as set forth below.
+
+ #
+
+ # The BSD License
+
+ # http://opensource.org/licenses/bsd-license.php
+
+ # Copyright (C) 2006-2008, Google Inc.
+
+ #
+
+ # All rights reserved.
+
+ #
+
+ # Redistribution and use in source and binary forms, with or without
+
+ # modification, are permitted provided that the following conditions are met:
+
+ #
+
+ # Redistributions of source code must retain the above copyright notice,
+
+ # this list of conditions and the following disclaimer.
+
+ # Redistributions in binary form must reproduce the above
+
+ # copyright notice, this list of conditions and the following
+
+ # disclaimer in the documentation and/or other materials provided with
+
+ # the distribution.
+
+ # Neither the name of Google Inc. nor the names of its
+
+ # contributors may be used to endorse or promote products derived from
+
+ # this software without specific prior written permission.
+
+ #
+
+ #
+
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+
+ # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+
+ # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+
+ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+ # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+ # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+ # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+
+ # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+
+ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+ # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ #
+
+ #
+
+ # The word list in cjdict.txt are generated by combining three word lists
+
+ # listed below with further processing for compound word breaking. The
+
+ # frequency is generated with an iterative training against Google web
+
+ # corpora.
+
+ #
+
+ # * Libtabe (Chinese)
+
+ # - https://sourceforge.net/project/?group_id=1519
+
+ # - Its license terms and conditions are shown below.
+
+ #
+
+ # * IPADIC (Japanese)
+
+ # - http://chasen.aist-nara.ac.jp/chasen/distribution.html
+
+ # - Its license terms and conditions are shown below.
+
+ #
+
+ # ---------COPYING.libtabe ---- BEGIN--------------------
+
+ #
+
+ # /*
+
+ # * Copyright (c) 1999 TaBE Project.
+
+ # * Copyright (c) 1999 Pai-Hsiang Hsiao.
+
+ # * All rights reserved.
+
+ # *
+
+ # * Redistribution and use in source and binary forms, with or without
+
+ # * modification, are permitted provided that the following conditions
+
+ # * are met:
+
+ # *
+
+ # * . Redistributions of source code must retain the above copyright
+
+ # * notice, this list of conditions and the following disclaimer.
+
+ # * . Redistributions in binary form must reproduce the above copyright
+
+ # * notice, this list of conditions and the following disclaimer in
+
+ # * the documentation and/or other materials provided with the
+
+ # * distribution.
+
+ # * . Neither the name of the TaBE Project nor the names of its
+
+ # * contributors may be used to endorse or promote products derived
+
+ # * from this software without specific prior written permission.
+
+ # *
+
+ # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+
+ # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+
+ # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+
+ # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ # * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ # */
+
+ #
+
+ # /*
+
+ # * Copyright (c) 1999 Computer Systems and Communication Lab,
+
+ # * Institute of Information Science, Academia
+
+ # * Sinica. All rights reserved.
+
+ # *
+
+ # * Redistribution and use in source and binary forms, with or without
+
+ # * modification, are permitted provided that the following conditions
+
+ # * are met:
+
+ # *
+
+ # * . Redistributions of source code must retain the above copyright
+
+ # * notice, this list of conditions and the following disclaimer.
+
+ # * . Redistributions in binary form must reproduce the above copyright
+
+ # * notice, this list of conditions and the following disclaimer in
+
+ # * the documentation and/or other materials provided with the
+
+ # * distribution.
+
+ # * . Neither the name of the Computer Systems and Communication Lab
+
+ # * nor the names of its contributors may be used to endorse or
+
+ # * promote products derived from this software without specific
+
+ # * prior written permission.
+
+ # *
+
+ # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+
+ # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+
+ # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+
+ # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ # * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ # */
+
+ #
+
+ # Copyright 1996 Chih-Hao Tsai @ Beckman Institute,
+
+ # University of Illinois
+
+ # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4
+
+ #
+
+ # ---------------COPYING.libtabe-----END--------------------------------
+
+ #
+
+ #
+
+ # ---------------COPYING.ipadic-----BEGIN-------------------------------
+
+ #
+
+ # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
+
+ # and Technology. All Rights Reserved.
+
+ #
+
+ # Use, reproduction, and distribution of this software is permitted.
+
+ # Any copy of this software, whether in its original form or modified,
+
+ # must include both the above copyright notice and the following
+
+ # paragraphs.
+
+ #
+
+ # Nara Institute of Science and Technology (NAIST),
+
+ # the copyright holders, disclaims all warranties with regard to this
+
+ # software, including all implied warranties of merchantability and
+
+ # fitness, in no event shall NAIST be liable for
+
+ # any special, indirect or consequential damages or any damages
+
+ # whatsoever resulting from loss of use, data or profits, whether in an
+
+ # action of contract, negligence or other tortuous action, arising out
+
+ # of or in connection with the use or performance of this software.
+
+ #
+
+ # A large portion of the dictionary entries
+
+ # originate from ICOT Free Software. The following conditions for ICOT
+
+ # Free Software applies to the current dictionary as well.
+
+ #
+
+ # Each User may also freely distribute the Program, whether in its
+
+ # original form or modified, to any third party or parties, PROVIDED
+
+ # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
+
+ # on, or be attached to, the Program, which is distributed substantially
+
+ # in the same form as set out herein and that such intended
+
+ # distribution, if actually made, will neither violate or otherwise
+
+ # contravene any of the laws and regulations of the countries having
+
+ # jurisdiction over the User or the intended distribution itself.
+
+ #
+
+ # NO WARRANTY
+
+ #
+
+ # The program was produced on an experimental basis in the course of the
+
+ # research and development conducted during the project and is provided
+
+ # to users as so produced on an experimental basis. Accordingly, the
+
+ # program is provided without any warranty whatsoever, whether express,
+
+ # implied, statutory or otherwise. The term "warranty" used herein
+
+ # includes, but is not limited to, any warranty of the quality,
+
+ # performance, merchantability and fitness for a particular purpose of
+
+ # the program and the nonexistence of any infringement or violation of
+
+ # any right of any third party.
+
+ #
+
+ # Each user of the program will agree and understand, and be deemed to
+
+ # have agreed and understood, that there is no warranty whatsoever for
+
+ # the program and, accordingly, the entire risk arising from or
+
+ # otherwise connected with the program is assumed by the user.
+
+ #
+
+ # Therefore, neither ICOT, the copyright holder, or any other
+
+ # organization that participated in or was otherwise related to the
+
+ # development of the program and their respective officials, directors,
+
+ # officers and other employees shall be held liable for any and all
+
+ # damages, including, without limitation, general, special, incidental
+
+ # and consequential damages, arising out of or otherwise in connection
+
+ # with the use or inability to use the program or any product, material
+
+ # or result produced or otherwise obtained by using the program,
+
+ # regardless of whether they have been advised of, or otherwise had
+
+ # knowledge of, the possibility of such damages at any time during the
+
+ # project or thereafter. Each user will be deemed to have agreed to the
+
+ # foregoing by his or her commencement of use of the program. The term
+
+ # "use" as used herein includes, but is not limited to, the use,
+
+ # modification, copying and distribution of the program and the
+
+ # production of secondary products from the program.
+
+ #
+
+ # In the case where the program, whether in its original form or
+
+ # modified, was distributed or delivered to or received by a user from
+
+ # any person, organization or entity other than ICOT, unless it makes or
+
+ # grants independently of ICOT any specific warranty to the user in
+
+ # writing, such person, organization or entity, will also be exempted
+
+ # from and not be held liable to the user for any such damages as noted
+
+ # above as far as the program is concerned.
+
+ #
+
+ # ---------------COPYING.ipadic-----END----------------------------------
+
+
+3. Lao Word Break Dictionary Data (laodict.txt)
+
+
+ # Copyright (c) 2013 International Business Machines Corporation
+
+ # and others. All Rights Reserved.
+
+ #
+
+ # Project: http://code.google.com/p/lao-dictionary/
+
+ # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt
+
+ # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt
+
+ # (copied below)
+
+ #
+
+ # This file is derived from the above dictionary, with slight
+
+ # modifications.
+
+ # ----------------------------------------------------------------------
+
+ # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
+
+ # All rights reserved.
+
+ #
+
+ # Redistribution and use in source and binary forms, with or without
+
+ # modification,
+
+ # are permitted provided that the following conditions are met:
+
+ #
+
+ #
+
+ # Redistributions of source code must retain the above copyright notice, this
+
+ # list of conditions and the following disclaimer. Redistributions in
+
+ # binary form must reproduce the above copyright notice, this list of
+
+ # conditions and the following disclaimer in the documentation and/or
+
+ # other materials provided with the distribution.
+
+ #
+
+ #
+
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+
+ # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ # --------------------------------------------------------------------------
+
+
+4. Burmese Word Break Dictionary Data (burmesedict.txt)
+
+
+ # Copyright (c) 2014 International Business Machines Corporation
+
+ # and others. All Rights Reserved.
+
+ #
+
+ # This list is part of a project hosted at:
+
+ # github.com/kanyawtech/myanmar-karen-word-lists
+
+ #
+
+ # --------------------------------------------------------------------------
+
+ # Copyright (c) 2013, LeRoy Benjamin Sharon
+
+ # All rights reserved.
+
+ #
+
+ # Redistribution and use in source and binary forms, with or without
+
+ # modification, are permitted provided that the following conditions
+
+ # are met: Redistributions of source code must retain the above
+
+ # copyright notice, this list of conditions and the following
+
+ # disclaimer. Redistributions in binary form must reproduce the
+
+ # above copyright notice, this list of conditions and the following
+
+ # disclaimer in the documentation and/or other materials provided
+
+ # with the distribution.
+
+ #
+
+ # Neither the name Myanmar Karen Word Lists, nor the names of its
+
+ # contributors may be used to endorse or promote products derived
+
+ # from this software without specific prior written permission.
+
+ #
+
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+
+ # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+
+ # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+
+ # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+ # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
+
+ # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+
+ # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+
+ # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+
+ # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+
+ # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ # SUCH DAMAGE.
+
+ # --------------------------------------------------------------------------
+
+
+5. Time Zone Database
+
+
+ ICU uses the public domain data and code derived from Time Zone
+
+Database for its time zone support. The ownership of the TZ database
+
+is explained in BCP 175: Procedure for Maintaining the Time Zone
+
+Database section 7.
+
+
+ # 7. Database Ownership
+
+ #
+
+ # The TZ database itself is not an IETF Contribution or an IETF
+
+ # document. Rather it is a pre-existing and regularly updated work
+
+ # that is in the public domain, and is intended to remain in the
+
+ # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do
+
+ # not apply to the TZ Database or contributions that individuals make
+
+ # to it. Should any claims be made and substantiated against the TZ
+
+ # Database, the organization that is providing the IANA
+
+ # Considerations defined in this RFC, under the memorandum of
+
+ # understanding with the IETF, currently ICANN, may act in accordance
+
+ # with all competent court orders. No ownership claims will be made
+
+ # by ICANN or the IETF Trust on the database or the code. Any person
+
+ # making a contribution to the database or code waives all rights to
+
+ # future claims in that contribution or in the TZ Database.
+
+
+6. Google double-conversion
+
+
+Copyright 2006-2011, the V8 project authors. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are
+
+met:
+
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+ * Neither the name of Google Inc. nor the names of its
+
+ contributors may be used to endorse or promote products derived
+
+ from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+
+ you may not use this file except in compliance with the License.
+
+ You may obtain a copy of the License at
+
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+
+ Unless required by applicable law or agreed to in writing, software
+
+ distributed under the License is distributed on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+ See the License for the specific language governing permissions and
+
+ limitations under the License.
+
+*/
+
+
ITK version 5.1.1
+/*
+
+ Copyright NumFOCUS
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+ */
+
Jquery version 3.1.1
+The MIT License
+
+
+Copyright 2019
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
JSON for Modern C++ version 3.1.2
+ __ _____ _____ _____
+
+ __| | __| | | | JSON for Modern C++
+
+| | |__ | | | | | | version 3.1.2
+
+|_____|_____|_____|_|___| https://github.com/nlohmann/json
+
+
+Licensed under the MIT License .
+
+Copyright (c) 2013-2018 Niels Lohmann .
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
+SOFTWARE.
+
+
Libiconv version 1.13.1
+ GNU GENERAL PUBLIC LICENSE
+
+ Version 3, 29 June 2007
+
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+ Preamble
+
+
+ The GNU General Public License is a free, copyleft license for
+
+software and other kinds of works.
+
+
+ The licenses for most software and other practical works are designed
+
+to take away your freedom to share and change the works. By contrast,
+
+the GNU General Public License is intended to guarantee your freedom to
+
+share and change all versions of a program--to make sure it remains free
+
+software for all its users. We, the Free Software Foundation, use the
+
+GNU General Public License for most of our software; it applies also to
+
+any other work released this way by its authors. You can apply it to
+
+your programs, too.
+
+
+ When we speak of free software, we are referring to freedom, not
+
+price. Our General Public Licenses are designed to make sure that you
+
+have the freedom to distribute copies of free software (and charge for
+
+them if you wish), that you receive source code or can get it if you
+
+want it, that you can change the software or use pieces of it in new
+
+free programs, and that you know you can do these things.
+
+
+ To protect your rights, we need to prevent others from denying you
+
+these rights or asking you to surrender the rights. Therefore, you have
+
+certain responsibilities if you distribute copies of the software, or if
+
+you modify it: responsibilities to respect the freedom of others.
+
+
+ For example, if you distribute copies of such a program, whether
+
+gratis or for a fee, you must pass on to the recipients the same
+
+freedoms that you received. You must make sure that they, too, receive
+
+or can get the source code. And you must show them these terms so they
+
+know their rights.
+
+
+ Developers that use the GNU GPL protect your rights with two steps:
+
+(1) assert copyright on the software, and (2) offer you this License
+
+giving you legal permission to copy, distribute and/or modify it.
+
+
+ For the developers' and authors' protection, the GPL clearly explains
+
+that there is no warranty for this free software. For both users' and
+
+authors' sake, the GPL requires that modified versions be marked as
+
+changed, so that their problems will not be attributed erroneously to
+
+authors of previous versions.
+
+
+ Some devices are designed to deny users access to install or run
+
+modified versions of the software inside them, although the manufacturer
+
+can do so. This is fundamentally incompatible with the aim of
+
+protecting users' freedom to change the software. The systematic
+
+pattern of such abuse occurs in the area of products for individuals to
+
+use, which is precisely where it is most unacceptable. Therefore, we
+
+have designed this version of the GPL to prohibit the practice for those
+
+products. If such problems arise substantially in other domains, we
+
+stand ready to extend this provision to those domains in future versions
+
+of the GPL, as needed to protect the freedom of users.
+
+
+ Finally, every program is threatened constantly by software patents.
+
+States should not allow patents to restrict development and use of
+
+software on general-purpose computers, but in those that do, we wish to
+
+avoid the special danger that patents applied to a free program could
+
+make it effectively proprietary. To prevent this, the GPL assures that
+
+patents cannot be used to render the program non-free.
+
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow.
+
+
+ TERMS AND CONDITIONS
+
+
+ 0. Definitions.
+
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+
+works, such as semiconductor masks.
+
+
+ "The Program" refers to any copyrightable work licensed under this
+
+License. Each licensee is addressed as "you". "Licensees" and
+
+"recipients" may be individuals or organizations.
+
+
+ To "modify" a work means to copy from or adapt all or part of the work
+
+in a fashion requiring copyright permission, other than the making of an
+
+exact copy. The resulting work is called a "modified version" of the
+
+earlier work or a work "based on" the earlier work.
+
+
+ A "covered work" means either the unmodified Program or a work based
+
+on the Program.
+
+
+ To "propagate" a work means to do anything with it that, without
+
+permission, would make you directly or secondarily liable for
+
+infringement under applicable copyright law, except executing it on a
+
+computer or modifying a private copy. Propagation includes copying,
+
+distribution (with or without modification), making available to the
+
+public, and in some countries other activities as well.
+
+
+ To "convey" a work means any kind of propagation that enables other
+
+parties to make or receive copies. Mere interaction with a user through
+
+a computer network, with no transfer of a copy, is not conveying.
+
+
+ An interactive user interface displays "Appropriate Legal Notices"
+
+to the extent that it includes a convenient and prominently visible
+
+feature that (1) displays an appropriate copyright notice, and (2)
+
+tells the user that there is no warranty for the work (except to the
+
+extent that warranties are provided), that licensees may convey the
+
+work under this License, and how to view a copy of this License. If
+
+the interface presents a list of user commands or options, such as a
+
+menu, a prominent item in the list meets this criterion.
+
+
+ 1. Source Code.
+
+
+ The "source code" for a work means the preferred form of the work
+
+for making modifications to it. "Object code" means any non-source
+
+form of a work.
+
+
+ A "Standard Interface" means an interface that either is an official
+
+standard defined by a recognized standards body, or, in the case of
+
+interfaces specified for a particular programming language, one that
+
+is widely used among developers working in that language.
+
+
+ The "System Libraries" of an executable work include anything, other
+
+than the work as a whole, that (a) is included in the normal form of
+
+packaging a Major Component, but which is not part of that Major
+
+Component, and (b) serves only to enable use of the work with that
+
+Major Component, or to implement a Standard Interface for which an
+
+implementation is available to the public in source code form. A
+
+"Major Component", in this context, means a major essential component
+
+(kernel, window system, and so on) of the specific operating system
+
+(if any) on which the executable work runs, or a compiler used to
+
+produce the work, or an object code interpreter used to run it.
+
+
+ The "Corresponding Source" for a work in object code form means all
+
+the source code needed to generate, install, and (for an executable
+
+work) run the object code and to modify the work, including scripts to
+
+control those activities. However, it does not include the work's
+
+System Libraries, or general-purpose tools or generally available free
+
+programs which are used unmodified in performing those activities but
+
+which are not part of the work. For example, Corresponding Source
+
+includes interface definition files associated with source files for
+
+the work, and the source code for shared libraries and dynamically
+
+linked subprograms that the work is specifically designed to require,
+
+such as by intimate data communication or control flow between those
+
+subprograms and other parts of the work.
+
+
+ The Corresponding Source need not include anything that users
+
+can regenerate automatically from other parts of the Corresponding
+
+Source.
+
+
+ The Corresponding Source for a work in source code form is that
+
+same work.
+
+
+ 2. Basic Permissions.
+
+
+ All rights granted under this License are granted for the term of
+
+copyright on the Program, and are irrevocable provided the stated
+
+conditions are met. This License explicitly affirms your unlimited
+
+permission to run the unmodified Program. The output from running a
+
+covered work is covered by this License only if the output, given its
+
+content, constitutes a covered work. This License acknowledges your
+
+rights of fair use or other equivalent, as provided by copyright law.
+
+
+ You may make, run and propagate covered works that you do not
+
+convey, without conditions so long as your license otherwise remains
+
+in force. You may convey covered works to others for the sole purpose
+
+of having them make modifications exclusively for you, or provide you
+
+with facilities for running those works, provided that you comply with
+
+the terms of this License in conveying all material for which you do
+
+not control copyright. Those thus making or running the covered works
+
+for you must do so exclusively on your behalf, under your direction
+
+and control, on terms that prohibit them from making any copies of
+
+your copyrighted material outside their relationship with you.
+
+
+ Conveying under any other circumstances is permitted solely under
+
+the conditions stated below. Sublicensing is not allowed; section 10
+
+makes it unnecessary.
+
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+
+ No covered work shall be deemed part of an effective technological
+
+measure under any applicable law fulfilling obligations under article
+
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+
+similar laws prohibiting or restricting circumvention of such
+
+measures.
+
+
+ When you convey a covered work, you waive any legal power to forbid
+
+circumvention of technological measures to the extent such circumvention
+
+is effected by exercising rights under this License with respect to
+
+the covered work, and you disclaim any intention to limit operation or
+
+modification of the work as a means of enforcing, against the work's
+
+users, your or third parties' legal rights to forbid circumvention of
+
+technological measures.
+
+
+ 4. Conveying Verbatim Copies.
+
+
+ You may convey verbatim copies of the Program's source code as you
+
+receive it, in any medium, provided that you conspicuously and
+
+appropriately publish on each copy an appropriate copyright notice;
+
+keep intact all notices stating that this License and any
+
+non-permissive terms added in accord with section 7 apply to the code;
+
+keep intact all notices of the absence of any warranty; and give all
+
+recipients a copy of this License along with the Program.
+
+
+ You may charge any price or no price for each copy that you convey,
+
+and you may offer support or warranty protection for a fee.
+
+
+ 5. Conveying Modified Source Versions.
+
+
+ You may convey a work based on the Program, or the modifications to
+
+produce it from the Program, in the form of source code under the
+
+terms of section 4, provided that you also meet all of these conditions:
+
+
+ a) The work must carry prominent notices stating that you modified
+
+ it, and giving a relevant date.
+
+
+ b) The work must carry prominent notices stating that it is
+
+ released under this License and any conditions added under section
+
+ 7. This requirement modifies the requirement in section 4 to
+
+ "keep intact all notices".
+
+
+ c) You must license the entire work, as a whole, under this
+
+ License to anyone who comes into possession of a copy. This
+
+ License will therefore apply, along with any applicable section 7
+
+ additional terms, to the whole of the work, and all its parts,
+
+ regardless of how they are packaged. This License gives no
+
+ permission to license the work in any other way, but it does not
+
+ invalidate such permission if you have separately received it.
+
+
+ d) If the work has interactive user interfaces, each must display
+
+ Appropriate Legal Notices; however, if the Program has interactive
+
+ interfaces that do not display Appropriate Legal Notices, your
+
+ work need not make them do so.
+
+
+ A compilation of a covered work with other separate and independent
+
+works, which are not by their nature extensions of the covered work,
+
+and which are not combined with it such as to form a larger program,
+
+in or on a volume of a storage or distribution medium, is called an
+
+"aggregate" if the compilation and its resulting copyright are not
+
+used to limit the access or legal rights of the compilation's users
+
+beyond what the individual works permit. Inclusion of a covered work
+
+in an aggregate does not cause this License to apply to the other
+
+parts of the aggregate.
+
+
+ 6. Conveying Non-Source Forms.
+
+
+ You may convey a covered work in object code form under the terms
+
+of sections 4 and 5, provided that you also convey the
+
+machine-readable Corresponding Source under the terms of this License,
+
+in one of these ways:
+
+
+ a) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by the
+
+ Corresponding Source fixed on a durable physical medium
+
+ customarily used for software interchange.
+
+
+ b) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by a
+
+ written offer, valid for at least three years and valid for as
+
+ long as you offer spare parts or customer support for that product
+
+ model, to give anyone who possesses the object code either (1) a
+
+ copy of the Corresponding Source for all the software in the
+
+ product that is covered by this License, on a durable physical
+
+ medium customarily used for software interchange, for a price no
+
+ more than your reasonable cost of physically performing this
+
+ conveying of source, or (2) access to copy the
+
+ Corresponding Source from a network server at no charge.
+
+
+ c) Convey individual copies of the object code with a copy of the
+
+ written offer to provide the Corresponding Source. This
+
+ alternative is allowed only occasionally and noncommercially, and
+
+ only if you received the object code with such an offer, in accord
+
+ with subsection 6b.
+
+
+ d) Convey the object code by offering access from a designated
+
+ place (gratis or for a charge), and offer equivalent access to the
+
+ Corresponding Source in the same way through the same place at no
+
+ further charge. You need not require recipients to copy the
+
+ Corresponding Source along with the object code. If the place to
+
+ copy the object code is a network server, the Corresponding Source
+
+ may be on a different server (operated by you or a third party)
+
+ that supports equivalent copying facilities, provided you maintain
+
+ clear directions next to the object code saying where to find the
+
+ Corresponding Source. Regardless of what server hosts the
+
+ Corresponding Source, you remain obligated to ensure that it is
+
+ available for as long as needed to satisfy these requirements.
+
+
+ e) Convey the object code using peer-to-peer transmission, provided
+
+ you inform other peers where the object code and Corresponding
+
+ Source of the work are being offered to the general public at no
+
+ charge under subsection 6d.
+
+
+ A separable portion of the object code, whose source code is excluded
+
+from the Corresponding Source as a System Library, need not be
+
+included in conveying the object code work.
+
+
+ A "User Product" is either (1) a "consumer product", which means any
+
+tangible personal property which is normally used for personal, family,
+
+or household purposes, or (2) anything designed or sold for incorporation
+
+into a dwelling. In determining whether a product is a consumer product,
+
+doubtful cases shall be resolved in favor of coverage. For a particular
+
+product received by a particular user, "normally used" refers to a
+
+typical or common use of that class of product, regardless of the status
+
+of the particular user or of the way in which the particular user
+
+actually uses, or expects or is expected to use, the product. A product
+
+is a consumer product regardless of whether the product has substantial
+
+commercial, industrial or non-consumer uses, unless such uses represent
+
+the only significant mode of use of the product.
+
+
+ "Installation Information" for a User Product means any methods,
+
+procedures, authorization keys, or other information required to install
+
+and execute modified versions of a covered work in that User Product from
+
+a modified version of its Corresponding Source. The information must
+
+suffice to ensure that the continued functioning of the modified object
+
+code is in no case prevented or interfered with solely because
+
+modification has been made.
+
+
+ If you convey an object code work under this section in, or with, or
+
+specifically for use in, a User Product, and the conveying occurs as
+
+part of a transaction in which the right of possession and use of the
+
+User Product is transferred to the recipient in perpetuity or for a
+
+fixed term (regardless of how the transaction is characterized), the
+
+Corresponding Source conveyed under this section must be accompanied
+
+by the Installation Information. But this requirement does not apply
+
+if neither you nor any third party retains the ability to install
+
+modified object code on the User Product (for example, the work has
+
+been installed in ROM).
+
+
+ The requirement to provide Installation Information does not include a
+
+requirement to continue to provide support service, warranty, or updates
+
+for a work that has been modified or installed by the recipient, or for
+
+the User Product in which it has been modified or installed. Access to a
+
+network may be denied when the modification itself materially and
+
+adversely affects the operation of the network or violates the rules and
+
+protocols for communication across the network.
+
+
+ Corresponding Source conveyed, and Installation Information provided,
+
+in accord with this section must be in a format that is publicly
+
+documented (and with an implementation available to the public in
+
+source code form), and must require no special password or key for
+
+unpacking, reading or copying.
+
+
+ 7. Additional Terms.
+
+
+ "Additional permissions" are terms that supplement the terms of this
+
+License by making exceptions from one or more of its conditions.
+
+Additional permissions that are applicable to the entire Program shall
+
+be treated as though they were included in this License, to the extent
+
+that they are valid under applicable law. If additional permissions
+
+apply only to part of the Program, that part may be used separately
+
+under those permissions, but the entire Program remains governed by
+
+this License without regard to the additional permissions.
+
+
+ When you convey a copy of a covered work, you may at your option
+
+remove any additional permissions from that copy, or from any part of
+
+it. (Additional permissions may be written to require their own
+
+removal in certain cases when you modify the work.) You may place
+
+additional permissions on material, added by you to a covered work,
+
+for which you have or can give appropriate copyright permission.
+
+
+ Notwithstanding any other provision of this License, for material you
+
+add to a covered work, you may (if authorized by the copyright holders of
+
+that material) supplement the terms of this License with terms:
+
+
+ a) Disclaiming warranty or limiting liability differently from the
+
+ terms of sections 15 and 16 of this License; or
+
+
+ b) Requiring preservation of specified reasonable legal notices or
+
+ author attributions in that material or in the Appropriate Legal
+
+ Notices displayed by works containing it; or
+
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+
+ requiring that modified versions of such material be marked in
+
+ reasonable ways as different from the original version; or
+
+
+ d) Limiting the use for publicity purposes of names of licensors or
+
+ authors of the material; or
+
+
+ e) Declining to grant rights under trademark law for use of some
+
+ trade names, trademarks, or service marks; or
+
+
+ f) Requiring indemnification of licensors and authors of that
+
+ material by anyone who conveys the material (or modified versions of
+
+ it) with contractual assumptions of liability to the recipient, for
+
+ any liability that these contractual assumptions directly impose on
+
+ those licensors and authors.
+
+
+ All other non-permissive additional terms are considered "further
+
+restrictions" within the meaning of section 10. If the Program as you
+
+received it, or any part of it, contains a notice stating that it is
+
+governed by this License along with a term that is a further
+
+restriction, you may remove that term. If a license document contains
+
+a further restriction but permits relicensing or conveying under this
+
+License, you may add to a covered work material governed by the terms
+
+of that license document, provided that the further restriction does
+
+not survive such relicensing or conveying.
+
+
+ If you add terms to a covered work in accord with this section, you
+
+must place, in the relevant source files, a statement of the
+
+additional terms that apply to those files, or a notice indicating
+
+where to find the applicable terms.
+
+
+ Additional terms, permissive or non-permissive, may be stated in the
+
+form of a separately written license, or stated as exceptions;
+
+the above requirements apply either way.
+
+
+ 8. Termination.
+
+
+ You may not propagate or modify a covered work except as expressly
+
+provided under this License. Any attempt otherwise to propagate or
+
+modify it is void, and will automatically terminate your rights under
+
+this License (including any patent licenses granted under the third
+
+paragraph of section 11).
+
+
+ However, if you cease all violation of this License, then your
+
+license from a particular copyright holder is reinstated (a)
+
+provisionally, unless and until the copyright holder explicitly and
+
+finally terminates your license, and (b) permanently, if the copyright
+
+holder fails to notify you of the violation by some reasonable means
+
+prior to 60 days after the cessation.
+
+
+ Moreover, your license from a particular copyright holder is
+
+reinstated permanently if the copyright holder notifies you of the
+
+violation by some reasonable means, this is the first time you have
+
+received notice of violation of this License (for any work) from that
+
+copyright holder, and you cure the violation prior to 30 days after
+
+your receipt of the notice.
+
+
+ Termination of your rights under this section does not terminate the
+
+licenses of parties who have received copies or rights from you under
+
+this License. If your rights have been terminated and not permanently
+
+reinstated, you do not qualify to receive new licenses for the same
+
+material under section 10.
+
+
+ 9. Acceptance Not Required for Having Copies.
+
+
+ You are not required to accept this License in order to receive or
+
+run a copy of the Program. Ancillary propagation of a covered work
+
+occurring solely as a consequence of using peer-to-peer transmission
+
+to receive a copy likewise does not require acceptance. However,
+
+nothing other than this License grants you permission to propagate or
+
+modify any covered work. These actions infringe copyright if you do
+
+not accept this License. Therefore, by modifying or propagating a
+
+covered work, you indicate your acceptance of this License to do so.
+
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+
+ Each time you convey a covered work, the recipient automatically
+
+receives a license from the original licensors, to run, modify and
+
+propagate that work, subject to this License. You are not responsible
+
+for enforcing compliance by third parties with this License.
+
+
+ An "entity transaction" is a transaction transferring control of an
+
+organization, or substantially all assets of one, or subdividing an
+
+organization, or merging organizations. If propagation of a covered
+
+work results from an entity transaction, each party to that
+
+transaction who receives a copy of the work also receives whatever
+
+licenses to the work the party's predecessor in interest had or could
+
+give under the previous paragraph, plus a right to possession of the
+
+Corresponding Source of the work from the predecessor in interest, if
+
+the predecessor has it or can get it with reasonable efforts.
+
+
+ You may not impose any further restrictions on the exercise of the
+
+rights granted or affirmed under this License. For example, you may
+
+not impose a license fee, royalty, or other charge for exercise of
+
+rights granted under this License, and you may not initiate litigation
+
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+
+any patent claim is infringed by making, using, selling, offering for
+
+sale, or importing the Program or any portion of it.
+
+
+ 11. Patents.
+
+
+ A "contributor" is a copyright holder who authorizes use under this
+
+License of the Program or a work on which the Program is based. The
+
+work thus licensed is called the contributor's "contributor version".
+
+
+ A contributor's "essential patent claims" are all patent claims
+
+owned or controlled by the contributor, whether already acquired or
+
+hereafter acquired, that would be infringed by some manner, permitted
+
+by this License, of making, using, or selling its contributor version,
+
+but do not include claims that would be infringed only as a
+
+consequence of further modification of the contributor version. For
+
+purposes of this definition, "control" includes the right to grant
+
+patent sublicenses in a manner consistent with the requirements of
+
+this License.
+
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+
+patent license under the contributor's essential patent claims, to
+
+make, use, sell, offer for sale, import and otherwise run, modify and
+
+propagate the contents of its contributor version.
+
+
+ In the following three paragraphs, a "patent license" is any express
+
+agreement or commitment, however denominated, not to enforce a patent
+
+(such as an express permission to practice a patent or covenant not to
+
+sue for patent infringement). To "grant" such a patent license to a
+
+party means to make such an agreement or commitment not to enforce a
+
+patent against the party.
+
+
+ If you convey a covered work, knowingly relying on a patent license,
+
+and the Corresponding Source of the work is not available for anyone
+
+to copy, free of charge and under the terms of this License, through a
+
+publicly available network server or other readily accessible means,
+
+then you must either (1) cause the Corresponding Source to be so
+
+available, or (2) arrange to deprive yourself of the benefit of the
+
+patent license for this particular work, or (3) arrange, in a manner
+
+consistent with the requirements of this License, to extend the patent
+
+license to downstream recipients. "Knowingly relying" means you have
+
+actual knowledge that, but for the patent license, your conveying the
+
+covered work in a country, or your recipient's use of the covered work
+
+in a country, would infringe one or more identifiable patents in that
+
+country that you have reason to believe are valid.
+
+
+ If, pursuant to or in connection with a single transaction or
+
+arrangement, you convey, or propagate by procuring conveyance of, a
+
+covered work, and grant a patent license to some of the parties
+
+receiving the covered work authorizing them to use, propagate, modify
+
+or convey a specific copy of the covered work, then the patent license
+
+you grant is automatically extended to all recipients of the covered
+
+work and works based on it.
+
+
+ A patent license is "discriminatory" if it does not include within
+
+the scope of its coverage, prohibits the exercise of, or is
+
+conditioned on the non-exercise of one or more of the rights that are
+
+specifically granted under this License. You may not convey a covered
+
+work if you are a party to an arrangement with a third party that is
+
+in the business of distributing software, under which you make payment
+
+to the third party based on the extent of your activity of conveying
+
+the work, and under which the third party grants, to any of the
+
+parties who would receive the covered work from you, a discriminatory
+
+patent license (a) in connection with copies of the covered work
+
+conveyed by you (or copies made from those copies), or (b) primarily
+
+for and in connection with specific products or compilations that
+
+contain the covered work, unless you entered into that arrangement,
+
+or that patent license was granted, prior to 28 March 2007.
+
+
+ Nothing in this License shall be construed as excluding or limiting
+
+any implied license or other defenses to infringement that may
+
+otherwise be available to you under applicable patent law.
+
+
+ 12. No Surrender of Others' Freedom.
+
+
+ If conditions are imposed on you (whether by court order, agreement or
+
+otherwise) that contradict the conditions of this License, they do not
+
+excuse you from the conditions of this License. If you cannot convey a
+
+covered work so as to satisfy simultaneously your obligations under this
+
+License and any other pertinent obligations, then as a consequence you may
+
+not convey it at all. For example, if you agree to terms that obligate you
+
+to collect a royalty for further conveying from those to whom you convey
+
+the Program, the only way you could satisfy both those terms and this
+
+License would be to refrain entirely from conveying the Program.
+
+
+ 13. Use with the GNU Affero General Public License.
+
+
+ Notwithstanding any other provision of this License, you have
+
+permission to link or combine any covered work with a work licensed
+
+under version 3 of the GNU Affero General Public License into a single
+
+combined work, and to convey the resulting work. The terms of this
+
+License will continue to apply to the part which is the covered work,
+
+but the special requirements of the GNU Affero General Public License,
+
+section 13, concerning interaction through a network will apply to the
+
+combination as such.
+
+
+ 14. Revised Versions of this License.
+
+
+ The Free Software Foundation may publish revised and/or new versions of
+
+the GNU General Public License from time to time. Such new versions will
+
+be similar in spirit to the present version, but may differ in detail to
+
+address new problems or concerns.
+
+
+ Each version is given a distinguishing version number. If the
+
+Program specifies that a certain numbered version of the GNU General
+
+Public License "or any later version" applies to it, you have the
+
+option of following the terms and conditions either of that numbered
+
+version or of any later version published by the Free Software
+
+Foundation. If the Program does not specify a version number of the
+
+GNU General Public License, you may choose any version ever published
+
+by the Free Software Foundation.
+
+
+ If the Program specifies that a proxy can decide which future
+
+versions of the GNU General Public License can be used, that proxy's
+
+public statement of acceptance of a version permanently authorizes you
+
+to choose that version for the Program.
+
+
+ Later license versions may give you additional or different
+
+permissions. However, no additional obligations are imposed on any
+
+author or copyright holder as a result of your choosing to follow a
+
+later version.
+
+
+ 15. Disclaimer of Warranty.
+
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+
+ 16. Limitation of Liability.
+
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+
+SUCH DAMAGES.
+
+
+ 17. Interpretation of Sections 15 and 16.
+
+
+ If the disclaimer of warranty and limitation of liability provided
+
+above cannot be given local legal effect according to their terms,
+
+reviewing courts shall apply local law that most closely approximates
+
+an absolute waiver of all civil liability in connection with the
+
+Program, unless a warranty or assumption of liability accompanies a
+
+copy of the Program in return for a fee.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ How to Apply These Terms to Your New Programs
+
+
+ If you develop a new program, and you want it to be of the greatest
+
+possible use to the public, the best way to achieve this is to make it
+
+free software which everyone can redistribute and change under these terms.
+
+
+ To do so, attach the following notices to the program. It is safest
+
+to attach them to the start of each source file to most effectively
+
+state the exclusion of warranty; and each file should have at least
+
+the "copyright" line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This program is free software: you can redistribute it and/or modify
+
+ it under the terms of the GNU General Public License as published by
+
+ the Free Software Foundation, either version 3 of the License, or
+
+ (at your option) any later version.
+
+
+ This program is distributed in the hope that it will be useful,
+
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
+ GNU General Public License for more details.
+
+
+ You should have received a copy of the GNU General Public License
+
+ along with this program. If not, see .
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+ If the program does terminal interaction, make it output a short
+
+notice like this when it starts in an interactive mode:
+
+
+ Copyright (C)
+
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+
+ This is free software, and you are welcome to redistribute it
+
+ under certain conditions; type `show c' for details.
+
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+
+parts of the General Public License. Of course, your program's commands
+
+might be different; for a GUI interface, you would use an "about box".
+
+
+ You should also get your employer (if you work as a programmer) or school,
+
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+
+For more information on this, and how to apply and follow the GNU GPL, see
+
+.
+
+
+ The GNU General Public License does not permit incorporating your program
+
+into proprietary programs. If your program is a subroutine library, you
+
+may consider it more useful to permit linking proprietary applications with
+
+the library. If this is what you want to do, use the GNU Lesser General
+
+Public License instead of this License. But first, please read
+
+.
+
+
libigl version 2.3.0
+libigl, a simple c++ geometry processing library.
+
+
+Copyright (C) 2020 Alec Jacobson
+
+
+This Source Code Form is subject to the terms of the Mozilla Public License
+
+v. 2.0. If a copy of the MPL was not distributed with this file, You can
+
+obtain one at http://mozilla.org/MPL/2.0/.
+
+
MathJax version 2.6.1
+
+ Apache License
+
+ Version 2.0, January 2004
+
+ http://www.apache.org/licenses/
+
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+
+ 1. Definitions.
+
+
+ "License" shall mean the terms and conditions for use, reproduction,
+
+ and distribution as defined by Sections 1 through 9 of this document.
+
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+
+ the copyright owner that is granting the License.
+
+
+ "Legal Entity" shall mean the union of the acting entity and all
+
+ other entities that control, are controlled by, or are under common
+
+ control with that entity. For the purposes of this definition,
+
+ "control" means (i) the power, direct or indirect, to cause the
+
+ direction or management of such entity, whether by contract or
+
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+
+ exercising permissions granted by this License.
+
+
+ "Source" form shall mean the preferred form for making modifications,
+
+ including but not limited to software source code, documentation
+
+ source, and configuration files.
+
+
+ "Object" form shall mean any form resulting from mechanical
+
+ transformation or translation of a Source form, including but
+
+ not limited to compiled object code, generated documentation,
+
+ and conversions to other media types.
+
+
+ "Work" shall mean the work of authorship, whether in Source or
+
+ Object form, made available under the License, as indicated by a
+
+ copyright notice that is included in or attached to the work
+
+ (an example is provided in the Appendix below).
+
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+
+ form, that is based on (or derived from) the Work and for which the
+
+ editorial revisions, annotations, elaborations, or other modifications
+
+ represent, as a whole, an original work of authorship. For the purposes
+
+ of this License, Derivative Works shall not include works that remain
+
+ separable from, or merely link (or bind by name) to the interfaces of,
+
+ the Work and Derivative Works thereof.
+
+
+ "Contribution" shall mean any work of authorship, including
+
+ the original version of the Work and any modifications or additions
+
+ to that Work or Derivative Works thereof, that is intentionally
+
+ submitted to Licensor for inclusion in the Work by the copyright owner
+
+ or by an individual or Legal Entity authorized to submit on behalf of
+
+ the copyright owner. For the purposes of this definition, "submitted"
+
+ means any form of electronic, verbal, or written communication sent
+
+ to the Licensor or its representatives, including but not limited to
+
+ communication on electronic mailing lists, source code control systems,
+
+ and issue tracking systems that are managed by, or on behalf of, the
+
+ Licensor for the purpose of discussing and improving the Work, but
+
+ excluding communication that is conspicuously marked or otherwise
+
+ designated in writing by the copyright owner as "Not a Contribution."
+
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+
+ on behalf of whom a Contribution has been received by Licensor and
+
+ subsequently incorporated within the Work.
+
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ copyright license to reproduce, prepare Derivative Works of,
+
+ publicly display, publicly perform, sublicense, and distribute the
+
+ Work and such Derivative Works in Source or Object form.
+
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ (except as stated in this section) patent license to make, have made,
+
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+
+ where such license applies only to those patent claims licensable
+
+ by such Contributor that are necessarily infringed by their
+
+ Contribution(s) alone or by combination of their Contribution(s)
+
+ with the Work to which such Contribution(s) was submitted. If You
+
+ institute patent litigation against any entity (including a
+
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+
+ or a Contribution incorporated within the Work constitutes direct
+
+ or contributory patent infringement, then any patent licenses
+
+ granted to You under this License for that Work shall terminate
+
+ as of the date such litigation is filed.
+
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+
+ Work or Derivative Works thereof in any medium, with or without
+
+ modifications, and in Source or Object form, provided that You
+
+ meet the following conditions:
+
+
+ (a) You must give any other recipients of the Work or
+
+ Derivative Works a copy of this License; and
+
+
+ (b) You must cause any modified files to carry prominent notices
+
+ stating that You changed the files; and
+
+
+ (c) You must retain, in the Source form of any Derivative Works
+
+ that You distribute, all copyright, patent, trademark, and
+
+ attribution notices from the Source form of the Work,
+
+ excluding those notices that do not pertain to any part of
+
+ the Derivative Works; and
+
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+
+ distribution, then any Derivative Works that You distribute must
+
+ include a readable copy of the attribution notices contained
+
+ within such NOTICE file, excluding those notices that do not
+
+ pertain to any part of the Derivative Works, in at least one
+
+ of the following places: within a NOTICE text file distributed
+
+ as part of the Derivative Works; within the Source form or
+
+ documentation, if provided along with the Derivative Works; or,
+
+ within a display generated by the Derivative Works, if and
+
+ wherever such third-party notices normally appear. The contents
+
+ of the NOTICE file are for informational purposes only and
+
+ do not modify the License. You may add Your own attribution
+
+ notices within Derivative Works that You distribute, alongside
+
+ or as an addendum to the NOTICE text from the Work, provided
+
+ that such additional attribution notices cannot be construed
+
+ as modifying the License.
+
+
+ You may add Your own copyright statement to Your modifications and
+
+ may provide additional or different license terms and conditions
+
+ for use, reproduction, or distribution of Your modifications, or
+
+ for any such Derivative Works as a whole, provided Your use,
+
+ reproduction, and distribution of the Work otherwise complies with
+
+ the conditions stated in this License.
+
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+
+ any Contribution intentionally submitted for inclusion in the Work
+
+ by You to the Licensor shall be under the terms and conditions of
+
+ this License, without any additional terms or conditions.
+
+ Notwithstanding the above, nothing herein shall supersede or modify
+
+ the terms of any separate license agreement you may have executed
+
+ with Licensor regarding such Contributions.
+
+
+ 6. Trademarks. This License does not grant permission to use the trade
+
+ names, trademarks, service marks, or product names of the Licensor,
+
+ except as required for reasonable and customary use in describing the
+
+ origin of the Work and reproducing the content of the NOTICE file.
+
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+
+ agreed to in writing, Licensor provides the Work (and each
+
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+
+ implied, including, without limitation, any warranties or conditions
+
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+
+ appropriateness of using or redistributing the Work and assume any
+
+ risks associated with Your exercise of permissions under this License.
+
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+
+ whether in tort (including negligence), contract, or otherwise,
+
+ unless required by applicable law (such as deliberate and grossly
+
+ negligent acts) or agreed to in writing, shall any Contributor be
+
+ liable to You for damages, including any direct, indirect, special,
+
+ incidental, or consequential damages of any character arising as a
+
+ result of this License or out of the use or inability to use the
+
+ Work (including but not limited to damages for loss of goodwill,
+
+ work stoppage, computer failure or malfunction, or any and all
+
+ other commercial damages or losses), even if such Contributor
+
+ has been advised of the possibility of such damages.
+
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+
+ the Work or Derivative Works thereof, You may choose to offer,
+
+ and charge a fee for, acceptance of support, warranty, indemnity,
+
+ or other liability obligations and/or rights consistent with this
+
+ License. However, in accepting such obligations, You may act only
+
+ on Your own behalf and on Your sole responsibility, not on behalf
+
+ of any other Contributor, and only if You agree to indemnify,
+
+ defend, and hold each Contributor harmless for any liability
+
+ incurred by, or claims asserted against, such Contributor by reason
+
+ of your accepting any such warranty or additional liability.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ APPENDIX: How to apply the Apache License to your work.
+
+
+ To apply the Apache License to your work, attach the following
+
+ boilerplate notice, with the fields enclosed by brackets "[]"
+
+ replaced with your own identifying information. (Don't include
+
+ the brackets!) The text should be enclosed in the appropriate
+
+ comment syntax for the file format. We also recommend that a
+
+ file or class name and description of purpose be included on the
+
+ same "printed page" as the copyright notice for easier
+
+ identification within third-party archives.
+
+
+ Copyright [yyyy] [name of copyright owner]
+
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+
+ you may not use this file except in compliance with the License.
+
+ You may obtain a copy of the License at
+
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+
+ Unless required by applicable law or agreed to in writing, software
+
+ distributed under the License is distributed on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+ See the License for the specific language governing permissions and
+
+ limitations under the License.
+
+
Metis version 5.1.0
+Tencent is pleased to support the open source community by making Metis available.
+
+Copyright (C) 2018 THL A29 Limited, a Tencent company. All rights reserved.
+
+If you have downloaded a copy of the Metis binary from Tencent, please note that the Metis binary is licensed under the BSD 3-Clause License.
+
+If you have downloaded a copy of the Metis source code from Tencent, please note that Metis source code is licensed under the BSD 3-Clause License, except for the third-party components listed below which are subject to different license terms. Your integration of Metis into your own projects may require compliance with the BSD 3-Clause License, as well as the other licenses applicable to the third-party components included within Metis.
+
+A copy of the BSD 3-Clause License is included in this file.
+
+
+Other dependencies and licenses:
+
+
+Open Source Software Licensed Under the Apache License, Version 2.0:
+
+----------------------------------------------------------------------------------------
+
+1. xgboost v0.71
+
+Copyright (c) 2016 by Contributors
+
+
+
+Terms of the Apache License, Version 2.0:
+
+--------------------------------------------------------------------
+
+Apache License
+
+
+Version 2.0, January 2004
+
+
+http://www.apache.org/licenses/
+
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+
+1. Definitions.
+
+
+"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
+
+
+"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
+
+
+"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
+
+
+"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
+
+
+"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
+
+
+"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
+
+
+"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
+
+
+"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
+
+
+"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
+
+
+2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
+
+
+3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
+
+
+4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
+
+
+a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
+
+
+b) You must cause any modified files to carry prominent notices stating that You changed the files; and
+
+
+c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
+
+
+d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
+
+
+You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
+
+
+5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
+
+
+6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
+
+
+7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
+
+
+8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
+
+9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
+
+
+END OF TERMS AND CONDITIONS
+
+
+APPENDIX: How to apply the Apache License to your work
+
+To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
+
+
+Copyright [yyyy] [name of copyright owner]
+
+
+Licensed under the Apache License, Version 2.0 (the "License");
+
+you may not use this file except in compliance with the License.
+
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+
+distributed under the License is distributed on an "AS IS" BASIS,
+
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+See the License for the specific language governing permissions and
+
+limitations under the License.
+
+
+
+
+
+Open Source Software Licensed Under the MIT License:
+
+----------------------------------------------------------------------------------------
+
+1. tsfresh v0.11.0
+
+Copyright (c) 2016 Maximilian Christ, Blue Yonder GmbH
+
+
+Terms of the MIT License:
+
+---------------------------------------------------
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+Open Source Software Licensed Under the Python Software Foundation License Version 2:
+
+----------------------------------------------------------------------------------------
+
+1. Python 2.7.11
+
+Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
+
+2012, 2013, 2014, 2015 Python Software Foundation. All rights reserved.
+
+
+Copyright (c) 2000 BeOpen.com.
+
+All rights reserved.
+
+
+Copyright (c) 1995-2001 Corporation for National Research Initiatives.
+
+All rights reserved.
+
+
+Terms of the Python Software Foundation License Version 2:
+
+---------------------------------------------------
+
+A. HISTORY OF THE SOFTWARE
+
+==========================
+
+Python was created in the early 1990s by Guido van Rossum at Stichting
+
+Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
+
+as a successor of a language called ABC. Guido remains Python's
+
+principal author, although it includes many contributions from others.
+
+
+In 1995, Guido continued his work on Python at the Corporation for
+
+National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
+
+in Reston, Virginia where he released several versions of the
+
+software.
+
+
+In May 2000, Guido and the Python core development team moved to
+
+BeOpen.com to form the BeOpen PythonLabs team. In October of the same
+
+year, the PythonLabs team moved to Digital Creations (now Zope
+
+Corporation, see http://www.zope.com). In 2001, the Python Software
+
+Foundation (PSF, see http://www.python.org/psf/) was formed, a
+
+non-profit organization created specifically to own Python-related
+
+Intellectual Property. Zope Corporation is a sponsoring member of
+
+the PSF.
+
+
+All Python releases are Open Source (see http://www.opensource.org for
+
+the Open Source Definition). Historically, most, but not all, Python
+
+releases have also been GPL-compatible; the table below summarizes
+
+the various releases.
+
+
+ Release Derived Year Owner GPL-
+
+ from compatible? (1)
+
+
+(1) GPL-compatible doesn't mean that we're distributing Python under
+
+ the GPL. All Python licenses, unlike the GPL, let you distribute
+
+ a modified version without making your changes open source. The
+
+ GPL-compatible licenses make it possible to combine Python with
+
+ other software that is released under the GPL; the others don't.
+
+
+(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
+
+ because its license has a choice of law clause. According to
+
+ CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
+
+ is "not incompatible" with the GPL.
+
+
+Thanks to the many outside volunteers who have worked under Guido's
+
+direction to make these releases possible.
+
+
+B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
+
+===============================================================
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+--------------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+
+otherwise using this software ("Python") in source or binary form and
+
+its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+
+analyze, test, perform and/or display publicly, prepare derivative works,
+
+distribute, and otherwise use Python alone or in any derivative version,
+
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+
+2011, 2012, 2013, 2014, 2015 Python Software Foundation; All Rights Reserved"
+
+are retained in Python alone or in any derivative version prepared by Licensee.
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python.
+
+
+4. PSF is making Python available to Licensee on an "AS IS"
+
+basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR
+
+FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. Nothing in this License Agreement shall be deemed to create any
+
+relationship of agency, partnership, or joint venture between PSF and
+
+Licensee. This License Agreement does not grant permission to use PSF
+
+trademarks or trade name in a trademark sense to endorse or promote
+
+products or services of Licensee, or any third party.
+
+
+8. By copying, installing or otherwise using Python, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+
+-------------------------------------------
+
+BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+
+
+1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+
+office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+
+Individual or Organization ("Licensee") accessing and otherwise using
+
+this software in source or binary form and its associated
+
+documentation ("the Software").
+
+
+2. Subject to the terms and conditions of this BeOpen Python License
+
+Agreement, BeOpen hereby grants Licensee a non-exclusive,
+
+royalty-free, world-wide license to reproduce, analyze, test, perform
+
+and/or display publicly, prepare derivative works, distribute, and
+
+otherwise use the Software alone or in any derivative version,
+
+provided, however, that the BeOpen Python License is retained in the
+
+Software, alone or in any derivative version prepared by Licensee.
+
+
+3. BeOpen is making the Software available to Licensee on an "AS IS"
+
+basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR
+
+FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE
+
+WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+
+SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
+
+LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR
+
+ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+5. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+6. This License Agreement shall be governed by and interpreted in all
+
+respects by the law of the State of California, excluding conflict of
+
+law provisions. Nothing in this License Agreement shall be deemed to
+
+create any relationship of agency, partnership, or joint venture
+
+between BeOpen and Licensee. This License Agreement does not grant
+
+permission to use BeOpen trademarks or trade names in a trademark
+
+sense to endorse or promote products or services of Licensee, or any
+
+third party. As an exception, the "BeOpen Python" logos available at
+
+http://www.pythonlabs.com/logos.html may be used according to the
+
+permissions granted on that web page.
+
+
+7. By copying, installing or otherwise using the software, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+
+---------------------------------------
+
+1. This LICENSE AGREEMENT is between the Corporation for National
+
+Research Initiatives, having an office at 1895 Preston White Drive,
+
+Reston, VA 20191 ("CNRI"), and the Individual or Organization
+
+("Licensee") accessing and otherwise using Python 1.6.1 software in
+
+source or binary form and its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+
+license to reproduce, analyze, test, perform and/or display publicly,
+
+prepare derivative works, distribute, and otherwise use Python 1.6.1
+
+alone or in any derivative version, provided, however, that CNRI's
+
+License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+
+1995-2001 Corporation for National Research Initiatives; All Rights
+
+Reserved" are retained in Python 1.6.1 alone or in any derivative
+
+version prepared by Licensee. Alternately, in lieu of CNRI's License
+
+Agreement, Licensee may substitute the following text (omitting the
+
+quotes): "Python 1.6.1 is made available subject to the terms and
+
+conditions in CNRI's License Agreement. This Agreement together with
+
+Python 1.6.1 may be located on the Internet using the following
+
+unique, persistent identifier (known as a handle): 1895.22/1013. This
+
+Agreement may also be obtained from a proxy server on the Internet
+
+using the following URL: http://hdl.handle.net/1895.22/1013".
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python 1.6.1 or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python 1.6.1.
+
+
+4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+
+basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR
+
+FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL
+
+NOT INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. This License Agreement shall be governed by the federal
+
+intellectual property law of the United States, including without
+
+limitation the federal copyright law, and, to the extent such
+
+U.S. federal law does not apply, by the law of the Commonwealth of
+
+Virginia, excluding Virginia's conflict of law provisions.
+
+Notwithstanding the foregoing, with regard to derivative works based
+
+on Python 1.6.1 that incorporate non-separable material that was
+
+previously distributed under the GNU General Public License (GPL), the
+
+law of the Commonwealth of Virginia shall govern this License
+
+Agreement only as to issues arising under or with respect to
+
+Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
+
+License Agreement shall be deemed to create any relationship of
+
+agency, partnership, or joint venture between CNRI and Licensee. This
+
+License Agreement does not grant permission to use CNRI trademarks or
+
+trade name in a trademark sense to endorse or promote products or
+
+services of Licensee, or any third party.
+
+
+8. By clicking on the "ACCEPT" button where indicated, or by copying,
+
+installing or otherwise using Python 1.6.1, Licensee agrees to be
+
+bound by the terms and conditions of this License Agreement.
+
+
+ ACCEPT
+
+
+
+CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+
+--------------------------------------------------
+
+Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+
+The Netherlands. All rights reserved.
+
+
+Permission to use, copy, modify, and distribute this software and its
+
+documentation for any purpose and without fee is hereby granted,
+
+provided that the above copyright notice appear in all copies and that
+
+both that copyright notice and this permission notice appear in
+
+supporting documentation, and that the name of Stichting Mathematisch
+
+Centrum or CWI not be used in advertising or publicity pertaining to
+
+distribution of the software without specific, written prior
+
+permission.
+
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH
+
+REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
+
+MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
+
+CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES
+
+OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+
+PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+
+PERFORMANCE OF THIS SOFTWARE.
+
+
+
+
+
+Open Source Software Licensed Under the BSD 3-Clause License:
+
+----------------------------------------------------------------------------------------
+
+1. scikit-learn 0.19.1
+
+Copyright (c) 2007–2017 The scikit-learn developers.
+
+All rights reserved.
+
+
+2. Django 1.11.13
+
+Copyright (c) Django Software Foundation and individual contributors.
+
+All rights reserved.
+
+
+
+Terms of the BSD 3-Clause License:
+
+--------------------------------------------------------------------
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+
+- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+- Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
Microsoft MPI SDK version 8.0
+MICROSOFT SOFTWARE LICENSE TERMS
+
+MICROSOFT MPI SDK
+
+These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft
+
+• updates,
+
+• supplements,
+
+• Internet-based services, and
+
+• support services
+
+for this software, unless other terms accompany those items. If so, those terms apply.
+
+By using the software, you accept these terms. If you do not accept them, do not use the software.
+
+If you comply with these license terms, you have the perpetual rights below.
+
+1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to design, develop and test programs that you deploy to end users. These license terms refer to such programs as "MPI applications."
+
+2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
+
+a. Distributable Code. The software contains code that you are permitted to distribute in programs you develop if you comply with the terms below.
+
+i. Right to Use and Distribute.
+
+• You may copy and distribute the object code form of the code as part of your MPI applications.
+
+• Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those applications.
+
+ii. Distribution Requirements. For any Distributable Code you distribute, you must
+
+• require distributors and external end users to agree to terms that protect it at least as much as this agreement;
+
+• display your valid copyright notice on your MPI applications; and
+
+• indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your MPI applications.
+
+iii. Distribution Restrictions. You may not
+
+• alter any copyright, trademark or patent notice in the Distributable Code;
+
+• use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft;
+
+• distribute Distributable Code to run on a platform other than the Windows platform;
+
+• include Distributable Code in malicious, deceptive or unlawful programs; or
+
+• modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that
+
+• the code be disclosed or distributed in source code form; or
+
+• others have the right to modify it.
+
+3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not
+
+• work around any technical limitations in the software;
+
+• reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;
+
+• publish the software for others to copy;
+
+• rent, lease or lend the software;
+
+• transfer the software or this agreement to any third party; or
+
+• provide the software as a standalone hosted solution for others to use.
+
+4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.
+
+5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.
+
+6. SUPPORT SERVICES. Because this software is "as is," we may not provide support services for it.
+
+7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
+
+8. APPLICABLE LAW.
+
+a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.
+
+b. Outside the United States. If you acquired the software in any other country, the laws of that country apply.
+
+9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.
+
+10. DISCLAIMER OF WARRANTY. The software is licensed "as-is." You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
+
+FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights.
+
+11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.
+
+This limitation applies to
+
+• anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and
+
+• claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
+
+It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
+
+Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.
+
+Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.
+
+EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.
+
+LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
+
+Cette limitation concerne :
+
+• tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et
+
+• les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.
+
+Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.
+
+EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
+
+
MiniZip version 1.1
+MiniZip - Copyright (c) 1998-2010 - by Gilles Vollant - version 1.1 64 bits from Mathias Svensson
+
+
+Introduction
+
+---------------------
+
+MiniZip 1.1 is built from MiniZip 1.0 by Gilles Vollant ( http://www.winimage.com/zLibDll/minizip.html )
+
+
+When adding ZIP64 support into minizip it would result into risk of breaking compatibility with minizip 1.0.
+
+All possible work was done for compatibility.
+
+
+
+Background
+
+---------------------
+
+When adding ZIP64 support Mathias Svensson found that Even Rouault have added ZIP64
+
+support for unzip.c into minizip for a open source project called gdal ( http://www.gdal.org/ )
+
+
+That was used as a starting point. And after that ZIP64 support was added to zip.c
+
+some refactoring and code cleanup was also done.
+
+
+
+Changed from MiniZip 1.0 to MiniZip 1.1
+
+---------------------------------------
+
+* Added ZIP64 support for unzip ( by Even Rouault )
+
+* Added ZIP64 support for zip ( by Mathias Svensson )
+
+* Reverted some changed that Even Rouault did.
+
+* Bunch of patches received from Gulles Vollant that he received for MiniZip from various users.
+
+* Added unzip patch for BZIP Compression method (patch create by Daniel Borca)
+
+* Added BZIP Compress method for zip
+
+* Did some refactoring and code cleanup
+
+
+
+Credits
+
+
+ Gilles Vollant - Original MiniZip author
+
+ Even Rouault - ZIP64 unzip Support
+
+ Daniel Borca - BZip Compression method support in unzip
+
+ Mathias Svensson - ZIP64 zip support
+
+ Mathias Svensson - BZip Compression method support in zip
+
+
+ Resources
+
+
+ ZipLayout http://result42.com/projects/ZipFileLayout
+
+ Command line tool for Windows that shows the layout and information of the headers in a zip archive.
+
+ Used when debugging and validating the creation of zip files using MiniZip64
+
+
+
+ ZIP App Note http://www.pkware.com/documents/casestudies/APPNOTE.TXT
+
+ Zip File specification
+
+
+
+Notes.
+
+ * To be able to use BZip compression method in zip64.c or unzip64.c the BZIP2 lib is needed and HAVE_BZIP2 need to be defined.
+
+
+License
+
+----------------------------------------------------------
+
+ Condition of use and distribution are the same than zlib :
+
+
+ This software is provided 'as-is', without any express or implied
+
+ warranty. In no event will the authors be held liable for any damages
+
+ arising from the use of this software.
+
+
+ Permission is granted to anyone to use this software for any purpose,
+
+ including commercial applications, and to alter it and redistribute it
+
+ freely, subject to the following restrictions:
+
+
+ 1. The origin of this software must not be misrepresented; you must not
+
+ claim that you wrote the original software. If you use this software
+
+ in a product, an acknowledgment in the product documentation would be
+
+ appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+
+ misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source distribution.
+
+
+/*
+
+ * (C) 2001 by Argonne National Laboratory.
+
+ * (C) 2015 by Microsoft Corporation.
+
+ *
+
+ * MPICH COPYRIGHT
+
+ *
+
+ * The following is a notice of limited availability of the code, and disclaimer
+
+ * which must be included in the prologue of the code and in all source listings
+
+ * of the code.
+
+ *
+
+ * Copyright Notice
+
+ * + 2002 University of Chicago
+
+ *
+
+ * Permission is hereby granted to use, reproduce, prepare derivative works, and
+
+ * to redistribute to others. This software was authored by:
+
+ *
+
+ * Mathematics and Computer Science Division
+
+ * Argonne National Laboratory, Argonne IL 60439
+
+ *
+
+ * (and)
+
+ *
+
+ * Department of Computer Science
+
+ * University of Illinois at Urbana-Champaign
+
+ *
+
+ *
+
+ * GOVERNMENT LICENSE
+
+ *
+
+ * Portions of this material resulted from work developed under a U.S.
+
+ * Government Contract and are subject to the following license: the Government
+
+ * is granted for itself and others acting on its behalf a paid-up, nonexclusive,
+
+ * irrevocable worldwide license in this computer software to reproduce, prepare
+
+ * derivative works, and perform publicly and display publicly.
+
+ *
+
+ * DISCLAIMER
+
+ *
+
+ * This computer code material was prepared, in part, as an account of work
+
+ * sponsored by an agency of the United States Government. Neither the United
+
+ * States, nor the University of Chicago, nor any of their employees, makes any
+
+ * warranty express or implied, or assumes any legal liability or responsibility
+
+ * for the accuracy, completeness, or usefulness of any information, apparatus,
+
+ * product, or process disclosed, or represents that its use would not infringe
+
+ * privately owned rights.
+
+ *
+
+ */
+
+
MshIO
+MshIO is a tiny library written with modern C++. It is created by Qingnan Zhou as a coding exercise. It supports reading and writing MSH format with both ASCII and binary encodings for both version 2.2 and version 4.1.
+
+This Source Code Form is subject to the terms of the Apache 2.0 License (see LICENSE).
+
Musaik version 1.5
+Software Licence and Support Agreement for SEMCAD X
+
+Terms and Conditions
+
+
+The Software Licence and Support Agreement (referred to below as "Agreement") entered into between Schmid & Partner Engineering AG (referred to below as "SPEAG") and Customer consists of Customer's order, SPEAG's Order Confirmation (referred to below as "Order Confirmation") and the present Terms and Conditions.
+
+
+1. Grant of the Licence
+
+1.1 SPEAG grants Customer a non-exclusive and non-transferable licence to use the Software for Customer's own purposes on the number of concurrent users defined in the Order Confirmation. Software means the software programme(s) listed in the Order Confirmation and any related documentation, instructions and reference materials provided to Customer.
+
+1.2 Customer will obtain only object code Software and shall not disassemble, decompile or otherwise reverse-engineer the Software nor shall it distribute, sub-license or transfer the Software to third parties.
+
+1.3 Customer shall not remove notices as to SPEAG's proprietary rights from any copies of the Software it makes or uses.
+
+
+2. Delivery
+
+Upon entry into force of this Agreement SPEAG shall deliver the software programmes on Compact Disc, and any related documentation, instructions and reference materials in print or on-line.
+
+
+3. Licence Fee
+
+3.1 In consideration of the grant of the licence pursant to clause 1 of this Agreement Customer shall pay to SPEAG a non-recurring licence fee as set forth in the Order Confirmation.
+
+3.2 The licence fee shall be payable within 30 days from the date of SPEAG's invoice.
+
+
+4. Intellectual Property
+
+4.1 SPEAG is and remains the sole owner of all Intellectual Property Rights in the Software. This Agreement does not convey nor shall Customer attempt to obtain any title to Intellectual Property Rights in the Software.
+
+4.2 SPEAG shall indemnify Customer against all claims and related reasonable expenses arising out of any infringement of any Intellectual Property right to the extent that it is based on the use of the Software in accordance with this Agreement, provided that:
+
+ a) Customer promptly notifies SPEAG in writing of such claims being made;
+
+ b) SPEAG has sole control of any litigation and settlement negotiations on such claims;
+
+ c) Customer provides reasonable assistance and information necessary to defend such claims.
+
+4.3 Should any such claim be upheld by a court having competent jurisdiction or in a settlement to which SPEAG consents, or in the event that SPEAG deems it appropriate, SPEAG shall, at its discretion:
+
+ a) procure for Customer the right to continue using the Software;
+
+ b) replace or modify the Software to be non-infringing; or
+
+ c) terminate the licence and return to Customer all licence fees paid, reduced on a pro-rata basis by 50% for each year since delivery.
+
+4.4 This clause 4 states SPEAG's entire liability for Intellectual Property Right infringement.
+
+
+5. Warranty
+
+5.1 Customer is aware of the fact that it is not possible to issue software products which run completely error-free. Furthermore, Customer is responsible for the selection and the use of the Software as well as of the hardware and other software programmes to be used together with the Software.
+
+5.2 SPEAG warrants only that the Software will substantially conform to the specifications set forth in the Order Confirmation provided that Customer meets the requirements as to the hardware and software environment. SPEAG makes no further or other warranties, express or implied, with respect to the Software or its use and operation alone or in conjunction with any other software and any services provided under this Agreement. SPEAG specifically disclaims any warranties of fitness of the Software for a particular purpose.
+
+5.3 In lieu of any other remedy for breach of warranty SPEAG makes available support services as set out in section II of this Agreement.
+
+
+6. Term of the Licence
+
+6.1 The term of the licence shall be as long as Customer uses the Software in accordance with this Agreement.
+
+6.2 The Software is programmed for use during periods of one year. Upon entry into force of this Agreement SPEAG shall provide the software key required for the use of the Software. Prior to the expiry of each period of one year, Customer may require that SPEAG provides a software key for a further period and SPEAG shall do so in due time.
+
+6.3 The term of any licence granted to universities and other higher educational establishments which are charged a reduced licence fee shall be one year from the entry into force of this Agreement, except if the Order Confirmation expressly provides otherwise. Such a licence is renewable upon payment of the licence fee applicable at the time of the renewal.
+
+6.4 Upon termination of the licence Customer shall return the Software to SPEAG and confirm in writing that it deleted all copies of the Software on any of its installations.
+
+
+II. Support Services
+
+------------------------------------------------------------------------------
+
+
+7. Extent of Support
+
+7.1 SPEAG shall provide the following support services:
+
+ a) correcting errors occurring during the operation of the Software (bug fixing) by, at SPEAG's discretion:
+
+ aa) temporary correction of the object code (patching);
+
+ bb) correction and recompilation of the source code and delivery of the revised object code by courier;
+
+ cc) adaptation of the documentation;
+
+ b) providing Updates of the Software version covered by this Agreement at SPEAG's discretion. For the purpose of this Agreement, Update shall mean a collection of maintenance patches and bug fixes;
+
+ c) remote consultation during normal business hours (9 a.m. to 6 p.m. CET on Z�rich working days) through telephone, e-mail and telefax pertaining to the use of the Software, without SPEAG having direct on-line access on Customer's computer system;
+
+ d) providing notification of further revisions, modifications and enhancements of the Software as they become available.
+
+7.2 SPEAG shall be entitled to require at its discretion that Customer shall install certain Updates designated by SPEAG.
+
+7.3 Support services shall not include in particular:
+
+ a) setting up the Software in Customer's environment;
+
+ b) correcting problems resulting from any modification to the Software made by Customer or any third party;
+
+ c) providing any further revisions, modifications and enhancements of the Software beyond Updates, such as new releases, versions or upgrades;
+
+ d) support for the projects of the Customer where the Software is used.
+
+Such services may be available from SPEAG at its then current rates.
+
+7.4 Universities and other higher educational establishments which are charged a reduced licence fee are not entitled to receive any support services, except if the Order Confirmation expressly provides otherwise.
+
+
+8. Support Period
+
+8.1 The initial support period shall begin at the entry into force of this Agreement and expire one year thereafter.
+
+8.2 Upon expiry of the initial and any subsequent support periods, the support period will automatically renew for another year unless Customer notifies SPEAG in writing 30 days prior to the expiry of the current support period that it does not require renewal. If SPEAG does not receive such notice it will issue an invoice for the support services.
+
+8.3 In the event Customer has not continuously required the support services and Customer desires to begin such support again, all previous periods must be retroactively paid in full prior to such support being activated.
+
+8.4 SPEAG is entitled to declare the Software obsolete and no longer supported upon expiry of each support period. SPEAG shall notify Customer 60 days prior to the expiry of the then current support period of its intention to do so.
+
+
+9. Support Charge
+
+9.1 In consideration of the Support Services pursant to clause 7.1 Customer shall pay to SPEAG a yearly support charge as set forth in the Order Confirmation. The support charge shall be 20% of the licence fee per annum.
+
+9.2 The initial support charge shall be payable within 30 days from the entry into force of this Agreement and for each renewal on the date of the beginning of the renewed support period.
+
+
+10. Warranty
+
+All corrections and updates to the Software will be provided by SPEAG under the software license terms set forth in section I of this Agreement. Nothing in this sections II shall be construed as expanding or adding to the warranty otherwise provided in this Agreement.
+
+
+III. General Provisions
+
+------------------------------------------------------------------------------
+
+
+11. Liability
+
+SPEAG shall be liable to Customer only for damage caused by willful intent or gross negligence and its liability shall not in any event exceed the amounts received as licence fee under this Agreement. Furthermore, SPEAG shall not in any event be liable for any loss of profits, loss of business loss, of use or data, interruption of business, or for indirect, special, incidental or consequential damage or injury of any kind.
+
+
+12. Confidentiality
+
+12.1 The Software contains information, ideas, concepts and procedures which are business secrets of SPEAG. Customer agrees not to disclose such or any other of SPEAG's business secrets in full or in party to any third party without SPEAG's prior express and written consent.
+
+12.2 SPEAG shall keep confidential any business secret of Customer of which it becomes aware in connection with the performance of its obligations under this Agreement.
+
+12.3 The obligations set out in this clause 12 shall survive the termination of this Agreement.
+
+
+13. Payment Terms
+
+13.1 All payments due to SPEAG provided for in this Agreement are exclusive of taxes, customs duties, insurance, shipping and other charges. Payments made to SPEAG shall be made in the currency set forth in the Order Confirmation.
+
+13.2 There shall be no reduction or set-off of the licence fee, the support charge or any other sum due to SPEAG under this Agreement for any claims of Customer or its affiliates against SPEAG or its affiliates nor for any other reason.
+
+13.3 If any sum due to SPEAG under this Agreement should become overdue, SPEAG may, without declaring Customer to be in default, charge Customer default interest of 7.5% per annum on the overdue amount.
+
+
+14. Termination
+
+14.1 This Agreement shall enter into force upon SPEAG accepting Customer's order in the written Order Confirmation.
+
+14.2 This Agreement and all licences granted hereunder may be terminated with immediate effect:
+
+ a) by SPEAG if Customer fails to pay any sums due under this Agreement for more than 30 days after such sum becomes due and payable pursuant to clauses 3.2 and 9.2;
+
+ b) by either Party if any breach or non-performance of the Agreement by the other Party affecting the first Party to such a degree that continuation of the Agreement can in good faith no longer be expected, in particular, but not exclusively after a breach by either Party of its obligation to keep confidentiality.
+
+
+15. Miscellaneous
+
+15.1 Notices: Any notice under this Agreement shall be effective only if made in writing and mailed to the addresses as given first above or to such address as may hereafter be designated by like notice. Such notice shall become effective upon receipt by the Party to which it is addressed.
+
+15.2 Assignment: Customer shall not assign or transfer this Agreement as a whole or in part to any third party without the prior express and written consent of SPEAG.
+
+15.3 Entire Agreement: The Order Confirmation and these Terms and Conditions encompass the entire understanding between the Parties with respect to the subject matter of this Agreement; there are no representations, warranties, covenants, agreements or collateral understandings other than expressly set forth in the Order Confirmation and in these Terms and Conditions.
+
+15.4 Order and Order Confirmation: In the event of differences between Customer's order and the Order Confirmation, the Order Confirmation shall prevail.
+
+15.5 Amendments: Modifications or amendments to, or waivers of any right under this Agreement, including this clause 15.5, are only binding if executed in writing, signed by authorised representatives of both Parties, and provided that express reference to this Agreement is made.
+
+15.6 Waivers: A temporary, tacit abstention from exercising individual rights vested under this Agreement shall cause no prejudice beyond the prevailing circumstances. Any coincidental behaviour by either Party which deviates from any contractual agreement shall in no event represent a conclusive amendment to this Agreement.
+
+
+16. Applicable Law and Jurisdiction
+
+16.1 This Agreement shall be governed by Swiss Law.
+
+16.2 All disputes arising out of or in connection with this Agreement shall, to the exclusion of any other courts, be finally settled by the courts of Z�rich 1, Switzerland.
+
+
Musaik version 2.0
+Copyright 2012-2018
+
+Zurich MedTech AG (ZMT)
+
+All rights reserved.
+
+Visit our website: www.zurichmedtech.com
+
+--------------------------------------------------------------------------------
+
+
+End User Licence Agreement
+
+Terms and Conditions
+
+
+1. Conclusion of the Licence Agreement
+
+1.1 This End User Licence Agreement (the "Agreement") is entered into between ZMT Z�rich MedTech AG ("ZMT") and you ("Customer"). The conditions of the use by Customer of the Software, the Model Data and the Documentation (altogether the "Licenced Rights") are set forth in these Terms and Conditions and in the invoice received from ZMT or ZMT�s representative or distributor (the "Invoice").
+
+1.2 In this Agreement, Software, Model Data and Documentation shall mean:
+
+1.2.1 "Software" means the software programme(s) originating from, or directly or indirectly distributed by, ZMT and installed, used or reproduced by Customer.
+
+1.2.2 "Model Data" means:
+
+a. the CAD data of virtual biophysical models of one or more humans and parts of humans designed for computational simulations, identified by ZMT as Virtual Population Models (the "ViP Models"); and
+
+b. other CAD data for simulation purposes;
+
+including the related physical and biological properties of materials including tissues, altogether originating from, or directly or indirectly distributed by, ZMT and installed, used or reproduced by Customer.
+
+1.2.3 "Documentation" means any documentation, instructions and reference materials related to the Software and/or to the Model Data provided to Customer in any form whatsoever.
+
+1.3 Customer�s right to install, use and reproduce the Licenced Rights is conditioned on acceptance of, and compliance with, these Terms and Conditions. By installing, using or reproducing any of the Licenced Rights the Customer is deemed to have accepted these Terms and Conditions.
+
+1.4 If Customer does not accept these Terms and Conditions, he shall not install, use or reproduce the Licenced Rights and return them to ZMT. Furthermore, Customer shall cease any and all attempts to download, install, use or reproduce any of the Licenced Rights and delete any and all Licenced Rights downloaded or installed.
+
+1.5 The Licenced Rights are protected by copyright.
+
+
+2. Grant of the Licence
+
+2.1 ZMT grants Customer a non-exclusive right to use the Licenced Rights for Customer's own purposes (the "Licence").
+
+2.2 Use of the Software: Customer shall be entitled to use the Licenced Rights for one of the following purposes only, as set forth in the Invoice:
+
+2.2.1 for commercial purposes which shall include all use in accordance with this Agreement for research, development and commercial purposes of Customer.
+
+2.2.2 for academic purposes, which shall include the following use by the Customer in accordance with this Agreement:
+
+a. use solely for purposes of non-profit research financed substantially from public sources. In particular, academic purposes shall not allow the use of the Licenced Rights by Customer for research commissioned by third parties who pursue a commercial purpose; and
+
+b. use for teaching at Customer�s institution, including the use by students enrolled at Customer�s institution who work on a diploma or doctoral thesis, as long as the use is restricted to the work on such diploma or doctoral thesis.
+
+2.2.3 for evaluation purposes, which shall include all use by Customer in accordance with this Agreement solely to evaluate and test the functionality of the Licenced Rights. In particular, the evaluation purpose shall not allow the use of the Licenced Rights for any commercial purpose or any research financed by third parties who pursue a commercial purpose.
+
+2.3 Floating Licence: Customer is entitled to:
+
+2.3.1 install the licence key provided by ZMT for the Licenced Rights (the "Licence Key") on the server identified in the Invoice (the "Licence Server") which shall be located at the location identified in the Invoice (the "Licence Server Location");
+
+2.3.2 install the Licenced Rights or portions thereof on one or more computers, provided that the use of the individual installations are controlled by the Licence Key; and
+
+2.3.3 allow the concurrent use of the Licenced Rights in the number of instances not exceeding the number of instances of concurrent use set forth in the Invoice;
+
+2.3.4 allow the use of the Licenced Rights by users who shall be physically present at all times during their use within a geographic area with a radius of fifty (50) kilometres around the Licence Server Location. If Customer is granted a Licence for research purposes, only access on the campus of the Customer�s institution shall be allowed.
+
+2.4 Customer shall be entitled to make a backup copy of the Licenced Rights as reasonably necessary to support the use of the Licenced Rights in accordance with this Agreement.
+
+2.5 The Licenced Rights may contain software programmes, libraries, model data and other components which have been provided by third parties ("Third Party Materials"). Third Party Materials may be sub-licenced under particular terms applicable thereto as set forth in the about.txt file included with the Licenced Rights or the Third Party Materials. Terms applicable to Third Party Materials shall prevail over these Terms and Conditions.
+
+2.6 The Licence shall only be valid if Customer has made in time and in full all payments pursuant to the Invoice.
+
+2.7 ZMT may use various technologies to authenticate and validate the use by Customer of the Licenced Rights and to process related information in ZMT�s information systems. Customer allows the use of such technologies.
+
+
+3. Restrictions
+
+3.1 Customer may not transfer, licence, sub-licence, rent, sell, or distribute the Licenced Rights in whole or in part to any third party or make it available to any third party on a time sharing or any other basis.
+
+3.2 Customer will obtain only object code of the Software and shall not modify, isolate, disassemble, decompile or otherwise reverse-engineer the Software or create any derivative, compilation or collective work involving the Software.
+
+3.3 When the Model Data are loaded, they may neither be read from the computer memory or graphics card memory nor be intercepted on the data bus.
+
+3.4 In the event that ZMT is informed that one or more of the persons, on whose personal data any of the Model Data is based, have withdrawn their consent to any further use of their data in full or in part, ZMT will inform Customer that any further use whatsoever of the respective Model Data is strictly forbidden.
+
+3.5 Customer shall not remove, obscure or alter notices as to the proprietary rights of ZMT and its Licensors, serial numbers or other identifiers from the Licenced Rights or any copies of the Licenced Rights Customer makes or uses.
+
+3.6 Customer shall not relocate the Licence Server, nor make it available for use in instances exceeding the number of concurrent instances of use set forth in the Invoice or located outside the radius. Should the Customer wish to do any of those, he shall obtain the prior express and written consent of ZMT and, if applicable, pay the additional Licence Fee.
+
+3.7 Customer shall take appropriate action, inter alia by instruction, agreement or otherwise, to ensure that any persons permitted to access the Licenced Rights comply with the terms of this Agreement.
+
+
+4. Delivery
+
+4.1 ZMT will make available the Licenced Rights, as set forth in the Invoice:
+
+4.1.1 either for download from the download server notified by ZMT;
+
+4.1.2 or by delivery on a tangible medium ("Tangible Medium"), whereby the property to the Tangible Medium shall remain with ZMT at all times during the term of the Licence and thereafter.
+
+4.2 In addition, ZMT will make available the following:
+
+a. the Licence Key for download from the download server by sending a message to Customer containing the download link; and
+
+b. the dongle ("Dongle"), if the Licence Key is programmed for identity verification by means of a Dongle. The property to the Dongle shall remain with ZMT at all times during the term of the Licence and thereafter.
+
+4.3 It shall be the task of Customer to install and set up the Licenced Rights on the Licence Server.
+
+
+5. Results
+
+5.1 "Results" shall be deemed any results, data or visualisations obtained inter alia through use of the Model Data, irrespective of whether they are or may be protected by intellectual property regulations (e.g. as derived work).
+
+5.2 Any Results obtained inter alia through the use of any ViP Model may only be published in scientific journals, on scientific conferences or in submissions to regulators.
+
+5.3 If any Results obtained inter alia through the use of any ViP Model are published, reference shall be made in the publication to IT�IS Foundation (www.itis.ethz.ch/vip) and to the following paper:
+
+Christ A, Kainz W, Hahn E G, Honegger K, Zefferer M, Neufeld E, Rascher W, Janka R, Bautz W, Chen J, Kiefer B, Schmitt P, Hollenbach H P, Shen J X, Oberle M, Szczerba D, Kam A, Guag J W, Kuster N: The Virtual Family � Development of surface-based anatomical models of two adults and two children for dosimetric simulations, Physics in Medicine and Biology, 55(2): N23-N38, 2010.
+
+5.4 Any Results obtained inter alia through the use of any ViP Model may only be made accessible to any third party in the form of images if the faces and genitals are disguised in appropriate manner.
+
+5.5 Any Results may only be used within the limits which apply to the Licence. Any other use requires the prior express and written consent of ZMT.
+
+
+6. Intellectual Property
+
+6.1 ZMT and its Licensors are and shall remain the sole owners of any and all intellectual property rights in the Licenced Rights. This Agreement does not convey nor shall Customer attempt to obtain any title to any intellectual property right in the Licenced Rights.
+
+6.2 ZMT shall indemnify Customer against all claims and related reasonable expenses arising out of any infringement of any intellectual property right to the extent that it is based on the use of the Licenced Rights in accordance with this Agreement, provided that:
+
+6.2.1 Customer promptly notifies ZMT in writing of such claims being made;
+
+6.2.2 ZMT has sole control of any litigation and settlement negotiations on such claims;
+
+6.2.3 Customer provides all reasonable assistance and information necessary to defend such claims.
+
+6.3 Should any such claim be upheld by a court having competent jurisdiction or in a settlement to which ZMT consents, or in the event that ZMT deems it appropriate, ZMT shall, at its discretion:
+
+6.3.1 procure for Customer the right to continue using the Licenced Rights;
+
+6.3.2 replace or modify the Licenced Rights to be non-infringing; or
+
+6.3.3 terminate the Licence and refund to Customer all Licence Fees paid that have not been used on a pro rata basis from delivery to the end of the term of the Licence as set forth in the Invoice. If the Licence is perpetual, the refund shall be calculated on the basis of a term of the Licence of five (5) years.
+
+6.4 This clause 6 states ZMT's entire liability for intellectual property right infringement.
+
+
+7. Term of the Licence
+
+7.1 Unless terminated earlier according to these Terms and Conditions, the term of the Licence shall be as follows:
+
+7.1.1 as long as Customer uses the Licenced Rights (perpetual), if so provided in the Invoice; or
+
+7.1.2 for a limited term, if so provided in the Invoice. Licences for a limited term may, upon request of Customer, be extended for a new term by paying the then current Licence Fee as invoiced by ZMT; or
+
+7.1.3 Licences for evaluation purposes shall be limited to the term programmed in the Licence Key, but shall not exceed thirty (30) days even if programmed in the Licence Key for a longer term. ZMT may terminate the Licence for evaluation purposes at any time and in its sole discretion.
+
+7.3 The Licence Key provides, inter alia, for certain periods of use. If the Licence is for a term longer than the programming on the Licence Key, Customer may require ZMT to provide a Licence Key for extension of the programmed term prior to the expiry of each Licence Key programming , and ZMT shall do so in due time in accordance with the terms and conditions of the Agreement.
+
+7.4 Upon termination of the Licence Customer shall return the Tangible Medium and the Dongle, if applicable, to ZMT and delete all copies of the Licenced Rights on any of its installations. Upon request of ZMT Customer shall confirm in writing within ten (10) days from the request that he has complied with this obligation.
+
+
+8. Title to Support Services
+
+8.1 Perpetual Licence: In the event that the Invoice provides for a perpetual Licence, ZMT shall provide Support Services as follows:
+
+8.1.1 During the first year of the Licence, ZMT shall provide Support Services, the fee therefor being included in the Licence Fee.
+
+8.1.2 From the second year of the Licence, Customer may order Support Services as available from ZMT at then applicable rates ("Support Charge").
+
+8.1.3 If Customer has not continuously required the Support Services and Customer desires to begin such support again, all previous periods shall be retroactively paid in full as a precondition to such Support Services being provided.
+
+8.2 Limited Term of the Licence: In the event that the Invoice provides for a limited term of the Licence, Support Services during the term of the Licence shall be included in the Licence Fee.
+
+8.3 Support Charge: ZMT is entitled to refuse any Support Services in the event that Customer has not paid the Support Charge or the Licence Fee, if the Support Charge is included in the Licence Fee.
+
+
+9. Extent of Support Services
+
+9.1 The following support services (the "Support Services") shall be provided:
+
+9.1.1 Remote consultation pertaining to the installation and use of the Software and their interaction with hardware, operating environments and other software through telephone, electronic mail or with direct on-line access on Customer�s computer system shall be provided by ZMT�s local representative or distributor, where available, or the ZMT headquarter during normal business hours (headquarter: 9 a.m. to 6 p.m. Central European Time on Z�rich working days);
+
+9.1.2 ZMT shall make commercially reasonable efforts to correct errors occurring during the operation of the Licenced Rights by providing, at ZMT's discretion:
+
+a. a workaround for any material error in the Licenced Rights which is directly attributable to ZMT;
+
+b. a temporary correction of the Licenced Rights (patching);
+
+c. a permanent correction of the Licenced Rights (update);
+
+d. a new release of the Licenced Rights as such release becomes available.
+
+9.2 If Customer requires correcting errors, he shall report to ZMT in sufficient detail the error occurred including the error message(s) shown and other relevant information.
+
+9.3 ZMT shall be entitled to require at its discretion that Customer shall install certain updates or new releases designated by ZMT.
+
+9.4 Patches, updates and new releases of the Licenced Rights may be provided under revised Terms and Conditions. Such revised Terms and conditions shall be effective upon installation of such workaround, patch, update or new release. If no revised Terms and Conditions apply, all workarounds, patches, updates and new releases to the Licenced Rights will be provided by ZMT under the terms of the Licence set forth in of this Agreement.
+
+9.5 Support Services shall not include, in particular, the following, whereby such services may be available from ZMT at its then current rates:
+
+9.5.1 setting up the Licenced Rights in the environment of the Customer;
+
+9.5.2 correcting problems resulting from any modification to the Licenced Rights made by Customer or any third party;
+
+9.5.3 support for the projects of the Customer for which the Licenced Rights are used.
+
+9.6 Support Services are only provided for the newest releases of the Licenced Rights. ZMT shall not be obliged to support any other than the newest releases of the Licenced Rights.
+
+9.7 ZMT may provide limited support for Licences for research purposes as it may define at its discretion.
+
+
+10. Licence Fee and Support Charge
+
+10.1 In consideration of the grant of the Licence, Customer shall pay to ZMT a licence fee (the "Licence Fee") as set forth in the Invoice. In consideration of the Support Services, Customer shall pay to ZMT the Support Charge if the Support Charge is, pursuant to these Terms and Conditions, not included in the Licence Fee.
+
+10.2 The Licence Fee and the Support Charge are exclusive of all taxes, custom duties, insurance, shipping, packing and other charges and expenses.
+
+10.3 The Licence Fee and the Support Charge and all additional charges such as taxes and other charges and expenses as applicable shall be payable as set forth in the Invoice.
+
+
+11. Warranty
+
+11.1 Customer only is responsible for the selection and the use of the Licenced Rights as well as of the hardware, other software programmes, other model data and other components to be used together with the Licenced Rights.
+
+11.2 With respect to the Software and the Model Data licenced for commercial or academic purposes, the warranty of ZMT is strictly limited to the following:
+
+11.2.1 the Software and the Model Data will substantially conform to the description given in the Documentation, provided that Customer meets the requirements as to the hardware and software environment set forth in the Documentation. ZMT makes no further or other warranties, express or implied, with respect to the Software and the Model Data or their use and operation alone or in conjunction with any other software, other hardware and any services provided under this Agreement. ZMT specifically disclaims any warranty of fitness of the Software and the Model Data for any particular purpose, even if Customer has informed ZMT of such purpose.
+
+11.2.2 In lieu of any other remedy for breach of warranty ZMT makes available Support Services as set out in this Agreement.
+
+11.3 Licenced Rights licenced for evaluation purposes may not be fully functional and the Customer assumes the entire risk as to the use, the results and the performance of the Licenced Rights. ZMT does not provide any warranty whatsoever for Licenced Rights licenced for evaluation purposes.
+
+11.4 With respect to the Tangible Medium on which the Licenced Rights are delivered, if applicable, ZMT only warrants that the Tangible Medium will be free from defects in materials and workmanship under normal use and service. Customer shall within ten (10) days from receipt examine the Tangible Medium and immediately give notice to ZMT of any defects. ZMT will replace such defective Tangible Medium. This clause 11.4 also applies to the replacement Tangible Medium.
+
+11.5 Furthermore, the warranty is voided in full if any dysfunction results from misapplication, utilisation of an improper hardware or software environment, unauthorised maintenance or by any breach of this Agreement.
+
+11.6 Nothing set forth in this Agreement with respect to Support Services shall be construed as expanding or adding to the warranty otherwise provided in this Agreement.
+
+11.7 ZMT does not provide any warranty other than expressly set forth in this clause 11.
+
+
+12. Liability
+
+ZMT shall be liable to Customer only for damage directly caused by breach of this Agreement by wilful intent or gross negligence and its liability shall not in any event exceed the amounts received as Licence Fee under this Agreement. All further liability shall be excluded; in particular, ZMT shall not in any event be liable for any loss of profits, loss of business, loss of use or data, interruption of business, or for indirect, special, incidental or consequential damage or injury of any kind.
+
+
+13. Confidentiality
+
+13.1 The Licenced Rights may contain information, ideas, concepts and procedures that are business secrets of ZMT. Customer agrees not to disclose Confidential Information or any other of ZMT's business secrets (altogether the "Confidential Information") in full or in part to any third party without ZMT's prior express and written consent.
+
+13.2 Customer may give access to Confidential Information only to its employees and students and only on a need-to-know basis. Customer shall use all due care to keep Confidential Information confidential.
+
+13.3 The obligations set out in this clause 13 shall survive the termination of this Agreement.
+
+
+14. Payment Terms
+
+14.1 Payments to ZMT or any of its agents under this Agreement shall be made in the currency set forth in the Invoice.
+
+14.2 There shall be no reduction or set-off of the Licence Fee, the Support Charge or any other sum due to ZMT or any of its representatives or distributors under this Agreement for any claims of Customer or its affiliates against ZMT, its affiliates, representatives or distributors nor for any other reason.
+
+14.3 If any sum due to ZMT or any of its representatives or distributors under this Agreement should become overdue, ZMT may, without declaring Customer to be in default, charge Customer default interest of 8.5 per cent per annum on the overdue amount.
+
+
+15. Termination
+
+15.1 This Agreement and all Licences granted hereunder may be terminated with immediate effect:
+
+15.1.1 by ZMT if Customer fails to pay any sums due under this Agreement for more than thirty (30) days after such sum becomes due and payable, provided that ZMT has once reminded Customer of the default;
+
+15.1.2 by either Party if any breach or non-performance of the Agreement by the other Party affecting the first Party to such a degree that continuation of the Agreement can in good faith no longer be expected.
+
+15.2 Upon termination of this Agreement, the Licence shall be terminated. Clause 7.4 above shall apply. Customer may not claim reimbursement of Licence Fees and Support Charges not used at the time of termination.
+
+
+16. Miscellaneous
+
+16.1 Assignment: Customer shall not assign or transfer the Licence or this Agreement as a whole or in part to any third party without the prior express and written consent of ZMT.
+
+16.2 Entire Agreement: The Invoice and these Terms and Conditions encompass the entire understanding between the Parties with respect to the subject matter of this Agreement; there are no representations, warranties, covenants, agreements or collateral understandings other than expressly set forth in the Invoice and in these Terms and Conditions.
+
+16.3 Order and Invoice: In the event of differences between Customer's order and the Invoice, the Invoice shall prevail.
+
+16.4 Waivers: Any waiver of any right of ZMT under this Agreement shall only be effective if expressly communicated by ZMT to Customer in writing, with reference to this Agreement.
+
+16.5 Severability: If any provision of this Agreement is held to be invalid or unenforceable in whole or in part, the invalid or unenforceable provision shall be replaced by a valid and enforceable provision having a legal and economic effect which will be as similar as possible to the invalid or unenforceable provision.
+
+
+17. Applicable Law and Jurisdiction
+
+17.1 This Agreement shall be governed by the substantive Swiss Law, to the exclusion of the UN Convention on Contracts for the International Sale of Goods of 11 April 1980.
+
+17.2 All disputes arising out of or in connection with this Agreement shall, to the exclusion of any other courts, be settled by the competent courts of Z�rich 4, Switzerland.
+
+- 12 -
+
+
+Boost Software License - Version 1.0 - August 17th, 2003
+
+
+Permission is hereby granted, free of charge, to any person or organization
+
+obtaining a copy of the software and accompanying documentation covered by
+
+this license (the "Software") to use, reproduce, display, distribute,
+
+execute, and transmit the Software, and to prepare derivative works of the
+
+Software, and to permit third-parties to whom the Software is furnished to
+
+do so, all subject to the following:
+
+
+The copyright notices in the Software and this entire statement, including
+
+the above license grant, this restriction and the following disclaimer,
+
+must be included in all copies of the Software, in whole or in part, and
+
+all derivative works of the Software, unless such copies or derivative
+
+works are solely in the form of machine-executable object code generated by
+
+a source language processor.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+
+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+
+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+
+DEALINGS IN THE SOFTWARE.
+
+
+Copyright Notice and License Terms for
+
+HDF5 (Hierarchical Data Format 5) Software Library and Utilities
+
+
+HDF5 (Hierarchical Data Format 5) Software Library and Utilities
+
+Copyright 2006-2014 by The HDF Group.
+
+
+NCSA HDF5 (Hierarchical Data Format 5) Software Library and Utilities
+
+Copyright 1998-2006 by the Board of Trustees of the University of Illinois.
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without modification, are permitted for any purpose (including commercial purposes) provided that the following conditions are met:
+
+
+ Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer.
+
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the following disclaimer in the documentation and/or materials provided with the distribution.
+
+ In addition, redistributions of modified forms of the source or binary code must carry prominent notices stating that the original code was changed and the date of the change.
+
+ All publications or advertising materials mentioning features or use of this software are asked, but not required, to acknowledge that it was developed by The HDF Group and by the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign and credit the contributors.
+
+ Neither the name of The HDF Group, the name of the University, nor the name of any Contributor may be used to endorse or promote products derived from this software without specific prior written permission from The HDF Group, the University, or the Contributor, respectively.
+
+
+DISCLAIMER: THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event shall The HDF Group or the Contributors be liable for any damages suffered by the users arising out of the use of this software, even if advised of the possibility of such damage.
+
+
+Contributors: National Center for Supercomputing Applications (NCSA) at the University of Illinois, Fortner Software, Unidata Program Center (netCDF), The Independent JPEG Group (JPEG), Jean-loup Gailly and Mark Adler (gzip), and Digital Equipment Corporation (DEC).
+
+
+Portions of HDF5 were developed with support from the Lawrence Berkeley National Laboratory (LBNL) and the United States Department of Energy under Prime Contract No. DE-AC02-05CH11231.
+
+
+Portions of HDF5 were developed with support from the University of California, Lawrence Livermore National Laboratory (UC LLNL). The following statement applies to those portions of the product and must be retained in any redistribution of source code, binaries, documentation, and/or accompanying materials:
+
+This work was partially produced at the University of California, Lawrence Livermore National Laboratory (UC LLNL) under contract no. W-7405-ENG-48 (Contract 48) between the U.S. Department of Energy (DOE) and The Regents of the University of California (University) for the operation of UC LLNL.
+
+
+DISCLAIMER: This work was prepared as an account of work sponsored by an agency of the United States Government. Neither the United States Government nor the University of California nor any of their employees, makes any warranty, express or implied, or assumes any liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately- owned rights. Reference herein to any specific commercial products, process, or service by trade name, trademark, manufacturer, or otherwise, does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or the University of California. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or the University of California, and shall not be used for advertising or product endorsement purposes.
+
+
+HDF5 is available with the SZIP compression library but SZIP is not part of HDF5 and has separate copyright and license terms. See "Szip Compression in HDF Products" (www.hdfgroup.org/doc_resource/SZIP/) for further details.
+
+
+ Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler
+
+
+ This software is provided 'as-is', without any express or implied
+
+ warranty. In no event will the authors be held liable for any damages
+
+ arising from the use of this software.
+
+
+ Permission is granted to anyone to use this software for any purpose,
+
+ including commercial applications, and to alter it and redistribute it
+
+ freely, subject to the following restrictions:
+
+
+ 1. The origin of this software must not be misrepresented; you must not
+
+ claim that you wrote the original software. If you use this software
+
+ in a product, an acknowledgment in the product documentation would be
+
+ appreciated but is not required.
+
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+
+ misrepresented as being the original software.
+
+
+ 3. This notice may not be removed or altered from any source distribution.
+
+
+Enthought Python Distribution
+
+Software License and Subscription Service Agreement
+
+
+This Enthought Python Distribution Software License and Service Subscription Agreement (the "Agreement") is between Enthought, Inc., a Delaware corporation ("Enthought"), and the licensee and subscriber of EPD and Subscription Services, respectively, who accepts the terms of this Agreement (the "Customer"). The effective date of this Agreement (the "Effective Date") is the earlier of the date Customer accepts this Agreement or the first date the Customer uses the Software or Subscription Services. Please read this Agreement carefully before using the Software or Subscription Services from Enthought. By using the Software or Subscription Services Customer signifies its assent to and acceptance of the terms of this Agreement. If the Customer does not accept the terms of this Agreement, then it must not use the Software or Subscription Services.
+
+
+1. Definitions. The following terms, when capitalized, are defined as follows:
+
+
+ A. "Third Party Software" shall mean any and all third party software and related intellectual property, whether proprietary or open source, that are subscribed for as part of the Subscription Services by Customer and distributed by Enthought under this Agreement.
+
+
+ B. "Enthought Python Distribution" or "EPD" or "Software" shall mean Enthought's proprietary software and related intellectual property that packages Third Party Software in a single binary form and performs installation services of EPD and Third Party Software by the Customer.
+
+
+ C. "Subscription Services" shall mean annual subscription by Customer for (i) Third Party Software distributed by Enthought and (ii) support services provided by Enthought for EPD at the service level subscribed to by Customer.
+
+
+ D. "Initial Term" shall mean the period from the Effective Date through the date that is the one year anniversary for such date.
+
+
+ E. "Renewal Term" shall be any additional one-year terms (each, a "Renewal Term") from the end of the Initial Term or any subsequent Renewal Term.
+
+
+ F. "User" shall mean a single individual authorized per the terms, conditions and restrictions herein, to use the Software.
+
+
+Other capitalized terms used in this Agreement are defined in the context in which they are used and shall have the meanings indicated by such use.
+
+
+2. EPD Software License
+
+
+Commencing on the Effective Date, Enthought grants Customer a limited, non-exclusive right to use EPD, but only pursuant to the terms and conditions of this Agreement. The specific use rights granted to Customer are as follows:
+
+
+ A. "User License". Each User License grants Customer the right for one (1) User to install and use EPD on as many computers or workstations as may be required for the User's individual use of EPD. A separate User License is required for each User of EPD in the event multiple Users use EPD on a single computer or workstation. Use of EPD on a cluster, where the User is making parallel use of more than two (2) nodes requires a separate license. Customer may make as many copies of EPD as are reasonably required for normal computer backup and archival purposes. All copies must contain all title, trademark, and copyright information and restricted rights notices as are provided in EPD. Customer shall not remove or obscure any such notices. The Enthought quotation shall set forth the quantity of the User Licenses ordered by Customer. Unless otherwise indicated on the quotation, prices exclude any applicable sales, value added, or similar tax payable by Customer.
+
+
+ B. Customer shall not distribute EPD to third parties and will only authorize the use of EPD to properly licensed Users as required under the terms of this Agreement. Additionally, Customer shall not distribute to third parties, as standalone software or as a component of a Customer application, any Third Party Software obtained by Customer under this Agreement unless such third parties have a User License in effect at the time of such distribution. The Customer represents and warrants to Enthought that Customer and all of its authorized Users will comply at all times with all applicable laws and regulations in using EPD. If Customer or any of its authorized Users use EPD in an unlawful manner, for unlawful purposes or in any way that does not comply with all applicable laws and regulations, then the license may be revoked by Enthought and, in such event, Customer and its authorized Users will cease using EPD and, at Enthought's discretion, will uninstall EPD and either return to Enthought or destroy all copies of EPD. The provisions of this Section 2b shall survive any termination or expiration of this Agreement.
+
+
+ C. "Academic License". For Customers using EPD for education or research in a degree-granting institution, the license agreement controlling the usage of EPD can be found at following location: http://www.enthought.com/EPDAcademicTerms.html
+
+
+3. Subscription Services
+
+
+Enthought shall deliver to Customer the Subscription Services ordered by Customer in consideration for the annual Subscription Services fees as specified in the Enthought quotation, plus any applicable taxes, levies, duties, assessments and custom fees (collectively, the "Annual Subscription Fee"). The initial Annual Subscription Fees shall be due and payable prior to delivery of the Software, unless other payment terms are specified in the Enthought quotation. Customer may renew its order for Subscription Services for additional one-year Renewal Terms upon payment of the then current Annual Subscription Fee prior to the expiration of the Initial Term or any subsequent Renewal Term. The following services shall be provided to Customer in consideration for the Annual Subscription Fee for the Initial Term and each Renewal Term:
+
+
+ A. Third Party Software Distribution
+
+ Enthought will distribute to Customer, along with periodic updates if and when available, Third Party Software. A list of Third Party Software distributed to Customer pursuant to the Subscription Services and copies of the source code for such is available through links published on the Enthought website. Third Party Software is distributed:
+
+ (i) On an As Is basis; and
+
+ (ii) Subject to license agreements for each Third Party Software, a copy of the licenses which are located in the Third Party Software source code and permits Customer to run, copy, modify and redistribute (subject to certain obligations in some cases) the source code.
+
+ Enthought reserves the right to change the Third Party Software that is distributed at any time.
+
+
+ B. Support Services Subscription
+
+ Upon receipt of full payment for Subscription Services, Enthought will deliver to Customer support services at the service level ordered and paid for by the Customer. The service level ordered by Customer shall be specified in the Enthought quotation. Customer may change its service level at the time of renewal by providing written notification to Enthought requesting a service level change and specifying the new service level desired. The following provides the support service levels offered by Enthought:
+
+ (i) Basic Support Subscription - is available for User Licenses in blocks of one (1) User. The Basic Support Subscription provides Customer the following services:
+
+ - Email-based installation support
+
+ - Access to Enthought Subscription Repository containing EPD for all supported platforms and historical EPD releases
+
+ - Access to FAQ Support at the Enthought website
+
+ - Access to the latest distributions
+
+ - Periodic updates to EPD in the Repository
+
+ - Access to Enthought EPD Webinars including archived recordings of past EPD Webinars.
+
+
+ (ii) Silver Support Subscription - is available for User Licenses in blocks of ten (10) Users. The minimum Silver service level subscription is for ten (10) Users with support for additional Users available in incremental blocks of ten (10) Users. Silver service level support provides Customer with all the services included in the Basic service level for each User plus:
+
+Telephone-based installation support
+
+
+ (iii) Gold Support Subscription - is available for a minimum order of ten (10) User Licenses. Support for additional Users above the minimum order quantity is available in incremental blocks of three (3) Users. Gold service level support provides Customer with all the services included in the Silver service level plus:
+
+ - Telephone and email "How do I" help for basic questions of using EPD to accomplish a specific task.
+
+ - Telephone and email priority bug fixes for getting bugs fixed in specific packages within EPD (including Third Party Software).
+
+
+4. Term and Termination
+
+
+The Term of this Agreement shall extend from the Effective Date through the Initial Term and any Renewal Term. Enthought may terminate this agreement upon written notice to Customer if Customer fails to pay the Annual Subscription Fees when and as due, or upon Customer's breach of any of the terms and conditions of this Agreement. Customer may terminate this Agreement at any time upon written notice to Enthought. Upon termination of this Agreement, Customer shall have perpetual use of the version or versions of EPD used by Customer at the time of termination, but Customer shall not have access to Subscription Services, Customer will not be entitled to any refund of any portion of the Annual Subscription Fees, and Enthought will have no further obligation or liability to Customer after such termination.
+
+
+5. Ownership and Marks
+
+
+Enthought represents and warrants that it is the owner of EPD or that it otherwise has the right to grant Customer a User License for Customer's use. No right or license, express or implied, is granted in this Agreement for the use of any Enthought or Third Party Software trade names, service marks or trademarks, including, without limitation, the distribution of EPD and the Third Party Software utilizing Enthought or Third Party Software trademarks.
+
+
+6. Limited Warranty of Enthought
+
+
+Enthought hereby warrants that, to the knowledge of Enthought, the copyrights in and to EPD are owned by Enthought or are sublicensed to Customer under the terms of this Agreement with the permission(s) of the licensor(s) of those copyrights.
+
+
+7. DISCLAIMER
+
+
+THIS IS A LIMITED WARRANTY AND IT IS THE ONLY WARRANTY MADE BY ENTHOUGHT. ENTHOUGHT MAKES AND CUSTOMER RECEIVES NO WARRANTY EXPRESSED OR IMPLIED AND THERE ARE EXPRESSLY EXCLUDED ALL WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ENTHOUGHT SHALL HAVE NO LIABILITY WITH RESPECT TO ITS OBLIGATIONS UNDER THIS AGREEMENT FOR CONSEQUENTIAL, EXEMPLARY OR INCIDENTAL DAMAGES EVEN IF IT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE STATED EXPRESS WARRANTY IS IN LIEU OF ALL LIABILITIES OR OBLIGATIONS OF ENTHOUGHT FOR DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE DELIVERY, USE OR PERFORMANCE OF THE SOFTWARE.
+
+
+8. Indemnity
+
+
+Enthought will defend and indemnify Customer against any action brought against Customer to the extent that it is based on a claim that the Software infringes a United States copyright, patent or other property right, provided that (a) Customer notifies Enthought promptly, in writing, of the claim, (b) Enthought has sole control of the defense of any such claim and all related settlement negotiations and (c) Customer provides Enthought with reasonable assistance and information and authority to perform the above. Enthought's agreement to be responsible for defense of any such claims shall be limited to the costs of defense only and payment of any settlement or judgment arising from such claims.
+
+
+Notwithstanding this general indemnity, Enthought shall have no liability for any claim of infringement based on use of a superseded or altered release of the Software or the combination, operation or use of the Software with programs or data not furnished by Enthought if such infringement would have been avoided by the use of the Software without such programs or data.
+
+
+In the event that the Software are finally held to be infringing works or are believed by Enthought to be infringing, Enthought shall, at its option and expense either (a) modify the Software to be non-infringing, (b) obtain a license to continue using the Software or (c) terminate the license for the infringing Software and refund the license fees paid for the Software. Other than the rights and remedies set forth in this Section 8 concerning infringement and indemnity, Customer has no other rights with respect to infringement.
+
+
+9. General
+
+
+ A. Governing Law. This Agreement shall be governed by and construed in accordance with the laws of the State of Texas without giving effect to any body of law or precedent relating to conflicts of law.
+
+
+ B. Assignment. Customer shall not assign any of its rights hereunder without the prior written permission of Enthought. Such permission shall not be unreasonably withheld.
+
+
+ C. Severability. In the event that any provision of this Agreement is held to be invalid or unenforceable, the remaining provisions of this Agreement will remain in full force and effect.
+
+
+ D. U. S. Government Restricted Rights. In the event Customer is an agency, department, or other entity of the United States Government ("Government"), the use, duplication, reproduction, release, modification, disclosure, or transfer of the Software, or any related documentation of any kind, including technical data or manuals, is restricted in accordance with Federal Acquisition Regulation 12.212 (as amended or supplanted) for civilian agencies and Defense Federal Acquisition Regulation Supplement 227.7202 (as amended or supplanted) for military agencies. The Software is commercial computer software and the related documentation is commercial computer software documentation. The use of the Software and related documentation is further restricted in accordance with the terms of this Agreement, or any modification hereto. The Contractor / Manufacturer is Enthought, Inc., 515 Congress Avenue, Suite 2100, Austin, Texas, U.S.A. 78701.
+
+
+ E. Entire Agreement. Each party acknowledges that it has read and understands this Agreement and agrees to be bound by its terms. This Agreement constitutes the complete agreement between the parties and supersedes all previous agreements or representations, written or oral, with respect to the Software and Subscription Services specified herein. This Agreement may not be modified or amended except in writing signed by a duly authorized representative of each party.
+
+
+ F. Force Majeure. Dates or times by which Enthought is required to make performance under this Agreement shall be postponed automatically to the extent that Enthought is prevented from meeting them by causes beyond its reasonable control.
+
+
+ G. Compliance. Customer agrees and hereby authorizes Enthought's access to Software license files used to validate usage of the Software for purposes of verifying Customer's compliance with this Agreement during the Term.
+
+
+ H. Waiver. The waiver or failure of Enthought to exercise in any respect any right provided for in this Agreement shall not be deemed a waiver of any further right hereunder.
+
+
+A. HISTORY OF THE SOFTWARE
+
+==========================
+
+
+Python was created in the early 1990s by Guido van Rossum at Stichting
+
+Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
+
+as a successor of a language called ABC. Guido remains Python's
+
+principal author, although it includes many contributions from others.
+
+
+In 1995, Guido continued his work on Python at the Corporation for
+
+National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
+
+in Reston, Virginia where he released several versions of the
+
+software.
+
+
+In May 2000, Guido and the Python core development team moved to
+
+BeOpen.com to form the BeOpen PythonLabs team. In October of the same
+
+year, the PythonLabs team moved to Digital Creations (now Zope
+
+Corporation, see http://www.zope.com). In 2001, the Python Software
+
+Foundation (PSF, see http://www.python.org/psf/) was formed, a
+
+non-profit organization created specifically to own Python-related
+
+Intellectual Property. Zope Corporation is a sponsoring member of
+
+the PSF.
+
+
+All Python releases are Open Source (see http://www.opensource.org for
+
+the Open Source Definition). Historically, most, but not all, Python
+
+releases have also been GPL-compatible; the table below summarizes
+
+the various releases.
+
+
+ Release Derived Year Owner GPL-
+
+ from compatible? (1)
+
+
+(1) GPL-compatible doesn't mean that we're distributing Python under
+
+ the GPL. All Python licenses, unlike the GPL, let you distribute
+
+ a modified version without making your changes open source. The
+
+ GPL-compatible licenses make it possible to combine Python with
+
+ other software that is released under the GPL; the others don't.
+
+
+(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
+
+ because its license has a choice of law clause. According to
+
+ CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
+
+ is "not incompatible" with the GPL.
+
+
+Thanks to the many outside volunteers who have worked under Guido's
+
+direction to make these releases possible.
+
+
+
+B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
+
+===============================================================
+
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+--------------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+
+otherwise using this software ("Python") in source or binary form and
+
+its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+
+analyze, test, perform and/or display publicly, prepare derivative works,
+
+distribute, and otherwise use Python alone or in any derivative version,
+
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+
+2011, 2012 Python Software Foundation; All Rights Reserved" are retained in Python
+
+alone or in any derivative version prepared by Licensee.
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python.
+
+
+4. PSF is making Python available to Licensee on an "AS IS"
+
+basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. Nothing in this License Agreement shall be deemed to create any
+
+relationship of agency, partnership, or joint venture between PSF and
+
+Licensee. This License Agreement does not grant permission to use PSF
+
+trademarks or trade name in a trademark sense to endorse or promote
+
+products or services of Licensee, or any third party.
+
+
+8. By copying, installing or otherwise using Python, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+
+-------------------------------------------
+
+
+BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+
+
+1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+
+office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+
+Individual or Organization ("Licensee") accessing and otherwise using
+
+this software in source or binary form and its associated
+
+documentation ("the Software").
+
+
+2. Subject to the terms and conditions of this BeOpen Python License
+
+Agreement, BeOpen hereby grants Licensee a non-exclusive,
+
+royalty-free, world-wide license to reproduce, analyze, test, perform
+
+and/or display publicly, prepare derivative works, distribute, and
+
+otherwise use the Software alone or in any derivative version,
+
+provided, however, that the BeOpen Python License is retained in the
+
+Software, alone or in any derivative version prepared by Licensee.
+
+
+3. BeOpen is making the Software available to Licensee on an "AS IS"
+
+basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+
+SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
+
+AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
+
+DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+5. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+6. This License Agreement shall be governed by and interpreted in all
+
+respects by the law of the State of California, excluding conflict of
+
+law provisions. Nothing in this License Agreement shall be deemed to
+
+create any relationship of agency, partnership, or joint venture
+
+between BeOpen and Licensee. This License Agreement does not grant
+
+permission to use BeOpen trademarks or trade names in a trademark
+
+sense to endorse or promote products or services of Licensee, or any
+
+third party. As an exception, the "BeOpen Python" logos available at
+
+http://www.pythonlabs.com/logos.html may be used according to the
+
+permissions granted on that web page.
+
+
+7. By copying, installing or otherwise using the software, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+
+---------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Corporation for National
+
+Research Initiatives, having an office at 1895 Preston White Drive,
+
+Reston, VA 20191 ("CNRI"), and the Individual or Organization
+
+("Licensee") accessing and otherwise using Python 1.6.1 software in
+
+source or binary form and its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+
+license to reproduce, analyze, test, perform and/or display publicly,
+
+prepare derivative works, distribute, and otherwise use Python 1.6.1
+
+alone or in any derivative version, provided, however, that CNRI's
+
+License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+
+1995-2001 Corporation for National Research Initiatives; All Rights
+
+Reserved" are retained in Python 1.6.1 alone or in any derivative
+
+version prepared by Licensee. Alternately, in lieu of CNRI's License
+
+Agreement, Licensee may substitute the following text (omitting the
+
+quotes): "Python 1.6.1 is made available subject to the terms and
+
+conditions in CNRI's License Agreement. This Agreement together with
+
+Python 1.6.1 may be located on the Internet using the following
+
+unique, persistent identifier (known as a handle): 1895.22/1013. This
+
+Agreement may also be obtained from a proxy server on the Internet
+
+using the following URL: http://hdl.handle.net/1895.22/1013".
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python 1.6.1 or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python 1.6.1.
+
+
+4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+
+basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. This License Agreement shall be governed by the federal
+
+intellectual property law of the United States, including without
+
+limitation the federal copyright law, and, to the extent such
+
+U.S. federal law does not apply, by the law of the Commonwealth of
+
+Virginia, excluding Virginia's conflict of law provisions.
+
+Notwithstanding the foregoing, with regard to derivative works based
+
+on Python 1.6.1 that incorporate non-separable material that was
+
+previously distributed under the GNU General Public License (GPL), the
+
+law of the Commonwealth of Virginia shall govern this License
+
+Agreement only as to issues arising under or with respect to
+
+Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
+
+License Agreement shall be deemed to create any relationship of
+
+agency, partnership, or joint venture between CNRI and Licensee. This
+
+License Agreement does not grant permission to use CNRI trademarks or
+
+trade name in a trademark sense to endorse or promote products or
+
+services of Licensee, or any third party.
+
+
+8. By clicking on the "ACCEPT" button where indicated, or by copying,
+
+installing or otherwise using Python 1.6.1, Licensee agrees to be
+
+bound by the terms and conditions of this License Agreement.
+
+
+ ACCEPT
+
+
+
+CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+
+--------------------------------------------------
+
+
+Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+
+The Netherlands. All rights reserved.
+
+
+Permission to use, copy, modify, and distribute this software and its
+
+documentation for any purpose and without fee is hereby granted,
+
+provided that the above copyright notice appear in all copies and that
+
+both that copyright notice and this permission notice appear in
+
+supporting documentation, and that the name of Stichting Mathematisch
+
+Centrum or CWI not be used in advertising or publicity pertaining to
+
+distribution of the software without specific, written prior
+
+permission.
+
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+ Neither the name of the NumPy Developers nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Copyright (c) 1991-2014, UChicago Argonne, LLC and the PETSc Development Team
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without modification,
+
+are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice, this
+
+ list of conditions and the following disclaimer in the documentation and/or
+
+ other materials provided with the distribution.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+This license DOES NOT apply to any software that may be obtained via the --download-package option of the PETSc configuration. Each of those packages are covered by their own licenses.
+
+
+
+Contributing
+
+
+Contributions are preferred via Bitbucket pull request to https://bitbucket.org/petsc/petsc or via patches (git send-email or git format-patch) sent to petsc-dev@mcs.anl.gov. If you are planning a large contribution, we encourage you to discuss the concept on the mailing list and interact with us frequently to ensure that your effort is well-directed. See the Development Wiki for further details.
+
+
+PETSc is distributed under a 2-clause BSD license (see above). The act of submitting a pull request or patch (with or without an explicit Signed-off-by tag) will be understood as an affirmation of the following:
+
+
+ Developer's Certificate of Origin 1.1
+
+
+ By making a contribution to this project, I certify that:
+
+
+ (a) The contribution was created in whole or in part by me and I
+
+ have the right to submit it under the open source license
+
+ indicated in the file; or
+
+
+ (b) The contribution is based upon previous work that, to the best
+
+ of my knowledge, is covered under an appropriate open source
+
+ license and I have the right under that license to submit that
+
+ work with modifications, whether created in whole or in part
+
+ by me, under the same open source license (unless I am
+
+ permitted to submit under a different license), as indicated
+
+ in the file; or
+
+
+ (c) The contribution was provided directly to me by some other
+
+ person who certified (a), (b) or (c) and I have not modified
+
+ it.
+
+
+ (d) I understand and agree that this project and the contribution
+
+ are public and that a record of the contribution (including all
+
+ personal information I submit with it, including my sign-off) is
+
+ maintained indefinitely and may be redistributed consistent with
+
+ this project or the open source license(s) involved.
+
+
+Old License
+
+
+Previous versions of PETSc were distributed under the old PETSc license.
+
+
+ SLEPc is free software: you can redistribute it and/or modify it under the terms of version 3 of the GNU Lesser General Public License as published by the Free Software Foundation.
+
+
+ SLEPc 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 Lesser General Public License for more details.
+
+
+ You should have received a copy of the GNU Lesser General Public License along with SLEPc. If not, see http://www.gnu.org/licenses/.
+
+
+1.1. "Contributor"
+
+ means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.
+
+
+1.2. "Contributor Version"
+
+ means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor�s Contribution.
+
+
+1.3. "Contribution"
+
+ means Covered Software of a particular Contributor.
+
+
+1.4. "Covered Software"
+
+ means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.
+
+
+1.5. "Incompatible With Secondary Licenses"
+
+ means
+
+
+ that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or
+
+
+ that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License.
+
+
+1.6. "Executable Form"
+
+ means any form of the work other than Source Code Form.
+
+
+1.7. "Larger Work"
+
+ means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software.
+
+
+1.8. "License"
+
+ means this document.
+
+
+1.9. "Licensable"
+
+ means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License.
+
+
+1.10. "Modifications"
+
+ means any of the following:
+
+
+ any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or
+
+
+ any new file in Source Code Form that contains any Covered Software.
+
+
+1.11. "Patent Claims" of a Contributor
+
+ means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version.
+
+
+1.12. "Secondary License"
+
+ means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.
+
+
+1.13. "Source Code Form"
+
+ means the form of the work preferred for making modifications.
+
+
+1.14. "You" (or "Your")
+
+ means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.
+
+
+2. License Grants and Conditions
+
+2.1. Grants
+
+
+Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:
+
+
+ under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and
+
+
+ under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.
+
+
+2.2. Effective Date
+
+The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.
+
+
+2.3. Limitations on Grant Scope
+
+The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:
+
+
+ for any code that a Contributor has removed from Covered Software; or
+
+
+ for infringements caused by: (i) Your and any other third party�s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or
+
+
+ under Patent Claims infringed by Covered Software in the absence of its Contributions.
+
+
+This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).
+
+
+2.4. Subsequent Licenses
+
+No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).
+
+
+2.5. Representation
+
+
+Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.
+
+
+2.6. Fair Use
+
+This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.
+
+
+2.7. Conditions
+
+Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.
+
+
+3. Responsibilities
+
+3.1. Distribution of Source Form
+
+
+All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients� rights in the Source Code Form.
+
+
+3.2. Distribution of Executable Form
+
+If You distribute Covered Software in Executable Form then:
+
+
+ such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and
+
+
+ You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients� rights in the Source Code Form under this License.
+
+
+3.3. Distribution of a Larger Work
+
+You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).
+
+
+3.4. Notices
+
+You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.
+
+
+3.5. Application of Additional Terms
+
+You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.
+
+
+4. Inability to Comply Due to Statute or Regulation
+
+If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.
+
+
+5. Termination
+
+5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice.
+
+
+5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.
+
+
+5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.
+
+
+6. Disclaimer of Warranty
+
+Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.
+
+
+7. Limitation of Liability
+
+Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party�s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.
+
+
+8. Litigation
+
+Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party�s ability to bring cross-claims or counter-claims.
+
+
+9. Miscellaneous
+
+This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor.
+
+
+10. Versions of the License
+
+10.1. New Versions
+
+Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.
+
+
+10.2. Effect of New Versions
+
+You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.
+
+
+10.3. Modified Versions
+
+If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).
+
+
+10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses
+
+If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.
+
+Exhibit A - Source Code Form License Notice
+
+
+ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+
+If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.
+
+
+You may add additional accurate notices of copyright ownership.
+
+Exhibit B - "Incompatible With Secondary Licenses" Notice
+
+
+ This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
+
+
+The following copyright applies to each file in the HYPRE distribution, unless otherwise stated in the file:
+
+
+Copyright (c) 2008, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory under Contract No. DE-AC52-07NA27344 with
+
+the DOE.
+
+
+This file is part of HYPRE.
+
+
+
+LICENSE
+
+
+HYPRE is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (as published by the Free Software Foundation) version 2.1 dated February 1999.
+
+
+HYPRE 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 terms and conditions of the GNU Lesser General Public License for more details.
+
+
+You should have received a copy of the GNU Lesser General Public License along with this library (file COPYING.LESSER); if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+
+CONTACT INFORMATION
+
+
+The HYPRE team can be contacted at hypre-support@llnl.gov. The software is released under UCRL_CODE_222953. Please see http://www.llnl.gov/CASC/hypre for more information and source code availability.
+
+
+Software License Agreement for NVIDIA CUDA Toolkit
+
+
+
+
+IMPORTANT NOTICE -- READ CAREFULLY: This Software License Agreement ("Agreement") for NVIDIA CUDA Toolkit, including computer software and associated documentation ("Software"), is the Agreement which governs use of the SOFTWARE of NVIDIA Corporation and its subsidiaries ("NVIDIA") downloadable herefrom. By downloading, installing, copying, or otherwise using the SOFTWARE, You (as defined below) agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, do not download the SOFTWARE.
+
+
+
+
+RECITALS
+
+
+
+
+Use of NVIDIA's SOFTWARE requires three elements: the SOFTWARE, an NVIDIA GPU or application processor ("NVIDIA Hardware"), and a computer system. The SOFTWARE is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE is not sold, and instead is only licensed for Your use, strictly in accordance with this Agreement. The NVIDIA Hardware is protected by various patents, and is sold, but this Agreement does not cover the sale or use of such hardware, since it may not necessarily be sold as a package with the SOFTWARE. This Agreement sets forth the terms and conditions of the SOFTWARE only.
+
+
+
+
+1. DEFINITIONS
+
+
+
+
+1.1 "Licensee," "You," or "Your" shall mean the entity or individual that downloads and uses the SOFTWARE.
+
+
+
+
+1.2 "Redistributable SOFTWARE" shall mean the redistributable libraries referenced in Attachment A of this Agreement.
+
+
+
+
+1.3 "SOFTWARE" shall mean the deliverables provided pursuant to this Agreement.
+
+
+
+
+2. GRANT OF LICENSE
+
+
+
+
+2.1 Rights and Limitations of Grant. Provided that Licensee complies with the terms of this Agreement, NVIDIA hereby grants Licensee the following limited, non-exclusive, non-transferable, non-sublicensable (except as expressly permitted otherwise for Redistributable Software in Sections 2.1.2 and 2.1.3 of this Agreement) right to use the SOFTWARE, with the following limitations:
+
+
+
+
+2.1.1 Usage Rights. Licensee may install and use multiple copies of the SOFTWARE on a shared computer or concurrently on different computers, and make multiple back-up copies of the SOFTWARE, solely for Licensee's use within Licensee's Enterprise. "Enterprise" shall mean individual use by Licensee or any legal entity (such as a corporation or university) and the subsidiaries it owns by more than 50 percent.
+
+
+
+
+2.1.2 Redistribution Rights. Licensee may transfer, redistribute, and sublicense certain files of the Redistributable SOFTWARE, as defined in Attachment A of this Agreement, provided, however, that (a) the Redistributable SOFTWARE shall be distributed solely in binary form to Licensee's licensees ("Customers") only as a component of Licensee's own software products (each, a "Licensee Application"); (b) Licensee shall design the Licensee Application such that the Redistributable SOFTWARE files are installed only in a private (non-shared) directory location that is used only by the Licensee Application; (c) Licensee shall obtain each Customer's written or clickwrap agreement to the license terms under a written, legally enforceable agreement that has the effect of protecting the SOFTWARE and the rights of NVIDIA under terms no less restrictive than this Agreement.
+
+
+
+
+2.1.3 Further Redistribution Rights. Subject to the terms and conditions of the Agreement, Licensee may authorize Customers to further redistribute the Redistributable SOFTWARE that such Customers receive as part of the Licensee Application, solely in binary form, provided, however, that Licensee shall require in their standard software license agreements with Customers that all such redistributions must be made pursuant to a license agreement that has the effect of protecting the SOFTWARE and the rights of NVIDIA whose terms and conditions are at least as restrictive as those in the applicable Licensee software license agreement covering the Licensee Application. For avoidance of doubt, termination of this Agreement shall not affect rights previously granted by Licensee to its Customers under this Agreement to the extent validly granted to Customers under Section 2.1.2.
+
+
+
+
+2.1.4 Linux/FreeBSD Exception. Notwithstanding the foregoing terms of Sections 2.1.1, 2.1.2 and 2.1.3, SOFTWARE designed exclusively for use on the Linux or FreeBSD operating systems, or other operating systems derived from the source code to these operating systems, may be copied and redistributed, provided that the binary files thereof are not modified in any way (except for unzipping of compressed files).
+
+
+
+
+2.1.5 Additional Licensing Obligations
+
+
+
+
+Licensee acknowledges and agrees that its use of certain third party components included with the SOFTWARE may be subject to additional licensing terms and conditions as set forth or referenced in Attachment B of this Agreement.
+
+
+
+
+2.1.6 Limitations
+
+
+
+
+No Reverse Engineering. Licensee may not reverse engineer, decompile, or disassemble the SOFTWARE, nor attempt in any other manner to obtain the source code.
+
+
+
+
+No Separation of Components. The SOFTWARE is licensed as a single product. Except as authorized in this Agreement, Software component parts of the Software may not be separated for use on more than one computer, nor otherwise used separately from the other parts.
+
+
+
+
+No Rental. Licensee may not rent or lease the SOFTWARE to someone else.
+
+
+
+
+3. TERM AND TERMINATION
+
+
+
+
+This Agreement will continue in effect for two (2) years ("Initial Term) after Your initial download and use of the SOFTWARE, subject to the exclusive right of NVIDIA to terminate as provided herein. The term of this Agreement will automatically renew for successive one (1) year renewal terms after the Initial Term, unless either party provides to the other party at least three (3) months prior written notice of termination before the end of the applicable renewal term.
+
+
+
+
+This Agreement will automatically terminate if Licensee fails to comply with any of the terms and conditions hereof. In such event, Licensee must destroy all copies of the SOFTWARE and all of its component parts.
+
+
+
+
+Defensive Suspension. If Licensee commences or participates in any legal proceeding against NVIDIA, then NVIDIA may, in its sole discretion, suspend or terminate all license grants and any other rights provided under this Agreement during the pendency of such legal proceedings.
+
+
+
+
+4. COPYRIGHT
+
+
+
+
+All rights, title, interest and copyrights in and to the SOFTWARE (including but not limited to all images, photographs, animations, video, audio, music, text, and other information incorporated into the SOFTWARE), the accompanying printed materials, and any copies of the SOFTWARE, are owned by NVIDIA, or its suppliers. The SOFTWARE is protected by copyright laws and international treaty provisions. Accordingly, Licensee is required to treat the SOFTWARE like any other copyrighted material, except as otherwise allowed pursuant to this Agreement and that it may make one copy of the SOFTWARE solely for backup or archive purposes.
+
+
+
+
+RESTRICTED RIGHTS NOTICE. Software has been developed entirely at private expense and is commercial computer software provided with RESTRICTED RIGHTS. Use, duplication or disclosure by the U.S. Government or a U.S. Government subcontractor is subject to the restrictions set forth in the Agreement under which Software was obtained pursuant to DFARS 227.7202-3(a) or as set forth in subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted Rights clause at FAR 52.227-19, as applicable. Contractor/manufacturer is NVIDIA, 2701 San Tomas Expressway, Santa Clara, CA 95050
+
+
+
+
+5. APPLICABLE LAW
+
+
+
+
+This Agreement shall be deemed to have been made in, and shall be construed pursuant to, the laws of the State of Delaware. The United Nations Convention on Contracts for the International Sale of Goods is specifically disclaimed. The courts of Santa Clara County, California shall have exclusive jurisdiction and venue over any dispute arising out of or relating to this Agreement.
+
+
+
+
+6. DISCLAIMER OF WARRANTIES AND LIMITATION ON LIABILITY
+
+
+
+
+6.1 No Warranties. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE SOFTWARE IS PROVIDED "AS IS" AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT.
+
+
+
+
+6.2 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL NVIDIA OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
+
+
+6.3 No Support. NVIDIA has no obligation to support or to provide any updates of the Software.
+
+
+
+
+7. MISCELLANEOUS
+
+
+
+
+7.1 Feedback. Notwithstanding any Non-Disclosure Agreement executed by and between the parties, the parties agree that in the event Licensee or NVIDIA provides Feedback (as defined below) to the other party on how to design, implement, or improve the SOFTWARE or Licensee's product(s) for use with the SOFTWARE, the following terms and conditions apply the Feedback:
+
+
+
+
+7.1.1 Exchange of Feedback. Both parties agree that neither party has an obligation to give the other party any suggestions, comments or other feedback, whether verbally or in written or source code form, relating to (i) the SOFTWARE; (ii) Licensee's products; (iii) Licensee's use of the SOFTWARE; or (iv) optimization/interoperability of Licensee's product with the SOFTWARE (collectively defined as "Feedback"). In the event either party provides Feedback to the other party, the party receiving the Feedback may use any Feedback that the other party voluntarily provides to improve the (i) SOFTWARE or other related NVIDIA technologies, respectively for the benefit of NVIDIA; or (ii) Licensee's product or other related Licensee technologies, respectively for the benefit of Licensee. Accordingly, if either party provides Feedback to the other party, both parties agree that the other party and its respective licensees may freely use, reproduce, license, distribute, and otherwise commercialize the Feedback in the (i) SOFTWARE or other related technologies; or (ii) Licensee's products or other related technologies, respectively, without the payment of any royalties or fees.
+
+
+
+
+7.1.2 Residual Rights. Licensee agrees that NVIDIA shall be free to use any general knowledge, skills and experience, (including, but not limited to, ideas, concepts, know-how, or techniques) ("Residuals"), contained in the (i) Feedback provided by Licensee to NVIDIA; (ii) Licensee's products shared or disclosed to NVIDIA in connection with the Feedback; or (c) Licensee's confidential information voluntarily provided to NVIDIA in connection with the Feedback, which are retained in the memories of NVIDIA's employees, agents, or contractors who have had access to such Residuals. Subject to the terms and conditions of this Agreement, NVIDIA's employees, agents, or contractors shall not be prevented from using Residuals as part of such employee's, agent's or contractor's general knowledge, skills, experience, talent, and/or expertise. NVIDIA shall not have any obligation to limit or restrict the assignment of such employees, agents or contractors or to pay royalties for any work resulting from the use of Residuals.
+
+
+
+
+7.1.3 Disclaimer of Warranty. FEEDBACK FROM EITHER PARTY IS PROVIDED FOR THE OTHER PARTY'S USE "AS IS" AND BOTH PARTIES DISCLAIM ALL WARRANTIES, EXPRESS, IMPLIED AND STATUTORY INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. BOTH PARTIES DO NOT REPRESENT OR WARRANT THAT THE FEEDBACK WILL MEET THE OTHER PARTY'S REQUIREMENTS OR THAT THE OPERATION OR IMPLEMENTATION OF THE FEEDBACK WILL BE UNINTERRUPTED OR ERROR-FREE.
+
+
+
+
+7.1.4 No Liability for Consequential Damages. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL EITHER PARTY OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE THE FEEDBACK, EVEN IF THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+
+
+
+7.2 Freedom of Action. Licensee agrees that this Agreement is nonexclusive and NVIDIA may currently or in the future be developing software, other technology or confidential information internally, or receiving confidential information from other parties that maybe similar to the Feedback and Licensee's confidential information (as provided in Section 7.1.2 above), which may be provided to NVIDIA in connection with Feedback by Licensee. Accordingly, Licensee agrees that nothing in this Agreement will be construed as a representation or inference that NVIDIA will not develop, design, manufacture, acquire, market products, or have products developed, designed, manufactured, acquired, or marketed for NVIDIA, that compete with the Licensee's products or confidential information.
+
+
+
+
+7.3 No Implied Licenses. Under no circumstances should anything in this Agreement be construed as NVIDIA granting by implication, estoppel or otherwise, (i) a license to any NVIDIA product or technology other than the SOFTWARE; or (ii) any additional license rights for the SOFTWARE other than the licenses expressly granted in this Agreement.
+
+
+
+
+7.4 If any provision of this Agreement is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This Agreement is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This Agreement may only be modified in writing signed by an authorized officer of NVIDIA. Licensee agrees that it will not ship, transfer or export the SOFTWARE into any country, or use the SOFTWARE in any manner, prohibited by the United States Bureau of Industry and Security or any export laws, restrictions or regulations.
+
+
+
+
+7.5 The parties agree that the following sections of the Agreement will survive the termination of the License: Sections 2.1.4 and 4-7.
+
+
+
+
+
+
+ATTACHMENT A
+
+
+
+
+Redistributable Software
+
+
+
+
+
+
+In connection with Section 2.1.2 of this Agreement, the following files may be redistributed with software applications developed by Licensee, including variations of these files that have version number information embedded in the file name.
+
+
+
+
+Component : CUDA Runtime
+
+
+ Windows : cudart.dll
+
+
+ MacOS : libcudart.dylib
+
+
+ Linux : libcudart.so
+
+
+
+
+Component : CUDA FFT Library
+
+
+ Windows : cufft.dll
+
+
+ MacOS : libcufft.dylib
+
+
+ Linux : libcufft.so
+
+
+
+
+Component : CUDA BLAS Library
+
+
+ Windows : cublas.dll
+
+
+ MacOS : libcublas.dylib
+
+
+ Linux : libcublas.so
+
+
+
+
+Component : CUDA Sparse Matrix Library
+
+
+ Windows : cusparse.dll
+
+
+ MacOs : libcusparse.dylib
+
+
+ Linux : libcusparse.so
+
+
+
+
+Component : CUDA Random Number Generation Library
+
+
+The following third party components included in the SOFTWARE are licensed to Licensee pursuant to the following terms and conditions:
+
+
+
+
+A. Licensee's use of the following third party components is subject to the terms and conditions of GNU GPL v2.0:
+
+
+
+
+1. gdb
+
+
+2. Open64
+
+
+
+
+This product includes copyrighted third-party software licensed under the terms of the GNU General Public License v2.0 ("GPL v2.0). All third-party software packages are copyright by their respective authors. GPL v2.0 terms and conditions are hereby incorporated into the Agreement by this reference.
+
+
+B. Licensee's use of the following third party components is subject to the terms and conditions of GNU GPL v3.0:
+
+
+
+
+1. gcc front-end v2.2
+
+
+
+
+This product includes copyrighted third-party software licensed under the terms of the GNU General Public License v3.0. All third-party software packages are copyright by their respective authors. GPL v3.0 terms and conditions are hereby incorporated into the Agreement by this reference.
+
+
+
+
+http://www.gnu.org/licenses/gpl.html
+
+
+
+
+C. Licensee represents and warrants that any and all third party licensing and/or royalty payment obligations in connection with Licensee's use of the H.264 video codecs are solely the responsibility of Licensee.
+
+
+
+
+D. Licensee's use of the Thrust is library is subject to the terms and conditions of the Apache License Version 2.0. All third-party software packages are copyright by their respective authors. Apache License Version 2.0 terms and conditions are hereby incorporated into the Agreement by this reference.
+
+
+ In addition, Licensee acknowledges the following notice:
+
+
+
+
+Thrust includes source code from the Boost Iterator, Tuple, System, and Random Number libraries.
+
+
+
+
+Boost Software License - Version 1.0 - August 17th, 2003
+
+
+
+
+Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
+
+
+
+
+The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.
+
+
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+E. Licensee's use of the LLVM third party component is subject to the following terms and conditions:
+
+
+Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
+
+
+All rights reserved.
+
+
+
+
+Developed by:
+
+
+
+
+ LLVM Team
+
+
+
+
+ University of Illinois at Urbana-Champaign
+
+
+
+
+ http://llvm.org
+
+
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do
+
+
+so, subject to the following conditions:
+
+
+
+
+o Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers.
+
+
+
+
+o Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimers in the documentation and/or other materials provided with the distribution.
+
+
+
+
+o Neither the names of the LLVM Team, University of Illinois at Urbana-Champaign, nor the names of its contributors may be used to endorse or promote products derived from this Software without specific prior written permission.
+
+
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.
+
+
+The Message Passing Interface installer that is part of Microsoft HPC Pack 2012 R2 includes the software indicated below or portions thereof. Microsoft received that software with the copyrights, licenses, or other terms or notices indicated below. Microsoft provides them in this document for informational purposes only. This document conveys no license from Microsoft.
+
+
+******************
+
+1. MPICH2
+
+
+
+COPYRIGHT
+
+
+The following is a notice of limited availability of the code, and disclaimer which must be included in the prologue of the code and in all source listings of the code.
+
+
+Copyright Notice + 2002 University of Chicago
+
+
+Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. This software was authored by:
+
+
+Argonne National Laboratory Group W. Gropp: (630) 252-4318; FAX: (630) 252-5986; e-mail: gropp@mcs.anl.gov E. Lusk: (630) 252-7852; FAX: (630) 252-5986; e-mail: lusk@mcs.anl.gov Mathematics and Computer Science Division Argonne National Laboratory, Argonne IL 60439
+
+
+
+ GOVERNMENT LICENSE
+
+
+Portions of this material resulted from work developed under a U.S. Government Contract and are subject to the following license: the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly.
+
+
+ DISCLAIMER
+
+
+This computer code material was prepared, in part, as an account of work sponsored by an agency of the United States Government. Neither the United States, nor the University of Chicago, nor any of their employees, makes any warranty express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or represents that its use would not infringe privately owned rights.
+
+
+Portions of this code were written by Microsoft. Those portions are Copyright (c) 2007 Microsoft Corporation. Microsoft grants permission to use, reproduce, prepare derivative works, and to redistribute to others. The code is licensed "as is." The User bears the risk of using it. Microsoft gives no express warranties, guarantees or conditions. To the extent permitted by law, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
+
+
+
+******************
+
+2. Open Trace Format (OTF) library
+
+
+
+Copyright (c) 2005-2009, ZIH, Technische Universitaet Dresden, Federal Republic of Germany
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+
+- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+
+- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+
+- Neither the name of ZIH, TU Dresden nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ pthreads-win32 - a POSIX threads library for Microsoft Windows
+
+
+
+This file is Copyrighted
+
+------------------------
+
+
+ This file is covered under the following Copyright:
+
+
+ Copyright (C) 2001,2006 Ross P. Johnson
+
+
+ All rights reserved.
+
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+Pthreads-win32 is covered by the GNU Lesser General Public License
+
+------------------------------------------------------------------
+
+
+ Pthreads-win32 is open software; you can redistribute it and/or
+
+ modify it under the terms of the GNU Lesser General Public License
+
+ as published by the Free Software Foundation version 2.1 of the
+
+ License.
+
+
+ Pthreads-win32 is several binary link libraries, several modules,
+
+ associated interface definition files and scripts used to control
+
+ its compilation and installation.
+
+
+ Pthreads-win32 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 Lesser General Public License for more details.
+
+
+ A copy of the GNU Lesser General Public License is distributed with
+
+ pthreads-win32 under the filename:
+
+
+ COPYING.LIB
+
+
+ You should have received a copy of the version 2.1 GNU Lesser General
+
+ Public License with pthreads-win32; if not, write to:
+
+
+ Free Software Foundation, Inc.
+
+
+ 59 Temple Place
+
+
+ Suite 330
+
+
+ Boston, MA 02111-1307
+
+
+ USA
+
+
+ The contact addresses for pthreads-win32 is as follows:
+
+
+ Email: Ross Johnson
+
+ Please use: Firstname.Lastname@homemail.com.au
+
+
+
+
+Pthreads-win32 copyrights and exception files
+
+---------------------------------------------
+
+
+ With the exception of the files listed below, Pthreads-win32
+
+ is covered under the following GNU Lesser General Public License
+
+ Copyrights:
+
+
+ Pthreads-win32 - POSIX Threads Library for Win32
+
+ Copyright(C) 1998 John E. Bossom
+
+ Copyright(C) 1999,2006 Pthreads-win32 contributors
+
+
+ The current list of contributors is contained
+
+ in the file CONTRIBUTORS included with the source
+
+ code distribution. The current list of CONTRIBUTORS
+
+ can also be seen at the following WWW location:
+
+ http://sources.redhat.com/pthreads-win32/contributors.html
+
+
+ Contact Email: Ross Johnson
+
+ Please use: Firstname.Lastname@homemail.com.au
+
+
+ These files are not covered under one of the Copyrights listed above:
+
+
+ COPYING
+
+ COPYING.LIB
+
+ tests/rwlock7.c
+
+
+ This file, COPYING, is distributed under the Copyright found at the
+
+ top of this file. It is important to note that you may distribute
+
+ verbatim copies of this file but you may not modify this file.
+
+
+ The file COPYING.LIB, which contains a copy of the version 2.1
+
+ GNU Lesser General Public License, is itself copyrighted by the
+
+ Free Software Foundation, Inc. Please note that the Free Software
+
+ Foundation, Inc. does NOT have a copyright over Pthreads-win32,
+
+ only the COPYING.LIB that is supplied with pthreads-win32.
+
+
+ The file tests/rwlock7.c is derived from code written by
+
+ Dave Butenhof for his book 'Programming With POSIX(R) Threads'.
+
+ The original code was obtained by free download from his website
+
+ http://home.earthlink.net/~anneart/family/Threads/source.html
+
+ and did not contain a copyright or author notice. It is assumed to
+
+ be freely distributable.
+
+
+ In all cases one may use and distribute these exception files freely.
+
+ And because one may freely distribute the LGPL covered files, the
+
+ entire pthreads-win32 source may be freely used and distributed.
+
+
+
+
+General Copyleft and License info
+
+---------------------------------
+
+
+ For general information on Copylefts, see:
+
+
+ http://www.gnu.org/copyleft/
+
+
+ For information on GNU Lesser General Public Licenses, see:
+
+
+Why pthreads-win32 did not use the GNU General Public License
+
+-------------------------------------------------------------
+
+
+ The goal of the pthreads-win32 project has been to
+
+ provide a quality and complete implementation of the POSIX
+
+ threads API for Microsoft Windows within the limits imposed
+
+ by virtue of it being a stand-alone library and not
+
+ linked directly to other POSIX compliant libraries. For
+
+ example, some functions and features, such as those based
+
+ on POSIX signals, are missing.
+
+
+ Pthreads-win32 is a library, available in several different
+
+ versions depending on supported compilers, and may be used
+
+ as a dynamically linked module or a statically linked set of
+
+ binary modules. It is not an application on it's own.
+
+
+ It was fully intended that pthreads-win32 be usable with
+
+ commercial software not covered by either the GPL or the LGPL
+
+ licenses. Pthreads-win32 has many contributors to it's
+
+ code base, many of whom have done so because they have
+
+ used the library in commercial or proprietry software
+
+ projects.
+
+
+ Releasing pthreads-win32 under the LGPL ensures that the
+
+ library can be used widely, while at the same time ensures
+
+ that bug fixes and improvements to the pthreads-win32 code
+
+ itself is returned to benefit all current and future users
+
+ of the library.
+
+
+ Although pthreads-win32 makes it possible for applications
+
+ that use POSIX threads to be ported to Win32 platforms, the
+
+ broader goal of the project is to encourage the use of open
+
+ standards, and in particular, to make it just a little easier
+
+ for developers writing Win32 applications to consider
+
+ widening the potential market for their products.
+
+
+ Program: GDCM (Grassroots DICOM). A DICOM library
+
+
+Copyright (c) 2006-2011 Mathieu Malaterre
+
+
+Copyright (c) 1993-2005 CREATIS
+
+
+(CREATIS = Centre de Recherche et d'Applications en Traitement de l'Image)
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ * Neither name of Mathieu Malaterre, or CREATIS, nor the names of any
+
+ contributors (CNRS, INSERM, UCB, Universite Lyon I), may be used to
+
+ endorse or promote products derived from this software without specific
+
+ prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+
+ Version 2.1, February 1999
+
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+[This is the first released version of the Lesser GPL. It also counts
+
+ as the successor of the GNU Library Public License, version 2, hence
+
+ the version number 2.1.]
+
+
+ Preamble
+
+
+ The licenses for most software are designed to take away your
+
+freedom to share and change it. By contrast, the GNU General Public
+
+Licenses are intended to guarantee your freedom to share and change
+
+free software--to make sure the software is free for all its users.
+
+
+ This license, the Lesser General Public License, applies to some
+
+specially designated software packages--typically libraries--of the
+
+Free Software Foundation and other authors who decide to use it. You
+
+can use it too, but we suggest you first think carefully about whether
+
+this license or the ordinary General Public License is the better
+
+strategy to use in any particular case, based on the explanations below.
+
+
+ When we speak of free software, we are referring to freedom of use,
+
+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 this service if you wish); that you receive source code or can get
+
+it if you want it; that you can change the software and use pieces of
+
+it in new free programs; and that you are informed that you can do
+
+these things.
+
+
+ To protect your rights, we need to make restrictions that forbid
+
+distributors to deny you these rights or to ask you to surrender these
+
+rights. These restrictions translate to certain responsibilities for
+
+you if you distribute copies of the library or if you modify it.
+
+
+ For example, if you distribute copies of the library, whether gratis
+
+or for a fee, you must give the recipients all the rights that we gave
+
+you. You must make sure that they, too, receive or can get the source
+
+code. If you link other code with the library, you must provide
+
+complete object files to the recipients, so that they can relink them
+
+with the library after making changes to the library and recompiling
+
+it. And you must show them these terms so they know their rights.
+
+
+ We protect your rights with a two-step method: (1) we copyright the
+
+library, and (2) we offer you this license, which gives you legal
+
+permission to copy, distribute and/or modify the library.
+
+
+ To protect each distributor, we want to make it very clear that
+
+there is no warranty for the free library. Also, if the library is
+
+modified by someone else and passed on, the recipients should know
+
+that what they have is not the original version, so that the original
+
+author's reputation will not be affected by problems that might be
+
+introduced by others.
+
+
+ Finally, software patents pose a constant threat to the existence of
+
+any free program. We wish to make sure that a company cannot
+
+effectively restrict the users of a free program by obtaining a
+
+restrictive license from a patent holder. Therefore, we insist that
+
+any patent license obtained for a version of the library must be
+
+consistent with the full freedom of use specified in this license.
+
+
+ Most GNU software, including some libraries, is covered by the
+
+ordinary GNU General Public License. This license, the GNU Lesser
+
+General Public License, applies to certain designated libraries, and
+
+is quite different from the ordinary General Public License. We use
+
+this license for certain libraries in order to permit linking those
+
+libraries into non-free programs.
+
+
+ When a program is linked with a library, whether statically or using
+
+a shared library, the combination of the two is legally speaking a
+
+combined work, a derivative of the original library. The ordinary
+
+General Public License therefore permits such linking only if the
+
+entire combination fits its criteria of freedom. The Lesser General
+
+Public License permits more lax criteria for linking other code with
+
+the library.
+
+
+ We call this license the "Lesser" General Public License because it
+
+does Less to protect the user's freedom than the ordinary General
+
+Public License. It also provides other free software developers Less
+
+of an advantage over competing non-free programs. These disadvantages
+
+are the reason we use the ordinary General Public License for many
+
+libraries. However, the Lesser license provides advantages in certain
+
+special circumstances.
+
+
+ For example, on rare occasions, there may be a special need to
+
+encourage the widest possible use of a certain library, so that it becomes
+
+a de-facto standard. To achieve this, non-free programs must be
+
+allowed to use the library. A more frequent case is that a free
+
+library does the same job as widely used non-free libraries. In this
+
+case, there is little to gain by limiting the free library to free
+
+software only, so we use the Lesser General Public License.
+
+
+ In other cases, permission to use a particular library in non-free
+
+programs enables a greater number of people to use a large body of
+
+free software. For example, permission to use the GNU C Library in
+
+non-free programs enables many more people to use the whole GNU
+
+operating system, as well as its variant, the GNU/Linux operating
+
+system.
+
+
+ Although the Lesser General Public License is Less protective of the
+
+users' freedom, it does ensure that the user of a program that is
+
+linked with the Library has the freedom and the wherewithal to run
+
+that program using a modified version of the Library.
+
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow. Pay close attention to the difference between a
+
+"work based on the library" and a "work that uses the library". The
+
+former contains code derived from the library, whereas the latter must
+
+be combined with the library in order to run.
+
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+
+ 0. This License Agreement applies to any software library or other
+
+program which contains a notice placed by the copyright holder or
+
+other authorized party saying it may be distributed under the terms of
+
+this Lesser General Public License (also called "this License").
+
+Each licensee is addressed as "you".
+
+
+ A "library" means a collection of software functions and/or data
+
+prepared so as to be conveniently linked with application programs
+
+(which use some of those functions and data) to form executables.
+
+
+ The "Library", below, refers to any such software library or work
+
+which has been distributed under these terms. A "work based on the
+
+Library" means either the Library or any derivative work under
+
+copyright law: that is to say, a work containing the Library or a
+
+portion of it, either verbatim or with modifications and/or translated
+
+straightforwardly into another language. (Hereinafter, translation is
+
+included without limitation in the term "modification".)
+
+
+ "Source code" for a work means the preferred form of the work for
+
+making modifications to it. For a library, complete source code means
+
+all the source code for all modules it contains, plus any associated
+
+interface definition files, plus the scripts used to control compilation
+
+and installation of the library.
+
+
+ Activities other than copying, distribution and modification are not
+
+covered by this License; they are outside its scope. The act of
+
+running a program using the Library is not restricted, and output from
+
+such a program is covered only if its contents constitute a work based
+
+on the Library (independent of the use of the Library in a tool for
+
+writing it). Whether that is true depends on what the Library does
+
+and what the program that uses the Library does.
+
+
+ 1. You may copy and distribute verbatim copies of the Library's
+
+complete source code as you receive it, in any medium, provided that
+
+you conspicuously and appropriately publish on each copy an
+
+appropriate copyright notice and disclaimer of warranty; keep intact
+
+all the notices that refer to this License and to the absence of any
+
+warranty; and distribute a copy of this License along with the
+
+Library.
+
+
+ You may charge a fee for the physical act of transferring a copy,
+
+and you may at your option offer warranty protection in exchange for a
+
+fee
+
+
+ 2. You may modify your copy or copies of the Library or any portion
+
+of it, thus forming a work based on the Library, and copy and
+
+distribute such modifications or work under the terms of Section 1
+
+above, provided that you also meet all of these conditions:
+
+
+ a) The modified work must itself be a software library.
+
+
+ b) You must cause the files modified to carry prominent notices
+
+ stating that you changed the files and the date of any change.
+
+
+ c) You must cause the whole of the work to be licensed at no
+
+ charge to all third parties under the terms of this License.
+
+
+ d) If a facility in the modified Library refers to a function or a
+
+ table of data to be supplied by an application program that uses
+
+ the facility, other than as an argument passed when the facility
+
+ is invoked, then you must make a good faith effort to ensure that,
+
+ in the event an application does not supply such function or
+
+ table, the facility still operates, and performs whatever part of
+
+ its purpose remains meaningful.
+
+
+ (For example, a function in a library to compute square roots has
+
+ a purpose that is entirely well-defined independent of the
+
+ application. Therefore, Subsection 2d requires that any
+
+ application-supplied function or table used by this function must
+
+ be optional: if the application does not supply it, the square
+
+ root function must still compute square roots.)
+
+
+These requirements apply to the modified work as a whole. If
+
+identifiable sections of that work are not derived from the Library,
+
+and can be reasonably considered independent and separate works in
+
+themselves, then this License, and its terms, do not apply to those
+
+sections when you distribute them as separate works. But when you
+
+distribute the same sections as part of a whole which is a work based
+
+on the Library, the distribution of the whole must be on the terms of
+
+this License, whose permissions for other licensees extend to the
+
+entire whole, and thus to each and every part regardless of who wrote
+
+it.
+
+
+Thus, it is not the intent of this section to claim rights or contest
+
+your rights to work written entirely by you; rather, the intent is to
+
+exercise the right to control the distribution of derivative or
+
+collective works based on the Library.
+
+
+In addition, mere aggregation of another work not based on the Library
+
+with the Library (or with a work based on the Library) on a volume of
+
+a storage or distribution medium does not bring the other work under
+
+the scope of this License.
+
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+
+License instead of this License to a given copy of the Library. To do
+
+this, you must alter all the notices that refer to this License, so
+
+that they refer to the ordinary GNU General Public License, version 2,
+
+instead of to this License. (If a newer version than version 2 of the
+
+ordinary GNU General Public License has appeared, then you can specify
+
+that version instead if you wish.) Do not make any other change in
+
+these notices.
+
+
+ Once this change is made in a given copy, it is irreversible for
+
+that copy, so the ordinary GNU General Public License applies to all
+
+subsequent copies and derivative works made from that copy.
+
+
+ This option is useful when you wish to copy part of the code of
+
+the Library into a program that is not a library.
+
+
+ 4. You may copy and distribute the Library (or a portion or
+
+derivative of it, under Section 2) in object code or executable form
+
+under the terms of Sections 1 and 2 above provided that you accompany
+
+it with the complete corresponding machine-readable source code, which
+
+must be distributed under the terms of Sections 1 and 2 above on a
+
+medium customarily used for software interchange.
+
+
+ If distribution of object code is made by offering access to copy
+
+from a designated place, then offering equivalent access to copy the
+
+source code from the same place satisfies the requirement to
+
+distribute the source code, even though third parties are not
+
+compelled to copy the source along with the object code.
+
+
+ 5. A program that contains no derivative of any portion of the
+
+Library, but is designed to work with the Library by being compiled or
+
+linked with it, is called a "work that uses the Library". Such a
+
+work, in isolation, is not a derivative work of the Library, and
+
+therefore falls outside the scope of this License.
+
+
+ However, linking a "work that uses the Library" with the Library
+
+creates an executable that is a derivative of the Library (because it
+
+contains portions of the Library), rather than a "work that uses the
+
+library". The executable is therefore covered by this License.
+
+Section 6 states terms for distribution of such executables.
+
+
+ When a "work that uses the Library" uses material from a header file
+
+that is part of the Library, the object code for the work may be a
+
+derivative work of the Library even though the source code is not.
+
+Whether this is true is especially significant if the work can be
+
+linked without the Library, or if the work is itself a library. The
+
+threshold for this to be true is not precisely defined by law.
+
+
+ If such an object file uses only numerical parameters, data
+
+structure layouts and accessors, and small macros and small inline
+
+functions (ten lines or less in length), then the use of the object
+
+file is unrestricted, regardless of whether it is legally a derivative
+
+work. (Executables containing this object code plus portions of the
+
+Library will still fall under Section 6.)
+
+
+ Otherwise, if the work is a derivative of the Library, you may
+
+distribute the object code for the work under the terms of Section 6.
+
+Any executables containing that work also fall under Section 6,
+
+whether or not they are linked directly with the Library itself.
+
+
+ 6. As an exception to the Sections above, you may also combine or
+
+link a "work that uses the Library" with the Library to produce a
+
+work containing portions of the Library, and distribute that work
+
+under terms of your choice, provided that the terms permit
+
+modification of the work for the customer's own use and reverse
+
+engineering for debugging such modifications.
+
+
+ You must give prominent notice with each copy of the work that the
+
+Library is used in it and that the Library and its use are covered by
+
+this License. You must supply a copy of this License. If the work
+
+during execution displays copyright notices, you must include the
+
+copyright notice for the Library among them, as well as a reference
+
+directing the user to the copy of this License. Also, you must do one
+
+of these things:
+
+
+ a) Accompany the work with the complete corresponding
+
+ machine-readable source code for the Library including whatever
+
+ changes were used in the work (which must be distributed under
+
+ Sections 1 and 2 above); and, if the work is an executable linked
+
+ with the Library, with the complete machine-readable "work that
+
+ uses the Library", as object code and/or source code, so that the
+
+ user can modify the Library and then relink to produce a modified
+
+ executable containing the modified Library. (It is understood
+
+ that the user who changes the contents of definitions files in the
+
+ Library will not necessarily be able to recompile the application
+
+ to use the modified definitions.)
+
+
+ b) Use a suitable shared library mechanism for linking with the
+
+ Library. A suitable mechanism is one that (1) uses at run time a
+
+ copy of the library already present on the user's computer system,
+
+ rather than copying library functions into the executable, and (2)
+
+ will operate properly with a modified version of the library, if
+
+ the user installs one, as long as the modified version is
+
+ interface-compatible with the version that the work was made with.
+
+
+ c) Accompany the work with a written offer, valid for at
+
+ least three years, to give the same user the materials
+
+ specified in Subsection 6a, above, for a charge no more
+
+ than the cost of performing this distribution.
+
+
+ d) If distribution of the work is made by offering access to copy
+
+ from a designated place, offer equivalent access to copy the above
+
+ specified materials from the same place.
+
+
+ e) Verify that the user has already received a copy of these
+
+ materials or that you have already sent this user a copy.
+
+
+ For an executable, the required form of the "work that uses the
+
+Library" must include any data and utility programs needed for
+
+reproducing the executable from it. However, as a special exception,
+
+the materials to be distributed need not include anything that is
+
+normally distributed (in either source or binary form) with the major
+
+components (compiler, kernel, and so on) of the operating system on
+
+which the executable runs, unless that component itself accompanies
+
+the executable.
+
+
+ It may happen that this requirement contradicts the license
+
+restrictions of other proprietary libraries that do not normally
+
+accompany the operating system. Such a contradiction means you cannot
+
+use both them and the Library together in an executable that you
+
+distribute.
+
+
+ 7. You may place library facilities that are a work based on the
+
+Library side-by-side in a single library together with other library
+
+facilities not covered by this License, and distribute such a combined
+
+library, provided that the separate distribution of the work based on
+
+the Library and of the other library facilities is otherwise
+
+permitted, and provided that you do these two things:
+
+
+ a) Accompany the combined library with a copy of the same work
+
+ based on the Library, uncombined with any other library
+
+ facilities. This must be distributed under the terms of the
+
+ Sections above.
+
+
+ b) Give prominent notice with the combined library of the fact
+
+ that part of it is a work based on the Library, and explaining
+
+ where to find the accompanying uncombined form of the same work.
+
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+
+the Library except as expressly provided under this License. Any
+
+attempt otherwise to copy, modify, sublicense, link with, or
+
+distribute the Library is void, and will automatically terminate your
+
+rights under this License. However, parties who have received copies,
+
+or rights, from you under this License will not have their licenses
+
+terminated so long as such parties remain in full compliance.
+
+
+ 9. You are not required to accept this License, since you have not
+
+signed it. However, nothing else grants you permission to modify or
+
+distribute the Library or its derivative works. These actions are
+
+prohibited by law if you do not accept this License. Therefore, by
+
+modifying or distributing the Library (or any work based on the
+
+Library), you indicate your acceptance of this License to do so, and
+
+all its terms and conditions for copying, distributing or modifying
+
+the Library or works based on it.
+
+
+ 10. Each time you redistribute the Library (or any work based on the
+
+Library), the recipient automatically receives a license from the
+
+original licensor to copy, distribute, link with or modify the Library
+
+subject to these terms and conditions. You may not impose any further
+
+restrictions on the recipients' exercise of the rights granted herein.
+
+You are not responsible for enforcing compliance by third parties with
+
+this License.
+
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+
+infringement or for any other reason (not limited to patent issues),
+
+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
+
+distribute so as to satisfy simultaneously your obligations under this
+
+License and any other pertinent obligations, then as a consequence you
+
+may not distribute the Library at all. For example, if a patent
+
+license would not permit royalty-free redistribution of the Library by
+
+all those who receive copies directly or indirectly through you, then
+
+the only way you could satisfy both it and this License would be to
+
+refrain entirely from distribution of the Library.
+
+
+If any portion of this section is held invalid or unenforceable under any
+
+particular circumstance, the balance of the section is intended to apply,
+
+and the section as a whole is intended to apply in other circumstances.
+
+
+It is not the purpose of this section to induce you to infringe any
+
+patents or other property right claims or to contest validity of any
+
+such claims; this section has the sole purpose of protecting the
+
+integrity of the free software distribution system which is
+
+implemented by public license practices. Many people have made
+
+generous contributions to the wide range of software distributed
+
+through that system in reliance on consistent application of that
+
+system; it is up to the author/donor to decide if he or she is willing
+
+to distribute software through any other system and a licensee cannot
+
+impose that choice.
+
+
+This section is intended to make thoroughly clear what is believed to
+
+be a consequence of the rest of this License.
+
+
+ 12. If the distribution and/or use of the Library is restricted in
+
+certain countries either by patents or by copyrighted interfaces, the
+
+original copyright holder who places the Library under this License may add
+
+an explicit geographical distribution limitation excluding those countries,
+
+so that distribution is permitted only in or among countries not thus
+
+excluded. In such case, this License incorporates the limitation as if
+
+written in the body of this License.
+
+
+ 13. The Free Software Foundation may publish revised and/or new
+
+versions of the Lesser 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 Library
+
+specifies a version number of this License which applies to it and
+
+"any later version", you have the option of following the terms and
+
+conditions either of that version or of any later version published by
+
+the Free Software Foundation. If the Library does not specify a
+
+license version number, you may choose any version ever published by
+
+the Free Software Foundation.
+
+
+ 14. If you wish to incorporate parts of the Library into other free
+
+programs whose distribution conditions are incompatible with these,
+
+write to the author to ask for permission. For software which is
+
+copyrighted by the Free Software Foundation, write to the Free
+
+Software Foundation; we sometimes make exceptions for this. Our
+
+decision will be guided by the two goals of preserving the free status
+
+of all derivatives of our free software and of promoting the sharing
+
+and reuse of software generally.
+
+
+ NO WARRANTY
+
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+
+OTHER PARTIES PROVIDE THE LIBRARY "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
+
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+
+AND/OR REDISTRIBUTE THE LIBRARY 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
+
+LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+
+DAMAGES.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ How to Apply These Terms to Your New Libraries
+
+
+ If you develop a new library, and you want it to be of the greatest
+
+possible use to the public, we recommend making it free software that
+
+everyone can redistribute and change. You can do so by permitting
+
+redistribution under these terms (or, alternatively, under the terms of the
+
+ordinary General Public License).
+
+
+ To apply these terms, attach the following notices to the library. It is
+
+safest to attach them to the start of each source file to most effectively
+
+convey the exclusion of warranty; and each file should have at least the
+
+"copyright" line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This library is free software; you can redistribute it and/or
+
+ modify it under the terms of the GNU Lesser General Public
+
+ License as published by the Free Software Foundation; either
+
+ version 2.1 of the License, or (at your option) any later version.
+
+
+ This library 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
+
+ Lesser General Public License for more details.
+
+
+ You should have received a copy of the GNU Lesser General Public
+
+ License along with this library; if not, write to the Free Software
+
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+You should also get your employer (if you work as a programmer) or your
+
+school, if any, to sign a "copyright disclaimer" for the library, if
+
+necessary. Here is a sample; alter the names:
+
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+
+ , 1 April 1990
+
+ Ty Coon, President of Vice
+
+
+Copyright (c) 1993-2008 Ken Martin, Will Schroeder, Bill Lorensen
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ * Neither name of Ken Martin, Will Schroeder, or Bill Lorensen nor the names
+
+ of any contributors may be used to endorse or promote products derived
+
+ from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Permission to use, copy, modify, and distribute this software and its
+
+documentation for any purpose and without fee is hereby granted,
+
+provided that the above copyright notice appear in all copies and that
+
+both that copyright notice and this permission notice appear in
+
+supporting documentation.
+
+
+NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
+
+SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+
+AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY
+
+SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+
+WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
+
+OR PERFORMANCE OF THIS SOFTWARE.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+* The name of the author may be used to endorse or promote products
+
+ derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+
+THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+Mesa 3-D graphics library
+
+
+Version: 7.0
+
+
+Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a
+
+copy of this software and associated documentation files (the "Software"),
+
+to deal in the Software without restriction, including without limitation
+
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+
+and/or sell copies of the Software, and to permit persons to whom the
+
+Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included
+
+in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+
+BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+Copyright (c) 2007 The Khronos Group Inc.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a
+
+copy of this software and/or associated documentation files (the
+
+"Materials"), to deal in the Materials without restriction, including
+
+without limitation the rights to use, copy, modify, merge, publish,
+
+distribute, sublicense, and/or sell copies of the Materials, and to
+
+permit persons to whom the Materials are furnished to do so, subject to
+
+the following conditions:
+
+
+The above copyright notice and this permission notice shall be included
+
+in all copies or substantial portions of the Materials.
+
+
+THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
+
+
+Copyright (c) 2015, University of Southern California
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of University of Southern California, nor the
+
+ names of its contributors may be used to endorse or promote products
+
+ derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF SOUTHERN CALIFORNIA ``AS IS'' AND ANY
+
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF SOUTHERN CALIFORNIA BE LIABLE FOR ANY
+
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Copyright (c) 2009, Massachusetts Institute of Technology
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Massachusetts Institute of Technology, nor the
+
+ names of its contributors may be used to endorse or promote products
+
+ derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY MASSACHUSETTS INSTITUTE OF TECHNOLOGY ``AS IS'' AND ANY
+
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL MASSACHUSETTS INSTITUTE OF TECHNOLOGY BE LIABLE FOR ANY
+
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Copyright (c) 2007, Carnegie Mellon University
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of Carnegie Mellon University, nor the
+
+ names of its contributors may be used to endorse or promote products
+
+ derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND ANY
+
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY
+
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ The OpenSSL toolkit stays under a double license, i.e. both the conditions of
+
+ the OpenSSL License and the original SSLeay license apply to the toolkit.
+
+ See below for the actual license texts.
+
+
+ OpenSSL License
+
+ ---------------
+
+
+/* ====================================================================
+
+ * Copyright (c) 1998-2017 The OpenSSL Project. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ *
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ *
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in
+
+ * the documentation and/or other materials provided with the
+
+ * distribution.
+
+ *
+
+ * 3. All advertising materials mentioning features or use of this
+
+ * software must display the following acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
+
+ *
+
+ * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
+
+ * endorse or promote products derived from this software without
+
+ * prior written permission. For written permission, please contact
+
+ * openssl-core@openssl.org.
+
+ *
+
+ * 5. Products derived from this software may not be called "OpenSSL"
+
+ * nor may "OpenSSL" appear in their names without prior written
+
+ * permission of the OpenSSL Project.
+
+ *
+
+ * 6. Redistributions of any form whatsoever must retain the following
+
+ * acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
+
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
+
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ * ====================================================================
+
+ *
+
+ * This product includes cryptographic software written by Eric Young
+
+ * (eay@cryptsoft.com). This product includes software written by Tim
+
+ * Hudson (tjh@cryptsoft.com).
+
+ *
+
+ */
+
+
+ Original SSLeay License
+
+ -----------------------
+
+
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
+
+ * All rights reserved.
+
+ *
+
+ * This package is an SSL implementation written
+
+ * by Eric Young (eay@cryptsoft.com).
+
+ * The implementation was written so as to conform with Netscapes SSL.
+
+ *
+
+ * This library is free for commercial and non-commercial use as long as
+
+ * the following conditions are aheared to. The following conditions
+
+ * apply to all code found in this distribution, be it the RC4, RSA,
+
+ * lhash, DES, etc., code; not just the SSL code. The SSL documentation
+
+ * included with this distribution is covered by the same copyright terms
+
+ * except that the holder is Tim Hudson (tjh@cryptsoft.com).
+
+ *
+
+ * Copyright remains Eric Young's, and as such any Copyright notices in
+
+ * the code are not to be removed.
+
+ * If this package is used in a product, Eric Young should be given attribution
+
+ * as the author of the parts of the library used.
+
+ * This can be in the form of a textual message at program startup or
+
+ * in documentation (online or textual) provided with the package.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. All advertising materials mentioning features or use of this software
+
+ * must display the following acknowledgement:
+
+ * "This product includes cryptographic software written by
+
+ * Eric Young (eay@cryptsoft.com)"
+
+ * The word 'cryptographic' can be left out if the rouines from the library
+
+ * being used are not cryptographic related :-).
+
+ * 4. If you include any Windows specific code (or a derivative thereof) from
+
+ * the apps directory (application code) you must include an acknowledgement:
+
+ * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
+
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ * SUCH DAMAGE.
+
+ *
+
+ * The licence and distribution terms for any publically available version or
+
+ * derivative of this code cannot be changed. i.e. this code cannot simply be
+
+ * copied and put under another distribution licence
+
+ * [including the GNU Public Licence.]
+
+ */
+
+
+Copyright (c) 2010-2017 Google, Inc. http://angularjs.org
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+
+this software and associated documentation files (the "Software"), to deal in
+
+the Software without restriction, including without limitation the rights to
+
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+
+the Software, and to permit persons to whom the Software is furnished to do so,
+
+subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Flask License
+
+Copyright (c) 2015 by Armin Ronacher and contributors. See AUTHORS for more details.
+
+
+Some rights reserved.
+
+
+Redistribution and use in source and binary forms of the software as well as documentation, with or without modification, are permitted provided that the following conditions are met:
+
+
+Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Copyright JS Foundation and other contributors, https://js.foundation/
+
+
+This software consists of voluntary contributions made by many
+
+individuals. For exact contribution history, see the revision history
+
+available at https://github.com/jquery/jquery
+
+
+The following license applies to all parts of this software except as
+
+documented below:
+
+
+====
+
+
+Permission is hereby granted, free of charge, to any person obtaining
+
+a copy of this software and associated documentation files (the
+
+"Software"), to deal in the Software without restriction, including
+
+without limitation the rights to use, copy, modify, merge, publish,
+
+distribute, sublicense, and/or sell copies of the Software, and to
+
+permit persons to whom the Software is furnished to do so, subject to
+
+the following conditions:
+
+
+The above copyright notice and this permission notice shall be
+
+included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+====
+
+
+All files located in the node_modules and external directories are
+
+externally maintained libraries used by this software which have their
+
+own licenses; we recommend you read them, as their terms may differ from
+
+the terms above.
+
+
+Licensing terms affecting the use, copying, distribution, and modification of Dakota and its related Dakota GUI are summarized here. These terms potentially affect contributions submitted for inclusion in the Dakota project; please review the terms of contribution before authoring.
+
+
+Dakota GUI
+
+
+Dakota Graphical User Interface (Dakota GUI): Copyright 2017 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the Eclipse Public License.
+
+Dakota Graphical User Interface includes components from the Sandia Analysis Workbench Integration Framework:
+
+Sandia Analysis Workbench Integration Framework (SAW): Copyright 2017 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This software is distributed under the Eclipse Public License.
+
+For a complete list of related licenses of third-party libraries used by the Dakota GUI, see the LICENSE.txt file distributed alongside the GUI.
+
+Dakota
+
+
+Dakota versions 5.0 and newer are available under a GNU Lesser General Public License (LGPL). Dakota distributions include third-party software packages, each of which have their own (LGPL-compatible) licensing terms. For a summary see the top-level README file in the Dakota distribution.
+
+Dakota versions 3.0 through 4.2+ are available under a GNU General Public License (GPL).
+
+
+ Apache License
+
+ Version 2.0, January 2004
+
+ http://www.apache.org/licenses/
+
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+
+ 1. Definitions.
+
+
+ "License" shall mean the terms and conditions for use, reproduction,
+
+ and distribution as defined by Sections 1 through 9 of this document.
+
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+
+ the copyright owner that is granting the License.
+
+
+ "Legal Entity" shall mean the union of the acting entity and all
+
+ other entities that control, are controlled by, or are under common
+
+ control with that entity. For the purposes of this definition,
+
+ "control" means (i) the power, direct or indirect, to cause the
+
+ direction or management of such entity, whether by contract or
+
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+
+ exercising permissions granted by this License.
+
+
+ "Source" form shall mean the preferred form for making modifications,
+
+ including but not limited to software source code, documentation
+
+ source, and configuration files.
+
+
+ "Object" form shall mean any form resulting from mechanical
+
+ transformation or translation of a Source form, including but
+
+ not limited to compiled object code, generated documentation,
+
+ and conversions to other media types.
+
+
+ "Work" shall mean the work of authorship, whether in Source or
+
+ Object form, made available under the License, as indicated by a
+
+ copyright notice that is included in or attached to the work
+
+ (an example is provided in the Appendix below).
+
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+
+ form, that is based on (or derived from) the Work and for which the
+
+ editorial revisions, annotations, elaborations, or other modifications
+
+ represent, as a whole, an original work of authorship. For the purposes
+
+ of this License, Derivative Works shall not include works that remain
+
+ separable from, or merely link (or bind by name) to the interfaces of,
+
+ the Work and Derivative Works thereof.
+
+
+ "Contribution" shall mean any work of authorship, including
+
+ the original version of the Work and any modifications or additions
+
+ to that Work or Derivative Works thereof, that is intentionally
+
+ submitted to Licensor for inclusion in the Work by the copyright owner
+
+ or by an individual or Legal Entity authorized to submit on behalf of
+
+ the copyright owner. For the purposes of this definition, "submitted"
+
+ means any form of electronic, verbal, or written communication sent
+
+ to the Licensor or its representatives, including but not limited to
+
+ communication on electronic mailing lists, source code control systems,
+
+ and issue tracking systems that are managed by, or on behalf of, the
+
+ Licensor for the purpose of discussing and improving the Work, but
+
+ excluding communication that is conspicuously marked or otherwise
+
+ designated in writing by the copyright owner as "Not a Contribution."
+
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+
+ on behalf of whom a Contribution has been received by Licensor and
+
+ subsequently incorporated within the Work.
+
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ copyright license to reproduce, prepare Derivative Works of,
+
+ publicly display, publicly perform, sublicense, and distribute the
+
+ Work and such Derivative Works in Source or Object form.
+
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ (except as stated in this section) patent license to make, have made,
+
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+
+ where such license applies only to those patent claims licensable
+
+ by such Contributor that are necessarily infringed by their
+
+ Contribution(s) alone or by combination of their Contribution(s)
+
+ with the Work to which such Contribution(s) was submitted. If You
+
+ institute patent litigation against any entity (including a
+
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+
+ or a Contribution incorporated within the Work constitutes direct
+
+ or contributory patent infringement, then any patent licenses
+
+ granted to You under this License for that Work shall terminate
+
+ as of the date such litigation is filed.
+
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+
+ Work or Derivative Works thereof in any medium, with or without
+
+ modifications, and in Source or Object form, provided that You
+
+ meet the following conditions:
+
+
+ (a) You must give any other recipients of the Work or
+
+ Derivative Works a copy of this License; and
+
+
+ (b) You must cause any modified files to carry prominent notices
+
+ stating that You changed the files; and
+
+
+ (c) You must retain, in the Source form of any Derivative Works
+
+ that You distribute, all copyright, patent, trademark, and
+
+ attribution notices from the Source form of the Work,
+
+ excluding those notices that do not pertain to any part of
+
+ the Derivative Works; and
+
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+
+ distribution, then any Derivative Works that You distribute must
+
+ include a readable copy of the attribution notices contained
+
+ within such NOTICE file, excluding those notices that do not
+
+ pertain to any part of the Derivative Works, in at least one
+
+ of the following places: within a NOTICE text file distributed
+
+ as part of the Derivative Works; within the Source form or
+
+ documentation, if provided along with the Derivative Works; or,
+
+ within a display generated by the Derivative Works, if and
+
+ wherever such third-party notices normally appear. The contents
+
+ of the NOTICE file are for informational purposes only and
+
+ do not modify the License. You may add Your own attribution
+
+ notices within Derivative Works that You distribute, alongside
+
+ or as an addendum to the NOTICE text from the Work, provided
+
+ that such additional attribution notices cannot be construed
+
+ as modifying the License.
+
+
+ You may add Your own copyright statement to Your modifications and
+
+ may provide additional or different license terms and conditions
+
+ for use, reproduction, or distribution of Your modifications, or
+
+ for any such Derivative Works as a whole, provided Your use,
+
+ reproduction, and distribution of the Work otherwise complies with
+
+ the conditions stated in this License.
+
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+
+ any Contribution intentionally submitted for inclusion in the Work
+
+ by You to the Licensor shall be under the terms and conditions of
+
+ this License, without any additional terms or conditions.
+
+ Notwithstanding the above, nothing herein shall supersede or modify
+
+ the terms of any separate license agreement you may have executed
+
+ with Licensor regarding such Contributions.
+
+
+ 6. Trademarks. This License does not grant permission to use the trade
+
+ names, trademarks, service marks, or product names of the Licensor,
+
+ except as required for reasonable and customary use in describing the
+
+ origin of the Work and reproducing the content of the NOTICE file.
+
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+
+ agreed to in writing, Licensor provides the Work (and each
+
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+
+ implied, including, without limitation, any warranties or conditions
+
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+
+ appropriateness of using or redistributing the Work and assume any
+
+ risks associated with Your exercise of permissions under this License.
+
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+
+ whether in tort (including negligence), contract, or otherwise,
+
+ unless required by applicable law (such as deliberate and grossly
+
+ negligent acts) or agreed to in writing, shall any Contributor be
+
+ liable to You for damages, including any direct, indirect, special,
+
+ incidental, or consequential damages of any character arising as a
+
+ result of this License or out of the use or inability to use the
+
+ Work (including but not limited to damages for loss of goodwill,
+
+ work stoppage, computer failure or malfunction, or any and all
+
+ other commercial damages or losses), even if such Contributor
+
+ has been advised of the possibility of such damages.
+
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+
+ the Work or Derivative Works thereof, You may choose to offer,
+
+ and charge a fee for, acceptance of support, warranty, indemnity,
+
+ or other liability obligations and/or rights consistent with this
+
+ License. However, in accepting such obligations, You may act only
+
+ on Your own behalf and on Your sole responsibility, not on behalf
+
+ of any other Contributor, and only if You agree to indemnify,
+
+ defend, and hold each Contributor harmless for any liability
+
+ incurred by, or claims asserted against, such Contributor by reason
+
+ of your accepting any such warranty or additional liability.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ APPENDIX: How to apply the Apache License to your work.
+
+
+ To apply the Apache License to your work, attach the following
+
+ boilerplate notice, with the fields enclosed by brackets "[]"
+
+ replaced with your own identifying information. (Don't include
+
+ the brackets!) The text should be enclosed in the appropriate
+
+ comment syntax for the file format. We also recommend that a
+
+ file or class name and description of purpose be included on the
+
+ same "printed page" as the copyright notice for easier
+
+ identification within third-party archives.
+
+
+ Copyright [yyyy] [name of copyright owner]
+
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+
+ you may not use this file except in compliance with the License.
+
+ You may obtain a copy of the License at
+
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+
+ Unless required by applicable law or agreed to in writing, software
+
+ distributed under the License is distributed on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+ See the License for the specific language governing permissions and
+
+ limitations under the License.
+
+
+--------------------------------------------------
+
+SOFTWARE DISTRIBUTED WITH THRIFT:
+
+
+The Apache Thrift software includes a number of subcomponents with
+
+separate copyright notices and license terms. Your use of the source
+
+code for the these subcomponents is subject to the terms and
+
+conditions of the following licenses.
+
+
+--------------------------------------------------
+
+Portions of the following files are licensed under the MIT License:
+
+
+ lib/erl/src/Makefile.am
+
+
+Please see doc/otp-base-license.txt for the full terms of this license.
+
+
+--------------------------------------------------
+
+For the aclocal/ax_boost_base.m4 and contrib/fb303/aclocal/ax_boost_base.m4 components:
+
+
+# Copyright (c) 2007 Thomas Porschberg
+
+#
+
+# Copying and distribution of this file, with or without
+
+# modification, are permitted in any medium without royalty provided
+
+# the copyright notice and this notice are preserved.
+
+
+--------------------------------------------------
+
+For the lib/nodejs/lib/thrift/json_parse.js:
+
+
+/*
+
+ json_parse.js
+
+ 2015-05-02
+
+ Public Domain.
+
+ NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
+
+
+*/
+
+(By Douglas Crockford )
+
+--------------------------------------------------
+
+
+// Copyright (c) 2008-2013 Marshall A. Greenblatt. Portions Copyright (c)
+
+// 2006-2009 Google Inc. All rights reserved.
+
+//
+
+// Redistribution and use in source and binary forms, with or without
+
+// modification, are permitted provided that the following conditions are
+
+// met:
+
+//
+
+// * Redistributions of source code must retain the above copyright
+
+// notice, this list of conditions and the following disclaimer.
+
+// * Redistributions in binary form must reproduce the above
+
+// copyright notice, this list of conditions and the following disclaimer
+
+// in the documentation and/or other materials provided with the
+
+// distribution.
+
+// * Neither the name of Google Inc. nor the name Chromium Embedded
+
+// Framework nor the names of its contributors may be used to endorse
+
+// or promote products derived from this software without specific prior
+
+// written permission.
+
+//
+
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions:
+
+"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
+
+
+"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
+
+
+"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
+
+
+"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
+
+
+"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
+
+
+"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
+
+
+"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
+
+
+"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
+
+
+"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
+
+
+2. Grant of Copyright License: Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
+
+
+3. Grant of Patent License: Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
+
+
+4. Redistribution: You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
+
+You must give any other recipients of the Work or Derivative Works a copy of this License; and
+
+You must cause any modified files to carry prominent notices stating that You changed the files; and
+
+You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
+
+If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
+
+You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
+
+
+5. Submission of Contributions: Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
+
+
+6. Trademarks: This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
+
+
+7. Disclaimer of Warranty: Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
+
+
+8. Limitation of Liability: In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
+
+
+9. Accepting Warranty or Additional Liability: While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to
+
+deal in the Software without restriction, including without limitation the
+
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+
+sell copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+
+IN THE SOFTWARE.
+
+
+Copyright (c) 1996 - 2018, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file.
+
+
+All rights reserved.
+
+
+Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
+
+
Netgen version 6.2
+ GNU LESSER GENERAL PUBLIC LICENSE
+
+ Version 2.1, February 1999
+
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+[This is the first released version of the Lesser GPL. It also counts
+
+ as the successor of the GNU Library Public License, version 2, hence
+
+ the version number 2.1.]
+
+
+ Preamble
+
+
+ The licenses for most software are designed to take away your
+
+freedom to share and change it. By contrast, the GNU General Public
+
+Licenses are intended to guarantee your freedom to share and change
+
+free software--to make sure the software is free for all its users.
+
+
+ This license, the Lesser General Public License, applies to some
+
+specially designated software packages--typically libraries--of the
+
+Free Software Foundation and other authors who decide to use it. You
+
+can use it too, but we suggest you first think carefully about whether
+
+this license or the ordinary General Public License is the better
+
+strategy to use in any particular case, based on the explanations below.
+
+
+ When we speak of free software, we are referring to freedom of use,
+
+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 this service if you wish); that you receive source code or can get
+
+it if you want it; that you can change the software and use pieces of
+
+it in new free programs; and that you are informed that you can do
+
+these things.
+
+
+ To protect your rights, we need to make restrictions that forbid
+
+distributors to deny you these rights or to ask you to surrender these
+
+rights. These restrictions translate to certain responsibilities for
+
+you if you distribute copies of the library or if you modify it.
+
+
+ For example, if you distribute copies of the library, whether gratis
+
+or for a fee, you must give the recipients all the rights that we gave
+
+you. You must make sure that they, too, receive or can get the source
+
+code. If you link other code with the library, you must provide
+
+complete object files to the recipients, so that they can relink them
+
+with the library after making changes to the library and recompiling
+
+it. And you must show them these terms so they know their rights.
+
+
+ We protect your rights with a two-step method: (1) we copyright the
+
+library, and (2) we offer you this license, which gives you legal
+
+permission to copy, distribute and/or modify the library.
+
+
+ To protect each distributor, we want to make it very clear that
+
+there is no warranty for the free library. Also, if the library is
+
+modified by someone else and passed on, the recipients should know
+
+that what they have is not the original version, so that the original
+
+author's reputation will not be affected by problems that might be
+
+introduced by others.
+
+
+ Finally, software patents pose a constant threat to the existence of
+
+any free program. We wish to make sure that a company cannot
+
+effectively restrict the users of a free program by obtaining a
+
+restrictive license from a patent holder. Therefore, we insist that
+
+any patent license obtained for a version of the library must be
+
+consistent with the full freedom of use specified in this license.
+
+
+ Most GNU software, including some libraries, is covered by the
+
+ordinary GNU General Public License. This license, the GNU Lesser
+
+General Public License, applies to certain designated libraries, and
+
+is quite different from the ordinary General Public License. We use
+
+this license for certain libraries in order to permit linking those
+
+libraries into non-free programs.
+
+
+ When a program is linked with a library, whether statically or using
+
+a shared library, the combination of the two is legally speaking a
+
+combined work, a derivative of the original library. The ordinary
+
+General Public License therefore permits such linking only if the
+
+entire combination fits its criteria of freedom. The Lesser General
+
+Public License permits more lax criteria for linking other code with
+
+the library.
+
+
+ We call this license the "Lesser" General Public License because it
+
+does Less to protect the user's freedom than the ordinary General
+
+Public License. It also provides other free software developers Less
+
+of an advantage over competing non-free programs. These disadvantages
+
+are the reason we use the ordinary General Public License for many
+
+libraries. However, the Lesser license provides advantages in certain
+
+special circumstances.
+
+
+ For example, on rare occasions, there may be a special need to
+
+encourage the widest possible use of a certain library, so that it becomes
+
+a de-facto standard. To achieve this, non-free programs must be
+
+allowed to use the library. A more frequent case is that a free
+
+library does the same job as widely used non-free libraries. In this
+
+case, there is little to gain by limiting the free library to free
+
+software only, so we use the Lesser General Public License.
+
+
+ In other cases, permission to use a particular library in non-free
+
+programs enables a greater number of people to use a large body of
+
+free software. For example, permission to use the GNU C Library in
+
+non-free programs enables many more people to use the whole GNU
+
+operating system, as well as its variant, the GNU/Linux operating
+
+system.
+
+
+ Although the Lesser General Public License is Less protective of the
+
+users' freedom, it does ensure that the user of a program that is
+
+linked with the Library has the freedom and the wherewithal to run
+
+that program using a modified version of the Library.
+
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow. Pay close attention to the difference between a
+
+"work based on the library" and a "work that uses the library". The
+
+former contains code derived from the library, whereas the latter must
+
+be combined with the library in order to run.
+
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+
+ 0. This License Agreement applies to any software library or other
+
+program which contains a notice placed by the copyright holder or
+
+other authorized party saying it may be distributed under the terms of
+
+this Lesser General Public License (also called "this License").
+
+Each licensee is addressed as "you".
+
+
+ A "library" means a collection of software functions and/or data
+
+prepared so as to be conveniently linked with application programs
+
+(which use some of those functions and data) to form executables.
+
+
+ The "Library", below, refers to any such software library or work
+
+which has been distributed under these terms. A "work based on the
+
+Library" means either the Library or any derivative work under
+
+copyright law: that is to say, a work containing the Library or a
+
+portion of it, either verbatim or with modifications and/or translated
+
+straightforwardly into another language. (Hereinafter, translation is
+
+included without limitation in the term "modification".)
+
+
+ "Source code" for a work means the preferred form of the work for
+
+making modifications to it. For a library, complete source code means
+
+all the source code for all modules it contains, plus any associated
+
+interface definition files, plus the scripts used to control compilation
+
+and installation of the library.
+
+
+ Activities other than copying, distribution and modification are not
+
+covered by this License; they are outside its scope. The act of
+
+running a program using the Library is not restricted, and output from
+
+such a program is covered only if its contents constitute a work based
+
+on the Library (independent of the use of the Library in a tool for
+
+writing it). Whether that is true depends on what the Library does
+
+and what the program that uses the Library does.
+
+
+ 1. You may copy and distribute verbatim copies of the Library's
+
+complete source code as you receive it, in any medium, provided that
+
+you conspicuously and appropriately publish on each copy an
+
+appropriate copyright notice and disclaimer of warranty; keep intact
+
+all the notices that refer to this License and to the absence of any
+
+warranty; and distribute a copy of this License along with the
+
+Library.
+
+
+ You may charge a fee for the physical act of transferring a copy,
+
+and you may at your option offer warranty protection in exchange for a
+
+fee
+
+
+ 2. You may modify your copy or copies of the Library or any portion
+
+of it, thus forming a work based on the Library, and copy and
+
+distribute such modifications or work under the terms of Section 1
+
+above, provided that you also meet all of these conditions:
+
+
+ a) The modified work must itself be a software library.
+
+
+ b) You must cause the files modified to carry prominent notices
+
+ stating that you changed the files and the date of any change.
+
+
+ c) You must cause the whole of the work to be licensed at no
+
+ charge to all third parties under the terms of this License.
+
+
+ d) If a facility in the modified Library refers to a function or a
+
+ table of data to be supplied by an application program that uses
+
+ the facility, other than as an argument passed when the facility
+
+ is invoked, then you must make a good faith effort to ensure that,
+
+ in the event an application does not supply such function or
+
+ table, the facility still operates, and performs whatever part of
+
+ its purpose remains meaningful.
+
+
+ (For example, a function in a library to compute square roots has
+
+ a purpose that is entirely well-defined independent of the
+
+ application. Therefore, Subsection 2d requires that any
+
+ application-supplied function or table used by this function must
+
+ be optional: if the application does not supply it, the square
+
+ root function must still compute square roots.)
+
+
+These requirements apply to the modified work as a whole. If
+
+identifiable sections of that work are not derived from the Library,
+
+and can be reasonably considered independent and separate works in
+
+themselves, then this License, and its terms, do not apply to those
+
+sections when you distribute them as separate works. But when you
+
+distribute the same sections as part of a whole which is a work based
+
+on the Library, the distribution of the whole must be on the terms of
+
+this License, whose permissions for other licensees extend to the
+
+entire whole, and thus to each and every part regardless of who wrote
+
+it.
+
+
+Thus, it is not the intent of this section to claim rights or contest
+
+your rights to work written entirely by you; rather, the intent is to
+
+exercise the right to control the distribution of derivative or
+
+collective works based on the Library.
+
+
+In addition, mere aggregation of another work not based on the Library
+
+with the Library (or with a work based on the Library) on a volume of
+
+a storage or distribution medium does not bring the other work under
+
+the scope of this License.
+
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+
+License instead of this License to a given copy of the Library. To do
+
+this, you must alter all the notices that refer to this License, so
+
+that they refer to the ordinary GNU General Public License, version 2,
+
+instead of to this License. (If a newer version than version 2 of the
+
+ordinary GNU General Public License has appeared, then you can specify
+
+that version instead if you wish.) Do not make any other change in
+
+these notices.
+
+
+ Once this change is made in a given copy, it is irreversible for
+
+that copy, so the ordinary GNU General Public License applies to all
+
+subsequent copies and derivative works made from that copy.
+
+
+ This option is useful when you wish to copy part of the code of
+
+the Library into a program that is not a library.
+
+
+ 4. You may copy and distribute the Library (or a portion or
+
+derivative of it, under Section 2) in object code or executable form
+
+under the terms of Sections 1 and 2 above provided that you accompany
+
+it with the complete corresponding machine-readable source code, which
+
+must be distributed under the terms of Sections 1 and 2 above on a
+
+medium customarily used for software interchange.
+
+
+ If distribution of object code is made by offering access to copy
+
+from a designated place, then offering equivalent access to copy the
+
+source code from the same place satisfies the requirement to
+
+distribute the source code, even though third parties are not
+
+compelled to copy the source along with the object code.
+
+
+ 5. A program that contains no derivative of any portion of the
+
+Library, but is designed to work with the Library by being compiled or
+
+linked with it, is called a "work that uses the Library". Such a
+
+work, in isolation, is not a derivative work of the Library, and
+
+therefore falls outside the scope of this License.
+
+
+ However, linking a "work that uses the Library" with the Library
+
+creates an executable that is a derivative of the Library (because it
+
+contains portions of the Library), rather than a "work that uses the
+
+library". The executable is therefore covered by this License.
+
+Section 6 states terms for distribution of such executables.
+
+
+ When a "work that uses the Library" uses material from a header file
+
+that is part of the Library, the object code for the work may be a
+
+derivative work of the Library even though the source code is not.
+
+Whether this is true is especially significant if the work can be
+
+linked without the Library, or if the work is itself a library. The
+
+threshold for this to be true is not precisely defined by law.
+
+
+ If such an object file uses only numerical parameters, data
+
+structure layouts and accessors, and small macros and small inline
+
+functions (ten lines or less in length), then the use of the object
+
+file is unrestricted, regardless of whether it is legally a derivative
+
+work. (Executables containing this object code plus portions of the
+
+Library will still fall under Section 6.)
+
+
+ Otherwise, if the work is a derivative of the Library, you may
+
+distribute the object code for the work under the terms of Section 6.
+
+Any executables containing that work also fall under Section 6,
+
+whether or not they are linked directly with the Library itself.
+
+
+ 6. As an exception to the Sections above, you may also combine or
+
+link a "work that uses the Library" with the Library to produce a
+
+work containing portions of the Library, and distribute that work
+
+under terms of your choice, provided that the terms permit
+
+modification of the work for the customer's own use and reverse
+
+engineering for debugging such modifications.
+
+
+ You must give prominent notice with each copy of the work that the
+
+Library is used in it and that the Library and its use are covered by
+
+this License. You must supply a copy of this License. If the work
+
+during execution displays copyright notices, you must include the
+
+copyright notice for the Library among them, as well as a reference
+
+directing the user to the copy of this License. Also, you must do one
+
+of these things:
+
+
+ a) Accompany the work with the complete corresponding
+
+ machine-readable source code for the Library including whatever
+
+ changes were used in the work (which must be distributed under
+
+ Sections 1 and 2 above); and, if the work is an executable linked
+
+ with the Library, with the complete machine-readable "work that
+
+ uses the Library", as object code and/or source code, so that the
+
+ user can modify the Library and then relink to produce a modified
+
+ executable containing the modified Library. (It is understood
+
+ that the user who changes the contents of definitions files in the
+
+ Library will not necessarily be able to recompile the application
+
+ to use the modified definitions.)
+
+
+ b) Use a suitable shared library mechanism for linking with the
+
+ Library. A suitable mechanism is one that (1) uses at run time a
+
+ copy of the library already present on the user's computer system,
+
+ rather than copying library functions into the executable, and (2)
+
+ will operate properly with a modified version of the library, if
+
+ the user installs one, as long as the modified version is
+
+ interface-compatible with the version that the work was made with.
+
+
+ c) Accompany the work with a written offer, valid for at
+
+ least three years, to give the same user the materials
+
+ specified in Subsection 6a, above, for a charge no more
+
+ than the cost of performing this distribution.
+
+
+ d) If distribution of the work is made by offering access to copy
+
+ from a designated place, offer equivalent access to copy the above
+
+ specified materials from the same place.
+
+
+ e) Verify that the user has already received a copy of these
+
+ materials or that you have already sent this user a copy.
+
+
+ For an executable, the required form of the "work that uses the
+
+Library" must include any data and utility programs needed for
+
+reproducing the executable from it. However, as a special exception,
+
+the materials to be distributed need not include anything that is
+
+normally distributed (in either source or binary form) with the major
+
+components (compiler, kernel, and so on) of the operating system on
+
+which the executable runs, unless that component itself accompanies
+
+the executable.
+
+
+ It may happen that this requirement contradicts the license
+
+restrictions of other proprietary libraries that do not normally
+
+accompany the operating system. Such a contradiction means you cannot
+
+use both them and the Library together in an executable that you
+
+distribute.
+
+
+ 7. You may place library facilities that are a work based on the
+
+Library side-by-side in a single library together with other library
+
+facilities not covered by this License, and distribute such a combined
+
+library, provided that the separate distribution of the work based on
+
+the Library and of the other library facilities is otherwise
+
+permitted, and provided that you do these two things:
+
+
+ a) Accompany the combined library with a copy of the same work
+
+ based on the Library, uncombined with any other library
+
+ facilities. This must be distributed under the terms of the
+
+ Sections above.
+
+
+ b) Give prominent notice with the combined library of the fact
+
+ that part of it is a work based on the Library, and explaining
+
+ where to find the accompanying uncombined form of the same work.
+
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+
+the Library except as expressly provided under this License. Any
+
+attempt otherwise to copy, modify, sublicense, link with, or
+
+distribute the Library is void, and will automatically terminate your
+
+rights under this License. However, parties who have received copies,
+
+or rights, from you under this License will not have their licenses
+
+terminated so long as such parties remain in full compliance.
+
+
+ 9. You are not required to accept this License, since you have not
+
+signed it. However, nothing else grants you permission to modify or
+
+distribute the Library or its derivative works. These actions are
+
+prohibited by law if you do not accept this License. Therefore, by
+
+modifying or distributing the Library (or any work based on the
+
+Library), you indicate your acceptance of this License to do so, and
+
+all its terms and conditions for copying, distributing or modifying
+
+the Library or works based on it.
+
+
+ 10. Each time you redistribute the Library (or any work based on the
+
+Library), the recipient automatically receives a license from the
+
+original licensor to copy, distribute, link with or modify the Library
+
+subject to these terms and conditions. You may not impose any further
+
+restrictions on the recipients' exercise of the rights granted herein.
+
+You are not responsible for enforcing compliance by third parties with
+
+this License.
+
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+
+infringement or for any other reason (not limited to patent issues),
+
+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
+
+distribute so as to satisfy simultaneously your obligations under this
+
+License and any other pertinent obligations, then as a consequence you
+
+may not distribute the Library at all. For example, if a patent
+
+license would not permit royalty-free redistribution of the Library by
+
+all those who receive copies directly or indirectly through you, then
+
+the only way you could satisfy both it and this License would be to
+
+refrain entirely from distribution of the Library.
+
+
+If any portion of this section is held invalid or unenforceable under any
+
+particular circumstance, the balance of the section is intended to apply,
+
+and the section as a whole is intended to apply in other circumstances.
+
+
+It is not the purpose of this section to induce you to infringe any
+
+patents or other property right claims or to contest validity of any
+
+such claims; this section has the sole purpose of protecting the
+
+integrity of the free software distribution system which is
+
+implemented by public license practices. Many people have made
+
+generous contributions to the wide range of software distributed
+
+through that system in reliance on consistent application of that
+
+system; it is up to the author/donor to decide if he or she is willing
+
+to distribute software through any other system and a licensee cannot
+
+impose that choice.
+
+
+This section is intended to make thoroughly clear what is believed to
+
+be a consequence of the rest of this License.
+
+
+ 12. If the distribution and/or use of the Library is restricted in
+
+certain countries either by patents or by copyrighted interfaces, the
+
+original copyright holder who places the Library under this License may add
+
+an explicit geographical distribution limitation excluding those countries,
+
+so that distribution is permitted only in or among countries not thus
+
+excluded. In such case, this License incorporates the limitation as if
+
+written in the body of this License.
+
+
+ 13. The Free Software Foundation may publish revised and/or new
+
+versions of the Lesser 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 Library
+
+specifies a version number of this License which applies to it and
+
+"any later version", you have the option of following the terms and
+
+conditions either of that version or of any later version published by
+
+the Free Software Foundation. If the Library does not specify a
+
+license version number, you may choose any version ever published by
+
+the Free Software Foundation.
+
+
+ 14. If you wish to incorporate parts of the Library into other free
+
+programs whose distribution conditions are incompatible with these,
+
+write to the author to ask for permission. For software which is
+
+copyrighted by the Free Software Foundation, write to the Free
+
+Software Foundation; we sometimes make exceptions for this. Our
+
+decision will be guided by the two goals of preserving the free status
+
+of all derivatives of our free software and of promoting the sharing
+
+and reuse of software generally.
+
+
+ NO WARRANTY
+
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+
+OTHER PARTIES PROVIDE THE LIBRARY "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
+
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+
+AND/OR REDISTRIBUTE THE LIBRARY 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
+
+LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+
+DAMAGES.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ How to Apply These Terms to Your New Libraries
+
+
+ If you develop a new library, and you want it to be of the greatest
+
+possible use to the public, we recommend making it free software that
+
+everyone can redistribute and change. You can do so by permitting
+
+redistribution under these terms (or, alternatively, under the terms of the
+
+ordinary General Public License).
+
+
+ To apply these terms, attach the following notices to the library. It is
+
+safest to attach them to the start of each source file to most effectively
+
+convey the exclusion of warranty; and each file should have at least the
+
+"copyright" line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This library is free software; you can redistribute it and/or
+
+ modify it under the terms of the GNU Lesser General Public
+
+ License as published by the Free Software Foundation; either
+
+ version 2.1 of the License, or (at your option) any later version.
+
+
+ This library 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
+
+ Lesser General Public License for more details.
+
+
+ You should have received a copy of the GNU Lesser General Public
+
+ License along with this library; if not, write to the Free Software
+
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+You should also get your employer (if you work as a programmer) or your
+
+school, if any, to sign a "copyright disclaimer" for the library, if
+
+necessary. Here is a sample; alter the names:
+
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+
+ , 1 April 1990
+
+ Ty Coon, President of Vice
+
+
+That's all there is to it!
+
+
+
+
Neuron version 7.8
+Copyright (c) 2014, Michael Hines
+
+All rights reserved.
+
+
+This Copyright refers to all files in this distribution that do not have
+
+an explicit Copyright notice. See:
+
+grep -r '\' *
+
+
+All files are intended to have a license compatible with the following
+
+"three clause" open source BSD license. Please notify
+
+michael.hines@yale.edu if you believe any file is not compatible with
+
+the "three clause" open source BSD license.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification are permitted provided that the following conditions are met:
+
+
+1. Redistributions of source code must retain the above copyright
+
+notice, this list of conditions, and the following disclaimer.
+
+
+2. Redistributions in binary form must reproduce the above copyright
+
+notice, this list of conditions, and the following disclaimer in the
+
+documentation and/or other materials provided with the distribution.
+
+
+3. Neither the name of the copyright holder nor the names of its
+
+contributors may be used to endorse or promote products derived from
+
+this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+
+IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+
+TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+
+PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+
+TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+
+PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON ANY THEORY OF
+
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
NLopt version 2.6.2
+NLopt License and Copyright
+
+The NLopt library is under the GNU Lesser General Public License (LGPL), and the copyrights are owned by a variety of authors.
+
+
+In general, the different code in NLopt comes from different sources, and have a variety of licenses. For example, all of the new code we wrote for NLopt is under the MIT License (which imposes essentially no practical restrictions, and is hence compatible with the LGPL). The combination of all of this software is under the conjunction of the license terms, and in particular they are limited by the most restrictive of the licenses for the portions, which in this case is the LGPL. (The other portions of NLopt are under LGPL-compatible, less-restrictive licenses like the MIT license. So, if you remove the LGPL portions, which are currently code by Ladislav Luksan, the remainder reverts to a looser license.)
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
NumPy version 1.8.0
+Copyright (c) 2005, NumPy Developers
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+ Neither the name of the NumPy Developers nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS �AS IS� AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OpenGL Extension Wrangler Library version 1.13.0
+The OpenGL Extension Wrangler Library
+
+
+Copyright (C) 2002-2008, Milan Ikits
+
+
+Copyright (C) 2002-2008, Marcelo E. Magallon
+
+
+Copyright (C) 2002, Lev Povalahev
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+* The name of the author may be used to endorse or promote products
+
+ derived from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+
+THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+Mesa 3-D graphics library
+
+
+Version: 7.0
+
+
+Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a
+
+copy of this software and associated documentation files (the "Software"),
+
+to deal in the Software without restriction, including without limitation
+
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+
+and/or sell copies of the Software, and to permit persons to whom the
+
+Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included
+
+in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+
+BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+Copyright (c) 2007 The Khronos Group Inc.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a
+
+copy of this software and/or associated documentation files (the
+
+"Materials"), to deal in the Materials without restriction, including
+
+without limitation the rights to use, copy, modify, merge, publish,
+
+distribute, sublicense, and/or sell copies of the Materials, and to
+
+permit persons to whom the Materials are furnished to do so, subject to
+
+the following conditions:
+
+
+The above copyright notice and this permission notice shall be included
+
+in all copies or substantial portions of the Materials.
+
+
+THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
+
+
OpenSSL version 1.02j
+
+ LICENSE ISSUES
+
+ ==============
+
+
+ The OpenSSL toolkit stays under a double license, i.e. both the conditions of
+
+ the OpenSSL License and the original SSLeay license apply to the toolkit.
+
+ See below for the actual license texts.
+
+
+ OpenSSL License
+
+ ---------------
+
+
+/* ====================================================================
+
+ * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ *
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ *
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in
+
+ * the documentation and/or other materials provided with the
+
+ * distribution.
+
+ *
+
+ * 3. All advertising materials mentioning features or use of this
+
+ * software must display the following acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
+
+ *
+
+ * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
+
+ * endorse or promote products derived from this software without
+
+ * prior written permission. For written permission, please contact
+
+ * openssl-core@openssl.org.
+
+ *
+
+ * 5. Products derived from this software may not be called "OpenSSL"
+
+ * nor may "OpenSSL" appear in their names without prior written
+
+ * permission of the OpenSSL Project.
+
+ *
+
+ * 6. Redistributions of any form whatsoever must retain the following
+
+ * acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
+
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
+
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ * ====================================================================
+
+ *
+
+ * This product includes cryptographic software written by Eric Young
+
+ * (eay@cryptsoft.com). This product includes software written by Tim
+
+ * Hudson (tjh@cryptsoft.com).
+
+ *
+
+ */
+
+
+ Original SSLeay License
+
+ -----------------------
+
+
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
+
+ * All rights reserved.
+
+ *
+
+ * This package is an SSL implementation written
+
+ * by Eric Young (eay@cryptsoft.com).
+
+ * The implementation was written so as to conform with Netscapes SSL.
+
+ *
+
+ * This library is free for commercial and non-commercial use as long as
+
+ * the following conditions are aheared to. The following conditions
+
+ * apply to all code found in this distribution, be it the RC4, RSA,
+
+ * lhash, DES, etc., code; not just the SSL code. The SSL documentation
+
+ * included with this distribution is covered by the same copyright terms
+
+ * except that the holder is Tim Hudson (tjh@cryptsoft.com).
+
+ *
+
+ * Copyright remains Eric Young's, and as such any Copyright notices in
+
+ * the code are not to be removed.
+
+ * If this package is used in a product, Eric Young should be given attribution
+
+ * as the author of the parts of the library used.
+
+ * This can be in the form of a textual message at program startup or
+
+ * in documentation (online or textual) provided with the package.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. All advertising materials mentioning features or use of this software
+
+ * must display the following acknowledgement:
+
+ * "This product includes cryptographic software written by
+
+ * Eric Young (eay@cryptsoft.com)"
+
+ * The word 'cryptographic' can be left out if the rouines from the library
+
+ * being used are not cryptographic related :-).
+
+ * 4. If you include any Windows specific code (or a derivative thereof) from
+
+ * the apps directory (application code) you must include an acknowledgement:
+
+ * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
+
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ * SUCH DAMAGE.
+
+ *
+
+ * The licence and distribution terms for any publically available version or
+
+ * derivative of this code cannot be changed. i.e. this code cannot simply be
+
+ * copied and put under another distribution licence
+
+ * [including the GNU Public Licence.]
+
+ */
+
+
+The ParMETIS package is copyrighted by the Regents of the
+
+University of Minnesota. It can be freely used for educational and
+
+research purposes by non-profit institutions and US government
+
+agencies only. Other organizations are allowed to use ParMETIS
+
+only for evaluation purposes, and any further uses will require prior
+
+approval. The software may not be sold or redistributed without prior
+
+approval. One may make copies of the software for their use provided
+
+that the copies, are not sold or distributed, are used under the same
+
+terms and conditions.
+
+
+As unestablished research software, this code is provided on an
+
+``as is'' basis without warranty of any kind, either expressed or
+
+implied. The downloading, or executing any part of this software
+
+constitutes an implicit agreement to these terms. These terms and
+
+conditions are subject to change at any time without prior notice.
+
+
PETSc version 3.9.0
+2-clause BSD license
+
+
+Copyright (c) 1991-2014, UChicago Argonne, LLC and the PETSc Development Team
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without modification,
+
+are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this
+
+ list of conditions and the following disclaimer in the documentation and/or
+
+ other materials provided with the distribution.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+This license DOES NOT apply to any software that may be obtained via the --download-package option of the PETSc configuration. Each of those packages are covered by their own licenses.
+
+
+Contributing
+
+
+Contributions are preferred via Bitbucket pull request to https://bitbucket.org/petsc/petsc or via patches (git send-email or git format-patch) sent to petsc-dev@mcs.anl.gov. If you are planning a large contribution, we encourage you to discuss the concept on the mailing list and interact with us frequently to ensure that your effort is well-directed. See the Development Wiki for further details.
+
+
+PETSc is distributed under a 2-clause BSD license (see above). The act of submitting a pull request or patch (with or without an explicit Signed-off-by tag) will be understood as an affirmation of the following:
+
+
+ Developer's Certificate of Origin 1.1
+
+
+ By making a contribution to this project, I certify that:
+
+
+ (a) The contribution was created in whole or in part by me and I
+
+ have the right to submit it under the open source license
+
+ indicated in the file; or
+
+
+ (b) The contribution is based upon previous work that, to the best
+
+ of my knowledge, is covered under an appropriate open source
+
+ license and I have the right under that license to submit that
+
+ work with modifications, whether created in whole or in part
+
+ by me, under the same open source license (unless I am
+
+ permitted to submit under a different license), as indicated
+
+ in the file; or
+
+
+ (c) The contribution was provided directly to me by some other
+
+ person who certified (a), (b) or (c) and I have not modified
+
+ it.
+
+
+ (d) I understand and agree that this project and the contribution
+
+ are public and that a record of the contribution (including all
+
+ personal information I submit with it, including my sign-off) is
+
+ maintained indefinitely and may be redistributed consistent with
+
+ this project or the open source license(s) involved.
+
+
+Old License
+
+
+Previous versions of PETSc were distributed under the old PETSc license.
+
Plotly Dash version 0.43.0
+The MIT License (MIT)
+
+
+Copyright (c) 2017 Plotly, Inc
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
Plotly version 1.23.1
+The MIT License
+
+
+Copyright 2019
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
Plotly.js version 1.20.5 2.7.11
+The MIT License
+
+
+Copyright 2019 Plotly, Inc.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
plotly.js version 1.7.0
+The MIT License (MIT)
+
+
+Copyright (c) 2019 Plotly, Inc
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
PyQt5-Commercial with Qt5.14 LGPLv3
+GENERAL
+
+
+-------
+
+
+
+
+Qt is available under a commercial license with various pricing models and packages that meet a variety of needs. Commercial Qt license keeps your code proprietary where only you can control and monetize on your end product�s development, user experience and distribution. You also get great perks like additional functionality, productivity enhancing tools, world-class support and a close strategic relationship with The Qt Company to make sure your product and development goals are met.
+
+
+
+
+Qt has been created under the belief of open development and providing freedom and choice to developers. To support that, The Qt Company also licenses Qt under open source licenses, where most of the functionality is available under LGPLv3. It should be noted that the tools as well as some add-on components are available only under GPLv3. In order to preserve the true meaning of open development and uphold the spirit of free software, it is imperative that the rules and regulations of open source licenses are followed. If you use Qt under open-source licenses, you need to make sure that you comply with all the licenses of the components you use.
+
+
+
+
+Qt also contains some 3rd party components that are available under different open-source licenses. Please refer to the documentation for more details on 3rd party licenses used in Qt.
+
+
+
+
+
+
+GPLv3 and LGPLv3
+
+
+----------------
+
+
+
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+
+
+
+
+ The Qt Toolkit is Copyright (C) 2017 The Qt Company Ltd.
+
+
+ Contact: https://www.qt.io/licensing
+
+
+
+
+ You may use, distribute and copy the Qt GUI Toolkit under the terms of
+
+
+ GNU Lesser General Public License version 3, which supplements GNU General
+
+
+ Public License Version 3. Both of the licenses are displayed below.
+
+
+ Copyright � 2007 Free Software Foundation, Inc.
+
+
+ Everyone is permitted to copy and distribute verbatim copies of this
+
+
+ license document, but changing it is not allowed.
+
+
+
+
+This version of the GNU Lesser General Public License incorporates
+
+
+the terms and conditions of version 3 of the GNU General Public
+
+
+License, supplemented by the additional permissions listed below.
+
+
+
+
+0. Additional Definitions.
+
+
+
+
+ As used herein, �this License� refers to version 3 of the GNU Lesser
+
+
+General Public License, and the �GNU GPL� refers to version 3 of the
+
+
+GNU General Public License.
+
+
+
+
+ �The Library� refers to a covered work governed by this License,
+
+
+other than an Application or a Combined Work as defined below.
+
+
+
+
+ An �Application� is any work that makes use of an interface provided
+
+
+by the Library, but which is not otherwise based on the Library.
+
+
+Defining a subclass of a class defined by the Library is deemed a mode
+
+
+of using an interface provided by the Library.
+
+
+
+
+ A �Combined Work� is a work produced by combining or linking an
+
+
+Application with the Library. The particular version of the Library
+
+
+with which the Combined Work was made is also called the �Linked
+
+
+Version�.
+
+
+
+
+ The �Minimal Corresponding Source� for a Combined Work means the
+
+
+Corresponding Source for the Combined Work, excluding any source code
+
+
+for portions of the Combined Work that, considered in isolation, are
+
+
+based on the Application, and not on the Linked Version.
+
+
+
+
+ The �Corresponding Application Code� for a Combined Work means the
+
+
+object code and/or source code for the Application, including any data
+
+
+and utility programs needed for reproducing the Combined Work from the
+
+
+Application, but excluding the System Libraries of the Combined Work.
+
+
+
+
+1. Exception to Section 3 of the GNU GPL.
+
+
+
+
+ You may convey a covered work under sections 3 and 4 of this License
+
+
+without being bound by section 3 of the GNU GPL.
+
+
+
+
+2. Conveying Modified Versions.
+
+
+
+
+ If you modify a copy of the Library, and, in your modifications, a
+
+
+facility refers to a function or data to be supplied by an Application
+
+
+that uses the facility (other than as an argument passed when the
+
+
+facility is invoked), then you may convey a copy of the modified
+
+
+version:
+
+
+
+
+ a) under this License, provided that you make a good faith effort
+
+
+ to ensure that, in the event an Application does not supply the
+
+
+ function or data, the facility still operates, and performs
+
+
+ whatever part of its purpose remains meaningful, or
+
+
+
+
+ b) under the GNU GPL, with none of the additional permissions of
+
+
+ this License applicable to that copy.
+
+
+
+
+3. Object Code Incorporating Material from Library Header Files.
+
+
+
+
+ The object code form of an Application may incorporate material from
+
+
+a header file that is part of the Library. You may convey such object
+
+
+code under terms of your choice, provided that, if the incorporated
+
+
+material is not limited to numerical parameters, data structure
+
+
+layouts and accessors, or small macros, inline functions and templates
+
+
+(ten or fewer lines in length), you do both of the following:
+
+
+
+
+ a) Give prominent notice with each copy of the object code that
+
+
+ the Library is used in it and that the Library and its use are
+
+
+ covered by this License.
+
+
+
+
+ b) Accompany the object code with a copy of the GNU GPL and this
+
+
+ license document.
+
+
+
+
+4. Combined Works.
+
+
+
+
+ You may convey a Combined Work under terms of your choice that, taken
+
+
+together, effectively do not restrict modification of the portions of
+
+
+the Library contained in the Combined Work and reverse engineering for
+
+
+debugging such modifications, if you also do each of the following:
+
+
+
+
+ a) Give prominent notice with each copy of the Combined Work that
+
+
+ the Library is used in it and that the Library and its use are
+
+
+ covered by this License.
+
+
+
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this
+
+
+ license document.
+
+
+
+
+ c) For a Combined Work that displays copyright notices during
+
+
+ execution, include the copyright notice for the Library among
+
+
+ these notices, as well as a reference directing the user to the
+
+
+ copies of the GNU GPL and this license document.
+
+
+
+
+ d) Do one of the following:
+
+
+
+
+ 0) Convey the Minimal Corresponding Source under the terms of
+
+
+ this License, and the Corresponding Application Code in a form
+
+
+ suitable for, and under terms that permit, the user to
+
+
+ recombine or relink the Application with a modified version of
+
+
+ the Linked Version to produce a modified Combined Work, in the
+
+
+ manner specified by section 6 of the GNU GPL for conveying
+
+
+ Corresponding Source.
+
+
+
+
+ 1) Use a suitable shared library mechanism for linking with
+
+
+ the Library. A suitable mechanism is one that (a) uses at run
+
+
+ time a copy of the Library already present on the user's
+
+
+ computer system, and (b) will operate properly with a modified
+
+
+ version of the Library that is interface-compatible with the
+
+
+ Linked Version.
+
+
+
+
+ e) Provide Installation Information, but only if you would
+
+
+ otherwise be required to provide such information under section 6
+
+
+ of the GNU GPL, and only to the extent that such information is
+
+
+ necessary to install and execute a modified version of the
+
+
+ Combined Work produced by recombining or relinking the Application
+
+
+ with a modified version of the Linked Version. (If you use option
+
+
+ 4d0, the Installation Information must accompany the Minimal
+
+
+ Corresponding Source and Corresponding Application Code. If you
+
+
+ use option 4d1, you must provide the Installation Information in
+
+
+ the manner specified by section 6 of the GNU GPL for conveying
+
+
+ Corresponding Source.)
+
+
+
+
+5. Combined Libraries.
+
+
+
+
+ You may place library facilities that are a work based on the Library
+
+
+side by side in a single library together with other library
+
+
+facilities that are not Applications and are not covered by this
+
+
+License, and convey such a combined library under terms of your
+
+
+choice, if you do both of the following:
+
+
+
+
+ a) Accompany the combined library with a copy of the same work
+
+
+ based on the Library, uncombined with any other library
+
+
+ facilities, conveyed under the terms of this License.
+
+
+
+
+ b) Give prominent notice with the combined library that part of
+
+
+ it is a work based on the Library, and explaining where to find
+
+
+ the accompanying uncombined form of the same work.
+
+
+
+
+6. Revised Versions of the GNU Lesser General Public License.
+
+
+
+
+ The Free Software Foundation may publish revised and/or new versions
+
+
+of the GNU Lesser 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 Library
+
+
+as you received it specifies that a certain numbered version of the
+
+
+GNU Lesser General Public License �or any later version� applies to
+
+
+it, you have the option of following the terms and conditions either
+
+
+of that published version or of any later version published by the
+
+
+Free Software Foundation. If the Library as you received it does not
+
+
+specify a version number of the GNU Lesser General Public License,
+
+
+you may choose any version of the GNU Lesser General Public License
+
+
+ever published by the Free Software Foundation.
+
+
+
+
+If the Library as you received it specifies that a proxy can decide
+
+
+whether future versions of the GNU Lesser General Public License shall
+
+
+apply, that proxy's public statement of acceptance of any version is
+
+
+permanent authorization for you to choose that version for the Library.
+
+
+
+
+Qt Enterprise
+
+
+The various components of the release include Open Source licensed software components. These components, listed by the component where such Open Source licensed software appears, are described as follows:
+
+
+=========
+
+Qt Libraries
+
+=========
+
+
+The Qt framework and tools are primarily licensed under the license terms specified above. However, Qt does contain certain components and third party software that are licensed under terms different from the above licenses. The third party software, including Open Source Software included in Qt is as follows:
+
+
+The FreeType project is a team of volunteers who develop free, portable and high-quality software solutions for digital typography. We specifically target embedded systems and focus on bringing small, efficient and ubiquitous products. -- quoted from 3rdparty/freetype/docs/freetype2.html.
+
+See src/3rdparty/freetype/docs/FTL.txt and src/3rdparty/freetype/docs/GPL.txt for license details.
+
+See also the files in src/3rdparty/opentype, which are used by FreeType.
+
+Parts of the FreeType projects have been modified and put into Qt for use in the painting subsystem. These files are ftraster.h, ftraster.c, ftgrays.h and ftgrays.c. The following modifications has been made to these files:
+
+Renamed FT_ and ft_ symbols to QT_FT_ and qt_ft_ to avoid name conflicts.
+
+Removed parts of code not relevant when compiled with _STANDALONE_ defined.
+
+Changed behavior in ftraster.c to follow X polygon filling rules.
+
+Implemented support in ftraster.c for winding / odd even polygon fill rules.
+
+Replaced bitmap generation with span generation in ftraster.c
+
+Renamed: ftraster.h to qblackraster_p.h
+
+Renamed: ftraster.c to qblackraster.c
+
+Renamed: ftgrays.h to qgrayraster_p.h
+
+Renamed: ftgrays.c to qgrayraster.c
+
+The FreeType Project LICENSE
+
+
+ 2006-Jan-27
+
+
+ Copyright 1996-2002, 2006 by
+
+ David Turner, Robert Wilhelm, and Werner Lemberg
+
+
+Introduction
+
+============
+
+
+The FreeType Project is distributed in several archive packages; some of them may contain, in addition to the FreeType font engine, various tools and contributions which rely on, or relate to, the FreeType Project.
+
+
+This license applies to all files found in such packages, and which do not fall under their own explicit license. The license affects thus the FreeType font engine, the test programs,documentation and makefiles, at the very least.
+
+
+This license was inspired by the BSD, Artistic, and IJG (Independent JPEG Group) licenses, which all encourage inclusion and use of free software in commercial and freeware products alike. As a consequence, its main points are that:
+
+ o We don't promise that this software works. However, we will be interested in any kind of bug reports. (`as is' distribution)
+
+
+ o You can use this software for whatever you want, in parts or full form, without having to pay us. (`royalty-free' usage)
+
+
+ o You may not pretend that you wrote this software. If you use it, or only parts of it, in a program, you must acknowledge somewhere in your documentation that you have used the FreeType code. (`credits')
+
+
+We specifically permit and encourage the inclusion of this software, with or without modifications, in commercial products. We disclaim all warranties covering The FreeType Project and assume no liability related to The FreeType Project.
+
+
+Finally, many people asked us for a preferred form for a credit/disclaimer to use in compliance with this license. We thus encourage you to use the following text:
+
+ �Portions of this software are copyright � The FreeType Project (www.freetype.org). All rights reserved."
+
+
+ Please replace with the value from the FreeType version you actually use.
+
+
+Legal Terms
+
+===========
+
+
+0. Definitions
+
+--------------
+
+Throughout this license, the terms `package', `FreeType Project', and `FreeType archive' refer to the set of files originally distributed by the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the `FreeType Project', be they named as alpha, beta or final release.
+
+
+`You' refers to the licensee, or person using the project, where `using' is a generic term including compiling the project's source code as well as linking it to form a `program' or `executable'. This program is referred to as `a program using the FreeType engine'.
+
+
+This license applies to all files distributed in the original FreeType Project, including all source code, binaries and documentation, unless otherwise stated in the file in its original, unmodified form as distributed in the original archive. If you are unsure whether or not a particular file is covered by this license, you must contact us to verify this.
+
+
+The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All rights reserved except as specified below.
+
+
+1. No Warranty
+
+--------------
+
+THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT.
+
+
+2. Redistribution
+
+-----------------
+
+This license grants a worldwide, royalty-free, perpetual and irrevocable right and license to use, execute, perform, compile, display, copy, create derivative works of, distribute and sublicense the FreeType Project (in both source and object code forms) and derivative works thereof for any purpose; and to authorize others to exercise some or all of the rights granted herein, subject to the following conditions:
+
+
+ o Redistribution of source code must retain this license file (`FTL.TXT') unaltered; any additions, deletions or changes to the original files must be clearly indicated in accompanying documentation. The copyright notices of the unaltered, original files must be preserved in all copies of source files.
+
+
+ o Redistribution in binary form must provide a disclaimer that states that the software is based in part of the work of the FreeType Team, in the distribution documentation. We also encourage you to put an URL to the FreeType web page in your documentation, though this isn't mandatory.
+
+
+These conditions apply to any software derived from or based on the FreeType Project, not just the unmodified files. If you use our work, you must acknowledge us. However, no fee need be paid to us.
+
+
+3. Advertising
+
+--------------
+
+Neither the FreeType authors and contributors nor you shall use the name of the other for commercial, advertising, or promotional purposes without specific prior written permission. We suggest, but do not require, that you use one or more of the following phrases to refer to this software in your documentation or advertising materials: `FreeType Project', `FreeType Engine', `FreeType library', or `FreeType Distribution'.
+
+
+As you have not signed this license, you are not required to accept it. However, as the FreeType Project is copyrighted material, only this license, or another one contracted with the authors, grants you the right to use, distribute, and modify it. Therefore, by using, distributing, or modifying the FreeType Project, you indicate that you understand and accept all the terms of this license.
+
+
+4. Contacts
+
+-----------
+
+ There are two mailing lists related to FreeType:
+
+ o freetype@nongnu.org
+
+Discusses general use and applications of FreeType, as well as future and wanted additions to the library and distribution. If you are looking for support, start in this list if you haven't found anything to help you in the documentation.
+
+
+ o freetype-devel@nongnu.org
+
+Discusses bugs, as well as engine internals, design issues, specific licenses, porting, etc.
+
+
+ Our home page can be found at http://www.freetype.org
+
+
+Freetype includes the Bitmap Distribution Format:
+
+
+Copyright 2000 Computing Research Labs, New Mexico State University
+
+Copyright 2001, 2002, 2003, 2004 Francesco Zappa Nardelli
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+
+* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Libmng License
+
+
+Libjpeg License - version 8c
+
+In plain English:
+
+1. We don't promise that this software works. (But if you find any bugs, please let us know!)
+
+2. You can use this software for whatever you want. You don't have to pay us.
+
+3. You may not pretend that you wrote this software. If you use it in a program, you must acknowledge somewhere in your documentation that you've used the IJG code.
+
+In legalese:
+
+The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, its user, assume the entire risk as to its quality and accuracy.
+
+This software is copyright (C) 1991-1998, Thomas G. Lane.
+
+All Rights Reserved except as specified below.
+
+Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions:
+
+(1) If any part of the source code for this software is distributed, then this README file must be included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation.
+
+(2) If only executable code is distributed, then the accompanying
+
+documentation must state that "this software is based in part on the work of the Independent JPEG Group".
+
+(3) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind.
+
+These conditions apply to any software derived from or based on the IJG code, not just to the unmodified library. If you use our work, you ought to acknowledge us.
+
+Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity relating to this software or products derived from it. This software may be referred to only as "the Independent JPEG Group's software".
+
+We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor.
+
+ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and conditions, but instead by the usual distribution terms of the Free Software Foundation; principally,that you must include source code if you redistribute it. (See the file ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than the foregoing paragraphs do.
+
+The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub,
+
+ltconfig, ltmain.sh). Another support script, install-sh, is copyright by M.I.T. but is also freely distributable.
+
+It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot legally be used without obtaining one or more licenses. For this reason, support for arithmetic coding has been removed from the free JPEG software.
+
+(Since arithmetic coding provides only a marginal gain over the unpatented Huffman mode, it is unlikely that very many implementations will support it.)
+
+So far as we are aware, there are no patent restrictions on the remaining code.
+
+The IJG distribution formerly included code to read and write GIF files.
+
+To avoid entanglement with the Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to produce "uncompressed GIFs". This technique does not use the LZW algorithm; the resulting GIF files are larger than usual, but are readable by all standard GIF decoders.
+
+We are required to state that
+
+ "The Graphics Interchange Format(c) is the Copyright property of
+
+ CompuServe Incorporated. GIF(sm) is a Service Mark property of
+
+ CompuServe Incorporated."
+
+
+Libmng License
+
+
+Libjpeg License - version 8c
+
+In plain English:
+
+1. We don't promise that this software works. (But if you find any bugs, please let us know!)
+
+2. You can use this software for whatever you want. You don't have to pay us.
+
+3. You may not pretend that you wrote this software. If you use it in a program, you must acknowledge somewhere in your documentation that you've used the IJG code.
+
+In legalese:
+
+The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, its user, assume the entire risk as to its quality and accuracy.
+
+This software is copyright (C) 1991-1998, Thomas G. Lane.
+
+All Rights Reserved except as specified below.
+
+Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions:
+
+(1) If any part of the source code for this software is distributed, then this README file must be included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation.
+
+(2) If only executable code is distributed, then the accompanying
+
+documentation must state that "this software is based in part on the work of the Independent JPEG Group".
+
+(3) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind.
+
+These conditions apply to any software derived from or based on the IJG code, not just to the unmodified library. If you use our work, you ought to acknowledge us.
+
+Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity relating to this software or products derived from it. This software may be referred to only as "the Independent JPEG Group's software".
+
+We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor.
+
+ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and conditions, but instead by the usual distribution terms of the Free Software Foundation; principally,that you must include source code if you redistribute it. (See the file ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than the foregoing paragraphs do.
+
+The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub,
+
+ltconfig, ltmain.sh). Another support script, install-sh, is copyright by M.I.T. but is also freely distributable.
+
+It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot legally be used without obtaining one or more licenses. For this reason, support for arithmetic coding has been removed from the free JPEG software.
+
+(Since arithmetic coding provides only a marginal gain over the unpatented Huffman mode, it is unlikely that very many implementations will support it.)
+
+So far as we are aware, there are no patent restrictions on the remaining code.
+
+The IJG distribution formerly included code to read and write GIF files.
+
+To avoid entanglement with the Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to produce "uncompressed GIFs". This technique does not use the LZW algorithm; the resulting GIF files are larger than usual, but are readable by all standard GIF decoders.
+
+We are required to state that
+
+ "The Graphics Interchange Format(c) is the Copyright property of
+
+ CompuServe Incorporated. GIF(sm) is a Service Mark property of
+
+ CompuServe Incorporated."
+
+
+Libpng License - version 1.5.1
+
+This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail.
+
+
+COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
+
+
+If you modify libpng you may insert additional notices immediately following this sentence.
+
+
+libpng versions 1.2.6, August 15, 2004, through 1.2.29, May 8, 2008, are Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson, and are
+
+distributed according to the same disclaimer and license as libpng-1.2.5 with the following individual added to the list of Contributing Authors
+
+
+ Cosmin Truta
+
+
+libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
+
+distributed according to the same disclaimer and license as libpng-1.0.6 with the following individuals added to the list of Contributing Authors
+
+
+ Simon-Pierre Cadieux
+
+ Eric S. Raymond
+
+ Gilles Vollant
+
+
+and with the following additions to the disclaimer:
+
+
+There is no warranty against interference with your enjoyment of the library or against infringement. There is no warranty that our efforts or the library will fulfill any of your particular purposes or needs. This library is provided with all faults, and the entire risk of satisfactory quality, performance, accuracy, and effort is with the user.
+
+
+libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
+
+distributed according to the same disclaimer and license as libpng-0.96, with the following individuals added to the list of Contributing Authors:
+
+
+ Tom Lane
+
+ Glenn Randers-Pehrson
+
+ Willem van Schaik
+
+
+libpng versions 0.89, June 1996, through 0.96, May 1997, are
+
+Copyright (c) 1996, 1997 Andreas Dilger
+
+
+Distributed according to the same disclaimer and license as libpng-0.88, with the following individuals added to the list of Contributing Authors:
+
+
+ John Bowler
+
+ Kevin Bracey
+
+ Sam Bushell
+
+ Magnus Holmgren
+
+ Greg Roelofs
+
+ Tom Tanner
+
+
+libpng versions 0.5, May 1995, through 0.88, January 1996, are
+
+Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+
+
+For the purposes of this copyright and license, "Contributing Authors" is defined as the following set of individuals:
+
+
+ Andreas Dilger
+
+ Dave Martindale
+
+ Guy Eric Schalnat
+
+ Paul Schmidt
+
+ Tim Wegner
+
+
+The PNG Reference Library is supplied "AS IS". The Contributing Authors and Group 42, Inc. disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of fitness for any purpose. The Contributing Authors and Group 42, Inc. assume no liability for direct, indirect, incidental, special, exemplary, or consequential damages, which may result from the use of the PNG Reference Library, even if advised of the possibility of such damage.
+
+
+Permission is hereby granted to use, copy, modify, and distribute this source code, or portions hereof, for any purpose, without fee, subject to the following restrictions:
+
+
+1. The origin of this source code must not be misrepresented.
+
+
+2. Altered versions must be plainly marked as such and must not
+
+ be misrepresented as being the original source.
+
+
+3. This Copyright notice may not be removed or altered from any
+
+ source or altered source distribution.
+
+
+The Contributing Authors and Group 42, Inc. specifically permit, without fee, and encourage the use of this source code as a component to supporting the PNG file format in commercial products. If you use this source code in a product, acknowledgment is not required but would be appreciated.
+
+
+
+A "png_get_copyright" function is available, for convenient use in "about" boxes and the like:
+
+
+ printf("%s",png_get_copyright(NULL));
+
+
+Also, the PNG logo (in PNG format, of course) is supplied in the files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
+
+
+Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a certification mark of the Open Source Initiative.
+
+
+ Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler
+
+
+This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
+
+
+Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
+
+
+1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+
+
+2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+
+
+3. This notice may not be removed or altered from any source distribution.
+
+
+Sqlite
+
+1. 2001 September 15
+
+2. The author disclaims copyright to this source code. In place of a legal notice, here is a blessing:
+
+3. May you do good and not eviL.
+
+4. May you find forgiveness for yourself and forgive others.
+
+5. May you share freely, never taking more than you give.
+
+
+Wintab
+
+The text and information contained in this file may be freely used, Copied, or distributed without compensation or licensing restrictions.
+
+This file is copyright 1991-1998 by LCS/Telegraphics.
+
+
+HarfBuzz (harfbuzz)
+
+This is HarfBuzz, an OpenType Layout engine.
+
+It was derived originally from the OpenType code in FreeType-1.x, ported to FreeType2. (This code has been abandoned for FreeType2, but until something better comes along, should serve our purposes.) In addition to porting to FreeType-2, it has been modified in various other ways.
+
+Please see licensing terms and conditions set forth in Section a) above (i.e. the FreeType License).
+
+
+MD5 (md5.cpp and md5.h)
+
+This code implements the MD5 message-digest algorithm. The algorithm is due to Ron Rivest. This code was written by Colin Plumb in 1993, no copyright is claimed.
+
+This code is in the public domain; do with it what you wish.
+
+
+Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the names of Sam Leffler and Silicon Graphics may not be used in any advertising or publicity relating to the software without the specific, prior written permission of Sam Leffler and Silicon Graphics.
+
+
+THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
+
+
+IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+Copyright (c) 1996-1997 Sam Leffler
+
+Copyright (c) 1996 Pixar
+
+Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the names of Pixar, Sam Leffler and Silicon Graphics may not be used in any advertising or publicity relating to the software without the specific, prior written permission of Pixar, Sam Leffler and Silicon Graphics.
+
+THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
+
+IN NO EVENT SHALL PIXAR, SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+PTMalloc Version 1.8
+
+ptmcalloc3 is a scalable concurrent memory allocator suitable for use in multi-threaded programs.
+
+Copyright (c) 2001-2006 Wolfram Gloger
+
+Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the name of Wolfram Gloger may not be used in any advertising or publicity relating to the software.
+
+THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
+
+IN NO EVENT SHALL WOLFRAM GLOGER BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+Non-Digia Owned Code used in Qt
+
+Qt contains some code that is not provided under the the GNU General Public License version 3 (�GPL�), or the GNU Lesser General Public License version 2.1 (�LGPL�), but rather under specific highly permissive licenses from the original authors. This page lists the licenses used for that code, names the authors, and links to the points where it is used.
+
+Digia gratefully acknowledges these and others contributions to Qt. We recommend that programs that use Qt or Qtopia Core also acknowledge these contributions, and quote these license statements in an appendix to the documentation.
+
+
+Copyright (C) 1999 Serika Kurusugawa. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS". ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* Shift-JIS Text Codec
+
+* ISO 2022-JP (JIS) Text Codec
+
+* EUC-JP Text Codec
+
+
+Copyright (C) 1999-2000 Mizi Research Inc. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* EUC-KR Text Codec
+
+
+Copyright (C) 2000 TurboLinux, Inc. Written by Justin Yu and Sean Chen.
+
+Copyright (C) 2001, 2002 Turbolinux, Inc. Written by James Su.
+
+Copyright (C) 2001, 2002 ThizLinux Laboratory Ltd. Written by Anthony Fok.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* GBK Text Codec
+
+
+Copyright (C) 2000 Ming-Che Chuang
+
+Copyright (C) 2001, 2002 James Su, Turbolinux Inc.
+
+Copyright (C) 2002 WU Yi, HancomLinux Inc.
+
+Copyright (C) 2001, 2002 Anthony Fok, ThizLinux Laboratory Ltd.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* Big5-HKSCS Text Codec
+
+
+Copyright (C) 2000 Ming-Che Chuang
+
+Copyright (C) 2002 James Su, Turbolinux Inc.
+
+Copyright (C) 2002 Anthony Fok, ThizLinux Laboratory Ltd.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* Big5 Text Codec
+
+
+Copyright (C) 2005-2006 Trolltech ASA. All rights reserved.
+
+Copyright (C) 2005 Bjoern Bergstroem
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, modify, market, reproduce, grant sublicenses and distribute subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. These files are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+* Implementation of the Recursive Shadow Casting Algorithm in Qt Designer
+
+
+Copyright (C) 2005-2006 Trolltech ASA. All rights reserved.
+
+Copyright (C) 2005 Roberto Raggi
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, modify, market, reproduce, grant sublicenses and distribute subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. These files are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+* Contributions to the Following qt3to4 Files: treewalker.h, treedump.cpp, treedump.h, treewalker.cpp
+
+
+Copyright (c) 1987 X Consortium
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium.
+
+* QRegion
+
+
+Copyright (c) 1989 The Regents of the University of California. All rights reserved.
+
+Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials related to such distribution and use acknowledge that the software was developed by the University of California, Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+* QDate::weekNumber()
+
+
+Copyright (c) 1991 by AT&T.
+
+Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all copies of the supporting documentation for such software.
+
+THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
+
+This product includes software developed by the University of California, Berkeley and its contributors.
+
+* QLocale
+
+
+Copyright (c) 2000 Hans Petter Bieker. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* TSCII Text Codec
+
+
+Copyright 1996 Daniel Dardailler.
+
+Permission to use, copy, modify, distribute, and sell this software for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Daniel Dardailler not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Daniel Dardailler makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.
+
+Modifications Copyright 1999 Matt Koss, under the same license as above.
+
+* Drag and Drop
+
+
+Copyright 2002 USC/Information Sciences Institute
+
+Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Information Sciences Institute not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Information Sciences Institute makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.
+
+INFORMATION SCIENCES INSTITUTE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL INFORMATION SCIENCES INSTITUTE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+* QtSvg Module
+
+
+Copyright (C) The Internet Society (2001). All Rights Reserved.
+
+This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to the Internet Society or other Internet organizations, except as needed for the purpose of developing Internet standards in which case the procedures for copyrights defined in the Internet Standards process must be followed, or as required to translate it into languages other than English.
+
+The limited permissions granted above are perpetual and will not be revoked by the Internet Society or its successors or assigns.
+
+This document and the information contained herein is provided on an "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
+
+* Torrent Example
+
+
+Copyright (c) 1998 by Bjorn Reese
+
+Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
+
+* Parts of the QCrashHandler Class
+
+
+Parts of the FreeType projects have been modified and put into Qt and Qtopia Core for use in the painting subsystem. These files are ftraster.h, ftraster.c, ftgrays.h and ftgrays.c. The following modifications has been made to these files:
+
+* Renamed FT and ft_symbols to QT_FT_and qt_ft to avoid name conflicts in qrasterdefs_p.h.
+
+* Removed parts of code not relevant when compiled with _STANDALONE_ defined.
+
+* Changed behavior in ftraster.c to follow X polygon filling rules.
+
+* Implemented support in ftraster.c for winding / odd even polygon fill rules.
+
+* Replaced bitmap generation with span generation in ftraster.c.
+
+* Renamed ftraster.h as qblackraster_p.h.
+
+* Renamed ftraster.c as qblackraster.c.
+
+* Renamed ftgrays.h as qgrayraster_p.h.
+
+* Renamed ftgrays.c as qgrayraster.c.
+
+See src/3rdparty/freetype/docs/FTL.txt and src/3rdparty/freetype/docs/GPL.txt for license details.
+
+
+Copyright (c) 1985, 1986, 1987 X Consortium
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium.
+
+* Parts of the Q3PolygonScanner Class Used in Qt for Embedded Linux
+
+
+Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
+
+All Rights Reserved
+
+Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Digital not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission.
+
+DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+* Parts of the Q3PolygonScanner class used in Qt for Embedded Linux
+
+
+OpenGL is a trademark of Silicon Graphics, Inc. in the United States and other countries.
+
+* QGLFormat
+
+
+WebKit is licensed under the GNU Library General Public License. Individual contributor names and copyright dates can be found inline in the code.
+
+This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+
+This library 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 Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+* QtWebKit Module
+
+
+Copyright (C) 2000-2004, International Business Machines
+
+Corporation and others. All Rights Reserved.
+
+Copyright (C) 2007 Apple Inc. All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
+
+* Parts of WebKit used by the QtWebKit module
+
+
+Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
+
+Changes are Copyright(C) 2007 by Trolltech ASA, all rights reserved.
+
+This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
+
+This library 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 Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+* QtHelp Module
+
+
+Copyright (C) 2004, 2005 Daniel M. Duley
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+* QImage
+
+
+This file is part of the KDE project
+
+Copyright (C) 2005-2007 Matthias Kretz
+
+Copyright (C) 2007-2008 Trolltech ASA.
+
+This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation.
+
+This library 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 Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+* Phonon Module
+
+
+Copyright (C) 2007-2008, Apple, Inc.
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+* Neither the name of Apple, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Contributions to the Following QtGui Files:
+
+* qapplication_cocoa_p.h
+
+* qapplication_mac.mm
+
+* qdesktopwidget_mac.mm
+
+* qeventdispatcher_mac.mm
+
+* qeventdispatcher_mac_p.h
+
+* qmacincludes_mac.h
+
+* qt_cocoa_helpers.mm
+
+* qt_cocoa_helpers_p.h
+
+* qwidget_mac.mm
+
+* qsystemtrayicon_mac.mm
+
+
+
+Copyright (C) 2003-2004 immodule for Qt Project. All rights reserved.
+
+This file is written to contribute to Digia Corporation and/or its subsidiary(-ies) under their own license. You may use this file under your Qt license. Following description is copied from their original file headers. Contact immodule-qt@freedesktop.org if any conditions of this licensing are not clear to you.
+
+* QInputContextFactory
+
+* QInputContext
+
+* QInputContextPlugin
+
+
+Copyright (c) 2003, 2006 Matteo Frigo
+
+Copyright (c) 2003, 2006 Massachusetts Institute of Technology
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+* QTestLib Manual
+
+
+Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+
+All rights reserved.
+
+Contact: Qt Development Frameworks Information (qt-info@nokia.com)
+
+You may use this file under the terms of the BSD license as follows:
+
+"Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+* Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+
+* QAxServer Module
+
+* The qtmain Library
+
+* QAxContainer Module
+
+
+Copyright 1985, 1987, 1998 The Open Group
+
+Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation.
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group.
+
+* Parts of the internal QKeyMapper class on X11 platforms
+
+
+pnmscale.c - read a portable anymap and scale it
+
+Copyright (C) 1989, 1991 by Jef Poskanzer.
+
+Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without express or implied warranty.
+
+* Parts of the internal QImageSmoothScaler::scale() function use code based on pnmscale.c by Jef Poskanzer.
+
+
+FFTReal version 2.0
+
+This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+
+This library 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 Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+JQuery
+
+jQuery JavaScript Library v1.3.2 http://jquery.com/
+
+Copyright (c) 2009 John Resig Dual licensed under the MIT and GPL licenses. http://docs.jquery.com/License
+
+Sizzle CSS Selector Engine - v0.9.3 Copyright 2009, The Dojo Foundation Released under the MIT, BSD, and GPL Licenses. More information: http://sizzlejs.com/
+
+* examples/webkit/fancybrowser/jquery.min.js
+
+
+DES (des.cpp)
+
+Implementation of DES encryption for NTLM
+
+Copyright 1997-2005 Simon Tatham.
+
+This software is released under the MIT license.
+
+
+MD4 (md4.cpp and md4.h)
+
+MD4 (RFC-1320) message digest.
+
+Modified from MD5 code by Andrey Panin
+
+Written by Solar Designer in 2001, and placed in
+
+the public domain. There's absolutely no warranty.
+
+
+Bison Parser
+
+As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception.
+
+
+Copyright � 1994-2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/
+
+This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions:
+
+Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make:
+
+1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
+
+2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright � [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/"
+
+3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)
+
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
+
+The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders.
+
+* XML Patterns Scheme (source/qt-everywhere-opensource-src-4.8.0/qt-everywhere-opensource-src-4.8.0/src/xmlpatterns/schema/schemas/xml.xsd-LICENSE)
+
+
+PowerVR:
+
+Copyright : Copyright (c) Imagination Technologies Limited.
+
+This specification is protected by copyright laws and contains material proprietary to Imagination Technologies Limited.
+
+You may use and distribute this specification free of charge for implementing the functionality therein, without altering or removing any trademark, copyright, or other notice from the specification.
+
+
+Superfish:
+
+Superfish v1.4.8 - jQuery menu widget
+
+Copyright (c) 2008 Joel Birch
+
+License:
+
+* Dual licensed under the MIT and GPL licenses:
+
+* http://www.opensource.org/licenses/mit-license.php
+
+* http://www.gnu.org/licenses/gpl.html
+
+
+Cycle:
+
+Copyright (c) 2003, 2006 Matteo Frigo
+
+Copyright (c) 2003, 2006 Massachusetts Institute of Technology
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+
+* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+Wayland Windowing Manager:
+
+Copyright � 2010 Kristian H�gsberg
+
+Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the copyright holders not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The copyright holders make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.
+
+THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+
+TestLib\Callgrind:
+
+Copyright (C) 2003-2007 Josef Weidendorfer. All rights reserved.
+
+License:
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+
+3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+
+4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+TestLib\Valgrind:
+
+Copyright (C) 2000-2007 Julian Seward.� All rights reserved.
+
+License:
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+2. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+
+3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+
+4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIEDWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+PCRE:
+
+
+PCRE LICENSE
+
+------------
+
+
+PCRE is a library of functions to support regular expressions whose syntax
+
+and semantics are as close as possible to those of the Perl 5 language.
+
+
+Release 8 of PCRE is distributed under the terms of the "BSD" license, as
+
+specified below. The documentation for PCRE, supplied in the "doc"
+
+directory, is distributed under the same terms as the software itself.
+
+
+The basic library functions are written in C and are freestanding. Also
+
+included in the distribution is a set of C++ wrapper functions, and a
+
+just-in-time compiler that can be used to optimize pattern matching. These
+
+are both optional features that can be omitted when the library is built.
+
+
+Copyright(c) 2009-2012 Zoltan Herczeg
+
+All rights reserved.
+
+
+
+THE C++ WRAPPER FUNCTIONS
+
+-------------------------
+
+
+Contributed by: Google Inc.
+
+
+Copyright (c) 2007-2012, Google Inc.
+
+All rights reserved.
+
+
+
+THE "BSD" LICENSE
+
+-----------------
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+
+ * Neither the name of the University of Cambridge nor the name of Google
+
+ Inc. nor the names of their contributors may be used to endorse or
+
+ promote products derived from this software without specific prior
+
+ written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+End
+
+
+
+ANGLE:
+
+Copyright (C) 2002-2010 The ANGLE Project Authors.
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions
+
+are met:
+
+
+ Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+
+ Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc.
+
+ Ltd., nor the names of their contributors may be used to endorse
+
+ or promote products derived from this software without specific
+
+ prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+
+FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+
+COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+
+ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+xcb:
+
+Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett.
+
+All Rights Reserved.
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Except as contained in this notice, the names of the authors or their
+
+institutions shall not be used in advertising or otherwise to promote the
+
+sale, use or other dealings in this Software without prior written
+
+authorization from the authors
+
+
+
+==========
+
+Qt Creator
+
+==========
+
+Qt Creator includes the following third-party components,
+
+we thank the authors who made this possible:
+
+
+* Open Source front-end for C++ (license MIT), enhanced for use in Qt Creator
+
+
+ Roberto Raggi
+
+
+ QtCreator/src/shared/cplusplus
+
+
+ Copyright 2005 Roberto Raggi
+
+
+ Permission to use, copy, modify, distribute, and sell this software and its
+
+ documentation for any purpose is hereby granted without fee, provided that
+
+ the above copyright notice appear in all copies and that both that
+
+ copyright notice and this permission notice appear in supporting
+
+ documentation.
+
+
+ The above copyright notice and this permission notice shall be included in
+
+ all copies or substantial portions of the Software.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+ KDEVELOP TEAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+
+ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+* Botan, a C++ crypto library. Version 1.8.8
+
+
+ Copyright (C) 1999-2004 The Botan Project. All rights reserved.
+
+ Copyright (C) 1999-2009 Jack Lloyd
+
+ 2001 Peter J Jones
+
+ 2004-2007 Justin Karneges
+
+ 2005 Matthew Gregan
+
+ 2005-2006 Matt Johnston
+
+ 2006 Luca Piccarreta
+
+ 2007 Yves Jerschow
+
+ 2007-2008 FlexSecure GmbH
+
+ 2007-2008 Technische Universitat Darmstadt
+
+ 2007-2008 Falko Strenzke
+
+ 2007-2008 Martin Doering
+
+ 2007 Manuel Hartl
+
+ 2007 Christoph Ludwig
+
+ 2007 Patrick Sona
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are met:
+
+
+ 1. Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions, and the following disclaimer.
+
+
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions, and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED
+
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO
+
+ EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT,
+
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ The source code of Botan C++ crypto library can be found in
+
+ QtCreator/src/libs/3rdparty
+
+
+ All rights reserved.
+
+ Copyright (c) 2010 Denis Mingulov.
+
+
+ Contact: http://www.qt-project.org/
+
+
+ This file is part of Qt Creator.
+
+
+ You may use this file under the terms of the BSD license as follows:
+
+
+ "Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in
+
+ the documentation and/or other materials provided with the
+
+ distribution.
+
+ * Neither the name of Digia Plc and its Subsidiary(-ies) nor
+
+ the names of its contributors may be used to endorse or promote
+
+ products derived from this software without specific prior written
+
+ permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+
+
+
Python packages installed in Python 3.8.10
+----------
+
+2to3, version 1.0 - MIT license
+
+
+ Apache License
+
+ Version 2.0, January 2004
+
+ http://www.apache.org/licenses/
+
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+
+ 1. Definitions.
+
+
+ "License" shall mean the terms and conditions for use, reproduction,
+
+ and distribution as defined by Sections 1 through 9 of this document.
+
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+
+ the copyright owner that is granting the License.
+
+
+ "Legal Entity" shall mean the union of the acting entity and all
+
+ other entities that control, are controlled by, or are under common
+
+ control with that entity. For the purposes of this definition,
+
+ "control" means (i) the power, direct or indirect, to cause the
+
+ direction or management of such entity, whether by contract or
+
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+
+ exercising permissions granted by this License.
+
+
+ "Source" form shall mean the preferred form for making modifications,
+
+ including but not limited to software source code, documentation
+
+ source, and configuration files.
+
+
+ "Object" form shall mean any form resulting from mechanical
+
+ transformation or translation of a Source form, including but
+
+ not limited to compiled object code, generated documentation,
+
+ and conversions to other media types.
+
+
+ "Work" shall mean the work of authorship, whether in Source or
+
+ Object form, made available under the License, as indicated by a
+
+ copyright notice that is included in or attached to the work
+
+ (an example is provided in the Appendix below).
+
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+
+ form, that is based on (or derived from) the Work and for which the
+
+ editorial revisions, annotations, elaborations, or other modifications
+
+ represent, as a whole, an original work of authorship. For the purposes
+
+ of this License, Derivative Works shall not include works that remain
+
+ separable from, or merely link (or bind by name) to the interfaces of,
+
+ the Work and Derivative Works thereof.
+
+
+ "Contribution" shall mean any work of authorship, including
+
+ the original version of the Work and any modifications or additions
+
+ to that Work or Derivative Works thereof, that is intentionally
+
+ submitted to Licensor for inclusion in the Work by the copyright owner
+
+ or by an individual or Legal Entity authorized to submit on behalf of
+
+ the copyright owner. For the purposes of this definition, "submitted"
+
+ means any form of electronic, verbal, or written communication sent
+
+ to the Licensor or its representatives, including but not limited to
+
+ communication on electronic mailing lists, source code control systems,
+
+ and issue tracking systems that are managed by, or on behalf of, the
+
+ Licensor for the purpose of discussing and improving the Work, but
+
+ excluding communication that is conspicuously marked or otherwise
+
+ designated in writing by the copyright owner as "Not a Contribution."
+
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+
+ on behalf of whom a Contribution has been received by Licensor and
+
+ subsequently incorporated within the Work.
+
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ copyright license to reproduce, prepare Derivative Works of,
+
+ publicly display, publicly perform, sublicense, and distribute the
+
+ Work and such Derivative Works in Source or Object form.
+
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ (except as stated in this section) patent license to make, have made,
+
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+
+ where such license applies only to those patent claims licensable
+
+ by such Contributor that are necessarily infringed by their
+
+ Contribution(s) alone or by combination of their Contribution(s)
+
+ with the Work to which such Contribution(s) was submitted. If You
+
+ institute patent litigation against any entity (including a
+
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+
+ or a Contribution incorporated within the Work constitutes direct
+
+ or contributory patent infringement, then any patent licenses
+
+ granted to You under this License for that Work shall terminate
+
+ as of the date such litigation is filed.
+
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+
+ Work or Derivative Works thereof in any medium, with or without
+
+ modifications, and in Source or Object form, provided that You
+
+ meet the following conditions:
+
+
+ (a) You must give any other recipients of the Work or
+
+ Derivative Works a copy of this License; and
+
+
+ (b) You must cause any modified files to carry prominent notices
+
+ stating that You changed the files; and
+
+
+ (c) You must retain, in the Source form of any Derivative Works
+
+ that You distribute, all copyright, patent, trademark, and
+
+ attribution notices from the Source form of the Work,
+
+ excluding those notices that do not pertain to any part of
+
+ the Derivative Works; and
+
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+
+ distribution, then any Derivative Works that You distribute must
+
+ include a readable copy of the attribution notices contained
+
+ within such NOTICE file, excluding those notices that do not
+
+ pertain to any part of the Derivative Works, in at least one
+
+ of the following places: within a NOTICE text file distributed
+
+ as part of the Derivative Works; within the Source form or
+
+ documentation, if provided along with the Derivative Works; or,
+
+ within a display generated by the Derivative Works, if and
+
+ wherever such third-party notices normally appear. The contents
+
+ of the NOTICE file are for informational purposes only and
+
+ do not modify the License. You may add Your own attribution
+
+ notices within Derivative Works that You distribute, alongside
+
+ or as an addendum to the NOTICE text from the Work, provided
+
+ that such additional attribution notices cannot be construed
+
+ as modifying the License.
+
+
+ You may add Your own copyright statement to Your modifications and
+
+ may provide additional or different license terms and conditions
+
+ for use, reproduction, or distribution of Your modifications, or
+
+ for any such Derivative Works as a whole, provided Your use,
+
+ reproduction, and distribution of the Work otherwise complies with
+
+ the conditions stated in this License.
+
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+
+ any Contribution intentionally submitted for inclusion in the Work
+
+ by You to the Licensor shall be under the terms and conditions of
+
+ this License, without any additional terms or conditions.
+
+ Notwithstanding the above, nothing herein shall supersede or modify
+
+ the terms of any separate license agreement you may have executed
+
+ with Licensor regarding such Contributions.
+
+
+ 6. Trademarks. This License does not grant permission to use the trade
+
+ names, trademarks, service marks, or product names of the Licensor,
+
+ except as required for reasonable and customary use in describing the
+
+ origin of the Work and reproducing the content of the NOTICE file.
+
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+
+ agreed to in writing, Licensor provides the Work (and each
+
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+
+ implied, including, without limitation, any warranties or conditions
+
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+
+ appropriateness of using or redistributing the Work and assume any
+
+ risks associated with Your exercise of permissions under this License.
+
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+
+ whether in tort (including negligence), contract, or otherwise,
+
+ unless required by applicable law (such as deliberate and grossly
+
+ negligent acts) or agreed to in writing, shall any Contributor be
+
+ liable to You for damages, including any direct, indirect, special,
+
+ incidental, or consequential damages of any character arising as a
+
+ result of this License or out of the use or inability to use the
+
+ Work (including but not limited to damages for loss of goodwill,
+
+ work stoppage, computer failure or malfunction, or any and all
+
+ other commercial damages or losses), even if such Contributor
+
+ has been advised of the possibility of such damages.
+
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+
+ the Work or Derivative Works thereof, You may choose to offer,
+
+ and charge a fee for, acceptance of support, warranty, indemnity,
+
+ or other liability obligations and/or rights consistent with this
+
+ License. However, in accepting such obligations, You may act only
+
+ on Your own behalf and on Your sole responsibility, not on behalf
+
+ of any other Contributor, and only if You agree to indemnify,
+
+ defend, and hold each Contributor harmless for any liability
+
+ incurred by, or claims asserted against, such Contributor by reason
+
+ of your accepting any such warranty or additional liability.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+
+
+
+----------
+
+PyYAML, version 6.0 - MIT License license
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+
+this software and associated documentation files (the "Software"), to deal in
+
+the Software without restriction, including without limitation the rights to
+
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+
+of the Software, and to permit persons to whom the Software is furnished to do
+
+so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
+SOFTWARE.
+
+
+Copyright (c) 2010 Jonathan Hartley
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+* Neither the name of the copyright holders, nor those of its contributors
+
+ may be used to endorse or promote products derived from this software without
+
+ specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+
+----------
+
+debugpy, version 1.6.0 - Eclipse Public License 2.0 (EPL-2.0); MIT License license
+
+
+ debugpy
+
+
+ Copyright (c) Microsoft Corporation
+
+ All rights reserved.
+
+
+ MIT License
+
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
+
+ this software and associated documentation files (the "Software"), to deal in
+
+ the Software without restriction, including without limitation the rights to
+
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+
+ the Software, and to permit persons to whom the Software is furnished to do so,
+
+ subject to the following conditions:
+
+
+ The above copyright notice and this permission notice shall be included in all
+
+ copies or substantial portions of the Software.
+
+
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+
+
+----------
+
+flufl.enum, version 4.1.1 - GNU Lesser General Public License v3 or later (LGPLv3+) license
+
+
+Copyright (c) 2008 Andrew Collette and contributors
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are
+
+met:
+
+
+1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+2. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the
+
+ distribution.
+
+
+3. Neither the name of the copyright holder nor the names of its
+
+ contributors may be used to endorse or promote products derived from
+
+ this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+
+----------
+
+isort, version 4.3.4 - MIT License license
+
+
+The MIT License (MIT)
+
+
+Copyright (c) 2013 Timothy Edmund Crosley
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
+
+
+
+----------
+
+jedi, version 0.18.1 - MIT License license
+
+
+All contributions towards Jedi are MIT licensed.
+
+
+-------------------------------------------------------------------------------
+
+The MIT License (MIT)
+
+
+Copyright (c) <2013>
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
+Copyright (c) 2008-2021, The joblib developers.
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+* Neither the name of the copyright holder nor the names of its
+
+ contributors may be used to endorse or promote products derived from
+
+ this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+
+----------
+
+junit-xml, version 1.8 - Freely Distributable; MIT License license
+
+
+The MIT License
+
+
+Copyright (c) 2013 Kyrus Tech, Inc., Brian Beyer
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
+
+
+----------
+
+junitxml, version 0.7 - LGPL-3 license
+
+
+ GNU LESSER 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.
+
+
+
+ This version of the GNU Lesser General Public License incorporates
+
+the terms and conditions of version 3 of the GNU General Public
+
+License, supplemented by the additional permissions listed below.
+
+
+ 0. Additional Definitions.
+
+
+ As used herein, "this License" refers to version 3 of the GNU Lesser
+
+General Public License, and the "GNU GPL" refers to version 3 of the GNU
+
+General Public License.
+
+
+ "The Library" refers to a covered work governed by this License,
+
+other than an Application or a Combined Work as defined below.
+
+
+ An "Application" is any work that makes use of an interface provided
+
+by the Library, but which is not otherwise based on the Library.
+
+Defining a subclass of a class defined by the Library is deemed a mode
+
+of using an interface provided by the Library.
+
+
+ A "Combined Work" is a work produced by combining or linking an
+
+Application with the Library. The particular version of the Library
+
+with which the Combined Work was made is also called the "Linked
+
+Version".
+
+
+ The "Minimal Corresponding Source" for a Combined Work means the
+
+Corresponding Source for the Combined Work, excluding any source code
+
+for portions of the Combined Work that, considered in isolation, are
+
+based on the Application, and not on the Linked Version.
+
+
+ The "Corresponding Application Code" for a Combined Work means the
+
+object code and/or source code for the Application, including any data
+
+and utility programs needed for reproducing the Combined Work from the
+
+Application, but excluding the System Libraries of the Combined Work.
+
+
+ 1. Exception to Section 3 of the GNU GPL.
+
+
+ You may convey a covered work under sections 3 and 4 of this License
+
+without being bound by section 3 of the GNU GPL.
+
+
+ 2. Conveying Modified Versions.
+
+
+ If you modify a copy of the Library, and, in your modifications, a
+
+facility refers to a function or data to be supplied by an Application
+
+that uses the facility (other than as an argument passed when the
+
+facility is invoked), then you may convey a copy of the modified
+
+version:
+
+
+ a) under this License, provided that you make a good faith effort to
+
+ ensure that, in the event an Application does not supply the
+
+ function or data, the facility still operates, and performs
+
+ whatever part of its purpose remains meaningful, or
+
+
+ b) under the GNU GPL, with none of the additional permissions of
+
+ this License applicable to that copy.
+
+
+ 3. Object Code Incorporating Material from Library Header Files.
+
+
+ The object code form of an Application may incorporate material from
+
+a header file that is part of the Library. You may convey such object
+
+code under terms of your choice, provided that, if the incorporated
+
+material is not limited to numerical parameters, data structure
+
+layouts and accessors, or small macros, inline functions and templates
+
+(ten or fewer lines in length), you do both of the following:
+
+
+ a) Give prominent notice with each copy of the object code that the
+
+ Library is used in it and that the Library and its use are
+
+ covered by this License.
+
+
+ b) Accompany the object code with a copy of the GNU GPL and this license
+
+ document.
+
+
+ 4. Combined Works.
+
+
+ You may convey a Combined Work under terms of your choice that,
+
+taken together, effectively do not restrict modification of the
+
+portions of the Library contained in the Combined Work and reverse
+
+engineering for debugging such modifications, if you also do each of
+
+the following:
+
+
+ a) Give prominent notice with each copy of the Combined Work that
+
+ the Library is used in it and that the Library and its use are
+
+ covered by this License.
+
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
+
+ document.
+
+
+ c) For a Combined Work that displays copyright notices during
+
+ execution, include the copyright notice for the Library among
+
+ these notices, as well as a reference directing the user to the
+
+ copies of the GNU GPL and this license document.
+
+
+ d) Do one of the following:
+
+
+ 0) Convey the Minimal Corresponding Source under the terms of this
+
+ License, and the Corresponding Application Code in a form
+
+ suitable for, and under terms that permit, the user to
+
+ recombine or relink the Application with a modified version of
+
+ the Linked Version to produce a modified Combined Work, in the
+
+ manner specified by section 6 of the GNU GPL for conveying
+
+ Corresponding Source.
+
+
+ 1) Use a suitable shared library mechanism for linking with the
+
+ Library. A suitable mechanism is one that (a) uses at run time
+
+ a copy of the Library already present on the user's computer
+
+ system, and (b) will operate properly with a modified version
+
+ of the Library that is interface-compatible with the Linked
+
+ Version.
+
+
+ e) Provide Installation Information, but only if you would otherwise
+
+ be required to provide such information under section 6 of the
+
+ GNU GPL, and only to the extent that such information is
+
+ necessary to install and execute a modified version of the
+
+ Combined Work produced by recombining or relinking the
+
+ Application with a modified version of the Linked Version. (If
+
+ you use option 4d0, the Installation Information must accompany
+
+ the Minimal Corresponding Source and Corresponding Application
+
+ Code. If you use option 4d1, you must provide the Installation
+
+ Information in the manner specified by section 6 of the GNU GPL
+
+ for conveying Corresponding Source.)
+
+
+ 5. Combined Libraries.
+
+
+ You may place library facilities that are a work based on the
+
+Library side by side in a single library together with other library
+
+facilities that are not Applications and are not covered by this
+
+License, and convey such a combined library under terms of your
+
+choice, if you do both of the following:
+
+
+ a) Accompany the combined library with a copy of the same work based
+
+ on the Library, uncombined with any other library facilities,
+
+ conveyed under the terms of this License.
+
+
+ b) Give prominent notice with the combined library that part of it
+
+ is a work based on the Library, and explaining where to find the
+
+ accompanying uncombined form of the same work.
+
+
+ 6. Revised Versions of the GNU Lesser General Public License.
+
+
+ The Free Software Foundation may publish revised and/or new versions
+
+of the GNU Lesser 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
+
+Library as you received it specifies that a certain numbered version
+
+of the GNU Lesser General Public License "or any later version"
+
+applies to it, you have the option of following the terms and
+
+conditions either of that published version or of any later version
+
+published by the Free Software Foundation. If the Library as you
+
+received it does not specify a version number of the GNU Lesser
+
+General Public License, you may choose any version of the GNU Lesser
+
+General Public License ever published by the Free Software Foundation.
+
+
+ If the Library as you received it specifies that a proxy can decide
+
+whether future versions of the GNU Lesser General Public License shall
+
+apply, that proxy's public statement of acceptance of any version is
+
+permanent authorization for you to choose that version for the
+
+Library.
+
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
+
+following conditions are met:
+
+
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+
+disclaimer.
+
+
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+
+disclaimer in the documentation and/or other materials provided with the distribution.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+
+----------
+
+mccabe, version 0.6.1 - MIT License license
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are
+
+met:
+
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+
+ * The names of the contributors may not be used to endorse or
+
+ promote products derived from this software without specific
+
+ prior written permission.
+
+
+Parts of this software package are built on lib2to3 which is
+
+licensed under the PSF license. For more information refer to the
+
+Python license: http://docs.python.org/license.html
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+
+----------
+
+mpmath, version 1.1.0 - BSD license
+
+
+Copyright (c) 2005-2018 Fredrik Johansson and mpmath contributors
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ a. Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+ b. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ c. Neither the name of mpmath nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software
+
+ without specific prior written permission.
+
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+
+DAMAGE.
+
+
+
+
+
+----------
+
+natsort, version 3.0.2 - MIT License license
+
+
+Copyright (c) 2012 Seth M. Morton
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+
+this software and associated documentation files (the "Software"), to deal in
+
+the Software without restriction, including without limitation the rights to
+
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+
+of the Software, and to permit persons to whom the Software is furnished to do
+
+so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
+SOFTWARE.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are
+
+met:
+
+
+ * Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+
+ * Neither the name of the NumPy Developers nor the names of any
+
+ contributors may be used to endorse or promote products derived
+
+ from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+----
+
+
+This binary distribution of NumPy also bundles the following software:
+
+
+
+Name: OpenBLAS
+
+Files: extra-dll\libopenb*.dll
+
+Description: bundled as a dynamically linked library
+
+Availability: https://github.com/xianyi/OpenBLAS/
+
+License: 3-clause BSD
+
+ Copyright (c) 2011-2014, The OpenBLAS Project
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+
+ 1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ 2. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in
+
+ the documentation and/or other materials provided with the
+
+ distribution.
+
+ 3. Neither the name of the OpenBLAS project nor the names of
+
+ its contributors may be used to endorse or promote products
+
+ derived from this software without specific prior written
+
+ permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+
+ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+Name: LAPACK
+
+Files: extra-dll\libopenb*.dll
+
+Description: bundled in OpenBLAS
+
+Availability: https://github.com/xianyi/OpenBLAS/
+
+License 3-clause BSD
+
+ Copyright (c) 1992-2013 The University of Tennessee and The University
+
+ of Tennessee Research Foundation. All rights
+
+ reserved.
+
+ Copyright (c) 2000-2013 The University of California Berkeley. All
+
+ rights reserved.
+
+ Copyright (c) 2006-2013 The University of Colorado Denver. All rights
+
+ reserved.
+
+
+ $COPYRIGHT$
+
+
+ Additional copyrights may follow
+
+
+ $HEADER$
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+
+ - Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ - Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer listed
+
+ in this license in the documentation and/or other materials
+
+ provided with the distribution.
+
+
+ - Neither the name of the copyright holders nor the names of its
+
+ contributors may be used to endorse or promote products derived from
+
+ this software without specific prior written permission.
+
+
+ The copyright holders provide no reassurances that the source code
+
+ provided does not infringe any patent, copyright, or any other
+
+ intellectual property rights of third parties. The copyright holders
+
+ disclaim any liability to any recipient for claims brought against
+
+ recipient by any third party for infringement of that parties
+
+ intellectual property rights.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+Name: GCC runtime library
+
+Files: extra-dll\*.dll
+
+Description: statically linked, in DLL files compiled with gfortran only
+
+Availability: https://gcc.gnu.org/viewcvs/gcc/
+
+License: GPLv3 + runtime exception
+
+ Copyright (C) 2002-2017 Free Software Foundation, Inc.
+
+
+ Libgfortran 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, or (at your option)
+
+ any later version.
+
+
+ Libgfortran 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.
+
+
+ Under Section 7 of GPL version 3, you are granted additional
+
+ permissions described in the GCC Runtime Library Exception, version
+
+ 3.1, as published by the Free Software Foundation.
+
+
+ You should have received a copy of the GNU General Public License and
+
+ a copy of the GCC Runtime Library Exception along with this program;
+
+ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
+
+ .
+
+
+
+Name: Microsoft Visual C++ Runtime Files
+
+Files: extra-dll\msvcp140.dll
+
+License: MSVC
+
+ https://www.visualstudio.com/license-terms/distributable-code-microsoft-visual-studio-2015-rc-microsoft-visual-studio-2015-sdk-rc-includes-utilities-buildserver-files/#visual-c-runtime
+
+
+ Subject to the License Terms for the software, you may copy and
+
+ distribute with your program any of the files within the followng
+
+ folder and its subfolders except as noted below. You may not modify
+
+ these files.
+
+
+ C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist
+
+
+ You may not distribute the contents of the following folders:
+
+
+ C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\debug_nonredist
+
+ C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\onecore\debug_nonredist
+
+
+ Subject to the License Terms for the software, you may copy and
+
+ distribute the following files with your program in your program?s
+
+ application local folder or by deploying them into the Global
+
+ Assembly Cache (GAC):
+
+
+Name: Microsoft Visual C++ Runtime Files
+
+Files: extra-dll\msvc*90.dll, extra-dll\Microsoft.VC90.CRT.manifest
+
+License: MSVC
+
+ For your convenience, we have provided the following folders for
+
+ use when redistributing VC++ runtime files. Subject to the license
+
+ terms for the software, you may redistribute the folder
+
+ (unmodified) in the application local folder as a sub-folder with
+
+ no change to the folder name. You may also redistribute all the
+
+ files (*.dll and *.manifest) within a folder, listed below the
+
+ folder for your convenience, as an entire set.
+
+
+Full text of license texts referred to above follows (that they are
+
+listed below does not necessarily imply the conditions apply to the
+
+present binary release):
+
+
+----
+
+
+GCC RUNTIME LIBRARY EXCEPTION
+
+
+Version 3.1, 31 March 2009
+
+
+Copyright (C) 2009 Free Software Foundation, Inc.
+
+
+Everyone is permitted to copy and distribute verbatim copies of this
+
+license document, but changing it is not allowed.
+
+
+This GCC Runtime Library Exception ("Exception") is an additional
+
+permission under section 7 of the GNU General Public License, version
+
+3 ("GPLv3"). It applies to a given file (the "Runtime Library") that
+
+bears a notice placed by the copyright holder of the file stating that
+
+the file is governed by GPLv3 along with this Exception.
+
+
+When you use GCC to compile a program, GCC may combine portions of
+
+certain GCC header files and runtime libraries with the compiled
+
+program. The purpose of this Exception is to allow compilation of
+
+non-GPL (including proprietary) programs to use, in this way, the
+
+header files and runtime libraries covered by this Exception.
+
+
+0. Definitions.
+
+
+A file is an "Independent Module" if it either requires the Runtime
+
+Library for execution after a Compilation Process, or makes use of an
+
+interface provided by the Runtime Library, but is not otherwise based
+
+on the Runtime Library.
+
+
+"GCC" means a version of the GNU Compiler Collection, with or without
+
+modifications, governed by version 3 (or a specified later version) of
+
+the GNU General Public License (GPL) with the option of using any
+
+subsequent versions published by the FSF.
+
+
+"GPL-compatible Software" is software whose conditions of propagation,
+
+modification and use would permit combination with GCC in accord with
+
+the license of GCC.
+
+
+"Target Code" refers to output from any compiler for a real or virtual
+
+target processor architecture, in executable form or suitable for
+
+input to an assembler, loader, linker and/or execution
+
+phase. Notwithstanding that, Target Code does not include data in any
+
+format that is used as a compiler intermediate representation, or used
+
+for producing a compiler intermediate representation.
+
+
+The "Compilation Process" transforms code entirely represented in
+
+non-intermediate languages designed for human-written code, and/or in
+
+Java Virtual Machine byte code, into Target Code. Thus, for example,
+
+use of source code generators and preprocessors need not be considered
+
+part of the Compilation Process, since the Compilation Process can be
+
+understood as starting with the output of the generators or
+
+preprocessors.
+
+
+A Compilation Process is "Eligible" if it is done using GCC, alone or
+
+with other GPL-compatible software, or if it is done without using any
+
+work based on GCC. For example, using non-GPL-compatible Software to
+
+optimize any GCC intermediate representations would not qualify as an
+
+Eligible Compilation Process.
+
+
+1. Grant of Additional Permission.
+
+
+You have permission to propagate a work of Target Code formed by
+
+combining the Runtime Library with Independent Modules, even if such
+
+propagation would otherwise violate the terms of GPLv3, provided that
+
+all Target Code was generated by Eligible Compilation Processes. You
+
+may then convey such a combination under terms of your choice,
+
+consistent with the licensing of the Independent Modules.
+
+
+2. No Weakening of GCC Copyleft.
+
+
+The availability of this Exception does not imply any general
+
+presumption that third-party software is unaffected by the copyleft
+
+requirements of the license of GCC.
+
+
+----
+
+
+ GNU GENERAL PUBLIC LICENSE
+
+ Version 3, 29 June 2007
+
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+ Preamble
+
+
+ The GNU General Public License is a free, copyleft license for
+
+software and other kinds of works.
+
+
+ The licenses for most software and other practical works are designed
+
+to take away your freedom to share and change the works. By contrast,
+
+the GNU General Public License is intended to guarantee your freedom to
+
+share and change all versions of a program--to make sure it remains free
+
+software for all its users. We, the Free Software Foundation, use the
+
+GNU General Public License for most of our software; it applies also to
+
+any other work released this way by its authors. You can apply it to
+
+your programs, too.
+
+
+ When we speak of free software, we are referring to freedom, not
+
+price. Our General Public Licenses are designed to make sure that you
+
+have the freedom to distribute copies of free software (and charge for
+
+them if you wish), that you receive source code or can get it if you
+
+want it, that you can change the software or use pieces of it in new
+
+free programs, and that you know you can do these things.
+
+
+ To protect your rights, we need to prevent others from denying you
+
+these rights or asking you to surrender the rights. Therefore, you have
+
+certain responsibilities if you distribute copies of the software, or if
+
+you modify it: responsibilities to respect the freedom of others.
+
+
+ For example, if you distribute copies of such a program, whether
+
+gratis or for a fee, you must pass on to the recipients the same
+
+freedoms that you received. You must make sure that they, too, receive
+
+or can get the source code. And you must show them these terms so they
+
+know their rights.
+
+
+ Developers that use the GNU GPL protect your rights with two steps:
+
+(1) assert copyright on the software, and (2) offer you this License
+
+giving you legal permission to copy, distribute and/or modify it.
+
+
+ For the developers' and authors' protection, the GPL clearly explains
+
+that there is no warranty for this free software. For both users' and
+
+authors' sake, the GPL requires that modified versions be marked as
+
+changed, so that their problems will not be attributed erroneously to
+
+authors of previous versions.
+
+
+ Some devices are designed to deny users access to install or run
+
+modified versions of the software inside them, although the manufacturer
+
+can do so. This is fundamentally incompatible with the aim of
+
+protecting users' freedom to change the software. The systematic
+
+pattern of such abuse occurs in the area of products for individuals to
+
+use, which is precisely where it is most unacceptable. Therefore, we
+
+have designed this version of the GPL to prohibit the practice for those
+
+products. If such problems arise substantially in other domains, we
+
+stand ready to extend this provision to those domains in future versions
+
+of the GPL, as needed to protect the freedom of users.
+
+
+ Finally, every program is threatened constantly by software patents.
+
+States should not allow patents to restrict development and use of
+
+software on general-purpose computers, but in those that do, we wish to
+
+avoid the special danger that patents applied to a free program could
+
+make it effectively proprietary. To prevent this, the GPL assures that
+
+patents cannot be used to render the program non-free.
+
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow.
+
+
+ TERMS AND CONDITIONS
+
+
+ 0. Definitions.
+
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+
+works, such as semiconductor masks.
+
+
+ "The Program" refers to any copyrightable work licensed under this
+
+License. Each licensee is addressed as "you". "Licensees" and
+
+"recipients" may be individuals or organizations.
+
+
+ To "modify" a work means to copy from or adapt all or part of the work
+
+in a fashion requiring copyright permission, other than the making of an
+
+exact copy. The resulting work is called a "modified version" of the
+
+earlier work or a work "based on" the earlier work.
+
+
+ A "covered work" means either the unmodified Program or a work based
+
+on the Program.
+
+
+ To "propagate" a work means to do anything with it that, without
+
+permission, would make you directly or secondarily liable for
+
+infringement under applicable copyright law, except executing it on a
+
+computer or modifying a private copy. Propagation includes copying,
+
+distribution (with or without modification), making available to the
+
+public, and in some countries other activities as well.
+
+
+ To "convey" a work means any kind of propagation that enables other
+
+parties to make or receive copies. Mere interaction with a user through
+
+a computer network, with no transfer of a copy, is not conveying.
+
+
+ An interactive user interface displays "Appropriate Legal Notices"
+
+to the extent that it includes a convenient and prominently visible
+
+feature that (1) displays an appropriate copyright notice, and (2)
+
+tells the user that there is no warranty for the work (except to the
+
+extent that warranties are provided), that licensees may convey the
+
+work under this License, and how to view a copy of this License. If
+
+the interface presents a list of user commands or options, such as a
+
+menu, a prominent item in the list meets this criterion.
+
+
+ 1. Source Code.
+
+
+ The "source code" for a work means the preferred form of the work
+
+for making modifications to it. "Object code" means any non-source
+
+form of a work.
+
+
+ A "Standard Interface" means an interface that either is an official
+
+standard defined by a recognized standards body, or, in the case of
+
+interfaces specified for a particular programming language, one that
+
+is widely used among developers working in that language.
+
+
+ The "System Libraries" of an executable work include anything, other
+
+than the work as a whole, that (a) is included in the normal form of
+
+packaging a Major Component, but which is not part of that Major
+
+Component, and (b) serves only to enable use of the work with that
+
+Major Component, or to implement a Standard Interface for which an
+
+implementation is available to the public in source code form. A
+
+"Major Component", in this context, means a major essential component
+
+(kernel, window system, and so on) of the specific operating system
+
+(if any) on which the executable work runs, or a compiler used to
+
+produce the work, or an object code interpreter used to run it.
+
+
+ The "Corresponding Source" for a work in object code form means all
+
+the source code needed to generate, install, and (for an executable
+
+work) run the object code and to modify the work, including scripts to
+
+control those activities. However, it does not include the work's
+
+System Libraries, or general-purpose tools or generally available free
+
+programs which are used unmodified in performing those activities but
+
+which are not part of the work. For example, Corresponding Source
+
+includes interface definition files associated with source files for
+
+the work, and the source code for shared libraries and dynamically
+
+linked subprograms that the work is specifically designed to require,
+
+such as by intimate data communication or control flow between those
+
+subprograms and other parts of the work.
+
+
+ The Corresponding Source need not include anything that users
+
+can regenerate automatically from other parts of the Corresponding
+
+Source.
+
+
+ The Corresponding Source for a work in source code form is that
+
+same work.
+
+
+ 2. Basic Permissions.
+
+
+ All rights granted under this License are granted for the term of
+
+copyright on the Program, and are irrevocable provided the stated
+
+conditions are met. This License explicitly affirms your unlimited
+
+permission to run the unmodified Program. The output from running a
+
+covered work is covered by this License only if the output, given its
+
+content, constitutes a covered work. This License acknowledges your
+
+rights of fair use or other equivalent, as provided by copyright law.
+
+
+ You may make, run and propagate covered works that you do not
+
+convey, without conditions so long as your license otherwise remains
+
+in force. You may convey covered works to others for the sole purpose
+
+of having them make modifications exclusively for you, or provide you
+
+with facilities for running those works, provided that you comply with
+
+the terms of this License in conveying all material for which you do
+
+not control copyright. Those thus making or running the covered works
+
+for you must do so exclusively on your behalf, under your direction
+
+and control, on terms that prohibit them from making any copies of
+
+your copyrighted material outside their relationship with you.
+
+
+ Conveying under any other circumstances is permitted solely under
+
+the conditions stated below. Sublicensing is not allowed; section 10
+
+makes it unnecessary.
+
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+
+ No covered work shall be deemed part of an effective technological
+
+measure under any applicable law fulfilling obligations under article
+
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+
+similar laws prohibiting or restricting circumvention of such
+
+measures.
+
+
+ When you convey a covered work, you waive any legal power to forbid
+
+circumvention of technological measures to the extent such circumvention
+
+is effected by exercising rights under this License with respect to
+
+the covered work, and you disclaim any intention to limit operation or
+
+modification of the work as a means of enforcing, against the work's
+
+users, your or third parties' legal rights to forbid circumvention of
+
+technological measures.
+
+
+ 4. Conveying Verbatim Copies.
+
+
+ You may convey verbatim copies of the Program's source code as you
+
+receive it, in any medium, provided that you conspicuously and
+
+appropriately publish on each copy an appropriate copyright notice;
+
+keep intact all notices stating that this License and any
+
+non-permissive terms added in accord with section 7 apply to the code;
+
+keep intact all notices of the absence of any warranty; and give all
+
+recipients a copy of this License along with the Program.
+
+
+ You may charge any price or no price for each copy that you convey,
+
+and you may offer support or warranty protection for a fee.
+
+
+ 5. Conveying Modified Source Versions.
+
+
+ You may convey a work based on the Program, or the modifications to
+
+produce it from the Program, in the form of source code under the
+
+terms of section 4, provided that you also meet all of these conditions:
+
+
+ a) The work must carry prominent notices stating that you modified
+
+ it, and giving a relevant date.
+
+
+ b) The work must carry prominent notices stating that it is
+
+ released under this License and any conditions added under section
+
+ 7. This requirement modifies the requirement in section 4 to
+
+ "keep intact all notices".
+
+
+ c) You must license the entire work, as a whole, under this
+
+ License to anyone who comes into possession of a copy. This
+
+ License will therefore apply, along with any applicable section 7
+
+ additional terms, to the whole of the work, and all its parts,
+
+ regardless of how they are packaged. This License gives no
+
+ permission to license the work in any other way, but it does not
+
+ invalidate such permission if you have separately received it.
+
+
+ d) If the work has interactive user interfaces, each must display
+
+ Appropriate Legal Notices; however, if the Program has interactive
+
+ interfaces that do not display Appropriate Legal Notices, your
+
+ work need not make them do so.
+
+
+ A compilation of a covered work with other separate and independent
+
+works, which are not by their nature extensions of the covered work,
+
+and which are not combined with it such as to form a larger program,
+
+in or on a volume of a storage or distribution medium, is called an
+
+"aggregate" if the compilation and its resulting copyright are not
+
+used to limit the access or legal rights of the compilation's users
+
+beyond what the individual works permit. Inclusion of a covered work
+
+in an aggregate does not cause this License to apply to the other
+
+parts of the aggregate.
+
+
+ 6. Conveying Non-Source Forms.
+
+
+ You may convey a covered work in object code form under the terms
+
+of sections 4 and 5, provided that you also convey the
+
+machine-readable Corresponding Source under the terms of this License,
+
+in one of these ways:
+
+
+ a) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by the
+
+ Corresponding Source fixed on a durable physical medium
+
+ customarily used for software interchange.
+
+
+ b) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by a
+
+ written offer, valid for at least three years and valid for as
+
+ long as you offer spare parts or customer support for that product
+
+ model, to give anyone who possesses the object code either (1) a
+
+ copy of the Corresponding Source for all the software in the
+
+ product that is covered by this License, on a durable physical
+
+ medium customarily used for software interchange, for a price no
+
+ more than your reasonable cost of physically performing this
+
+ conveying of source, or (2) access to copy the
+
+ Corresponding Source from a network server at no charge.
+
+
+ c) Convey individual copies of the object code with a copy of the
+
+ written offer to provide the Corresponding Source. This
+
+ alternative is allowed only occasionally and noncommercially, and
+
+ only if you received the object code with such an offer, in accord
+
+ with subsection 6b.
+
+
+ d) Convey the object code by offering access from a designated
+
+ place (gratis or for a charge), and offer equivalent access to the
+
+ Corresponding Source in the same way through the same place at no
+
+ further charge. You need not require recipients to copy the
+
+ Corresponding Source along with the object code. If the place to
+
+ copy the object code is a network server, the Corresponding Source
+
+ may be on a different server (operated by you or a third party)
+
+ that supports equivalent copying facilities, provided you maintain
+
+ clear directions next to the object code saying where to find the
+
+ Corresponding Source. Regardless of what server hosts the
+
+ Corresponding Source, you remain obligated to ensure that it is
+
+ available for as long as needed to satisfy these requirements.
+
+
+ e) Convey the object code using peer-to-peer transmission, provided
+
+ you inform other peers where the object code and Corresponding
+
+ Source of the work are being offered to the general public at no
+
+ charge under subsection 6d.
+
+
+ A separable portion of the object code, whose source code is excluded
+
+from the Corresponding Source as a System Library, need not be
+
+included in conveying the object code work.
+
+
+ A "User Product" is either (1) a "consumer product", which means any
+
+tangible personal property which is normally used for personal, family,
+
+or household purposes, or (2) anything designed or sold for incorporation
+
+into a dwelling. In determining whether a product is a consumer product,
+
+doubtful cases shall be resolved in favor of coverage. For a particular
+
+product received by a particular user, "normally used" refers to a
+
+typical or common use of that class of product, regardless of the status
+
+of the particular user or of the way in which the particular user
+
+actually uses, or expects or is expected to use, the product. A product
+
+is a consumer product regardless of whether the product has substantial
+
+commercial, industrial or non-consumer uses, unless such uses represent
+
+the only significant mode of use of the product.
+
+
+ "Installation Information" for a User Product means any methods,
+
+procedures, authorization keys, or other information required to install
+
+and execute modified versions of a covered work in that User Product from
+
+a modified version of its Corresponding Source. The information must
+
+suffice to ensure that the continued functioning of the modified object
+
+code is in no case prevented or interfered with solely because
+
+modification has been made.
+
+
+ If you convey an object code work under this section in, or with, or
+
+specifically for use in, a User Product, and the conveying occurs as
+
+part of a transaction in which the right of possession and use of the
+
+User Product is transferred to the recipient in perpetuity or for a
+
+fixed term (regardless of how the transaction is characterized), the
+
+Corresponding Source conveyed under this section must be accompanied
+
+by the Installation Information. But this requirement does not apply
+
+if neither you nor any third party retains the ability to install
+
+modified object code on the User Product (for example, the work has
+
+been installed in ROM).
+
+
+ The requirement to provide Installation Information does not include a
+
+requirement to continue to provide support service, warranty, or updates
+
+for a work that has been modified or installed by the recipient, or for
+
+the User Product in which it has been modified or installed. Access to a
+
+network may be denied when the modification itself materially and
+
+adversely affects the operation of the network or violates the rules and
+
+protocols for communication across the network.
+
+
+ Corresponding Source conveyed, and Installation Information provided,
+
+in accord with this section must be in a format that is publicly
+
+documented (and with an implementation available to the public in
+
+source code form), and must require no special password or key for
+
+unpacking, reading or copying.
+
+
+ 7. Additional Terms.
+
+
+ "Additional permissions" are terms that supplement the terms of this
+
+License by making exceptions from one or more of its conditions.
+
+Additional permissions that are applicable to the entire Program shall
+
+be treated as though they were included in this License, to the extent
+
+that they are valid under applicable law. If additional permissions
+
+apply only to part of the Program, that part may be used separately
+
+under those permissions, but the entire Program remains governed by
+
+this License without regard to the additional permissions.
+
+
+ When you convey a copy of a covered work, you may at your option
+
+remove any additional permissions from that copy, or from any part of
+
+it. (Additional permissions may be written to require their own
+
+removal in certain cases when you modify the work.) You may place
+
+additional permissions on material, added by you to a covered work,
+
+for which you have or can give appropriate copyright permission.
+
+
+ Notwithstanding any other provision of this License, for material you
+
+add to a covered work, you may (if authorized by the copyright holders of
+
+that material) supplement the terms of this License with terms:
+
+
+ a) Disclaiming warranty or limiting liability differently from the
+
+ terms of sections 15 and 16 of this License; or
+
+
+ b) Requiring preservation of specified reasonable legal notices or
+
+ author attributions in that material or in the Appropriate Legal
+
+ Notices displayed by works containing it; or
+
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+
+ requiring that modified versions of such material be marked in
+
+ reasonable ways as different from the original version; or
+
+
+ d) Limiting the use for publicity purposes of names of licensors or
+
+ authors of the material; or
+
+
+ e) Declining to grant rights under trademark law for use of some
+
+ trade names, trademarks, or service marks; or
+
+
+ f) Requiring indemnification of licensors and authors of that
+
+ material by anyone who conveys the material (or modified versions of
+
+ it) with contractual assumptions of liability to the recipient, for
+
+ any liability that these contractual assumptions directly impose on
+
+ those licensors and authors.
+
+
+ All other non-permissive additional terms are considered "further
+
+restrictions" within the meaning of section 10. If the Program as you
+
+received it, or any part of it, contains a notice stating that it is
+
+governed by this License along with a term that is a further
+
+restriction, you may remove that term. If a license document contains
+
+a further restriction but permits relicensing or conveying under this
+
+License, you may add to a covered work material governed by the terms
+
+of that license document, provided that the further restriction does
+
+not survive such relicensing or conveying.
+
+
+ If you add terms to a covered work in accord with this section, you
+
+must place, in the relevant source files, a statement of the
+
+additional terms that apply to those files, or a notice indicating
+
+where to find the applicable terms.
+
+
+ Additional terms, permissive or non-permissive, may be stated in the
+
+form of a separately written license, or stated as exceptions;
+
+the above requirements apply either way.
+
+
+ 8. Termination.
+
+
+ You may not propagate or modify a covered work except as expressly
+
+provided under this License. Any attempt otherwise to propagate or
+
+modify it is void, and will automatically terminate your rights under
+
+this License (including any patent licenses granted under the third
+
+paragraph of section 11).
+
+
+ However, if you cease all violation of this License, then your
+
+license from a particular copyright holder is reinstated (a)
+
+provisionally, unless and until the copyright holder explicitly and
+
+finally terminates your license, and (b) permanently, if the copyright
+
+holder fails to notify you of the violation by some reasonable means
+
+prior to 60 days after the cessation.
+
+
+ Moreover, your license from a particular copyright holder is
+
+reinstated permanently if the copyright holder notifies you of the
+
+violation by some reasonable means, this is the first time you have
+
+received notice of violation of this License (for any work) from that
+
+copyright holder, and you cure the violation prior to 30 days after
+
+your receipt of the notice.
+
+
+ Termination of your rights under this section does not terminate the
+
+licenses of parties who have received copies or rights from you under
+
+this License. If your rights have been terminated and not permanently
+
+reinstated, you do not qualify to receive new licenses for the same
+
+material under section 10.
+
+
+ 9. Acceptance Not Required for Having Copies.
+
+
+ You are not required to accept this License in order to receive or
+
+run a copy of the Program. Ancillary propagation of a covered work
+
+occurring solely as a consequence of using peer-to-peer transmission
+
+to receive a copy likewise does not require acceptance. However,
+
+nothing other than this License grants you permission to propagate or
+
+modify any covered work. These actions infringe copyright if you do
+
+not accept this License. Therefore, by modifying or propagating a
+
+covered work, you indicate your acceptance of this License to do so.
+
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+
+ Each time you convey a covered work, the recipient automatically
+
+receives a license from the original licensors, to run, modify and
+
+propagate that work, subject to this License. You are not responsible
+
+for enforcing compliance by third parties with this License.
+
+
+ An "entity transaction" is a transaction transferring control of an
+
+organization, or substantially all assets of one, or subdividing an
+
+organization, or merging organizations. If propagation of a covered
+
+work results from an entity transaction, each party to that
+
+transaction who receives a copy of the work also receives whatever
+
+licenses to the work the party's predecessor in interest had or could
+
+give under the previous paragraph, plus a right to possession of the
+
+Corresponding Source of the work from the predecessor in interest, if
+
+the predecessor has it or can get it with reasonable efforts.
+
+
+ You may not impose any further restrictions on the exercise of the
+
+rights granted or affirmed under this License. For example, you may
+
+not impose a license fee, royalty, or other charge for exercise of
+
+rights granted under this License, and you may not initiate litigation
+
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+
+any patent claim is infringed by making, using, selling, offering for
+
+sale, or importing the Program or any portion of it.
+
+
+ 11. Patents.
+
+
+ A "contributor" is a copyright holder who authorizes use under this
+
+License of the Program or a work on which the Program is based. The
+
+work thus licensed is called the contributor's "contributor version".
+
+
+ A contributor's "essential patent claims" are all patent claims
+
+owned or controlled by the contributor, whether already acquired or
+
+hereafter acquired, that would be infringed by some manner, permitted
+
+by this License, of making, using, or selling its contributor version,
+
+but do not include claims that would be infringed only as a
+
+consequence of further modification of the contributor version. For
+
+purposes of this definition, "control" includes the right to grant
+
+patent sublicenses in a manner consistent with the requirements of
+
+this License.
+
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+
+patent license under the contributor's essential patent claims, to
+
+make, use, sell, offer for sale, import and otherwise run, modify and
+
+propagate the contents of its contributor version.
+
+
+ In the following three paragraphs, a "patent license" is any express
+
+agreement or commitment, however denominated, not to enforce a patent
+
+(such as an express permission to practice a patent or covenant not to
+
+sue for patent infringement). To "grant" such a patent license to a
+
+party means to make such an agreement or commitment not to enforce a
+
+patent against the party.
+
+
+ If you convey a covered work, knowingly relying on a patent license,
+
+and the Corresponding Source of the work is not available for anyone
+
+to copy, free of charge and under the terms of this License, through a
+
+publicly available network server or other readily accessible means,
+
+then you must either (1) cause the Corresponding Source to be so
+
+available, or (2) arrange to deprive yourself of the benefit of the
+
+patent license for this particular work, or (3) arrange, in a manner
+
+consistent with the requirements of this License, to extend the patent
+
+license to downstream recipients. "Knowingly relying" means you have
+
+actual knowledge that, but for the patent license, your conveying the
+
+covered work in a country, or your recipient's use of the covered work
+
+in a country, would infringe one or more identifiable patents in that
+
+country that you have reason to believe are valid.
+
+
+ If, pursuant to or in connection with a single transaction or
+
+arrangement, you convey, or propagate by procuring conveyance of, a
+
+covered work, and grant a patent license to some of the parties
+
+receiving the covered work authorizing them to use, propagate, modify
+
+or convey a specific copy of the covered work, then the patent license
+
+you grant is automatically extended to all recipients of the covered
+
+work and works based on it.
+
+
+ A patent license is "discriminatory" if it does not include within
+
+the scope of its coverage, prohibits the exercise of, or is
+
+conditioned on the non-exercise of one or more of the rights that are
+
+specifically granted under this License. You may not convey a covered
+
+work if you are a party to an arrangement with a third party that is
+
+in the business of distributing software, under which you make payment
+
+to the third party based on the extent of your activity of conveying
+
+the work, and under which the third party grants, to any of the
+
+parties who would receive the covered work from you, a discriminatory
+
+patent license (a) in connection with copies of the covered work
+
+conveyed by you (or copies made from those copies), or (b) primarily
+
+for and in connection with specific products or compilations that
+
+contain the covered work, unless you entered into that arrangement,
+
+or that patent license was granted, prior to 28 March 2007.
+
+
+ Nothing in this License shall be construed as excluding or limiting
+
+any implied license or other defenses to infringement that may
+
+otherwise be available to you under applicable patent law.
+
+
+ 12. No Surrender of Others' Freedom.
+
+
+ If conditions are imposed on you (whether by court order, agreement or
+
+otherwise) that contradict the conditions of this License, they do not
+
+excuse you from the conditions of this License. If you cannot convey a
+
+covered work so as to satisfy simultaneously your obligations under this
+
+License and any other pertinent obligations, then as a consequence you may
+
+not convey it at all. For example, if you agree to terms that obligate you
+
+to collect a royalty for further conveying from those to whom you convey
+
+the Program, the only way you could satisfy both those terms and this
+
+License would be to refrain entirely from conveying the Program.
+
+
+ 13. Use with the GNU Affero General Public License.
+
+
+ Notwithstanding any other provision of this License, you have
+
+permission to link or combine any covered work with a work licensed
+
+under version 3 of the GNU Affero General Public License into a single
+
+combined work, and to convey the resulting work. The terms of this
+
+License will continue to apply to the part which is the covered work,
+
+but the special requirements of the GNU Affero General Public License,
+
+section 13, concerning interaction through a network will apply to the
+
+combination as such.
+
+
+ 14. Revised Versions of this License.
+
+
+ The Free Software Foundation may publish revised and/or new versions of
+
+the GNU General Public License from time to time. Such new versions will
+
+be similar in spirit to the present version, but may differ in detail to
+
+address new problems or concerns.
+
+
+ Each version is given a distinguishing version number. If the
+
+Program specifies that a certain numbered version of the GNU General
+
+Public License "or any later version" applies to it, you have the
+
+option of following the terms and conditions either of that numbered
+
+version or of any later version published by the Free Software
+
+Foundation. If the Program does not specify a version number of the
+
+GNU General Public License, you may choose any version ever published
+
+by the Free Software Foundation.
+
+
+ If the Program specifies that a proxy can decide which future
+
+versions of the GNU General Public License can be used, that proxy's
+
+public statement of acceptance of a version permanently authorizes you
+
+to choose that version for the Program.
+
+
+ Later license versions may give you additional or different
+
+permissions. However, no additional obligations are imposed on any
+
+author or copyright holder as a result of your choosing to follow a
+
+later version.
+
+
+ 15. Disclaimer of Warranty.
+
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+
+ 16. Limitation of Liability.
+
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+
+SUCH DAMAGES.
+
+
+ 17. Interpretation of Sections 15 and 16.
+
+
+ If the disclaimer of warranty and limitation of liability provided
+
+above cannot be given local legal effect according to their terms,
+
+reviewing courts shall apply local law that most closely approximates
+
+an absolute waiver of all civil liability in connection with the
+
+Program, unless a warranty or assumption of liability accompanies a
+
+copy of the Program in return for a fee.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ How to Apply These Terms to Your New Programs
+
+
+ If you develop a new program, and you want it to be of the greatest
+
+possible use to the public, the best way to achieve this is to make it
+
+free software which everyone can redistribute and change under these terms.
+
+
+ To do so, attach the following notices to the program. It is safest
+
+to attach them to the start of each source file to most effectively
+
+state the exclusion of warranty; and each file should have at least
+
+the "copyright" line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This program is free software: you can redistribute it and/or modify
+
+ it under the terms of the GNU General Public License as published by
+
+ the Free Software Foundation, either version 3 of the License, or
+
+ (at your option) any later version.
+
+
+ This program is distributed in the hope that it will be useful,
+
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
+ GNU General Public License for more details.
+
+
+ You should have received a copy of the GNU General Public License
+
+ along with this program. If not, see .
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+ If the program does terminal interaction, make it output a short
+
+notice like this when it starts in an interactive mode:
+
+
+ Copyright (C)
+
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+
+ This is free software, and you are welcome to redistribute it
+
+ under certain conditions; type `show c' for details.
+
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+
+parts of the General Public License. Of course, your program's commands
+
+might be different; for a GUI interface, you would use an "about box".
+
+
+ You should also get your employer (if you work as a programmer) or school,
+
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+
+For more information on this, and how to apply and follow the GNU GPL, see
+
+.
+
+
+ The GNU General Public License does not permit incorporating your program
+
+into proprietary programs. If your program is a subroutine library, you
+
+may consider it more useful to permit linking proprietary applications with
+
+the library. If this is what you want to do, use the GNU Lesser General
+
+Public License instead of this License. But first, please read
+
+.
+
+
+
+
+
+----------
+
+parso, version 0.8.3 - MIT License license
+
+
+All contributions towards parso are MIT licensed.
+
+
+Some Python files have been taken from the standard library and are therefore
+
+PSF licensed. Modifications on these files are dual licensed (both MIT and
+
+PSF). These files are:
+
+
+Also some test files under test/normalizer_issue_files have been copied from
+
+https://github.com/PyCQA/pycodestyle (Expat License == MIT License).
+
+
+-------------------------------------------------------------------------------
+
+The MIT License (MIT)
+
+
+Copyright (c) <2013-2017>
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+--------------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+
+otherwise using this software ("Python") in source or binary form and
+
+its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+
+analyze, test, perform and/or display publicly, prepare derivative works,
+
+distribute, and otherwise use Python alone or in any derivative version,
+
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+
+2011, 2012, 2013, 2014, 2015 Python Software Foundation; All Rights Reserved"
+
+are retained in Python alone or in any derivative version prepared by Licensee.
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python.
+
+
+4. PSF is making Python available to Licensee on an "AS IS"
+
+basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. Nothing in this License Agreement shall be deemed to create any
+
+relationship of agency, partnership, or joint venture between PSF and
+
+Licensee. This License Agreement does not grant permission to use PSF
+
+trademarks or trade name in a trademark sense to endorse or promote
+
+products or services of Licensee, or any third party.
+
+
+8. By copying, installing or otherwise using Python, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+Copyright (c) 2009, Jay Loden, Dave Daeschler, Giampaolo Rodola'
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without modification,
+
+are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ * Neither the name of the psutil authors nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software without
+
+ specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+
+----------
+
+pyaml, version 21.10.1 - WTFPL license
+
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+
+ Version 2, December 2004
+
+
+ Copyright (C) 2012 Mike Kazantsev
+
+
+ Everyone is permitted to copy and distribute verbatim or modified
+
+ copies of this license document, and changing it is allowed as long
+
+ as the name is changed.
+
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
+
+
+
+
+
+----------
+
+pywin32, version 227 - Python Software Foundation License license
+
+
+
+
+----------
+
+scikit-learn, version 0.24.2 - new BSD license
+
+
+BSD 3-Clause License
+
+
+Copyright (c) 2007-2020 The scikit-learn developers.
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+* Neither the name of the copyright holder nor the names of its
+
+ contributors may be used to endorse or promote products derived from
+
+ this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Copyright (c) 2016-2020 The scikit-optimize developers.
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+1. Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+3. Neither the name of the copyright holder nor the names of its
+
+ contributors may be used to endorse or promote products derived from
+
+ this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Copyright (c) 2001-2002 Enthought, Inc. 2003-2019, SciPy Developers.
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions
+
+are met:
+
+
+1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+2. Redistributions in binary form must reproduce the above
+
+ copyright notice, this list of conditions and the following
+
+ disclaimer in the documentation and/or other materials provided
+
+ with the distribution.
+
+
+3. Neither the name of the copyright holder nor the names of its
+
+ contributors may be used to endorse or promote products derived
+
+ from this software without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+----
+
+
+This binary distribution of Scipy also bundles the following software:
+
+
+
+Name: OpenBLAS
+
+Files: extra-dll\libopenb*.dll
+
+Description: bundled as a dynamically linked library
+
+Availability: https://github.com/xianyi/OpenBLAS/
+
+License: 3-clause BSD
+
+ Copyright (c) 2011-2014, The OpenBLAS Project
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+
+ 1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ 2. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in
+
+ the documentation and/or other materials provided with the
+
+ distribution.
+
+ 3. Neither the name of the OpenBLAS project nor the names of
+
+ its contributors may be used to endorse or promote products
+
+ derived from this software without specific prior written
+
+ permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+
+ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+Name: LAPACK
+
+Files: extra-dll\libopenb*.dll
+
+Description: bundled in OpenBLAS
+
+Availability: https://github.com/xianyi/OpenBLAS/
+
+License 3-clause BSD
+
+ Copyright (c) 1992-2013 The University of Tennessee and The University
+
+ of Tennessee Research Foundation. All rights
+
+ reserved.
+
+ Copyright (c) 2000-2013 The University of California Berkeley. All
+
+ rights reserved.
+
+ Copyright (c) 2006-2013 The University of Colorado Denver. All rights
+
+ reserved.
+
+
+ $COPYRIGHT$
+
+
+ Additional copyrights may follow
+
+
+ $HEADER$
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are
+
+ met:
+
+
+ - Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+ - Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer listed
+
+ in this license in the documentation and/or other materials
+
+ provided with the distribution.
+
+
+ - Neither the name of the copyright holders nor the names of its
+
+ contributors may be used to endorse or promote products derived from
+
+ this software without specific prior written permission.
+
+
+ The copyright holders provide no reassurances that the source code
+
+ provided does not infringe any patent, copyright, or any other
+
+ intellectual property rights of third parties. The copyright holders
+
+ disclaim any liability to any recipient for claims brought against
+
+ recipient by any third party for infringement of that parties
+
+ intellectual property rights.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+Name: GCC runtime library
+
+Files: extra-dll\*.dll
+
+Description: statically linked, in DLL files compiled with gfortran only
+
+Availability: https://gcc.gnu.org/viewcvs/gcc/
+
+License: GPLv3 + runtime exception
+
+ Copyright (C) 2002-2017 Free Software Foundation, Inc.
+
+
+ Libgfortran 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, or (at your option)
+
+ any later version.
+
+
+ Libgfortran 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.
+
+
+ Under Section 7 of GPL version 3, you are granted additional
+
+ permissions described in the GCC Runtime Library Exception, version
+
+ 3.1, as published by the Free Software Foundation.
+
+
+ You should have received a copy of the GNU General Public License and
+
+ a copy of the GCC Runtime Library Exception along with this program;
+
+ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
+
+ .
+
+
+
+Name: Microsoft Visual C++ Runtime Files
+
+Files: extra-dll\msvcp140.dll
+
+License: MSVC
+
+ https://www.visualstudio.com/license-terms/distributable-code-microsoft-visual-studio-2015-rc-microsoft-visual-studio-2015-sdk-rc-includes-utilities-buildserver-files/#visual-c-runtime
+
+
+ Subject to the License Terms for the software, you may copy and
+
+ distribute with your program any of the files within the followng
+
+ folder and its subfolders except as noted below. You may not modify
+
+ these files.
+
+
+ C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist
+
+
+ You may not distribute the contents of the following folders:
+
+
+ C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\debug_nonredist
+
+ C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\onecore\debug_nonredist
+
+
+ Subject to the License Terms for the software, you may copy and
+
+ distribute the following files with your program in your program?s
+
+ application local folder or by deploying them into the Global
+
+ Assembly Cache (GAC):
+
+
+Name: Microsoft Visual C++ Runtime Files
+
+Files: extra-dll\msvc*90.dll, extra-dll\Microsoft.VC90.CRT.manifest
+
+License: MSVC
+
+ For your convenience, we have provided the following folders for
+
+ use when redistributing VC++ runtime files. Subject to the license
+
+ terms for the software, you may redistribute the folder
+
+ (unmodified) in the application local folder as a sub-folder with
+
+ no change to the folder name. You may also redistribute all the
+
+ files (*.dll and *.manifest) within a folder, listed below the
+
+ folder for your convenience, as an entire set.
+
+
+Full text of license texts referred to above follows (that they are
+
+listed below does not necessarily imply the conditions apply to the
+
+present binary release):
+
+
+----
+
+
+GCC RUNTIME LIBRARY EXCEPTION
+
+
+Version 3.1, 31 March 2009
+
+
+Copyright (C) 2009 Free Software Foundation, Inc.
+
+
+Everyone is permitted to copy and distribute verbatim copies of this
+
+license document, but changing it is not allowed.
+
+
+This GCC Runtime Library Exception ("Exception") is an additional
+
+permission under section 7 of the GNU General Public License, version
+
+3 ("GPLv3"). It applies to a given file (the "Runtime Library") that
+
+bears a notice placed by the copyright holder of the file stating that
+
+the file is governed by GPLv3 along with this Exception.
+
+
+When you use GCC to compile a program, GCC may combine portions of
+
+certain GCC header files and runtime libraries with the compiled
+
+program. The purpose of this Exception is to allow compilation of
+
+non-GPL (including proprietary) programs to use, in this way, the
+
+header files and runtime libraries covered by this Exception.
+
+
+0. Definitions.
+
+
+A file is an "Independent Module" if it either requires the Runtime
+
+Library for execution after a Compilation Process, or makes use of an
+
+interface provided by the Runtime Library, but is not otherwise based
+
+on the Runtime Library.
+
+
+"GCC" means a version of the GNU Compiler Collection, with or without
+
+modifications, governed by version 3 (or a specified later version) of
+
+the GNU General Public License (GPL) with the option of using any
+
+subsequent versions published by the FSF.
+
+
+"GPL-compatible Software" is software whose conditions of propagation,
+
+modification and use would permit combination with GCC in accord with
+
+the license of GCC.
+
+
+"Target Code" refers to output from any compiler for a real or virtual
+
+target processor architecture, in executable form or suitable for
+
+input to an assembler, loader, linker and/or execution
+
+phase. Notwithstanding that, Target Code does not include data in any
+
+format that is used as a compiler intermediate representation, or used
+
+for producing a compiler intermediate representation.
+
+
+The "Compilation Process" transforms code entirely represented in
+
+non-intermediate languages designed for human-written code, and/or in
+
+Java Virtual Machine byte code, into Target Code. Thus, for example,
+
+use of source code generators and preprocessors need not be considered
+
+part of the Compilation Process, since the Compilation Process can be
+
+understood as starting with the output of the generators or
+
+preprocessors.
+
+
+A Compilation Process is "Eligible" if it is done using GCC, alone or
+
+with other GPL-compatible software, or if it is done without using any
+
+work based on GCC. For example, using non-GPL-compatible Software to
+
+optimize any GCC intermediate representations would not qualify as an
+
+Eligible Compilation Process.
+
+
+1. Grant of Additional Permission.
+
+
+You have permission to propagate a work of Target Code formed by
+
+combining the Runtime Library with Independent Modules, even if such
+
+propagation would otherwise violate the terms of GPLv3, provided that
+
+all Target Code was generated by Eligible Compilation Processes. You
+
+may then convey such a combination under terms of your choice,
+
+consistent with the licensing of the Independent Modules.
+
+
+2. No Weakening of GCC Copyleft.
+
+
+The availability of this Exception does not imply any general
+
+presumption that third-party software is unaffected by the copyleft
+
+requirements of the license of GCC.
+
+
+----
+
+
+ GNU GENERAL PUBLIC LICENSE
+
+ Version 3, 29 June 2007
+
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+
+ Everyone is permitted to copy and distribute verbatim copies
+
+ of this license document, but changing it is not allowed.
+
+
+ Preamble
+
+
+ The GNU General Public License is a free, copyleft license for
+
+software and other kinds of works.
+
+
+ The licenses for most software and other practical works are designed
+
+to take away your freedom to share and change the works. By contrast,
+
+the GNU General Public License is intended to guarantee your freedom to
+
+share and change all versions of a program--to make sure it remains free
+
+software for all its users. We, the Free Software Foundation, use the
+
+GNU General Public License for most of our software; it applies also to
+
+any other work released this way by its authors. You can apply it to
+
+your programs, too.
+
+
+ When we speak of free software, we are referring to freedom, not
+
+price. Our General Public Licenses are designed to make sure that you
+
+have the freedom to distribute copies of free software (and charge for
+
+them if you wish), that you receive source code or can get it if you
+
+want it, that you can change the software or use pieces of it in new
+
+free programs, and that you know you can do these things.
+
+
+ To protect your rights, we need to prevent others from denying you
+
+these rights or asking you to surrender the rights. Therefore, you have
+
+certain responsibilities if you distribute copies of the software, or if
+
+you modify it: responsibilities to respect the freedom of others.
+
+
+ For example, if you distribute copies of such a program, whether
+
+gratis or for a fee, you must pass on to the recipients the same
+
+freedoms that you received. You must make sure that they, too, receive
+
+or can get the source code. And you must show them these terms so they
+
+know their rights.
+
+
+ Developers that use the GNU GPL protect your rights with two steps:
+
+(1) assert copyright on the software, and (2) offer you this License
+
+giving you legal permission to copy, distribute and/or modify it.
+
+
+ For the developers' and authors' protection, the GPL clearly explains
+
+that there is no warranty for this free software. For both users' and
+
+authors' sake, the GPL requires that modified versions be marked as
+
+changed, so that their problems will not be attributed erroneously to
+
+authors of previous versions.
+
+
+ Some devices are designed to deny users access to install or run
+
+modified versions of the software inside them, although the manufacturer
+
+can do so. This is fundamentally incompatible with the aim of
+
+protecting users' freedom to change the software. The systematic
+
+pattern of such abuse occurs in the area of products for individuals to
+
+use, which is precisely where it is most unacceptable. Therefore, we
+
+have designed this version of the GPL to prohibit the practice for those
+
+products. If such problems arise substantially in other domains, we
+
+stand ready to extend this provision to those domains in future versions
+
+of the GPL, as needed to protect the freedom of users.
+
+
+ Finally, every program is threatened constantly by software patents.
+
+States should not allow patents to restrict development and use of
+
+software on general-purpose computers, but in those that do, we wish to
+
+avoid the special danger that patents applied to a free program could
+
+make it effectively proprietary. To prevent this, the GPL assures that
+
+patents cannot be used to render the program non-free.
+
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow.
+
+
+ TERMS AND CONDITIONS
+
+
+ 0. Definitions.
+
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+
+works, such as semiconductor masks.
+
+
+ "The Program" refers to any copyrightable work licensed under this
+
+License. Each licensee is addressed as "you". "Licensees" and
+
+"recipients" may be individuals or organizations.
+
+
+ To "modify" a work means to copy from or adapt all or part of the work
+
+in a fashion requiring copyright permission, other than the making of an
+
+exact copy. The resulting work is called a "modified version" of the
+
+earlier work or a work "based on" the earlier work.
+
+
+ A "covered work" means either the unmodified Program or a work based
+
+on the Program.
+
+
+ To "propagate" a work means to do anything with it that, without
+
+permission, would make you directly or secondarily liable for
+
+infringement under applicable copyright law, except executing it on a
+
+computer or modifying a private copy. Propagation includes copying,
+
+distribution (with or without modification), making available to the
+
+public, and in some countries other activities as well.
+
+
+ To "convey" a work means any kind of propagation that enables other
+
+parties to make or receive copies. Mere interaction with a user through
+
+a computer network, with no transfer of a copy, is not conveying.
+
+
+ An interactive user interface displays "Appropriate Legal Notices"
+
+to the extent that it includes a convenient and prominently visible
+
+feature that (1) displays an appropriate copyright notice, and (2)
+
+tells the user that there is no warranty for the work (except to the
+
+extent that warranties are provided), that licensees may convey the
+
+work under this License, and how to view a copy of this License. If
+
+the interface presents a list of user commands or options, such as a
+
+menu, a prominent item in the list meets this criterion.
+
+
+ 1. Source Code.
+
+
+ The "source code" for a work means the preferred form of the work
+
+for making modifications to it. "Object code" means any non-source
+
+form of a work.
+
+
+ A "Standard Interface" means an interface that either is an official
+
+standard defined by a recognized standards body, or, in the case of
+
+interfaces specified for a particular programming language, one that
+
+is widely used among developers working in that language.
+
+
+ The "System Libraries" of an executable work include anything, other
+
+than the work as a whole, that (a) is included in the normal form of
+
+packaging a Major Component, but which is not part of that Major
+
+Component, and (b) serves only to enable use of the work with that
+
+Major Component, or to implement a Standard Interface for which an
+
+implementation is available to the public in source code form. A
+
+"Major Component", in this context, means a major essential component
+
+(kernel, window system, and so on) of the specific operating system
+
+(if any) on which the executable work runs, or a compiler used to
+
+produce the work, or an object code interpreter used to run it.
+
+
+ The "Corresponding Source" for a work in object code form means all
+
+the source code needed to generate, install, and (for an executable
+
+work) run the object code and to modify the work, including scripts to
+
+control those activities. However, it does not include the work's
+
+System Libraries, or general-purpose tools or generally available free
+
+programs which are used unmodified in performing those activities but
+
+which are not part of the work. For example, Corresponding Source
+
+includes interface definition files associated with source files for
+
+the work, and the source code for shared libraries and dynamically
+
+linked subprograms that the work is specifically designed to require,
+
+such as by intimate data communication or control flow between those
+
+subprograms and other parts of the work.
+
+
+ The Corresponding Source need not include anything that users
+
+can regenerate automatically from other parts of the Corresponding
+
+Source.
+
+
+ The Corresponding Source for a work in source code form is that
+
+same work.
+
+
+ 2. Basic Permissions.
+
+
+ All rights granted under this License are granted for the term of
+
+copyright on the Program, and are irrevocable provided the stated
+
+conditions are met. This License explicitly affirms your unlimited
+
+permission to run the unmodified Program. The output from running a
+
+covered work is covered by this License only if the output, given its
+
+content, constitutes a covered work. This License acknowledges your
+
+rights of fair use or other equivalent, as provided by copyright law.
+
+
+ You may make, run and propagate covered works that you do not
+
+convey, without conditions so long as your license otherwise remains
+
+in force. You may convey covered works to others for the sole purpose
+
+of having them make modifications exclusively for you, or provide you
+
+with facilities for running those works, provided that you comply with
+
+the terms of this License in conveying all material for which you do
+
+not control copyright. Those thus making or running the covered works
+
+for you must do so exclusively on your behalf, under your direction
+
+and control, on terms that prohibit them from making any copies of
+
+your copyrighted material outside their relationship with you.
+
+
+ Conveying under any other circumstances is permitted solely under
+
+the conditions stated below. Sublicensing is not allowed; section 10
+
+makes it unnecessary.
+
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+
+ No covered work shall be deemed part of an effective technological
+
+measure under any applicable law fulfilling obligations under article
+
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+
+similar laws prohibiting or restricting circumvention of such
+
+measures.
+
+
+ When you convey a covered work, you waive any legal power to forbid
+
+circumvention of technological measures to the extent such circumvention
+
+is effected by exercising rights under this License with respect to
+
+the covered work, and you disclaim any intention to limit operation or
+
+modification of the work as a means of enforcing, against the work's
+
+users, your or third parties' legal rights to forbid circumvention of
+
+technological measures.
+
+
+ 4. Conveying Verbatim Copies.
+
+
+ You may convey verbatim copies of the Program's source code as you
+
+receive it, in any medium, provided that you conspicuously and
+
+appropriately publish on each copy an appropriate copyright notice;
+
+keep intact all notices stating that this License and any
+
+non-permissive terms added in accord with section 7 apply to the code;
+
+keep intact all notices of the absence of any warranty; and give all
+
+recipients a copy of this License along with the Program.
+
+
+ You may charge any price or no price for each copy that you convey,
+
+and you may offer support or warranty protection for a fee.
+
+
+ 5. Conveying Modified Source Versions.
+
+
+ You may convey a work based on the Program, or the modifications to
+
+produce it from the Program, in the form of source code under the
+
+terms of section 4, provided that you also meet all of these conditions:
+
+
+ a) The work must carry prominent notices stating that you modified
+
+ it, and giving a relevant date.
+
+
+ b) The work must carry prominent notices stating that it is
+
+ released under this License and any conditions added under section
+
+ 7. This requirement modifies the requirement in section 4 to
+
+ "keep intact all notices".
+
+
+ c) You must license the entire work, as a whole, under this
+
+ License to anyone who comes into possession of a copy. This
+
+ License will therefore apply, along with any applicable section 7
+
+ additional terms, to the whole of the work, and all its parts,
+
+ regardless of how they are packaged. This License gives no
+
+ permission to license the work in any other way, but it does not
+
+ invalidate such permission if you have separately received it.
+
+
+ d) If the work has interactive user interfaces, each must display
+
+ Appropriate Legal Notices; however, if the Program has interactive
+
+ interfaces that do not display Appropriate Legal Notices, your
+
+ work need not make them do so.
+
+
+ A compilation of a covered work with other separate and independent
+
+works, which are not by their nature extensions of the covered work,
+
+and which are not combined with it such as to form a larger program,
+
+in or on a volume of a storage or distribution medium, is called an
+
+"aggregate" if the compilation and its resulting copyright are not
+
+used to limit the access or legal rights of the compilation's users
+
+beyond what the individual works permit. Inclusion of a covered work
+
+in an aggregate does not cause this License to apply to the other
+
+parts of the aggregate.
+
+
+ 6. Conveying Non-Source Forms.
+
+
+ You may convey a covered work in object code form under the terms
+
+of sections 4 and 5, provided that you also convey the
+
+machine-readable Corresponding Source under the terms of this License,
+
+in one of these ways:
+
+
+ a) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by the
+
+ Corresponding Source fixed on a durable physical medium
+
+ customarily used for software interchange.
+
+
+ b) Convey the object code in, or embodied in, a physical product
+
+ (including a physical distribution medium), accompanied by a
+
+ written offer, valid for at least three years and valid for as
+
+ long as you offer spare parts or customer support for that product
+
+ model, to give anyone who possesses the object code either (1) a
+
+ copy of the Corresponding Source for all the software in the
+
+ product that is covered by this License, on a durable physical
+
+ medium customarily used for software interchange, for a price no
+
+ more than your reasonable cost of physically performing this
+
+ conveying of source, or (2) access to copy the
+
+ Corresponding Source from a network server at no charge.
+
+
+ c) Convey individual copies of the object code with a copy of the
+
+ written offer to provide the Corresponding Source. This
+
+ alternative is allowed only occasionally and noncommercially, and
+
+ only if you received the object code with such an offer, in accord
+
+ with subsection 6b.
+
+
+ d) Convey the object code by offering access from a designated
+
+ place (gratis or for a charge), and offer equivalent access to the
+
+ Corresponding Source in the same way through the same place at no
+
+ further charge. You need not require recipients to copy the
+
+ Corresponding Source along with the object code. If the place to
+
+ copy the object code is a network server, the Corresponding Source
+
+ may be on a different server (operated by you or a third party)
+
+ that supports equivalent copying facilities, provided you maintain
+
+ clear directions next to the object code saying where to find the
+
+ Corresponding Source. Regardless of what server hosts the
+
+ Corresponding Source, you remain obligated to ensure that it is
+
+ available for as long as needed to satisfy these requirements.
+
+
+ e) Convey the object code using peer-to-peer transmission, provided
+
+ you inform other peers where the object code and Corresponding
+
+ Source of the work are being offered to the general public at no
+
+ charge under subsection 6d.
+
+
+ A separable portion of the object code, whose source code is excluded
+
+from the Corresponding Source as a System Library, need not be
+
+included in conveying the object code work.
+
+
+ A "User Product" is either (1) a "consumer product", which means any
+
+tangible personal property which is normally used for personal, family,
+
+or household purposes, or (2) anything designed or sold for incorporation
+
+into a dwelling. In determining whether a product is a consumer product,
+
+doubtful cases shall be resolved in favor of coverage. For a particular
+
+product received by a particular user, "normally used" refers to a
+
+typical or common use of that class of product, regardless of the status
+
+of the particular user or of the way in which the particular user
+
+actually uses, or expects or is expected to use, the product. A product
+
+is a consumer product regardless of whether the product has substantial
+
+commercial, industrial or non-consumer uses, unless such uses represent
+
+the only significant mode of use of the product.
+
+
+ "Installation Information" for a User Product means any methods,
+
+procedures, authorization keys, or other information required to install
+
+and execute modified versions of a covered work in that User Product from
+
+a modified version of its Corresponding Source. The information must
+
+suffice to ensure that the continued functioning of the modified object
+
+code is in no case prevented or interfered with solely because
+
+modification has been made.
+
+
+ If you convey an object code work under this section in, or with, or
+
+specifically for use in, a User Product, and the conveying occurs as
+
+part of a transaction in which the right of possession and use of the
+
+User Product is transferred to the recipient in perpetuity or for a
+
+fixed term (regardless of how the transaction is characterized), the
+
+Corresponding Source conveyed under this section must be accompanied
+
+by the Installation Information. But this requirement does not apply
+
+if neither you nor any third party retains the ability to install
+
+modified object code on the User Product (for example, the work has
+
+been installed in ROM).
+
+
+ The requirement to provide Installation Information does not include a
+
+requirement to continue to provide support service, warranty, or updates
+
+for a work that has been modified or installed by the recipient, or for
+
+the User Product in which it has been modified or installed. Access to a
+
+network may be denied when the modification itself materially and
+
+adversely affects the operation of the network or violates the rules and
+
+protocols for communication across the network.
+
+
+ Corresponding Source conveyed, and Installation Information provided,
+
+in accord with this section must be in a format that is publicly
+
+documented (and with an implementation available to the public in
+
+source code form), and must require no special password or key for
+
+unpacking, reading or copying.
+
+
+ 7. Additional Terms.
+
+
+ "Additional permissions" are terms that supplement the terms of this
+
+License by making exceptions from one or more of its conditions.
+
+Additional permissions that are applicable to the entire Program shall
+
+be treated as though they were included in this License, to the extent
+
+that they are valid under applicable law. If additional permissions
+
+apply only to part of the Program, that part may be used separately
+
+under those permissions, but the entire Program remains governed by
+
+this License without regard to the additional permissions.
+
+
+ When you convey a copy of a covered work, you may at your option
+
+remove any additional permissions from that copy, or from any part of
+
+it. (Additional permissions may be written to require their own
+
+removal in certain cases when you modify the work.) You may place
+
+additional permissions on material, added by you to a covered work,
+
+for which you have or can give appropriate copyright permission.
+
+
+ Notwithstanding any other provision of this License, for material you
+
+add to a covered work, you may (if authorized by the copyright holders of
+
+that material) supplement the terms of this License with terms:
+
+
+ a) Disclaiming warranty or limiting liability differently from the
+
+ terms of sections 15 and 16 of this License; or
+
+
+ b) Requiring preservation of specified reasonable legal notices or
+
+ author attributions in that material or in the Appropriate Legal
+
+ Notices displayed by works containing it; or
+
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+
+ requiring that modified versions of such material be marked in
+
+ reasonable ways as different from the original version; or
+
+
+ d) Limiting the use for publicity purposes of names of licensors or
+
+ authors of the material; or
+
+
+ e) Declining to grant rights under trademark law for use of some
+
+ trade names, trademarks, or service marks; or
+
+
+ f) Requiring indemnification of licensors and authors of that
+
+ material by anyone who conveys the material (or modified versions of
+
+ it) with contractual assumptions of liability to the recipient, for
+
+ any liability that these contractual assumptions directly impose on
+
+ those licensors and authors.
+
+
+ All other non-permissive additional terms are considered "further
+
+restrictions" within the meaning of section 10. If the Program as you
+
+received it, or any part of it, contains a notice stating that it is
+
+governed by this License along with a term that is a further
+
+restriction, you may remove that term. If a license document contains
+
+a further restriction but permits relicensing or conveying under this
+
+License, you may add to a covered work material governed by the terms
+
+of that license document, provided that the further restriction does
+
+not survive such relicensing or conveying.
+
+
+ If you add terms to a covered work in accord with this section, you
+
+must place, in the relevant source files, a statement of the
+
+additional terms that apply to those files, or a notice indicating
+
+where to find the applicable terms.
+
+
+ Additional terms, permissive or non-permissive, may be stated in the
+
+form of a separately written license, or stated as exceptions;
+
+the above requirements apply either way.
+
+
+ 8. Termination.
+
+
+ You may not propagate or modify a covered work except as expressly
+
+provided under this License. Any attempt otherwise to propagate or
+
+modify it is void, and will automatically terminate your rights under
+
+this License (including any patent licenses granted under the third
+
+paragraph of section 11).
+
+
+ However, if you cease all violation of this License, then your
+
+license from a particular copyright holder is reinstated (a)
+
+provisionally, unless and until the copyright holder explicitly and
+
+finally terminates your license, and (b) permanently, if the copyright
+
+holder fails to notify you of the violation by some reasonable means
+
+prior to 60 days after the cessation.
+
+
+ Moreover, your license from a particular copyright holder is
+
+reinstated permanently if the copyright holder notifies you of the
+
+violation by some reasonable means, this is the first time you have
+
+received notice of violation of this License (for any work) from that
+
+copyright holder, and you cure the violation prior to 30 days after
+
+your receipt of the notice.
+
+
+ Termination of your rights under this section does not terminate the
+
+licenses of parties who have received copies or rights from you under
+
+this License. If your rights have been terminated and not permanently
+
+reinstated, you do not qualify to receive new licenses for the same
+
+material under section 10.
+
+
+ 9. Acceptance Not Required for Having Copies.
+
+
+ You are not required to accept this License in order to receive or
+
+run a copy of the Program. Ancillary propagation of a covered work
+
+occurring solely as a consequence of using peer-to-peer transmission
+
+to receive a copy likewise does not require acceptance. However,
+
+nothing other than this License grants you permission to propagate or
+
+modify any covered work. These actions infringe copyright if you do
+
+not accept this License. Therefore, by modifying or propagating a
+
+covered work, you indicate your acceptance of this License to do so.
+
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+
+ Each time you convey a covered work, the recipient automatically
+
+receives a license from the original licensors, to run, modify and
+
+propagate that work, subject to this License. You are not responsible
+
+for enforcing compliance by third parties with this License.
+
+
+ An "entity transaction" is a transaction transferring control of an
+
+organization, or substantially all assets of one, or subdividing an
+
+organization, or merging organizations. If propagation of a covered
+
+work results from an entity transaction, each party to that
+
+transaction who receives a copy of the work also receives whatever
+
+licenses to the work the party's predecessor in interest had or could
+
+give under the previous paragraph, plus a right to possession of the
+
+Corresponding Source of the work from the predecessor in interest, if
+
+the predecessor has it or can get it with reasonable efforts.
+
+
+ You may not impose any further restrictions on the exercise of the
+
+rights granted or affirmed under this License. For example, you may
+
+not impose a license fee, royalty, or other charge for exercise of
+
+rights granted under this License, and you may not initiate litigation
+
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+
+any patent claim is infringed by making, using, selling, offering for
+
+sale, or importing the Program or any portion of it.
+
+
+ 11. Patents.
+
+
+ A "contributor" is a copyright holder who authorizes use under this
+
+License of the Program or a work on which the Program is based. The
+
+work thus licensed is called the contributor's "contributor version".
+
+
+ A contributor's "essential patent claims" are all patent claims
+
+owned or controlled by the contributor, whether already acquired or
+
+hereafter acquired, that would be infringed by some manner, permitted
+
+by this License, of making, using, or selling its contributor version,
+
+but do not include claims that would be infringed only as a
+
+consequence of further modification of the contributor version. For
+
+purposes of this definition, "control" includes the right to grant
+
+patent sublicenses in a manner consistent with the requirements of
+
+this License.
+
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+
+patent license under the contributor's essential patent claims, to
+
+make, use, sell, offer for sale, import and otherwise run, modify and
+
+propagate the contents of its contributor version.
+
+
+ In the following three paragraphs, a "patent license" is any express
+
+agreement or commitment, however denominated, not to enforce a patent
+
+(such as an express permission to practice a patent or covenant not to
+
+sue for patent infringement). To "grant" such a patent license to a
+
+party means to make such an agreement or commitment not to enforce a
+
+patent against the party.
+
+
+ If you convey a covered work, knowingly relying on a patent license,
+
+and the Corresponding Source of the work is not available for anyone
+
+to copy, free of charge and under the terms of this License, through a
+
+publicly available network server or other readily accessible means,
+
+then you must either (1) cause the Corresponding Source to be so
+
+available, or (2) arrange to deprive yourself of the benefit of the
+
+patent license for this particular work, or (3) arrange, in a manner
+
+consistent with the requirements of this License, to extend the patent
+
+license to downstream recipients. "Knowingly relying" means you have
+
+actual knowledge that, but for the patent license, your conveying the
+
+covered work in a country, or your recipient's use of the covered work
+
+in a country, would infringe one or more identifiable patents in that
+
+country that you have reason to believe are valid.
+
+
+ If, pursuant to or in connection with a single transaction or
+
+arrangement, you convey, or propagate by procuring conveyance of, a
+
+covered work, and grant a patent license to some of the parties
+
+receiving the covered work authorizing them to use, propagate, modify
+
+or convey a specific copy of the covered work, then the patent license
+
+you grant is automatically extended to all recipients of the covered
+
+work and works based on it.
+
+
+ A patent license is "discriminatory" if it does not include within
+
+the scope of its coverage, prohibits the exercise of, or is
+
+conditioned on the non-exercise of one or more of the rights that are
+
+specifically granted under this License. You may not convey a covered
+
+work if you are a party to an arrangement with a third party that is
+
+in the business of distributing software, under which you make payment
+
+to the third party based on the extent of your activity of conveying
+
+the work, and under which the third party grants, to any of the
+
+parties who would receive the covered work from you, a discriminatory
+
+patent license (a) in connection with copies of the covered work
+
+conveyed by you (or copies made from those copies), or (b) primarily
+
+for and in connection with specific products or compilations that
+
+contain the covered work, unless you entered into that arrangement,
+
+or that patent license was granted, prior to 28 March 2007.
+
+
+ Nothing in this License shall be construed as excluding or limiting
+
+any implied license or other defenses to infringement that may
+
+otherwise be available to you under applicable patent law.
+
+
+ 12. No Surrender of Others' Freedom.
+
+
+ If conditions are imposed on you (whether by court order, agreement or
+
+otherwise) that contradict the conditions of this License, they do not
+
+excuse you from the conditions of this License. If you cannot convey a
+
+covered work so as to satisfy simultaneously your obligations under this
+
+License and any other pertinent obligations, then as a consequence you may
+
+not convey it at all. For example, if you agree to terms that obligate you
+
+to collect a royalty for further conveying from those to whom you convey
+
+the Program, the only way you could satisfy both those terms and this
+
+License would be to refrain entirely from conveying the Program.
+
+
+ 13. Use with the GNU Affero General Public License.
+
+
+ Notwithstanding any other provision of this License, you have
+
+permission to link or combine any covered work with a work licensed
+
+under version 3 of the GNU Affero General Public License into a single
+
+combined work, and to convey the resulting work. The terms of this
+
+License will continue to apply to the part which is the covered work,
+
+but the special requirements of the GNU Affero General Public License,
+
+section 13, concerning interaction through a network will apply to the
+
+combination as such.
+
+
+ 14. Revised Versions of this License.
+
+
+ The Free Software Foundation may publish revised and/or new versions of
+
+the GNU General Public License from time to time. Such new versions will
+
+be similar in spirit to the present version, but may differ in detail to
+
+address new problems or concerns.
+
+
+ Each version is given a distinguishing version number. If the
+
+Program specifies that a certain numbered version of the GNU General
+
+Public License "or any later version" applies to it, you have the
+
+option of following the terms and conditions either of that numbered
+
+version or of any later version published by the Free Software
+
+Foundation. If the Program does not specify a version number of the
+
+GNU General Public License, you may choose any version ever published
+
+by the Free Software Foundation.
+
+
+ If the Program specifies that a proxy can decide which future
+
+versions of the GNU General Public License can be used, that proxy's
+
+public statement of acceptance of a version permanently authorizes you
+
+to choose that version for the Program.
+
+
+ Later license versions may give you additional or different
+
+permissions. However, no additional obligations are imposed on any
+
+author or copyright holder as a result of your choosing to follow a
+
+later version.
+
+
+ 15. Disclaimer of Warranty.
+
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+
+ 16. Limitation of Liability.
+
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+
+SUCH DAMAGES.
+
+
+ 17. Interpretation of Sections 15 and 16.
+
+
+ If the disclaimer of warranty and limitation of liability provided
+
+above cannot be given local legal effect according to their terms,
+
+reviewing courts shall apply local law that most closely approximates
+
+an absolute waiver of all civil liability in connection with the
+
+Program, unless a warranty or assumption of liability accompanies a
+
+copy of the Program in return for a fee.
+
+
+ END OF TERMS AND CONDITIONS
+
+
+ How to Apply These Terms to Your New Programs
+
+
+ If you develop a new program, and you want it to be of the greatest
+
+possible use to the public, the best way to achieve this is to make it
+
+free software which everyone can redistribute and change under these terms.
+
+
+ To do so, attach the following notices to the program. It is safest
+
+to attach them to the start of each source file to most effectively
+
+state the exclusion of warranty; and each file should have at least
+
+the "copyright" line and a pointer to where the full notice is found.
+
+
+
+
+ Copyright (C)
+
+
+ This program is free software: you can redistribute it and/or modify
+
+ it under the terms of the GNU General Public License as published by
+
+ the Free Software Foundation, either version 3 of the License, or
+
+ (at your option) any later version.
+
+
+ This program is distributed in the hope that it will be useful,
+
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+
+ GNU General Public License for more details.
+
+
+ You should have received a copy of the GNU General Public License
+
+ along with this program. If not, see .
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+
+ If the program does terminal interaction, make it output a short
+
+notice like this when it starts in an interactive mode:
+
+
+ Copyright (C)
+
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+
+ This is free software, and you are welcome to redistribute it
+
+ under certain conditions; type `show c' for details.
+
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+
+parts of the General Public License. Of course, your program's commands
+
+might be different; for a GUI interface, you would use an "about box".
+
+
+ You should also get your employer (if you work as a programmer) or school,
+
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+
+For more information on this, and how to apply and follow the GNU GPL, see
+
+.
+
+
+ The GNU General Public License does not permit incorporating your program
+
+into proprietary programs. If your program is a subroutine library, you
+
+may consider it more useful to permit linking proprietary applications with
+
+the library. If this is what you want to do, use the GNU Lesser General
+
+Public License instead of this License. But first, please read
+
+.
+
+
+
+
+
+----------
+
+six, version 1.12.0 - MIT License license
+
+
+Copyright (c) 2010-2018 Benjamin Peterson
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+
+this software and associated documentation files (the "Software"), to deal in
+
+the Software without restriction, including without limitation the rights to
+
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+
+the Software, and to permit persons to whom the Software is furnished to do so,
+
+subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Copyright (c) 2006-2021 SymPy Development Team
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ a. Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+ b. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ c. Neither the name of SymPy nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software
+
+ without specific prior written permission.
+
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+
+DAMAGE.
+
+
+Patches that were taken from the Diofant project (https://github.com/diofant/diofant)
+
+are licensed as:
+
+
+Copyright (c) 2006-2018 SymPy Development Team,
+
+ 2013-2021 Sergey B Kirpichev
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ a. Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+ b. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ c. Neither the name of Diofant or SymPy nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software
+
+ without specific prior written permission.
+
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+
+DAMAGE.
+
+
+Submodules taken from the multipledispatch project (https://github.com/mrocklin/multipledispatch)
+
+are licensed as:
+
+
+Copyright (c) 2014 Matthew Rocklin
+
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ a. Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+ b. Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ c. Neither the name of multipledispatch nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software
+
+ without specific prior written permission.
+
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
+
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+
+DAMAGE.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+* Neither the name of this project nor the names of its contributors may be
+
+ used to endorse or promote products derived from this software without
+
+ specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL PYDY AUTHORS BE LIABLE FOR ANY DIRECT,
+
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+The files under the directory sympy/parsing/latex
+
+are directly copied from latex2sympy project and are licensed as:
+
+
+Copyright 2016, latex2sympy
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
+SOFTWARE.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+ * Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+
+ notice, this list of conditions and the following disclaimer in the
+
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of copyright holder nor the names of its contributors
+
+ may be used to endorse or promote products derived from this software
+
+ without specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+
+----------
+
+toml, version 0.10.1 - MIT License license
+
+
+The MIT License
+
+
+Copyright 2013-2019 William Pearson
+
+Copyright 2015-2016 Julien Enselme
+
+Copyright 2016 Google Inc.
+
+Copyright 2017 Samuel Vasko
+
+Copyright 2017 Nate Prewitt
+
+Copyright 2017 Jack Evans
+
+Copyright 2019 Filippo Broggini
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in
+
+all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+
+THE SOFTWARE.
+
+
+Files: *
+
+Copyright: ? 2016 David Fisher
+
+ ? 2008 Armin Ronacher
+
+Comment: The original CPython source is licensed under the
+
+ Python Software Foundation License Version 2
+
+License: Python
+
+
+Files: ast27/Parser/spark.py
+
+Copyright: ? 1998-2002 John Aycock
+
+License: Expat
+
+ Permission is hereby granted, free of charge, to any person obtaining
+
+ a copy of this software and associated documentation files (the
+
+ "Software"), to deal in the Software without restriction, including
+
+ without limitation the rights to use, copy, modify, merge, publish,
+
+ distribute, sublicense, and/or sell copies of the Software, and to
+
+ permit persons to whom the Software is furnished to do so, subject to
+
+ the following conditions:
+
+
+ The above copyright notice and this permission notice shall be
+
+ included in all copies or substantial portions of the Software.
+
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+License: Apache-2.0
+
+ Apache License
+
+ Version 2.0, January 2004
+
+ http://www.apache.org/licenses/
+
+ .
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ .
+
+ 1. Definitions.
+
+ .
+
+ "License" shall mean the terms and conditions for use, reproduction,
+
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ .
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+
+ the copyright owner that is granting the License.
+
+ .
+
+ "Legal Entity" shall mean the union of the acting entity and all
+
+ other entities that control, are controlled by, or are under common
+
+ control with that entity. For the purposes of this definition,
+
+ "control" means (i) the power, direct or indirect, to cause the
+
+ direction or management of such entity, whether by contract or
+
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ .
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+
+ exercising permissions granted by this License.
+
+ .
+
+ "Source" form shall mean the preferred form for making modifications,
+
+ including but not limited to software source code, documentation
+
+ source, and configuration files.
+
+ .
+
+ "Object" form shall mean any form resulting from mechanical
+
+ transformation or translation of a Source form, including but
+
+ not limited to compiled object code, generated documentation,
+
+ and conversions to other media types.
+
+ .
+
+ "Work" shall mean the work of authorship, whether in Source or
+
+ Object form, made available under the License, as indicated by a
+
+ copyright notice that is included in or attached to the work
+
+ (an example is provided in the Appendix below).
+
+ .
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+
+ form, that is based on (or derived from) the Work and for which the
+
+ editorial revisions, annotations, elaborations, or other modifications
+
+ represent, as a whole, an original work of authorship. For the purposes
+
+ of this License, Derivative Works shall not include works that remain
+
+ separable from, or merely link (or bind by name) to the interfaces of,
+
+ the Work and Derivative Works thereof.
+
+ .
+
+ "Contribution" shall mean any work of authorship, including
+
+ the original version of the Work and any modifications or additions
+
+ to that Work or Derivative Works thereof, that is intentionally
+
+ submitted to Licensor for inclusion in the Work by the copyright owner
+
+ or by an individual or Legal Entity authorized to submit on behalf of
+
+ the copyright owner. For the purposes of this definition, "submitted"
+
+ means any form of electronic, verbal, or written communication sent
+
+ to the Licensor or its representatives, including but not limited to
+
+ communication on electronic mailing lists, source code control systems,
+
+ and issue tracking systems that are managed by, or on behalf of, the
+
+ Licensor for the purpose of discussing and improving the Work, but
+
+ excluding communication that is conspicuously marked or otherwise
+
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ .
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+
+ on behalf of whom a Contribution has been received by Licensor and
+
+ subsequently incorporated within the Work.
+
+ .
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ copyright license to reproduce, prepare Derivative Works of,
+
+ publicly display, publicly perform, sublicense, and distribute the
+
+ Work and such Derivative Works in Source or Object form.
+
+ .
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+
+ this License, each Contributor hereby grants to You a perpetual,
+
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+
+ (except as stated in this section) patent license to make, have made,
+
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+
+ where such license applies only to those patent claims licensable
+
+ by such Contributor that are necessarily infringed by their
+
+ Contribution(s) alone or by combination of their Contribution(s)
+
+ with the Work to which such Contribution(s) was submitted. If You
+
+ institute patent litigation against any entity (including a
+
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+
+ or a Contribution incorporated within the Work constitutes direct
+
+ or contributory patent infringement, then any patent licenses
+
+ granted to You under this License for that Work shall terminate
+
+ as of the date such litigation is filed.
+
+ .
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+
+ Work or Derivative Works thereof in any medium, with or without
+
+ modifications, and in Source or Object form, provided that You
+
+ meet the following conditions:
+
+ .
+
+ (a) You must give any other recipients of the Work or
+
+ Derivative Works a copy of this License; and
+
+ .
+
+ (b) You must cause any modified files to carry prominent notices
+
+ stating that You changed the files; and
+
+ .
+
+ (c) You must retain, in the Source form of any Derivative Works
+
+ that You distribute, all copyright, patent, trademark, and
+
+ attribution notices from the Source form of the Work,
+
+ excluding those notices that do not pertain to any part of
+
+ the Derivative Works; and
+
+ .
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+
+ distribution, then any Derivative Works that You distribute must
+
+ include a readable copy of the attribution notices contained
+
+ within such NOTICE file, excluding those notices that do not
+
+ pertain to any part of the Derivative Works, in at least one
+
+ of the following places: within a NOTICE text file distributed
+
+ as part of the Derivative Works; within the Source form or
+
+ documentation, if provided along with the Derivative Works; or,
+
+ within a display generated by the Derivative Works, if and
+
+ wherever such third-party notices normally appear. The contents
+
+ of the NOTICE file are for informational purposes only and
+
+ do not modify the License. You may add Your own attribution
+
+ notices within Derivative Works that You distribute, alongside
+
+ or as an addendum to the NOTICE text from the Work, provided
+
+ that such additional attribution notices cannot be construed
+
+ as modifying the License.
+
+ .
+
+ You may add Your own copyright statement to Your modifications and
+
+ may provide additional or different license terms and conditions
+
+ for use, reproduction, or distribution of Your modifications, or
+
+ for any such Derivative Works as a whole, provided Your use,
+
+ reproduction, and distribution of the Work otherwise complies with
+
+ the conditions stated in this License.
+
+ .
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+
+ any Contribution intentionally submitted for inclusion in the Work
+
+ by You to the Licensor shall be under the terms and conditions of
+
+ this License, without any additional terms or conditions.
+
+ Notwithstanding the above, nothing herein shall supersede or modify
+
+ the terms of any separate license agreement you may have executed
+
+ with Licensor regarding such Contributions.
+
+ .
+
+ 6. Trademarks. This License does not grant permission to use the trade
+
+ names, trademarks, service marks, or product names of the Licensor,
+
+ except as required for reasonable and customary use in describing the
+
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ .
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+
+ agreed to in writing, Licensor provides the Work (and each
+
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+
+ implied, including, without limitation, any warranties or conditions
+
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+
+ appropriateness of using or redistributing the Work and assume any
+
+ risks associated with Your exercise of permissions under this License.
+
+ .
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+
+ whether in tort (including negligence), contract, or otherwise,
+
+ unless required by applicable law (such as deliberate and grossly
+
+ negligent acts) or agreed to in writing, shall any Contributor be
+
+ liable to You for damages, including any direct, indirect, special,
+
+ incidental, or consequential damages of any character arising as a
+
+ result of this License or out of the use or inability to use the
+
+ Work (including but not limited to damages for loss of goodwill,
+
+ work stoppage, computer failure or malfunction, or any and all
+
+ other commercial damages or losses), even if such Contributor
+
+ has been advised of the possibility of such damages.
+
+ .
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+
+ the Work or Derivative Works thereof, You may choose to offer,
+
+ and charge a fee for, acceptance of support, warranty, indemnity,
+
+ or other liability obligations and/or rights consistent with this
+
+ License. However, in accepting such obligations, You may act only
+
+ on Your own behalf and on Your sole responsibility, not on behalf
+
+ of any other Contributor, and only if You agree to indemnify,
+
+ defend, and hold each Contributor harmless for any liability
+
+ incurred by, or claims asserted against, such Contributor by reason
+
+ of your accepting any such warranty or additional liability.
+
+ .
+
+ END OF TERMS AND CONDITIONS
+
+ .
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ .
+
+ To apply the Apache License to your work, attach the following
+
+ boilerplate notice, with the fields enclosed by brackets "[]"
+
+ replaced with your own identifying information. (Don't include
+
+ the brackets!) The text should be enclosed in the appropriate
+
+ comment syntax for the file format. We also recommend that a
+
+ file or class name and description of purpose be included on the
+
+ same "printed page" as the copyright notice for easier
+
+ identification within third-party archives.
+
+ .
+
+ Copyright 2016 Dropbox, Inc.
+
+ .
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+
+ you may not use this file except in compliance with the License.
+
+ You may obtain a copy of the License at
+
+ .
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ .
+
+ Unless required by applicable law or agreed to in writing, software
+
+ distributed under the License is distributed on an "AS IS" BASIS,
+
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+ See the License for the specific language governing permissions and
+
+ limitations under the License.
+
+
+License: Python
+
+ PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+ --------------------------------------------
+
+ .
+
+ 1. This LICENSE AGREEMENT is between the Python Software Foundation
+
+ ("PSF"), and the Individual or Organization ("Licensee") accessing and
+
+ otherwise using this software ("Python") in source or binary form and
+
+ its associated documentation.
+
+ .
+
+ 2. Subject to the terms and conditions of this License Agreement, PSF hereby
+
+ grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+
+ analyze, test, perform and/or display publicly, prepare derivative works,
+
+ distribute, and otherwise use Python alone or in any derivative version,
+
+ provided, however, that PSF's License Agreement and PSF's notice of copyright,
+
+ i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+
+ 2011, 2012, 2013, 2014, 2015, 2016 Python Software Foundation; All Rights
+
+ Reserved" are retained in Python alone or in any derivative version prepared by
+
+ Licensee.
+
+ .
+
+ 3. In the event Licensee prepares a derivative work that is based on
+
+ or incorporates Python or any part thereof, and wants to make
+
+ the derivative work available to others as provided herein, then
+
+ Licensee hereby agrees to include in any such work a brief summary of
+
+ the changes made to Python.
+
+ .
+
+ 4. PSF is making Python available to Licensee on an "AS IS"
+
+ basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+ IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+
+ DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+ FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+
+ INFRINGE ANY THIRD PARTY RIGHTS.
+
+ .
+
+ 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+ FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+ A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+
+ OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+ .
+
+ 6. This License Agreement will automatically terminate upon a material
+
+ breach of its terms and conditions.
+
+ .
+
+ 7. Nothing in this License Agreement shall be deemed to create any
+
+ relationship of agency, partnership, or joint venture between PSF and
+
+ Licensee. This License Agreement does not grant permission to use PSF
+
+ trademarks or trade name in a trademark sense to endorse or promote
+
+ products or services of Licensee, or any third party.
+
+ .
+
+ 8. By copying, installing or otherwise using Python, Licensee
+
+ agrees to be bound by the terms and conditions of this License
+
+ Agreement.
+
+
+
+
+
+----------
+
+virtualenv, version 16.7.0 - MIT License license
+
+
+Copyright (c) 2007 Ian Bicking and Contributors
+
+Copyright (c) 2009 Ian Bicking, The Open Planning Project
+
+Copyright (c) 2011-2016 The virtualenv developers
+
+
+Permission is hereby granted, free of charge, to any person obtaining
+
+a copy of this software and associated documentation files (the
+
+"Software"), to deal in the Software without restriction, including
+
+without limitation the rights to use, copy, modify, merge, publish,
+
+distribute, sublicense, and/or sell copies of the Software, and to
+
+permit persons to whom the Software is furnished to do so, subject to
+
+the following conditions:
+
+
+The above copyright notice and this permission notice shall be
+
+included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+Copyright (c) 2013-2019, Graham Dumpleton
+
+All rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+* Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+
+* Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+There are two licenses associated with xlrd. This one relates to the bulk of
+
+the work done on the library::
+
+
+ Portions copyright ? 2005-2009, Stephen John Machin, Lingfo Pty Ltd
+
+ All rights reserved.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are met:
+
+
+ 1. Redistributions of source code must retain the above copyright notice,
+
+ this list of conditions and the following disclaimer.
+
+
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ 3. None of the names of Stephen John Machin, Lingfo Pty Ltd and any
+
+ contributors may be used to endorse or promote products derived from this
+
+ software without specific prior written permission.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
+
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+
+ THE POSSIBILITY OF SUCH DAMAGE.
+
+
+This one covers some earlier work::
+
+
+ /*-
+
+ * Copyright (c) 2001 David Giffin.
+
+ * All rights reserved.
+
+ *
+
+ * Based on the the Java version: Andrew Khan Copyright (c) 2000.
+
+ *
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ *
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ *
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in
+
+ * the documentation and/or other materials provided with the
+
+ * distribution.
+
+ *
+
+ * 3. All advertising materials mentioning features or use of this
+
+ * software must display the following acknowledgment:
+
+ * "This product includes software developed by
+
+ * David Giffin ."
+
+ *
+
+ * 4. Redistributions of any form whatsoever must retain the following
+
+ * acknowledgment:
+
+ * "This product includes software developed by
+
+ * David Giffin ."
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY DAVID GIFFIN ``AS IS'' AND ANY
+
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID GIFFIN OR
+
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ */
+
+
+A. HISTORY OF THE SOFTWARE
+
+==========================
+
+
+Python was created in the early 1990s by Guido van Rossum at Stichting
+
+Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
+
+as a successor of a language called ABC. Guido remains Python's
+
+principal author, although it includes many contributions from others.
+
+
+In 1995, Guido continued his work on Python at the Corporation for
+
+National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
+
+in Reston, Virginia where he released several versions of the
+
+software.
+
+
+In May 2000, Guido and the Python core development team moved to
+
+BeOpen.com to form the BeOpen PythonLabs team. In October of the same
+
+year, the PythonLabs team moved to Digital Creations (now Zope
+
+Corporation, see http://www.zope.com). In 2001, the Python Software
+
+Foundation (PSF, see http://www.python.org/psf/) was formed, a
+
+non-profit organization created specifically to own Python-related
+
+Intellectual Property. Zope Corporation is a sponsoring member of
+
+the PSF.
+
+
+All Python releases are Open Source (see http://www.opensource.org for
+
+the Open Source Definition). Historically, most, but not all, Python
+
+releases have also been GPL-compatible; the table below summarizes
+
+the various releases.
+
+
+ Release Derived Year Owner GPL-
+
+ from compatible? (1)
+
+
+(1) GPL-compatible doesn't mean that we're distributing Python under
+
+ the GPL. All Python licenses, unlike the GPL, let you distribute
+
+ a modified version without making your changes open source. The
+
+ GPL-compatible licenses make it possible to combine Python with
+
+ other software that is released under the GPL; the others don't.
+
+
+(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
+
+ because its license has a choice of law clause. According to
+
+ CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
+
+ is "not incompatible" with the GPL.
+
+
+Thanks to the many outside volunteers who have worked under Guido's
+
+direction to make these releases possible.
+
+
+
+B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
+
+===============================================================
+
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+--------------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+
+otherwise using this software ("Python") in source or binary form and
+
+its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+
+analyze, test, perform and/or display publicly, prepare derivative works,
+
+distribute, and otherwise use Python alone or in any derivative version,
+
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+
+2011, 2012, 2013, 2014, 2015 Python Software Foundation; All Rights Reserved"
+
+are retained in Python alone or in any derivative version prepared by Licensee.
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python.
+
+
+4. PSF is making Python available to Licensee on an "AS IS"
+
+basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. Nothing in this License Agreement shall be deemed to create any
+
+relationship of agency, partnership, or joint venture between PSF and
+
+Licensee. This License Agreement does not grant permission to use PSF
+
+trademarks or trade name in a trademark sense to endorse or promote
+
+products or services of Licensee, or any third party.
+
+
+8. By copying, installing or otherwise using Python, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+
+-------------------------------------------
+
+
+BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+
+
+1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+
+office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+
+Individual or Organization ("Licensee") accessing and otherwise using
+
+this software in source or binary form and its associated
+
+documentation ("the Software").
+
+
+2. Subject to the terms and conditions of this BeOpen Python License
+
+Agreement, BeOpen hereby grants Licensee a non-exclusive,
+
+royalty-free, world-wide license to reproduce, analyze, test, perform
+
+and/or display publicly, prepare derivative works, distribute, and
+
+otherwise use the Software alone or in any derivative version,
+
+provided, however, that the BeOpen Python License is retained in the
+
+Software, alone or in any derivative version prepared by Licensee.
+
+
+3. BeOpen is making the Software available to Licensee on an "AS IS"
+
+basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+
+SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
+
+AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
+
+DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+5. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+6. This License Agreement shall be governed by and interpreted in all
+
+respects by the law of the State of California, excluding conflict of
+
+law provisions. Nothing in this License Agreement shall be deemed to
+
+create any relationship of agency, partnership, or joint venture
+
+between BeOpen and Licensee. This License Agreement does not grant
+
+permission to use BeOpen trademarks or trade names in a trademark
+
+sense to endorse or promote products or services of Licensee, or any
+
+third party. As an exception, the "BeOpen Python" logos available at
+
+http://www.pythonlabs.com/logos.html may be used according to the
+
+permissions granted on that web page.
+
+
+7. By copying, installing or otherwise using the software, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+
+---------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Corporation for National
+
+Research Initiatives, having an office at 1895 Preston White Drive,
+
+Reston, VA 20191 ("CNRI"), and the Individual or Organization
+
+("Licensee") accessing and otherwise using Python 1.6.1 software in
+
+source or binary form and its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+
+license to reproduce, analyze, test, perform and/or display publicly,
+
+prepare derivative works, distribute, and otherwise use Python 1.6.1
+
+alone or in any derivative version, provided, however, that CNRI's
+
+License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+
+1995-2001 Corporation for National Research Initiatives; All Rights
+
+Reserved" are retained in Python 1.6.1 alone or in any derivative
+
+version prepared by Licensee. Alternately, in lieu of CNRI's License
+
+Agreement, Licensee may substitute the following text (omitting the
+
+quotes): "Python 1.6.1 is made available subject to the terms and
+
+conditions in CNRI's License Agreement. This Agreement together with
+
+Python 1.6.1 may be located on the Internet using the following
+
+unique, persistent identifier (known as a handle): 1895.22/1013. This
+
+Agreement may also be obtained from a proxy server on the Internet
+
+using the following URL: http://hdl.handle.net/1895.22/1013".
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python 1.6.1 or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python 1.6.1.
+
+
+4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+
+basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. This License Agreement shall be governed by the federal
+
+intellectual property law of the United States, including without
+
+limitation the federal copyright law, and, to the extent such
+
+U.S. federal law does not apply, by the law of the Commonwealth of
+
+Virginia, excluding Virginia's conflict of law provisions.
+
+Notwithstanding the foregoing, with regard to derivative works based
+
+on Python 1.6.1 that incorporate non-separable material that was
+
+previously distributed under the GNU General Public License (GPL), the
+
+law of the Commonwealth of Virginia shall govern this License
+
+Agreement only as to issues arising under or with respect to
+
+Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
+
+License Agreement shall be deemed to create any relationship of
+
+agency, partnership, or joint venture between CNRI and Licensee. This
+
+License Agreement does not grant permission to use CNRI trademarks or
+
+trade name in a trademark sense to endorse or promote products or
+
+services of Licensee, or any third party.
+
+
+8. By clicking on the "ACCEPT" button where indicated, or by copying,
+
+installing or otherwise using Python 1.6.1, Licensee agrees to be
+
+bound by the terms and conditions of this License Agreement.
+
+
+ ACCEPT
+
+
+
+CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+
+--------------------------------------------------
+
+
+Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+
+The Netherlands. All rights reserved.
+
+
+Permission to use, copy, modify, and distribute this software and its
+
+documentation for any purpose and without fee is hereby granted,
+
+provided that the above copyright notice appear in all copies and that
+
+both that copyright notice and this permission notice appear in
+
+supporting documentation, and that the name of Stichting Mathematisch
+
+Centrum or CWI not be used in advertising or publicity pertaining to
+
+distribution of the software without specific, written prior
+
+permission.
+
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+
+Additional Conditions for this Windows binary build
+
+---------------------------------------------------
+
+
+This program is linked with and uses Microsoft Distributable Code,
+
+copyrighted by Microsoft Corporation. The Microsoft Distributable Code
+
+includes the following files:
+
+
+msvcr90.dll
+
+msvcp90.dll
+
+msvcm90.dll
+
+
+If you further distribute programs that include the Microsoft
+
+Distributable Code, you must comply with the restrictions on
+
+distribution specified by Microsoft. In particular, you must require
+
+distributors and external end users to agree to terms that protect the
+
+Microsoft Distributable Code at least as much as Microsoft's own
+
+requirements for the Distributable Code. See Microsoft's documentation
+
+(included in its developer tools and on its website at microsoft.com)
+
+for specific details.
+
+
+Redistribution of the Windows binary build of the Python interpreter
+
+complies with this agreement, provided that you do not:
+
+
+- alter any copyright, trademark or patent notice in Microsoft's
+
+Distributable Code;
+
+
+- use Microsoft's trademarks in your programs' names or in a way that
+
+suggests your programs come from or are endorsed by Microsoft;
+
+
+- distribute Microsoft's Distributable Code to run on a platform other
+
+than Microsoft operating systems, run-time technologies or application
+
+platforms; or
+
+
+- include Microsoft Distributable Code in malicious, deceptive or
+
+unlawful programs.
+
+
+These restrictions apply only to the Microsoft Distributable Code as
+
+defined above, not to Python itself or any programs running on the
+
+Python interpreter. The redistribution of the Python interpreter and
+
+libraries is governed by the Python Software License included with this
+
+file, or by other licenses as marked.
+
+
+
+This copy of Python includes a copy of bzip2, which is licensed under the following terms:
+
+
+This program, "bzip2", the associated library "libbzip2", and all
+
+documentation, are copyright (C) 1996-2010 Julian R Seward. All
+
+rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions
+
+are met:
+
+
+1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+2. The origin of this software must not be misrepresented; you must
+
+ not claim that you wrote the original software. If you use this
+
+ software in a product, an acknowledgment in the product
+
+ documentation would be appreciated but is not required.
+
+
+3. Altered source versions must be plainly marked as such, and must
+
+ not be misrepresented as being the original software.
+
+
+4. The name of the author may not be used to endorse or promote
+
+ products derived from this software without specific prior written
+
+ permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+
+OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Julian Seward, jseward@bzip.org
+
+bzip2/libbzip2 version 1.0.6 of 6 September 2010
+
+
+The following is the license that applies to this copy of the Berkeley DB
+
+software. For a license to use the Berkeley DB software under conditions
+
+other than those described here, or to purchase support for this software,
+
+please contact Oracle at berkeleydb-info_us@oracle.com.
+
+
+=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+/*
+
+ * Copyright (c) 1990,2008 Oracle. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. Redistributions in any form must be accompanied by information on
+
+ * how to obtain complete source code for the DB software and any
+
+ * accompanying software that uses the DB software. The source code
+
+ * must either be included in the distribution or be available for no
+
+ * more than the cost of distribution plus a nominal fee, and must be
+
+ * freely redistributable under reasonable conditions. For an
+
+ * executable file, complete source code means the source code for all
+
+ * modules it contains. It does not include source code for modules or
+
+ * files that typically accompany the major components of the operating
+
+ * system on which the executable file runs.
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR
+
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
+
+ * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+
+ * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+
+ * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ */
+
+/*
+
+ * Copyright (c) 1990, 1993, 1994, 1995
+
+ * The Regents of the University of California. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. Neither the name of the University nor the names of its contributors
+
+ * may be used to endorse or promote products derived from this software
+
+ * without specific prior written permission.
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ * SUCH DAMAGE.
+
+ */
+
+/*
+
+ * Copyright (c) 1995, 1996
+
+ * The President and Fellows of Harvard University. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. Neither the name of the University nor the names of its contributors
+
+ * may be used to endorse or promote products derived from this software
+
+ * without specific prior written permission.
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND
+
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ * SUCH DAMAGE.
+
+ */
+
+=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+
+/***
+
+ * ASM: a very small and fast Java bytecode manipulation framework
+
+ * Copyright (c) 2000-2005 INRIA, France Telecom
+
+ * All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. Neither the name of the copyright holders nor the names of its
+
+ * contributors may be used to endorse or promote products derived from
+
+ * this software without specific prior written permission.
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+
+ * THE POSSIBILITY OF SUCH DAMAGE.
+
+ */
+
+
+This copy of Python includes a copy of openssl, which is licensed under the following terms:
+
+
+
+ LICENSE ISSUES
+
+ ==============
+
+
+ The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
+
+ the OpenSSL License and the original SSLeay license apply to the toolkit.
+
+ See below for the actual license texts. Actually both licenses are BSD-style
+
+ Open Source licenses. In case of any license issues related to OpenSSL
+
+ please contact openssl-core@openssl.org.
+
+
+ OpenSSL License
+
+ ---------------
+
+
+/* ====================================================================
+
+ * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ *
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ *
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in
+
+ * the documentation and/or other materials provided with the
+
+ * distribution.
+
+ *
+
+ * 3. All advertising materials mentioning features or use of this
+
+ * software must display the following acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
+
+ *
+
+ * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
+
+ * endorse or promote products derived from this software without
+
+ * prior written permission. For written permission, please contact
+
+ * openssl-core@openssl.org.
+
+ *
+
+ * 5. Products derived from this software may not be called "OpenSSL"
+
+ * nor may "OpenSSL" appear in their names without prior written
+
+ * permission of the OpenSSL Project.
+
+ *
+
+ * 6. Redistributions of any form whatsoever must retain the following
+
+ * acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
+
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
+
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ * ====================================================================
+
+ *
+
+ * This product includes cryptographic software written by Eric Young
+
+ * (eay@cryptsoft.com). This product includes software written by Tim
+
+ * Hudson (tjh@cryptsoft.com).
+
+ *
+
+ */
+
+
+ Original SSLeay License
+
+ -----------------------
+
+
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
+
+ * All rights reserved.
+
+ *
+
+ * This package is an SSL implementation written
+
+ * by Eric Young (eay@cryptsoft.com).
+
+ * The implementation was written so as to conform with Netscapes SSL.
+
+ *
+
+ * This library is free for commercial and non-commercial use as long as
+
+ * the following conditions are aheared to. The following conditions
+
+ * apply to all code found in this distribution, be it the RC4, RSA,
+
+ * lhash, DES, etc., code; not just the SSL code. The SSL documentation
+
+ * included with this distribution is covered by the same copyright terms
+
+ * except that the holder is Tim Hudson (tjh@cryptsoft.com).
+
+ *
+
+ * Copyright remains Eric Young's, and as such any Copyright notices in
+
+ * the code are not to be removed.
+
+ * If this package is used in a product, Eric Young should be given attribution
+
+ * as the author of the parts of the library used.
+
+ * This can be in the form of a textual message at program startup or
+
+ * in documentation (online or textual) provided with the package.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. All advertising materials mentioning features or use of this software
+
+ * must display the following acknowledgement:
+
+ * "This product includes cryptographic software written by
+
+ * Eric Young (eay@cryptsoft.com)"
+
+ * The word 'cryptographic' can be left out if the rouines from the library
+
+ * being used are not cryptographic related :-).
+
+ * 4. If you include any Windows specific code (or a derivative thereof) from
+
+ * the apps directory (application code) you must include an acknowledgement:
+
+ * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
+
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ * SUCH DAMAGE.
+
+ *
+
+ * The licence and distribution terms for any publically available version or
+
+ * derivative of this code cannot be changed. i.e. this code cannot simply be
+
+ * copied and put under another distribution licence
+
+ * [including the GNU Public Licence.]
+
+ */
+
+
+
+This copy of Python includes a copy of Tcl, which is licensed under the following terms:
+
+
+This software is copyrighted by the Regents of the University of
+
+California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
+
+Corporation and other parties. The following terms apply to all files
+
+associated with the software unless explicitly disclaimed in
+
+individual files.
+
+
+The authors hereby grant permission to use, copy, modify, distribute,
+
+and license this software and its documentation for any purpose, provided
+
+that existing copyright notices are retained in all copies and that this
+
+notice is included verbatim in any distributions. No written agreement,
+
+license, or royalty fee is required for any of the authorized uses.
+
+Modifications to this software may be copyrighted by their authors
+
+and need not follow the licensing terms described here, provided that
+
+the new terms are clearly indicated on the first page of each file where
+
+they apply.
+
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+
+MODIFICATIONS.
+
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+
+U.S. government, the Government shall have only "Restricted Rights"
+
+in the software and related documentation as defined in the Federal
+
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+
+are acquiring the software on behalf of the Department of Defense, the
+
+software shall be classified as "Commercial Computer Software" and the
+
+Government shall have only "Restricted Rights" as defined in Clause
+
+252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the
+
+authors grant the U.S. Government and others acting in its behalf
+
+permission to use and distribute the software in accordance with the
+
+terms specified in this license.
+
+
+This copy of Python includes a copy of Tk, which is licensed under the following terms:
+
+
+This software is copyrighted by the Regents of the University of
+
+California, Sun Microsystems, Inc., and other parties. The following
+
+terms apply to all files associated with the software unless explicitly
+
+disclaimed in individual files.
+
+
+The authors hereby grant permission to use, copy, modify, distribute,
+
+and license this software and its documentation for any purpose, provided
+
+that existing copyright notices are retained in all copies and that this
+
+notice is included verbatim in any distributions. No written agreement,
+
+license, or royalty fee is required for any of the authorized uses.
+
+Modifications to this software may be copyrighted by their authors
+
+and need not follow the licensing terms described here, provided that
+
+the new terms are clearly indicated on the first page of each file where
+
+they apply.
+
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+
+MODIFICATIONS.
+
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+
+U.S. government, the Government shall have only "Restricted Rights"
+
+in the software and related documentation as defined in the Federal
+
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+
+are acquiring the software on behalf of the Department of Defense, the
+
+software shall be classified as "Commercial Computer Software" and the
+
+Government shall have only "Restricted Rights" as defined in Clause
+
+252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the
+
+authors grant the U.S. Government and others acting in its behalf
+
+permission to use and distribute the software in accordance with the
+
+terms specified in this license.
+
+
+This copy of Python includes a copy of Tix, which is licensed under the following terms:
+
+
+This software is copyrighted by the above entities
+
+and other parties. The following terms apply to all files associated
+
+with the software unless explicitly disclaimed in individual files.
+
+
+The authors hereby grant permission to use, copy, modify, distribute,
+
+and license this software and its documentation for any purpose, provided
+
+that existing copyright notices are retained in all copies and that this
+
+notice is included verbatim in any distributions. No written agreement,
+
+license, or royalty fee is required for any of the authorized uses.
+
+Modifications to this software may be copyrighted by their authors
+
+and need not follow the licensing terms described here, provided that
+
+the new terms are clearly indicated on the first page of each file where
+
+they apply.
+
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+
+MODIFICATIONS.
+
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+
+U.S. government, the Government shall have only "Restricted Rights"
+
+in the software and related documentation as defined in the Federal
+
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+
+are acquiring the software on behalf of the Department of Defense, the
+
+software shall be classified as "Commercial Computer Software" and the
+
+Government shall have only "Restricted Rights" as defined in Clause
+
+252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+
+authors grant the U.S. Government and others acting in its behalf
+
+permission to use and distribute the software in accordance with the
+
+terms specified in this license.
+
+
+Parts of this software are based on the Tcl/Tk software copyrighted by
+
+the Regents of the University of California, Sun Microsystems, Inc.,
+
+and other parties. The original license terms of the Tcl/Tk software
+
+distribution is included in the file docs/license.tcltk.
+
+
+Parts of this software are based on the HTML Library software
+
+copyrighted by Sun Microsystems, Inc. The original license terms of
+
+the HTML Library software distribution is included in the file
+
+docs/license.html_lib.
+
+
Python version 3.8.10
+A. HISTORY OF THE SOFTWARE
+
+==========================
+
+
+Python was created in the early 1990s by Guido van Rossum at Stichting
+
+Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
+
+as a successor of a language called ABC. Guido remains Python's
+
+principal author, although it includes many contributions from others.
+
+
+In 1995, Guido continued his work on Python at the Corporation for
+
+National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
+
+in Reston, Virginia where he released several versions of the
+
+software.
+
+
+In May 2000, Guido and the Python core development team moved to
+
+BeOpen.com to form the BeOpen PythonLabs team. In October of the same
+
+year, the PythonLabs team moved to Digital Creations, which became
+
+Zope Corporation. In 2001, the Python Software Foundation (PSF, see
+
+https://www.python.org/psf/) was formed, a non-profit organization
+
+created specifically to own Python-related Intellectual Property.
+
+Zope Corporation was a sponsoring member of the PSF.
+
+
+All Python releases are Open Source (see http://www.opensource.org for
+
+the Open Source Definition). Historically, most, but not all, Python
+
+releases have also been GPL-compatible; the table below summarizes
+
+the various releases.
+
+
+ Release Derived Year Owner GPL-
+
+ from compatible? (1)
+
+
+(1) GPL-compatible doesn't mean that we're distributing Python under
+
+ the GPL. All Python licenses, unlike the GPL, let you distribute
+
+ a modified version without making your changes open source. The
+
+ GPL-compatible licenses make it possible to combine Python with
+
+ other software that is released under the GPL; the others don't.
+
+
+(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
+
+ because its license has a choice of law clause. According to
+
+ CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
+
+ is "not incompatible" with the GPL.
+
+
+Thanks to the many outside volunteers who have worked under Guido's
+
+direction to make these releases possible.
+
+
+
+B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
+
+===============================================================
+
+
+Python software and documentation are licensed under the
+
+Python Software Foundation License Version 2.
+
+
+Starting with Python 3.8.6, examples, recipes, and other code in
+
+the documentation are dual licensed under the PSF License Version 2
+
+and the Zero-Clause BSD license.
+
+
+Some software incorporated into Python is under different licenses.
+
+The licenses are listed with code falling under that license.
+
+
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+--------------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+
+otherwise using this software ("Python") in source or binary form and
+
+its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+
+analyze, test, perform and/or display publicly, prepare derivative works,
+
+distribute, and otherwise use Python alone or in any derivative version,
+
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+
+2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Python Software Foundation;
+
+All Rights Reserved" are retained in Python alone or in any derivative version
+
+prepared by Licensee.
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python.
+
+
+4. PSF is making Python available to Licensee on an "AS IS"
+
+basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. Nothing in this License Agreement shall be deemed to create any
+
+relationship of agency, partnership, or joint venture between PSF and
+
+Licensee. This License Agreement does not grant permission to use PSF
+
+trademarks or trade name in a trademark sense to endorse or promote
+
+products or services of Licensee, or any third party.
+
+
+8. By copying, installing or otherwise using Python, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+
+-------------------------------------------
+
+
+BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+
+
+1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+
+office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+
+Individual or Organization ("Licensee") accessing and otherwise using
+
+this software in source or binary form and its associated
+
+documentation ("the Software").
+
+
+2. Subject to the terms and conditions of this BeOpen Python License
+
+Agreement, BeOpen hereby grants Licensee a non-exclusive,
+
+royalty-free, world-wide license to reproduce, analyze, test, perform
+
+and/or display publicly, prepare derivative works, distribute, and
+
+otherwise use the Software alone or in any derivative version,
+
+provided, however, that the BeOpen Python License is retained in the
+
+Software, alone or in any derivative version prepared by Licensee.
+
+
+3. BeOpen is making the Software available to Licensee on an "AS IS"
+
+basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+
+SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
+
+AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
+
+DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+5. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+6. This License Agreement shall be governed by and interpreted in all
+
+respects by the law of the State of California, excluding conflict of
+
+law provisions. Nothing in this License Agreement shall be deemed to
+
+create any relationship of agency, partnership, or joint venture
+
+between BeOpen and Licensee. This License Agreement does not grant
+
+permission to use BeOpen trademarks or trade names in a trademark
+
+sense to endorse or promote products or services of Licensee, or any
+
+third party. As an exception, the "BeOpen Python" logos available at
+
+http://www.pythonlabs.com/logos.html may be used according to the
+
+permissions granted on that web page.
+
+
+7. By copying, installing or otherwise using the software, Licensee
+
+agrees to be bound by the terms and conditions of this License
+
+Agreement.
+
+
+
+CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+
+---------------------------------------
+
+
+1. This LICENSE AGREEMENT is between the Corporation for National
+
+Research Initiatives, having an office at 1895 Preston White Drive,
+
+Reston, VA 20191 ("CNRI"), and the Individual or Organization
+
+("Licensee") accessing and otherwise using Python 1.6.1 software in
+
+source or binary form and its associated documentation.
+
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+
+license to reproduce, analyze, test, perform and/or display publicly,
+
+prepare derivative works, distribute, and otherwise use Python 1.6.1
+
+alone or in any derivative version, provided, however, that CNRI's
+
+License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+
+1995-2001 Corporation for National Research Initiatives; All Rights
+
+Reserved" are retained in Python 1.6.1 alone or in any derivative
+
+version prepared by Licensee. Alternately, in lieu of CNRI's License
+
+Agreement, Licensee may substitute the following text (omitting the
+
+quotes): "Python 1.6.1 is made available subject to the terms and
+
+conditions in CNRI's License Agreement. This Agreement together with
+
+Python 1.6.1 may be located on the Internet using the following
+
+unique, persistent identifier (known as a handle): 1895.22/1013. This
+
+Agreement may also be obtained from a proxy server on the Internet
+
+using the following URL: http://hdl.handle.net/1895.22/1013".
+
+
+3. In the event Licensee prepares a derivative work that is based on
+
+or incorporates Python 1.6.1 or any part thereof, and wants to make
+
+the derivative work available to others as provided herein, then
+
+Licensee hereby agrees to include in any such work a brief summary of
+
+the changes made to Python 1.6.1.
+
+
+4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+
+basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
+
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+
+1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+
+6. This License Agreement will automatically terminate upon a material
+
+breach of its terms and conditions.
+
+
+7. This License Agreement shall be governed by the federal
+
+intellectual property law of the United States, including without
+
+limitation the federal copyright law, and, to the extent such
+
+U.S. federal law does not apply, by the law of the Commonwealth of
+
+Virginia, excluding Virginia's conflict of law provisions.
+
+Notwithstanding the foregoing, with regard to derivative works based
+
+on Python 1.6.1 that incorporate non-separable material that was
+
+previously distributed under the GNU General Public License (GPL), the
+
+law of the Commonwealth of Virginia shall govern this License
+
+Agreement only as to issues arising under or with respect to
+
+Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
+
+License Agreement shall be deemed to create any relationship of
+
+agency, partnership, or joint venture between CNRI and Licensee. This
+
+License Agreement does not grant permission to use CNRI trademarks or
+
+trade name in a trademark sense to endorse or promote products or
+
+services of Licensee, or any third party.
+
+
+8. By clicking on the "ACCEPT" button where indicated, or by copying,
+
+installing or otherwise using Python 1.6.1, Licensee agrees to be
+
+bound by the terms and conditions of this License Agreement.
+
+
+ ACCEPT
+
+
+
+CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+
+--------------------------------------------------
+
+
+Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+
+The Netherlands. All rights reserved.
+
+
+Permission to use, copy, modify, and distribute this software and its
+
+documentation for any purpose and without fee is hereby granted,
+
+provided that the above copyright notice appear in all copies and that
+
+both that copyright notice and this permission notice appear in
+
+supporting documentation, and that the name of Stichting Mathematisch
+
+Centrum or CWI not be used in advertising or publicity pertaining to
+
+distribution of the software without specific, written prior
+
+permission.
+
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION
+
+----------------------------------------------------------------------
+
+
+Permission to use, copy, modify, and/or distribute this software for any
+
+purpose with or without fee is hereby granted.
+
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+
+AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+
+LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
+
+OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+
+PERFORMANCE OF THIS SOFTWARE.
+
+
+
+
+Additional Conditions for this Windows binary build
+
+---------------------------------------------------
+
+
+This program is linked with and uses Microsoft Distributable Code,
+
+copyrighted by Microsoft Corporation. The Microsoft Distributable Code
+
+is embedded in each .exe, .dll and .pyd file as a result of running
+
+the code through a linker.
+
+
+If you further distribute programs that include the Microsoft
+
+Distributable Code, you must comply with the restrictions on
+
+distribution specified by Microsoft. In particular, you must require
+
+distributors and external end users to agree to terms that protect the
+
+Microsoft Distributable Code at least as much as Microsoft's own
+
+requirements for the Distributable Code. See Microsoft's documentation
+
+(included in its developer tools and on its website at microsoft.com)
+
+for specific details.
+
+
+Redistribution of the Windows binary build of the Python interpreter
+
+complies with this agreement, provided that you do not:
+
+
+- alter any copyright, trademark or patent notice in Microsoft's
+
+Distributable Code;
+
+
+- use Microsoft's trademarks in your programs' names or in a way that
+
+suggests your programs come from or are endorsed by Microsoft;
+
+
+- distribute Microsoft's Distributable Code to run on a platform other
+
+than Microsoft operating systems, run-time technologies or application
+
+platforms; or
+
+
+- include Microsoft Distributable Code in malicious, deceptive or
+
+unlawful programs.
+
+
+These restrictions apply only to the Microsoft Distributable Code as
+
+defined above, not to Python itself or any programs running on the
+
+Python interpreter. The redistribution of the Python interpreter and
+
+libraries is governed by the Python Software License included with this
+
+file, or by other licenses as marked.
+
+
+This program, "bzip2", the associated library "libbzip2", and all
+
+documentation, are copyright (C) 1996-2010 Julian R Seward. All
+
+rights reserved.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions
+
+are met:
+
+
+1. Redistributions of source code must retain the above copyright
+
+ notice, this list of conditions and the following disclaimer.
+
+
+2. The origin of this software must not be misrepresented; you must
+
+ not claim that you wrote the original software. If you use this
+
+ software in a product, an acknowledgment in the product
+
+ documentation would be appreciated but is not required.
+
+
+3. Altered source versions must be plainly marked as such, and must
+
+ not be misrepresented as being the original software.
+
+
+4. The name of the author may not be used to endorse or promote
+
+ products derived from this software without specific prior written
+
+ permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+
+OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
+
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+Julian Seward, jseward@bzip.org
+
+bzip2/libbzip2 version 1.0.6 of 6 September 2010
+
+
+ The OpenSSL toolkit stays under a double license, i.e. both the conditions of
+
+ the OpenSSL License and the original SSLeay license apply to the toolkit.
+
+ See below for the actual license texts.
+
+
+ OpenSSL License
+
+ ---------------
+
+
+/* ====================================================================
+
+ * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ *
+
+ * 1. Redistributions of source code must retain the above copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ *
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in
+
+ * the documentation and/or other materials provided with the
+
+ * distribution.
+
+ *
+
+ * 3. All advertising materials mentioning features or use of this
+
+ * software must display the following acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
+
+ *
+
+ * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
+
+ * endorse or promote products derived from this software without
+
+ * prior written permission. For written permission, please contact
+
+ * openssl-core@openssl.org.
+
+ *
+
+ * 5. Products derived from this software may not be called "OpenSSL"
+
+ * nor may "OpenSSL" appear in their names without prior written
+
+ * permission of the OpenSSL Project.
+
+ *
+
+ * 6. Redistributions of any form whatsoever must retain the following
+
+ * acknowledgment:
+
+ * "This product includes software developed by the OpenSSL Project
+
+ * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
+
+ * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
+
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ * ====================================================================
+
+ *
+
+ * This product includes cryptographic software written by Eric Young
+
+ * (eay@cryptsoft.com). This product includes software written by Tim
+
+ * Hudson (tjh@cryptsoft.com).
+
+ *
+
+ */
+
+
+ Original SSLeay License
+
+ -----------------------
+
+
+/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
+
+ * All rights reserved.
+
+ *
+
+ * This package is an SSL implementation written
+
+ * by Eric Young (eay@cryptsoft.com).
+
+ * The implementation was written so as to conform with Netscapes SSL.
+
+ *
+
+ * This library is free for commercial and non-commercial use as long as
+
+ * the following conditions are aheared to. The following conditions
+
+ * apply to all code found in this distribution, be it the RC4, RSA,
+
+ * lhash, DES, etc., code; not just the SSL code. The SSL documentation
+
+ * included with this distribution is covered by the same copyright terms
+
+ * except that the holder is Tim Hudson (tjh@cryptsoft.com).
+
+ *
+
+ * Copyright remains Eric Young's, and as such any Copyright notices in
+
+ * the code are not to be removed.
+
+ * If this package is used in a product, Eric Young should be given attribution
+
+ * as the author of the parts of the library used.
+
+ * This can be in the form of a textual message at program startup or
+
+ * in documentation (online or textual) provided with the package.
+
+ *
+
+ * Redistribution and use in source and binary forms, with or without
+
+ * modification, are permitted provided that the following conditions
+
+ * are met:
+
+ * 1. Redistributions of source code must retain the copyright
+
+ * notice, this list of conditions and the following disclaimer.
+
+ * 2. Redistributions in binary form must reproduce the above copyright
+
+ * notice, this list of conditions and the following disclaimer in the
+
+ * documentation and/or other materials provided with the distribution.
+
+ * 3. All advertising materials mentioning features or use of this software
+
+ * must display the following acknowledgement:
+
+ * "This product includes cryptographic software written by
+
+ * Eric Young (eay@cryptsoft.com)"
+
+ * The word 'cryptographic' can be left out if the rouines from the library
+
+ * being used are not cryptographic related :-).
+
+ * 4. If you include any Windows specific code (or a derivative thereof) from
+
+ * the apps directory (application code) you must include an acknowledgement:
+
+ * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
+
+ *
+
+ * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
+
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+
+ * SUCH DAMAGE.
+
+ *
+
+ * The licence and distribution terms for any publically available version or
+
+ * derivative of this code cannot be changed. i.e. this code cannot simply be
+
+ * copied and put under another distribution licence
+
+ * [including the GNU Public Licence.]
+
+ */
+
+
+
+libffi - Copyright (c) 1996-2014 Anthony Green, Red Hat, Inc and others.
+
+See source files for details.
+
+
+Permission is hereby granted, free of charge, to any person obtaining
+
+a copy of this software and associated documentation files (the
+
+``Software''), to deal in the Software without restriction, including
+
+without limitation the rights to use, copy, modify, merge, publish,
+
+distribute, sublicense, and/or sell copies of the Software, and to
+
+permit persons to whom the Software is furnished to do so, subject to
+
+the following conditions:
+
+
+The above copyright notice and this permission notice shall be
+
+included in all copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
+
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+This software is copyrighted by the Regents of the University of
+
+California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
+
+Corporation and other parties. The following terms apply to all files
+
+associated with the software unless explicitly disclaimed in
+
+individual files.
+
+
+The authors hereby grant permission to use, copy, modify, distribute,
+
+and license this software and its documentation for any purpose, provided
+
+that existing copyright notices are retained in all copies and that this
+
+notice is included verbatim in any distributions. No written agreement,
+
+license, or royalty fee is required for any of the authorized uses.
+
+Modifications to this software may be copyrighted by their authors
+
+and need not follow the licensing terms described here, provided that
+
+the new terms are clearly indicated on the first page of each file where
+
+they apply.
+
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+
+MODIFICATIONS.
+
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+
+U.S. government, the Government shall have only "Restricted Rights"
+
+in the software and related documentation as defined in the Federal
+
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+
+are acquiring the software on behalf of the Department of Defense, the
+
+software shall be classified as "Commercial Computer Software" and the
+
+Government shall have only "Restricted Rights" as defined in Clause
+
+252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the
+
+authors grant the U.S. Government and others acting in its behalf
+
+permission to use and distribute the software in accordance with the
+
+terms specified in this license.
+
+
+This software is copyrighted by the Regents of the University of
+
+California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
+
+Corporation, Apple Inc. and other parties. The following terms apply to
+
+all files associated with the software unless explicitly disclaimed in
+
+individual files.
+
+
+The authors hereby grant permission to use, copy, modify, distribute,
+
+and license this software and its documentation for any purpose, provided
+
+that existing copyright notices are retained in all copies and that this
+
+notice is included verbatim in any distributions. No written agreement,
+
+license, or royalty fee is required for any of the authorized uses.
+
+Modifications to this software may be copyrighted by their authors
+
+and need not follow the licensing terms described here, provided that
+
+the new terms are clearly indicated on the first page of each file where
+
+they apply.
+
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+
+MODIFICATIONS.
+
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+
+U.S. government, the Government shall have only "Restricted Rights"
+
+in the software and related documentation as defined in the Federal
+
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+
+are acquiring the software on behalf of the Department of Defense, the
+
+software shall be classified as "Commercial Computer Software" and the
+
+Government shall have only "Restricted Rights" as defined in Clause
+
+252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the
+
+authors grant the U.S. Government and others acting in its behalf
+
+permission to use and distribute the software in accordance with the
+
+terms specified in this license.
+
+
+This software is copyrighted by the above entities
+
+and other parties. The following terms apply to all files associated
+
+with the software unless explicitly disclaimed in individual files.
+
+
+The authors hereby grant permission to use, copy, modify, distribute,
+
+and license this software and its documentation for any purpose, provided
+
+that existing copyright notices are retained in all copies and that this
+
+notice is included verbatim in any distributions. No written agreement,
+
+license, or royalty fee is required for any of the authorized uses.
+
+Modifications to this software may be copyrighted by their authors
+
+and need not follow the licensing terms described here, provided that
+
+the new terms are clearly indicated on the first page of each file where
+
+they apply.
+
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+
+POSSIBILITY OF SUCH DAMAGE.
+
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
+
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+
+MODIFICATIONS.
+
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+
+U.S. government, the Government shall have only "Restricted Rights"
+
+in the software and related documentation as defined in the Federal
+
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
+
+are acquiring the software on behalf of the Department of Defense, the
+
+software shall be classified as "Commercial Computer Software" and the
+
+Government shall have only "Restricted Rights" as defined in Clause
+
+252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
+
+authors grant the U.S. Government and others acting in its behalf
+
+permission to use and distribute the software in accordance with the
+
+terms specified in this license.
+
+
+Parts of this software are based on the Tcl/Tk software copyrighted by
+
+the Regents of the University of California, Sun Microsystems, Inc.,
+
+and other parties. The original license terms of the Tcl/Tk software
+
+distribution is included in the file docs/license.tcltk.
+
+
+Parts of this software are based on the HTML Library software
+
+copyrighted by Sun Microsystems, Inc. The original license terms of
+
+the HTML Library software distribution is included in the file
+
+docs/license.html_lib.
+
+
+
SLEPc version 3.9.0
+License
+
+SLEPc is distributed under a 2-clause BSD license.
+
+
+ Redistribution and use in source and binary forms, with or without
+
+ modification, are permitted provided that the following conditions are met:
+
+
+ 1. Redistributions of source code must retain the above copyright notice, this
+
+ list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+
+ this list of conditions and the following disclaimer in the documentation
+
+ and/or other materials provided with the distribution.
+
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+ This license DOES NOT apply to any software that may be obtained via the
+
+ --download-package option of the SLEPc configuration. Each of those
+
+ packages are covered by their own licenses.
+
SQLite version 3.16.2
+Copyright Release for
+
+Contributions To SQLite
+
+
+SQLite is software that implements an embeddable SQL database engine. SQLite is available for free download from http://www.sqlite.org/. The principal author and maintainer of SQLite has disclaimed all copyright interest in his contributions to SQLite and thus released his contributions into the public domain. In order to keep the SQLite software unencumbered by copyright claims, the principal author asks others who may from time to time contribute changes and enhancements to likewise disclaim their own individual copyright interest.
+
+
+Because the SQLite software found at http://www.sqlite.org/ is in the public domain, anyone is free to download the SQLite software from that website, make changes to the software, use, distribute, or sell the modified software, under either the original name or under some new name, without any need to obtain permission, pay royalties, acknowledge the original source of the software, or in any other way compensate, identify, or notify the original authors. Nobody is in any way compelled to contribute their SQLite changes and enhancements back to the SQLite website. This document concerns only changes and enhancements to SQLite that are intentionally and deliberately contributed back to the SQLite website.
+
+
+For the purposes of this document, "SQLite software" shall mean any computer source code, documentation, makefiles, test scripts, or other information that is published on the SQLite website, http://www.sqlite.org/. Precompiled binaries are excluded from the definition of "SQLite software" in this document because the process of compiling the software may introduce information from outside sources which is not properly a part of SQLite.
+
+
+The header comments on the SQLite source files exhort the reader to share freely and to never take more than one gives. In the spirit of that exhortation I make the following declarations:
+
+
+I dedicate to the public domain any and all copyright interest in the SQLite software that was publicly available on the SQLite website (http://www.sqlite.org/) prior to the date of the signature below and any changes or enhancements to the SQLite software that I may cause to be published on that website in the future. I make this dedication for the benefit of the public at large and to the detriment of my heirs and successors. I intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to the SQLite software under copyright law.
+
+
+To the best of my knowledge and belief, the changes and enhancements that I have contributed to SQLite are either originally written by me or are derived from prior works which I have verified are also in the public domain and are not subject to claims of copyright by other parties.
+
+
+To the best of my knowledge and belief, no individual, business, organization, government, or other entity has any copyright interest in the SQLite software as it existed on the SQLite website as of the date on the signature line below.
+
+
+I agree never to publish any additional information to the SQLite website (by CVS, email, scp, FTP, or any other means) unless that information is an original work of authorship by me or is derived from prior published versions of SQLite. I agree never to copy and paste code into the SQLite code base from other sources. I agree never to publish on the SQLite website any information that would violate a law or breach a contract.
+
SVGlib version 1.2
+SVGREN
+
+------
+
+MIT License
+
+
+Copyright (c) 2020 cppfw
+
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+
+of this software and associated documentation files (the "Software"), to deal
+
+in the Software without restriction, including without limitation the rights
+
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+
+copies of the Software, and to permit persons to whom the Software is
+
+furnished to do so, subject to the following conditions:
+
+
+The above copyright notice and this permission notice shall be included in all
+
+copies or substantial portions of the Software.
+
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+
+SOFTWARE.
+
tetgen version 1.6.0
+//============================================================================//
+
+// //
+
+// TetGen //
+
+// //
+
+// A Quality Tetrahedral Mesh Generator and A 3D Delaunay Triangulator //
+
+// //
+
+// Version 1.6.0 //
+
+// August 31, 2020 //
+
+// //
+
+// Copyright (C) 2002--2020 //
+
+// //
+
+// Hang Si //
+
+// Research Group: Numerical Mathematics and Scientific Computing //
+
+// Weierstrass Institute for Applied Analysis and Stochastics (WIAS) //
+
+// Mohrenstr. 39, 10117 Berlin, Germany //
+
+// si@wias-berlin.de //
+
+// //
+
+// TetGen is freely available through the website: http://www.tetgen.org. //
+
+// It may be copied, modified, and redistributed for non-commercial use. //
+
+// Please consult the file LICENSE for the detailed copyright notices. //
+
+// //
+
+//============================================================================//
+
Vega FEM Simulation Library version 2.2
+/*************************************************************************
+
+ * *
+
+ * Vega FEM Simulation Library Version 2.2 *
+
+ * *
+
+ * "reducedForceModel" library , Copyright (C) 2007 CMU, 2009 MIT, *
+
+ * 2015 USC *
+
+ * All rights reserved. *
+
+ * *
+
+ * Code author: Jernej Barbic *
+
+ * http://www.jernejbarbic.com/code *
+
+ * *
+
+ * Research: Jernej Barbic, Fun Shing Sin, Daniel Schroeder, *
+
+ * Doug L. James, Jovan Popovic *
+
+ * *
+
+ * Funding: National Science Foundation, Link Foundation, *
+
+ * Singapore-MIT GAMBIT Game Lab, *
+
+ * Zumberge Research and Innovation Fund at USC *
+
+ * *
+
+ * This library is free software; you can redistribute it and/or *
+
+ * modify it under the terms of the BSD-style license that is *
+
+ * included with this library in the file LICENSE.txt *
+
+ * *
+
+ * This library 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 file *
+
+ * LICENSE.TXT for more details. *
+
+ * *
+
+ *************************************************************************/
+
+
Vega FEM Simulation Library version 2.2
+/*************************************************************************
+
+ * *
+
+ * Vega FEM Simulation Library Version 2.2 *
+
+ * *
+
+ * "reducedForceModel" library , Copyright (C) 2007 CMU, 2009 MIT, *
+
+ * 2015 USC *
+
+ * All rights reserved. *
+
+ * *
+
+ * Code author: Jernej Barbic *
+
+ * http://www.jernejbarbic.com/code *
+
+ * *
+
+ * Research: Jernej Barbic, Fun Shing Sin, Daniel Schroeder, *
+
+ * Doug L. James, Jovan Popovic *
+
+ * *
+
+ * Funding: National Science Foundation, Link Foundation, *
+
+ * Singapore-MIT GAMBIT Game Lab, *
+
+ * Zumberge Research and Innovation Fund at USC *
+
+ * *
+
+ * This library is free software; you can redistribute it and/or *
+
+ * modify it under the terms of the BSD-style license that is *
+
+ * included with this library in the file LICENSE.txt *
+
+ * *
+
+ * This library 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 file *
+
+ * LICENSE.TXT for more details. *
+
+ * *
+
+ *************************************************************************/
+
+
+ Copyright (c) Luca Antiga, David Steinman. All rights reserved.
+
+ See LICENSE file for details.
+
+
+ Portions of this code are covered under the VTK copyright.
+
+ See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm
+
+ for details.
+
+
+ This software is distributed WITHOUT ANY WARRANTY; without even
+
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+
+ PURPOSE. See the above copyright notices for more information.
+
+
+Copyright (c) 1993-2015 Ken Martin, Will Schroeder, Bill Lorensen
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ * Neither name of Ken Martin, Will Schroeder, or Bill Lorensen nor the names
+ of any contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Copyright (c) 1993-2015 Ken Martin, Will Schroeder, Bill Lorensen
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ * Neither name of Ken Martin, Will Schroeder, or Bill Lorensen nor the names
+ of any contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC.
+
+Produced at the Lawrence Livermore National Laboratory.
+
+Written by Peter Lindstrom, Markus Salasoo, Matt Larsen, and Stephen Herbein.
+
+LLNL-CODE-663824.
+
+All rights reserved.
+
+
+This file is part of the zfp library.
+
+For details, see http://computation.llnl.gov/casc/zfp/.
+
+
+Redistribution and use in source and binary forms, with or without
+
+modification, are permitted provided that the following conditions are met:
+
+
+1. Redistributions of source code must retain the above copyright notice,
+
+this list of conditions and the disclaimer below.
+
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+
+this list of conditions and the disclaimer (as noted below) in the
+
+documentation and/or other materials provided with the distribution.
+
+
+3. Neither the name of the LLNS/LLNL nor the names of its contributors may
+
+be used to endorse or promote products derived from this software without
+
+specific prior written permission.
+
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+
+ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
+
+LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+Additional BSD Notice
+
+
+1. This notice is required to be provided under our contract with the U.S.
+
+Department of Energy (DOE). This work was produced at Lawrence Livermore
+
+National Laboratory under Contract No. DE-AC52-07NA27344 with the DOE.
+
+
+2. Neither the United States Government nor Lawrence Livermore National
+
+Security, LLC nor any of their employees, makes any warranty, express or
+
+implied, or assumes any liability or responsibility for the accuracy,
+
+completeness, or usefulness of any information, apparatus, product, or
+
+process disclosed, or represents that its use would not infringe
+
+privately-owned rights.
+
+
+3. Also, reference herein to any specific commercial products, process, or
+
+services by trade name, trademark, manufacturer or otherwise does not
+
+necessarily constitute or imply its endorsement, recommendation, or
+
+favoring by the United States Government or Lawrence Livermore National
+
+Security, LLC. The views and opinions of authors expressed herein do not
+
+necessarily state or reflect those of the United States Government or
+
+Lawrence Livermore National Security, LLC, and shall not be used for
+
+advertising or product endorsement purposes.
+
+
ZLIB version 1.2.11
+ version 1.2.11, January 15th, 2017
+
+
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
+
+
+ This software is provided 'as-is', without any express or implied
+
+ warranty. In no event will the authors be held liable for any damages
+
+ arising from the use of this software.
+
+
+ Permission is granted to anyone to use this software for any purpose,
+
+ including commercial applications, and to alter it and redistribute it
+
+ freely, subject to the following restrictions:
+
+
+ 1. The origin of this software must not be misrepresented; you must not
+
+ claim that you wrote the original software. If you use this software
+
+ in a product, an acknowledgment in the product documentation would be
+
+ appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+
+ misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source distribution.
+
+
+
+
+(1) Dashboard Tabs
+
+ * ```PROJECTS```: Existing projects (own projects, or projects that have been shared by other users) can be accessed and managed, and new projects can be created. Each project is represented by a card.
+ * ```TUTORIALS```: A set of pre-built read-only tutorial projects with results is available to all **_S4L__lite_** users. When a tutorial is selected, a copy is automatically created and added to the user’s ```Projects``` tab. This new copy is editable.
+
+(2) Dashboard Buttons
+
+ * Three buttons (from left to right): to open Dashboard Manual; to open the user forum (https://forum.zmt.swiss) and to contact the **_S4L__lite_** support team via email (s4l-support@zmt.swiss); to change the color scheme between light and dark themes.
+ * A menu with the following entities:
+ * ```Preferences```: Access to Profile, Security, Confirmation, Tag, and Organization settings.
+ * ```Organization```: Direct access to Organization settings.
+ * ```Quick Start```: A short Quick Start guide. It is also displayed when the **_S4L__lite_** is accessed for the first time.
+ * ```License```: Information about the **_S4L__lite_** license as well as the licenses of the underlying technologies.
+ * ```About```: List of Front-end and Back-end technologies employed by the **_S4L__lite_**.
+ * ```Logout```: To log out from the **_S4L__lite_**.
+
+(3) Study Filter and Search
+
+ * The user can filter and search the projects and tutorials by Tags. You can also search by name and keywords.
+
+(4) Project Card
+
+ * Each card listed here represents a simulation project. It can be created by you or shared with you by other users. The card contains descriptive information about the project. Click the card to load the project in a **_S4L__lite_**.
+
+(5) Card Options
+
+ * When clicked, the user is provided with additional information about the project and with the functionality to edit the description and share the project with other users.
+ * ```Rename```: Changes the name of the project.
+ * ```Project data…```: Allows the user to download and store simulation projects including results locally. The simulation file and results are stored in the workspace.zip file.
+ * ```Share…```: Opens a window where the user can share the simulation project.
+ * ```Duplicate```: Creates a copy of the simulation project.
+ * ```More Options…```: Opens a window where the user can view additional options for a study including its description, sharing settings, **_S4L__lite_** version used, etc. The same window also permits updating the specific project to the latest **_S4L__lite_** version.
+ * ```Delete```: Completely deletes the project and related data.
+
+(6) Starting a New Project
+
+ * To start a session of **_S4L__lite_**, you can click the ```+ Start S4L lite``` button to create a new project. This will start the user interface of **_S4L__lite_**.
+
+
+
diff --git a/docs/overview/dashboard/new_project.md b/docs/overview/dashboard/new_project.md
new file mode 100644
index 0000000..7208489
--- /dev/null
+++ b/docs/overview/dashboard/new_project.md
@@ -0,0 +1,19 @@
+## Generating a New Project
+
+To generate a new simulation project, click + Start S4Llite icon on the ```Dashboard```. This will start the user interface of **_S4L__lite_**.
+
+
+
+
+
+## Managing Projects
+
+
+
+
+
+The **_S4L__lite_** version is recorded in each project card once it is generated. If a newer version of **_S4L__lite_** is released, a small circular arrow icon will appear at the bottom right corner of the card. The user can click on this icon to open a window showing the version numbers and allowing to update the project with the latest released version.
+
+Please refer to the section [Sharing and Publishing Projects](/docs/overview/dashboard/share.md) to learn how to share the simulation projects with other users.
+
+Once a project is opened in **_S4L__lite_** platform, it is always possible to return to the Dashboard by clicking the ```Dashboard``` button on the top left corner. The current state of the project will be automatically saved.
diff --git a/docs/overview/dashboard/share.md b/docs/overview/dashboard/share.md
new file mode 100644
index 0000000..50f619b
--- /dev/null
+++ b/docs/overview/dashboard/share.md
@@ -0,0 +1,92 @@
+## Sharing and Publishing Projects
+
+There are two ways in which your work on the online platform can be accessed by others. You may either share an instance of your Project with other member(s) of an organization, or publish the Project as a Template for other members to copy.
+
+
+
+## Organization
+An organization is any group of **_S4L__lite_** users that can share _**Projects**_. To see which organizations you are a part of, go to your user preferences through your [Profile](dashboard.md) button on the top right corner of the user interface. Then choose the ```Organizations``` which will display all organizations you belong to and you may see the members of each organization by clicking on it. The member details will be then displayed in the lower half of the window under ```Members```. There are four different types of members in an organization:
+1. **User**
+ * Can not see the members of other organizations
+ * Can not share content with the organization
+2. **Member**
+ * Has access to shared content of the organization
+ * Can share content with the organization
+3. **Manager**
+ * Has Member privileges
+ * Can add or remove Members
+ * Can promote Members to Managers
+4. **Administrator**
+ * Has Manager privileges
+ * Can edit the organization’s description
+ * Can delete the organization
+
+To create a new organization, click the ```+ New Organization``` button and add members by entering each new member's email address and then clicking ```Invite```. Note that you may only add members that are already registered **_S4L__lite_** users. If a user is successfully added, you will see a confirmation message and if there was an error, e.g., the email address is not registered, you will see an error message pop up. You may then change each member's privileges by clicking on that member's name.
+
+
+
+## Sharing a Project
+Sharing a Project instance with other users allows collaboration on the same pipeline and code. When one member of the shared users is editing a Project, the Project is locked for the others. When that user finishes and returns to their Dashboard, the changes will be updated when another member accesses the Project.
+
+
+
+
+
+To share a Project:
+1. Access the Project's options from the Dashboard by clicking on the three dot button on the upper right hand corner of the Project's card.
+2. Choose the ```More options``` option. A window should appear.
+3. In the popup window, there is a panel menu to the left. Click on the ```Sharing``` button (second button from the top) to switch to the Sharing tab.
+4. In the Sharing tab, click on the ```Organizations and Members``` dropdown to see the list of users you may share with. Choose one or more people/organizations to share your Project with, and then click the ```Add``` button.
+5. The Project will then appear in the ```PROJECTS``` tab of the user(s) you have shared with.
+
+There are three types of roles for projects :
+1. **Viewer**
+ * Can open the project
+ * Can not modify the project
+2. **Collaborator**
+ * Can open the project
+ * Can modify the project
+ * Can share the project with other members
+ * Can not delete the project
+3. **Owner**
+ * Can open the project
+ * Can modify the project
+ * Can share the project with other members
+ * Can delete the project
+
+## Publishing a Project as a Tutorial
+Publishing a Project as a Tutorial will save the state of the Project at the current moment and it will appear as a Tutorial Project in the ```TUTORIALS``` tab of the Dashboard. Any changes made to the original Project after publishing as a Tutorial will not change the Tutorial. Clicking on the Tutorial Project in the ```TUTORIALS``` tab will create a copy of the contents of the Tutorial accessible in your ```PROJECTS``` tab. Any changes you make to this new Project will not affect the original Tutorial.
+
+To publish your Project as a Tutorial:
+1. Access the Project's options from the Dashboard by clicking on the three dot button on the upper right hand corner of the Project's card.
+2. Choose the ```More options``` option. A window should appear.
+3. In the popup window, there is a panel menu to the left. Click on the ```Save as Tutorial``` button (bottom-most button) to switch to the Tutorial tab.
+4. Set the access rights of the Tutorial in the popup menu. You may make the Tutorial accessible to only yourself or members of organizations. If you choose Organizations, you will be able to select from the list of organizations that you are a part of.
+
+
+
+
+
+5. You may also choose to publish the Tutorial with the data inside (for example, if you have any files saved in a JupyterLab inside the Project). To publish with data, scroll down in the modal and make sure the "Publish with data" field is checked. To export the pipeline structure without any customizations, uncheck the box.
+6. Click the ```Publish``` button on the bottom right hand corner.
+7. The Tutorial will now appear as a Tutorial Project in your ```TUTORIALS``` tab. If you have chosen to share the Tutorial with members of an organization, others in that same organization will also see the Project in their respective ```TUTORIALS``` tabs.
+
+There are three types of roles for projects :
+1. **Viewer**
+ * Can create a copy of the tutorial by clicking
+2. **Colloborator**
+ * Can create a copy of the tutorial by clicking
+ * Can edit the tutorial
+ * Can share the tutorial with other members
+ * Can not delete the tutorial
+3. **Owner**
+ * Can create a copy of the tutorial by clicking
+ * Can edit the tutorial
+ * Can share the tutorial with other members
+ * Can delete the tutorial
diff --git a/docs/overview/dashboard/tutorials.md b/docs/overview/dashboard/tutorials.md
new file mode 100644
index 0000000..4306deb
--- /dev/null
+++ b/docs/overview/dashboard/tutorials.md
@@ -0,0 +1,9 @@
+## Tutorials
+
+A set of several tutorials will help you to get familiar with **_S4L__lite_**.
+
+
+
+
+
+Clicking on any of the cards will create a copy of the tutorial in Projects so that you can continue working with the simulation file or results without changing the original tutorial project.
diff --git a/docs/overview/landing_page.md b/docs/overview/landing_page.md
new file mode 100644
index 0000000..fc59511
--- /dev/null
+++ b/docs/overview/landing_page.md
@@ -0,0 +1,11 @@
+## Landing Page
+
+
+
+
+
+The user can log in **_S4L__lite_** platform via this landing page. Once the user enters the email address and password, Two-factor authentication (2FA) is required. An SMS with the required one-time 6-digit pin is sent to the user's mobile phone number or alternatively, the code can be requested via email.
+
+Registration is currently available only via an invitation and clicking ```Create Account``` button will show the user the webpage link (https://zmt.swiss/support/support/s4l-lite/) to request access to **_S4L__lite_**.
+
+If the user cannot remember the password of an existing account, it can be reset by clicking the ```Forgot Password?``` button and following the instructions there.
diff --git a/docs/overview/platform.md b/docs/overview/platform.md
new file mode 100644
index 0000000..e78b3c4
--- /dev/null
+++ b/docs/overview/platform.md
@@ -0,0 +1,6 @@
+# Overview
+
+The **_S4L__lite_** has the following principal views:
+* [Landing Page](/docs/overview/landing_page.md), which currently serves primarily for user authentication.
+* [Dashboard](/docs/overview/dashboard/dashboard.md), that provides an overview of a user's projects, and pre-built read-only tutorial projects and permits the user to create a new project or open a tutorial project.
+* [**_S4L__lite_**](/docs/overview/s4l_lite.md), where the user performs all steps in complex multiphysics modeling, from defining the problem in a parametric 3D modeling environment, discretizing, simulating, and analyzing to visualizing the results.
diff --git a/docs/overview/s4l_lite.md b/docs/overview/s4l_lite.md
new file mode 100644
index 0000000..da7aac7
--- /dev/null
+++ b/docs/overview/s4l_lite.md
@@ -0,0 +1,8 @@
+## **_S4L__lite_** Manual
+
+To check the **_S4L__lite_** manual, please open a project and access the documentation via ```Help``` in the menu as shown below:
+
+
+
+
+
diff --git a/docs/release/knownbugs.md b/docs/release/knownbugs.md
new file mode 100644
index 0000000..7f5d20f
--- /dev/null
+++ b/docs/release/knownbugs.md
@@ -0,0 +1,10 @@
+## Known Issues
+
+
+## **_S4L__lite_** V1.0
+
+### Release Date: 15.02.2023
+
+
+
+
diff --git a/docs/release/releases.md b/docs/release/releases.md
new file mode 100644
index 0000000..26e9ffd
--- /dev/null
+++ b/docs/release/releases.md
@@ -0,0 +1,47 @@
+# Release Notes
+
+## _**S4Llite**_ V1.0
+
+### Release Date: 15.02.2023
+
+
+---
+
+**_S4L__lite_** V1.0 is the first public release of the powerful web-based simulation platform that allows you to model and analyze real-world phenomena and design complex technical devices in a validated environment. **_S4L__lite_** V1.0 is a student edition, a specially tailored solution for students to gain insight into the world of computational modeling and simulation. The access to **_S4L__lite_** is available free of charge to students enrolled at registered universities and can be used to simulate various
+applications applying different physics solvers.
+
+This document summarizes the features and specifications of this release.
+
+---
+
+
+### **Features**
+- Accessible fully online
+- Based on o2S2PARC technology
+- User-friendly GUI
+- 3D modeling environment and CAD translators
+- Postprocessing and visualization of the simulation results
+- No restrictions on the number of modeling objects
+- Solvers & Tissue Models
+ * P-EM-FDTD: Electromagnetics Full Wave Solvers
+ * P-EM-LF: full EM finite element method (FEM) low-frequency solver suite
+ * P-Thermal: Thermodynamic Solver based on Pennes Bioheat equations
+ * P-Acoustics: Acoustics Solver
+ * T-Neuro: Neuronal Tissue Models, allowing neurostimulation investigations
+- Computational anatomical model Yoon-sun, the first Korean human model of the IT'IS Virtual Population
+- Material database
+- Python and Jupyter Notebook scripting
+
+---
+
+### **Limitations**
+- Grid size of each simulation is limited to a maximum of 20 million grid cells
+- High-Performance Computing is not supported:
+ * GPU acceleration is not available
+ * MPI multicore acceleration is not available
+- 3rd-party tools are not available (e.g., MUSAIK, SYSSIM, IMAnalytics, etc…)
+- Additional ViP models cannot be added
+
+---
+
+
diff --git a/docs/support/support.md b/docs/support/support.md
new file mode 100644
index 0000000..d573178
--- /dev/null
+++ b/docs/support/support.md
@@ -0,0 +1,17 @@
+# Support
+
+### Send us an email
+
+Please contact us at [s4l-support@zmt.swiss](mailto:s4l-support@zmt.swiss) in case you need support.
+
+### Visit our website
+
+Visit https://www.zmt.swiss for a detailed list of available features, applications and hardware requirements.
+
+### Participate in our user forum
+
+Visit https://forum.zmt.swiss to exchange ideas or tips with other **_S4L__lite_** users.
+
+Thank you!
+
+**_S4L__lite_** Team
\ No newline at end of file
diff --git a/docs/what_is_s4l_lite.md b/docs/what_is_s4l_lite.md
new file mode 100644
index 0000000..100d840
--- /dev/null
+++ b/docs/what_is_s4l_lite.md
@@ -0,0 +1,61 @@
+# **_S4L__lite_**
+
+
+### *The power of the **Sim4Life** simulation platform, boosted by its revolutionary web interface!*
+
+
+
+**_S4L__lite_** is a powerful multi-physics simulation platform that allows students to easily access, run and share simulations in the cloud from any web browser. It offers the same features and performance as the desktop version but is more flexible, maintenance-free and easier to use. It does not require powerful in-house computational resources as it relies on AWS’s virtually unlimited cloud-computing infrastructure thus
+
+The access to **_S4L__lite_** is available free of charge to students enrolled at registered universities.
+
+> **_NOTE:_** Existing **Sim4Life light** desktop users can easily create an account and start using **_S4L__lite_** immediately on the browser without any installation. The simulation files generated using the desktop version are fully compatible and can be smoothly migrated in the **_S4L__lite_** platform by simply uploading them to the online platform.
+
+
+
+
+
+
+
+
+
+
+
+
+**_S4L__lite_** offers:
+ - Framework (GUI, Modeling, Postprocessing)
+ - 3D modeling environment and CAD translators
+ - Postprocessing and visualization of the simulation results
+ - No restrictions on the number of modeling objects
+ - Simulation of modeling projects up to 20 million grid cells
+ - Solvers & Tissue Models
+ * P-EM-FDTD: Electromagnetics Full Wave Solvers
+ * P-EM-LF: full EM finite element method (FEM) low-frequency solver suite
+ * P-Thermal: Thermodynamic Solver based on Pennes Bioheat equations
+ * P-Acoustics: Acoustics Solver
+ * T-Neuro: Neuronal Tissue Models, allowing neurostimulation investigations
+ - Computational anatomical model Yoon-sun, the first Korean human model of the IT'IS Virtual Population
+ - Material database
+ - Python and Jupyter Notebook scripting
+ - Not available in this *lite* version: 3rd-party Tools, High performance, Additional ViP models, Functionalized ViP models, Unstructured P-EM-LF
+
+
+**_S4L__lite_** may not be used for any commercial activities, such as:
+ - Commercial production design, design validation, or design assessment work
+ - Commercial manufacturing engineering work
+ - Commercial research
+ - Consulting work performed by academic students, faculty, or academic account staff
+ - Training of commercial company employees
+
+Please contact s4l-support@zmt.swiss for further details.
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..cdafb11
--- /dev/null
+++ b/index.html
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+ S4L lite Dashboard Manual
+
+
+
+
+
+
+