From 56698391c25df1fb67c5e6cdca0212ac04628d5f Mon Sep 17 00:00:00 2001 From: pombredanne Date: Mon, 28 Sep 2015 15:44:37 +0200 Subject: [PATCH 1/3] #210 Added support to run genattrib with a zip file and tests --- about_code_tool/genattrib.py | 35 + about_code_tool/tests/test_genattrib.py | 28 + .../tests/testdata/genattrib/basic.html | 771 + .../testdata/genattrib/basic/bootstrap.ABOUT | 16 + .../genattrib/basic/bootstrap.LICENSE | 176 + .../genattrib/basic/django_snippets.LICENSE | 9 + .../basic/django_snippets_2413.ABOUT | 14 + .../basic/elasticsearch-sources.ABOUT | 19 + .../genattrib/basic/elasticsearch.ABOUT | 22 + .../genattrib/basic/elasticsearch.LICENSE | 202 + .../genattrib/basic/elasticsearch.NOTICE | 5 + .../genattrib/basic/subdir/annotator.ABOUT | 14 + .../genattrib/basic/subdir/annotator.LICENSE | 25 + .../testdata/genattrib/zipped_about.html | 19263 ++++++++++++++++ .../tests/testdata/genattrib/zipped_about.zip | Bin 0 -> 284989 bytes 15 files changed, 20599 insertions(+) create mode 100644 about_code_tool/tests/testdata/genattrib/basic.html create mode 100644 about_code_tool/tests/testdata/genattrib/basic/bootstrap.ABOUT create mode 100644 about_code_tool/tests/testdata/genattrib/basic/bootstrap.LICENSE create mode 100644 about_code_tool/tests/testdata/genattrib/basic/django_snippets.LICENSE create mode 100644 about_code_tool/tests/testdata/genattrib/basic/django_snippets_2413.ABOUT create mode 100644 about_code_tool/tests/testdata/genattrib/basic/elasticsearch-sources.ABOUT create mode 100644 about_code_tool/tests/testdata/genattrib/basic/elasticsearch.ABOUT create mode 100644 about_code_tool/tests/testdata/genattrib/basic/elasticsearch.LICENSE create mode 100644 about_code_tool/tests/testdata/genattrib/basic/elasticsearch.NOTICE create mode 100644 about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.ABOUT create mode 100644 about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.LICENSE create mode 100644 about_code_tool/tests/testdata/genattrib/zipped_about.html create mode 100644 about_code_tool/tests/testdata/genattrib/zipped_about.zip diff --git a/about_code_tool/genattrib.py b/about_code_tool/genattrib.py index c4eef3ba..52eda3e0 100644 --- a/about_code_tool/genattrib.py +++ b/about_code_tool/genattrib.py @@ -134,6 +134,37 @@ def check_about_file_existence_and_format(input_list): Create a verification CSV output for the attribution """ +def extract_zip(location): + """ + Extract a zip file at location in a temp directory and return the temporary + directory where the archive was extracted. + """ + import zipfile + import tempfile + if not zipfile.is_zipfile(location): + raise Exception('Incorrect zip file %(location)r' % locals()) + + archive_base_name = os.path.basename(location).replace('.zip', '') + base_dir = tempfile.mkdtemp() + target_dir = os.path.join(base_dir, archive_base_name) + os.makedirs(target_dir) + + with zipfile.ZipFile(location) as zipf: + for info in zipf.infolist(): + name = info.filename + content = zipf.read(name) + target = os.path.join(target_dir, name) + if not os.path.exists(os.path.dirname(target)): + os.makedirs(os.path.dirname(target)) + if not content and target.endswith(os.path.sep): + if not os.path.exists(target): + os.makedirs(target) + if not os.path.exists(target): + with open(target, 'wb') as f: + f.write(content) + return target_dir + + def main(parser, options, args): overwrite = options.overwrite verbosity = options.verbosity @@ -200,6 +231,10 @@ def main(parser, options, args): parser.print_help() sys.exit(errno.EEXIST) + if input_path.lower().endswith('.zip'): + # accept zipped ABOUT files as input + input_path = extract_zip(input_path) + if isdir(output_path): print('Output must be a HTML file.') parser.print_help() diff --git a/about_code_tool/tests/test_genattrib.py b/about_code_tool/tests/test_genattrib.py index 701c2726..a2a47c84 100644 --- a/about_code_tool/tests/test_genattrib.py +++ b/about_code_tool/tests/test_genattrib.py @@ -21,6 +21,8 @@ from about_code_tool import genattrib +from about_code_tool.tests.test_about import get_temp_file + TESTS_DIR = os.path.abspath(os.path.dirname(__file__)) TESTDATA_DIR = os.path.join(TESTS_DIR, 'testdata') @@ -69,3 +71,29 @@ def test_component_subset_to_sublist(self): expected = ['/tmp/', '/tmp/t1/'] result = genattrib.component_subset_to_sublist(test) self.assertEqual(expected, result) + + def test_genattrib_basic(self): + about_dir = 'about_code_tool/tests/testdata/genattrib/basic/' + generated_attrib = get_temp_file('generated.html') + args = [about_dir, generated_attrib] + options = None + genattrib_command_tester(args, options) + expected = open('about_code_tool/tests/testdata/genattrib/basic.html').read() + result = open(generated_attrib).read() + assert expected ==result + + def test_genattrib_from_zipped_dir(self): + about_dir = 'about_code_tool/tests/testdata/genattrib/zipped_about.zip' + generated_attrib = get_temp_file('generated.html') + args = [about_dir, generated_attrib] + options = None + genattrib_command_tester(args, options) + expected = open('about_code_tool/tests/testdata/genattrib/zipped_about.html').read() + result = open(generated_attrib).read() + assert expected ==result + + +def genattrib_command_tester(args, options): + parser = genattrib.get_parser() + options, args = parser.parse_args(args, options) + genattrib.main(parser, options, args) diff --git a/about_code_tool/tests/testdata/genattrib/basic.html b/about_code_tool/tests/testdata/genattrib/basic.html new file mode 100644 index 00000000..80b09a83 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic.html @@ -0,0 +1,771 @@ + + + + + Open Source Software Information + + + +

OPEN SOURCE SOFTWARE INFORMATION

+
+ +

For instructions on how to obtain a copy of any source code + being made publicly available by Starship Technology related to + software used in this product you may send your request in + writing to:

+ + Starship Technology LLC.
+ OSS Management
+ 7829 Montague Expressway
+ Santa Clara, CA 95031
+ USA
+ +

The Starship Technology website www.dejacode.com also + contains information regarding Starship Technology's use of open + source. Starship Technology has created the www.dejacode.org to + serve as a portal for interaction with the software + community-at-large.

+ +

This document contains additional information regarding + licenses, acknowledgments and required copyright notices for + open source packages used in this Starship Technology product. + This Starship Technology product contains the following open + source software components

+ +
+ +
+ +

ElasticSearch 1.6.0

+ +

bootstrap 2.3.2

+ +

ElasticSearch 1.6.0

+ +

djangosnippets.org_2413 2011-04-12

+ +

Annotator 1.2.10

+ +
+ +
+ + +
+

ElasticSearch + 1.6.0 +

+ + +
Copyright 2009-2014 Elasticsearch
+ + +
Elasticsearch
+Copyright 2009-2015 Elasticsearch
+
+This product includes software developed by The Apache Software
+Foundation (http://www.apache.org/).
+
+ + + +
+                                 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.
+
+ + +
+ +
+

bootstrap + 2.3.2 +

+ + +
Copyright 2012 Twitter, Inc.
+ + + + +
                              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
+
+ + +
+ +
+

ElasticSearch + 1.6.0 +

+ + +
Copyright 2009-2015 Elasticsearch
+ + +
Elasticsearch
+Copyright 2009-2015 Elasticsearch
+
+This product includes software developed by The Apache Software
+Foundation (http://www.apache.org/).
+
+ + + +
+                                 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.
+
+ + +
+ +
+

djangosnippets.org_2413 + 2011-04-12 +

+ + + + + +
Terms of Service
+We hate legal-speak as much as anybody, but on a site which is geared toward sharing code there has to be at least a little bit of it, so here goes:
+
+By creating an account here you agree to three things:
+
+That you will only post code which you wrote yourself and that you have the legal right to release under these terms.
+That you grant any third party who sees the code you post a royalty-free, non-exclusive license to copy and distribute that code and to make and distribute derivative works based on that code. You may include license terms in snippets you post, if you wish to use a particular license (such as the BSD license or GNU GPL), but that license must permit royalty-free copying, distribution and modification of the code to which it is applied.
+That if you post code of which you are not the author or for which you do not have the legal right to distribute according to these terms, you will indemnify and hold harmless the operators of this site and any third parties who are exposed to liability as a result of your actions.
+If you can't legally agree to these terms, or don't want to, you cannot create an account here.
+ + +
+ +
+

Annotator + 1.2.10 +

+ + + + + +
# Annotator licensing terms
+
+Annotator is free software, and you may use it under the terms of either the
+MIT or the GNU GPL licenses:
+
+## GNU GPLv3
+
+You can redistribute this program 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. See LICENSE-GPL, or, if this file is missing,
+<http://www.gnu.org/licenses/>.
+
+## MIT
+
+You may use the software under the terms of the MIT license, which can be
+found in LICENSE-MIT, or, if this file is missing,
+<http://www.opensource.org/licenses/mit-license>.
+
+ + +
+ +
+ +

Common Licenses Used in This Product

+ + + + +

End

+ + \ No newline at end of file diff --git a/about_code_tool/tests/testdata/genattrib/basic/bootstrap.ABOUT b/about_code_tool/tests/testdata/genattrib/basic/bootstrap.ABOUT new file mode 100644 index 00000000..a298cf5d --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/bootstrap.ABOUT @@ -0,0 +1,16 @@ +about_resource: bootstrap-2.3.2.zip +download_url: https://github.com/twbs/bootstrap/archive/v2.3.2.zip +version: 2.3.2 + +name: bootstrap +home_url: http://twitter.github.com/bootstrap/ +owner: Twitter, Inc. + +description: Sleek, intuitive, and powerful front-end framework for faster and easier web development. +dje_license: apache-2.0 +license_text_file: bootstrap.LICENSE +copyright: Copyright 2012 Twitter, Inc. + +vcs_tool: git +vcs_repository: https://github.com/twitter/bootstrap.git +vcs_branch: /tree/v2.3.2 diff --git a/about_code_tool/tests/testdata/genattrib/basic/bootstrap.LICENSE b/about_code_tool/tests/testdata/genattrib/basic/bootstrap.LICENSE new file mode 100644 index 00000000..1b5ec8b7 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/bootstrap.LICENSE @@ -0,0 +1,176 @@ + 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 diff --git a/about_code_tool/tests/testdata/genattrib/basic/django_snippets.LICENSE b/about_code_tool/tests/testdata/genattrib/basic/django_snippets.LICENSE new file mode 100644 index 00000000..01b3fadf --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/django_snippets.LICENSE @@ -0,0 +1,9 @@ +Terms of Service +We hate legal-speak as much as anybody, but on a site which is geared toward sharing code there has to be at least a little bit of it, so here goes: + +By creating an account here you agree to three things: + +That you will only post code which you wrote yourself and that you have the legal right to release under these terms. +That you grant any third party who sees the code you post a royalty-free, non-exclusive license to copy and distribute that code and to make and distribute derivative works based on that code. You may include license terms in snippets you post, if you wish to use a particular license (such as the BSD license or GNU GPL), but that license must permit royalty-free copying, distribution and modification of the code to which it is applied. +That if you post code of which you are not the author or for which you do not have the legal right to distribute according to these terms, you will indemnify and hold harmless the operators of this site and any third parties who are exposed to liability as a result of your actions. +If you can't legally agree to these terms, or don't want to, you cannot create an account here. \ No newline at end of file diff --git a/about_code_tool/tests/testdata/genattrib/basic/django_snippets_2413.ABOUT b/about_code_tool/tests/testdata/genattrib/basic/django_snippets_2413.ABOUT new file mode 100644 index 00000000..f1018a04 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/django_snippets_2413.ABOUT @@ -0,0 +1,14 @@ +about_resource: django_snippets_2413.py +version: 2011-04-12 +download_url: http://djangosnippets.org/snippets/2413/download/ + +name: djangosnippets.org_2413 +home_url: http://djangosnippets.org/snippets/2413/ + +license_url: http://djangosnippets.org/about/tos/ +license_text_file: django_snippets.LICENSE +dje_license: mit +notes: The http://djangosnippets.org/ notice gives us permission to use the + stuff under just about any open source license, we assert MIT for them. + This file was modified to include the line "register = Library()" + without which the template tag is not registered. \ No newline at end of file diff --git a/about_code_tool/tests/testdata/genattrib/basic/elasticsearch-sources.ABOUT b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch-sources.ABOUT new file mode 100644 index 00000000..1ede24c4 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch-sources.ABOUT @@ -0,0 +1,19 @@ +about_resource: elasticsearch-1.6.0-src.tar.xz +download_url: https://github.com/elasticsearch/elasticsearch/archive/v1.6.0.tar.gz +version: 1.6.0 + +owner: ElasticSearch and Shay Banon +name: ElasticSearch + +home_url: http://www.elasticsearch.org/ + +vcs_tool: git +vcs_repository: https://github.com/elasticsearch/elasticsearch.git + +dje_license: apache-2.0 +notice_file: elasticsearch.NOTICE +license_text_file: elasticsearch.LICENSE +copyright: Copyright 2009-2014 Elasticsearch + +notes: Source code for the pre-built binaries we use, pruned from docs and + tests to keep the size small enough. diff --git a/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.ABOUT b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.ABOUT new file mode 100644 index 00000000..8e94018a --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.ABOUT @@ -0,0 +1,22 @@ +about_resource: elasticsearch-1.6.0.zip +download_url: https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.6.0.zip +version: 1.6.0 + +owner: ElasticSearch and Shay Banon +name: ElasticSearch + +home_url: http://www.elasticsearch.org/ + +vcs_tool: git +vcs_repository: https://github.com/elasticsearch/elasticsearch.git + +dje_license: apache-2.0 +notice_file: elasticsearch.NOTICE +license_text_file: elasticsearch.LICENSE +copyright: Copyright 2009-2015 Elasticsearch + +notes: This a prebuilt version working on all OSes. + The tar.gz works only with POSIX OSses and not Windows while the zip works on + all OS. See https://github.com/elasticsearch/elasticsearch/pull/2793 + ES contains a prebuilt binary of Apache-licensed Hyperic Sigar, Apache Lucene + and Apache Log4J as well as JNA which is LGPL-licensed. diff --git a/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.LICENSE b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.LICENSE new file mode 100644 index 00000000..d6456956 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.LICENSE @@ -0,0 +1,202 @@ + + 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. diff --git a/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.NOTICE b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.NOTICE new file mode 100644 index 00000000..23cae9e2 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/elasticsearch.NOTICE @@ -0,0 +1,5 @@ +Elasticsearch +Copyright 2009-2015 Elasticsearch + +This product includes software developed by The Apache Software +Foundation (http://www.apache.org/). diff --git a/about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.ABOUT b/about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.ABOUT new file mode 100644 index 00000000..0a08ed9f --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.ABOUT @@ -0,0 +1,14 @@ +about_resource: annotator-full.1.2.10.zip +download_url: https://github.com/openannotation/annotator/releases/download/v1.2.10/annotator-full.1.2.10.zip +version: 1.2.10 + +home_url: http://okfnlabs.org/projects/annotator/ +name: Annotator +owner: Open Knowledge + +license_text_file: annotator.LICENSE +license_url: https://okfn.org/ip-policy/ +dje_license: mit + +vcs_tool: git +vcs_repository: https://github.com/openannotation/annotator.git diff --git a/about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.LICENSE b/about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.LICENSE new file mode 100644 index 00000000..05ce546a --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/basic/subdir/annotator.LICENSE @@ -0,0 +1,25 @@ +# Annotator licensing terms + +Annotator is free software, and you may use it under the terms of either the +MIT or the GNU GPL licenses: + +## GNU GPLv3 + +You can redistribute this program 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. See LICENSE-GPL, or, if this file is missing, +. + +## MIT + +You may use the software under the terms of the MIT license, which can be +found in LICENSE-MIT, or, if this file is missing, +. diff --git a/about_code_tool/tests/testdata/genattrib/zipped_about.html b/about_code_tool/tests/testdata/genattrib/zipped_about.html new file mode 100644 index 00000000..05759b89 --- /dev/null +++ b/about_code_tool/tests/testdata/genattrib/zipped_about.html @@ -0,0 +1,19263 @@ + + + + + Open Source Software Information + + + +

OPEN SOURCE SOFTWARE INFORMATION

+
+ +

For instructions on how to obtain a copy of any source code + being made publicly available by Starship Technology related to + software used in this product you may send your request in + writing to:

+ + Starship Technology LLC.
+ OSS Management
+ 7829 Montague Expressway
+ Santa Clara, CA 95031
+ USA
+ +

The Starship Technology website www.dejacode.com also + contains information regarding Starship Technology's use of open + source. Starship Technology has created the www.dejacode.org to + serve as a portal for interaction with the software + community-at-large.

+ +

This document contains additional information regarding + licenses, acknowledgments and required copyright notices for + open source packages used in this Starship Technology product. + This Starship Technology product contains the following open + source software components

+ +
+ +
+ +

Underscore.string 2.3.3

+ +

html5shiv 3.7.0

+ +

ElasticSearch 1.6.0

+ +

spin.js 1.3.2

+ +

bootstrap 2.3.2

+ +

RequireJS 2.1.15

+ +

DataTables FixedHeader 2.0.10-dev

+ +

jQuery treetable 3.2.0

+ +

text 2.0.10

+ +

Annotator 1.2.10

+ +

mod_wsgi 3.4

+ +

Underscore.js 1.6.0

+ +

jsPlumb 1.7.2

+ +

ElasticSearch 1.6.0

+ +

Ember.js 1.12.1

+ +

djangosnippets.org_2413 2011-04-12

+ +

jQuery 1.11.2

+ +

Font Awesome 3.2.0

+ +

Django Debug Toolbar 1.3.2

+ +

django-adminactions 0.7

+ +

Django REST framework 3.2.3

+ +

Pygments 2.0.2

+ +

Selenium 2.47.3

+ +

pytz 2015.6

+ +

wheel 0.26.0

+ +

PyYAML 3.11

+ +

python-memcached 1.53

+ +

virtualenv 12.0.5

+ +

ABOUT tool 0.9.0

+ +

Beautiful Soup 4.4.0

+ +

Django 1.8.4

+ +

anyjson 0.3.3

+ +

pyreadline 2.0

+ +

gnureadline 6.3.3

+ +

urllib3 1.12

+ +

pycrypto 2.6

+ +

python-social-auth 0.2.12

+ +

psycopg2 2.5.4

+ +

funcparserlib 0.3.6

+ +

python-ldap 2.4.20

+ +

ecdsa 0.13

+ +

django-filter 0.11.0

+ +

pycrypto 2.6.1

+ +

PyJWT 1.4.0

+ +

psycopg2 2.6.1

+ +

django-crispy-forms 1.5.2

+ +

unicodecsv 0.14.0

+ +

django-haystack 2.4.0

+ +

mock 1.0.1

+ +

django-debreach 1.2.1

+ +

six 1.9.0

+ +

setuptools 18.3.2

+ +

django-auth-ldap 1.2.6

+ +

python-ldap 2.4.20

+ +

certifi 2015.9.6.2

+ +

model_mommy 1.2.5

+ +

paramiko 1.15.2

+ +

celery 3.1.18

+ +

mockldap 0.2.5

+ +

Fabric 1.10.2

+ +

python-dateutil 2.4.2

+ +

pycrypto 2.6.1

+ +

billiard 3.3.0.20

+ +

oauthlib 1.0.3

+ +

kombu 3.0.26

+ +

django-reversion 1.8.7

+ +

django-extensions 1.5.7

+ +

requests 2.7.0

+ +

django-haystack-panel 0.2.1

+ +

Supervisor 3.1.3

+ +

Whoosh 2.7.0

+ +

django-tastypie 0.12.2

+ +

python-mimeparse 0.1.4

+ +

amqp 1.4.6

+ +

requests-oauthlib 0.5.0

+ +

Grappelli 2.7.1

+ +

sqlparse 0.1.16

+ +

elasticsearch-py 1.6.0

+ +

virtualenv 12.0.5

+ +

meld3 1.0.2

+ +

pyaml 15.8.2

+ +

python-openid 2.2.5

+ +

pip 7.1.2

+ +

natsort 4.0.3

+ +

wincertstore 0.2

+ +

JNA 4.1.0

+ +

Sigar 1.6.4

+ +

ASM Commons 4.1

+ +

Apache Log4J 1.2.17

+ +

JTS Topology Suite 1.13

+ +

ANTLR runtime 3.5

+ +

Apache Lucene 4.10.4

+ +

ASM 4.1

+ +

Spatial4J 0.4.1

+ +

Groovy 2.4.0

+ +
+ +
+ + +
+

Underscore.string + 2.3.3 +

+ + + + + +
Copyright (c) 2011 Esa-Matti Suuronen esa-matti@suuronen.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.
+ + +
+ +
+

html5shiv + 3.7.0 +

+ + + +
/*
+ HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
+*/
+ + + + +
+ +
+

ElasticSearch + 1.6.0 +

+ + +
Copyright 2009-2014 Elasticsearch
+ + +
Elasticsearch
+Copyright 2009-2015 Elasticsearch
+
+This product includes software developed by The Apache Software
+Foundation (http://www.apache.org/).
+
+ + + +
+                                 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.
+
+ + +
+ +
+

spin.js + 1.3.2 +

+ + + + + +
The MIT License
+
+Copyright (c) 2011 Felix Gnass [fgnass at neteye dot de]
+
+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.
+ + +
+ +
+

bootstrap + 2.3.2 +

+ + +
Copyright 2012 Twitter, Inc.
+ + + + +
                              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
+
+ + +
+ +
+

RequireJS + 2.1.15 +

+ + + + + +
RequireJS is released under two licenses: new BSD, and MIT. You may pick the
+license that best suits your development needs. The text of both licenses are
+provided below.
+
+
+The "New" BSD License:
+----------------------
+
+Copyright (c) 2010-2014, The Dojo Foundation
+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 Dojo Foundation 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.
+
+
+
+MIT License
+-----------
+
+Copyright (c) 2010-2014, The Dojo Foundation
+
+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.
+ + +
+ +
+

DataTables FixedHeader + 2.0.10-dev +

+ + +
Copyright 2008-2012 Allan Jardine, all rights reserved.
+ + +
/*
+ * File:        FixedHeader.nightly.min.js
+ * Version:     2.1.0-dev
+ * Author:      Allan Jardine (www.sprymedia.co.uk)
+ * Info:        www.datatables.net
+ *
+ * Copyright 2008-2012 Allan Jardine, all rights reserved.
+ *
+ * This source file is free software, under either the GPL v2 license or a
+ * BSD style license, available at:
+ *   http://datatables.net/license_gpl2
+ *   http://datatables.net/license_bsd
+ *
+ * This source file 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 license files for details.
+ */
+ + + + +
+ +
+

jQuery treetable + 3.2.0 +

+ + +
This plugin is released under both the MIT and the GPLv2 license by Ludo van den Boom.
+ + + + +
This plugin is released under both the MIT and the GPLv2 license by Ludo van den Boom.
+
+Copyright (c) 2013 Ludo van den Boom, http://ludovandenboom.com
+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.
+
+GNU GENERAL PUBLIC LICENSE
+Version 2, June 1991
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+Preamble
+The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) 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
+this service 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 make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. 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.
+We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+The precise terms and conditions for copying, distribution and
+modification follow.
+GNU GENERAL PUBLIC LICENSE
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+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 Program or any portion
+of it, thus forming a work based on the Program, 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) You must cause the modified files to carry prominent notices
+stating that you changed the files and the date of any change.
+b) You must cause any work that you distribute or publish, that in
+whole or in part contains or is derived from the Program or any
+part thereof, to be licensed as a whole at no charge to all third
+parties under the terms of this License.
+c) If the modified program normally reads commands interactively
+when run, you must cause it, when started running for such
+interactive use in the most ordinary way, to print or display an
+announcement including an appropriate copyright notice and a
+notice that there is no warranty (or else, saying that you provide
+a warranty) and that users may redistribute the program under
+these conditions, and telling the user how to view a copy of this
+License. (Exception: if the Program itself is interactive but
+does not normally print such an announcement, your work based on
+the Program is not required to print an announcement.)
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+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 Program, 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 Program.
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+a) 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; or,
+b) Accompany it with a written offer, valid for at least three
+years, to give any third party, for a charge no more than your
+cost of physically performing source distribution, a complete
+machine-readable copy of the corresponding source code, to be
+distributed under the terms of Sections 1 and 2 above on a medium
+customarily used for software interchange; or,
+c) Accompany it with the information you received as to the offer
+to distribute corresponding source code. (This alternative is
+allowed only for noncommercial distribution and only if you
+received the program in object code or executable form with such
+an offer, in accord with Subsection b above.)
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, 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 executable. However, as a
+special exception, the source code 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.
+If distribution of executable or 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 counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program 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.
+5. 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 Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program 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 to
+this License.
+7. 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 Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program 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 Program.
+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.
+8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program 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.
+9. The Free Software Foundation may publish revised and/or new versions
+of the 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 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 Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, 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
+11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
+12. 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 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.
+
+
+ + +
+ +
+

text + 2.0.10 +

+ + + + + +
RequireJS is released under two licenses: new BSD, and MIT. You may pick the
+license that best suits your development needs. The text of both licenses are
+provided below.
+
+
+The "New" BSD License:
+----------------------
+
+Copyright (c) 2010-2011, The Dojo Foundation
+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 Dojo Foundation 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.
+
+
+
+MIT License
+-----------
+
+Copyright (c) 2010-2011, The Dojo Foundation
+
+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.
+ + +
+ +
+

Annotator + 1.2.10 +

+ + + + + +
# Annotator licensing terms
+
+Annotator is free software, and you may use it under the terms of either the
+MIT or the GNU GPL licenses:
+
+## GNU GPLv3
+
+You can redistribute this program 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. See LICENSE-GPL, or, if this file is missing,
+<http://www.gnu.org/licenses/>.
+
+## MIT
+
+You may use the software under the terms of the MIT license, which can be
+found in LICENSE-MIT, or, if this file is missing,
+<http://www.opensource.org/licenses/mit-license>.
+
+ + +
+ +
+

mod_wsgi + 3.4 +

+ + + + + +
+                                 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.
+
+ + +
+ +
+

Underscore.js + 1.6.0 +

+ + +
(c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
+ + + + +
Copyright (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative
+Reporters & Editors
+
+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.
+ + +
+ +
+

jsPlumb + 1.7.2 +

+ + + + + +
        GNU GENERAL PUBLIC LICENSE
+           Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+          Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  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
+this service 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 make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  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.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+        GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+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 Program or any portion
+of it, thus forming a work based on the Program, 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) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+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 Program, 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 Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) 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; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, 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 executable.  However, as a
+special exception, the source code 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.
+
+If distribution of executable or 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 counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program 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.
+
+  5. 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 Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program 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 to
+this License.
+
+  7. 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 Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program 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 Program.
+
+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.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program 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.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the 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 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 Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, 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
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
+
+  12. 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 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.
+
+
+
+Copyright (c) 2010 - 2014 jsPlumb, http://jsplumbtoolkit.com/
+
+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.
+ + +
+ +
+

ElasticSearch + 1.6.0 +

+ + +
Copyright 2009-2015 Elasticsearch
+ + +
Elasticsearch
+Copyright 2009-2015 Elasticsearch
+
+This product includes software developed by The Apache Software
+Foundation (http://www.apache.org/).
+
+ + + +
+                                 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.
+
+ + +
+ +
+

Ember.js + 1.12.1 +

+ + +
Copyright (c) 2015 Yehuda Katz, Tom Dale and Ember.js contributors
+ + + + +
Copyright (c) 2015 Yehuda Katz, Tom Dale and Ember.js 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.
+ + +
+ +
+

djangosnippets.org_2413 + 2011-04-12 +

+ + + + + +
Terms of Service
+We hate legal-speak as much as anybody, but on a site which is geared toward sharing code there has to be at least a little bit of it, so here goes:
+
+By creating an account here you agree to three things:
+
+That you will only post code which you wrote yourself and that you have the legal right to release under these terms.
+That you grant any third party who sees the code you post a royalty-free, non-exclusive license to copy and distribute that code and to make and distribute derivative works based on that code. You may include license terms in snippets you post, if you wish to use a particular license (such as the BSD license or GNU GPL), but that license must permit royalty-free copying, distribution and modification of the code to which it is applied.
+That if you post code of which you are not the author or for which you do not have the legal right to distribute according to these terms, you will indemnify and hold harmless the operators of this site and any third parties who are exposed to liability as a result of your actions.
+If you can't legally agree to these terms, or don't want to, you cannot create an account here.
+ + +
+ +
+

jQuery + 1.11.2 +

+ + +
Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
+ + + + +
Copyright 2014 jQuery Foundation and other contributors
+http://jquery.com/
+
+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.
+ + +
+ +
+

Font Awesome + 3.2.0 +

+ + + +
The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL.
+Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - http://opensource.org/licenses/mit-license.html.
+The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
+Attribution is no longer required in Font Awesome 3.0, but much appreciated: Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome.
+
+ + + + +
+ +
+

Django Debug Toolbar + 1.3.2 +

+ + +
Copyright (c) Rob Hudson and individual contributors.
+ + + + +
Copyright (c) Rob Hudson and individual 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 Django 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.
+ + +
+ +
+

django-adminactions + 0.7 +

+ + +
Copyright (c) 2010, Stefano Apostolico (s.apostolico@gmail.com)
+ + + + +
* Copyright (c) 2010, Stefano Apostolico (s.apostolico@gmail.com)
+* Dual licensed under the MIT or GPL Version 2 licenses.
+
+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.
+
+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.
+
+ + +
+ +
+

Django REST framework + 3.2.3 +

+ + +
Copyright (c) 2011-2014, Tom Christie
+ + + + +
Copyright (c) 2011-2014, Tom Christie
+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.
+ + +
+ +
+

Pygments + 2.0.2 +

+ + +
Copyright (c) 2006-2014 by the respective authors (see AUTHORS file).
+ + + + +
Copyright (c) 2006-2014 by the respective authors (see AUTHORS file).
+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
+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.
+ + +
+ +
+

Selenium + 2.47.3 +

+ + +
Copyright 2011 Software Freedom Conservancy.
+ + +
Copyright 2011 Software Freedom Conservancy.
+
+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.
+
+ + + +
+                                 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
+
+ + +
+ +
+

pytz + 2015.6 +

+ + + + + +
Copyright (c) 2003-2009 Stuart Bishop <stuart@stuartbishop.net>
+
+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.
+
+ + +
+ +
+

wheel + 0.26.0 +

+ + +
copyright (c) 2012-2014 Daniel Holth  and contributors.
+ + + + +
"wheel" copyright (c) 2012-2014 Daniel Holth <dholth@fastmail.fm> and
+contributors.
+
+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.
+
+ + +
+ +
+

PyYAML + 3.11 +

+ + +
Copyright (c) 2006 Kirill Simonov
+ + + + +
Copyright (c) 2006 Kirill Simonov
+
+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-memcached + 1.53 +

+ + + + + +
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)
+
+    0.9.0 thru 1.2              1991-1995   CWI         yes
+    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
+    1.6             1.5.2       2000        CNRI        no
+    2.0             1.6         2000        BeOpen.com  no
+    1.6.1           1.6         2001        CNRI        yes (2)
+    2.1             2.0+1.6.1   2001        PSF         no
+    2.0.1           2.0+1.6.1   2001        PSF         yes
+    2.1.1           2.1+2.0.1   2001        PSF         yes
+    2.2             2.1.1       2001        PSF         yes
+    2.1.2           2.1.1       2002        PSF         yes
+    2.1.3           2.1.2       2002        PSF         yes
+    2.2.1           2.2         2002        PSF         yes
+    2.2.2           2.2.1       2002        PSF         yes
+    2.2.3           2.2.2       2003        PSF         yes
+    2.3             2.2.2       2002-2003   PSF         yes
+    2.3.1           2.3         2002-2003   PSF         yes
+    2.3.2           2.3.1       2002-2003   PSF         yes
+    2.3.3           2.3.2       2002-2003   PSF         yes
+    2.3.4           2.3.3       2004        PSF         yes
+    2.3.5           2.3.4       2005        PSF         yes
+    2.4             2.3         2004        PSF         yes
+    2.4.1           2.4         2005        PSF         yes
+    2.4.2           2.4.1       2005        PSF         yes
+    2.4.3           2.4.2       2006        PSF         yes
+    2.4.4           2.4.3       2006        PSF         yes
+    2.5             2.4         2006        PSF         yes
+    2.5.1           2.5         2007        PSF         yes
+    2.5.2           2.5.2       2008        PSF         yes
+
+Footnotes:
+
+(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 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.
+
+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-2005 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, Cambridge, UK.
+jseward@acm.org
+bzip2/libbzip2 version 1.0.3 of 15 February 2005
+
+
+This copy of Python includes a copy of db, which is licensed under the following terms:
+
+/*-
+ * $Id: LICENSE,v 12.1 2005/06/16 20:20:10 bostic Exp $
+ */
+
+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 Sleepycat Software by email at info@sleepycat.com, or on
+the Web at http://www.sleepycat.com.
+
+=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+/*
+ * Copyright (c) 1990-2005
+ *	Sleepycat Software.  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 SLEEPYCAT SOFTWARE ``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 SLEEPYCAT SOFTWARE
+ * 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.
+ */
+
+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-2005 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 (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. 
+
+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 (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.
+
+ + +
+ +
+

virtualenv + 12.0.5 +

+ + +
Copyright (c) 2007 Ian Bicking and Contributors
+Copyright (c) 2009 Ian Bicking, The Open Planning Project
+Copyright (c) 2011-2015 The virtualenv developers
+ + + + +
Copyright (c) 2007 Ian Bicking and Contributors
+Copyright (c) 2009 Ian Bicking, The Open Planning Project
+Copyright (c) 2011-2014 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.
+
+ + +
+ +
+

ABOUT tool + 0.9.0 +

+ + +
Copyright (c) 2014 nexB, Inc.
+ + +
 Copyright (c) 2014 nexB, Inc. http://www.nexb.com/ - All rights reserved.
+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.
+ + + +
+                                 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
+
+ + +
+ +
+

Beautiful Soup + 4.4.0 +

+ + + + + +
Beautiful Soup is made available under the MIT license:
+
+ Copyright (c) 2004-2012 Leonard Richardson
+
+ 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, DAMMIT.
+
+Beautiful Soup incorporates code from the html5lib library, which is
+also made available under the MIT license.
+
+ + +
+ +
+

Django + 1.8.4 +

+ + + + + +
Copyright (c) Django Software Foundation and individual 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 Django 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.
+
+ + +
+ +
+

anyjson + 0.3.3 +

+ + + + + +
This software is licensed under the ``New BSD License``:
+
+Copyright (c) 2009, by the 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 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.
+ + +
+ +
+

pyreadline + 2.0 +

+ + +
Copyright (c) 2006 Jorgen Stenarson .
+Copyright (c) 2003-2006 Gary Bishop
+Copyright (c) 2003-2006 Jack Trainor
+ + + + +
pyreadline copyright and licensing notes
+========================================
+
+Unless indicated otherwise, files in this project are covered by a BSD-type
+license, included below.
+
+Individual authors are the holders of the copyright for their code and are
+listed in each file.
+
+Some files may be licensed under different conditions. Ultimately each file 
+indicates clearly the conditions under which its author/authors have 
+decided to publish the code.
+
+
+pyreadline license
+------------------
+
+pyreadline is released under a BSD-type license.
+
+Copyright (c) 2006 J�rgen Stenarson <jorgen.stenarson@bostream.nu>.
+
+Copyright (c) 2003-2006 Gary Bishop
+
+Copyright (c) 2003-2006 Jack Trainor
+
+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 the copyright holders nor the names of any
+     contributors to this software 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.
+
+ + +
+ +
+

gnureadline + 6.3.3 +

+ + + + + +
                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ 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.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    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 <http://www.gnu.org/licenses/>.
+
+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:
+
+    <program>  Copyright (C) <year>  <name of author>
+    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
+<http://www.gnu.org/licenses/>.
+
+  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
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
+
+ + +
+ +
+

urllib3 + 1.12 +

+ + + + + +
This is the MIT license: http://www.opensource.org/licenses/mit-license.php
+
+Copyright 2008-2013 Andrey Petrov and contributors (see CONTRIBUTORS.txt)
+
+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.
+
+ + +
+ +
+

pycrypto + 2.6 +

+ + + + + +
Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"):
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Previously, the copyright and/or licensing status of the Python
+Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous.  The
+original intention of Andrew M. Kuchling and other contributors has
+been to dedicate PyCrypto to the public domain, but that intention was
+not necessarily made clear in the original disclaimer (see
+LEGAL/copy/LICENSE.orig).
+
+Additionally, some files within PyCrypto had specified their own
+licenses that differed from the PyCrypto license itself.  For example,
+the original RIPEMD.c module simply had a copyright statement and
+warranty disclaimer, without clearly specifying any license terms.
+(An updated version on the author's website came with a license that
+contained a GPL-incompatible advertising clause.)
+
+To rectify this situation for PyCrypto 2.1, the following steps have
+been taken:
+
+ 1. Obtaining explicit permission from the original contributors to
+    dedicate their contributions to the public domain if they have not
+    already done so.  (See the "LEGAL/copy/stmts" directory for
+    contributors' statements.)
+
+ 2. Replacing some modules with clearly-licensed code from other
+    sources (e.g. the DES and DES3 modules were replaced with new ones
+    based on Tom St. Denis's public-domain LibTomCrypt library.)
+
+ 3. Replacing some modules with code written from scratch (e.g. the
+    RIPEMD and Blowfish modules were re-implemented from their
+    respective algorithm specifications without reference to the old
+    implementations).
+
+ 4. Removing some modules altogether without replacing them.
+
+To the best of our knowledge, with the exceptions noted below or
+within the files themselves, the files that constitute PyCrypto are in
+the public domain.  Most are distributed with the following notice:
+
+  The contents of this file are dedicated to the public domain.  To
+  the extent that dedication to the public domain is not available,
+  everyone is granted a worldwide, perpetual, royalty-free,
+  non-exclusive license to exercise all rights associated with the
+  contents of this file for any purpose whatsoever.
+  No rights are reserved.
+
+  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.
+
+Exception:
+
+ - Portions of HMAC.py and setup.py are derived from Python 2.2, and
+   are therefore Copyright (c) 2001, 2002, 2003 Python Software
+   Foundation (All Rights Reserved).  They are licensed by the PSF
+   under the terms of the Python 2.2 license.  (See the file
+   LEGAL/copy/LICENSE.python-2.2 for details.)
+
+EXPORT RESTRICTIONS:
+
+Note that the export or re-export of cryptographic software and/or
+source code may be subject to regulation in your jurisdiction.
+
+
+
+==================================================================
+LICENSE.python-2.2
+LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
+LICENSE.libtom  LICENSE file from LibTomCrypt
+stmts/          Statements by contributors
+
+==================================================================
+LICENSE.python-2.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)
+
+    0.9.0 thru 1.2              1991-1995   CWI         yes
+    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
+    1.6             1.5.2       2000        CNRI        no
+    2.0             1.6         2000        BeOpen.com  no
+    1.6.1           1.6         2001        CNRI        no
+    2.1             2.0+1.6.1   2001        PSF         no
+    2.0.1           2.0+1.6.1   2001        PSF         yes
+    2.1.1           2.1+2.0.1   2001        PSF         yes
+    2.2             2.1.1       2001        PSF         yes
+    2.1.2           2.1.1       2002        PSF         yes
+    2.1.3           2.1.2       2002        PSF         yes
+    2.2.1           2.2         2002        PSF         yes
+    2.2.2           2.2.1       2002        PSF         yes
+    2.2.3           2.2.2       2003        PSF         yes
+
+Footnotes:
+
+(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.
+
+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
+===============================================================
+
+PSF LICENSE AGREEMENT FOR PYTHON 2.2.3
+--------------------------------------
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using Python 2.2.3 software 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 2.2.3
+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 Python Software Foundation; All Rights Reserved" are
+retained in Python 2.2.3 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 2.2.3 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 2.2.3.
+
+4. PSF is making Python 2.2.3 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 2.2.3 WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+2.2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.2.3,
+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 2.2.3, 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.
+
+
+===================================================================
+LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
+===================================================================
+Distribute and use freely; there are no restrictions on further
+dissemination and usage except those imposed by the laws of your
+country of residence.  This software is provided "as is" without
+warranty of fitness for use or suitability for any purpose, express
+or implied. Use at your own risk or not at all.
+===================================================================
+
+Incorporating the code into commercial products is permitted; you do
+not have to make source available or contribute your changes back
+(though that would be nice).
+
+--amk                                                             (www.amk.ca)
+
+
+
+LICENSE.libtom  LICENSE file from LibTomCrypt
+===================================================================
+LibTomCrypt is public domain.  As should all quality software be.
+
+Tom St Denis
+
+
+
+Statements by contributors
+===================================================================
+From dlitz@dlitz.net Sun Nov 23 00:17:22 2008
+Date: Sun, 23 Nov 2008 00:17:22 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: "A. M. Kuchling" <amk@amk.ca>
+Subject: PyCrypto license clarification
+Message-ID: <20081123051722.GA29253@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: multipart/signed; micalg=pgp-sha1;
+    protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4"
+Content-Disposition: inline
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3461
+Lines: 78
+
+
+--YiEDa0DAkWCtVeE4
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+Content-Transfer-Encoding: quoted-printable
+
+Hi Andrew,
+
+People often ask me what license PyCrypto is covered by, if it's=20
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them. =20
+The text in the current LICENSE file (quoted below) is not entirely clear=
+=20
+on the point of whether distributing modified versions is allowed.  (It=20
+says "distribute and use", but not "modify".)
+
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+     Distribute and use freely; there are no restrictions on further
+     dissemination and usage except those imposed by the laws of your
+     country of residence.  This software is provided "as is" without
+     warranty of fitness for use or suitability for any purpose, express
+     or implied. Use at your own risk or not at all.
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+     Incorporating the code into commercial products is permitted; you do
+     not have to make source available or contribute your changes back
+     (though that would be nice).
+
+     --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I'd like to take steps to move toward a=20
+clearer licensing regime.  I'm asking as many copyright holders as I can=20
+find, starting with you, if I can release PyCrypto under something clearer=
+=20
+and more standard.  Below, I have quoted a public domain dedication that=20
+was recommended in _Intellectual Property and Open Source: A Practical=20
+Guide to Protecting Code_, by Van Lindberg.
+
+May I, on your behalf, dedicate to the public domain your considerable=20
+contributions to PyCrypto, with the following notice?
+
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+     The contents of this file are dedicated to the public domain.  To the
+     extent that dedication to the public domain is not available, everyone
+     is granted a worldwide, perpetual, royalty-free, non-exclusive license
+     to exercise all rights associated with the contents of this file for
+     any purpose whatsoever.  No rights are reserved.
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+Regards,
+  - Dwayne
+
+--=20
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+--YiEDa0DAkWCtVeE4
+Content-Type: application/pgp-signature; name="signature.asc"
+Content-Description: Digital signature
+Content-Disposition: inline
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+iEYEARECAAYFAkko52IACgkQHBG4d+eAS0XPPQCfcyQ2DdAXKg9N7Z+jeSFFD5EZ
+yloAn33a3ZjkteyJaTbzEqImOEW8JGpf
+=aBEW
+-----END PGP SIGNATURE-----
+
+--YiEDa0DAkWCtVeE4--
+
+From amk@amk.ca Sun Nov 23 07:51:59 2008
+X-Maildir-Dup-Checked: Yes
+Return-Path: <amk@amk.ca>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 5C2C75047D
+    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 07:51:59 -0500 (EST)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id D632D10111
+    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
+Received: (vmailmgr-postfix 12026 invoked by uid 1003); 23 Nov 2008 06:51:58 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (goedel.dlitz.net: domain of amk@amk.ca does not designate permitted sender hosts)
+Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7])
+    by goedel.dlitz.net (Postfix) with ESMTP id 97DC710105
+    for <dlitz@dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
+Received: (qmail 3992 invoked from network); 23 Nov 2008 12:51:52 -0000
+Received: from dsl092-163-165.wdc2.dsl.speakeasy.net (HELO localhost) (akuchling@[66.92.163.165])
+          (envelope-sender <amk@amk.ca>)
+          by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP
+          for <dlitz@dlitz.net>; 23 Nov 2008 12:51:52 -0000
+Date: Sun, 23 Nov 2008 07:51:34 -0500
+From: "A.M. Kuchling" <amk@amk.ca>
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Subject: Re: PyCrypto license clarification
+Message-ID: <20081123125134.GA21239@amk.local>
+Reply-To: amk@amk.ca
+References: <20081123051722.GA29253@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Content-Disposition: inline
+In-Reply-To: <20081123051722.GA29253@rivest.dlitz.net>
+User-Agent: Mutt/1.5.13 (2006-08-11)
+Status: RO
+Content-Length: 537
+Lines: 15
+
+> People often ask me what license PyCrypto is covered by, if it's 
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+> The text in the current LICENSE file (quoted below) is not entirely clear 
+> on the point of whether distributing modified versions is allowed.  (It 
+> says "distribute and use", but not "modify".)
+
+The intention is that it be public domain.
+
+> May I, on your behalf, dedicate to the public domain your considerable 
+> contributions to PyCrypto, with the following notice?
+
+You may.
+
+--amk
+
+
+================================================
+From dlitz@dlitz.net Sat Feb 28 21:45:09 2009
+Date: Sat, 28 Feb 2009 21:45:09 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Barry A Warsaw <barry@python.org>
+Subject: PyCrypto license clarification
+Message-ID: <20090301024509.GA13195@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2535
+
+Hi Barry,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am 
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's 
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+The text in the current LICENSE file (quoted below) is not entirely clear 
+on the point of whether distributing modified versions is allowed.  (It 
+says "distribute and use", but not "modify".)
+
+  ===================================================================
+  Distribute and use freely; there are no restrictions on further
+  dissemination and usage except those imposed by the laws of your
+  country of residence.  This software is provided "as is" without
+  warranty of fitness for use or suitability for any purpose, express
+  or implied. Use at your own risk or not at all.
+  ===================================================================
+
+  Incorporating the code into commercial products is permitted; you do
+  not have to make source available or contribute your changes back
+  (though that would be nice).
+
+  --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a 
+clearer licensing regime.  I am asking as many copyright holders as I can 
+find if I can release PyCrypto under something clearer and more standard.  
+Below, I have quoted a public domain dedication that was recommended in 
+_Intellectual Property and Open Source: A Practical Guide to Protecting 
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
+Pointer, and Wim Lewis, and they have all approved the following dedication 
+for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your 
+behalf, dedicate to the public domain all your contributions to PyCrypto, 
+with the following notice?
+
+  =======================================================================
+  The contents of this file are dedicated to the public domain.  To the
+  extent that dedication to the public domain is not available, everyone
+  is granted a worldwide, perpetual, royalty-free, non-exclusive license
+  to exercise all rights associated with the contents of this file for
+  any purpose whatsoever.  No rights are reserved.
+  =======================================================================
+
+Regards,
+  - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+     Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From barry@python.org Mon Mar  2 11:29:39 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <barry@python.org>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 6E01AC6640B
+    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 11:29:39 -0500 (EST)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 0644E1007A
+    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 10:29:39 -0600 (CST)
+Received: (vmailmgr-postfix 8668 invoked by uid 1003);  2 Mar 2009 10:29:39 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (python.org: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="barry@python.org"; helo=mail.wooz.org; client-ip=216.15.33.230
+Received: from mail.wooz.org (216-15-33-230.c3-0.slvr-ubr2.lnh-slvr.md.static.cable.rcn.com [216.15.33.230])
+    by goedel.dlitz.net (Postfix) with ESMTP id CCEA110073
+    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 10:29:38 -0600 (CST)
+Received: from snowdog.wooz.org (snowdog.wooz.org [192.168.11.202])
+    by mail.wooz.org (Postfix) with ESMTPSA id ACE30E3C9F
+    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 11:29:35 -0500 (EST)
+Message-Id: <09BF1A39-B015-4820-97A3-8642490C8254@python.org>
+From: Barry Warsaw <barry@python.org>
+To: Dwayne C. Litzenberger <dlitz@dlitz.net>
+In-Reply-To: <20090301024509.GA13195@rivest.dlitz.net>
+Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
+Content-Transfer-Encoding: quoted-printable
+Mime-Version: 1.0 (Apple Message framework v930.3)
+Subject: Re: PyCrypto license clarification
+Date: Mon, 2 Mar 2009 11:29:34 -0500
+References: <20090301024509.GA13195@rivest.dlitz.net>
+X-Pgp-Agent: GPGMail d55 (v55, Leopard)
+X-Mailer: Apple Mail (2.930.3)
+Status: RO
+Content-Length: 869
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On Feb 28, 2009, at 9:45 PM, Dwayne C. Litzenberger wrote:
+
+> I am the new maintainer of the Python Cryptography Toolkit, and I am =20=
+
+> working on a new release at http://www.pycrypto.org/.
+
+Great!  I'm glad to see someone taking up the mantle of this important =20=
+
+Python library.
+
+> I understand that you have made contributions to PyCrypto.  May I, =20
+> on your behalf, dedicate to the public domain all your contributions =20=
+
+> to PyCrypto, with the following notice?
+
+Absolutely yes.
+
+Cheers,
+Barry
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+
+iQCVAwUBSawJbnEjvBPtnXfVAQLZjgP/ecG+JdZwNvPJRfsa6rhY6+MHLDHI6agk
+evkJnSJQAcVHlZnVlVeR5IXgvDUMakZjU4SOV7MqkhsKA9lIet7PaD9VSYgn3ra5
+gElwI2DQDoOy5GExXMm74gqrrb1PCCbCRmpaYNo+DZohwHkeFBjbwDRA3wItOrH7
+SK4w9VBJtfY=3D
+=3DQduY
+-----END PGP SIGNATURE-----
+
+
+
+===================================================
+From dlitz@dlitz.net Sat Feb 28 23:24:14 2009
+Date: Sat, 28 Feb 2009 23:24:14 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Jeethu Rao <jeethurao@gmail.com>
+Subject: PyCrypto license clarification
+Message-ID: <20090301042414.GA15122@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2513
+
+Hi Jeethu,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am 
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's 
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+The text in the current LICENSE file (quoted below) is not entirely clear 
+on the point of whether distributing modified versions is allowed.  (It 
+says "distribute and use", but not "modify".)
+
+ ===================================================================
+ Distribute and use freely; there are no restrictions on further
+ dissemination and usage except those imposed by the laws of your
+ country of residence.  This software is provided "as is" without
+ warranty of fitness for use or suitability for any purpose, express
+ or implied. Use at your own risk or not at all.
+ ===================================================================
+
+ Incorporating the code into commercial products is permitted; you do
+ not have to make source available or contribute your changes back
+ (though that would be nice).
+
+ --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a 
+clearer licensing regime.  I am asking as many copyright holders as I can 
+find if I can release PyCrypto under something clearer and more standard.  
+Below, I have quoted a public domain dedication that was recommended in 
+_Intellectual Property and Open Source: A Practical Guide to Protecting 
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
+Pointer, and Wim Lewis, and they have all approved the following text for 
+their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your 
+behalf, dedicate to the public domain all your contributions to PyCrypto, 
+with the following notice?
+
+ =======================================================================
+ The contents of this file are dedicated to the public domain.  To the
+ extent that dedication to the public domain is not available, everyone
+ is granted a worldwide, perpetual, royalty-free, non-exclusive license
+ to exercise all rights associated with the contents of this file for
+ any purpose whatsoever.  No rights are reserved.
+ =======================================================================
+
+Regards,
+ - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+       Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From jeethurao@gmail.com Sun Mar  8 17:28:16 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <jeethurao@gmail.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 0CC83515D9
+    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 17:28:16 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 4E58F450CB
+    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 15:28:15 -0600 (CST)
+Received: (vmailmgr-postfix 5011 invoked by uid 1003);  8 Mar 2009 15:28:15 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: pass (gmail.com ... _spf.google.com: 209.85.198.249 is authorized to use 'jeethurao@gmail.com' in 'mfrom' identity (mechanism 'ip4:209.85.128.0/17' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="jeethurao@gmail.com"; helo=rv-out-0708.google.com; client-ip=209.85.198.249
+Received: from rv-out-0708.google.com (unknown [209.85.198.249])
+    by goedel.dlitz.net (Postfix) with ESMTP id 3C097449E7
+    for <dlitz@dlitz.net>; Sun,  8 Mar 2009 15:28:12 -0600 (CST)
+Received: by rv-out-0708.google.com with SMTP id k29so1252333rvb.26
+        for <dlitz@dlitz.net>; Sun, 08 Mar 2009 14:27:56 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+        d=gmail.com; s=gamma;
+        h=domainkey-signature:mime-version:received:in-reply-to:references
+         :date:message-id:subject:from:to:content-type;
+        bh=YWy9U32WCU/ksRqukHwaOZyJQBUs4Yvt5mI20U6mI/g=;
+        b=oMjI22lIxYiJKge2zNJW3rRiUi9LqFXmey5Wp0pLItuNF+X3duyfhopTuBAKw7MwVY
+         B5E6VQuGVEyzBbNsctyVgq6DhQiQtouCLZymSViobmuDmKn5DtUKoxpDk0xCxQmHYaas
+         L9/A6D3/J66kKrNBgX9mc0GPcZTviVFYkPR0Q=
+DomainKey-Signature: a=rsa-sha1; c=nofws;
+        d=gmail.com; s=gamma;
+        h=mime-version:in-reply-to:references:date:message-id:subject:from:to
+         :content-type;
+        b=Ym7CStuDEfJKay1AJyWZkZmJA1lnTcwCG6akBHAXLld8ht6PFcmlsffzZG8hJCIVJ8
+         vljqcT+G6cywVTBw1pyGX7ECYzr0+vhGvgdpACGrs24zikHfpSSd5GFogzXaLVvGVH8p
+         bqSHpfWKKtEP4gAQkiNeIq1GNtR2j8U3fnRyg=
+MIME-Version: 1.0
+Received: by 10.141.176.13 with SMTP id d13mr2656028rvp.231.1236547674677; 
+    Sun, 08 Mar 2009 14:27:54 -0700 (PDT)
+In-Reply-To: <20090301042414.GA15122@rivest.dlitz.net>
+References: <20090301042414.GA15122@rivest.dlitz.net>
+Date: Mon, 9 Mar 2009 02:57:54 +0530
+Message-ID: <e3c0ddba0903081427p3a7b1058g417dd8624df68d6d@mail.gmail.com>
+Subject: Re: PyCrypto license clarification
+From: Jeethu Rao <jeethurao@gmail.com>
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Content-Type: multipart/alternative; boundary=000e0cd209d0e5a3d40464a23054
+Status: RO
+Content-Length: 7668
+
+--000e0cd209d0e5a3d40464a23054
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 7bit
+
+Hi Dwayne,My contribution to pycrypto are very very minimal (The sha256
+module, IIRC).
+I'd be fine with the public domain license for PyCrypto.
+
+Jeethu Rao
+PS: Apologies for the delay in my response.
+I don't really check this email address all that often,
+please direct any further correspondence to jeethu@jeethurao.com
+
+On Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <dlitz@dlitz.net>wrote:
+
+> Hi Jeethu,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+>
+> People often ask me what license PyCrypto is covered by, if it's
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  The
+> text in the current LICENSE file (quoted below) is not entirely clear on the
+> point of whether distributing modified versions is allowed.  (It says
+> "distribute and use", but not "modify".)
+>
+> ===================================================================
+> Distribute and use freely; there are no restrictions on further
+> dissemination and usage except those imposed by the laws of your
+> country of residence.  This software is provided "as is" without
+> warranty of fitness for use or suitability for any purpose, express
+> or implied. Use at your own risk or not at all.
+> ===================================================================
+>
+> Incorporating the code into commercial products is permitted; you do
+> not have to make source available or contribute your changes back
+> (though that would be nice).
+>
+> --amk                                                    (www.amk.ca)
+>
+> For the next PyCrypto release, I would like to take steps to move toward a
+> clearer licensing regime.  I am asking as many copyright holders as I can
+> find if I can release PyCrypto under something clearer and more standard.
+>  Below, I have quoted a public domain dedication that was recommended in
+> _Intellectual Property and Open Source: A Practical Guide to Protecting
+> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+> Pointer, and Wim Lewis, and they have all approved the following text for
+> their contributions.
+>
+> I understand that you have made contributions to PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your contributions to PyCrypto,
+> with the following notice?
+>
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+> Regards,
+> - Dwayne
+>
+> --
+> Dwayne C. Litzenberger <dlitz@dlitz.net>
+>      Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>
+
+
+
+-- 
+Jeethu Rao
+
+--000e0cd209d0e5a3d40464a23054
+Content-Type: text/html; charset=ISO-8859-1
+Content-Transfer-Encoding: quoted-printable
+
+Hi Dwayne,<div>My contribution to pycrypto are very very minimal (The sha25=
+6 module, IIRC).</div><div>I&#39;d be fine with the public domain license f=
+or PyCrypto.</div><div><br></div><div>Jeethu Rao</div><div>PS: Apologies fo=
+r the delay in my response.=A0</div>
+<div>I don&#39;t really check this email address all that often,</div><div>=
+please direct any further correspondence to <a href=3D"mailto:jeethu@jeethu=
+rao.com">jeethu@jeethurao.com</a><br><div><br><div class=3D"gmail_quote">On=
+ Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <span dir=3D"ltr">&lt;=
+<a href=3D"mailto:dlitz@dlitz.net">dlitz@dlitz.net</a>&gt;</span> wrote:<br=
+>
+<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
+x #ccc solid;padding-left:1ex;">Hi Jeethu,<br>
+<br>
+I am the new maintainer of the Python Cryptography Toolkit, and I am workin=
+g on a new release at <a href=3D"http://www.pycrypto.org/" target=3D"_blank=
+">http://www.pycrypto.org/</a>.<br>
+<br>
+People often ask me what license PyCrypto is covered by, if it&#39;s GPL-co=
+mpatible, etc. =A0Right now, I&#39;m not really sure what to tell them. =A0=
+The text in the current LICENSE file (quoted below) is not entirely clear o=
+n the point of whether distributing modified versions is allowed. =A0(It sa=
+ys &quot;distribute and use&quot;, but not &quot;modify&quot;.)<br>
+
+<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+Distribute and use freely; there are no restrictions on further<br>
+dissemination and usage except those imposed by the laws of your<br>
+country of residence. =A0This software is provided &quot;as is&quot; withou=
+t<br>
+warranty of fitness for use or suitability for any purpose, express<br>
+or implied. Use at your own risk or not at all.<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+<br>
+Incorporating the code into commercial products is permitted; you do<br>
+not have to make source available or contribute your changes back<br>
+(though that would be nice).<br>
+<br>
+--amk =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
+=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(<a href=3D"http://www.amk.ca" target=3D=
+"_blank">www.amk.ca</a>)<br>
+<br>
+For the next PyCrypto release, I would like to take steps to move toward a =
+clearer licensing regime. =A0I am asking as many copyright holders as I can=
+ find if I can release PyCrypto under something clearer and more standard. =
+=A0Below, I have quoted a public domain dedication that was recommended in =
+_Intellectual Property and Open Source: A Practical Guide to Protecting Cod=
+e_, by Van Lindberg. =A0I have already contacted A. M. Kuchling, Robey Poin=
+ter, and Wim Lewis, and they have all approved the following text for their=
+ contributions.<br>
+
+<br>
+I understand that you have made contributions to PyCrypto. =A0May I, on you=
+r behalf, dedicate to the public domain all your contributions to PyCrypto,=
+ with the following notice?<br>
+<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+The contents of this file are dedicated to the public domain. =A0To the<br>
+extent that dedication to the public domain is not available, everyone<br>
+is granted a worldwide, perpetual, royalty-free, non-exclusive license<br>
+to exercise all rights associated with the contents of this file for<br>
+any purpose whatsoever. =A0No rights are reserved.<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+<br>
+Regards,<br>
+- Dwayne<br><font color=3D"#888888">
+<br>
+-- <br>
+Dwayne C. Litzenberger &lt;<a href=3D"mailto:dlitz@dlitz.net" target=3D"_bl=
+ank">dlitz@dlitz.net</a>&gt;<br>
+ =A0 =A0 =A0Key-signing key =A0 - 19E1 1FE8 B3CF F273 ED17 =A04A24 928C EC1=
+3 39C2 5CF7<br>
+</font></blockquote></div><br><br clear=3D"all"><br>-- <br>Jeethu Rao<br>
+</div></div>
+
+--000e0cd209d0e5a3d40464a23054--
+
+
+=======================================================
+From dlitz@dlitz.net Mon May  4 22:49:14 2009
+Date: Mon, 4 May 2009 22:49:14 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Joris Bontje <joris@bontje.nl>
+Subject: PyCrypto license clarification
+Message-ID: <20090505024914.GA9219@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2553
+
+Hi Joris,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+  ===================================================================
+  Distribute and use freely; there are no restrictions on further
+  dissemination and usage except those imposed by the laws of your
+  country of residence.  This software is provided "as is" without
+  warranty of fitness for use or suitability for any purpose, express
+  or implied. Use at your own risk or not at all.
+  ===================================================================
+
+  Incorporating the code into commercial products is permitted; you do
+  not have to make source available or contribute your changes back
+  (though that would be nice).
+
+  --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+have all approved the following dedication for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your
+behalf, dedicate to the public domain all your contributions to PyCrypto,
+with the following notice?
+
+  =======================================================================
+  The contents of this file are dedicated to the public domain.  To the
+  extent that dedication to the public domain is not available, everyone
+  is granted a worldwide, perpetual, royalty-free, non-exclusive license
+  to exercise all rights associated with the contents of this file for
+  any purpose whatsoever.  No rights are reserved.
+  =======================================================================
+
+Regards,
+ - Dwayne
+
+--
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From joris@bontje.nl Tue May  5 03:08:32 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <joris@bontje.nl>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 7AA4B9E5078
+    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 03:08:32 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 2315B40583
+    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 01:08:32 -0600 (CST)
+Received: (vmailmgr-postfix 16890 invoked by uid 1003);  5 May 2009 01:08:32 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (bontje.nl: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="joris@bontje.nl"; helo=smtp6.versatel.nl; client-ip=62.58.50.97
+Received: from smtp6.versatel.nl (smtp6.versatel.nl [62.58.50.97])
+    by goedel.dlitz.net (Postfix) with ESMTP id 2D76A4052C
+    for <dlitz@dlitz.net>; Tue,  5 May 2009 01:08:30 -0600 (CST)
+Received: (qmail 4224 invoked by uid 0); 5 May 2009 07:08:25 -0000
+Received: from qmail06.zonnet.nl (HELO dell062.admin.zonnet.nl) ([10.170.1.123])
+          (envelope-sender <joris@bontje.nl>)
+          by 10.170.1.96 (qmail-ldap-1.03) with SMTP
+          for < >; 5 May 2009 07:08:25 -0000
+Received: by dell062.admin.zonnet.nl (Postfix, from userid 33)
+    id 9BE9B15759B; Tue,  5 May 2009 09:08:25 +0200 (CEST)
+Received: from firewall66.interaccess.nl (firewall66.interaccess.nl
+    [193.173.35.66]) by www.webmail.vuurwerk.nl (Horde MIME library) with HTTP;
+    Tue, 05 May 2009 09:08:25 +0200
+Message-ID: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+Date: Tue, 05 May 2009 09:08:25 +0200
+From: joris@bontje.nl
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Subject: Re: PyCrypto license clarification
+References: <20090505024914.GA9219@rivest.dlitz.net>
+In-Reply-To: <20090505024914.GA9219@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain;
+    charset=ISO-8859-1;
+    format="flowed"
+Content-Disposition: inline
+Content-Transfer-Encoding: 7bit
+User-Agent: Internet Messaging Program (IMP) H3 (4.1.3)
+Status: RO
+X-Status: A
+Content-Length: 3488
+
+Hi Dwayne,
+
+Thanks for taking over the PyCrypto library and putting in the required 
+effort to keep this going.
+I was very excited to read that it is now one of the installed 
+libraries for Google AppsEngine!
+
+You have my full permission to dedicate all my contributions to 
+PyCrypto to the public domain with your suggested notice:
+=======================================================================
+The contents of this file are dedicated to the public domain.  To the
+extent that dedication to the public domain is not available, everyone
+is granted a worldwide, perpetual, royalty-free, non-exclusive license
+to exercise all rights associated with the contents of this file for
+any purpose whatsoever.  No rights are reserved.
+=======================================================================
+
+
+Regards,
+Joris
+
+Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
+
+> Hi Joris,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+>
+> People often ask me what license PyCrypto is covered by, if it's
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+> The text in the current LICENSE file (quoted below) is not entirely clear
+> on the point of whether distributing modified versions is allowed.  (It
+> says "distribute and use", but not "modify".)
+>
+> ===================================================================
+> Distribute and use freely; there are no restrictions on further
+> dissemination and usage except those imposed by the laws of your
+> country of residence.  This software is provided "as is" without
+> warranty of fitness for use or suitability for any purpose, express
+> or implied. Use at your own risk or not at all.
+> ===================================================================
+>
+> Incorporating the code into commercial products is permitted; you do
+> not have to make source available or contribute your changes back
+> (though that would be nice).
+>
+> --amk                                                    (www.amk.ca)
+>
+> For the next PyCrypto release, I would like to take steps to move toward a
+> clearer licensing regime.  I am asking as many copyright holders as I can
+> find if I can release PyCrypto under something clearer and more standard.
+> Below, I have quoted a public domain dedication that was recommended in
+> _Intellectual Property and Open Source: A Practical Guide to Protecting
+> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+> have all approved the following dedication for their contributions.
+>
+> I understand that you have made contributions to PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your contributions to PyCrypto,
+> with the following notice?
+>
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+> Regards,
+> - Dwayne
+>
+> --
+> Dwayne C. Litzenberger <dlitz@dlitz.net>
+> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+
+
+From dlitz@dlitz.net Tue May  5 17:53:47 2009
+Date: Tue, 5 May 2009 17:53:47 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: joris@bontje.nl
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090505215347.GB9933@rivest.dlitz.net>
+References: <20090505024914.GA9219@rivest.dlitz.net> <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+In-Reply-To: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3863
+
+Excellent!  Thank you!
+
+On Tue, May 05, 2009 at 09:08:25AM +0200, joris@bontje.nl wrote:
+> Hi Dwayne,
+>
+> Thanks for taking over the PyCrypto library and putting in the required 
+> effort to keep this going.
+> I was very excited to read that it is now one of the installed libraries 
+> for Google AppsEngine!
+>
+> You have my full permission to dedicate all my contributions to PyCrypto to 
+> the public domain with your suggested notice:
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+>
+> Regards,
+> Joris
+>
+> Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
+>
+>> Hi Joris,
+>>
+>> I am the new maintainer of the Python Cryptography Toolkit, and I am
+>> working on a new release at http://www.pycrypto.org/.
+>>
+>> People often ask me what license PyCrypto is covered by, if it's
+>> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+>> The text in the current LICENSE file (quoted below) is not entirely clear
+>> on the point of whether distributing modified versions is allowed.  (It
+>> says "distribute and use", but not "modify".)
+>>
+>> ===================================================================
+>> Distribute and use freely; there are no restrictions on further
+>> dissemination and usage except those imposed by the laws of your
+>> country of residence.  This software is provided "as is" without
+>> warranty of fitness for use or suitability for any purpose, express
+>> or implied. Use at your own risk or not at all.
+>> ===================================================================
+>>
+>> Incorporating the code into commercial products is permitted; you do
+>> not have to make source available or contribute your changes back
+>> (though that would be nice).
+>>
+>> --amk                                                    (www.amk.ca)
+>>
+>> For the next PyCrypto release, I would like to take steps to move toward a
+>> clearer licensing regime.  I am asking as many copyright holders as I can
+>> find if I can release PyCrypto under something clearer and more standard.
+>> Below, I have quoted a public domain dedication that was recommended in
+>> _Intellectual Property and Open Source: A Practical Guide to Protecting
+>> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+>> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+>> have all approved the following dedication for their contributions.
+>>
+>> I understand that you have made contributions to PyCrypto.  May I, on your
+>> behalf, dedicate to the public domain all your contributions to PyCrypto,
+>> with the following notice?
+>>
+>> =======================================================================
+>> The contents of this file are dedicated to the public domain.  To the
+>> extent that dedication to the public domain is not available, everyone
+>> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>> to exercise all rights associated with the contents of this file for
+>> any purpose whatsoever.  No rights are reserved.
+>> =======================================================================
+>>
+>> Regards,
+>> - Dwayne
+>>
+>> --
+>> Dwayne C. Litzenberger <dlitz@dlitz.net>
+>> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>
+>
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+
+==========================================================
+Date: Sun, 23 Nov 2008 15:54:35 -0800
+From: Wim Lewis <wiml@hhhh.org>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Cc: Wim Lewis <wiml@hhhh.org>
+Message-Id: <9D5C3135-7414-47D7-9D41-0AC6C3A84D97@hhhh.org>
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On November 23, 2008, you wrote:
+>Hi Wim,
+>
+>I am the new maintainer of the Python Cryptography Toolkit, and I am
+>working on a new release at http://www.pycrypto.org/.
+>
+>I understand that you have made contributions to PyCrypto. May I, on
+>your behalf, dedicate to the public domain all your contributions to
+>PyCrypto, with the following notice?
+>
+>   =======================================================================
+>   The contents of this file are dedicated to the public domain.  To the
+>   extent that dedication to the public domain is not available, everyone
+>   is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>   to exercise all rights associated with the contents of this file for
+>   any purpose whatsoever.  No rights are reserved.
+>   =======================================================================
+
+Certainly! I think the only code of mine in PyCrypto is the CAST-5 / CAST-128
+implementation, which already has a public-domain notice at the top of
+the file. But I am happy to have that, any any other code of mine that
+might have wandered in there under an unclear open sourcish license,
+distributed under the public-domain dedication you quote.
+
+Wim.
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.6 (Darwin)
+
+iQCVAwUBSSnnAl8UnN8n93LBAQLp/gQAhr7x8Av1mstc2kxEJDWTm26PTAZxMz4B
+FektbDOzkxgc5580MGGeeX/MVn8aw+1BHg0YD85gsntlDzkcQtb+BR/xAvJ5zKyA
+J/Mn/I+I6ekJQ3juh8IPHLAduOXM9Rtguas/yR+Doaq0xOPKoBx+/5+t1lLJtBcZ
+wrPEa9Oui9s=
+=zSY9
+-----END PGP SIGNATURE-----
+
+
+
+==========================================================
+From dlitz@dlitz.net Sat Apr 18 09:14:20 2009
+Date: Sat, 18 Apr 2009 09:14:20 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Mark Moraes <moraes@computer.org>
+Subject: PyCrypto license clarification
+Message-ID: <20090418131419.GA14494@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2635
+
+Hi Mark,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+       ===================================================================
+       Distribute and use freely; there are no restrictions on further
+       dissemination and usage except those imposed by the laws of your
+       country of residence.  This software is provided "as is" without
+       warranty of fitness for use or suitability for any purpose, express
+       or implied. Use at your own risk or not at all.
+       ===================================================================
+
+       Incorporating the code into commercial products is permitted; you do
+       not have to make source available or contribute your changes back
+       (though that would be nice).
+
+       --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they have all
+approved the following dedication for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your
+behalf, dedicate to the public domain all your contributions to PyCrypto,
+with the following notice?
+
+       =======================================================================
+       The contents of this file are dedicated to the public domain.  To the
+       extent that dedication to the public domain is not available, everyone
+       is granted a worldwide, perpetual, royalty-free, non-exclusive license
+       to exercise all rights associated with the contents of this file for
+       any purpose whatsoever.  No rights are reserved.
+       =======================================================================
+
+Regards,
+    - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+    Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From markmoraes@yahoo.com Mon Apr 20 19:25:37 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <markmoraes@yahoo.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 5D9AE984FDD
+    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 19:25:37 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id DE41F4025F
+    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
+Received: (vmailmgr-postfix 7604 invoked by uid 1003); 20 Apr 2009 17:25:36 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (yahoo.com: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="markmoraes@yahoo.com"; helo=web32405.mail.mud.yahoo.com; client-ip=68.142.207.198
+Received: from web32405.mail.mud.yahoo.com (web32405.mail.mud.yahoo.com [68.142.207.198])
+    by goedel.dlitz.net (Postfix) with SMTP id B5EAF401EE
+    for <dlitz@dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
+Received: (qmail 34697 invoked by uid 60001); 20 Apr 2009 23:25:33 -0000
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1240269933; bh=OvxqbYnCg7R6tUN3YmlgFURM3CuHh1JeHyXhDzkaThU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=F2h2bFzpQxyKFZ8BhenniyupGw4Zvlekb9BSk91qKU+51W/TkSGBij5YZIhkLQdkQk0qLz5f4g8dT6bOME3sEY1j10hlx0K0u2UD0yoYTINBCmsdMQRoJ7ph9bmt+p/EJhRpe+FiV6aoLV0FONWiHfGDghPT1dulWXfVTqgB2aU=
+DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
+  s=s1024; d=yahoo.com;
+  h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
+  b=r6RShFF5VzQLg+9tcn1xKuo4Rs4IVvXF6fdqOpQrMyRCxeFooebhuTE35grGqlomOJLwM0+mZwRb6rGkDj763caOAlo8Ect/qlADW5izXfmVQaDchTbTqmpsJBmQnTQs9iZ+InrG+3UIwtUSGfX7fhEWmI9P/HBzxf9Wp4b3jeo=;
+Message-ID: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+X-YMail-OSG: FrK8aWMVM1mFJtLpMGbUbCLjbUQC.i.JkIAKUHSFsFn7t9PbtewAewXJ2uhZGCOlGCX6oVnG3u.CgqzAffY4vZSnfTT8wnCkzZNZ_g6k.XUc3ipo_6e.92TXl4p8MxDGAf1tpNF5nXPwcQ7aREs7jGoWWVJYVytp50clsUFSHzf7Zbpa8P1Yoe_xSzf3OAgRSh5fCrbFCC8sHPCuwrL3YhasbtHmkWffteSS.x6gEcBaxf03oz4FeDb5mpJ54g11Xonq8h_TmzX9g84Bin9g_3fJ4WSXm6g6.tohLyfXcUxoz4j036wyWpTKPrWEzIUQaN83Sv_bj_Ghxw--
+Received: from [69.124.140.74] by web32405.mail.mud.yahoo.com via HTTP; Mon, 20 Apr 2009 16:25:32 PDT
+X-Mailer: YahooMailClassic/5.2.15 YahooMailWebService/0.7.289.1
+Date: Mon, 20 Apr 2009 16:25:32 -0700 (PDT)
+From: M Moraes <markmoraes@yahoo.com>
+Reply-To: moraes@computer.org
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Status: RO
+X-Status: A
+Content-Length: 3222
+
+
+Hi Dwayne.
+
+Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
+
+Regards,
+Mark.
+
+--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
+
+> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
+> Subject: PyCrypto license clarification
+> To: "Mark Moraes" <moraes@computer.org>
+> Date: Saturday, April 18, 2009, 9:14 AM
+> Hi Mark,
+> 
+> I am the new maintainer of the Python Cryptography Toolkit,
+> and I am
+> working on a new release at http://www.pycrypto.org/.
+> 
+> People often ask me what license PyCrypto is covered by, if
+> it's
+> GPL-compatible, etc.  Right now, I'm not really sure
+> what to tell them.
+> The text in the current LICENSE file (quoted below) is not
+> entirely clear
+> on the point of whether distributing modified versions is
+> allowed.  (It
+> says "distribute and use", but not "modify".)
+> 
+>      
+> ===================================================================
+>       Distribute and use freely; there are
+> no restrictions on further
+>       dissemination and usage except those
+> imposed by the laws of your
+>       country of residence.  This
+> software is provided "as is" without
+>       warranty of fitness for use or
+> suitability for any purpose, express
+>       or implied. Use at your own risk or
+> not at all.
+>      
+> ===================================================================
+> 
+>       Incorporating the code into commercial
+> products is permitted; you do
+>       not have to make source available or
+> contribute your changes back
+>       (though that would be nice).
+> 
+>       --amk       
+>                
+>                
+>             (www.amk.ca)
+> 
+> For the next PyCrypto release, I would like to take steps
+> to move toward a
+> clearer licensing regime.  I am asking as many
+> copyright holders as I can
+> find if I can release PyCrypto under something clearer and
+> more standard.
+> Below, I have quoted a public domain dedication that was
+> recommended in
+> _Intellectual Property and Open Source: A Practical Guide
+> to Protecting
+> Code_, by Van Lindberg.  I have already contacted A.
+> M. Kuchling, Robey
+> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
+> have all
+> approved the following dedication for their contributions.
+> 
+> I understand that you have made contributions to
+> PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your
+> contributions to PyCrypto,
+> with the following notice?
+> 
+>      
+> =======================================================================
+>       The contents of this file are
+> dedicated to the public domain.  To the
+>       extent that dedication to the public
+> domain is not available, everyone
+>       is granted a worldwide, perpetual,
+> royalty-free, non-exclusive license
+>       to exercise all rights associated with
+> the contents of this file for
+>       any purpose whatsoever.  No
+> rights are reserved.
+>      
+> =======================================================================
+> 
+> Regards,
+>    - Dwayne
+> 
+> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
+>    Key-signing key   - 19E1
+> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+> 
+
+
+From dlitz@dlitz.net Mon Apr 20 20:01:37 2009
+Date: Mon, 20 Apr 2009 20:01:37 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: moraes@computer.org
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090421000137.GA29012@rivest.dlitz.net>
+References: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+In-Reply-To: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3677
+
+Thanks a lot, and don't worry about not responding to previous emails.  I 
+do that too much myself. :)
+
+On Mon, Apr 20, 2009 at 04:25:32PM -0700, M Moraes wrote:
+>
+>Hi Dwayne.
+>
+>Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
+>
+>Regards,
+>Mark.
+>
+>--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
+>
+>> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
+>> Subject: PyCrypto license clarification
+>> To: "Mark Moraes" <moraes@computer.org>
+>> Date: Saturday, April 18, 2009, 9:14 AM
+>> Hi Mark,
+>> 
+>> I am the new maintainer of the Python Cryptography Toolkit,
+>> and I am
+>> working on a new release at http://www.pycrypto.org/.
+>> 
+>> People often ask me what license PyCrypto is covered by, if
+>> it's
+>> GPL-compatible, etc.  Right now, I'm not really sure
+>> what to tell them.
+>> The text in the current LICENSE file (quoted below) is not
+>> entirely clear
+>> on the point of whether distributing modified versions is
+>> allowed.  (It
+>> says "distribute and use", but not "modify".)
+>> 
+>>      
+>> ===================================================================
+>>       Distribute and use freely; there are
+>> no restrictions on further
+>>       dissemination and usage except those
+>> imposed by the laws of your
+>>       country of residence.  This
+>> software is provided "as is" without
+>>       warranty of fitness for use or
+>> suitability for any purpose, express
+>>       or implied. Use at your own risk or
+>> not at all.
+>>      
+>> ===================================================================
+>> 
+>>       Incorporating the code into commercial
+>> products is permitted; you do
+>>       not have to make source available or
+>> contribute your changes back
+>>       (though that would be nice).
+>> 
+>>       --amk       
+>>                
+>>                
+>>             (www.amk.ca)
+>> 
+>> For the next PyCrypto release, I would like to take steps
+>> to move toward a
+>> clearer licensing regime.  I am asking as many
+>> copyright holders as I can
+>> find if I can release PyCrypto under something clearer and
+>> more standard.
+>> Below, I have quoted a public domain dedication that was
+>> recommended in
+>> _Intellectual Property and Open Source: A Practical Guide
+>> to Protecting
+>> Code_, by Van Lindberg.  I have already contacted A.
+>> M. Kuchling, Robey
+>> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
+>> have all
+>> approved the following dedication for their contributions.
+>> 
+>> I understand that you have made contributions to
+>> PyCrypto.  May I, on your
+>> behalf, dedicate to the public domain all your
+>> contributions to PyCrypto,
+>> with the following notice?
+>> 
+>>      
+>> =======================================================================
+>>       The contents of this file are
+>> dedicated to the public domain.  To the
+>>       extent that dedication to the public
+>> domain is not available, everyone
+>>       is granted a worldwide, perpetual,
+>> royalty-free, non-exclusive license
+>>       to exercise all rights associated with
+>> the contents of this file for
+>>       any purpose whatsoever.  No
+>> rights are reserved.
+>>      
+>> =======================================================================
+>> 
+>> Regards,
+>>    - Dwayne
+>> 
+>> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
+>>    Key-signing key   - 19E1
+>> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>> 
+>
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+
+
+
+==========================================================
+Date: Mon, 16 Feb 2009 12:58:00 -0800
+From: Robey Pointer <robey@lag.net>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Received-SPF: pass (goedel.dlitz.net: domain of robey@lag.net designates 69.61.78.186 as permitted sender)
+Message-Id: <F469A078-6305-4484-BEA8-F4EC38A4154F@lag.net>
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On 23 Nov 2008, at 07:42, Dwayne C. Litzenberger wrote:
+
+> For the next PyCrypto release, I would like to take steps to move  
+> toward a clearer licensing regime.  I am asking as many copyright  
+> holders as I can find if I can release PyCrypto under something  
+> clearer and more standard.  Below, I have quoted a public domain  
+> dedication that was recommended in _Intellectual Property and Open  
+> Source: A Practical Guide to Protecting Code_, by Van Lindberg.  I  
+> have already contacted A. M. Kuchling, and he has approved the  
+> following dedication for his contributions.
+>
+> May I, on your behalf, dedicate to the public domain all your  
+> contributions to PyCrypto, with the following notice?
+>
+>     
+> = 
+> ======================================================================
+>    The contents of this file are dedicated to the public domain.  To  
+> the
+>    extent that dedication to the public domain is not available,  
+> everyone
+>    is granted a worldwide, perpetual, royalty-free, non-exclusive  
+> license
+>    to exercise all rights associated with the contents of this file  
+> for
+>    any purpose whatsoever.  No rights are reserved.
+>     
+> = 
+> ======================================================================
+>
+
+In case I haven't replied to this yet: Yes, this is fine with me.
+
+robey
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.8 (Darwin)
+
+iEYEARECAAYFAkmZ01gACgkQQQDkKvyJ6cOLvQCfQmYYuVODvIlyLg0hgCI9LAbQ
+SH8AoLJgaq1lIi7/ZYDc+/Cd8VO0xLbr
+=Mv6g
+-----END PGP SIGNATURE-----
+
+
+
+==========================================================
+From dlitz@dlitz.net Sun Aug  2 21:48:25 2009
+Date: Sun, 2 Aug 2009 21:48:25 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Paul Swartz <paulswartz@gmail.com>
+Subject: PyCrypto license clarification
+Message-ID: <20090803014825.GA1326@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2631
+
+Hi Paul,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+   ===================================================================
+   Distribute and use freely; there are no restrictions on further
+   dissemination and usage except those imposed by the laws of your
+   country of residence.  This software is provided "as is" without
+   warranty of fitness for use or suitability for any purpose, express
+   or implied. Use at your own risk or not at all.
+   ===================================================================
+
+   Incorporating the code into commercial products is permitted; you do
+   not have to make source available or contribute your changes back
+   (though that would be nice).
+
+   --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, Joris Bontje, and Mark 
+Moraes, and they have all approved the following dedication for their 
+contributions.
+
+I understand that you have made contributions to PyCrypto, under nickname 
+"z3p" and/or other names.  May I, on your behalf, dedicate to the public 
+domain all your contributions to PyCrypto, with the following notice?
+
+   =======================================================================
+   The contents of this file are dedicated to the public domain.  To the
+   extent that dedication to the public domain is not available, everyone
+   is granted a worldwide, perpetual, royalty-free, non-exclusive license
+   to exercise all rights associated with the contents of this file for
+   any purpose whatsoever.  No rights are reserved.
+   =======================================================================
+
+Regards,
+  - Dwayne
+
+--
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+   Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From paulswartz@gmail.com Mon Aug  3 12:14:07 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <paulswartz@gmail.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 30B9D984FC4
+    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 12:14:07 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id AD9AE81068
+    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 10:14:06 -0600 (CST)
+Received: (vmailmgr-postfix 32055 invoked by uid 1003);  3 Aug 2009 10:14:06 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: pass (gmail.com ... _spf.google.com: 72.14.220.159 is authorized to use 'paulswartz@gmail.com' in 'mfrom' identity (mechanism 'ip4:72.14.192.0/18' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="paulswartz@gmail.com"; helo=fg-out-1718.google.com; client-ip=72.14.220.159
+Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159])
+    by goedel.dlitz.net (Postfix) with ESMTP id 4E63881066
+    for <dlitz@dlitz.net>; Mon,  3 Aug 2009 10:14:05 -0600 (CST)
+Received: by fg-out-1718.google.com with SMTP id d23so1076840fga.3
+        for <dlitz@dlitz.net>; Mon, 03 Aug 2009 09:14:04 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+        d=gmail.com; s=gamma;
+        h=domainkey-signature:mime-version:received:in-reply-to:references
+         :from:date:message-id:subject:to:content-type
+         :content-transfer-encoding;
+        bh=A0RHBf0TnribKS5qOHJ3WYbkZ+b0cuPeuoKAvpApWcc=;
+        b=gyTqkRhKlHadFKIZCBWsRbnMNVDq1PWlJbyC0EvxPskaoHr3HAR96MWQNBePu/40Ac
+         Vn55qlIqTdom4e9zlUEE6MwZo9kqi/Qw0L/SLib0DlQeNqo/eHYqPmuVswltaYwNAyMJ
+         Y9++76rPGzqYdALsfvsmwv7Q3/bEmjVTr0tQE=
+DomainKey-Signature: a=rsa-sha1; c=nofws;
+        d=gmail.com; s=gamma;
+        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
+         :content-type:content-transfer-encoding;
+        b=jze7KSMkUGilfVCXKXaaXMi5NAtGdMQOtVZZfRNyGSy68xOd2sxefjyyig3EfT6Nv6
+         Q3opUMsT96Q6zjZND55w446kTh2uBTNz4d3NwIeEWJnG3xcliRQu/mXPFp8AzPI3CefL
+         1ornJLM1eQ2XyuZA73jem+SJtfdHUcSD1UhgI=
+MIME-Version: 1.0
+Received: by 10.239.157.147 with SMTP id q19mr601802hbc.61.1249316043185; Mon, 
+    03 Aug 2009 09:14:03 -0700 (PDT)
+In-Reply-To: <20090803014825.GA1326@rivest.dlitz.net>
+References: <20090803014825.GA1326@rivest.dlitz.net>
+From: Paul Swartz <paulswartz@gmail.com>
+Date: Mon, 3 Aug 2009 12:13:43 -0400
+Message-ID: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: quoted-printable
+Status: RO
+X-Status: A
+Content-Length: 1450
+
+On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wro=
+te:
+> Hi Paul,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+
+That's great!
+
+> I understand that you have made contributions to PyCrypto, under nickname
+> "z3p" and/or other names. =C2=A0May I, on your behalf, dedicate to the pu=
+blic
+> domain all your contributions to PyCrypto, with the following notice?
+>
+> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+> =C2=A0The contents of this file are dedicated to the public domain. =C2=
+=A0To the
+> =C2=A0extent that dedication to the public domain is not available, every=
+one
+> =C2=A0is granted a worldwide, perpetual, royalty-free, non-exclusive lice=
+nse
+> =C2=A0to exercise all rights associated with the contents of this file fo=
+r
+> =C2=A0any purpose whatsoever. =C2=A0No rights are reserved.
+> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+Yes, that's fine.  Good luck with the new release!
+
+-p
+--=20
+Paul Swartz
+paulswartz at gmail dot com
+http://paulswartz.net/
+AIM: z3penguin
+
+
+From dlitz@dlitz.net Mon Aug  3 14:35:01 2009
+Date: Mon, 3 Aug 2009 14:35:01 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Paul Swartz <paulswartz@gmail.com>
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090803183501.GA17472@rivest.dlitz.net>
+References: <20090803014825.GA1326@rivest.dlitz.net> <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=iso-8859-1; format=flowed
+Content-Disposition: inline
+Content-Transfer-Encoding: 8bit
+In-Reply-To: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 1250
+
+On Mon, Aug 03, 2009 at 12:13:43PM -0400, Paul Swartz wrote:
+>On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wrote:
+>> Hi Paul,
+>>
+>> I am the new maintainer of the Python Cryptography Toolkit, and I am
+>> working on a new release at http://www.pycrypto.org/.
+>
+>That's great!
+>
+>> I understand that you have made contributions to PyCrypto, under nickname
+>> "z3p" and/or other names. �May I, on your behalf, dedicate to the public
+>> domain all your contributions to PyCrypto, with the following notice?
+>>
+>> �=======================================================================
+>> �The contents of this file are dedicated to the public domain. �To the
+>> �extent that dedication to the public domain is not available, everyone
+>> �is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>> �to exercise all rights associated with the contents of this file for
+>> �any purpose whatsoever. �No rights are reserved.
+>> �=======================================================================
+>
+>Yes, that's fine.  Good luck with the new release!
+
+Perfect!  Thanks for the quick response!
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+
+
+==========================================================
+
+
+ + +
+ +
+

python-social-auth + 0.2.12 +

+ + +
Copyright (c) 2012-2013, Matias Aguirre
+ + + + +
Copyright (c) 2012-2013, Matías Aguirre
+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 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 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.
+
+ + +
+ +
+

psycopg2 + 2.5.4 +

+ + + +
psycopg2 and the LGPL
+=====================
+
+psycopg2 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 3 of the License, or
+(at your option) any later version.
+
+psycopg2 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.
+
+In addition, as a special exception, the copyright holders give
+permission to link this program with the OpenSSL library (or with
+modified versions of OpenSSL that use the same license as OpenSSL),
+and distribute linked combinations including the two.
+
+You must obey the GNU Lesser General Public License in all respects for
+all of the code used other than OpenSSL. If you modify file(s) with this
+exception, you may extend this exception to your version of the file(s),
+but you are not obligated to do so. If you do not wish to do so, delete
+this exception statement from your version. If you delete this exception
+statement from all source files in the program, then also delete it here.
+
+You should have received a copy of the GNU Lesser General Public License
+along with psycopg2 (see the doc/ directory.)
+If not, see .
+
+
+Alternative licenses
+====================
+
+If you prefer you can use the Zope Database Adapter ZPsycopgDA (i.e.,
+every file inside the ZPsycopgDA directory) user the ZPL license as
+published on the Zope web site, http://www.zope.org/Resources/ZPL.
+
+Also, the following BSD-like license applies (at your option) to the
+files following the pattern psycopg/adapter*.{h,c} and
+psycopg/microprotocol*.{h,c}:
+
+ 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.
+
+ ============================================================================
+ This build contains zlib 1.2.8
+ http://zlib.net/zlib-1.2.8.tar.gz
+
+   version 1.2.8, April 28th, 2013
+
+  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.
+
+  Jean-loup Gailly        Mark Adler
+  jloup@gzip.org          madler@alumni.caltech.edu
+ 
+==============================================================================
+ This build contains libpq from Postgres 9.3.5
+ 
+ PostgreSQL Database Management System
+(formerly known as Postgres, then as Postgres95)
+
+Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+
+Portions Copyright (c) 1994, The Regents of the University of California
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose, without fee, and without a written agreement
+is hereby granted, provided that the above copyright notice and this
+paragraph and the following two paragraphs appear in all copies.
+
+IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
+DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
+LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
+DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
+ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
+PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+ 
+ =============================================================================
+ This build contains OpenSSL 1.0.1i 
+ 
+  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.]
+ */
+
+ 
+ + + +
		   GNU LESSER GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ 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.
+
+
+
+
+
+
+
+
+====================================================================
+
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ 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.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    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 <http://www.gnu.org/licenses/>.
+
+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:
+
+    <program>  Copyright (C) <year>  <name of author>
+    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
+<http://www.gnu.org/licenses/>.
+
+  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
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
+
+
+
+
+ + +
+ +
+

funcparserlib + 0.3.6 +

+ + +
Copyright 2008/2011 Andrey Vlasovskikh
+ + + + +
Copyright © 2008/2011 Andrey Vlasovskikh
+
+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-ldap + 2.4.20 +

+ + + + + +
+The python-ldap package is distributed under Python-style license.
+
+Standard disclaimer:
+   This software is made available by the author(s) to the public for free
+   and "as is".  All users of this free software are solely and entirely
+   responsible for their own choice and use of this software for their
+   own purposes.  By using this software, each user agrees that the
+   author(s) shall not be liable for damages of any kind in relation to
+   its use or performance. The author(s) do not warrant that this software
+   is fit for any purpose.
+
+$Id: LICENCE,v 1.1 2002/09/18 18:51:22 stroeder Exp $
+
+ + +
+ +
+

ecdsa + 0.13 +

+ + +
python-ecdsa Copyright (c) 2010 Brian Warner
+Portions written in 2005 by Peter Pearson and placed in the public domain.
+ + + + + +
+ +
+

django-filter + 0.11.0 +

+ + +
Copyright (c) Alex Gaynor and individual contributors.
+ + + + +
Copyright (c) Alex Gaynor and individual 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:
+
+ * 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 its contributors may not 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.
+ + +
+ +
+

pycrypto + 2.6.1 +

+ + + + + +
Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"):
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Previously, the copyright and/or licensing status of the Python
+Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous.  The
+original intention of Andrew M. Kuchling and other contributors has
+been to dedicate PyCrypto to the public domain, but that intention was
+not necessarily made clear in the original disclaimer (see
+LEGAL/copy/LICENSE.orig).
+
+Additionally, some files within PyCrypto had specified their own
+licenses that differed from the PyCrypto license itself.  For example,
+the original RIPEMD.c module simply had a copyright statement and
+warranty disclaimer, without clearly specifying any license terms.
+(An updated version on the author's website came with a license that
+contained a GPL-incompatible advertising clause.)
+
+To rectify this situation for PyCrypto 2.1, the following steps have
+been taken:
+
+ 1. Obtaining explicit permission from the original contributors to
+    dedicate their contributions to the public domain if they have not
+    already done so.  (See the "LEGAL/copy/stmts" directory for
+    contributors' statements.)
+
+ 2. Replacing some modules with clearly-licensed code from other
+    sources (e.g. the DES and DES3 modules were replaced with new ones
+    based on Tom St. Denis's public-domain LibTomCrypt library.)
+
+ 3. Replacing some modules with code written from scratch (e.g. the
+    RIPEMD and Blowfish modules were re-implemented from their
+    respective algorithm specifications without reference to the old
+    implementations).
+
+ 4. Removing some modules altogether without replacing them.
+
+To the best of our knowledge, with the exceptions noted below or
+within the files themselves, the files that constitute PyCrypto are in
+the public domain.  Most are distributed with the following notice:
+
+  The contents of this file are dedicated to the public domain.  To
+  the extent that dedication to the public domain is not available,
+  everyone is granted a worldwide, perpetual, royalty-free,
+  non-exclusive license to exercise all rights associated with the
+  contents of this file for any purpose whatsoever.
+  No rights are reserved.
+
+  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.
+
+Exception:
+
+ - Portions of HMAC.py and setup.py are derived from Python 2.2, and
+   are therefore Copyright (c) 2001, 2002, 2003 Python Software
+   Foundation (All Rights Reserved).  They are licensed by the PSF
+   under the terms of the Python 2.2 license.  (See the file
+   LEGAL/copy/LICENSE.python-2.2 for details.)
+
+EXPORT RESTRICTIONS:
+
+Note that the export or re-export of cryptographic software and/or
+source code may be subject to regulation in your jurisdiction.
+
+
+
+==================================================================
+LICENSE.python-2.2
+LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
+LICENSE.libtom  LICENSE file from LibTomCrypt
+stmts/          Statements by contributors
+
+==================================================================
+LICENSE.python-2.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)
+
+    0.9.0 thru 1.2              1991-1995   CWI         yes
+    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
+    1.6             1.5.2       2000        CNRI        no
+    2.0             1.6         2000        BeOpen.com  no
+    1.6.1           1.6         2001        CNRI        no
+    2.1             2.0+1.6.1   2001        PSF         no
+    2.0.1           2.0+1.6.1   2001        PSF         yes
+    2.1.1           2.1+2.0.1   2001        PSF         yes
+    2.2             2.1.1       2001        PSF         yes
+    2.1.2           2.1.1       2002        PSF         yes
+    2.1.3           2.1.2       2002        PSF         yes
+    2.2.1           2.2         2002        PSF         yes
+    2.2.2           2.2.1       2002        PSF         yes
+    2.2.3           2.2.2       2003        PSF         yes
+
+Footnotes:
+
+(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.
+
+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
+===============================================================
+
+PSF LICENSE AGREEMENT FOR PYTHON 2.2.3
+--------------------------------------
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using Python 2.2.3 software 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 2.2.3
+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 Python Software Foundation; All Rights Reserved" are
+retained in Python 2.2.3 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 2.2.3 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 2.2.3.
+
+4. PSF is making Python 2.2.3 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 2.2.3 WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+2.2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.2.3,
+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 2.2.3, 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.
+
+
+===================================================================
+LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
+===================================================================
+Distribute and use freely; there are no restrictions on further
+dissemination and usage except those imposed by the laws of your
+country of residence.  This software is provided "as is" without
+warranty of fitness for use or suitability for any purpose, express
+or implied. Use at your own risk or not at all.
+===================================================================
+
+Incorporating the code into commercial products is permitted; you do
+not have to make source available or contribute your changes back
+(though that would be nice).
+
+--amk                                                             (www.amk.ca)
+
+
+
+LICENSE.libtom  LICENSE file from LibTomCrypt
+===================================================================
+LibTomCrypt is public domain.  As should all quality software be.
+
+Tom St Denis
+
+
+
+Statements by contributors
+===================================================================
+From dlitz@dlitz.net Sun Nov 23 00:17:22 2008
+Date: Sun, 23 Nov 2008 00:17:22 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: "A. M. Kuchling" <amk@amk.ca>
+Subject: PyCrypto license clarification
+Message-ID: <20081123051722.GA29253@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: multipart/signed; micalg=pgp-sha1;
+    protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4"
+Content-Disposition: inline
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3461
+Lines: 78
+
+
+--YiEDa0DAkWCtVeE4
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+Content-Transfer-Encoding: quoted-printable
+
+Hi Andrew,
+
+People often ask me what license PyCrypto is covered by, if it's=20
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them. =20
+The text in the current LICENSE file (quoted below) is not entirely clear=
+=20
+on the point of whether distributing modified versions is allowed.  (It=20
+says "distribute and use", but not "modify".)
+
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+     Distribute and use freely; there are no restrictions on further
+     dissemination and usage except those imposed by the laws of your
+     country of residence.  This software is provided "as is" without
+     warranty of fitness for use or suitability for any purpose, express
+     or implied. Use at your own risk or not at all.
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+     Incorporating the code into commercial products is permitted; you do
+     not have to make source available or contribute your changes back
+     (though that would be nice).
+
+     --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I'd like to take steps to move toward a=20
+clearer licensing regime.  I'm asking as many copyright holders as I can=20
+find, starting with you, if I can release PyCrypto under something clearer=
+=20
+and more standard.  Below, I have quoted a public domain dedication that=20
+was recommended in _Intellectual Property and Open Source: A Practical=20
+Guide to Protecting Code_, by Van Lindberg.
+
+May I, on your behalf, dedicate to the public domain your considerable=20
+contributions to PyCrypto, with the following notice?
+
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+     The contents of this file are dedicated to the public domain.  To the
+     extent that dedication to the public domain is not available, everyone
+     is granted a worldwide, perpetual, royalty-free, non-exclusive license
+     to exercise all rights associated with the contents of this file for
+     any purpose whatsoever.  No rights are reserved.
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+Regards,
+  - Dwayne
+
+--=20
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+--YiEDa0DAkWCtVeE4
+Content-Type: application/pgp-signature; name="signature.asc"
+Content-Description: Digital signature
+Content-Disposition: inline
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+iEYEARECAAYFAkko52IACgkQHBG4d+eAS0XPPQCfcyQ2DdAXKg9N7Z+jeSFFD5EZ
+yloAn33a3ZjkteyJaTbzEqImOEW8JGpf
+=aBEW
+-----END PGP SIGNATURE-----
+
+--YiEDa0DAkWCtVeE4--
+
+From amk@amk.ca Sun Nov 23 07:51:59 2008
+X-Maildir-Dup-Checked: Yes
+Return-Path: <amk@amk.ca>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 5C2C75047D
+    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 07:51:59 -0500 (EST)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id D632D10111
+    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
+Received: (vmailmgr-postfix 12026 invoked by uid 1003); 23 Nov 2008 06:51:58 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (goedel.dlitz.net: domain of amk@amk.ca does not designate permitted sender hosts)
+Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7])
+    by goedel.dlitz.net (Postfix) with ESMTP id 97DC710105
+    for <dlitz@dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
+Received: (qmail 3992 invoked from network); 23 Nov 2008 12:51:52 -0000
+Received: from dsl092-163-165.wdc2.dsl.speakeasy.net (HELO localhost) (akuchling@[66.92.163.165])
+          (envelope-sender <amk@amk.ca>)
+          by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP
+          for <dlitz@dlitz.net>; 23 Nov 2008 12:51:52 -0000
+Date: Sun, 23 Nov 2008 07:51:34 -0500
+From: "A.M. Kuchling" <amk@amk.ca>
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Subject: Re: PyCrypto license clarification
+Message-ID: <20081123125134.GA21239@amk.local>
+Reply-To: amk@amk.ca
+References: <20081123051722.GA29253@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Content-Disposition: inline
+In-Reply-To: <20081123051722.GA29253@rivest.dlitz.net>
+User-Agent: Mutt/1.5.13 (2006-08-11)
+Status: RO
+Content-Length: 537
+Lines: 15
+
+> People often ask me what license PyCrypto is covered by, if it's 
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+> The text in the current LICENSE file (quoted below) is not entirely clear 
+> on the point of whether distributing modified versions is allowed.  (It 
+> says "distribute and use", but not "modify".)
+
+The intention is that it be public domain.
+
+> May I, on your behalf, dedicate to the public domain your considerable 
+> contributions to PyCrypto, with the following notice?
+
+You may.
+
+--amk
+
+
+================================================
+From dlitz@dlitz.net Sat Feb 28 21:45:09 2009
+Date: Sat, 28 Feb 2009 21:45:09 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Barry A Warsaw <barry@python.org>
+Subject: PyCrypto license clarification
+Message-ID: <20090301024509.GA13195@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2535
+
+Hi Barry,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am 
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's 
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+The text in the current LICENSE file (quoted below) is not entirely clear 
+on the point of whether distributing modified versions is allowed.  (It 
+says "distribute and use", but not "modify".)
+
+  ===================================================================
+  Distribute and use freely; there are no restrictions on further
+  dissemination and usage except those imposed by the laws of your
+  country of residence.  This software is provided "as is" without
+  warranty of fitness for use or suitability for any purpose, express
+  or implied. Use at your own risk or not at all.
+  ===================================================================
+
+  Incorporating the code into commercial products is permitted; you do
+  not have to make source available or contribute your changes back
+  (though that would be nice).
+
+  --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a 
+clearer licensing regime.  I am asking as many copyright holders as I can 
+find if I can release PyCrypto under something clearer and more standard.  
+Below, I have quoted a public domain dedication that was recommended in 
+_Intellectual Property and Open Source: A Practical Guide to Protecting 
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
+Pointer, and Wim Lewis, and they have all approved the following dedication 
+for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your 
+behalf, dedicate to the public domain all your contributions to PyCrypto, 
+with the following notice?
+
+  =======================================================================
+  The contents of this file are dedicated to the public domain.  To the
+  extent that dedication to the public domain is not available, everyone
+  is granted a worldwide, perpetual, royalty-free, non-exclusive license
+  to exercise all rights associated with the contents of this file for
+  any purpose whatsoever.  No rights are reserved.
+  =======================================================================
+
+Regards,
+  - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+     Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From barry@python.org Mon Mar  2 11:29:39 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <barry@python.org>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 6E01AC6640B
+    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 11:29:39 -0500 (EST)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 0644E1007A
+    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 10:29:39 -0600 (CST)
+Received: (vmailmgr-postfix 8668 invoked by uid 1003);  2 Mar 2009 10:29:39 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (python.org: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="barry@python.org"; helo=mail.wooz.org; client-ip=216.15.33.230
+Received: from mail.wooz.org (216-15-33-230.c3-0.slvr-ubr2.lnh-slvr.md.static.cable.rcn.com [216.15.33.230])
+    by goedel.dlitz.net (Postfix) with ESMTP id CCEA110073
+    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 10:29:38 -0600 (CST)
+Received: from snowdog.wooz.org (snowdog.wooz.org [192.168.11.202])
+    by mail.wooz.org (Postfix) with ESMTPSA id ACE30E3C9F
+    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 11:29:35 -0500 (EST)
+Message-Id: <09BF1A39-B015-4820-97A3-8642490C8254@python.org>
+From: Barry Warsaw <barry@python.org>
+To: Dwayne C. Litzenberger <dlitz@dlitz.net>
+In-Reply-To: <20090301024509.GA13195@rivest.dlitz.net>
+Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
+Content-Transfer-Encoding: quoted-printable
+Mime-Version: 1.0 (Apple Message framework v930.3)
+Subject: Re: PyCrypto license clarification
+Date: Mon, 2 Mar 2009 11:29:34 -0500
+References: <20090301024509.GA13195@rivest.dlitz.net>
+X-Pgp-Agent: GPGMail d55 (v55, Leopard)
+X-Mailer: Apple Mail (2.930.3)
+Status: RO
+Content-Length: 869
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On Feb 28, 2009, at 9:45 PM, Dwayne C. Litzenberger wrote:
+
+> I am the new maintainer of the Python Cryptography Toolkit, and I am =20=
+
+> working on a new release at http://www.pycrypto.org/.
+
+Great!  I'm glad to see someone taking up the mantle of this important =20=
+
+Python library.
+
+> I understand that you have made contributions to PyCrypto.  May I, =20
+> on your behalf, dedicate to the public domain all your contributions =20=
+
+> to PyCrypto, with the following notice?
+
+Absolutely yes.
+
+Cheers,
+Barry
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+
+iQCVAwUBSawJbnEjvBPtnXfVAQLZjgP/ecG+JdZwNvPJRfsa6rhY6+MHLDHI6agk
+evkJnSJQAcVHlZnVlVeR5IXgvDUMakZjU4SOV7MqkhsKA9lIet7PaD9VSYgn3ra5
+gElwI2DQDoOy5GExXMm74gqrrb1PCCbCRmpaYNo+DZohwHkeFBjbwDRA3wItOrH7
+SK4w9VBJtfY=3D
+=3DQduY
+-----END PGP SIGNATURE-----
+
+
+
+===================================================
+From dlitz@dlitz.net Sat Feb 28 23:24:14 2009
+Date: Sat, 28 Feb 2009 23:24:14 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Jeethu Rao <jeethurao@gmail.com>
+Subject: PyCrypto license clarification
+Message-ID: <20090301042414.GA15122@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2513
+
+Hi Jeethu,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am 
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's 
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+The text in the current LICENSE file (quoted below) is not entirely clear 
+on the point of whether distributing modified versions is allowed.  (It 
+says "distribute and use", but not "modify".)
+
+ ===================================================================
+ Distribute and use freely; there are no restrictions on further
+ dissemination and usage except those imposed by the laws of your
+ country of residence.  This software is provided "as is" without
+ warranty of fitness for use or suitability for any purpose, express
+ or implied. Use at your own risk or not at all.
+ ===================================================================
+
+ Incorporating the code into commercial products is permitted; you do
+ not have to make source available or contribute your changes back
+ (though that would be nice).
+
+ --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a 
+clearer licensing regime.  I am asking as many copyright holders as I can 
+find if I can release PyCrypto under something clearer and more standard.  
+Below, I have quoted a public domain dedication that was recommended in 
+_Intellectual Property and Open Source: A Practical Guide to Protecting 
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
+Pointer, and Wim Lewis, and they have all approved the following text for 
+their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your 
+behalf, dedicate to the public domain all your contributions to PyCrypto, 
+with the following notice?
+
+ =======================================================================
+ The contents of this file are dedicated to the public domain.  To the
+ extent that dedication to the public domain is not available, everyone
+ is granted a worldwide, perpetual, royalty-free, non-exclusive license
+ to exercise all rights associated with the contents of this file for
+ any purpose whatsoever.  No rights are reserved.
+ =======================================================================
+
+Regards,
+ - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+       Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From jeethurao@gmail.com Sun Mar  8 17:28:16 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <jeethurao@gmail.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 0CC83515D9
+    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 17:28:16 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 4E58F450CB
+    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 15:28:15 -0600 (CST)
+Received: (vmailmgr-postfix 5011 invoked by uid 1003);  8 Mar 2009 15:28:15 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: pass (gmail.com ... _spf.google.com: 209.85.198.249 is authorized to use 'jeethurao@gmail.com' in 'mfrom' identity (mechanism 'ip4:209.85.128.0/17' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="jeethurao@gmail.com"; helo=rv-out-0708.google.com; client-ip=209.85.198.249
+Received: from rv-out-0708.google.com (unknown [209.85.198.249])
+    by goedel.dlitz.net (Postfix) with ESMTP id 3C097449E7
+    for <dlitz@dlitz.net>; Sun,  8 Mar 2009 15:28:12 -0600 (CST)
+Received: by rv-out-0708.google.com with SMTP id k29so1252333rvb.26
+        for <dlitz@dlitz.net>; Sun, 08 Mar 2009 14:27:56 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+        d=gmail.com; s=gamma;
+        h=domainkey-signature:mime-version:received:in-reply-to:references
+         :date:message-id:subject:from:to:content-type;
+        bh=YWy9U32WCU/ksRqukHwaOZyJQBUs4Yvt5mI20U6mI/g=;
+        b=oMjI22lIxYiJKge2zNJW3rRiUi9LqFXmey5Wp0pLItuNF+X3duyfhopTuBAKw7MwVY
+         B5E6VQuGVEyzBbNsctyVgq6DhQiQtouCLZymSViobmuDmKn5DtUKoxpDk0xCxQmHYaas
+         L9/A6D3/J66kKrNBgX9mc0GPcZTviVFYkPR0Q=
+DomainKey-Signature: a=rsa-sha1; c=nofws;
+        d=gmail.com; s=gamma;
+        h=mime-version:in-reply-to:references:date:message-id:subject:from:to
+         :content-type;
+        b=Ym7CStuDEfJKay1AJyWZkZmJA1lnTcwCG6akBHAXLld8ht6PFcmlsffzZG8hJCIVJ8
+         vljqcT+G6cywVTBw1pyGX7ECYzr0+vhGvgdpACGrs24zikHfpSSd5GFogzXaLVvGVH8p
+         bqSHpfWKKtEP4gAQkiNeIq1GNtR2j8U3fnRyg=
+MIME-Version: 1.0
+Received: by 10.141.176.13 with SMTP id d13mr2656028rvp.231.1236547674677; 
+    Sun, 08 Mar 2009 14:27:54 -0700 (PDT)
+In-Reply-To: <20090301042414.GA15122@rivest.dlitz.net>
+References: <20090301042414.GA15122@rivest.dlitz.net>
+Date: Mon, 9 Mar 2009 02:57:54 +0530
+Message-ID: <e3c0ddba0903081427p3a7b1058g417dd8624df68d6d@mail.gmail.com>
+Subject: Re: PyCrypto license clarification
+From: Jeethu Rao <jeethurao@gmail.com>
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Content-Type: multipart/alternative; boundary=000e0cd209d0e5a3d40464a23054
+Status: RO
+Content-Length: 7668
+
+--000e0cd209d0e5a3d40464a23054
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 7bit
+
+Hi Dwayne,My contribution to pycrypto are very very minimal (The sha256
+module, IIRC).
+I'd be fine with the public domain license for PyCrypto.
+
+Jeethu Rao
+PS: Apologies for the delay in my response.
+I don't really check this email address all that often,
+please direct any further correspondence to jeethu@jeethurao.com
+
+On Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <dlitz@dlitz.net>wrote:
+
+> Hi Jeethu,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+>
+> People often ask me what license PyCrypto is covered by, if it's
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  The
+> text in the current LICENSE file (quoted below) is not entirely clear on the
+> point of whether distributing modified versions is allowed.  (It says
+> "distribute and use", but not "modify".)
+>
+> ===================================================================
+> Distribute and use freely; there are no restrictions on further
+> dissemination and usage except those imposed by the laws of your
+> country of residence.  This software is provided "as is" without
+> warranty of fitness for use or suitability for any purpose, express
+> or implied. Use at your own risk or not at all.
+> ===================================================================
+>
+> Incorporating the code into commercial products is permitted; you do
+> not have to make source available or contribute your changes back
+> (though that would be nice).
+>
+> --amk                                                    (www.amk.ca)
+>
+> For the next PyCrypto release, I would like to take steps to move toward a
+> clearer licensing regime.  I am asking as many copyright holders as I can
+> find if I can release PyCrypto under something clearer and more standard.
+>  Below, I have quoted a public domain dedication that was recommended in
+> _Intellectual Property and Open Source: A Practical Guide to Protecting
+> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+> Pointer, and Wim Lewis, and they have all approved the following text for
+> their contributions.
+>
+> I understand that you have made contributions to PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your contributions to PyCrypto,
+> with the following notice?
+>
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+> Regards,
+> - Dwayne
+>
+> --
+> Dwayne C. Litzenberger <dlitz@dlitz.net>
+>      Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>
+
+
+
+-- 
+Jeethu Rao
+
+--000e0cd209d0e5a3d40464a23054
+Content-Type: text/html; charset=ISO-8859-1
+Content-Transfer-Encoding: quoted-printable
+
+Hi Dwayne,<div>My contribution to pycrypto are very very minimal (The sha25=
+6 module, IIRC).</div><div>I&#39;d be fine with the public domain license f=
+or PyCrypto.</div><div><br></div><div>Jeethu Rao</div><div>PS: Apologies fo=
+r the delay in my response.=A0</div>
+<div>I don&#39;t really check this email address all that often,</div><div>=
+please direct any further correspondence to <a href=3D"mailto:jeethu@jeethu=
+rao.com">jeethu@jeethurao.com</a><br><div><br><div class=3D"gmail_quote">On=
+ Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <span dir=3D"ltr">&lt;=
+<a href=3D"mailto:dlitz@dlitz.net">dlitz@dlitz.net</a>&gt;</span> wrote:<br=
+>
+<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
+x #ccc solid;padding-left:1ex;">Hi Jeethu,<br>
+<br>
+I am the new maintainer of the Python Cryptography Toolkit, and I am workin=
+g on a new release at <a href=3D"http://www.pycrypto.org/" target=3D"_blank=
+">http://www.pycrypto.org/</a>.<br>
+<br>
+People often ask me what license PyCrypto is covered by, if it&#39;s GPL-co=
+mpatible, etc. =A0Right now, I&#39;m not really sure what to tell them. =A0=
+The text in the current LICENSE file (quoted below) is not entirely clear o=
+n the point of whether distributing modified versions is allowed. =A0(It sa=
+ys &quot;distribute and use&quot;, but not &quot;modify&quot;.)<br>
+
+<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+Distribute and use freely; there are no restrictions on further<br>
+dissemination and usage except those imposed by the laws of your<br>
+country of residence. =A0This software is provided &quot;as is&quot; withou=
+t<br>
+warranty of fitness for use or suitability for any purpose, express<br>
+or implied. Use at your own risk or not at all.<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+<br>
+Incorporating the code into commercial products is permitted; you do<br>
+not have to make source available or contribute your changes back<br>
+(though that would be nice).<br>
+<br>
+--amk =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
+=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(<a href=3D"http://www.amk.ca" target=3D=
+"_blank">www.amk.ca</a>)<br>
+<br>
+For the next PyCrypto release, I would like to take steps to move toward a =
+clearer licensing regime. =A0I am asking as many copyright holders as I can=
+ find if I can release PyCrypto under something clearer and more standard. =
+=A0Below, I have quoted a public domain dedication that was recommended in =
+_Intellectual Property and Open Source: A Practical Guide to Protecting Cod=
+e_, by Van Lindberg. =A0I have already contacted A. M. Kuchling, Robey Poin=
+ter, and Wim Lewis, and they have all approved the following text for their=
+ contributions.<br>
+
+<br>
+I understand that you have made contributions to PyCrypto. =A0May I, on you=
+r behalf, dedicate to the public domain all your contributions to PyCrypto,=
+ with the following notice?<br>
+<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+The contents of this file are dedicated to the public domain. =A0To the<br>
+extent that dedication to the public domain is not available, everyone<br>
+is granted a worldwide, perpetual, royalty-free, non-exclusive license<br>
+to exercise all rights associated with the contents of this file for<br>
+any purpose whatsoever. =A0No rights are reserved.<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+<br>
+Regards,<br>
+- Dwayne<br><font color=3D"#888888">
+<br>
+-- <br>
+Dwayne C. Litzenberger &lt;<a href=3D"mailto:dlitz@dlitz.net" target=3D"_bl=
+ank">dlitz@dlitz.net</a>&gt;<br>
+ =A0 =A0 =A0Key-signing key =A0 - 19E1 1FE8 B3CF F273 ED17 =A04A24 928C EC1=
+3 39C2 5CF7<br>
+</font></blockquote></div><br><br clear=3D"all"><br>-- <br>Jeethu Rao<br>
+</div></div>
+
+--000e0cd209d0e5a3d40464a23054--
+
+
+=======================================================
+From dlitz@dlitz.net Mon May  4 22:49:14 2009
+Date: Mon, 4 May 2009 22:49:14 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Joris Bontje <joris@bontje.nl>
+Subject: PyCrypto license clarification
+Message-ID: <20090505024914.GA9219@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2553
+
+Hi Joris,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+  ===================================================================
+  Distribute and use freely; there are no restrictions on further
+  dissemination and usage except those imposed by the laws of your
+  country of residence.  This software is provided "as is" without
+  warranty of fitness for use or suitability for any purpose, express
+  or implied. Use at your own risk or not at all.
+  ===================================================================
+
+  Incorporating the code into commercial products is permitted; you do
+  not have to make source available or contribute your changes back
+  (though that would be nice).
+
+  --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+have all approved the following dedication for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your
+behalf, dedicate to the public domain all your contributions to PyCrypto,
+with the following notice?
+
+  =======================================================================
+  The contents of this file are dedicated to the public domain.  To the
+  extent that dedication to the public domain is not available, everyone
+  is granted a worldwide, perpetual, royalty-free, non-exclusive license
+  to exercise all rights associated with the contents of this file for
+  any purpose whatsoever.  No rights are reserved.
+  =======================================================================
+
+Regards,
+ - Dwayne
+
+--
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From joris@bontje.nl Tue May  5 03:08:32 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <joris@bontje.nl>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 7AA4B9E5078
+    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 03:08:32 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 2315B40583
+    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 01:08:32 -0600 (CST)
+Received: (vmailmgr-postfix 16890 invoked by uid 1003);  5 May 2009 01:08:32 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (bontje.nl: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="joris@bontje.nl"; helo=smtp6.versatel.nl; client-ip=62.58.50.97
+Received: from smtp6.versatel.nl (smtp6.versatel.nl [62.58.50.97])
+    by goedel.dlitz.net (Postfix) with ESMTP id 2D76A4052C
+    for <dlitz@dlitz.net>; Tue,  5 May 2009 01:08:30 -0600 (CST)
+Received: (qmail 4224 invoked by uid 0); 5 May 2009 07:08:25 -0000
+Received: from qmail06.zonnet.nl (HELO dell062.admin.zonnet.nl) ([10.170.1.123])
+          (envelope-sender <joris@bontje.nl>)
+          by 10.170.1.96 (qmail-ldap-1.03) with SMTP
+          for < >; 5 May 2009 07:08:25 -0000
+Received: by dell062.admin.zonnet.nl (Postfix, from userid 33)
+    id 9BE9B15759B; Tue,  5 May 2009 09:08:25 +0200 (CEST)
+Received: from firewall66.interaccess.nl (firewall66.interaccess.nl
+    [193.173.35.66]) by www.webmail.vuurwerk.nl (Horde MIME library) with HTTP;
+    Tue, 05 May 2009 09:08:25 +0200
+Message-ID: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+Date: Tue, 05 May 2009 09:08:25 +0200
+From: joris@bontje.nl
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Subject: Re: PyCrypto license clarification
+References: <20090505024914.GA9219@rivest.dlitz.net>
+In-Reply-To: <20090505024914.GA9219@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain;
+    charset=ISO-8859-1;
+    format="flowed"
+Content-Disposition: inline
+Content-Transfer-Encoding: 7bit
+User-Agent: Internet Messaging Program (IMP) H3 (4.1.3)
+Status: RO
+X-Status: A
+Content-Length: 3488
+
+Hi Dwayne,
+
+Thanks for taking over the PyCrypto library and putting in the required 
+effort to keep this going.
+I was very excited to read that it is now one of the installed 
+libraries for Google AppsEngine!
+
+You have my full permission to dedicate all my contributions to 
+PyCrypto to the public domain with your suggested notice:
+=======================================================================
+The contents of this file are dedicated to the public domain.  To the
+extent that dedication to the public domain is not available, everyone
+is granted a worldwide, perpetual, royalty-free, non-exclusive license
+to exercise all rights associated with the contents of this file for
+any purpose whatsoever.  No rights are reserved.
+=======================================================================
+
+
+Regards,
+Joris
+
+Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
+
+> Hi Joris,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+>
+> People often ask me what license PyCrypto is covered by, if it's
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+> The text in the current LICENSE file (quoted below) is not entirely clear
+> on the point of whether distributing modified versions is allowed.  (It
+> says "distribute and use", but not "modify".)
+>
+> ===================================================================
+> Distribute and use freely; there are no restrictions on further
+> dissemination and usage except those imposed by the laws of your
+> country of residence.  This software is provided "as is" without
+> warranty of fitness for use or suitability for any purpose, express
+> or implied. Use at your own risk or not at all.
+> ===================================================================
+>
+> Incorporating the code into commercial products is permitted; you do
+> not have to make source available or contribute your changes back
+> (though that would be nice).
+>
+> --amk                                                    (www.amk.ca)
+>
+> For the next PyCrypto release, I would like to take steps to move toward a
+> clearer licensing regime.  I am asking as many copyright holders as I can
+> find if I can release PyCrypto under something clearer and more standard.
+> Below, I have quoted a public domain dedication that was recommended in
+> _Intellectual Property and Open Source: A Practical Guide to Protecting
+> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+> have all approved the following dedication for their contributions.
+>
+> I understand that you have made contributions to PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your contributions to PyCrypto,
+> with the following notice?
+>
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+> Regards,
+> - Dwayne
+>
+> --
+> Dwayne C. Litzenberger <dlitz@dlitz.net>
+> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+
+
+From dlitz@dlitz.net Tue May  5 17:53:47 2009
+Date: Tue, 5 May 2009 17:53:47 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: joris@bontje.nl
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090505215347.GB9933@rivest.dlitz.net>
+References: <20090505024914.GA9219@rivest.dlitz.net> <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+In-Reply-To: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3863
+
+Excellent!  Thank you!
+
+On Tue, May 05, 2009 at 09:08:25AM +0200, joris@bontje.nl wrote:
+> Hi Dwayne,
+>
+> Thanks for taking over the PyCrypto library and putting in the required 
+> effort to keep this going.
+> I was very excited to read that it is now one of the installed libraries 
+> for Google AppsEngine!
+>
+> You have my full permission to dedicate all my contributions to PyCrypto to 
+> the public domain with your suggested notice:
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+>
+> Regards,
+> Joris
+>
+> Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
+>
+>> Hi Joris,
+>>
+>> I am the new maintainer of the Python Cryptography Toolkit, and I am
+>> working on a new release at http://www.pycrypto.org/.
+>>
+>> People often ask me what license PyCrypto is covered by, if it's
+>> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+>> The text in the current LICENSE file (quoted below) is not entirely clear
+>> on the point of whether distributing modified versions is allowed.  (It
+>> says "distribute and use", but not "modify".)
+>>
+>> ===================================================================
+>> Distribute and use freely; there are no restrictions on further
+>> dissemination and usage except those imposed by the laws of your
+>> country of residence.  This software is provided "as is" without
+>> warranty of fitness for use or suitability for any purpose, express
+>> or implied. Use at your own risk or not at all.
+>> ===================================================================
+>>
+>> Incorporating the code into commercial products is permitted; you do
+>> not have to make source available or contribute your changes back
+>> (though that would be nice).
+>>
+>> --amk                                                    (www.amk.ca)
+>>
+>> For the next PyCrypto release, I would like to take steps to move toward a
+>> clearer licensing regime.  I am asking as many copyright holders as I can
+>> find if I can release PyCrypto under something clearer and more standard.
+>> Below, I have quoted a public domain dedication that was recommended in
+>> _Intellectual Property and Open Source: A Practical Guide to Protecting
+>> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+>> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+>> have all approved the following dedication for their contributions.
+>>
+>> I understand that you have made contributions to PyCrypto.  May I, on your
+>> behalf, dedicate to the public domain all your contributions to PyCrypto,
+>> with the following notice?
+>>
+>> =======================================================================
+>> The contents of this file are dedicated to the public domain.  To the
+>> extent that dedication to the public domain is not available, everyone
+>> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>> to exercise all rights associated with the contents of this file for
+>> any purpose whatsoever.  No rights are reserved.
+>> =======================================================================
+>>
+>> Regards,
+>> - Dwayne
+>>
+>> --
+>> Dwayne C. Litzenberger <dlitz@dlitz.net>
+>> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>
+>
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+
+==========================================================
+Date: Sun, 23 Nov 2008 15:54:35 -0800
+From: Wim Lewis <wiml@hhhh.org>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Cc: Wim Lewis <wiml@hhhh.org>
+Message-Id: <9D5C3135-7414-47D7-9D41-0AC6C3A84D97@hhhh.org>
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On November 23, 2008, you wrote:
+>Hi Wim,
+>
+>I am the new maintainer of the Python Cryptography Toolkit, and I am
+>working on a new release at http://www.pycrypto.org/.
+>
+>I understand that you have made contributions to PyCrypto. May I, on
+>your behalf, dedicate to the public domain all your contributions to
+>PyCrypto, with the following notice?
+>
+>   =======================================================================
+>   The contents of this file are dedicated to the public domain.  To the
+>   extent that dedication to the public domain is not available, everyone
+>   is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>   to exercise all rights associated with the contents of this file for
+>   any purpose whatsoever.  No rights are reserved.
+>   =======================================================================
+
+Certainly! I think the only code of mine in PyCrypto is the CAST-5 / CAST-128
+implementation, which already has a public-domain notice at the top of
+the file. But I am happy to have that, any any other code of mine that
+might have wandered in there under an unclear open sourcish license,
+distributed under the public-domain dedication you quote.
+
+Wim.
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.6 (Darwin)
+
+iQCVAwUBSSnnAl8UnN8n93LBAQLp/gQAhr7x8Av1mstc2kxEJDWTm26PTAZxMz4B
+FektbDOzkxgc5580MGGeeX/MVn8aw+1BHg0YD85gsntlDzkcQtb+BR/xAvJ5zKyA
+J/Mn/I+I6ekJQ3juh8IPHLAduOXM9Rtguas/yR+Doaq0xOPKoBx+/5+t1lLJtBcZ
+wrPEa9Oui9s=
+=zSY9
+-----END PGP SIGNATURE-----
+
+
+
+==========================================================
+From dlitz@dlitz.net Sat Apr 18 09:14:20 2009
+Date: Sat, 18 Apr 2009 09:14:20 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Mark Moraes <moraes@computer.org>
+Subject: PyCrypto license clarification
+Message-ID: <20090418131419.GA14494@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2635
+
+Hi Mark,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+       ===================================================================
+       Distribute and use freely; there are no restrictions on further
+       dissemination and usage except those imposed by the laws of your
+       country of residence.  This software is provided "as is" without
+       warranty of fitness for use or suitability for any purpose, express
+       or implied. Use at your own risk or not at all.
+       ===================================================================
+
+       Incorporating the code into commercial products is permitted; you do
+       not have to make source available or contribute your changes back
+       (though that would be nice).
+
+       --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they have all
+approved the following dedication for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your
+behalf, dedicate to the public domain all your contributions to PyCrypto,
+with the following notice?
+
+       =======================================================================
+       The contents of this file are dedicated to the public domain.  To the
+       extent that dedication to the public domain is not available, everyone
+       is granted a worldwide, perpetual, royalty-free, non-exclusive license
+       to exercise all rights associated with the contents of this file for
+       any purpose whatsoever.  No rights are reserved.
+       =======================================================================
+
+Regards,
+    - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+    Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From markmoraes@yahoo.com Mon Apr 20 19:25:37 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <markmoraes@yahoo.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 5D9AE984FDD
+    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 19:25:37 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id DE41F4025F
+    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
+Received: (vmailmgr-postfix 7604 invoked by uid 1003); 20 Apr 2009 17:25:36 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (yahoo.com: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="markmoraes@yahoo.com"; helo=web32405.mail.mud.yahoo.com; client-ip=68.142.207.198
+Received: from web32405.mail.mud.yahoo.com (web32405.mail.mud.yahoo.com [68.142.207.198])
+    by goedel.dlitz.net (Postfix) with SMTP id B5EAF401EE
+    for <dlitz@dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
+Received: (qmail 34697 invoked by uid 60001); 20 Apr 2009 23:25:33 -0000
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1240269933; bh=OvxqbYnCg7R6tUN3YmlgFURM3CuHh1JeHyXhDzkaThU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=F2h2bFzpQxyKFZ8BhenniyupGw4Zvlekb9BSk91qKU+51W/TkSGBij5YZIhkLQdkQk0qLz5f4g8dT6bOME3sEY1j10hlx0K0u2UD0yoYTINBCmsdMQRoJ7ph9bmt+p/EJhRpe+FiV6aoLV0FONWiHfGDghPT1dulWXfVTqgB2aU=
+DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
+  s=s1024; d=yahoo.com;
+  h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
+  b=r6RShFF5VzQLg+9tcn1xKuo4Rs4IVvXF6fdqOpQrMyRCxeFooebhuTE35grGqlomOJLwM0+mZwRb6rGkDj763caOAlo8Ect/qlADW5izXfmVQaDchTbTqmpsJBmQnTQs9iZ+InrG+3UIwtUSGfX7fhEWmI9P/HBzxf9Wp4b3jeo=;
+Message-ID: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+X-YMail-OSG: FrK8aWMVM1mFJtLpMGbUbCLjbUQC.i.JkIAKUHSFsFn7t9PbtewAewXJ2uhZGCOlGCX6oVnG3u.CgqzAffY4vZSnfTT8wnCkzZNZ_g6k.XUc3ipo_6e.92TXl4p8MxDGAf1tpNF5nXPwcQ7aREs7jGoWWVJYVytp50clsUFSHzf7Zbpa8P1Yoe_xSzf3OAgRSh5fCrbFCC8sHPCuwrL3YhasbtHmkWffteSS.x6gEcBaxf03oz4FeDb5mpJ54g11Xonq8h_TmzX9g84Bin9g_3fJ4WSXm6g6.tohLyfXcUxoz4j036wyWpTKPrWEzIUQaN83Sv_bj_Ghxw--
+Received: from [69.124.140.74] by web32405.mail.mud.yahoo.com via HTTP; Mon, 20 Apr 2009 16:25:32 PDT
+X-Mailer: YahooMailClassic/5.2.15 YahooMailWebService/0.7.289.1
+Date: Mon, 20 Apr 2009 16:25:32 -0700 (PDT)
+From: M Moraes <markmoraes@yahoo.com>
+Reply-To: moraes@computer.org
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Status: RO
+X-Status: A
+Content-Length: 3222
+
+
+Hi Dwayne.
+
+Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
+
+Regards,
+Mark.
+
+--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
+
+> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
+> Subject: PyCrypto license clarification
+> To: "Mark Moraes" <moraes@computer.org>
+> Date: Saturday, April 18, 2009, 9:14 AM
+> Hi Mark,
+> 
+> I am the new maintainer of the Python Cryptography Toolkit,
+> and I am
+> working on a new release at http://www.pycrypto.org/.
+> 
+> People often ask me what license PyCrypto is covered by, if
+> it's
+> GPL-compatible, etc.  Right now, I'm not really sure
+> what to tell them.
+> The text in the current LICENSE file (quoted below) is not
+> entirely clear
+> on the point of whether distributing modified versions is
+> allowed.  (It
+> says "distribute and use", but not "modify".)
+> 
+>      
+> ===================================================================
+>       Distribute and use freely; there are
+> no restrictions on further
+>       dissemination and usage except those
+> imposed by the laws of your
+>       country of residence.  This
+> software is provided "as is" without
+>       warranty of fitness for use or
+> suitability for any purpose, express
+>       or implied. Use at your own risk or
+> not at all.
+>      
+> ===================================================================
+> 
+>       Incorporating the code into commercial
+> products is permitted; you do
+>       not have to make source available or
+> contribute your changes back
+>       (though that would be nice).
+> 
+>       --amk       
+>                
+>                
+>             (www.amk.ca)
+> 
+> For the next PyCrypto release, I would like to take steps
+> to move toward a
+> clearer licensing regime.  I am asking as many
+> copyright holders as I can
+> find if I can release PyCrypto under something clearer and
+> more standard.
+> Below, I have quoted a public domain dedication that was
+> recommended in
+> _Intellectual Property and Open Source: A Practical Guide
+> to Protecting
+> Code_, by Van Lindberg.  I have already contacted A.
+> M. Kuchling, Robey
+> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
+> have all
+> approved the following dedication for their contributions.
+> 
+> I understand that you have made contributions to
+> PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your
+> contributions to PyCrypto,
+> with the following notice?
+> 
+>      
+> =======================================================================
+>       The contents of this file are
+> dedicated to the public domain.  To the
+>       extent that dedication to the public
+> domain is not available, everyone
+>       is granted a worldwide, perpetual,
+> royalty-free, non-exclusive license
+>       to exercise all rights associated with
+> the contents of this file for
+>       any purpose whatsoever.  No
+> rights are reserved.
+>      
+> =======================================================================
+> 
+> Regards,
+>    - Dwayne
+> 
+> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
+>    Key-signing key   - 19E1
+> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+> 
+
+
+From dlitz@dlitz.net Mon Apr 20 20:01:37 2009
+Date: Mon, 20 Apr 2009 20:01:37 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: moraes@computer.org
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090421000137.GA29012@rivest.dlitz.net>
+References: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+In-Reply-To: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3677
+
+Thanks a lot, and don't worry about not responding to previous emails.  I 
+do that too much myself. :)
+
+On Mon, Apr 20, 2009 at 04:25:32PM -0700, M Moraes wrote:
+>
+>Hi Dwayne.
+>
+>Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
+>
+>Regards,
+>Mark.
+>
+>--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
+>
+>> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
+>> Subject: PyCrypto license clarification
+>> To: "Mark Moraes" <moraes@computer.org>
+>> Date: Saturday, April 18, 2009, 9:14 AM
+>> Hi Mark,
+>> 
+>> I am the new maintainer of the Python Cryptography Toolkit,
+>> and I am
+>> working on a new release at http://www.pycrypto.org/.
+>> 
+>> People often ask me what license PyCrypto is covered by, if
+>> it's
+>> GPL-compatible, etc.  Right now, I'm not really sure
+>> what to tell them.
+>> The text in the current LICENSE file (quoted below) is not
+>> entirely clear
+>> on the point of whether distributing modified versions is
+>> allowed.  (It
+>> says "distribute and use", but not "modify".)
+>> 
+>>      
+>> ===================================================================
+>>       Distribute and use freely; there are
+>> no restrictions on further
+>>       dissemination and usage except those
+>> imposed by the laws of your
+>>       country of residence.  This
+>> software is provided "as is" without
+>>       warranty of fitness for use or
+>> suitability for any purpose, express
+>>       or implied. Use at your own risk or
+>> not at all.
+>>      
+>> ===================================================================
+>> 
+>>       Incorporating the code into commercial
+>> products is permitted; you do
+>>       not have to make source available or
+>> contribute your changes back
+>>       (though that would be nice).
+>> 
+>>       --amk       
+>>                
+>>                
+>>             (www.amk.ca)
+>> 
+>> For the next PyCrypto release, I would like to take steps
+>> to move toward a
+>> clearer licensing regime.  I am asking as many
+>> copyright holders as I can
+>> find if I can release PyCrypto under something clearer and
+>> more standard.
+>> Below, I have quoted a public domain dedication that was
+>> recommended in
+>> _Intellectual Property and Open Source: A Practical Guide
+>> to Protecting
+>> Code_, by Van Lindberg.  I have already contacted A.
+>> M. Kuchling, Robey
+>> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
+>> have all
+>> approved the following dedication for their contributions.
+>> 
+>> I understand that you have made contributions to
+>> PyCrypto.  May I, on your
+>> behalf, dedicate to the public domain all your
+>> contributions to PyCrypto,
+>> with the following notice?
+>> 
+>>      
+>> =======================================================================
+>>       The contents of this file are
+>> dedicated to the public domain.  To the
+>>       extent that dedication to the public
+>> domain is not available, everyone
+>>       is granted a worldwide, perpetual,
+>> royalty-free, non-exclusive license
+>>       to exercise all rights associated with
+>> the contents of this file for
+>>       any purpose whatsoever.  No
+>> rights are reserved.
+>>      
+>> =======================================================================
+>> 
+>> Regards,
+>>    - Dwayne
+>> 
+>> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
+>>    Key-signing key   - 19E1
+>> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>> 
+>
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+
+
+
+==========================================================
+Date: Mon, 16 Feb 2009 12:58:00 -0800
+From: Robey Pointer <robey@lag.net>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Received-SPF: pass (goedel.dlitz.net: domain of robey@lag.net designates 69.61.78.186 as permitted sender)
+Message-Id: <F469A078-6305-4484-BEA8-F4EC38A4154F@lag.net>
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On 23 Nov 2008, at 07:42, Dwayne C. Litzenberger wrote:
+
+> For the next PyCrypto release, I would like to take steps to move  
+> toward a clearer licensing regime.  I am asking as many copyright  
+> holders as I can find if I can release PyCrypto under something  
+> clearer and more standard.  Below, I have quoted a public domain  
+> dedication that was recommended in _Intellectual Property and Open  
+> Source: A Practical Guide to Protecting Code_, by Van Lindberg.  I  
+> have already contacted A. M. Kuchling, and he has approved the  
+> following dedication for his contributions.
+>
+> May I, on your behalf, dedicate to the public domain all your  
+> contributions to PyCrypto, with the following notice?
+>
+>     
+> = 
+> ======================================================================
+>    The contents of this file are dedicated to the public domain.  To  
+> the
+>    extent that dedication to the public domain is not available,  
+> everyone
+>    is granted a worldwide, perpetual, royalty-free, non-exclusive  
+> license
+>    to exercise all rights associated with the contents of this file  
+> for
+>    any purpose whatsoever.  No rights are reserved.
+>     
+> = 
+> ======================================================================
+>
+
+In case I haven't replied to this yet: Yes, this is fine with me.
+
+robey
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.8 (Darwin)
+
+iEYEARECAAYFAkmZ01gACgkQQQDkKvyJ6cOLvQCfQmYYuVODvIlyLg0hgCI9LAbQ
+SH8AoLJgaq1lIi7/ZYDc+/Cd8VO0xLbr
+=Mv6g
+-----END PGP SIGNATURE-----
+
+
+
+==========================================================
+From dlitz@dlitz.net Sun Aug  2 21:48:25 2009
+Date: Sun, 2 Aug 2009 21:48:25 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Paul Swartz <paulswartz@gmail.com>
+Subject: PyCrypto license clarification
+Message-ID: <20090803014825.GA1326@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2631
+
+Hi Paul,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+   ===================================================================
+   Distribute and use freely; there are no restrictions on further
+   dissemination and usage except those imposed by the laws of your
+   country of residence.  This software is provided "as is" without
+   warranty of fitness for use or suitability for any purpose, express
+   or implied. Use at your own risk or not at all.
+   ===================================================================
+
+   Incorporating the code into commercial products is permitted; you do
+   not have to make source available or contribute your changes back
+   (though that would be nice).
+
+   --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, Joris Bontje, and Mark 
+Moraes, and they have all approved the following dedication for their 
+contributions.
+
+I understand that you have made contributions to PyCrypto, under nickname 
+"z3p" and/or other names.  May I, on your behalf, dedicate to the public 
+domain all your contributions to PyCrypto, with the following notice?
+
+   =======================================================================
+   The contents of this file are dedicated to the public domain.  To the
+   extent that dedication to the public domain is not available, everyone
+   is granted a worldwide, perpetual, royalty-free, non-exclusive license
+   to exercise all rights associated with the contents of this file for
+   any purpose whatsoever.  No rights are reserved.
+   =======================================================================
+
+Regards,
+  - Dwayne
+
+--
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+   Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From paulswartz@gmail.com Mon Aug  3 12:14:07 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <paulswartz@gmail.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 30B9D984FC4
+    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 12:14:07 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id AD9AE81068
+    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 10:14:06 -0600 (CST)
+Received: (vmailmgr-postfix 32055 invoked by uid 1003);  3 Aug 2009 10:14:06 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: pass (gmail.com ... _spf.google.com: 72.14.220.159 is authorized to use 'paulswartz@gmail.com' in 'mfrom' identity (mechanism 'ip4:72.14.192.0/18' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="paulswartz@gmail.com"; helo=fg-out-1718.google.com; client-ip=72.14.220.159
+Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159])
+    by goedel.dlitz.net (Postfix) with ESMTP id 4E63881066
+    for <dlitz@dlitz.net>; Mon,  3 Aug 2009 10:14:05 -0600 (CST)
+Received: by fg-out-1718.google.com with SMTP id d23so1076840fga.3
+        for <dlitz@dlitz.net>; Mon, 03 Aug 2009 09:14:04 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+        d=gmail.com; s=gamma;
+        h=domainkey-signature:mime-version:received:in-reply-to:references
+         :from:date:message-id:subject:to:content-type
+         :content-transfer-encoding;
+        bh=A0RHBf0TnribKS5qOHJ3WYbkZ+b0cuPeuoKAvpApWcc=;
+        b=gyTqkRhKlHadFKIZCBWsRbnMNVDq1PWlJbyC0EvxPskaoHr3HAR96MWQNBePu/40Ac
+         Vn55qlIqTdom4e9zlUEE6MwZo9kqi/Qw0L/SLib0DlQeNqo/eHYqPmuVswltaYwNAyMJ
+         Y9++76rPGzqYdALsfvsmwv7Q3/bEmjVTr0tQE=
+DomainKey-Signature: a=rsa-sha1; c=nofws;
+        d=gmail.com; s=gamma;
+        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
+         :content-type:content-transfer-encoding;
+        b=jze7KSMkUGilfVCXKXaaXMi5NAtGdMQOtVZZfRNyGSy68xOd2sxefjyyig3EfT6Nv6
+         Q3opUMsT96Q6zjZND55w446kTh2uBTNz4d3NwIeEWJnG3xcliRQu/mXPFp8AzPI3CefL
+         1ornJLM1eQ2XyuZA73jem+SJtfdHUcSD1UhgI=
+MIME-Version: 1.0
+Received: by 10.239.157.147 with SMTP id q19mr601802hbc.61.1249316043185; Mon, 
+    03 Aug 2009 09:14:03 -0700 (PDT)
+In-Reply-To: <20090803014825.GA1326@rivest.dlitz.net>
+References: <20090803014825.GA1326@rivest.dlitz.net>
+From: Paul Swartz <paulswartz@gmail.com>
+Date: Mon, 3 Aug 2009 12:13:43 -0400
+Message-ID: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: quoted-printable
+Status: RO
+X-Status: A
+Content-Length: 1450
+
+On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wro=
+te:
+> Hi Paul,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+
+That's great!
+
+> I understand that you have made contributions to PyCrypto, under nickname
+> "z3p" and/or other names. =C2=A0May I, on your behalf, dedicate to the pu=
+blic
+> domain all your contributions to PyCrypto, with the following notice?
+>
+> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+> =C2=A0The contents of this file are dedicated to the public domain. =C2=
+=A0To the
+> =C2=A0extent that dedication to the public domain is not available, every=
+one
+> =C2=A0is granted a worldwide, perpetual, royalty-free, non-exclusive lice=
+nse
+> =C2=A0to exercise all rights associated with the contents of this file fo=
+r
+> =C2=A0any purpose whatsoever. =C2=A0No rights are reserved.
+> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+Yes, that's fine.  Good luck with the new release!
+
+-p
+--=20
+Paul Swartz
+paulswartz at gmail dot com
+http://paulswartz.net/
+AIM: z3penguin
+
+
+From dlitz@dlitz.net Mon Aug  3 14:35:01 2009
+Date: Mon, 3 Aug 2009 14:35:01 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Paul Swartz <paulswartz@gmail.com>
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090803183501.GA17472@rivest.dlitz.net>
+References: <20090803014825.GA1326@rivest.dlitz.net> <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=iso-8859-1; format=flowed
+Content-Disposition: inline
+Content-Transfer-Encoding: 8bit
+In-Reply-To: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 1250
+
+On Mon, Aug 03, 2009 at 12:13:43PM -0400, Paul Swartz wrote:
+>On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wrote:
+>> Hi Paul,
+>>
+>> I am the new maintainer of the Python Cryptography Toolkit, and I am
+>> working on a new release at http://www.pycrypto.org/.
+>
+>That's great!
+>
+>> I understand that you have made contributions to PyCrypto, under nickname
+>> "z3p" and/or other names. �May I, on your behalf, dedicate to the public
+>> domain all your contributions to PyCrypto, with the following notice?
+>>
+>> �=======================================================================
+>> �The contents of this file are dedicated to the public domain. �To the
+>> �extent that dedication to the public domain is not available, everyone
+>> �is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>> �to exercise all rights associated with the contents of this file for
+>> �any purpose whatsoever. �No rights are reserved.
+>> �=======================================================================
+>
+>Yes, that's fine.  Good luck with the new release!
+
+Perfect!  Thanks for the quick response!
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+
+
+==========================================================
+
+
+ + +
+ +
+

PyJWT + 1.4.0 +

+ + + + + +
The MIT License (MIT)
+
+Copyright (c) 2015 José Padilla
+
+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.
+ + +
+ +
+

psycopg2 + 2.6.1 +

+ + + +
psycopg2 and the LGPL
+=====================
+
+psycopg2 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 3 of the License, or
+(at your option) any later version.
+
+psycopg2 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.
+
+In addition, as a special exception, the copyright holders give
+permission to link this program with the OpenSSL library (or with
+modified versions of OpenSSL that use the same license as OpenSSL),
+and distribute linked combinations including the two.
+
+You must obey the GNU Lesser General Public License in all respects for
+all of the code used other than OpenSSL. If you modify file(s) with this
+exception, you may extend this exception to your version of the file(s),
+but you are not obligated to do so. If you do not wish to do so, delete
+this exception statement from your version. If you delete this exception
+statement from all source files in the program, then also delete it here.
+
+You should have received a copy of the GNU Lesser General Public License
+along with psycopg2 (see the doc/ directory.)
+If not, see .
+
+
+Alternative licenses
+====================
+
+If you prefer you can use the Zope Database Adapter ZPsycopgDA (i.e.,
+every file inside the ZPsycopgDA directory) user the ZPL license as
+published on the Zope web site, http://www.zope.org/Resources/ZPL.
+
+Also, the following BSD-like license applies (at your option) to the
+files following the pattern psycopg/adapter*.{h,c} and
+psycopg/microprotocol*.{h,c}:
+
+ 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.
+
+ + + +
		   GNU LESSER GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ 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.
+
+
+
+
+
+
+
+
+====================================================================
+
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ 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.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    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 <http://www.gnu.org/licenses/>.
+
+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:
+
+    <program>  Copyright (C) <year>  <name of author>
+    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
+<http://www.gnu.org/licenses/>.
+
+  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
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
+
+
+
+
+ + +
+ +
+

django-crispy-forms + 1.5.2 +

+ + +
Copyright (c) 2009-2011 Miguel Araujo and contributors.
+ + + + +
Copyright (c) 2009-2011 Miguel Araujo and 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.
+ + +
+ +
+

unicodecsv + 0.14.0 +

+ + + + + +
Copyright 2010 Jeremy Dunck. 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 JEREMY DUNCK ``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 JEREMY DUNCK 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 views and conclusions contained in the software and documentation are those of the
+authors and should not be interpreted as representing official policies, either expressed
+or implied, of Jeremy Dunck.
+
+ + +
+ +
+

django-haystack + 2.4.0 +

+ + + + + +
Copyright (c) 2009-2013, Daniel Lindsley.
+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 Haystack 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.
+
+---
+
+Prior to April 17, 2009, this software was released under the MIT license.
+
+ + +
+ +
+

mock + 1.0.1 +

+ + +
Copyright (c) 2003-2012, Michael Foord
+ + + + +
Copyright (c) 2003-2012, Michael Foord
+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
+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.
+
+ + +
+ +
+

django-debreach + 1.2.1 +

+ + +
Copyright (c) 2013, Luke Pomfrey
+ + + + +
Copyright (c) 2013, Luke Pomfrey
+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.
+ + +
+ +
+

six + 1.9.0 +

+ + +
Copyright (c) 2010-2011 Benjamin Peterson
+ + + + +
Copyright (c) 2010-2011 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.
+
+ + +
+ +
+

setuptools + 18.3.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)
+
+    0.9.0 thru 1.2              1991-1995   CWI         yes
+    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
+    1.6             1.5.2       2000        CNRI        no
+    2.0             1.6         2000        BeOpen.com  no
+    1.6.1           1.6         2001        CNRI        yes (2)
+    2.1             2.0+1.6.1   2001        PSF         no
+    2.0.1           2.0+1.6.1   2001        PSF         yes
+    2.1.1           2.1+2.0.1   2001        PSF         yes
+    2.2             2.1.1       2001        PSF         yes
+    2.1.2           2.1.1       2002        PSF         yes
+    2.1.3           2.1.2       2002        PSF         yes
+    2.2.1           2.2         2002        PSF         yes
+    2.2.2           2.2.1       2002        PSF         yes
+    2.2.3           2.2.2       2003        PSF         yes
+    2.3             2.2.2       2002-2003   PSF         yes
+    2.3.1           2.3         2002-2003   PSF         yes
+    2.3.2           2.3.1       2002-2003   PSF         yes
+    2.3.3           2.3.2       2002-2003   PSF         yes
+    2.3.4           2.3.3       2004        PSF         yes
+    2.3.5           2.3.4       2005        PSF         yes
+    2.4             2.3         2004        PSF         yes
+    2.4.1           2.4         2005        PSF         yes
+    2.4.2           2.4.1       2005        PSF         yes
+    2.4.3           2.4.2       2006        PSF         yes
+    2.4.4           2.4.3       2006        PSF         yes
+    2.5             2.4         2006        PSF         yes
+    2.5.1           2.5         2007        PSF         yes
+    2.5.2           2.5.2       2008        PSF         yes
+
+Footnotes:
+
+(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 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.
+
+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-2005 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, Cambridge, UK.
+jseward@acm.org
+bzip2/libbzip2 version 1.0.3 of 15 February 2005
+
+
+This copy of Python includes a copy of db, which is licensed under the following terms:
+
+/*-
+ * $Id: LICENSE,v 12.1 2005/06/16 20:20:10 bostic Exp $
+ */
+
+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 Sleepycat Software by email at info@sleepycat.com, or on
+the Web at http://www.sleepycat.com.
+
+=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
+/*
+ * Copyright (c) 1990-2005
+ *	Sleepycat Software.  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 SLEEPYCAT SOFTWARE ``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 SLEEPYCAT SOFTWARE
+ * 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.
+ */
+
+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-2005 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 (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. 
+
+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 (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.
+
+ + +
+ +
+

django-auth-ldap + 1.2.6 +

+ + +
Copyright (c) 2009, Peter Sagerson
+ + + + +
Copyright (c) 2009, Peter Sagerson
+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.
+ + +
+ +
+

python-ldap + 2.4.20 +

+ + + + + +
+The python-ldap package is distributed under Python-style license.
+
+Standard disclaimer:
+   This software is made available by the author(s) to the public for free
+   and "as is".  All users of this free software are solely and entirely
+   responsible for their own choice and use of this software for their
+   own purposes.  By using this software, each user agrees that the
+   author(s) shall not be liable for damages of any kind in relation to
+   its use or performance. The author(s) do not warrant that this software
+   is fit for any purpose.
+
+$Id: LICENCE,v 1.1 2002/09/18 18:51:22 stroeder Exp $
+
+ + +
+ +
+

certifi + 2015.9.6.2 +

+ + + + + + +
+ +
+

model_mommy + 1.2.5 +

+ + + +
Copyright 2011 Vanderson Mota
+
+   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.
+
+ + + +
+                                 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
+
+ + +
+ +
+

paramiko + 1.15.2 +

+ + + + + +
          GNU LESSER GENERAL PUBLIC LICENSE
+               Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+     51 Franklin Street, Suite 500, Boston, MA  02110-1335  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.
+
+    <one line to give the library's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    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, Suite 500, Boston, MA  02110-1335  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.
+
+  <signature of Ty Coon>, 1 April 1990
+  Ty Coon, President of Vice
+
+That's all there is to it!
+
+
+
+ + +
+ +
+

celery + 3.1.18 +

+ + + + + +
Copyright (c) 2015 Ask Solem & contributors.  All rights reserved.
+Copyright (c) 2012-2014 GoPivotal, Inc.  All rights reserved.
+Copyright (c) 2009, 2010, 2011, 2012 Ask Solem, and individual contributors.  All rights reserved.
+
+Celery is licensed under The BSD License (3 Clause, also known as
+the new BSD license).  The license is an OSI approved Open Source
+license and is GPL-compatible(1).
+
+The license text can also be found here:
+http://www.opensource.org/licenses/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 Ask Solem, 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 Ask Solem 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.
+
+Documentation License
+=====================
+
+The documentation portion of Celery (the rendered contents of the
+"docs" directory of a software distribution or checkout) is supplied
+under the Creative Commons Attribution-Noncommercial-Share Alike 3.0
+United States License as described by
+http://creativecommons.org/licenses/by-nc-sa/3.0/us/
+
+Footnotes
+=========
+(1) A GPL-compatible license makes it possible to
+    combine Celery with other software that is released
+    under the GPL, it does not mean that we're distributing
+    Celery under the GPL license.  The BSD license, unlike the GPL,
+    let you distribute a modified version without making your
+    changes open source.
+ + +
+ +
+

mockldap + 0.2.5 +

+ + +
Copyright (c) 2013, Peter Sagerson
+ + + + +
Copyright (c) 2013, Peter Sagerson
+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.
+ + +
+ +
+

Fabric + 1.10.2 +

+ + +
Copyright (c) 2009-2014 Jeffrey E. Forcier
+Copyright (c) 2008-2009 Christian Vest Hansen
+ + + + +
Copyright (c) 2009-2014 Jeffrey E. Forcier
+Copyright (c) 2008-2009 Christian Vest Hansen
+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.
+
+ + +
+ +
+

python-dateutil + 2.4.2 +

+ + + + + +
dateutil - Extensions to the standard Python datetime module.
+
+Copyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net>
+Copyright (c) 2012-2014 - Tomi Pieviläinen <tomi.pievilainen@iki.fi>
+Copyright (c) 2014      - Yaron de Leeuw <me@jarondl.net>
+
+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 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.
+
+ + +
+ +
+

pycrypto + 2.6.1 +

+ + + + + +
Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"):
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Previously, the copyright and/or licensing status of the Python
+Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous.  The
+original intention of Andrew M. Kuchling and other contributors has
+been to dedicate PyCrypto to the public domain, but that intention was
+not necessarily made clear in the original disclaimer (see
+LEGAL/copy/LICENSE.orig).
+
+Additionally, some files within PyCrypto had specified their own
+licenses that differed from the PyCrypto license itself.  For example,
+the original RIPEMD.c module simply had a copyright statement and
+warranty disclaimer, without clearly specifying any license terms.
+(An updated version on the author's website came with a license that
+contained a GPL-incompatible advertising clause.)
+
+To rectify this situation for PyCrypto 2.1, the following steps have
+been taken:
+
+ 1. Obtaining explicit permission from the original contributors to
+    dedicate their contributions to the public domain if they have not
+    already done so.  (See the "LEGAL/copy/stmts" directory for
+    contributors' statements.)
+
+ 2. Replacing some modules with clearly-licensed code from other
+    sources (e.g. the DES and DES3 modules were replaced with new ones
+    based on Tom St. Denis's public-domain LibTomCrypt library.)
+
+ 3. Replacing some modules with code written from scratch (e.g. the
+    RIPEMD and Blowfish modules were re-implemented from their
+    respective algorithm specifications without reference to the old
+    implementations).
+
+ 4. Removing some modules altogether without replacing them.
+
+To the best of our knowledge, with the exceptions noted below or
+within the files themselves, the files that constitute PyCrypto are in
+the public domain.  Most are distributed with the following notice:
+
+  The contents of this file are dedicated to the public domain.  To
+  the extent that dedication to the public domain is not available,
+  everyone is granted a worldwide, perpetual, royalty-free,
+  non-exclusive license to exercise all rights associated with the
+  contents of this file for any purpose whatsoever.
+  No rights are reserved.
+
+  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.
+
+Exception:
+
+ - Portions of HMAC.py and setup.py are derived from Python 2.2, and
+   are therefore Copyright (c) 2001, 2002, 2003 Python Software
+   Foundation (All Rights Reserved).  They are licensed by the PSF
+   under the terms of the Python 2.2 license.  (See the file
+   LEGAL/copy/LICENSE.python-2.2 for details.)
+
+EXPORT RESTRICTIONS:
+
+Note that the export or re-export of cryptographic software and/or
+source code may be subject to regulation in your jurisdiction.
+
+
+
+==================================================================
+LICENSE.python-2.2
+LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
+LICENSE.libtom  LICENSE file from LibTomCrypt
+stmts/          Statements by contributors
+
+==================================================================
+LICENSE.python-2.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)
+
+    0.9.0 thru 1.2              1991-1995   CWI         yes
+    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
+    1.6             1.5.2       2000        CNRI        no
+    2.0             1.6         2000        BeOpen.com  no
+    1.6.1           1.6         2001        CNRI        no
+    2.1             2.0+1.6.1   2001        PSF         no
+    2.0.1           2.0+1.6.1   2001        PSF         yes
+    2.1.1           2.1+2.0.1   2001        PSF         yes
+    2.2             2.1.1       2001        PSF         yes
+    2.1.2           2.1.1       2002        PSF         yes
+    2.1.3           2.1.2       2002        PSF         yes
+    2.2.1           2.2         2002        PSF         yes
+    2.2.2           2.2.1       2002        PSF         yes
+    2.2.3           2.2.2       2003        PSF         yes
+
+Footnotes:
+
+(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.
+
+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
+===============================================================
+
+PSF LICENSE AGREEMENT FOR PYTHON 2.2.3
+--------------------------------------
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using Python 2.2.3 software 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 2.2.3
+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 Python Software Foundation; All Rights Reserved" are
+retained in Python 2.2.3 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 2.2.3 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 2.2.3.
+
+4. PSF is making Python 2.2.3 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 2.2.3 WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+2.2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.2.3,
+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 2.2.3, 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.
+
+
+===================================================================
+LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
+===================================================================
+Distribute and use freely; there are no restrictions on further
+dissemination and usage except those imposed by the laws of your
+country of residence.  This software is provided "as is" without
+warranty of fitness for use or suitability for any purpose, express
+or implied. Use at your own risk or not at all.
+===================================================================
+
+Incorporating the code into commercial products is permitted; you do
+not have to make source available or contribute your changes back
+(though that would be nice).
+
+--amk                                                             (www.amk.ca)
+
+
+
+LICENSE.libtom  LICENSE file from LibTomCrypt
+===================================================================
+LibTomCrypt is public domain.  As should all quality software be.
+
+Tom St Denis
+
+
+
+Statements by contributors
+===================================================================
+From dlitz@dlitz.net Sun Nov 23 00:17:22 2008
+Date: Sun, 23 Nov 2008 00:17:22 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: "A. M. Kuchling" <amk@amk.ca>
+Subject: PyCrypto license clarification
+Message-ID: <20081123051722.GA29253@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: multipart/signed; micalg=pgp-sha1;
+    protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4"
+Content-Disposition: inline
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3461
+Lines: 78
+
+
+--YiEDa0DAkWCtVeE4
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+Content-Transfer-Encoding: quoted-printable
+
+Hi Andrew,
+
+People often ask me what license PyCrypto is covered by, if it's=20
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them. =20
+The text in the current LICENSE file (quoted below) is not entirely clear=
+=20
+on the point of whether distributing modified versions is allowed.  (It=20
+says "distribute and use", but not "modify".)
+
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+     Distribute and use freely; there are no restrictions on further
+     dissemination and usage except those imposed by the laws of your
+     country of residence.  This software is provided "as is" without
+     warranty of fitness for use or suitability for any purpose, express
+     or implied. Use at your own risk or not at all.
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+     Incorporating the code into commercial products is permitted; you do
+     not have to make source available or contribute your changes back
+     (though that would be nice).
+
+     --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I'd like to take steps to move toward a=20
+clearer licensing regime.  I'm asking as many copyright holders as I can=20
+find, starting with you, if I can release PyCrypto under something clearer=
+=20
+and more standard.  Below, I have quoted a public domain dedication that=20
+was recommended in _Intellectual Property and Open Source: A Practical=20
+Guide to Protecting Code_, by Van Lindberg.
+
+May I, on your behalf, dedicate to the public domain your considerable=20
+contributions to PyCrypto, with the following notice?
+
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+     The contents of this file are dedicated to the public domain.  To the
+     extent that dedication to the public domain is not available, everyone
+     is granted a worldwide, perpetual, royalty-free, non-exclusive license
+     to exercise all rights associated with the contents of this file for
+     any purpose whatsoever.  No rights are reserved.
+     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+Regards,
+  - Dwayne
+
+--=20
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+--YiEDa0DAkWCtVeE4
+Content-Type: application/pgp-signature; name="signature.asc"
+Content-Description: Digital signature
+Content-Disposition: inline
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.5 (GNU/Linux)
+
+iEYEARECAAYFAkko52IACgkQHBG4d+eAS0XPPQCfcyQ2DdAXKg9N7Z+jeSFFD5EZ
+yloAn33a3ZjkteyJaTbzEqImOEW8JGpf
+=aBEW
+-----END PGP SIGNATURE-----
+
+--YiEDa0DAkWCtVeE4--
+
+From amk@amk.ca Sun Nov 23 07:51:59 2008
+X-Maildir-Dup-Checked: Yes
+Return-Path: <amk@amk.ca>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 5C2C75047D
+    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 07:51:59 -0500 (EST)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id D632D10111
+    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
+Received: (vmailmgr-postfix 12026 invoked by uid 1003); 23 Nov 2008 06:51:58 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (goedel.dlitz.net: domain of amk@amk.ca does not designate permitted sender hosts)
+Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7])
+    by goedel.dlitz.net (Postfix) with ESMTP id 97DC710105
+    for <dlitz@dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
+Received: (qmail 3992 invoked from network); 23 Nov 2008 12:51:52 -0000
+Received: from dsl092-163-165.wdc2.dsl.speakeasy.net (HELO localhost) (akuchling@[66.92.163.165])
+          (envelope-sender <amk@amk.ca>)
+          by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP
+          for <dlitz@dlitz.net>; 23 Nov 2008 12:51:52 -0000
+Date: Sun, 23 Nov 2008 07:51:34 -0500
+From: "A.M. Kuchling" <amk@amk.ca>
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Subject: Re: PyCrypto license clarification
+Message-ID: <20081123125134.GA21239@amk.local>
+Reply-To: amk@amk.ca
+References: <20081123051722.GA29253@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Content-Disposition: inline
+In-Reply-To: <20081123051722.GA29253@rivest.dlitz.net>
+User-Agent: Mutt/1.5.13 (2006-08-11)
+Status: RO
+Content-Length: 537
+Lines: 15
+
+> People often ask me what license PyCrypto is covered by, if it's 
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+> The text in the current LICENSE file (quoted below) is not entirely clear 
+> on the point of whether distributing modified versions is allowed.  (It 
+> says "distribute and use", but not "modify".)
+
+The intention is that it be public domain.
+
+> May I, on your behalf, dedicate to the public domain your considerable 
+> contributions to PyCrypto, with the following notice?
+
+You may.
+
+--amk
+
+
+================================================
+From dlitz@dlitz.net Sat Feb 28 21:45:09 2009
+Date: Sat, 28 Feb 2009 21:45:09 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Barry A Warsaw <barry@python.org>
+Subject: PyCrypto license clarification
+Message-ID: <20090301024509.GA13195@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2535
+
+Hi Barry,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am 
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's 
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+The text in the current LICENSE file (quoted below) is not entirely clear 
+on the point of whether distributing modified versions is allowed.  (It 
+says "distribute and use", but not "modify".)
+
+  ===================================================================
+  Distribute and use freely; there are no restrictions on further
+  dissemination and usage except those imposed by the laws of your
+  country of residence.  This software is provided "as is" without
+  warranty of fitness for use or suitability for any purpose, express
+  or implied. Use at your own risk or not at all.
+  ===================================================================
+
+  Incorporating the code into commercial products is permitted; you do
+  not have to make source available or contribute your changes back
+  (though that would be nice).
+
+  --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a 
+clearer licensing regime.  I am asking as many copyright holders as I can 
+find if I can release PyCrypto under something clearer and more standard.  
+Below, I have quoted a public domain dedication that was recommended in 
+_Intellectual Property and Open Source: A Practical Guide to Protecting 
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
+Pointer, and Wim Lewis, and they have all approved the following dedication 
+for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your 
+behalf, dedicate to the public domain all your contributions to PyCrypto, 
+with the following notice?
+
+  =======================================================================
+  The contents of this file are dedicated to the public domain.  To the
+  extent that dedication to the public domain is not available, everyone
+  is granted a worldwide, perpetual, royalty-free, non-exclusive license
+  to exercise all rights associated with the contents of this file for
+  any purpose whatsoever.  No rights are reserved.
+  =======================================================================
+
+Regards,
+  - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+     Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From barry@python.org Mon Mar  2 11:29:39 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <barry@python.org>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 6E01AC6640B
+    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 11:29:39 -0500 (EST)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 0644E1007A
+    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 10:29:39 -0600 (CST)
+Received: (vmailmgr-postfix 8668 invoked by uid 1003);  2 Mar 2009 10:29:39 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (python.org: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="barry@python.org"; helo=mail.wooz.org; client-ip=216.15.33.230
+Received: from mail.wooz.org (216-15-33-230.c3-0.slvr-ubr2.lnh-slvr.md.static.cable.rcn.com [216.15.33.230])
+    by goedel.dlitz.net (Postfix) with ESMTP id CCEA110073
+    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 10:29:38 -0600 (CST)
+Received: from snowdog.wooz.org (snowdog.wooz.org [192.168.11.202])
+    by mail.wooz.org (Postfix) with ESMTPSA id ACE30E3C9F
+    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 11:29:35 -0500 (EST)
+Message-Id: <09BF1A39-B015-4820-97A3-8642490C8254@python.org>
+From: Barry Warsaw <barry@python.org>
+To: Dwayne C. Litzenberger <dlitz@dlitz.net>
+In-Reply-To: <20090301024509.GA13195@rivest.dlitz.net>
+Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
+Content-Transfer-Encoding: quoted-printable
+Mime-Version: 1.0 (Apple Message framework v930.3)
+Subject: Re: PyCrypto license clarification
+Date: Mon, 2 Mar 2009 11:29:34 -0500
+References: <20090301024509.GA13195@rivest.dlitz.net>
+X-Pgp-Agent: GPGMail d55 (v55, Leopard)
+X-Mailer: Apple Mail (2.930.3)
+Status: RO
+Content-Length: 869
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On Feb 28, 2009, at 9:45 PM, Dwayne C. Litzenberger wrote:
+
+> I am the new maintainer of the Python Cryptography Toolkit, and I am =20=
+
+> working on a new release at http://www.pycrypto.org/.
+
+Great!  I'm glad to see someone taking up the mantle of this important =20=
+
+Python library.
+
+> I understand that you have made contributions to PyCrypto.  May I, =20
+> on your behalf, dedicate to the public domain all your contributions =20=
+
+> to PyCrypto, with the following notice?
+
+Absolutely yes.
+
+Cheers,
+Barry
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+
+iQCVAwUBSawJbnEjvBPtnXfVAQLZjgP/ecG+JdZwNvPJRfsa6rhY6+MHLDHI6agk
+evkJnSJQAcVHlZnVlVeR5IXgvDUMakZjU4SOV7MqkhsKA9lIet7PaD9VSYgn3ra5
+gElwI2DQDoOy5GExXMm74gqrrb1PCCbCRmpaYNo+DZohwHkeFBjbwDRA3wItOrH7
+SK4w9VBJtfY=3D
+=3DQduY
+-----END PGP SIGNATURE-----
+
+
+
+===================================================
+From dlitz@dlitz.net Sat Feb 28 23:24:14 2009
+Date: Sat, 28 Feb 2009 23:24:14 -0500
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Jeethu Rao <jeethurao@gmail.com>
+Subject: PyCrypto license clarification
+Message-ID: <20090301042414.GA15122@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2513
+
+Hi Jeethu,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am 
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's 
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
+The text in the current LICENSE file (quoted below) is not entirely clear 
+on the point of whether distributing modified versions is allowed.  (It 
+says "distribute and use", but not "modify".)
+
+ ===================================================================
+ Distribute and use freely; there are no restrictions on further
+ dissemination and usage except those imposed by the laws of your
+ country of residence.  This software is provided "as is" without
+ warranty of fitness for use or suitability for any purpose, express
+ or implied. Use at your own risk or not at all.
+ ===================================================================
+
+ Incorporating the code into commercial products is permitted; you do
+ not have to make source available or contribute your changes back
+ (though that would be nice).
+
+ --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a 
+clearer licensing regime.  I am asking as many copyright holders as I can 
+find if I can release PyCrypto under something clearer and more standard.  
+Below, I have quoted a public domain dedication that was recommended in 
+_Intellectual Property and Open Source: A Practical Guide to Protecting 
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
+Pointer, and Wim Lewis, and they have all approved the following text for 
+their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your 
+behalf, dedicate to the public domain all your contributions to PyCrypto, 
+with the following notice?
+
+ =======================================================================
+ The contents of this file are dedicated to the public domain.  To the
+ extent that dedication to the public domain is not available, everyone
+ is granted a worldwide, perpetual, royalty-free, non-exclusive license
+ to exercise all rights associated with the contents of this file for
+ any purpose whatsoever.  No rights are reserved.
+ =======================================================================
+
+Regards,
+ - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+       Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From jeethurao@gmail.com Sun Mar  8 17:28:16 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <jeethurao@gmail.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 0CC83515D9
+    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 17:28:16 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 4E58F450CB
+    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 15:28:15 -0600 (CST)
+Received: (vmailmgr-postfix 5011 invoked by uid 1003);  8 Mar 2009 15:28:15 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: pass (gmail.com ... _spf.google.com: 209.85.198.249 is authorized to use 'jeethurao@gmail.com' in 'mfrom' identity (mechanism 'ip4:209.85.128.0/17' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="jeethurao@gmail.com"; helo=rv-out-0708.google.com; client-ip=209.85.198.249
+Received: from rv-out-0708.google.com (unknown [209.85.198.249])
+    by goedel.dlitz.net (Postfix) with ESMTP id 3C097449E7
+    for <dlitz@dlitz.net>; Sun,  8 Mar 2009 15:28:12 -0600 (CST)
+Received: by rv-out-0708.google.com with SMTP id k29so1252333rvb.26
+        for <dlitz@dlitz.net>; Sun, 08 Mar 2009 14:27:56 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+        d=gmail.com; s=gamma;
+        h=domainkey-signature:mime-version:received:in-reply-to:references
+         :date:message-id:subject:from:to:content-type;
+        bh=YWy9U32WCU/ksRqukHwaOZyJQBUs4Yvt5mI20U6mI/g=;
+        b=oMjI22lIxYiJKge2zNJW3rRiUi9LqFXmey5Wp0pLItuNF+X3duyfhopTuBAKw7MwVY
+         B5E6VQuGVEyzBbNsctyVgq6DhQiQtouCLZymSViobmuDmKn5DtUKoxpDk0xCxQmHYaas
+         L9/A6D3/J66kKrNBgX9mc0GPcZTviVFYkPR0Q=
+DomainKey-Signature: a=rsa-sha1; c=nofws;
+        d=gmail.com; s=gamma;
+        h=mime-version:in-reply-to:references:date:message-id:subject:from:to
+         :content-type;
+        b=Ym7CStuDEfJKay1AJyWZkZmJA1lnTcwCG6akBHAXLld8ht6PFcmlsffzZG8hJCIVJ8
+         vljqcT+G6cywVTBw1pyGX7ECYzr0+vhGvgdpACGrs24zikHfpSSd5GFogzXaLVvGVH8p
+         bqSHpfWKKtEP4gAQkiNeIq1GNtR2j8U3fnRyg=
+MIME-Version: 1.0
+Received: by 10.141.176.13 with SMTP id d13mr2656028rvp.231.1236547674677; 
+    Sun, 08 Mar 2009 14:27:54 -0700 (PDT)
+In-Reply-To: <20090301042414.GA15122@rivest.dlitz.net>
+References: <20090301042414.GA15122@rivest.dlitz.net>
+Date: Mon, 9 Mar 2009 02:57:54 +0530
+Message-ID: <e3c0ddba0903081427p3a7b1058g417dd8624df68d6d@mail.gmail.com>
+Subject: Re: PyCrypto license clarification
+From: Jeethu Rao <jeethurao@gmail.com>
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Content-Type: multipart/alternative; boundary=000e0cd209d0e5a3d40464a23054
+Status: RO
+Content-Length: 7668
+
+--000e0cd209d0e5a3d40464a23054
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 7bit
+
+Hi Dwayne,My contribution to pycrypto are very very minimal (The sha256
+module, IIRC).
+I'd be fine with the public domain license for PyCrypto.
+
+Jeethu Rao
+PS: Apologies for the delay in my response.
+I don't really check this email address all that often,
+please direct any further correspondence to jeethu@jeethurao.com
+
+On Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <dlitz@dlitz.net>wrote:
+
+> Hi Jeethu,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+>
+> People often ask me what license PyCrypto is covered by, if it's
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  The
+> text in the current LICENSE file (quoted below) is not entirely clear on the
+> point of whether distributing modified versions is allowed.  (It says
+> "distribute and use", but not "modify".)
+>
+> ===================================================================
+> Distribute and use freely; there are no restrictions on further
+> dissemination and usage except those imposed by the laws of your
+> country of residence.  This software is provided "as is" without
+> warranty of fitness for use or suitability for any purpose, express
+> or implied. Use at your own risk or not at all.
+> ===================================================================
+>
+> Incorporating the code into commercial products is permitted; you do
+> not have to make source available or contribute your changes back
+> (though that would be nice).
+>
+> --amk                                                    (www.amk.ca)
+>
+> For the next PyCrypto release, I would like to take steps to move toward a
+> clearer licensing regime.  I am asking as many copyright holders as I can
+> find if I can release PyCrypto under something clearer and more standard.
+>  Below, I have quoted a public domain dedication that was recommended in
+> _Intellectual Property and Open Source: A Practical Guide to Protecting
+> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+> Pointer, and Wim Lewis, and they have all approved the following text for
+> their contributions.
+>
+> I understand that you have made contributions to PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your contributions to PyCrypto,
+> with the following notice?
+>
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+> Regards,
+> - Dwayne
+>
+> --
+> Dwayne C. Litzenberger <dlitz@dlitz.net>
+>      Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>
+
+
+
+-- 
+Jeethu Rao
+
+--000e0cd209d0e5a3d40464a23054
+Content-Type: text/html; charset=ISO-8859-1
+Content-Transfer-Encoding: quoted-printable
+
+Hi Dwayne,<div>My contribution to pycrypto are very very minimal (The sha25=
+6 module, IIRC).</div><div>I&#39;d be fine with the public domain license f=
+or PyCrypto.</div><div><br></div><div>Jeethu Rao</div><div>PS: Apologies fo=
+r the delay in my response.=A0</div>
+<div>I don&#39;t really check this email address all that often,</div><div>=
+please direct any further correspondence to <a href=3D"mailto:jeethu@jeethu=
+rao.com">jeethu@jeethurao.com</a><br><div><br><div class=3D"gmail_quote">On=
+ Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <span dir=3D"ltr">&lt;=
+<a href=3D"mailto:dlitz@dlitz.net">dlitz@dlitz.net</a>&gt;</span> wrote:<br=
+>
+<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
+x #ccc solid;padding-left:1ex;">Hi Jeethu,<br>
+<br>
+I am the new maintainer of the Python Cryptography Toolkit, and I am workin=
+g on a new release at <a href=3D"http://www.pycrypto.org/" target=3D"_blank=
+">http://www.pycrypto.org/</a>.<br>
+<br>
+People often ask me what license PyCrypto is covered by, if it&#39;s GPL-co=
+mpatible, etc. =A0Right now, I&#39;m not really sure what to tell them. =A0=
+The text in the current LICENSE file (quoted below) is not entirely clear o=
+n the point of whether distributing modified versions is allowed. =A0(It sa=
+ys &quot;distribute and use&quot;, but not &quot;modify&quot;.)<br>
+
+<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+Distribute and use freely; there are no restrictions on further<br>
+dissemination and usage except those imposed by the laws of your<br>
+country of residence. =A0This software is provided &quot;as is&quot; withou=
+t<br>
+warranty of fitness for use or suitability for any purpose, express<br>
+or implied. Use at your own risk or not at all.<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+<br>
+Incorporating the code into commercial products is permitted; you do<br>
+not have to make source available or contribute your changes back<br>
+(though that would be nice).<br>
+<br>
+--amk =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
+=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(<a href=3D"http://www.amk.ca" target=3D=
+"_blank">www.amk.ca</a>)<br>
+<br>
+For the next PyCrypto release, I would like to take steps to move toward a =
+clearer licensing regime. =A0I am asking as many copyright holders as I can=
+ find if I can release PyCrypto under something clearer and more standard. =
+=A0Below, I have quoted a public domain dedication that was recommended in =
+_Intellectual Property and Open Source: A Practical Guide to Protecting Cod=
+e_, by Van Lindberg. =A0I have already contacted A. M. Kuchling, Robey Poin=
+ter, and Wim Lewis, and they have all approved the following text for their=
+ contributions.<br>
+
+<br>
+I understand that you have made contributions to PyCrypto. =A0May I, on you=
+r behalf, dedicate to the public domain all your contributions to PyCrypto,=
+ with the following notice?<br>
+<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+The contents of this file are dedicated to the public domain. =A0To the<br>
+extent that dedication to the public domain is not available, everyone<br>
+is granted a worldwide, perpetual, royalty-free, non-exclusive license<br>
+to exercise all rights associated with the contents of this file for<br>
+any purpose whatsoever. =A0No rights are reserved.<br>
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
+<br>
+Regards,<br>
+- Dwayne<br><font color=3D"#888888">
+<br>
+-- <br>
+Dwayne C. Litzenberger &lt;<a href=3D"mailto:dlitz@dlitz.net" target=3D"_bl=
+ank">dlitz@dlitz.net</a>&gt;<br>
+ =A0 =A0 =A0Key-signing key =A0 - 19E1 1FE8 B3CF F273 ED17 =A04A24 928C EC1=
+3 39C2 5CF7<br>
+</font></blockquote></div><br><br clear=3D"all"><br>-- <br>Jeethu Rao<br>
+</div></div>
+
+--000e0cd209d0e5a3d40464a23054--
+
+
+=======================================================
+From dlitz@dlitz.net Mon May  4 22:49:14 2009
+Date: Mon, 4 May 2009 22:49:14 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Joris Bontje <joris@bontje.nl>
+Subject: PyCrypto license clarification
+Message-ID: <20090505024914.GA9219@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2553
+
+Hi Joris,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+  ===================================================================
+  Distribute and use freely; there are no restrictions on further
+  dissemination and usage except those imposed by the laws of your
+  country of residence.  This software is provided "as is" without
+  warranty of fitness for use or suitability for any purpose, express
+  or implied. Use at your own risk or not at all.
+  ===================================================================
+
+  Incorporating the code into commercial products is permitted; you do
+  not have to make source available or contribute your changes back
+  (though that would be nice).
+
+  --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+have all approved the following dedication for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your
+behalf, dedicate to the public domain all your contributions to PyCrypto,
+with the following notice?
+
+  =======================================================================
+  The contents of this file are dedicated to the public domain.  To the
+  extent that dedication to the public domain is not available, everyone
+  is granted a worldwide, perpetual, royalty-free, non-exclusive license
+  to exercise all rights associated with the contents of this file for
+  any purpose whatsoever.  No rights are reserved.
+  =======================================================================
+
+Regards,
+ - Dwayne
+
+--
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From joris@bontje.nl Tue May  5 03:08:32 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <joris@bontje.nl>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 7AA4B9E5078
+    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 03:08:32 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id 2315B40583
+    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 01:08:32 -0600 (CST)
+Received: (vmailmgr-postfix 16890 invoked by uid 1003);  5 May 2009 01:08:32 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (bontje.nl: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="joris@bontje.nl"; helo=smtp6.versatel.nl; client-ip=62.58.50.97
+Received: from smtp6.versatel.nl (smtp6.versatel.nl [62.58.50.97])
+    by goedel.dlitz.net (Postfix) with ESMTP id 2D76A4052C
+    for <dlitz@dlitz.net>; Tue,  5 May 2009 01:08:30 -0600 (CST)
+Received: (qmail 4224 invoked by uid 0); 5 May 2009 07:08:25 -0000
+Received: from qmail06.zonnet.nl (HELO dell062.admin.zonnet.nl) ([10.170.1.123])
+          (envelope-sender <joris@bontje.nl>)
+          by 10.170.1.96 (qmail-ldap-1.03) with SMTP
+          for < >; 5 May 2009 07:08:25 -0000
+Received: by dell062.admin.zonnet.nl (Postfix, from userid 33)
+    id 9BE9B15759B; Tue,  5 May 2009 09:08:25 +0200 (CEST)
+Received: from firewall66.interaccess.nl (firewall66.interaccess.nl
+    [193.173.35.66]) by www.webmail.vuurwerk.nl (Horde MIME library) with HTTP;
+    Tue, 05 May 2009 09:08:25 +0200
+Message-ID: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+Date: Tue, 05 May 2009 09:08:25 +0200
+From: joris@bontje.nl
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Subject: Re: PyCrypto license clarification
+References: <20090505024914.GA9219@rivest.dlitz.net>
+In-Reply-To: <20090505024914.GA9219@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain;
+    charset=ISO-8859-1;
+    format="flowed"
+Content-Disposition: inline
+Content-Transfer-Encoding: 7bit
+User-Agent: Internet Messaging Program (IMP) H3 (4.1.3)
+Status: RO
+X-Status: A
+Content-Length: 3488
+
+Hi Dwayne,
+
+Thanks for taking over the PyCrypto library and putting in the required 
+effort to keep this going.
+I was very excited to read that it is now one of the installed 
+libraries for Google AppsEngine!
+
+You have my full permission to dedicate all my contributions to 
+PyCrypto to the public domain with your suggested notice:
+=======================================================================
+The contents of this file are dedicated to the public domain.  To the
+extent that dedication to the public domain is not available, everyone
+is granted a worldwide, perpetual, royalty-free, non-exclusive license
+to exercise all rights associated with the contents of this file for
+any purpose whatsoever.  No rights are reserved.
+=======================================================================
+
+
+Regards,
+Joris
+
+Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
+
+> Hi Joris,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+>
+> People often ask me what license PyCrypto is covered by, if it's
+> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+> The text in the current LICENSE file (quoted below) is not entirely clear
+> on the point of whether distributing modified versions is allowed.  (It
+> says "distribute and use", but not "modify".)
+>
+> ===================================================================
+> Distribute and use freely; there are no restrictions on further
+> dissemination and usage except those imposed by the laws of your
+> country of residence.  This software is provided "as is" without
+> warranty of fitness for use or suitability for any purpose, express
+> or implied. Use at your own risk or not at all.
+> ===================================================================
+>
+> Incorporating the code into commercial products is permitted; you do
+> not have to make source available or contribute your changes back
+> (though that would be nice).
+>
+> --amk                                                    (www.amk.ca)
+>
+> For the next PyCrypto release, I would like to take steps to move toward a
+> clearer licensing regime.  I am asking as many copyright holders as I can
+> find if I can release PyCrypto under something clearer and more standard.
+> Below, I have quoted a public domain dedication that was recommended in
+> _Intellectual Property and Open Source: A Practical Guide to Protecting
+> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+> have all approved the following dedication for their contributions.
+>
+> I understand that you have made contributions to PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your contributions to PyCrypto,
+> with the following notice?
+>
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+> Regards,
+> - Dwayne
+>
+> --
+> Dwayne C. Litzenberger <dlitz@dlitz.net>
+> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+
+
+From dlitz@dlitz.net Tue May  5 17:53:47 2009
+Date: Tue, 5 May 2009 17:53:47 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: joris@bontje.nl
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090505215347.GB9933@rivest.dlitz.net>
+References: <20090505024914.GA9219@rivest.dlitz.net> <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+In-Reply-To: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3863
+
+Excellent!  Thank you!
+
+On Tue, May 05, 2009 at 09:08:25AM +0200, joris@bontje.nl wrote:
+> Hi Dwayne,
+>
+> Thanks for taking over the PyCrypto library and putting in the required 
+> effort to keep this going.
+> I was very excited to read that it is now one of the installed libraries 
+> for Google AppsEngine!
+>
+> You have my full permission to dedicate all my contributions to PyCrypto to 
+> the public domain with your suggested notice:
+> =======================================================================
+> The contents of this file are dedicated to the public domain.  To the
+> extent that dedication to the public domain is not available, everyone
+> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+> to exercise all rights associated with the contents of this file for
+> any purpose whatsoever.  No rights are reserved.
+> =======================================================================
+>
+>
+> Regards,
+> Joris
+>
+> Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
+>
+>> Hi Joris,
+>>
+>> I am the new maintainer of the Python Cryptography Toolkit, and I am
+>> working on a new release at http://www.pycrypto.org/.
+>>
+>> People often ask me what license PyCrypto is covered by, if it's
+>> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+>> The text in the current LICENSE file (quoted below) is not entirely clear
+>> on the point of whether distributing modified versions is allowed.  (It
+>> says "distribute and use", but not "modify".)
+>>
+>> ===================================================================
+>> Distribute and use freely; there are no restrictions on further
+>> dissemination and usage except those imposed by the laws of your
+>> country of residence.  This software is provided "as is" without
+>> warranty of fitness for use or suitability for any purpose, express
+>> or implied. Use at your own risk or not at all.
+>> ===================================================================
+>>
+>> Incorporating the code into commercial products is permitted; you do
+>> not have to make source available or contribute your changes back
+>> (though that would be nice).
+>>
+>> --amk                                                    (www.amk.ca)
+>>
+>> For the next PyCrypto release, I would like to take steps to move toward a
+>> clearer licensing regime.  I am asking as many copyright holders as I can
+>> find if I can release PyCrypto under something clearer and more standard.
+>> Below, I have quoted a public domain dedication that was recommended in
+>> _Intellectual Property and Open Source: A Practical Guide to Protecting
+>> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+>> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
+>> have all approved the following dedication for their contributions.
+>>
+>> I understand that you have made contributions to PyCrypto.  May I, on your
+>> behalf, dedicate to the public domain all your contributions to PyCrypto,
+>> with the following notice?
+>>
+>> =======================================================================
+>> The contents of this file are dedicated to the public domain.  To the
+>> extent that dedication to the public domain is not available, everyone
+>> is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>> to exercise all rights associated with the contents of this file for
+>> any purpose whatsoever.  No rights are reserved.
+>> =======================================================================
+>>
+>> Regards,
+>> - Dwayne
+>>
+>> --
+>> Dwayne C. Litzenberger <dlitz@dlitz.net>
+>> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>
+>
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+
+==========================================================
+Date: Sun, 23 Nov 2008 15:54:35 -0800
+From: Wim Lewis <wiml@hhhh.org>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Cc: Wim Lewis <wiml@hhhh.org>
+Message-Id: <9D5C3135-7414-47D7-9D41-0AC6C3A84D97@hhhh.org>
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On November 23, 2008, you wrote:
+>Hi Wim,
+>
+>I am the new maintainer of the Python Cryptography Toolkit, and I am
+>working on a new release at http://www.pycrypto.org/.
+>
+>I understand that you have made contributions to PyCrypto. May I, on
+>your behalf, dedicate to the public domain all your contributions to
+>PyCrypto, with the following notice?
+>
+>   =======================================================================
+>   The contents of this file are dedicated to the public domain.  To the
+>   extent that dedication to the public domain is not available, everyone
+>   is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>   to exercise all rights associated with the contents of this file for
+>   any purpose whatsoever.  No rights are reserved.
+>   =======================================================================
+
+Certainly! I think the only code of mine in PyCrypto is the CAST-5 / CAST-128
+implementation, which already has a public-domain notice at the top of
+the file. But I am happy to have that, any any other code of mine that
+might have wandered in there under an unclear open sourcish license,
+distributed under the public-domain dedication you quote.
+
+Wim.
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.6 (Darwin)
+
+iQCVAwUBSSnnAl8UnN8n93LBAQLp/gQAhr7x8Av1mstc2kxEJDWTm26PTAZxMz4B
+FektbDOzkxgc5580MGGeeX/MVn8aw+1BHg0YD85gsntlDzkcQtb+BR/xAvJ5zKyA
+J/Mn/I+I6ekJQ3juh8IPHLAduOXM9Rtguas/yR+Doaq0xOPKoBx+/5+t1lLJtBcZ
+wrPEa9Oui9s=
+=zSY9
+-----END PGP SIGNATURE-----
+
+
+
+==========================================================
+From dlitz@dlitz.net Sat Apr 18 09:14:20 2009
+Date: Sat, 18 Apr 2009 09:14:20 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Mark Moraes <moraes@computer.org>
+Subject: PyCrypto license clarification
+Message-ID: <20090418131419.GA14494@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2635
+
+Hi Mark,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+       ===================================================================
+       Distribute and use freely; there are no restrictions on further
+       dissemination and usage except those imposed by the laws of your
+       country of residence.  This software is provided "as is" without
+       warranty of fitness for use or suitability for any purpose, express
+       or implied. Use at your own risk or not at all.
+       ===================================================================
+
+       Incorporating the code into commercial products is permitted; you do
+       not have to make source available or contribute your changes back
+       (though that would be nice).
+
+       --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they have all
+approved the following dedication for their contributions.
+
+I understand that you have made contributions to PyCrypto.  May I, on your
+behalf, dedicate to the public domain all your contributions to PyCrypto,
+with the following notice?
+
+       =======================================================================
+       The contents of this file are dedicated to the public domain.  To the
+       extent that dedication to the public domain is not available, everyone
+       is granted a worldwide, perpetual, royalty-free, non-exclusive license
+       to exercise all rights associated with the contents of this file for
+       any purpose whatsoever.  No rights are reserved.
+       =======================================================================
+
+Regards,
+    - Dwayne
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+    Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From markmoraes@yahoo.com Mon Apr 20 19:25:37 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <markmoraes@yahoo.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 5D9AE984FDD
+    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 19:25:37 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id DE41F4025F
+    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
+Received: (vmailmgr-postfix 7604 invoked by uid 1003); 20 Apr 2009 17:25:36 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: none (yahoo.com: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="markmoraes@yahoo.com"; helo=web32405.mail.mud.yahoo.com; client-ip=68.142.207.198
+Received: from web32405.mail.mud.yahoo.com (web32405.mail.mud.yahoo.com [68.142.207.198])
+    by goedel.dlitz.net (Postfix) with SMTP id B5EAF401EE
+    for <dlitz@dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
+Received: (qmail 34697 invoked by uid 60001); 20 Apr 2009 23:25:33 -0000
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1240269933; bh=OvxqbYnCg7R6tUN3YmlgFURM3CuHh1JeHyXhDzkaThU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=F2h2bFzpQxyKFZ8BhenniyupGw4Zvlekb9BSk91qKU+51W/TkSGBij5YZIhkLQdkQk0qLz5f4g8dT6bOME3sEY1j10hlx0K0u2UD0yoYTINBCmsdMQRoJ7ph9bmt+p/EJhRpe+FiV6aoLV0FONWiHfGDghPT1dulWXfVTqgB2aU=
+DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
+  s=s1024; d=yahoo.com;
+  h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
+  b=r6RShFF5VzQLg+9tcn1xKuo4Rs4IVvXF6fdqOpQrMyRCxeFooebhuTE35grGqlomOJLwM0+mZwRb6rGkDj763caOAlo8Ect/qlADW5izXfmVQaDchTbTqmpsJBmQnTQs9iZ+InrG+3UIwtUSGfX7fhEWmI9P/HBzxf9Wp4b3jeo=;
+Message-ID: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+X-YMail-OSG: FrK8aWMVM1mFJtLpMGbUbCLjbUQC.i.JkIAKUHSFsFn7t9PbtewAewXJ2uhZGCOlGCX6oVnG3u.CgqzAffY4vZSnfTT8wnCkzZNZ_g6k.XUc3ipo_6e.92TXl4p8MxDGAf1tpNF5nXPwcQ7aREs7jGoWWVJYVytp50clsUFSHzf7Zbpa8P1Yoe_xSzf3OAgRSh5fCrbFCC8sHPCuwrL3YhasbtHmkWffteSS.x6gEcBaxf03oz4FeDb5mpJ54g11Xonq8h_TmzX9g84Bin9g_3fJ4WSXm6g6.tohLyfXcUxoz4j036wyWpTKPrWEzIUQaN83Sv_bj_Ghxw--
+Received: from [69.124.140.74] by web32405.mail.mud.yahoo.com via HTTP; Mon, 20 Apr 2009 16:25:32 PDT
+X-Mailer: YahooMailClassic/5.2.15 YahooMailWebService/0.7.289.1
+Date: Mon, 20 Apr 2009 16:25:32 -0700 (PDT)
+From: M Moraes <markmoraes@yahoo.com>
+Reply-To: moraes@computer.org
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Status: RO
+X-Status: A
+Content-Length: 3222
+
+
+Hi Dwayne.
+
+Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
+
+Regards,
+Mark.
+
+--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
+
+> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
+> Subject: PyCrypto license clarification
+> To: "Mark Moraes" <moraes@computer.org>
+> Date: Saturday, April 18, 2009, 9:14 AM
+> Hi Mark,
+> 
+> I am the new maintainer of the Python Cryptography Toolkit,
+> and I am
+> working on a new release at http://www.pycrypto.org/.
+> 
+> People often ask me what license PyCrypto is covered by, if
+> it's
+> GPL-compatible, etc.  Right now, I'm not really sure
+> what to tell them.
+> The text in the current LICENSE file (quoted below) is not
+> entirely clear
+> on the point of whether distributing modified versions is
+> allowed.  (It
+> says "distribute and use", but not "modify".)
+> 
+>      
+> ===================================================================
+>       Distribute and use freely; there are
+> no restrictions on further
+>       dissemination and usage except those
+> imposed by the laws of your
+>       country of residence.  This
+> software is provided "as is" without
+>       warranty of fitness for use or
+> suitability for any purpose, express
+>       or implied. Use at your own risk or
+> not at all.
+>      
+> ===================================================================
+> 
+>       Incorporating the code into commercial
+> products is permitted; you do
+>       not have to make source available or
+> contribute your changes back
+>       (though that would be nice).
+> 
+>       --amk       
+>                
+>                
+>             (www.amk.ca)
+> 
+> For the next PyCrypto release, I would like to take steps
+> to move toward a
+> clearer licensing regime.  I am asking as many
+> copyright holders as I can
+> find if I can release PyCrypto under something clearer and
+> more standard.
+> Below, I have quoted a public domain dedication that was
+> recommended in
+> _Intellectual Property and Open Source: A Practical Guide
+> to Protecting
+> Code_, by Van Lindberg.  I have already contacted A.
+> M. Kuchling, Robey
+> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
+> have all
+> approved the following dedication for their contributions.
+> 
+> I understand that you have made contributions to
+> PyCrypto.  May I, on your
+> behalf, dedicate to the public domain all your
+> contributions to PyCrypto,
+> with the following notice?
+> 
+>      
+> =======================================================================
+>       The contents of this file are
+> dedicated to the public domain.  To the
+>       extent that dedication to the public
+> domain is not available, everyone
+>       is granted a worldwide, perpetual,
+> royalty-free, non-exclusive license
+>       to exercise all rights associated with
+> the contents of this file for
+>       any purpose whatsoever.  No
+> rights are reserved.
+>      
+> =======================================================================
+> 
+> Regards,
+>    - Dwayne
+> 
+> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
+>    Key-signing key   - 19E1
+> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+> 
+
+
+From dlitz@dlitz.net Mon Apr 20 20:01:37 2009
+Date: Mon, 20 Apr 2009 20:01:37 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: moraes@computer.org
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090421000137.GA29012@rivest.dlitz.net>
+References: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+In-Reply-To: <551071.34569.qm@web32405.mail.mud.yahoo.com>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 3677
+
+Thanks a lot, and don't worry about not responding to previous emails.  I 
+do that too much myself. :)
+
+On Mon, Apr 20, 2009 at 04:25:32PM -0700, M Moraes wrote:
+>
+>Hi Dwayne.
+>
+>Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
+>
+>Regards,
+>Mark.
+>
+>--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
+>
+>> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
+>> Subject: PyCrypto license clarification
+>> To: "Mark Moraes" <moraes@computer.org>
+>> Date: Saturday, April 18, 2009, 9:14 AM
+>> Hi Mark,
+>> 
+>> I am the new maintainer of the Python Cryptography Toolkit,
+>> and I am
+>> working on a new release at http://www.pycrypto.org/.
+>> 
+>> People often ask me what license PyCrypto is covered by, if
+>> it's
+>> GPL-compatible, etc.  Right now, I'm not really sure
+>> what to tell them.
+>> The text in the current LICENSE file (quoted below) is not
+>> entirely clear
+>> on the point of whether distributing modified versions is
+>> allowed.  (It
+>> says "distribute and use", but not "modify".)
+>> 
+>>      
+>> ===================================================================
+>>       Distribute and use freely; there are
+>> no restrictions on further
+>>       dissemination and usage except those
+>> imposed by the laws of your
+>>       country of residence.  This
+>> software is provided "as is" without
+>>       warranty of fitness for use or
+>> suitability for any purpose, express
+>>       or implied. Use at your own risk or
+>> not at all.
+>>      
+>> ===================================================================
+>> 
+>>       Incorporating the code into commercial
+>> products is permitted; you do
+>>       not have to make source available or
+>> contribute your changes back
+>>       (though that would be nice).
+>> 
+>>       --amk       
+>>                
+>>                
+>>             (www.amk.ca)
+>> 
+>> For the next PyCrypto release, I would like to take steps
+>> to move toward a
+>> clearer licensing regime.  I am asking as many
+>> copyright holders as I can
+>> find if I can release PyCrypto under something clearer and
+>> more standard.
+>> Below, I have quoted a public domain dedication that was
+>> recommended in
+>> _Intellectual Property and Open Source: A Practical Guide
+>> to Protecting
+>> Code_, by Van Lindberg.  I have already contacted A.
+>> M. Kuchling, Robey
+>> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
+>> have all
+>> approved the following dedication for their contributions.
+>> 
+>> I understand that you have made contributions to
+>> PyCrypto.  May I, on your
+>> behalf, dedicate to the public domain all your
+>> contributions to PyCrypto,
+>> with the following notice?
+>> 
+>>      
+>> =======================================================================
+>>       The contents of this file are
+>> dedicated to the public domain.  To the
+>>       extent that dedication to the public
+>> domain is not available, everyone
+>>       is granted a worldwide, perpetual,
+>> royalty-free, non-exclusive license
+>>       to exercise all rights associated with
+>> the contents of this file for
+>>       any purpose whatsoever.  No
+>> rights are reserved.
+>>      
+>> =======================================================================
+>> 
+>> Regards,
+>>    - Dwayne
+>> 
+>> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
+>>    Key-signing key   - 19E1
+>> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+>> 
+>
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
+
+
+
+
+==========================================================
+Date: Mon, 16 Feb 2009 12:58:00 -0800
+From: Robey Pointer <robey@lag.net>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Received-SPF: pass (goedel.dlitz.net: domain of robey@lag.net designates 69.61.78.186 as permitted sender)
+Message-Id: <F469A078-6305-4484-BEA8-F4EC38A4154F@lag.net>
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+On 23 Nov 2008, at 07:42, Dwayne C. Litzenberger wrote:
+
+> For the next PyCrypto release, I would like to take steps to move  
+> toward a clearer licensing regime.  I am asking as many copyright  
+> holders as I can find if I can release PyCrypto under something  
+> clearer and more standard.  Below, I have quoted a public domain  
+> dedication that was recommended in _Intellectual Property and Open  
+> Source: A Practical Guide to Protecting Code_, by Van Lindberg.  I  
+> have already contacted A. M. Kuchling, and he has approved the  
+> following dedication for his contributions.
+>
+> May I, on your behalf, dedicate to the public domain all your  
+> contributions to PyCrypto, with the following notice?
+>
+>     
+> = 
+> ======================================================================
+>    The contents of this file are dedicated to the public domain.  To  
+> the
+>    extent that dedication to the public domain is not available,  
+> everyone
+>    is granted a worldwide, perpetual, royalty-free, non-exclusive  
+> license
+>    to exercise all rights associated with the contents of this file  
+> for
+>    any purpose whatsoever.  No rights are reserved.
+>     
+> = 
+> ======================================================================
+>
+
+In case I haven't replied to this yet: Yes, this is fine with me.
+
+robey
+
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.8 (Darwin)
+
+iEYEARECAAYFAkmZ01gACgkQQQDkKvyJ6cOLvQCfQmYYuVODvIlyLg0hgCI9LAbQ
+SH8AoLJgaq1lIi7/ZYDc+/Cd8VO0xLbr
+=Mv6g
+-----END PGP SIGNATURE-----
+
+
+
+==========================================================
+From dlitz@dlitz.net Sun Aug  2 21:48:25 2009
+Date: Sun, 2 Aug 2009 21:48:25 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Paul Swartz <paulswartz@gmail.com>
+Subject: PyCrypto license clarification
+Message-ID: <20090803014825.GA1326@rivest.dlitz.net>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii; format=flowed
+Content-Disposition: inline
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 2631
+
+Hi Paul,
+
+I am the new maintainer of the Python Cryptography Toolkit, and I am
+working on a new release at http://www.pycrypto.org/.
+
+People often ask me what license PyCrypto is covered by, if it's
+GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
+The text in the current LICENSE file (quoted below) is not entirely clear
+on the point of whether distributing modified versions is allowed.  (It
+says "distribute and use", but not "modify".)
+
+   ===================================================================
+   Distribute and use freely; there are no restrictions on further
+   dissemination and usage except those imposed by the laws of your
+   country of residence.  This software is provided "as is" without
+   warranty of fitness for use or suitability for any purpose, express
+   or implied. Use at your own risk or not at all.
+   ===================================================================
+
+   Incorporating the code into commercial products is permitted; you do
+   not have to make source available or contribute your changes back
+   (though that would be nice).
+
+   --amk                                                    (www.amk.ca)
+
+For the next PyCrypto release, I would like to take steps to move toward a
+clearer licensing regime.  I am asking as many copyright holders as I can
+find if I can release PyCrypto under something clearer and more standard.
+Below, I have quoted a public domain dedication that was recommended in
+_Intellectual Property and Open Source: A Practical Guide to Protecting
+Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
+Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, Joris Bontje, and Mark 
+Moraes, and they have all approved the following dedication for their 
+contributions.
+
+I understand that you have made contributions to PyCrypto, under nickname 
+"z3p" and/or other names.  May I, on your behalf, dedicate to the public 
+domain all your contributions to PyCrypto, with the following notice?
+
+   =======================================================================
+   The contents of this file are dedicated to the public domain.  To the
+   extent that dedication to the public domain is not available, everyone
+   is granted a worldwide, perpetual, royalty-free, non-exclusive license
+   to exercise all rights associated with the contents of this file for
+   any purpose whatsoever.  No rights are reserved.
+   =======================================================================
+
+Regards,
+  - Dwayne
+
+--
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+   Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+From paulswartz@gmail.com Mon Aug  3 12:14:07 2009
+X-Maildir-Dup-Checked: Yes
+Return-Path: <paulswartz@gmail.com>
+X-Original-To: dwon@rivest.dlitz.net
+Delivered-To: dwon@rivest.dlitz.net
+Received: from goedel.dlitz.net (unknown [10.159.255.6])
+    by rivest.dlitz.net (Postfix) with ESMTP id 30B9D984FC4
+    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 12:14:07 -0400 (EDT)
+Received: from localhost (localhost [127.0.0.1])
+    by goedel.dlitz.net (Postfix) with QMQP id AD9AE81068
+    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 10:14:06 -0600 (CST)
+Received: (vmailmgr-postfix 32055 invoked by uid 1003);  3 Aug 2009 10:14:06 -0600
+Delivered-To: m-dlitz-dlitz@dlitz.net
+Received-SPF: pass (gmail.com ... _spf.google.com: 72.14.220.159 is authorized to use 'paulswartz@gmail.com' in 'mfrom' identity (mechanism 'ip4:72.14.192.0/18' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="paulswartz@gmail.com"; helo=fg-out-1718.google.com; client-ip=72.14.220.159
+Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159])
+    by goedel.dlitz.net (Postfix) with ESMTP id 4E63881066
+    for <dlitz@dlitz.net>; Mon,  3 Aug 2009 10:14:05 -0600 (CST)
+Received: by fg-out-1718.google.com with SMTP id d23so1076840fga.3
+        for <dlitz@dlitz.net>; Mon, 03 Aug 2009 09:14:04 -0700 (PDT)
+DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
+        d=gmail.com; s=gamma;
+        h=domainkey-signature:mime-version:received:in-reply-to:references
+         :from:date:message-id:subject:to:content-type
+         :content-transfer-encoding;
+        bh=A0RHBf0TnribKS5qOHJ3WYbkZ+b0cuPeuoKAvpApWcc=;
+        b=gyTqkRhKlHadFKIZCBWsRbnMNVDq1PWlJbyC0EvxPskaoHr3HAR96MWQNBePu/40Ac
+         Vn55qlIqTdom4e9zlUEE6MwZo9kqi/Qw0L/SLib0DlQeNqo/eHYqPmuVswltaYwNAyMJ
+         Y9++76rPGzqYdALsfvsmwv7Q3/bEmjVTr0tQE=
+DomainKey-Signature: a=rsa-sha1; c=nofws;
+        d=gmail.com; s=gamma;
+        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
+         :content-type:content-transfer-encoding;
+        b=jze7KSMkUGilfVCXKXaaXMi5NAtGdMQOtVZZfRNyGSy68xOd2sxefjyyig3EfT6Nv6
+         Q3opUMsT96Q6zjZND55w446kTh2uBTNz4d3NwIeEWJnG3xcliRQu/mXPFp8AzPI3CefL
+         1ornJLM1eQ2XyuZA73jem+SJtfdHUcSD1UhgI=
+MIME-Version: 1.0
+Received: by 10.239.157.147 with SMTP id q19mr601802hbc.61.1249316043185; Mon, 
+    03 Aug 2009 09:14:03 -0700 (PDT)
+In-Reply-To: <20090803014825.GA1326@rivest.dlitz.net>
+References: <20090803014825.GA1326@rivest.dlitz.net>
+From: Paul Swartz <paulswartz@gmail.com>
+Date: Mon, 3 Aug 2009 12:13:43 -0400
+Message-ID: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+Subject: Re: PyCrypto license clarification
+To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: quoted-printable
+Status: RO
+X-Status: A
+Content-Length: 1450
+
+On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wro=
+te:
+> Hi Paul,
+>
+> I am the new maintainer of the Python Cryptography Toolkit, and I am
+> working on a new release at http://www.pycrypto.org/.
+
+That's great!
+
+> I understand that you have made contributions to PyCrypto, under nickname
+> "z3p" and/or other names. =C2=A0May I, on your behalf, dedicate to the pu=
+blic
+> domain all your contributions to PyCrypto, with the following notice?
+>
+> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+> =C2=A0The contents of this file are dedicated to the public domain. =C2=
+=A0To the
+> =C2=A0extent that dedication to the public domain is not available, every=
+one
+> =C2=A0is granted a worldwide, perpetual, royalty-free, non-exclusive lice=
+nse
+> =C2=A0to exercise all rights associated with the contents of this file fo=
+r
+> =C2=A0any purpose whatsoever. =C2=A0No rights are reserved.
+> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
+=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
+
+Yes, that's fine.  Good luck with the new release!
+
+-p
+--=20
+Paul Swartz
+paulswartz at gmail dot com
+http://paulswartz.net/
+AIM: z3penguin
+
+
+From dlitz@dlitz.net Mon Aug  3 14:35:01 2009
+Date: Mon, 3 Aug 2009 14:35:01 -0400
+From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
+To: Paul Swartz <paulswartz@gmail.com>
+Subject: Re: PyCrypto license clarification
+Message-ID: <20090803183501.GA17472@rivest.dlitz.net>
+References: <20090803014825.GA1326@rivest.dlitz.net> <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+MIME-Version: 1.0
+Content-Type: text/plain; charset=iso-8859-1; format=flowed
+Content-Disposition: inline
+Content-Transfer-Encoding: 8bit
+In-Reply-To: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
+X-Primary-Address: dlitz@dlitz.net
+X-Homepage: http://www.dlitz.net/
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
+    preference=unprotected
+X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
+    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
+    preference=signencrypt
+User-Agent: Mutt/1.5.16 (2007-06-11)
+Status: RO
+Content-Length: 1250
+
+On Mon, Aug 03, 2009 at 12:13:43PM -0400, Paul Swartz wrote:
+>On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wrote:
+>> Hi Paul,
+>>
+>> I am the new maintainer of the Python Cryptography Toolkit, and I am
+>> working on a new release at http://www.pycrypto.org/.
+>
+>That's great!
+>
+>> I understand that you have made contributions to PyCrypto, under nickname
+>> "z3p" and/or other names. �May I, on your behalf, dedicate to the public
+>> domain all your contributions to PyCrypto, with the following notice?
+>>
+>> �=======================================================================
+>> �The contents of this file are dedicated to the public domain. �To the
+>> �extent that dedication to the public domain is not available, everyone
+>> �is granted a worldwide, perpetual, royalty-free, non-exclusive license
+>> �to exercise all rights associated with the contents of this file for
+>> �any purpose whatsoever. �No rights are reserved.
+>> �=======================================================================
+>
+>Yes, that's fine.  Good luck with the new release!
+
+Perfect!  Thanks for the quick response!
+
+-- 
+Dwayne C. Litzenberger <dlitz@dlitz.net>
+  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
+
+
+
+==========================================================
+
+
+ + +
+ +
+

billiard + 3.3.0.20 +

+ + + + + +
Copyright (c) 2006-2008, R Oudkerk 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 author 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 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 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.
+
+ + +
+ +
+

oauthlib + 1.0.3 +

+ + + + + + +
+ +
+

kombu + 3.0.26 +

+ + + + + +
Copyright (c) 2015 Ask Solem & contributors.  All rights reserved.
+Copyright (c) 2012-2014 GoPivotal Inc & contributors.  All rights reserved.
+Copyright (c) 2009-2012, Ask Solem & 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:
+    * 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 Ask Solem 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 Ask Solem 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.
+ + +
+ +
+

django-reversion + 1.8.7 +

+ + + + + +
Copyright (c) 2009, David Hall.
+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 David Hall 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.
+ + +
+ +
+

django-extensions + 1.5.7 +

+ + +
Copyright (c) 2007 Michael Trier
+ + + + +
Copyright (c) 2007 Michael Trier
+
+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.
+ + +
+ +
+

requests + 2.7.0 +

+ + + +
Copyright 2013 Kenneth Reitz
+
+   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.
+ + + +
+                                 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
+
+ + +
+ +
+

django-haystack-panel + 0.2.1 +

+ + +
Copyright (c) 2012, Chris Streeter
+ + + + +
Copyright (c) 2012, Chris Streeter
+
+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.
+
+ + +
+ +
+

Supervisor + 3.1.3 +

+ + + +
Supervisor is Copyright (c) 2006-2013 Agendaless Consulting and Contributors.
+(http://www.agendaless.com), All Rights Reserved
+
+  This software is subject to the provisions of the license at
+  http://www.repoze.org/LICENSE.txt . A copy of this license should
+  accompany this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND
+  ANY AND ALL EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING,
+  BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,
+  MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS FOR A PARTICULAR
+  PURPOSE.
+
+TrackRefs code Copyright (c) 2007 Zope Corporation and Contributors
+
+  This software is subject to the provisions of the Zope Public License,
+  Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
+  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+  WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+  WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+  FOR A PARTICULAR PURPOSE.
+
+medusa was (is?) Copyright (c) Sam Rushing.
+
+http_client.py code Copyright (c) by Daniel Krech, http://eikeon.com/.
+
+  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.
+
+
+ + + +
Supervisor is licensed under the following license:
+
+  A copyright notice accompanies this license document that identifies
+  the copyright holders.
+
+  Redistribution and use in source and binary forms, with or without
+  modification, are permitted provided that the following conditions are
+  met:
+
+  1.  Redistributions in source code must retain the accompanying
+      copyright notice, this list of conditions, and the following
+      disclaimer.
+
+  2.  Redistributions in binary form must reproduce the accompanying
+      copyright notice, this list of conditions, and the following
+      disclaimer in the documentation and/or other materials provided
+      with the distribution.
+
+  3.  Names of the copyright holders must not be used to endorse or
+      promote products derived from this software without prior
+      written permission from the copyright holders.
+
+  4.  If any files are modified, you must cause the modified files to
+      carry prominent notices stating that you changed the files and
+      the date of any change.
+
+  Disclaimer
+
+    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 COPYRIGHT
+    HOLDERS 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.
+
+http_client.py code is based on code by Daniel Krech, which was
+released under this license:
+
+  LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1
+  ------------------------------------------------
+  Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/
+  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 Daniel Krech 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.
+
+Medusa, the asynchronous communications framework upon which
+supervisor's server and client code is based, was created by Sam
+Rushing:
+
+  Medusa was once distributed under a 'free for non-commercial use'
+  license, but in May of 2000 Sam Rushing changed the license to be
+  identical to the standard Python license at the time.  The standard
+  Python license has always applied to the core components of Medusa,
+  this change just frees up the rest of the system, including the http
+  server, ftp server, utilities, etc.  Medusa is therefore under the
+  following license:
+
+  ==============================
+  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 Sam Rushing not be
+  used in advertising or publicity pertaining to distribution of the
+  software without specific, written prior permission.
+
+  SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
+  NO EVENT SHALL SAM RUSHING 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.
+  ==============================
+
+Some software in this distribution is released under the Zope Public
+License (as marked in its file header):
+
+  Zope Public License (ZPL) Version 2.1
+  -------------------------------------
+
+  A copyright notice accompanies this license document that
+  identifies the copyright holders.
+
+  This license has been certified as open source. It has also
+  been designated as GPL compatible by the Free Software
+  Foundation (FSF).
+
+  Redistribution and use in source and binary forms, with or
+  without modification, are permitted provided that the
+  following conditions are met:
+
+  1. Redistributions in source code must retain the
+     accompanying copyright notice, this list of conditions,
+     and the following disclaimer.
+
+  2. Redistributions in binary form must reproduce the accompanying
+     copyright notice, this list of conditions, and the
+     following disclaimer in the documentation and/or other
+     materials provided with the distribution.
+
+  3. Names of the copyright holders must not be used to
+     endorse or promote products derived from this software
+     without prior written permission from the copyright
+     holders.
+
+  4. The right to distribute this software or to use it for
+     any purpose does not give you the right to use
+     Servicemarks (sm) or Trademarks (tm) of the copyright
+     holders. Use of them is covered by separate agreement
+     with the copyright holders.
+
+  5. If any files are modified, you must cause the modified
+     files to carry prominent notices stating that you changed
+     the files and the date of any change.
+
+  Disclaimer
+
+    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 COPYRIGHT HOLDERS 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.
+ + +
+ +
+

Whoosh + 2.7.0 +

+ + + + + + +
+ +
+

django-tastypie + 0.12.2 +

+ + + + + +
Copyright (c) 2010, Daniel Lindsley
+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 tastypie 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 tastypie 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-mimeparse + 0.1.4 +

+ + +
Copyright (c) 2010 Joe Gregorio
+ + + + +
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.
+ + +
+ +
+

amqp + 1.4.6 +

+ + + + + +
		  GNU LESSER GENERAL PUBLIC LICENSE
+		       Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  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
+ + +
+ +
+

requests-oauthlib + 0.5.0 +

+ + + + + +
Copyright (c) 2013 Kenneth Reitz.
+
+Permission to use, copy, modify, and/or 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" 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.
+
+ + +
+ +
+

Grappelli + 2.7.1 +

+ + + + + +
django-grappelli
+----------------
+
+Copyright (c) Patrick Kranzlmueller, Axel Swoboda (vonautomatisch werkstaetten),
+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 FileBrowser 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.
+
+django-grappelli contains code from django-admin-tools
+------------------------------------------------------
+
+copyright (c) 2010 David JEAN LOUIS
+
+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.
+ + +
+ +
+

sqlparse + 0.1.16 +

+ + +
Copyright (c) 2009, Andi Albrecht 
+ + + + +
Copyright (c) 2009, Andi Albrecht <albrecht.andi@gmail.com>
+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 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.
+ + +
+ +
+

elasticsearch-py + 1.6.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.
+
+ + +
+ +
+

virtualenv + 12.0.5 +

+ + +
Copyright (c) 2007 Ian Bicking and Contributors
+Copyright (c) 2009 Ian Bicking, The Open Planning Project
+Copyright (c) 2011-2015 The virtualenv developers
+ + + + +
Copyright (c) 2007 Ian Bicking and Contributors
+Copyright (c) 2009 Ian Bicking, The Open Planning Project
+Copyright (c) 2011-2014 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.
+
+ + +
+ +
+

meld3 + 1.0.2 +

+ + + + + +
Zope Public License (ZPL) Version 2.1
+-------------------------------------
+
+A copyright notice accompanies this license document that
+identifies the copyright holders.
+
+This license has been certified as open source. It has also
+been designated as GPL compatible by the Free Software
+Foundation (FSF).
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions in source code must retain the
+   accompanying copyright notice, this list of conditions,
+   and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the accompanying
+   copyright notice, this list of conditions, and the
+   following disclaimer in the documentation and/or other
+   materials provided with the distribution.
+
+3. Names of the copyright holders must not be used to
+   endorse or promote products derived from this software
+   without prior written permission from the copyright
+   holders.
+
+4. The right to distribute this software or to use it for
+   any purpose does not give you the right to use
+   Servicemarks (sm) or Trademarks (tm) of the copyright
+   holders. Use of them is covered by separate agreement
+   with the copyright holders.
+
+5. If any files are modified, you must cause the modified
+   files to carry prominent notices stating that you changed
+   the files and the date of any change.
+
+Disclaimer
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 COPYRIGHT HOLDERS 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 + 15.8.2 +

+ + +
Copyright (C) 2012 Mike Kazantsev 
+ + + + +
            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+                    Version 2, December 2004
+
+ Copyright (C) 2012 Mike Kazantsev <mk.fraggod@gmail.com>
+
+ 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.
+ + +
+ +
+

python-openid + 2.2.5 +

+ + + + + +
+                                 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
+
+ + +
+ +
+

pip + 7.1.2 +

+ + + + + +
Copyright (c) 2008-2014 The pip developers (see AUTHORS.txt file)
+
+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 for Bundle of CA Root Certificates (pip/cacert.pem)
+===========================================================
+
+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 St, Fifth Floor, Boston, MA
+02110-1301
+
+ + +
+ +
+

natsort + 4.0.3 +

+ + +
Copyright (c) 2012-2014 Seth M. Morton
+ + + + +
Copyright (c) 2012-2014 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.
+ + +
+ +
+

wincertstore + 0.2 +

+ + + + + +
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 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.
+
+
+ + +
+ +
+

JNA + 4.1.0 +

+ + +
Copyright (c) 2007 Timothy Wall, All Rights Reserved
+ + +
JNA is dual-licensed under 2 alternative Open Source/Free 
+licenses: LGPL 2.1 and Apache License 2.0. (starting with
+JNA version 4.0.0). 
+
+What this means is that one can choose either one of these
+licenses (for purposes of re-distributing JNA; usually by
+including it as one of jars another application or
+library uses) by downloading corresponding jar file,
+using it, and living happily everafter. 
+
+You may obtain a copy of the LGPL License at:
+
+http://www.gnu.org/licenses/licenses.html
+
+A copy is also included in the downloadable source code package
+containing JNA, in file "LGPL2.1", under the same directory
+as this file.
+
+You may obtain a copy of the ASL License at:
+
+http://www.apache.org/licenses/
+
+A copy is also included in the downloadable source code package
+containing JNA, in file "ASL2.0", under the same directory
+as this file.
+
+ + + +
+                                 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.
+
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from unicode conversion examples available at
+http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
+from those sources:
+
+/*
+ * Copyright 2001-2004 Unicode, Inc.
+ * 
+ * Disclaimer
+ * 
+ * This source code is provided as is by Unicode, Inc. No claims are
+ * made as to fitness for any particular purpose. No warranties of any
+ * kind are expressed or implied. The recipient agrees to determine
+ * applicability of information provided. If this file has been
+ * purchased on magnetic or optical media from Unicode, Inc., the
+ * sole remedy for any claim will be exchange of defective media
+ * within 90 days of receipt.
+ * 
+ * Limitations on Rights to Redistribute This Code
+ * 
+ * Unicode, Inc. hereby grants the right to freely use the information
+ * supplied in this file in the creation of products supporting the
+ * Unicode Standard, and to make copies of this file in any form
+ * for internal or external distribution as long as this notice
+ * remains attached.
+ */
+
+
+Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
+derived from Python 2.4.2 sources available at
+http://www.python.org. Full license is here:
+
+  http://www.python.org/download/releases/2.4.2/license/
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from ICU (http://www.icu-project.org)
+The full license is available here: 
+  http://source.icu-project.org/repos/icu/icu/trunk/license.html
+
+/*
+ * Copyright (C) 1999-2010, 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.
+ */
+
+The following license applies to the Snowball stemmers:
+
+Copyright (c) 2001, Dr Martin Porter
+Copyright (c) 2002, Richard Boulton
+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 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 following license applies to the KStemmer:
+
+Copyright © 2003,
+Center for Intelligent Information Retrieval,
+University of Massachusetts, Amherst.
+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. The names "Center for Intelligent Information Retrieval" and
+"University of Massachusetts" must not be used to endorse or promote products
+derived from this software without prior written permission. To obtain
+permission, contact info@ciir.cs.umass.edu.
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
+
+ + +
+ +
+

Sigar + 1.6.4 +

+ + + +
Hyperic SIGAR includes some third-party open source components 
+in its distribution. The list below identifies the community or 
+organization and links to their appropriate license terms.
+
+The Hyperic team would like to thank all the communities 
+of the projects listed below for their contributions. 
+---------------------------------------------------------------------
+
+The following components are included without modification:
+
+- log4j -
+Information: http://logging.apache.org/
+License: http://www.apache.org/licenses/LICENSE-2.0
+
+The following components are included with modification:
+
+- cpptasks -
+Information: http://ant-contrib.sourceforge.net/
+License: http://ant-contrib.sourceforge.net/LICENSE.txt
+
+- (portions of) APR -
+Information: http://apr.apache.org/
+License: http://www.apache.org/licenses/LICENSE-2.0
+
+- solaris get_mib2 -
+Information: ftp://vic.cc.purdue.edu/pub/tools/unix/solaris/get_mib2/
+License: within src/os/solaris/get_mib2.[ch]
+
+- getline by Chris Thewalt -
+Information: http://tinyurl.com/r438r
+License: within src/sigar_getline.c
+
+- PrintfFormat.java -
+Information: http://java.sun.com/developer/technicalArticles/Programming/sprintf/PrintfFormat.java
+License: within bindings/java/src/org/hyperic/sigar/util/PrintfFormat.java 
+
+ + + +
+                                 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.
+
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from unicode conversion examples available at
+http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
+from those sources:
+
+/*
+ * Copyright 2001-2004 Unicode, Inc.
+ * 
+ * Disclaimer
+ * 
+ * This source code is provided as is by Unicode, Inc. No claims are
+ * made as to fitness for any particular purpose. No warranties of any
+ * kind are expressed or implied. The recipient agrees to determine
+ * applicability of information provided. If this file has been
+ * purchased on magnetic or optical media from Unicode, Inc., the
+ * sole remedy for any claim will be exchange of defective media
+ * within 90 days of receipt.
+ * 
+ * Limitations on Rights to Redistribute This Code
+ * 
+ * Unicode, Inc. hereby grants the right to freely use the information
+ * supplied in this file in the creation of products supporting the
+ * Unicode Standard, and to make copies of this file in any form
+ * for internal or external distribution as long as this notice
+ * remains attached.
+ */
+
+
+Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
+derived from Python 2.4.2 sources available at
+http://www.python.org. Full license is here:
+
+  http://www.python.org/download/releases/2.4.2/license/
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from ICU (http://www.icu-project.org)
+The full license is available here: 
+  http://source.icu-project.org/repos/icu/icu/trunk/license.html
+
+/*
+ * Copyright (C) 1999-2010, 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.
+ */
+
+The following license applies to the Snowball stemmers:
+
+Copyright (c) 2001, Dr Martin Porter
+Copyright (c) 2002, Richard Boulton
+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 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 following license applies to the KStemmer:
+
+Copyright © 2003,
+Center for Intelligent Information Retrieval,
+University of Massachusetts, Amherst.
+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. The names "Center for Intelligent Information Retrieval" and
+"University of Massachusetts" must not be used to endorse or promote products
+derived from this software without prior written permission. To obtain
+permission, contact info@ciir.cs.umass.edu.
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
+
+ + +
+ +
+

ASM Commons + 4.1 +

+ + +
Copyright (c) 2000-2011 INRIA, France Telecom
+ + + + +
ASM: a very small and fast Java bytecode manipulation framework
+Copyright (c) 2000-2011 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.
+
+ + +
+ +
+

Apache Log4J + 1.2.17 +

+ + + +
Apache log4j
+Copyright 2007 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+ + + +
+                                 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.
+
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from unicode conversion examples available at
+http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
+from those sources:
+
+/*
+ * Copyright 2001-2004 Unicode, Inc.
+ * 
+ * Disclaimer
+ * 
+ * This source code is provided as is by Unicode, Inc. No claims are
+ * made as to fitness for any particular purpose. No warranties of any
+ * kind are expressed or implied. The recipient agrees to determine
+ * applicability of information provided. If this file has been
+ * purchased on magnetic or optical media from Unicode, Inc., the
+ * sole remedy for any claim will be exchange of defective media
+ * within 90 days of receipt.
+ * 
+ * Limitations on Rights to Redistribute This Code
+ * 
+ * Unicode, Inc. hereby grants the right to freely use the information
+ * supplied in this file in the creation of products supporting the
+ * Unicode Standard, and to make copies of this file in any form
+ * for internal or external distribution as long as this notice
+ * remains attached.
+ */
+
+
+Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
+derived from Python 2.4.2 sources available at
+http://www.python.org. Full license is here:
+
+  http://www.python.org/download/releases/2.4.2/license/
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from ICU (http://www.icu-project.org)
+The full license is available here: 
+  http://source.icu-project.org/repos/icu/icu/trunk/license.html
+
+/*
+ * Copyright (C) 1999-2010, 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.
+ */
+
+The following license applies to the Snowball stemmers:
+
+Copyright (c) 2001, Dr Martin Porter
+Copyright (c) 2002, Richard Boulton
+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 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 following license applies to the KStemmer:
+
+Copyright © 2003,
+Center for Intelligent Information Retrieval,
+University of Massachusetts, Amherst.
+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. The names "Center for Intelligent Information Retrieval" and
+"University of Massachusetts" must not be used to endorse or promote products
+derived from this software without prior written permission. To obtain
+permission, contact info@ciir.cs.umass.edu.
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
+
+ + +
+ +
+

JTS Topology Suite + 1.13 +

+ + +
Copyright (C) 2001 Vivid Solutions
+ + +
The JTS Topology Suite is a collection of Java classes that
+implement the fundamental operations required to validate a given
+geo-spatial data set to a known topological specification.
+
+Copyright (C) 2001 Vivid Solutions
+
+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
+
+For more information, contact:
+
+    Vivid Solutions
+    Suite #1A
+    2328 Government Street
+    Victoria BC  V8T 5G5
+    Canada
+
+    (250)385-6040
+    www.vividsolutions.com
+
+ + + +
		  GNU LESSER GENERAL PUBLIC LICENSE
+		       Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  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.
+
+    <one line to give the library's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    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
+
+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.
+
+  <signature of Ty Coon>, 1 April 1990
+  Ty Coon, President of Vice
+
+That's all there is to it!
+
+
+
+ + +
+ +
+

ANTLR runtime + 3.5 +

+ + +
Copyright (c) 2005-2009 Terence Parr
+ + + + +
 Copyright (c) 2005-2009 Terence Parr
+ 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. 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.
+
+ + +
+ +
+

Apache Lucene + 4.10.4 +

+ + + +
Apache Lucene
+Copyright 2012 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).
+
+The snowball stemmers in
+  contrib/analyzers/common/src/java/net/sf/snowball
+were developed by Martin Porter and Richard Boulton.
+The snowball stopword lists in
+  contrib/analyzers/common/src/resources/org/apache/lucene/analysis/snowball
+were developed by Martin Porter and Richard Boulton.
+The full snowball package is available from
+  http://snowball.tartarus.org/
+
+The KStem stemmer in
+  common/src/org/apache/lucene/analysis/en
+was developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)
+under the BSD-license.
+
+The Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (contrib/analyzers) come with a default
+stopword list that is BSD-licensed created by Jacques Savoy.  These files reside in:
+contrib/analyzers/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,
+contrib/analyzers/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,
+contrib/analyzers/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,
+contrib/analyzers/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,
+contrib/analyzers/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt
+See http://members.unine.ch/jacques.savoy/clef/index.html.
+
+The German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers
+(common) are based on BSD-licensed reference implementations created by Jacques Savoy and
+Ljiljana Dolamic. These files reside in:
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java
+contrib/analyzers/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java
+
+The Stempel analyzer (contrib/analyzers) includes BSD-licensed software developed 
+by the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,
+and Edmond Nolan.
+
+The Polish analyzer (contrib/analyzers) comes with a default
+stopword list that is BSD-licensed created by the Carrot2 project. The file resides
+in contrib/analyzers/stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.
+See http://project.carrot2.org/license.html.
+
+Includes software from other Apache Software Foundation projects,
+including, but not limited to:
+ - Apache Ant
+ - Apache Jakarta Regexp
+ - Commons Compress
+ - Xerces
+
+The SmartChineseAnalyzer source code (under contrib/analyzers) was
+provided by Xiaoping Gao and copyright 2009 by www.imdict.net.
+
+ICU4J, (under contrib/icu) is licensed under an MIT styles license
+(contrib/icu/lib/ICU-LICENSE.txt) and Copyright (c) 1995-2008 
+International Business Machines Corporation and others
+
+Some files (contrib/analyzers/common/src/test/.../WordBreakTestUnicode_*.java
+and data files under contrib/icu/src/data/) are derived from Unicode data such
+as the Unicode Character Database. See http://unicode.org/copyright.html for more
+details.
+
+The class org.apache.lucene.SorterTemplate was inspired by CGLIB's class with
+the same name. The implementation part is mainly done using pre-existing
+Lucene sorting code. In-place stable mergesort was borrowed from CGLIB,
+which is Apache-licensed.
+
+The class org.apache.lucene.util.WeakIdentityMap was derived from
+the Apache CXF project and is Apache License 2.0.
+
+The Google Code Prettify is Apache License 2.0.
+See http://code.google.com/p/google-code-prettify/
+
+JUnit (junit-4.10) is licensed under the Common Public License v. 1.0
+See http://junit.sourceforge.net/cpl-v10.html
+
+This product includes code (JaspellTernarySearchTrie) from Java Spelling Checking Package (jaspell): http://jaspell.sourceforge.net/
+License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
+
+===========================================================================
+Kuromoji Japanese Morphological Analyzer - Apache Lucene Integration
+===========================================================================
+
+This software includes a binary and/or source version of data from
+
+  mecab-ipadic-2.7.0-20070801
+
+which can be obtained from
+
+  http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz
+
+or
+
+  http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz
+
+===========================================================================
+mecab-ipadic-2.7.0-20070801 Notice
+===========================================================================
+
+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.
+
+ + + +
+                                 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.
+
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from unicode conversion examples available at
+http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
+from those sources:
+
+/*
+ * Copyright 2001-2004 Unicode, Inc.
+ * 
+ * Disclaimer
+ * 
+ * This source code is provided as is by Unicode, Inc. No claims are
+ * made as to fitness for any particular purpose. No warranties of any
+ * kind are expressed or implied. The recipient agrees to determine
+ * applicability of information provided. If this file has been
+ * purchased on magnetic or optical media from Unicode, Inc., the
+ * sole remedy for any claim will be exchange of defective media
+ * within 90 days of receipt.
+ * 
+ * Limitations on Rights to Redistribute This Code
+ * 
+ * Unicode, Inc. hereby grants the right to freely use the information
+ * supplied in this file in the creation of products supporting the
+ * Unicode Standard, and to make copies of this file in any form
+ * for internal or external distribution as long as this notice
+ * remains attached.
+ */
+
+
+Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
+derived from Python 2.4.2 sources available at
+http://www.python.org. Full license is here:
+
+  http://www.python.org/download/releases/2.4.2/license/
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from ICU (http://www.icu-project.org)
+The full license is available here: 
+  http://source.icu-project.org/repos/icu/icu/trunk/license.html
+
+/*
+ * Copyright (C) 1999-2010, 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.
+ */
+
+The following license applies to the Snowball stemmers:
+
+Copyright (c) 2001, Dr Martin Porter
+Copyright (c) 2002, Richard Boulton
+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 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 following license applies to the KStemmer:
+
+Copyright © 2003,
+Center for Intelligent Information Retrieval,
+University of Massachusetts, Amherst.
+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. The names "Center for Intelligent Information Retrieval" and
+"University of Massachusetts" must not be used to endorse or promote products
+derived from this software without prior written permission. To obtain
+permission, contact info@ciir.cs.umass.edu.
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
+
+ + +
+ +
+

ASM + 4.1 +

+ + +
Copyright (c) 2000-2011 INRIA, France Telecom
+ + + + +
ASM: a very small and fast Java bytecode manipulation framework
+Copyright (c) 2000-2011 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.
+
+ + +
+ +
+

Spatial4J + 0.4.1 +

+ + + +
 Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+
+ + + +
+                                 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.
+
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from unicode conversion examples available at
+http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
+from those sources:
+
+/*
+ * Copyright 2001-2004 Unicode, Inc.
+ * 
+ * Disclaimer
+ * 
+ * This source code is provided as is by Unicode, Inc. No claims are
+ * made as to fitness for any particular purpose. No warranties of any
+ * kind are expressed or implied. The recipient agrees to determine
+ * applicability of information provided. If this file has been
+ * purchased on magnetic or optical media from Unicode, Inc., the
+ * sole remedy for any claim will be exchange of defective media
+ * within 90 days of receipt.
+ * 
+ * Limitations on Rights to Redistribute This Code
+ * 
+ * Unicode, Inc. hereby grants the right to freely use the information
+ * supplied in this file in the creation of products supporting the
+ * Unicode Standard, and to make copies of this file in any form
+ * for internal or external distribution as long as this notice
+ * remains attached.
+ */
+
+
+Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
+derived from Python 2.4.2 sources available at
+http://www.python.org. Full license is here:
+
+  http://www.python.org/download/releases/2.4.2/license/
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from ICU (http://www.icu-project.org)
+The full license is available here: 
+  http://source.icu-project.org/repos/icu/icu/trunk/license.html
+
+/*
+ * Copyright (C) 1999-2010, 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.
+ */
+
+The following license applies to the Snowball stemmers:
+
+Copyright (c) 2001, Dr Martin Porter
+Copyright (c) 2002, Richard Boulton
+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 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 following license applies to the KStemmer:
+
+Copyright © 2003,
+Center for Intelligent Information Retrieval,
+University of Massachusetts, Amherst.
+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. The names "Center for Intelligent Information Retrieval" and
+"University of Massachusetts" must not be used to endorse or promote products
+derived from this software without prior written permission. To obtain
+permission, contact info@ciir.cs.umass.edu.
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
+
+ + +
+ +
+

Groovy + 2.4.0 +

+ + +
Copyright 2003-2008 the original author or authors.
+ + +
Copyright 2003-2008 the original author or authors.
+
+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.
+
+
+
+
+ Apache Commons CLI
+Copyright 2001-2009 The Apache Software Foundation
+
+This product includes software developed by
+The Apache Software Foundation (http://www.apache.org/).
+ 
+ + + +
+                                 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.
+
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from unicode conversion examples available at
+http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
+from those sources:
+
+/*
+ * Copyright 2001-2004 Unicode, Inc.
+ * 
+ * Disclaimer
+ * 
+ * This source code is provided as is by Unicode, Inc. No claims are
+ * made as to fitness for any particular purpose. No warranties of any
+ * kind are expressed or implied. The recipient agrees to determine
+ * applicability of information provided. If this file has been
+ * purchased on magnetic or optical media from Unicode, Inc., the
+ * sole remedy for any claim will be exchange of defective media
+ * within 90 days of receipt.
+ * 
+ * Limitations on Rights to Redistribute This Code
+ * 
+ * Unicode, Inc. hereby grants the right to freely use the information
+ * supplied in this file in the creation of products supporting the
+ * Unicode Standard, and to make copies of this file in any form
+ * for internal or external distribution as long as this notice
+ * remains attached.
+ */
+
+
+Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
+derived from Python 2.4.2 sources available at
+http://www.python.org. Full license is here:
+
+  http://www.python.org/download/releases/2.4.2/license/
+
+
+Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
+derived from ICU (http://www.icu-project.org)
+The full license is available here: 
+  http://source.icu-project.org/repos/icu/icu/trunk/license.html
+
+/*
+ * Copyright (C) 1999-2010, 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.
+ */
+
+The following license applies to the Snowball stemmers:
+
+Copyright (c) 2001, Dr Martin Porter
+Copyright (c) 2002, Richard Boulton
+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 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 following license applies to the KStemmer:
+
+Copyright © 2003,
+Center for Intelligent Information Retrieval,
+University of Massachusetts, Amherst.
+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. The names "Center for Intelligent Information Retrieval" and
+"University of Massachusetts" must not be used to endorse or promote products
+derived from this software without prior written permission. To obtain
+permission, contact info@ciir.cs.umass.edu.
+
+THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
+
+ + +
+ +
+ +

Common Licenses Used in This Product

+ + + + +

End

+ + \ No newline at end of file diff --git a/about_code_tool/tests/testdata/genattrib/zipped_about.zip b/about_code_tool/tests/testdata/genattrib/zipped_about.zip new file mode 100644 index 0000000000000000000000000000000000000000..3af0df7e85c1c0fe0a0b1834eaa5786a80493ac2 GIT binary patch literal 284989 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%0D@FTaQQs$>EwRKW2eaMa(vEElp8)#S>`RhKJo7 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 {FA?zD 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
Os8|f4Nrp*4ma;}xFDYM1jV4t;o?_UV~w-qS$ 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 j{r>Ai{^6w^{R8iR=0dMD!C-^ne~Z#Em^c;4j Date: Mon, 28 Sep 2015 15:49:53 +0200 Subject: [PATCH 2/3] #210 reverting to old style asserts since we run tests with setuptools in this branch --- about_code_tool/tests/test_genattrib.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/about_code_tool/tests/test_genattrib.py b/about_code_tool/tests/test_genattrib.py index a2a47c84..4f8cb92a 100644 --- a/about_code_tool/tests/test_genattrib.py +++ b/about_code_tool/tests/test_genattrib.py @@ -73,6 +73,7 @@ def test_component_subset_to_sublist(self): self.assertEqual(expected, result) def test_genattrib_basic(self): + self.maxDiff =None about_dir = 'about_code_tool/tests/testdata/genattrib/basic/' generated_attrib = get_temp_file('generated.html') args = [about_dir, generated_attrib] @@ -80,9 +81,10 @@ def test_genattrib_basic(self): genattrib_command_tester(args, options) expected = open('about_code_tool/tests/testdata/genattrib/basic.html').read() result = open(generated_attrib).read() - assert expected ==result + self.assertEqual(expected, result) def test_genattrib_from_zipped_dir(self): + self.maxDiff =None about_dir = 'about_code_tool/tests/testdata/genattrib/zipped_about.zip' generated_attrib = get_temp_file('generated.html') args = [about_dir, generated_attrib] @@ -90,7 +92,7 @@ def test_genattrib_from_zipped_dir(self): genattrib_command_tester(args, options) expected = open('about_code_tool/tests/testdata/genattrib/zipped_about.html').read() result = open(generated_attrib).read() - assert expected ==result + self.assertEqual(expected, result) def genattrib_command_tester(args, options): From 210b4a6026ef937533317dadda4aad2ff2a98da2 Mon Sep 17 00:00:00 2001 From: pombredanne Date: Mon, 28 Sep 2015 15:56:23 +0200 Subject: [PATCH 3/3] #210 using simpler assrteions that will pass on all OSes --- about_code_tool/tests/test_genattrib.py | 28 +- .../tests/testdata/genattrib/basic.html | 771 - .../testdata/genattrib/zipped_about.html | 19263 ---------------- 3 files changed, 22 insertions(+), 20040 deletions(-) delete mode 100644 about_code_tool/tests/testdata/genattrib/basic.html delete mode 100644 about_code_tool/tests/testdata/genattrib/zipped_about.html diff --git a/about_code_tool/tests/test_genattrib.py b/about_code_tool/tests/test_genattrib.py index 4f8cb92a..e0346018 100644 --- a/about_code_tool/tests/test_genattrib.py +++ b/about_code_tool/tests/test_genattrib.py @@ -73,26 +73,42 @@ def test_component_subset_to_sublist(self): self.assertEqual(expected, result) def test_genattrib_basic(self): - self.maxDiff =None + self.maxDiff = None about_dir = 'about_code_tool/tests/testdata/genattrib/basic/' generated_attrib = get_temp_file('generated.html') args = [about_dir, generated_attrib] options = None genattrib_command_tester(args, options) - expected = open('about_code_tool/tests/testdata/genattrib/basic.html').read() result = open(generated_attrib).read() - self.assertEqual(expected, result) + expected = [ + 'ElasticSearch 1.6.0', + 'bootstrap 2.3.2', + 'djangosnippets.org_2413 2011-04-12', + 'Annotator 1.2.10', + 'component_4', + ] + for ex in expected: + self.assertTrue(ex in result) def test_genattrib_from_zipped_dir(self): - self.maxDiff =None + self.maxDiff = None about_dir = 'about_code_tool/tests/testdata/genattrib/zipped_about.zip' generated_attrib = get_temp_file('generated.html') args = [about_dir, generated_attrib] options = None genattrib_command_tester(args, options) - expected = open('about_code_tool/tests/testdata/genattrib/zipped_about.html').read() result = open(generated_attrib).read() - self.assertEqual(expected, result) + expected = [ + 'ElasticSearch 1.6.0', + 'bootstrap 2.3.2', + 'djangosnippets.org_2413 2011-04-12', + 'Annotator 1.2.10', + 'python-memcached 1.53', + 'component_94', + 'Groovy 2.4.0', + ] + for ex in expected: + self.assertTrue(ex in result) def genattrib_command_tester(args, options): diff --git a/about_code_tool/tests/testdata/genattrib/basic.html b/about_code_tool/tests/testdata/genattrib/basic.html deleted file mode 100644 index 80b09a83..00000000 --- a/about_code_tool/tests/testdata/genattrib/basic.html +++ /dev/null @@ -1,771 +0,0 @@ - - - - - Open Source Software Information - - - -

OPEN SOURCE SOFTWARE INFORMATION

-
- - - -
- - -
-

ElasticSearch - 1.6.0 -

- - -
Copyright 2009-2014 Elasticsearch
- - -
Elasticsearch
-Copyright 2009-2015 Elasticsearch
-
-This product includes software developed by The Apache Software
-Foundation (http://www.apache.org/).
-
- - - -
-                                 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.
-
- - -
- -
-

bootstrap - 2.3.2 -

- - -
Copyright 2012 Twitter, Inc.
- - - - -
                              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
-
- - -
- -
-

ElasticSearch - 1.6.0 -

- - -
Copyright 2009-2015 Elasticsearch
- - -
Elasticsearch
-Copyright 2009-2015 Elasticsearch
-
-This product includes software developed by The Apache Software
-Foundation (http://www.apache.org/).
-
- - - -
-                                 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.
-
- - -
- -
-

djangosnippets.org_2413 - 2011-04-12 -

- - - - - -
Terms of Service
-We hate legal-speak as much as anybody, but on a site which is geared toward sharing code there has to be at least a little bit of it, so here goes:
-
-By creating an account here you agree to three things:
-
-That you will only post code which you wrote yourself and that you have the legal right to release under these terms.
-That you grant any third party who sees the code you post a royalty-free, non-exclusive license to copy and distribute that code and to make and distribute derivative works based on that code. You may include license terms in snippets you post, if you wish to use a particular license (such as the BSD license or GNU GPL), but that license must permit royalty-free copying, distribution and modification of the code to which it is applied.
-That if you post code of which you are not the author or for which you do not have the legal right to distribute according to these terms, you will indemnify and hold harmless the operators of this site and any third parties who are exposed to liability as a result of your actions.
-If you can't legally agree to these terms, or don't want to, you cannot create an account here.
- - -
- -
-

Annotator - 1.2.10 -

- - - - - -
# Annotator licensing terms
-
-Annotator is free software, and you may use it under the terms of either the
-MIT or the GNU GPL licenses:
-
-## GNU GPLv3
-
-You can redistribute this program 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. See LICENSE-GPL, or, if this file is missing,
-<http://www.gnu.org/licenses/>.
-
-## MIT
-
-You may use the software under the terms of the MIT license, which can be
-found in LICENSE-MIT, or, if this file is missing,
-<http://www.opensource.org/licenses/mit-license>.
-
- - -
- -
- -

Common Licenses Used in This Product

- - - - -

End

- - \ No newline at end of file diff --git a/about_code_tool/tests/testdata/genattrib/zipped_about.html b/about_code_tool/tests/testdata/genattrib/zipped_about.html deleted file mode 100644 index 05759b89..00000000 --- a/about_code_tool/tests/testdata/genattrib/zipped_about.html +++ /dev/null @@ -1,19263 +0,0 @@ - - - - - Open Source Software Information - - - -

OPEN SOURCE SOFTWARE INFORMATION

-
- -

For instructions on how to obtain a copy of any source code - being made publicly available by Starship Technology related to - software used in this product you may send your request in - writing to:

- - Starship Technology LLC.
- OSS Management
- 7829 Montague Expressway
- Santa Clara, CA 95031
- USA
- -

The Starship Technology website www.dejacode.com also - contains information regarding Starship Technology's use of open - source. Starship Technology has created the www.dejacode.org to - serve as a portal for interaction with the software - community-at-large.

- -

This document contains additional information regarding - licenses, acknowledgments and required copyright notices for - open source packages used in this Starship Technology product. - This Starship Technology product contains the following open - source software components

- -
- -
- -

Underscore.string 2.3.3

- -

html5shiv 3.7.0

- -

ElasticSearch 1.6.0

- -

spin.js 1.3.2

- -

bootstrap 2.3.2

- -

RequireJS 2.1.15

- -

DataTables FixedHeader 2.0.10-dev

- -

jQuery treetable 3.2.0

- -

text 2.0.10

- -

Annotator 1.2.10

- -

mod_wsgi 3.4

- -

Underscore.js 1.6.0

- -

jsPlumb 1.7.2

- -

ElasticSearch 1.6.0

- -

Ember.js 1.12.1

- -

djangosnippets.org_2413 2011-04-12

- -

jQuery 1.11.2

- -

Font Awesome 3.2.0

- -

Django Debug Toolbar 1.3.2

- -

django-adminactions 0.7

- -

Django REST framework 3.2.3

- -

Pygments 2.0.2

- -

Selenium 2.47.3

- -

pytz 2015.6

- -

wheel 0.26.0

- -

PyYAML 3.11

- -

python-memcached 1.53

- -

virtualenv 12.0.5

- -

ABOUT tool 0.9.0

- -

Beautiful Soup 4.4.0

- -

Django 1.8.4

- -

anyjson 0.3.3

- -

pyreadline 2.0

- -

gnureadline 6.3.3

- -

urllib3 1.12

- -

pycrypto 2.6

- -

python-social-auth 0.2.12

- -

psycopg2 2.5.4

- -

funcparserlib 0.3.6

- -

python-ldap 2.4.20

- -

ecdsa 0.13

- -

django-filter 0.11.0

- -

pycrypto 2.6.1

- -

PyJWT 1.4.0

- -

psycopg2 2.6.1

- -

django-crispy-forms 1.5.2

- -

unicodecsv 0.14.0

- -

django-haystack 2.4.0

- -

mock 1.0.1

- -

django-debreach 1.2.1

- -

six 1.9.0

- -

setuptools 18.3.2

- -

django-auth-ldap 1.2.6

- -

python-ldap 2.4.20

- -

certifi 2015.9.6.2

- -

model_mommy 1.2.5

- -

paramiko 1.15.2

- -

celery 3.1.18

- -

mockldap 0.2.5

- -

Fabric 1.10.2

- -

python-dateutil 2.4.2

- -

pycrypto 2.6.1

- -

billiard 3.3.0.20

- -

oauthlib 1.0.3

- -

kombu 3.0.26

- -

django-reversion 1.8.7

- -

django-extensions 1.5.7

- -

requests 2.7.0

- -

django-haystack-panel 0.2.1

- -

Supervisor 3.1.3

- -

Whoosh 2.7.0

- -

django-tastypie 0.12.2

- -

python-mimeparse 0.1.4

- -

amqp 1.4.6

- -

requests-oauthlib 0.5.0

- -

Grappelli 2.7.1

- -

sqlparse 0.1.16

- -

elasticsearch-py 1.6.0

- -

virtualenv 12.0.5

- -

meld3 1.0.2

- -

pyaml 15.8.2

- -

python-openid 2.2.5

- -

pip 7.1.2

- -

natsort 4.0.3

- -

wincertstore 0.2

- -

JNA 4.1.0

- -

Sigar 1.6.4

- -

ASM Commons 4.1

- -

Apache Log4J 1.2.17

- -

JTS Topology Suite 1.13

- -

ANTLR runtime 3.5

- -

Apache Lucene 4.10.4

- -

ASM 4.1

- -

Spatial4J 0.4.1

- -

Groovy 2.4.0

- -
- -
- - -
-

Underscore.string - 2.3.3 -

- - - - - -
Copyright (c) 2011 Esa-Matti Suuronen esa-matti@suuronen.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.
- - -
- -
-

html5shiv - 3.7.0 -

- - - -
/*
- HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
-*/
- - - - -
- -
-

ElasticSearch - 1.6.0 -

- - -
Copyright 2009-2014 Elasticsearch
- - -
Elasticsearch
-Copyright 2009-2015 Elasticsearch
-
-This product includes software developed by The Apache Software
-Foundation (http://www.apache.org/).
-
- - - -
-                                 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.
-
- - -
- -
-

spin.js - 1.3.2 -

- - - - - -
The MIT License
-
-Copyright (c) 2011 Felix Gnass [fgnass at neteye dot de]
-
-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.
- - -
- -
-

bootstrap - 2.3.2 -

- - -
Copyright 2012 Twitter, Inc.
- - - - -
                              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
-
- - -
- -
-

RequireJS - 2.1.15 -

- - - - - -
RequireJS is released under two licenses: new BSD, and MIT. You may pick the
-license that best suits your development needs. The text of both licenses are
-provided below.
-
-
-The "New" BSD License:
-----------------------
-
-Copyright (c) 2010-2014, The Dojo Foundation
-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 Dojo Foundation 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.
-
-
-
-MIT License
------------
-
-Copyright (c) 2010-2014, The Dojo Foundation
-
-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.
- - -
- -
-

DataTables FixedHeader - 2.0.10-dev -

- - -
Copyright 2008-2012 Allan Jardine, all rights reserved.
- - -
/*
- * File:        FixedHeader.nightly.min.js
- * Version:     2.1.0-dev
- * Author:      Allan Jardine (www.sprymedia.co.uk)
- * Info:        www.datatables.net
- *
- * Copyright 2008-2012 Allan Jardine, all rights reserved.
- *
- * This source file is free software, under either the GPL v2 license or a
- * BSD style license, available at:
- *   http://datatables.net/license_gpl2
- *   http://datatables.net/license_bsd
- *
- * This source file 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 license files for details.
- */
- - - - -
- -
-

jQuery treetable - 3.2.0 -

- - -
This plugin is released under both the MIT and the GPLv2 license by Ludo van den Boom.
- - - - -
This plugin is released under both the MIT and the GPLv2 license by Ludo van den Boom.
-
-Copyright (c) 2013 Ludo van den Boom, http://ludovandenboom.com
-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.
-
-GNU GENERAL PUBLIC LICENSE
-Version 2, June 1991
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-Everyone is permitted to copy and distribute verbatim copies
-of this license document, but changing it is not allowed.
-Preamble
-The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.) 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
-this service 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 make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. 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.
-We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-The precise terms and conditions for copying, distribution and
-modification follow.
-GNU GENERAL PUBLIC LICENSE
-TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-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 Program or any portion
-of it, thus forming a work based on the Program, 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) You must cause the modified files to carry prominent notices
-stating that you changed the files and the date of any change.
-b) You must cause any work that you distribute or publish, that in
-whole or in part contains or is derived from the Program or any
-part thereof, to be licensed as a whole at no charge to all third
-parties under the terms of this License.
-c) If the modified program normally reads commands interactively
-when run, you must cause it, when started running for such
-interactive use in the most ordinary way, to print or display an
-announcement including an appropriate copyright notice and a
-notice that there is no warranty (or else, saying that you provide
-a warranty) and that users may redistribute the program under
-these conditions, and telling the user how to view a copy of this
-License. (Exception: if the Program itself is interactive but
-does not normally print such an announcement, your work based on
-the Program is not required to print an announcement.)
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-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 Program, 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 Program.
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-a) 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; or,
-b) Accompany it with a written offer, valid for at least three
-years, to give any third party, for a charge no more than your
-cost of physically performing source distribution, a complete
-machine-readable copy of the corresponding source code, to be
-distributed under the terms of Sections 1 and 2 above on a medium
-customarily used for software interchange; or,
-c) Accompany it with the information you received as to the offer
-to distribute corresponding source code. (This alternative is
-allowed only for noncommercial distribution and only if you
-received the program in object code or executable form with such
-an offer, in accord with Subsection b above.)
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, 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 executable. However, as a
-special exception, the source code 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.
-If distribution of executable or 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 counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program 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.
-5. 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 Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program 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 to
-this License.
-7. 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 Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program 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 Program.
-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.
-8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program 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.
-9. The Free Software Foundation may publish revised and/or new versions
-of the 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 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 Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, 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
-11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
-12. 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 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.
-
-
- - -
- -
-

text - 2.0.10 -

- - - - - -
RequireJS is released under two licenses: new BSD, and MIT. You may pick the
-license that best suits your development needs. The text of both licenses are
-provided below.
-
-
-The "New" BSD License:
-----------------------
-
-Copyright (c) 2010-2011, The Dojo Foundation
-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 Dojo Foundation 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.
-
-
-
-MIT License
------------
-
-Copyright (c) 2010-2011, The Dojo Foundation
-
-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.
- - -
- -
-

Annotator - 1.2.10 -

- - - - - -
# Annotator licensing terms
-
-Annotator is free software, and you may use it under the terms of either the
-MIT or the GNU GPL licenses:
-
-## GNU GPLv3
-
-You can redistribute this program 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. See LICENSE-GPL, or, if this file is missing,
-<http://www.gnu.org/licenses/>.
-
-## MIT
-
-You may use the software under the terms of the MIT license, which can be
-found in LICENSE-MIT, or, if this file is missing,
-<http://www.opensource.org/licenses/mit-license>.
-
- - -
- -
-

mod_wsgi - 3.4 -

- - - - - -
-                                 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.
-
- - -
- -
-

Underscore.js - 1.6.0 -

- - -
(c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
- - - - -
Copyright (c) 2009-2014 Jeremy Ashkenas, DocumentCloud and Investigative
-Reporters & Editors
-
-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.
- - -
- -
-

jsPlumb - 1.7.2 -

- - - - - -
        GNU GENERAL PUBLIC LICENSE
-           Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-          Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users.  This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it.  (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.)  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
-this service 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 make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have.  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.
-
-  We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-  Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software.  If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-  Finally, any free program is threatened constantly by software
-patents.  We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary.  To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-        GNU GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License.  The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language.  (Hereinafter, translation is included without limitation in
-the term "modification".)  Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-  1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-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 Program or any portion
-of it, thus forming a work based on the Program, 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) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any
-    part thereof, to be licensed as a whole at no charge to all third
-    parties under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a
-    notice that there is no warranty (or else, saying that you provide
-    a warranty) and that users may redistribute the program under
-    these conditions, and telling the user how to view a copy of this
-    License.  (Exception: if the Program itself is interactive but
-    does not normally print such an announcement, your work based on
-    the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Program,
-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 Program, 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 Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) 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; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your
-    cost of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer
-    to distribute corresponding source code.  (This alternative is
-    allowed only for noncommercial distribution and only if you
-    received the program in object code or executable form with such
-    an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it.  For an executable work, 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 executable.  However, as a
-special exception, the source code 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.
-
-If distribution of executable or 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 counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License.  Any attempt
-otherwise to copy, modify, sublicense or distribute the Program 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.
-
-  5. 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 Program or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-  6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program 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 to
-this License.
-
-  7. 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 Program at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Program 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 Program.
-
-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.
-
-  8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program 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.
-
-  9. The Free Software Foundation may publish revised and/or new versions
-of the 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 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 Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-  10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, 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
-
-  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
-
-  12. 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 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.
-
-
-
-Copyright (c) 2010 - 2014 jsPlumb, http://jsplumbtoolkit.com/
-
-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.
- - -
- -
-

ElasticSearch - 1.6.0 -

- - -
Copyright 2009-2015 Elasticsearch
- - -
Elasticsearch
-Copyright 2009-2015 Elasticsearch
-
-This product includes software developed by The Apache Software
-Foundation (http://www.apache.org/).
-
- - - -
-                                 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.
-
- - -
- -
-

Ember.js - 1.12.1 -

- - -
Copyright (c) 2015 Yehuda Katz, Tom Dale and Ember.js contributors
- - - - -
Copyright (c) 2015 Yehuda Katz, Tom Dale and Ember.js 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.
- - -
- -
-

djangosnippets.org_2413 - 2011-04-12 -

- - - - - -
Terms of Service
-We hate legal-speak as much as anybody, but on a site which is geared toward sharing code there has to be at least a little bit of it, so here goes:
-
-By creating an account here you agree to three things:
-
-That you will only post code which you wrote yourself and that you have the legal right to release under these terms.
-That you grant any third party who sees the code you post a royalty-free, non-exclusive license to copy and distribute that code and to make and distribute derivative works based on that code. You may include license terms in snippets you post, if you wish to use a particular license (such as the BSD license or GNU GPL), but that license must permit royalty-free copying, distribution and modification of the code to which it is applied.
-That if you post code of which you are not the author or for which you do not have the legal right to distribute according to these terms, you will indemnify and hold harmless the operators of this site and any third parties who are exposed to liability as a result of your actions.
-If you can't legally agree to these terms, or don't want to, you cannot create an account here.
- - -
- -
-

jQuery - 1.11.2 -

- - -
Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
- - - - -
Copyright 2014 jQuery Foundation and other contributors
-http://jquery.com/
-
-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.
- - -
- -
-

Font Awesome - 3.2.0 -

- - - -
The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL.
-Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - http://opensource.org/licenses/mit-license.html.
-The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
-Attribution is no longer required in Font Awesome 3.0, but much appreciated: Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome.
-
- - - - -
- -
-

Django Debug Toolbar - 1.3.2 -

- - -
Copyright (c) Rob Hudson and individual contributors.
- - - - -
Copyright (c) Rob Hudson and individual 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 Django 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.
- - -
- -
-

django-adminactions - 0.7 -

- - -
Copyright (c) 2010, Stefano Apostolico (s.apostolico@gmail.com)
- - - - -
* Copyright (c) 2010, Stefano Apostolico (s.apostolico@gmail.com)
-* Dual licensed under the MIT or GPL Version 2 licenses.
-
-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.
-
-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.
-
- - -
- -
-

Django REST framework - 3.2.3 -

- - -
Copyright (c) 2011-2014, Tom Christie
- - - - -
Copyright (c) 2011-2014, Tom Christie
-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.
- - -
- -
-

Pygments - 2.0.2 -

- - -
Copyright (c) 2006-2014 by the respective authors (see AUTHORS file).
- - - - -
Copyright (c) 2006-2014 by the respective authors (see AUTHORS file).
-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
-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.
- - -
- -
-

Selenium - 2.47.3 -

- - -
Copyright 2011 Software Freedom Conservancy.
- - -
Copyright 2011 Software Freedom Conservancy.
-
-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.
-
- - - -
-                                 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
-
- - -
- -
-

pytz - 2015.6 -

- - - - - -
Copyright (c) 2003-2009 Stuart Bishop <stuart@stuartbishop.net>
-
-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.
-
- - -
- -
-

wheel - 0.26.0 -

- - -
copyright (c) 2012-2014 Daniel Holth  and contributors.
- - - - -
"wheel" copyright (c) 2012-2014 Daniel Holth <dholth@fastmail.fm> and
-contributors.
-
-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.
-
- - -
- -
-

PyYAML - 3.11 -

- - -
Copyright (c) 2006 Kirill Simonov
- - - - -
Copyright (c) 2006 Kirill Simonov
-
-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-memcached - 1.53 -

- - - - - -
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)
-
-    0.9.0 thru 1.2              1991-1995   CWI         yes
-    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
-    1.6             1.5.2       2000        CNRI        no
-    2.0             1.6         2000        BeOpen.com  no
-    1.6.1           1.6         2001        CNRI        yes (2)
-    2.1             2.0+1.6.1   2001        PSF         no
-    2.0.1           2.0+1.6.1   2001        PSF         yes
-    2.1.1           2.1+2.0.1   2001        PSF         yes
-    2.2             2.1.1       2001        PSF         yes
-    2.1.2           2.1.1       2002        PSF         yes
-    2.1.3           2.1.2       2002        PSF         yes
-    2.2.1           2.2         2002        PSF         yes
-    2.2.2           2.2.1       2002        PSF         yes
-    2.2.3           2.2.2       2003        PSF         yes
-    2.3             2.2.2       2002-2003   PSF         yes
-    2.3.1           2.3         2002-2003   PSF         yes
-    2.3.2           2.3.1       2002-2003   PSF         yes
-    2.3.3           2.3.2       2002-2003   PSF         yes
-    2.3.4           2.3.3       2004        PSF         yes
-    2.3.5           2.3.4       2005        PSF         yes
-    2.4             2.3         2004        PSF         yes
-    2.4.1           2.4         2005        PSF         yes
-    2.4.2           2.4.1       2005        PSF         yes
-    2.4.3           2.4.2       2006        PSF         yes
-    2.4.4           2.4.3       2006        PSF         yes
-    2.5             2.4         2006        PSF         yes
-    2.5.1           2.5         2007        PSF         yes
-    2.5.2           2.5.2       2008        PSF         yes
-
-Footnotes:
-
-(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 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.
-
-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-2005 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, Cambridge, UK.
-jseward@acm.org
-bzip2/libbzip2 version 1.0.3 of 15 February 2005
-
-
-This copy of Python includes a copy of db, which is licensed under the following terms:
-
-/*-
- * $Id: LICENSE,v 12.1 2005/06/16 20:20:10 bostic Exp $
- */
-
-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 Sleepycat Software by email at info@sleepycat.com, or on
-the Web at http://www.sleepycat.com.
-
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-/*
- * Copyright (c) 1990-2005
- *	Sleepycat Software.  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 SLEEPYCAT SOFTWARE ``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 SLEEPYCAT SOFTWARE
- * 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.
- */
-
-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-2005 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 (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. 
-
-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 (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.
-
- - -
- -
-

virtualenv - 12.0.5 -

- - -
Copyright (c) 2007 Ian Bicking and Contributors
-Copyright (c) 2009 Ian Bicking, The Open Planning Project
-Copyright (c) 2011-2015 The virtualenv developers
- - - - -
Copyright (c) 2007 Ian Bicking and Contributors
-Copyright (c) 2009 Ian Bicking, The Open Planning Project
-Copyright (c) 2011-2014 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.
-
- - -
- -
-

ABOUT tool - 0.9.0 -

- - -
Copyright (c) 2014 nexB, Inc.
- - -
 Copyright (c) 2014 nexB, Inc. http://www.nexb.com/ - All rights reserved.
-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.
- - - -
-                                 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
-
- - -
- -
-

Beautiful Soup - 4.4.0 -

- - - - - -
Beautiful Soup is made available under the MIT license:
-
- Copyright (c) 2004-2012 Leonard Richardson
-
- 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, DAMMIT.
-
-Beautiful Soup incorporates code from the html5lib library, which is
-also made available under the MIT license.
-
- - -
- -
-

Django - 1.8.4 -

- - - - - -
Copyright (c) Django Software Foundation and individual 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 Django 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.
-
- - -
- -
-

anyjson - 0.3.3 -

- - - - - -
This software is licensed under the ``New BSD License``:
-
-Copyright (c) 2009, by the 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 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.
- - -
- -
-

pyreadline - 2.0 -

- - -
Copyright (c) 2006 Jorgen Stenarson .
-Copyright (c) 2003-2006 Gary Bishop
-Copyright (c) 2003-2006 Jack Trainor
- - - - -
pyreadline copyright and licensing notes
-========================================
-
-Unless indicated otherwise, files in this project are covered by a BSD-type
-license, included below.
-
-Individual authors are the holders of the copyright for their code and are
-listed in each file.
-
-Some files may be licensed under different conditions. Ultimately each file 
-indicates clearly the conditions under which its author/authors have 
-decided to publish the code.
-
-
-pyreadline license
-------------------
-
-pyreadline is released under a BSD-type license.
-
-Copyright (c) 2006 J�rgen Stenarson <jorgen.stenarson@bostream.nu>.
-
-Copyright (c) 2003-2006 Gary Bishop
-
-Copyright (c) 2003-2006 Jack Trainor
-
-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 the copyright holders nor the names of any
-     contributors to this software 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.
-
- - -
- -
-

gnureadline - 6.3.3 -

- - - - - -
                    GNU GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- 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.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    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 <http://www.gnu.org/licenses/>.
-
-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:
-
-    <program>  Copyright (C) <year>  <name of author>
-    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
-<http://www.gnu.org/licenses/>.
-
-  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
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
-
- - -
- -
-

urllib3 - 1.12 -

- - - - - -
This is the MIT license: http://www.opensource.org/licenses/mit-license.php
-
-Copyright 2008-2013 Andrey Petrov and contributors (see CONTRIBUTORS.txt)
-
-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.
-
- - -
- -
-

pycrypto - 2.6 -

- - - - - -
Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"):
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Previously, the copyright and/or licensing status of the Python
-Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous.  The
-original intention of Andrew M. Kuchling and other contributors has
-been to dedicate PyCrypto to the public domain, but that intention was
-not necessarily made clear in the original disclaimer (see
-LEGAL/copy/LICENSE.orig).
-
-Additionally, some files within PyCrypto had specified their own
-licenses that differed from the PyCrypto license itself.  For example,
-the original RIPEMD.c module simply had a copyright statement and
-warranty disclaimer, without clearly specifying any license terms.
-(An updated version on the author's website came with a license that
-contained a GPL-incompatible advertising clause.)
-
-To rectify this situation for PyCrypto 2.1, the following steps have
-been taken:
-
- 1. Obtaining explicit permission from the original contributors to
-    dedicate their contributions to the public domain if they have not
-    already done so.  (See the "LEGAL/copy/stmts" directory for
-    contributors' statements.)
-
- 2. Replacing some modules with clearly-licensed code from other
-    sources (e.g. the DES and DES3 modules were replaced with new ones
-    based on Tom St. Denis's public-domain LibTomCrypt library.)
-
- 3. Replacing some modules with code written from scratch (e.g. the
-    RIPEMD and Blowfish modules were re-implemented from their
-    respective algorithm specifications without reference to the old
-    implementations).
-
- 4. Removing some modules altogether without replacing them.
-
-To the best of our knowledge, with the exceptions noted below or
-within the files themselves, the files that constitute PyCrypto are in
-the public domain.  Most are distributed with the following notice:
-
-  The contents of this file are dedicated to the public domain.  To
-  the extent that dedication to the public domain is not available,
-  everyone is granted a worldwide, perpetual, royalty-free,
-  non-exclusive license to exercise all rights associated with the
-  contents of this file for any purpose whatsoever.
-  No rights are reserved.
-
-  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.
-
-Exception:
-
- - Portions of HMAC.py and setup.py are derived from Python 2.2, and
-   are therefore Copyright (c) 2001, 2002, 2003 Python Software
-   Foundation (All Rights Reserved).  They are licensed by the PSF
-   under the terms of the Python 2.2 license.  (See the file
-   LEGAL/copy/LICENSE.python-2.2 for details.)
-
-EXPORT RESTRICTIONS:
-
-Note that the export or re-export of cryptographic software and/or
-source code may be subject to regulation in your jurisdiction.
-
-
-
-==================================================================
-LICENSE.python-2.2
-LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
-LICENSE.libtom  LICENSE file from LibTomCrypt
-stmts/          Statements by contributors
-
-==================================================================
-LICENSE.python-2.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)
-
-    0.9.0 thru 1.2              1991-1995   CWI         yes
-    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
-    1.6             1.5.2       2000        CNRI        no
-    2.0             1.6         2000        BeOpen.com  no
-    1.6.1           1.6         2001        CNRI        no
-    2.1             2.0+1.6.1   2001        PSF         no
-    2.0.1           2.0+1.6.1   2001        PSF         yes
-    2.1.1           2.1+2.0.1   2001        PSF         yes
-    2.2             2.1.1       2001        PSF         yes
-    2.1.2           2.1.1       2002        PSF         yes
-    2.1.3           2.1.2       2002        PSF         yes
-    2.2.1           2.2         2002        PSF         yes
-    2.2.2           2.2.1       2002        PSF         yes
-    2.2.3           2.2.2       2003        PSF         yes
-
-Footnotes:
-
-(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.
-
-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
-===============================================================
-
-PSF LICENSE AGREEMENT FOR PYTHON 2.2.3
---------------------------------------
-
-1. This LICENSE AGREEMENT is between the Python Software Foundation
-("PSF"), and the Individual or Organization ("Licensee") accessing and
-otherwise using Python 2.2.3 software 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 2.2.3
-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 Python Software Foundation; All Rights Reserved" are
-retained in Python 2.2.3 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 2.2.3 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 2.2.3.
-
-4. PSF is making Python 2.2.3 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 2.2.3 WILL NOT
-INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
-2.2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
-A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.2.3,
-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 2.2.3, 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.
-
-
-===================================================================
-LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
-===================================================================
-Distribute and use freely; there are no restrictions on further
-dissemination and usage except those imposed by the laws of your
-country of residence.  This software is provided "as is" without
-warranty of fitness for use or suitability for any purpose, express
-or implied. Use at your own risk or not at all.
-===================================================================
-
-Incorporating the code into commercial products is permitted; you do
-not have to make source available or contribute your changes back
-(though that would be nice).
-
---amk                                                             (www.amk.ca)
-
-
-
-LICENSE.libtom  LICENSE file from LibTomCrypt
-===================================================================
-LibTomCrypt is public domain.  As should all quality software be.
-
-Tom St Denis
-
-
-
-Statements by contributors
-===================================================================
-From dlitz@dlitz.net Sun Nov 23 00:17:22 2008
-Date: Sun, 23 Nov 2008 00:17:22 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: "A. M. Kuchling" <amk@amk.ca>
-Subject: PyCrypto license clarification
-Message-ID: <20081123051722.GA29253@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: multipart/signed; micalg=pgp-sha1;
-    protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4"
-Content-Disposition: inline
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3461
-Lines: 78
-
-
---YiEDa0DAkWCtVeE4
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-Content-Transfer-Encoding: quoted-printable
-
-Hi Andrew,
-
-People often ask me what license PyCrypto is covered by, if it's=20
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them. =20
-The text in the current LICENSE file (quoted below) is not entirely clear=
-=20
-on the point of whether distributing modified versions is allowed.  (It=20
-says "distribute and use", but not "modify".)
-
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-     Distribute and use freely; there are no restrictions on further
-     dissemination and usage except those imposed by the laws of your
-     country of residence.  This software is provided "as is" without
-     warranty of fitness for use or suitability for any purpose, express
-     or implied. Use at your own risk or not at all.
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-     Incorporating the code into commercial products is permitted; you do
-     not have to make source available or contribute your changes back
-     (though that would be nice).
-
-     --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I'd like to take steps to move toward a=20
-clearer licensing regime.  I'm asking as many copyright holders as I can=20
-find, starting with you, if I can release PyCrypto under something clearer=
-=20
-and more standard.  Below, I have quoted a public domain dedication that=20
-was recommended in _Intellectual Property and Open Source: A Practical=20
-Guide to Protecting Code_, by Van Lindberg.
-
-May I, on your behalf, dedicate to the public domain your considerable=20
-contributions to PyCrypto, with the following notice?
-
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-     The contents of this file are dedicated to the public domain.  To the
-     extent that dedication to the public domain is not available, everyone
-     is granted a worldwide, perpetual, royalty-free, non-exclusive license
-     to exercise all rights associated with the contents of this file for
-     any purpose whatsoever.  No rights are reserved.
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-Regards,
-  - Dwayne
-
---=20
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
---YiEDa0DAkWCtVeE4
-Content-Type: application/pgp-signature; name="signature.asc"
-Content-Description: Digital signature
-Content-Disposition: inline
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.5 (GNU/Linux)
-
-iEYEARECAAYFAkko52IACgkQHBG4d+eAS0XPPQCfcyQ2DdAXKg9N7Z+jeSFFD5EZ
-yloAn33a3ZjkteyJaTbzEqImOEW8JGpf
-=aBEW
------END PGP SIGNATURE-----
-
---YiEDa0DAkWCtVeE4--
-
-From amk@amk.ca Sun Nov 23 07:51:59 2008
-X-Maildir-Dup-Checked: Yes
-Return-Path: <amk@amk.ca>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 5C2C75047D
-    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 07:51:59 -0500 (EST)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id D632D10111
-    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
-Received: (vmailmgr-postfix 12026 invoked by uid 1003); 23 Nov 2008 06:51:58 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (goedel.dlitz.net: domain of amk@amk.ca does not designate permitted sender hosts)
-Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7])
-    by goedel.dlitz.net (Postfix) with ESMTP id 97DC710105
-    for <dlitz@dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
-Received: (qmail 3992 invoked from network); 23 Nov 2008 12:51:52 -0000
-Received: from dsl092-163-165.wdc2.dsl.speakeasy.net (HELO localhost) (akuchling@[66.92.163.165])
-          (envelope-sender <amk@amk.ca>)
-          by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP
-          for <dlitz@dlitz.net>; 23 Nov 2008 12:51:52 -0000
-Date: Sun, 23 Nov 2008 07:51:34 -0500
-From: "A.M. Kuchling" <amk@amk.ca>
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Subject: Re: PyCrypto license clarification
-Message-ID: <20081123125134.GA21239@amk.local>
-Reply-To: amk@amk.ca
-References: <20081123051722.GA29253@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii
-Content-Disposition: inline
-In-Reply-To: <20081123051722.GA29253@rivest.dlitz.net>
-User-Agent: Mutt/1.5.13 (2006-08-11)
-Status: RO
-Content-Length: 537
-Lines: 15
-
-> People often ask me what license PyCrypto is covered by, if it's 
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-> The text in the current LICENSE file (quoted below) is not entirely clear 
-> on the point of whether distributing modified versions is allowed.  (It 
-> says "distribute and use", but not "modify".)
-
-The intention is that it be public domain.
-
-> May I, on your behalf, dedicate to the public domain your considerable 
-> contributions to PyCrypto, with the following notice?
-
-You may.
-
---amk
-
-
-================================================
-From dlitz@dlitz.net Sat Feb 28 21:45:09 2009
-Date: Sat, 28 Feb 2009 21:45:09 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Barry A Warsaw <barry@python.org>
-Subject: PyCrypto license clarification
-Message-ID: <20090301024509.GA13195@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2535
-
-Hi Barry,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am 
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's 
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-The text in the current LICENSE file (quoted below) is not entirely clear 
-on the point of whether distributing modified versions is allowed.  (It 
-says "distribute and use", but not "modify".)
-
-  ===================================================================
-  Distribute and use freely; there are no restrictions on further
-  dissemination and usage except those imposed by the laws of your
-  country of residence.  This software is provided "as is" without
-  warranty of fitness for use or suitability for any purpose, express
-  or implied. Use at your own risk or not at all.
-  ===================================================================
-
-  Incorporating the code into commercial products is permitted; you do
-  not have to make source available or contribute your changes back
-  (though that would be nice).
-
-  --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a 
-clearer licensing regime.  I am asking as many copyright holders as I can 
-find if I can release PyCrypto under something clearer and more standard.  
-Below, I have quoted a public domain dedication that was recommended in 
-_Intellectual Property and Open Source: A Practical Guide to Protecting 
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
-Pointer, and Wim Lewis, and they have all approved the following dedication 
-for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your 
-behalf, dedicate to the public domain all your contributions to PyCrypto, 
-with the following notice?
-
-  =======================================================================
-  The contents of this file are dedicated to the public domain.  To the
-  extent that dedication to the public domain is not available, everyone
-  is granted a worldwide, perpetual, royalty-free, non-exclusive license
-  to exercise all rights associated with the contents of this file for
-  any purpose whatsoever.  No rights are reserved.
-  =======================================================================
-
-Regards,
-  - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-     Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From barry@python.org Mon Mar  2 11:29:39 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <barry@python.org>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 6E01AC6640B
-    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 11:29:39 -0500 (EST)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 0644E1007A
-    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 10:29:39 -0600 (CST)
-Received: (vmailmgr-postfix 8668 invoked by uid 1003);  2 Mar 2009 10:29:39 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (python.org: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="barry@python.org"; helo=mail.wooz.org; client-ip=216.15.33.230
-Received: from mail.wooz.org (216-15-33-230.c3-0.slvr-ubr2.lnh-slvr.md.static.cable.rcn.com [216.15.33.230])
-    by goedel.dlitz.net (Postfix) with ESMTP id CCEA110073
-    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 10:29:38 -0600 (CST)
-Received: from snowdog.wooz.org (snowdog.wooz.org [192.168.11.202])
-    by mail.wooz.org (Postfix) with ESMTPSA id ACE30E3C9F
-    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 11:29:35 -0500 (EST)
-Message-Id: <09BF1A39-B015-4820-97A3-8642490C8254@python.org>
-From: Barry Warsaw <barry@python.org>
-To: Dwayne C. Litzenberger <dlitz@dlitz.net>
-In-Reply-To: <20090301024509.GA13195@rivest.dlitz.net>
-Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
-Content-Transfer-Encoding: quoted-printable
-Mime-Version: 1.0 (Apple Message framework v930.3)
-Subject: Re: PyCrypto license clarification
-Date: Mon, 2 Mar 2009 11:29:34 -0500
-References: <20090301024509.GA13195@rivest.dlitz.net>
-X-Pgp-Agent: GPGMail d55 (v55, Leopard)
-X-Mailer: Apple Mail (2.930.3)
-Status: RO
-Content-Length: 869
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On Feb 28, 2009, at 9:45 PM, Dwayne C. Litzenberger wrote:
-
-> I am the new maintainer of the Python Cryptography Toolkit, and I am =20=
-
-> working on a new release at http://www.pycrypto.org/.
-
-Great!  I'm glad to see someone taking up the mantle of this important =20=
-
-Python library.
-
-> I understand that you have made contributions to PyCrypto.  May I, =20
-> on your behalf, dedicate to the public domain all your contributions =20=
-
-> to PyCrypto, with the following notice?
-
-Absolutely yes.
-
-Cheers,
-Barry
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.9 (Darwin)
-
-iQCVAwUBSawJbnEjvBPtnXfVAQLZjgP/ecG+JdZwNvPJRfsa6rhY6+MHLDHI6agk
-evkJnSJQAcVHlZnVlVeR5IXgvDUMakZjU4SOV7MqkhsKA9lIet7PaD9VSYgn3ra5
-gElwI2DQDoOy5GExXMm74gqrrb1PCCbCRmpaYNo+DZohwHkeFBjbwDRA3wItOrH7
-SK4w9VBJtfY=3D
-=3DQduY
------END PGP SIGNATURE-----
-
-
-
-===================================================
-From dlitz@dlitz.net Sat Feb 28 23:24:14 2009
-Date: Sat, 28 Feb 2009 23:24:14 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Jeethu Rao <jeethurao@gmail.com>
-Subject: PyCrypto license clarification
-Message-ID: <20090301042414.GA15122@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2513
-
-Hi Jeethu,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am 
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's 
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-The text in the current LICENSE file (quoted below) is not entirely clear 
-on the point of whether distributing modified versions is allowed.  (It 
-says "distribute and use", but not "modify".)
-
- ===================================================================
- Distribute and use freely; there are no restrictions on further
- dissemination and usage except those imposed by the laws of your
- country of residence.  This software is provided "as is" without
- warranty of fitness for use or suitability for any purpose, express
- or implied. Use at your own risk or not at all.
- ===================================================================
-
- Incorporating the code into commercial products is permitted; you do
- not have to make source available or contribute your changes back
- (though that would be nice).
-
- --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a 
-clearer licensing regime.  I am asking as many copyright holders as I can 
-find if I can release PyCrypto under something clearer and more standard.  
-Below, I have quoted a public domain dedication that was recommended in 
-_Intellectual Property and Open Source: A Practical Guide to Protecting 
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
-Pointer, and Wim Lewis, and they have all approved the following text for 
-their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your 
-behalf, dedicate to the public domain all your contributions to PyCrypto, 
-with the following notice?
-
- =======================================================================
- The contents of this file are dedicated to the public domain.  To the
- extent that dedication to the public domain is not available, everyone
- is granted a worldwide, perpetual, royalty-free, non-exclusive license
- to exercise all rights associated with the contents of this file for
- any purpose whatsoever.  No rights are reserved.
- =======================================================================
-
-Regards,
- - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-       Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From jeethurao@gmail.com Sun Mar  8 17:28:16 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <jeethurao@gmail.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 0CC83515D9
-    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 17:28:16 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 4E58F450CB
-    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 15:28:15 -0600 (CST)
-Received: (vmailmgr-postfix 5011 invoked by uid 1003);  8 Mar 2009 15:28:15 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: pass (gmail.com ... _spf.google.com: 209.85.198.249 is authorized to use 'jeethurao@gmail.com' in 'mfrom' identity (mechanism 'ip4:209.85.128.0/17' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="jeethurao@gmail.com"; helo=rv-out-0708.google.com; client-ip=209.85.198.249
-Received: from rv-out-0708.google.com (unknown [209.85.198.249])
-    by goedel.dlitz.net (Postfix) with ESMTP id 3C097449E7
-    for <dlitz@dlitz.net>; Sun,  8 Mar 2009 15:28:12 -0600 (CST)
-Received: by rv-out-0708.google.com with SMTP id k29so1252333rvb.26
-        for <dlitz@dlitz.net>; Sun, 08 Mar 2009 14:27:56 -0700 (PDT)
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
-        d=gmail.com; s=gamma;
-        h=domainkey-signature:mime-version:received:in-reply-to:references
-         :date:message-id:subject:from:to:content-type;
-        bh=YWy9U32WCU/ksRqukHwaOZyJQBUs4Yvt5mI20U6mI/g=;
-        b=oMjI22lIxYiJKge2zNJW3rRiUi9LqFXmey5Wp0pLItuNF+X3duyfhopTuBAKw7MwVY
-         B5E6VQuGVEyzBbNsctyVgq6DhQiQtouCLZymSViobmuDmKn5DtUKoxpDk0xCxQmHYaas
-         L9/A6D3/J66kKrNBgX9mc0GPcZTviVFYkPR0Q=
-DomainKey-Signature: a=rsa-sha1; c=nofws;
-        d=gmail.com; s=gamma;
-        h=mime-version:in-reply-to:references:date:message-id:subject:from:to
-         :content-type;
-        b=Ym7CStuDEfJKay1AJyWZkZmJA1lnTcwCG6akBHAXLld8ht6PFcmlsffzZG8hJCIVJ8
-         vljqcT+G6cywVTBw1pyGX7ECYzr0+vhGvgdpACGrs24zikHfpSSd5GFogzXaLVvGVH8p
-         bqSHpfWKKtEP4gAQkiNeIq1GNtR2j8U3fnRyg=
-MIME-Version: 1.0
-Received: by 10.141.176.13 with SMTP id d13mr2656028rvp.231.1236547674677; 
-    Sun, 08 Mar 2009 14:27:54 -0700 (PDT)
-In-Reply-To: <20090301042414.GA15122@rivest.dlitz.net>
-References: <20090301042414.GA15122@rivest.dlitz.net>
-Date: Mon, 9 Mar 2009 02:57:54 +0530
-Message-ID: <e3c0ddba0903081427p3a7b1058g417dd8624df68d6d@mail.gmail.com>
-Subject: Re: PyCrypto license clarification
-From: Jeethu Rao <jeethurao@gmail.com>
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Content-Type: multipart/alternative; boundary=000e0cd209d0e5a3d40464a23054
-Status: RO
-Content-Length: 7668
-
---000e0cd209d0e5a3d40464a23054
-Content-Type: text/plain; charset=ISO-8859-1
-Content-Transfer-Encoding: 7bit
-
-Hi Dwayne,My contribution to pycrypto are very very minimal (The sha256
-module, IIRC).
-I'd be fine with the public domain license for PyCrypto.
-
-Jeethu Rao
-PS: Apologies for the delay in my response.
-I don't really check this email address all that often,
-please direct any further correspondence to jeethu@jeethurao.com
-
-On Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <dlitz@dlitz.net>wrote:
-
-> Hi Jeethu,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
->
-> People often ask me what license PyCrypto is covered by, if it's
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  The
-> text in the current LICENSE file (quoted below) is not entirely clear on the
-> point of whether distributing modified versions is allowed.  (It says
-> "distribute and use", but not "modify".)
->
-> ===================================================================
-> Distribute and use freely; there are no restrictions on further
-> dissemination and usage except those imposed by the laws of your
-> country of residence.  This software is provided "as is" without
-> warranty of fitness for use or suitability for any purpose, express
-> or implied. Use at your own risk or not at all.
-> ===================================================================
->
-> Incorporating the code into commercial products is permitted; you do
-> not have to make source available or contribute your changes back
-> (though that would be nice).
->
-> --amk                                                    (www.amk.ca)
->
-> For the next PyCrypto release, I would like to take steps to move toward a
-> clearer licensing regime.  I am asking as many copyright holders as I can
-> find if I can release PyCrypto under something clearer and more standard.
->  Below, I have quoted a public domain dedication that was recommended in
-> _Intellectual Property and Open Source: A Practical Guide to Protecting
-> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-> Pointer, and Wim Lewis, and they have all approved the following text for
-> their contributions.
->
-> I understand that you have made contributions to PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your contributions to PyCrypto,
-> with the following notice?
->
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
-> Regards,
-> - Dwayne
->
-> --
-> Dwayne C. Litzenberger <dlitz@dlitz.net>
->      Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->
-
-
-
--- 
-Jeethu Rao
-
---000e0cd209d0e5a3d40464a23054
-Content-Type: text/html; charset=ISO-8859-1
-Content-Transfer-Encoding: quoted-printable
-
-Hi Dwayne,<div>My contribution to pycrypto are very very minimal (The sha25=
-6 module, IIRC).</div><div>I&#39;d be fine with the public domain license f=
-or PyCrypto.</div><div><br></div><div>Jeethu Rao</div><div>PS: Apologies fo=
-r the delay in my response.=A0</div>
-<div>I don&#39;t really check this email address all that often,</div><div>=
-please direct any further correspondence to <a href=3D"mailto:jeethu@jeethu=
-rao.com">jeethu@jeethurao.com</a><br><div><br><div class=3D"gmail_quote">On=
- Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <span dir=3D"ltr">&lt;=
-<a href=3D"mailto:dlitz@dlitz.net">dlitz@dlitz.net</a>&gt;</span> wrote:<br=
->
-<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
-x #ccc solid;padding-left:1ex;">Hi Jeethu,<br>
-<br>
-I am the new maintainer of the Python Cryptography Toolkit, and I am workin=
-g on a new release at <a href=3D"http://www.pycrypto.org/" target=3D"_blank=
-">http://www.pycrypto.org/</a>.<br>
-<br>
-People often ask me what license PyCrypto is covered by, if it&#39;s GPL-co=
-mpatible, etc. =A0Right now, I&#39;m not really sure what to tell them. =A0=
-The text in the current LICENSE file (quoted below) is not entirely clear o=
-n the point of whether distributing modified versions is allowed. =A0(It sa=
-ys &quot;distribute and use&quot;, but not &quot;modify&quot;.)<br>
-
-<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-Distribute and use freely; there are no restrictions on further<br>
-dissemination and usage except those imposed by the laws of your<br>
-country of residence. =A0This software is provided &quot;as is&quot; withou=
-t<br>
-warranty of fitness for use or suitability for any purpose, express<br>
-or implied. Use at your own risk or not at all.<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-<br>
-Incorporating the code into commercial products is permitted; you do<br>
-not have to make source available or contribute your changes back<br>
-(though that would be nice).<br>
-<br>
---amk =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
-=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(<a href=3D"http://www.amk.ca" target=3D=
-"_blank">www.amk.ca</a>)<br>
-<br>
-For the next PyCrypto release, I would like to take steps to move toward a =
-clearer licensing regime. =A0I am asking as many copyright holders as I can=
- find if I can release PyCrypto under something clearer and more standard. =
-=A0Below, I have quoted a public domain dedication that was recommended in =
-_Intellectual Property and Open Source: A Practical Guide to Protecting Cod=
-e_, by Van Lindberg. =A0I have already contacted A. M. Kuchling, Robey Poin=
-ter, and Wim Lewis, and they have all approved the following text for their=
- contributions.<br>
-
-<br>
-I understand that you have made contributions to PyCrypto. =A0May I, on you=
-r behalf, dedicate to the public domain all your contributions to PyCrypto,=
- with the following notice?<br>
-<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-The contents of this file are dedicated to the public domain. =A0To the<br>
-extent that dedication to the public domain is not available, everyone<br>
-is granted a worldwide, perpetual, royalty-free, non-exclusive license<br>
-to exercise all rights associated with the contents of this file for<br>
-any purpose whatsoever. =A0No rights are reserved.<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-<br>
-Regards,<br>
-- Dwayne<br><font color=3D"#888888">
-<br>
--- <br>
-Dwayne C. Litzenberger &lt;<a href=3D"mailto:dlitz@dlitz.net" target=3D"_bl=
-ank">dlitz@dlitz.net</a>&gt;<br>
- =A0 =A0 =A0Key-signing key =A0 - 19E1 1FE8 B3CF F273 ED17 =A04A24 928C EC1=
-3 39C2 5CF7<br>
-</font></blockquote></div><br><br clear=3D"all"><br>-- <br>Jeethu Rao<br>
-</div></div>
-
---000e0cd209d0e5a3d40464a23054--
-
-
-=======================================================
-From dlitz@dlitz.net Mon May  4 22:49:14 2009
-Date: Mon, 4 May 2009 22:49:14 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Joris Bontje <joris@bontje.nl>
-Subject: PyCrypto license clarification
-Message-ID: <20090505024914.GA9219@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2553
-
-Hi Joris,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-  ===================================================================
-  Distribute and use freely; there are no restrictions on further
-  dissemination and usage except those imposed by the laws of your
-  country of residence.  This software is provided "as is" without
-  warranty of fitness for use or suitability for any purpose, express
-  or implied. Use at your own risk or not at all.
-  ===================================================================
-
-  Incorporating the code into commercial products is permitted; you do
-  not have to make source available or contribute your changes back
-  (though that would be nice).
-
-  --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
-have all approved the following dedication for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your
-behalf, dedicate to the public domain all your contributions to PyCrypto,
-with the following notice?
-
-  =======================================================================
-  The contents of this file are dedicated to the public domain.  To the
-  extent that dedication to the public domain is not available, everyone
-  is granted a worldwide, perpetual, royalty-free, non-exclusive license
-  to exercise all rights associated with the contents of this file for
-  any purpose whatsoever.  No rights are reserved.
-  =======================================================================
-
-Regards,
- - Dwayne
-
---
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From joris@bontje.nl Tue May  5 03:08:32 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <joris@bontje.nl>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 7AA4B9E5078
-    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 03:08:32 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 2315B40583
-    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 01:08:32 -0600 (CST)
-Received: (vmailmgr-postfix 16890 invoked by uid 1003);  5 May 2009 01:08:32 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (bontje.nl: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="joris@bontje.nl"; helo=smtp6.versatel.nl; client-ip=62.58.50.97
-Received: from smtp6.versatel.nl (smtp6.versatel.nl [62.58.50.97])
-    by goedel.dlitz.net (Postfix) with ESMTP id 2D76A4052C
-    for <dlitz@dlitz.net>; Tue,  5 May 2009 01:08:30 -0600 (CST)
-Received: (qmail 4224 invoked by uid 0); 5 May 2009 07:08:25 -0000
-Received: from qmail06.zonnet.nl (HELO dell062.admin.zonnet.nl) ([10.170.1.123])
-          (envelope-sender <joris@bontje.nl>)
-          by 10.170.1.96 (qmail-ldap-1.03) with SMTP
-          for < >; 5 May 2009 07:08:25 -0000
-Received: by dell062.admin.zonnet.nl (Postfix, from userid 33)
-    id 9BE9B15759B; Tue,  5 May 2009 09:08:25 +0200 (CEST)
-Received: from firewall66.interaccess.nl (firewall66.interaccess.nl
-    [193.173.35.66]) by www.webmail.vuurwerk.nl (Horde MIME library) with HTTP;
-    Tue, 05 May 2009 09:08:25 +0200
-Message-ID: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-Date: Tue, 05 May 2009 09:08:25 +0200
-From: joris@bontje.nl
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Subject: Re: PyCrypto license clarification
-References: <20090505024914.GA9219@rivest.dlitz.net>
-In-Reply-To: <20090505024914.GA9219@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain;
-    charset=ISO-8859-1;
-    format="flowed"
-Content-Disposition: inline
-Content-Transfer-Encoding: 7bit
-User-Agent: Internet Messaging Program (IMP) H3 (4.1.3)
-Status: RO
-X-Status: A
-Content-Length: 3488
-
-Hi Dwayne,
-
-Thanks for taking over the PyCrypto library and putting in the required 
-effort to keep this going.
-I was very excited to read that it is now one of the installed 
-libraries for Google AppsEngine!
-
-You have my full permission to dedicate all my contributions to 
-PyCrypto to the public domain with your suggested notice:
-=======================================================================
-The contents of this file are dedicated to the public domain.  To the
-extent that dedication to the public domain is not available, everyone
-is granted a worldwide, perpetual, royalty-free, non-exclusive license
-to exercise all rights associated with the contents of this file for
-any purpose whatsoever.  No rights are reserved.
-=======================================================================
-
-
-Regards,
-Joris
-
-Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
-
-> Hi Joris,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
->
-> People often ask me what license PyCrypto is covered by, if it's
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-> The text in the current LICENSE file (quoted below) is not entirely clear
-> on the point of whether distributing modified versions is allowed.  (It
-> says "distribute and use", but not "modify".)
->
-> ===================================================================
-> Distribute and use freely; there are no restrictions on further
-> dissemination and usage except those imposed by the laws of your
-> country of residence.  This software is provided "as is" without
-> warranty of fitness for use or suitability for any purpose, express
-> or implied. Use at your own risk or not at all.
-> ===================================================================
->
-> Incorporating the code into commercial products is permitted; you do
-> not have to make source available or contribute your changes back
-> (though that would be nice).
->
-> --amk                                                    (www.amk.ca)
->
-> For the next PyCrypto release, I would like to take steps to move toward a
-> clearer licensing regime.  I am asking as many copyright holders as I can
-> find if I can release PyCrypto under something clearer and more standard.
-> Below, I have quoted a public domain dedication that was recommended in
-> _Intellectual Property and Open Source: A Practical Guide to Protecting
-> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
-> have all approved the following dedication for their contributions.
->
-> I understand that you have made contributions to PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your contributions to PyCrypto,
-> with the following notice?
->
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
-> Regards,
-> - Dwayne
->
-> --
-> Dwayne C. Litzenberger <dlitz@dlitz.net>
-> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-
-
-From dlitz@dlitz.net Tue May  5 17:53:47 2009
-Date: Tue, 5 May 2009 17:53:47 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: joris@bontje.nl
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090505215347.GB9933@rivest.dlitz.net>
-References: <20090505024914.GA9219@rivest.dlitz.net> <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-In-Reply-To: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3863
-
-Excellent!  Thank you!
-
-On Tue, May 05, 2009 at 09:08:25AM +0200, joris@bontje.nl wrote:
-> Hi Dwayne,
->
-> Thanks for taking over the PyCrypto library and putting in the required 
-> effort to keep this going.
-> I was very excited to read that it is now one of the installed libraries 
-> for Google AppsEngine!
->
-> You have my full permission to dedicate all my contributions to PyCrypto to 
-> the public domain with your suggested notice:
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
->
-> Regards,
-> Joris
->
-> Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
->
->> Hi Joris,
->>
->> I am the new maintainer of the Python Cryptography Toolkit, and I am
->> working on a new release at http://www.pycrypto.org/.
->>
->> People often ask me what license PyCrypto is covered by, if it's
->> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
->> The text in the current LICENSE file (quoted below) is not entirely clear
->> on the point of whether distributing modified versions is allowed.  (It
->> says "distribute and use", but not "modify".)
->>
->> ===================================================================
->> Distribute and use freely; there are no restrictions on further
->> dissemination and usage except those imposed by the laws of your
->> country of residence.  This software is provided "as is" without
->> warranty of fitness for use or suitability for any purpose, express
->> or implied. Use at your own risk or not at all.
->> ===================================================================
->>
->> Incorporating the code into commercial products is permitted; you do
->> not have to make source available or contribute your changes back
->> (though that would be nice).
->>
->> --amk                                                    (www.amk.ca)
->>
->> For the next PyCrypto release, I would like to take steps to move toward a
->> clearer licensing regime.  I am asking as many copyright holders as I can
->> find if I can release PyCrypto under something clearer and more standard.
->> Below, I have quoted a public domain dedication that was recommended in
->> _Intellectual Property and Open Source: A Practical Guide to Protecting
->> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
->> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
->> have all approved the following dedication for their contributions.
->>
->> I understand that you have made contributions to PyCrypto.  May I, on your
->> behalf, dedicate to the public domain all your contributions to PyCrypto,
->> with the following notice?
->>
->> =======================================================================
->> The contents of this file are dedicated to the public domain.  To the
->> extent that dedication to the public domain is not available, everyone
->> is granted a worldwide, perpetual, royalty-free, non-exclusive license
->> to exercise all rights associated with the contents of this file for
->> any purpose whatsoever.  No rights are reserved.
->> =======================================================================
->>
->> Regards,
->> - Dwayne
->>
->> --
->> Dwayne C. Litzenberger <dlitz@dlitz.net>
->> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->
->
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
-
-==========================================================
-Date: Sun, 23 Nov 2008 15:54:35 -0800
-From: Wim Lewis <wiml@hhhh.org>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Cc: Wim Lewis <wiml@hhhh.org>
-Message-Id: <9D5C3135-7414-47D7-9D41-0AC6C3A84D97@hhhh.org>
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On November 23, 2008, you wrote:
->Hi Wim,
->
->I am the new maintainer of the Python Cryptography Toolkit, and I am
->working on a new release at http://www.pycrypto.org/.
->
->I understand that you have made contributions to PyCrypto. May I, on
->your behalf, dedicate to the public domain all your contributions to
->PyCrypto, with the following notice?
->
->   =======================================================================
->   The contents of this file are dedicated to the public domain.  To the
->   extent that dedication to the public domain is not available, everyone
->   is granted a worldwide, perpetual, royalty-free, non-exclusive license
->   to exercise all rights associated with the contents of this file for
->   any purpose whatsoever.  No rights are reserved.
->   =======================================================================
-
-Certainly! I think the only code of mine in PyCrypto is the CAST-5 / CAST-128
-implementation, which already has a public-domain notice at the top of
-the file. But I am happy to have that, any any other code of mine that
-might have wandered in there under an unclear open sourcish license,
-distributed under the public-domain dedication you quote.
-
-Wim.
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.6 (Darwin)
-
-iQCVAwUBSSnnAl8UnN8n93LBAQLp/gQAhr7x8Av1mstc2kxEJDWTm26PTAZxMz4B
-FektbDOzkxgc5580MGGeeX/MVn8aw+1BHg0YD85gsntlDzkcQtb+BR/xAvJ5zKyA
-J/Mn/I+I6ekJQ3juh8IPHLAduOXM9Rtguas/yR+Doaq0xOPKoBx+/5+t1lLJtBcZ
-wrPEa9Oui9s=
-=zSY9
------END PGP SIGNATURE-----
-
-
-
-==========================================================
-From dlitz@dlitz.net Sat Apr 18 09:14:20 2009
-Date: Sat, 18 Apr 2009 09:14:20 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Mark Moraes <moraes@computer.org>
-Subject: PyCrypto license clarification
-Message-ID: <20090418131419.GA14494@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2635
-
-Hi Mark,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-       ===================================================================
-       Distribute and use freely; there are no restrictions on further
-       dissemination and usage except those imposed by the laws of your
-       country of residence.  This software is provided "as is" without
-       warranty of fitness for use or suitability for any purpose, express
-       or implied. Use at your own risk or not at all.
-       ===================================================================
-
-       Incorporating the code into commercial products is permitted; you do
-       not have to make source available or contribute your changes back
-       (though that would be nice).
-
-       --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they have all
-approved the following dedication for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your
-behalf, dedicate to the public domain all your contributions to PyCrypto,
-with the following notice?
-
-       =======================================================================
-       The contents of this file are dedicated to the public domain.  To the
-       extent that dedication to the public domain is not available, everyone
-       is granted a worldwide, perpetual, royalty-free, non-exclusive license
-       to exercise all rights associated with the contents of this file for
-       any purpose whatsoever.  No rights are reserved.
-       =======================================================================
-
-Regards,
-    - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-    Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From markmoraes@yahoo.com Mon Apr 20 19:25:37 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <markmoraes@yahoo.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 5D9AE984FDD
-    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 19:25:37 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id DE41F4025F
-    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
-Received: (vmailmgr-postfix 7604 invoked by uid 1003); 20 Apr 2009 17:25:36 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (yahoo.com: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="markmoraes@yahoo.com"; helo=web32405.mail.mud.yahoo.com; client-ip=68.142.207.198
-Received: from web32405.mail.mud.yahoo.com (web32405.mail.mud.yahoo.com [68.142.207.198])
-    by goedel.dlitz.net (Postfix) with SMTP id B5EAF401EE
-    for <dlitz@dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
-Received: (qmail 34697 invoked by uid 60001); 20 Apr 2009 23:25:33 -0000
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1240269933; bh=OvxqbYnCg7R6tUN3YmlgFURM3CuHh1JeHyXhDzkaThU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=F2h2bFzpQxyKFZ8BhenniyupGw4Zvlekb9BSk91qKU+51W/TkSGBij5YZIhkLQdkQk0qLz5f4g8dT6bOME3sEY1j10hlx0K0u2UD0yoYTINBCmsdMQRoJ7ph9bmt+p/EJhRpe+FiV6aoLV0FONWiHfGDghPT1dulWXfVTqgB2aU=
-DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
-  s=s1024; d=yahoo.com;
-  h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
-  b=r6RShFF5VzQLg+9tcn1xKuo4Rs4IVvXF6fdqOpQrMyRCxeFooebhuTE35grGqlomOJLwM0+mZwRb6rGkDj763caOAlo8Ect/qlADW5izXfmVQaDchTbTqmpsJBmQnTQs9iZ+InrG+3UIwtUSGfX7fhEWmI9P/HBzxf9Wp4b3jeo=;
-Message-ID: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-X-YMail-OSG: FrK8aWMVM1mFJtLpMGbUbCLjbUQC.i.JkIAKUHSFsFn7t9PbtewAewXJ2uhZGCOlGCX6oVnG3u.CgqzAffY4vZSnfTT8wnCkzZNZ_g6k.XUc3ipo_6e.92TXl4p8MxDGAf1tpNF5nXPwcQ7aREs7jGoWWVJYVytp50clsUFSHzf7Zbpa8P1Yoe_xSzf3OAgRSh5fCrbFCC8sHPCuwrL3YhasbtHmkWffteSS.x6gEcBaxf03oz4FeDb5mpJ54g11Xonq8h_TmzX9g84Bin9g_3fJ4WSXm6g6.tohLyfXcUxoz4j036wyWpTKPrWEzIUQaN83Sv_bj_Ghxw--
-Received: from [69.124.140.74] by web32405.mail.mud.yahoo.com via HTTP; Mon, 20 Apr 2009 16:25:32 PDT
-X-Mailer: YahooMailClassic/5.2.15 YahooMailWebService/0.7.289.1
-Date: Mon, 20 Apr 2009 16:25:32 -0700 (PDT)
-From: M Moraes <markmoraes@yahoo.com>
-Reply-To: moraes@computer.org
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii
-Status: RO
-X-Status: A
-Content-Length: 3222
-
-
-Hi Dwayne.
-
-Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
-
-Regards,
-Mark.
-
---- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
-
-> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
-> Subject: PyCrypto license clarification
-> To: "Mark Moraes" <moraes@computer.org>
-> Date: Saturday, April 18, 2009, 9:14 AM
-> Hi Mark,
-> 
-> I am the new maintainer of the Python Cryptography Toolkit,
-> and I am
-> working on a new release at http://www.pycrypto.org/.
-> 
-> People often ask me what license PyCrypto is covered by, if
-> it's
-> GPL-compatible, etc.  Right now, I'm not really sure
-> what to tell them.
-> The text in the current LICENSE file (quoted below) is not
-> entirely clear
-> on the point of whether distributing modified versions is
-> allowed.  (It
-> says "distribute and use", but not "modify".)
-> 
->      
-> ===================================================================
->       Distribute and use freely; there are
-> no restrictions on further
->       dissemination and usage except those
-> imposed by the laws of your
->       country of residence.  This
-> software is provided "as is" without
->       warranty of fitness for use or
-> suitability for any purpose, express
->       or implied. Use at your own risk or
-> not at all.
->      
-> ===================================================================
-> 
->       Incorporating the code into commercial
-> products is permitted; you do
->       not have to make source available or
-> contribute your changes back
->       (though that would be nice).
-> 
->       --amk       
->                
->                
->             (www.amk.ca)
-> 
-> For the next PyCrypto release, I would like to take steps
-> to move toward a
-> clearer licensing regime.  I am asking as many
-> copyright holders as I can
-> find if I can release PyCrypto under something clearer and
-> more standard.
-> Below, I have quoted a public domain dedication that was
-> recommended in
-> _Intellectual Property and Open Source: A Practical Guide
-> to Protecting
-> Code_, by Van Lindberg.  I have already contacted A.
-> M. Kuchling, Robey
-> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
-> have all
-> approved the following dedication for their contributions.
-> 
-> I understand that you have made contributions to
-> PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your
-> contributions to PyCrypto,
-> with the following notice?
-> 
->      
-> =======================================================================
->       The contents of this file are
-> dedicated to the public domain.  To the
->       extent that dedication to the public
-> domain is not available, everyone
->       is granted a worldwide, perpetual,
-> royalty-free, non-exclusive license
->       to exercise all rights associated with
-> the contents of this file for
->       any purpose whatsoever.  No
-> rights are reserved.
->      
-> =======================================================================
-> 
-> Regards,
->    - Dwayne
-> 
-> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
->    Key-signing key   - 19E1
-> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-> 
-
-
-From dlitz@dlitz.net Mon Apr 20 20:01:37 2009
-Date: Mon, 20 Apr 2009 20:01:37 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: moraes@computer.org
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090421000137.GA29012@rivest.dlitz.net>
-References: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-In-Reply-To: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3677
-
-Thanks a lot, and don't worry about not responding to previous emails.  I 
-do that too much myself. :)
-
-On Mon, Apr 20, 2009 at 04:25:32PM -0700, M Moraes wrote:
->
->Hi Dwayne.
->
->Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
->
->Regards,
->Mark.
->
->--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
->
->> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
->> Subject: PyCrypto license clarification
->> To: "Mark Moraes" <moraes@computer.org>
->> Date: Saturday, April 18, 2009, 9:14 AM
->> Hi Mark,
->> 
->> I am the new maintainer of the Python Cryptography Toolkit,
->> and I am
->> working on a new release at http://www.pycrypto.org/.
->> 
->> People often ask me what license PyCrypto is covered by, if
->> it's
->> GPL-compatible, etc.  Right now, I'm not really sure
->> what to tell them.
->> The text in the current LICENSE file (quoted below) is not
->> entirely clear
->> on the point of whether distributing modified versions is
->> allowed.  (It
->> says "distribute and use", but not "modify".)
->> 
->>      
->> ===================================================================
->>       Distribute and use freely; there are
->> no restrictions on further
->>       dissemination and usage except those
->> imposed by the laws of your
->>       country of residence.  This
->> software is provided "as is" without
->>       warranty of fitness for use or
->> suitability for any purpose, express
->>       or implied. Use at your own risk or
->> not at all.
->>      
->> ===================================================================
->> 
->>       Incorporating the code into commercial
->> products is permitted; you do
->>       not have to make source available or
->> contribute your changes back
->>       (though that would be nice).
->> 
->>       --amk       
->>                
->>                
->>             (www.amk.ca)
->> 
->> For the next PyCrypto release, I would like to take steps
->> to move toward a
->> clearer licensing regime.  I am asking as many
->> copyright holders as I can
->> find if I can release PyCrypto under something clearer and
->> more standard.
->> Below, I have quoted a public domain dedication that was
->> recommended in
->> _Intellectual Property and Open Source: A Practical Guide
->> to Protecting
->> Code_, by Van Lindberg.  I have already contacted A.
->> M. Kuchling, Robey
->> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
->> have all
->> approved the following dedication for their contributions.
->> 
->> I understand that you have made contributions to
->> PyCrypto.  May I, on your
->> behalf, dedicate to the public domain all your
->> contributions to PyCrypto,
->> with the following notice?
->> 
->>      
->> =======================================================================
->>       The contents of this file are
->> dedicated to the public domain.  To the
->>       extent that dedication to the public
->> domain is not available, everyone
->>       is granted a worldwide, perpetual,
->> royalty-free, non-exclusive license
->>       to exercise all rights associated with
->> the contents of this file for
->>       any purpose whatsoever.  No
->> rights are reserved.
->>      
->> =======================================================================
->> 
->> Regards,
->>    - Dwayne
->> 
->> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
->>    Key-signing key   - 19E1
->> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->> 
->
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
-
-
-
-==========================================================
-Date: Mon, 16 Feb 2009 12:58:00 -0800
-From: Robey Pointer <robey@lag.net>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Received-SPF: pass (goedel.dlitz.net: domain of robey@lag.net designates 69.61.78.186 as permitted sender)
-Message-Id: <F469A078-6305-4484-BEA8-F4EC38A4154F@lag.net>
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On 23 Nov 2008, at 07:42, Dwayne C. Litzenberger wrote:
-
-> For the next PyCrypto release, I would like to take steps to move  
-> toward a clearer licensing regime.  I am asking as many copyright  
-> holders as I can find if I can release PyCrypto under something  
-> clearer and more standard.  Below, I have quoted a public domain  
-> dedication that was recommended in _Intellectual Property and Open  
-> Source: A Practical Guide to Protecting Code_, by Van Lindberg.  I  
-> have already contacted A. M. Kuchling, and he has approved the  
-> following dedication for his contributions.
->
-> May I, on your behalf, dedicate to the public domain all your  
-> contributions to PyCrypto, with the following notice?
->
->     
-> = 
-> ======================================================================
->    The contents of this file are dedicated to the public domain.  To  
-> the
->    extent that dedication to the public domain is not available,  
-> everyone
->    is granted a worldwide, perpetual, royalty-free, non-exclusive  
-> license
->    to exercise all rights associated with the contents of this file  
-> for
->    any purpose whatsoever.  No rights are reserved.
->     
-> = 
-> ======================================================================
->
-
-In case I haven't replied to this yet: Yes, this is fine with me.
-
-robey
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.8 (Darwin)
-
-iEYEARECAAYFAkmZ01gACgkQQQDkKvyJ6cOLvQCfQmYYuVODvIlyLg0hgCI9LAbQ
-SH8AoLJgaq1lIi7/ZYDc+/Cd8VO0xLbr
-=Mv6g
------END PGP SIGNATURE-----
-
-
-
-==========================================================
-From dlitz@dlitz.net Sun Aug  2 21:48:25 2009
-Date: Sun, 2 Aug 2009 21:48:25 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Paul Swartz <paulswartz@gmail.com>
-Subject: PyCrypto license clarification
-Message-ID: <20090803014825.GA1326@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2631
-
-Hi Paul,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-   ===================================================================
-   Distribute and use freely; there are no restrictions on further
-   dissemination and usage except those imposed by the laws of your
-   country of residence.  This software is provided "as is" without
-   warranty of fitness for use or suitability for any purpose, express
-   or implied. Use at your own risk or not at all.
-   ===================================================================
-
-   Incorporating the code into commercial products is permitted; you do
-   not have to make source available or contribute your changes back
-   (though that would be nice).
-
-   --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, Joris Bontje, and Mark 
-Moraes, and they have all approved the following dedication for their 
-contributions.
-
-I understand that you have made contributions to PyCrypto, under nickname 
-"z3p" and/or other names.  May I, on your behalf, dedicate to the public 
-domain all your contributions to PyCrypto, with the following notice?
-
-   =======================================================================
-   The contents of this file are dedicated to the public domain.  To the
-   extent that dedication to the public domain is not available, everyone
-   is granted a worldwide, perpetual, royalty-free, non-exclusive license
-   to exercise all rights associated with the contents of this file for
-   any purpose whatsoever.  No rights are reserved.
-   =======================================================================
-
-Regards,
-  - Dwayne
-
---
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-   Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From paulswartz@gmail.com Mon Aug  3 12:14:07 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <paulswartz@gmail.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 30B9D984FC4
-    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 12:14:07 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id AD9AE81068
-    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 10:14:06 -0600 (CST)
-Received: (vmailmgr-postfix 32055 invoked by uid 1003);  3 Aug 2009 10:14:06 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: pass (gmail.com ... _spf.google.com: 72.14.220.159 is authorized to use 'paulswartz@gmail.com' in 'mfrom' identity (mechanism 'ip4:72.14.192.0/18' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="paulswartz@gmail.com"; helo=fg-out-1718.google.com; client-ip=72.14.220.159
-Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159])
-    by goedel.dlitz.net (Postfix) with ESMTP id 4E63881066
-    for <dlitz@dlitz.net>; Mon,  3 Aug 2009 10:14:05 -0600 (CST)
-Received: by fg-out-1718.google.com with SMTP id d23so1076840fga.3
-        for <dlitz@dlitz.net>; Mon, 03 Aug 2009 09:14:04 -0700 (PDT)
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
-        d=gmail.com; s=gamma;
-        h=domainkey-signature:mime-version:received:in-reply-to:references
-         :from:date:message-id:subject:to:content-type
-         :content-transfer-encoding;
-        bh=A0RHBf0TnribKS5qOHJ3WYbkZ+b0cuPeuoKAvpApWcc=;
-        b=gyTqkRhKlHadFKIZCBWsRbnMNVDq1PWlJbyC0EvxPskaoHr3HAR96MWQNBePu/40Ac
-         Vn55qlIqTdom4e9zlUEE6MwZo9kqi/Qw0L/SLib0DlQeNqo/eHYqPmuVswltaYwNAyMJ
-         Y9++76rPGzqYdALsfvsmwv7Q3/bEmjVTr0tQE=
-DomainKey-Signature: a=rsa-sha1; c=nofws;
-        d=gmail.com; s=gamma;
-        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
-         :content-type:content-transfer-encoding;
-        b=jze7KSMkUGilfVCXKXaaXMi5NAtGdMQOtVZZfRNyGSy68xOd2sxefjyyig3EfT6Nv6
-         Q3opUMsT96Q6zjZND55w446kTh2uBTNz4d3NwIeEWJnG3xcliRQu/mXPFp8AzPI3CefL
-         1ornJLM1eQ2XyuZA73jem+SJtfdHUcSD1UhgI=
-MIME-Version: 1.0
-Received: by 10.239.157.147 with SMTP id q19mr601802hbc.61.1249316043185; Mon, 
-    03 Aug 2009 09:14:03 -0700 (PDT)
-In-Reply-To: <20090803014825.GA1326@rivest.dlitz.net>
-References: <20090803014825.GA1326@rivest.dlitz.net>
-From: Paul Swartz <paulswartz@gmail.com>
-Date: Mon, 3 Aug 2009 12:13:43 -0400
-Message-ID: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: quoted-printable
-Status: RO
-X-Status: A
-Content-Length: 1450
-
-On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wro=
-te:
-> Hi Paul,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
-
-That's great!
-
-> I understand that you have made contributions to PyCrypto, under nickname
-> "z3p" and/or other names. =C2=A0May I, on your behalf, dedicate to the pu=
-blic
-> domain all your contributions to PyCrypto, with the following notice?
->
-> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-> =C2=A0The contents of this file are dedicated to the public domain. =C2=
-=A0To the
-> =C2=A0extent that dedication to the public domain is not available, every=
-one
-> =C2=A0is granted a worldwide, perpetual, royalty-free, non-exclusive lice=
-nse
-> =C2=A0to exercise all rights associated with the contents of this file fo=
-r
-> =C2=A0any purpose whatsoever. =C2=A0No rights are reserved.
-> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-Yes, that's fine.  Good luck with the new release!
-
--p
---=20
-Paul Swartz
-paulswartz at gmail dot com
-http://paulswartz.net/
-AIM: z3penguin
-
-
-From dlitz@dlitz.net Mon Aug  3 14:35:01 2009
-Date: Mon, 3 Aug 2009 14:35:01 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Paul Swartz <paulswartz@gmail.com>
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090803183501.GA17472@rivest.dlitz.net>
-References: <20090803014825.GA1326@rivest.dlitz.net> <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=iso-8859-1; format=flowed
-Content-Disposition: inline
-Content-Transfer-Encoding: 8bit
-In-Reply-To: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 1250
-
-On Mon, Aug 03, 2009 at 12:13:43PM -0400, Paul Swartz wrote:
->On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wrote:
->> Hi Paul,
->>
->> I am the new maintainer of the Python Cryptography Toolkit, and I am
->> working on a new release at http://www.pycrypto.org/.
->
->That's great!
->
->> I understand that you have made contributions to PyCrypto, under nickname
->> "z3p" and/or other names. �May I, on your behalf, dedicate to the public
->> domain all your contributions to PyCrypto, with the following notice?
->>
->> �=======================================================================
->> �The contents of this file are dedicated to the public domain. �To the
->> �extent that dedication to the public domain is not available, everyone
->> �is granted a worldwide, perpetual, royalty-free, non-exclusive license
->> �to exercise all rights associated with the contents of this file for
->> �any purpose whatsoever. �No rights are reserved.
->> �=======================================================================
->
->Yes, that's fine.  Good luck with the new release!
-
-Perfect!  Thanks for the quick response!
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-
-
-==========================================================
-
-
- - -
- -
-

python-social-auth - 0.2.12 -

- - -
Copyright (c) 2012-2013, Matias Aguirre
- - - - -
Copyright (c) 2012-2013, Matías Aguirre
-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 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 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.
-
- - -
- -
-

psycopg2 - 2.5.4 -

- - - -
psycopg2 and the LGPL
-=====================
-
-psycopg2 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 3 of the License, or
-(at your option) any later version.
-
-psycopg2 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.
-
-In addition, as a special exception, the copyright holders give
-permission to link this program with the OpenSSL library (or with
-modified versions of OpenSSL that use the same license as OpenSSL),
-and distribute linked combinations including the two.
-
-You must obey the GNU Lesser General Public License in all respects for
-all of the code used other than OpenSSL. If you modify file(s) with this
-exception, you may extend this exception to your version of the file(s),
-but you are not obligated to do so. If you do not wish to do so, delete
-this exception statement from your version. If you delete this exception
-statement from all source files in the program, then also delete it here.
-
-You should have received a copy of the GNU Lesser General Public License
-along with psycopg2 (see the doc/ directory.)
-If not, see .
-
-
-Alternative licenses
-====================
-
-If you prefer you can use the Zope Database Adapter ZPsycopgDA (i.e.,
-every file inside the ZPsycopgDA directory) user the ZPL license as
-published on the Zope web site, http://www.zope.org/Resources/ZPL.
-
-Also, the following BSD-like license applies (at your option) to the
-files following the pattern psycopg/adapter*.{h,c} and
-psycopg/microprotocol*.{h,c}:
-
- 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.
-
- ============================================================================
- This build contains zlib 1.2.8
- http://zlib.net/zlib-1.2.8.tar.gz
-
-   version 1.2.8, April 28th, 2013
-
-  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.
-
-  Jean-loup Gailly        Mark Adler
-  jloup@gzip.org          madler@alumni.caltech.edu
- 
-==============================================================================
- This build contains libpq from Postgres 9.3.5
- 
- PostgreSQL Database Management System
-(formerly known as Postgres, then as Postgres95)
-
-Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
-
-Portions Copyright (c) 1994, The Regents of the University of California
-
-Permission to use, copy, modify, and distribute this software and its
-documentation for any purpose, without fee, and without a written agreement
-is hereby granted, provided that the above copyright notice and this
-paragraph and the following two paragraphs appear in all copies.
-
-IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
-DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
-LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
-DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
-ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
-PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
- 
- =============================================================================
- This build contains OpenSSL 1.0.1i 
- 
-  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.]
- */
-
- 
- - - -
		   GNU LESSER GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- 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.
-
-
-
-
-
-
-
-
-====================================================================
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- 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.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    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 <http://www.gnu.org/licenses/>.
-
-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:
-
-    <program>  Copyright (C) <year>  <name of author>
-    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
-<http://www.gnu.org/licenses/>.
-
-  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
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
-
-
-
-
- - -
- -
-

funcparserlib - 0.3.6 -

- - -
Copyright 2008/2011 Andrey Vlasovskikh
- - - - -
Copyright © 2008/2011 Andrey Vlasovskikh
-
-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-ldap - 2.4.20 -

- - - - - -
-The python-ldap package is distributed under Python-style license.
-
-Standard disclaimer:
-   This software is made available by the author(s) to the public for free
-   and "as is".  All users of this free software are solely and entirely
-   responsible for their own choice and use of this software for their
-   own purposes.  By using this software, each user agrees that the
-   author(s) shall not be liable for damages of any kind in relation to
-   its use or performance. The author(s) do not warrant that this software
-   is fit for any purpose.
-
-$Id: LICENCE,v 1.1 2002/09/18 18:51:22 stroeder Exp $
-
- - -
- -
-

ecdsa - 0.13 -

- - -
python-ecdsa Copyright (c) 2010 Brian Warner
-Portions written in 2005 by Peter Pearson and placed in the public domain.
- - - - - -
- -
-

django-filter - 0.11.0 -

- - -
Copyright (c) Alex Gaynor and individual contributors.
- - - - -
Copyright (c) Alex Gaynor and individual 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:
-
- * 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 its contributors may not 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.
- - -
- -
-

pycrypto - 2.6.1 -

- - - - - -
Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"):
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Previously, the copyright and/or licensing status of the Python
-Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous.  The
-original intention of Andrew M. Kuchling and other contributors has
-been to dedicate PyCrypto to the public domain, but that intention was
-not necessarily made clear in the original disclaimer (see
-LEGAL/copy/LICENSE.orig).
-
-Additionally, some files within PyCrypto had specified their own
-licenses that differed from the PyCrypto license itself.  For example,
-the original RIPEMD.c module simply had a copyright statement and
-warranty disclaimer, without clearly specifying any license terms.
-(An updated version on the author's website came with a license that
-contained a GPL-incompatible advertising clause.)
-
-To rectify this situation for PyCrypto 2.1, the following steps have
-been taken:
-
- 1. Obtaining explicit permission from the original contributors to
-    dedicate their contributions to the public domain if they have not
-    already done so.  (See the "LEGAL/copy/stmts" directory for
-    contributors' statements.)
-
- 2. Replacing some modules with clearly-licensed code from other
-    sources (e.g. the DES and DES3 modules were replaced with new ones
-    based on Tom St. Denis's public-domain LibTomCrypt library.)
-
- 3. Replacing some modules with code written from scratch (e.g. the
-    RIPEMD and Blowfish modules were re-implemented from their
-    respective algorithm specifications without reference to the old
-    implementations).
-
- 4. Removing some modules altogether without replacing them.
-
-To the best of our knowledge, with the exceptions noted below or
-within the files themselves, the files that constitute PyCrypto are in
-the public domain.  Most are distributed with the following notice:
-
-  The contents of this file are dedicated to the public domain.  To
-  the extent that dedication to the public domain is not available,
-  everyone is granted a worldwide, perpetual, royalty-free,
-  non-exclusive license to exercise all rights associated with the
-  contents of this file for any purpose whatsoever.
-  No rights are reserved.
-
-  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.
-
-Exception:
-
- - Portions of HMAC.py and setup.py are derived from Python 2.2, and
-   are therefore Copyright (c) 2001, 2002, 2003 Python Software
-   Foundation (All Rights Reserved).  They are licensed by the PSF
-   under the terms of the Python 2.2 license.  (See the file
-   LEGAL/copy/LICENSE.python-2.2 for details.)
-
-EXPORT RESTRICTIONS:
-
-Note that the export or re-export of cryptographic software and/or
-source code may be subject to regulation in your jurisdiction.
-
-
-
-==================================================================
-LICENSE.python-2.2
-LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
-LICENSE.libtom  LICENSE file from LibTomCrypt
-stmts/          Statements by contributors
-
-==================================================================
-LICENSE.python-2.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)
-
-    0.9.0 thru 1.2              1991-1995   CWI         yes
-    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
-    1.6             1.5.2       2000        CNRI        no
-    2.0             1.6         2000        BeOpen.com  no
-    1.6.1           1.6         2001        CNRI        no
-    2.1             2.0+1.6.1   2001        PSF         no
-    2.0.1           2.0+1.6.1   2001        PSF         yes
-    2.1.1           2.1+2.0.1   2001        PSF         yes
-    2.2             2.1.1       2001        PSF         yes
-    2.1.2           2.1.1       2002        PSF         yes
-    2.1.3           2.1.2       2002        PSF         yes
-    2.2.1           2.2         2002        PSF         yes
-    2.2.2           2.2.1       2002        PSF         yes
-    2.2.3           2.2.2       2003        PSF         yes
-
-Footnotes:
-
-(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.
-
-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
-===============================================================
-
-PSF LICENSE AGREEMENT FOR PYTHON 2.2.3
---------------------------------------
-
-1. This LICENSE AGREEMENT is between the Python Software Foundation
-("PSF"), and the Individual or Organization ("Licensee") accessing and
-otherwise using Python 2.2.3 software 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 2.2.3
-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 Python Software Foundation; All Rights Reserved" are
-retained in Python 2.2.3 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 2.2.3 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 2.2.3.
-
-4. PSF is making Python 2.2.3 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 2.2.3 WILL NOT
-INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
-2.2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
-A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.2.3,
-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 2.2.3, 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.
-
-
-===================================================================
-LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
-===================================================================
-Distribute and use freely; there are no restrictions on further
-dissemination and usage except those imposed by the laws of your
-country of residence.  This software is provided "as is" without
-warranty of fitness for use or suitability for any purpose, express
-or implied. Use at your own risk or not at all.
-===================================================================
-
-Incorporating the code into commercial products is permitted; you do
-not have to make source available or contribute your changes back
-(though that would be nice).
-
---amk                                                             (www.amk.ca)
-
-
-
-LICENSE.libtom  LICENSE file from LibTomCrypt
-===================================================================
-LibTomCrypt is public domain.  As should all quality software be.
-
-Tom St Denis
-
-
-
-Statements by contributors
-===================================================================
-From dlitz@dlitz.net Sun Nov 23 00:17:22 2008
-Date: Sun, 23 Nov 2008 00:17:22 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: "A. M. Kuchling" <amk@amk.ca>
-Subject: PyCrypto license clarification
-Message-ID: <20081123051722.GA29253@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: multipart/signed; micalg=pgp-sha1;
-    protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4"
-Content-Disposition: inline
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3461
-Lines: 78
-
-
---YiEDa0DAkWCtVeE4
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-Content-Transfer-Encoding: quoted-printable
-
-Hi Andrew,
-
-People often ask me what license PyCrypto is covered by, if it's=20
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them. =20
-The text in the current LICENSE file (quoted below) is not entirely clear=
-=20
-on the point of whether distributing modified versions is allowed.  (It=20
-says "distribute and use", but not "modify".)
-
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-     Distribute and use freely; there are no restrictions on further
-     dissemination and usage except those imposed by the laws of your
-     country of residence.  This software is provided "as is" without
-     warranty of fitness for use or suitability for any purpose, express
-     or implied. Use at your own risk or not at all.
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-     Incorporating the code into commercial products is permitted; you do
-     not have to make source available or contribute your changes back
-     (though that would be nice).
-
-     --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I'd like to take steps to move toward a=20
-clearer licensing regime.  I'm asking as many copyright holders as I can=20
-find, starting with you, if I can release PyCrypto under something clearer=
-=20
-and more standard.  Below, I have quoted a public domain dedication that=20
-was recommended in _Intellectual Property and Open Source: A Practical=20
-Guide to Protecting Code_, by Van Lindberg.
-
-May I, on your behalf, dedicate to the public domain your considerable=20
-contributions to PyCrypto, with the following notice?
-
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-     The contents of this file are dedicated to the public domain.  To the
-     extent that dedication to the public domain is not available, everyone
-     is granted a worldwide, perpetual, royalty-free, non-exclusive license
-     to exercise all rights associated with the contents of this file for
-     any purpose whatsoever.  No rights are reserved.
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-Regards,
-  - Dwayne
-
---=20
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
---YiEDa0DAkWCtVeE4
-Content-Type: application/pgp-signature; name="signature.asc"
-Content-Description: Digital signature
-Content-Disposition: inline
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.5 (GNU/Linux)
-
-iEYEARECAAYFAkko52IACgkQHBG4d+eAS0XPPQCfcyQ2DdAXKg9N7Z+jeSFFD5EZ
-yloAn33a3ZjkteyJaTbzEqImOEW8JGpf
-=aBEW
------END PGP SIGNATURE-----
-
---YiEDa0DAkWCtVeE4--
-
-From amk@amk.ca Sun Nov 23 07:51:59 2008
-X-Maildir-Dup-Checked: Yes
-Return-Path: <amk@amk.ca>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 5C2C75047D
-    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 07:51:59 -0500 (EST)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id D632D10111
-    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
-Received: (vmailmgr-postfix 12026 invoked by uid 1003); 23 Nov 2008 06:51:58 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (goedel.dlitz.net: domain of amk@amk.ca does not designate permitted sender hosts)
-Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7])
-    by goedel.dlitz.net (Postfix) with ESMTP id 97DC710105
-    for <dlitz@dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
-Received: (qmail 3992 invoked from network); 23 Nov 2008 12:51:52 -0000
-Received: from dsl092-163-165.wdc2.dsl.speakeasy.net (HELO localhost) (akuchling@[66.92.163.165])
-          (envelope-sender <amk@amk.ca>)
-          by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP
-          for <dlitz@dlitz.net>; 23 Nov 2008 12:51:52 -0000
-Date: Sun, 23 Nov 2008 07:51:34 -0500
-From: "A.M. Kuchling" <amk@amk.ca>
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Subject: Re: PyCrypto license clarification
-Message-ID: <20081123125134.GA21239@amk.local>
-Reply-To: amk@amk.ca
-References: <20081123051722.GA29253@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii
-Content-Disposition: inline
-In-Reply-To: <20081123051722.GA29253@rivest.dlitz.net>
-User-Agent: Mutt/1.5.13 (2006-08-11)
-Status: RO
-Content-Length: 537
-Lines: 15
-
-> People often ask me what license PyCrypto is covered by, if it's 
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-> The text in the current LICENSE file (quoted below) is not entirely clear 
-> on the point of whether distributing modified versions is allowed.  (It 
-> says "distribute and use", but not "modify".)
-
-The intention is that it be public domain.
-
-> May I, on your behalf, dedicate to the public domain your considerable 
-> contributions to PyCrypto, with the following notice?
-
-You may.
-
---amk
-
-
-================================================
-From dlitz@dlitz.net Sat Feb 28 21:45:09 2009
-Date: Sat, 28 Feb 2009 21:45:09 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Barry A Warsaw <barry@python.org>
-Subject: PyCrypto license clarification
-Message-ID: <20090301024509.GA13195@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2535
-
-Hi Barry,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am 
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's 
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-The text in the current LICENSE file (quoted below) is not entirely clear 
-on the point of whether distributing modified versions is allowed.  (It 
-says "distribute and use", but not "modify".)
-
-  ===================================================================
-  Distribute and use freely; there are no restrictions on further
-  dissemination and usage except those imposed by the laws of your
-  country of residence.  This software is provided "as is" without
-  warranty of fitness for use or suitability for any purpose, express
-  or implied. Use at your own risk or not at all.
-  ===================================================================
-
-  Incorporating the code into commercial products is permitted; you do
-  not have to make source available or contribute your changes back
-  (though that would be nice).
-
-  --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a 
-clearer licensing regime.  I am asking as many copyright holders as I can 
-find if I can release PyCrypto under something clearer and more standard.  
-Below, I have quoted a public domain dedication that was recommended in 
-_Intellectual Property and Open Source: A Practical Guide to Protecting 
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
-Pointer, and Wim Lewis, and they have all approved the following dedication 
-for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your 
-behalf, dedicate to the public domain all your contributions to PyCrypto, 
-with the following notice?
-
-  =======================================================================
-  The contents of this file are dedicated to the public domain.  To the
-  extent that dedication to the public domain is not available, everyone
-  is granted a worldwide, perpetual, royalty-free, non-exclusive license
-  to exercise all rights associated with the contents of this file for
-  any purpose whatsoever.  No rights are reserved.
-  =======================================================================
-
-Regards,
-  - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-     Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From barry@python.org Mon Mar  2 11:29:39 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <barry@python.org>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 6E01AC6640B
-    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 11:29:39 -0500 (EST)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 0644E1007A
-    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 10:29:39 -0600 (CST)
-Received: (vmailmgr-postfix 8668 invoked by uid 1003);  2 Mar 2009 10:29:39 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (python.org: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="barry@python.org"; helo=mail.wooz.org; client-ip=216.15.33.230
-Received: from mail.wooz.org (216-15-33-230.c3-0.slvr-ubr2.lnh-slvr.md.static.cable.rcn.com [216.15.33.230])
-    by goedel.dlitz.net (Postfix) with ESMTP id CCEA110073
-    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 10:29:38 -0600 (CST)
-Received: from snowdog.wooz.org (snowdog.wooz.org [192.168.11.202])
-    by mail.wooz.org (Postfix) with ESMTPSA id ACE30E3C9F
-    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 11:29:35 -0500 (EST)
-Message-Id: <09BF1A39-B015-4820-97A3-8642490C8254@python.org>
-From: Barry Warsaw <barry@python.org>
-To: Dwayne C. Litzenberger <dlitz@dlitz.net>
-In-Reply-To: <20090301024509.GA13195@rivest.dlitz.net>
-Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
-Content-Transfer-Encoding: quoted-printable
-Mime-Version: 1.0 (Apple Message framework v930.3)
-Subject: Re: PyCrypto license clarification
-Date: Mon, 2 Mar 2009 11:29:34 -0500
-References: <20090301024509.GA13195@rivest.dlitz.net>
-X-Pgp-Agent: GPGMail d55 (v55, Leopard)
-X-Mailer: Apple Mail (2.930.3)
-Status: RO
-Content-Length: 869
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On Feb 28, 2009, at 9:45 PM, Dwayne C. Litzenberger wrote:
-
-> I am the new maintainer of the Python Cryptography Toolkit, and I am =20=
-
-> working on a new release at http://www.pycrypto.org/.
-
-Great!  I'm glad to see someone taking up the mantle of this important =20=
-
-Python library.
-
-> I understand that you have made contributions to PyCrypto.  May I, =20
-> on your behalf, dedicate to the public domain all your contributions =20=
-
-> to PyCrypto, with the following notice?
-
-Absolutely yes.
-
-Cheers,
-Barry
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.9 (Darwin)
-
-iQCVAwUBSawJbnEjvBPtnXfVAQLZjgP/ecG+JdZwNvPJRfsa6rhY6+MHLDHI6agk
-evkJnSJQAcVHlZnVlVeR5IXgvDUMakZjU4SOV7MqkhsKA9lIet7PaD9VSYgn3ra5
-gElwI2DQDoOy5GExXMm74gqrrb1PCCbCRmpaYNo+DZohwHkeFBjbwDRA3wItOrH7
-SK4w9VBJtfY=3D
-=3DQduY
------END PGP SIGNATURE-----
-
-
-
-===================================================
-From dlitz@dlitz.net Sat Feb 28 23:24:14 2009
-Date: Sat, 28 Feb 2009 23:24:14 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Jeethu Rao <jeethurao@gmail.com>
-Subject: PyCrypto license clarification
-Message-ID: <20090301042414.GA15122@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2513
-
-Hi Jeethu,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am 
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's 
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-The text in the current LICENSE file (quoted below) is not entirely clear 
-on the point of whether distributing modified versions is allowed.  (It 
-says "distribute and use", but not "modify".)
-
- ===================================================================
- Distribute and use freely; there are no restrictions on further
- dissemination and usage except those imposed by the laws of your
- country of residence.  This software is provided "as is" without
- warranty of fitness for use or suitability for any purpose, express
- or implied. Use at your own risk or not at all.
- ===================================================================
-
- Incorporating the code into commercial products is permitted; you do
- not have to make source available or contribute your changes back
- (though that would be nice).
-
- --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a 
-clearer licensing regime.  I am asking as many copyright holders as I can 
-find if I can release PyCrypto under something clearer and more standard.  
-Below, I have quoted a public domain dedication that was recommended in 
-_Intellectual Property and Open Source: A Practical Guide to Protecting 
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
-Pointer, and Wim Lewis, and they have all approved the following text for 
-their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your 
-behalf, dedicate to the public domain all your contributions to PyCrypto, 
-with the following notice?
-
- =======================================================================
- The contents of this file are dedicated to the public domain.  To the
- extent that dedication to the public domain is not available, everyone
- is granted a worldwide, perpetual, royalty-free, non-exclusive license
- to exercise all rights associated with the contents of this file for
- any purpose whatsoever.  No rights are reserved.
- =======================================================================
-
-Regards,
- - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-       Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From jeethurao@gmail.com Sun Mar  8 17:28:16 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <jeethurao@gmail.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 0CC83515D9
-    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 17:28:16 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 4E58F450CB
-    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 15:28:15 -0600 (CST)
-Received: (vmailmgr-postfix 5011 invoked by uid 1003);  8 Mar 2009 15:28:15 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: pass (gmail.com ... _spf.google.com: 209.85.198.249 is authorized to use 'jeethurao@gmail.com' in 'mfrom' identity (mechanism 'ip4:209.85.128.0/17' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="jeethurao@gmail.com"; helo=rv-out-0708.google.com; client-ip=209.85.198.249
-Received: from rv-out-0708.google.com (unknown [209.85.198.249])
-    by goedel.dlitz.net (Postfix) with ESMTP id 3C097449E7
-    for <dlitz@dlitz.net>; Sun,  8 Mar 2009 15:28:12 -0600 (CST)
-Received: by rv-out-0708.google.com with SMTP id k29so1252333rvb.26
-        for <dlitz@dlitz.net>; Sun, 08 Mar 2009 14:27:56 -0700 (PDT)
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
-        d=gmail.com; s=gamma;
-        h=domainkey-signature:mime-version:received:in-reply-to:references
-         :date:message-id:subject:from:to:content-type;
-        bh=YWy9U32WCU/ksRqukHwaOZyJQBUs4Yvt5mI20U6mI/g=;
-        b=oMjI22lIxYiJKge2zNJW3rRiUi9LqFXmey5Wp0pLItuNF+X3duyfhopTuBAKw7MwVY
-         B5E6VQuGVEyzBbNsctyVgq6DhQiQtouCLZymSViobmuDmKn5DtUKoxpDk0xCxQmHYaas
-         L9/A6D3/J66kKrNBgX9mc0GPcZTviVFYkPR0Q=
-DomainKey-Signature: a=rsa-sha1; c=nofws;
-        d=gmail.com; s=gamma;
-        h=mime-version:in-reply-to:references:date:message-id:subject:from:to
-         :content-type;
-        b=Ym7CStuDEfJKay1AJyWZkZmJA1lnTcwCG6akBHAXLld8ht6PFcmlsffzZG8hJCIVJ8
-         vljqcT+G6cywVTBw1pyGX7ECYzr0+vhGvgdpACGrs24zikHfpSSd5GFogzXaLVvGVH8p
-         bqSHpfWKKtEP4gAQkiNeIq1GNtR2j8U3fnRyg=
-MIME-Version: 1.0
-Received: by 10.141.176.13 with SMTP id d13mr2656028rvp.231.1236547674677; 
-    Sun, 08 Mar 2009 14:27:54 -0700 (PDT)
-In-Reply-To: <20090301042414.GA15122@rivest.dlitz.net>
-References: <20090301042414.GA15122@rivest.dlitz.net>
-Date: Mon, 9 Mar 2009 02:57:54 +0530
-Message-ID: <e3c0ddba0903081427p3a7b1058g417dd8624df68d6d@mail.gmail.com>
-Subject: Re: PyCrypto license clarification
-From: Jeethu Rao <jeethurao@gmail.com>
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Content-Type: multipart/alternative; boundary=000e0cd209d0e5a3d40464a23054
-Status: RO
-Content-Length: 7668
-
---000e0cd209d0e5a3d40464a23054
-Content-Type: text/plain; charset=ISO-8859-1
-Content-Transfer-Encoding: 7bit
-
-Hi Dwayne,My contribution to pycrypto are very very minimal (The sha256
-module, IIRC).
-I'd be fine with the public domain license for PyCrypto.
-
-Jeethu Rao
-PS: Apologies for the delay in my response.
-I don't really check this email address all that often,
-please direct any further correspondence to jeethu@jeethurao.com
-
-On Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <dlitz@dlitz.net>wrote:
-
-> Hi Jeethu,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
->
-> People often ask me what license PyCrypto is covered by, if it's
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  The
-> text in the current LICENSE file (quoted below) is not entirely clear on the
-> point of whether distributing modified versions is allowed.  (It says
-> "distribute and use", but not "modify".)
->
-> ===================================================================
-> Distribute and use freely; there are no restrictions on further
-> dissemination and usage except those imposed by the laws of your
-> country of residence.  This software is provided "as is" without
-> warranty of fitness for use or suitability for any purpose, express
-> or implied. Use at your own risk or not at all.
-> ===================================================================
->
-> Incorporating the code into commercial products is permitted; you do
-> not have to make source available or contribute your changes back
-> (though that would be nice).
->
-> --amk                                                    (www.amk.ca)
->
-> For the next PyCrypto release, I would like to take steps to move toward a
-> clearer licensing regime.  I am asking as many copyright holders as I can
-> find if I can release PyCrypto under something clearer and more standard.
->  Below, I have quoted a public domain dedication that was recommended in
-> _Intellectual Property and Open Source: A Practical Guide to Protecting
-> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-> Pointer, and Wim Lewis, and they have all approved the following text for
-> their contributions.
->
-> I understand that you have made contributions to PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your contributions to PyCrypto,
-> with the following notice?
->
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
-> Regards,
-> - Dwayne
->
-> --
-> Dwayne C. Litzenberger <dlitz@dlitz.net>
->      Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->
-
-
-
--- 
-Jeethu Rao
-
---000e0cd209d0e5a3d40464a23054
-Content-Type: text/html; charset=ISO-8859-1
-Content-Transfer-Encoding: quoted-printable
-
-Hi Dwayne,<div>My contribution to pycrypto are very very minimal (The sha25=
-6 module, IIRC).</div><div>I&#39;d be fine with the public domain license f=
-or PyCrypto.</div><div><br></div><div>Jeethu Rao</div><div>PS: Apologies fo=
-r the delay in my response.=A0</div>
-<div>I don&#39;t really check this email address all that often,</div><div>=
-please direct any further correspondence to <a href=3D"mailto:jeethu@jeethu=
-rao.com">jeethu@jeethurao.com</a><br><div><br><div class=3D"gmail_quote">On=
- Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <span dir=3D"ltr">&lt;=
-<a href=3D"mailto:dlitz@dlitz.net">dlitz@dlitz.net</a>&gt;</span> wrote:<br=
->
-<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
-x #ccc solid;padding-left:1ex;">Hi Jeethu,<br>
-<br>
-I am the new maintainer of the Python Cryptography Toolkit, and I am workin=
-g on a new release at <a href=3D"http://www.pycrypto.org/" target=3D"_blank=
-">http://www.pycrypto.org/</a>.<br>
-<br>
-People often ask me what license PyCrypto is covered by, if it&#39;s GPL-co=
-mpatible, etc. =A0Right now, I&#39;m not really sure what to tell them. =A0=
-The text in the current LICENSE file (quoted below) is not entirely clear o=
-n the point of whether distributing modified versions is allowed. =A0(It sa=
-ys &quot;distribute and use&quot;, but not &quot;modify&quot;.)<br>
-
-<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-Distribute and use freely; there are no restrictions on further<br>
-dissemination and usage except those imposed by the laws of your<br>
-country of residence. =A0This software is provided &quot;as is&quot; withou=
-t<br>
-warranty of fitness for use or suitability for any purpose, express<br>
-or implied. Use at your own risk or not at all.<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-<br>
-Incorporating the code into commercial products is permitted; you do<br>
-not have to make source available or contribute your changes back<br>
-(though that would be nice).<br>
-<br>
---amk =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
-=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(<a href=3D"http://www.amk.ca" target=3D=
-"_blank">www.amk.ca</a>)<br>
-<br>
-For the next PyCrypto release, I would like to take steps to move toward a =
-clearer licensing regime. =A0I am asking as many copyright holders as I can=
- find if I can release PyCrypto under something clearer and more standard. =
-=A0Below, I have quoted a public domain dedication that was recommended in =
-_Intellectual Property and Open Source: A Practical Guide to Protecting Cod=
-e_, by Van Lindberg. =A0I have already contacted A. M. Kuchling, Robey Poin=
-ter, and Wim Lewis, and they have all approved the following text for their=
- contributions.<br>
-
-<br>
-I understand that you have made contributions to PyCrypto. =A0May I, on you=
-r behalf, dedicate to the public domain all your contributions to PyCrypto,=
- with the following notice?<br>
-<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-The contents of this file are dedicated to the public domain. =A0To the<br>
-extent that dedication to the public domain is not available, everyone<br>
-is granted a worldwide, perpetual, royalty-free, non-exclusive license<br>
-to exercise all rights associated with the contents of this file for<br>
-any purpose whatsoever. =A0No rights are reserved.<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-<br>
-Regards,<br>
-- Dwayne<br><font color=3D"#888888">
-<br>
--- <br>
-Dwayne C. Litzenberger &lt;<a href=3D"mailto:dlitz@dlitz.net" target=3D"_bl=
-ank">dlitz@dlitz.net</a>&gt;<br>
- =A0 =A0 =A0Key-signing key =A0 - 19E1 1FE8 B3CF F273 ED17 =A04A24 928C EC1=
-3 39C2 5CF7<br>
-</font></blockquote></div><br><br clear=3D"all"><br>-- <br>Jeethu Rao<br>
-</div></div>
-
---000e0cd209d0e5a3d40464a23054--
-
-
-=======================================================
-From dlitz@dlitz.net Mon May  4 22:49:14 2009
-Date: Mon, 4 May 2009 22:49:14 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Joris Bontje <joris@bontje.nl>
-Subject: PyCrypto license clarification
-Message-ID: <20090505024914.GA9219@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2553
-
-Hi Joris,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-  ===================================================================
-  Distribute and use freely; there are no restrictions on further
-  dissemination and usage except those imposed by the laws of your
-  country of residence.  This software is provided "as is" without
-  warranty of fitness for use or suitability for any purpose, express
-  or implied. Use at your own risk or not at all.
-  ===================================================================
-
-  Incorporating the code into commercial products is permitted; you do
-  not have to make source available or contribute your changes back
-  (though that would be nice).
-
-  --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
-have all approved the following dedication for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your
-behalf, dedicate to the public domain all your contributions to PyCrypto,
-with the following notice?
-
-  =======================================================================
-  The contents of this file are dedicated to the public domain.  To the
-  extent that dedication to the public domain is not available, everyone
-  is granted a worldwide, perpetual, royalty-free, non-exclusive license
-  to exercise all rights associated with the contents of this file for
-  any purpose whatsoever.  No rights are reserved.
-  =======================================================================
-
-Regards,
- - Dwayne
-
---
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From joris@bontje.nl Tue May  5 03:08:32 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <joris@bontje.nl>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 7AA4B9E5078
-    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 03:08:32 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 2315B40583
-    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 01:08:32 -0600 (CST)
-Received: (vmailmgr-postfix 16890 invoked by uid 1003);  5 May 2009 01:08:32 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (bontje.nl: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="joris@bontje.nl"; helo=smtp6.versatel.nl; client-ip=62.58.50.97
-Received: from smtp6.versatel.nl (smtp6.versatel.nl [62.58.50.97])
-    by goedel.dlitz.net (Postfix) with ESMTP id 2D76A4052C
-    for <dlitz@dlitz.net>; Tue,  5 May 2009 01:08:30 -0600 (CST)
-Received: (qmail 4224 invoked by uid 0); 5 May 2009 07:08:25 -0000
-Received: from qmail06.zonnet.nl (HELO dell062.admin.zonnet.nl) ([10.170.1.123])
-          (envelope-sender <joris@bontje.nl>)
-          by 10.170.1.96 (qmail-ldap-1.03) with SMTP
-          for < >; 5 May 2009 07:08:25 -0000
-Received: by dell062.admin.zonnet.nl (Postfix, from userid 33)
-    id 9BE9B15759B; Tue,  5 May 2009 09:08:25 +0200 (CEST)
-Received: from firewall66.interaccess.nl (firewall66.interaccess.nl
-    [193.173.35.66]) by www.webmail.vuurwerk.nl (Horde MIME library) with HTTP;
-    Tue, 05 May 2009 09:08:25 +0200
-Message-ID: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-Date: Tue, 05 May 2009 09:08:25 +0200
-From: joris@bontje.nl
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Subject: Re: PyCrypto license clarification
-References: <20090505024914.GA9219@rivest.dlitz.net>
-In-Reply-To: <20090505024914.GA9219@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain;
-    charset=ISO-8859-1;
-    format="flowed"
-Content-Disposition: inline
-Content-Transfer-Encoding: 7bit
-User-Agent: Internet Messaging Program (IMP) H3 (4.1.3)
-Status: RO
-X-Status: A
-Content-Length: 3488
-
-Hi Dwayne,
-
-Thanks for taking over the PyCrypto library and putting in the required 
-effort to keep this going.
-I was very excited to read that it is now one of the installed 
-libraries for Google AppsEngine!
-
-You have my full permission to dedicate all my contributions to 
-PyCrypto to the public domain with your suggested notice:
-=======================================================================
-The contents of this file are dedicated to the public domain.  To the
-extent that dedication to the public domain is not available, everyone
-is granted a worldwide, perpetual, royalty-free, non-exclusive license
-to exercise all rights associated with the contents of this file for
-any purpose whatsoever.  No rights are reserved.
-=======================================================================
-
-
-Regards,
-Joris
-
-Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
-
-> Hi Joris,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
->
-> People often ask me what license PyCrypto is covered by, if it's
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-> The text in the current LICENSE file (quoted below) is not entirely clear
-> on the point of whether distributing modified versions is allowed.  (It
-> says "distribute and use", but not "modify".)
->
-> ===================================================================
-> Distribute and use freely; there are no restrictions on further
-> dissemination and usage except those imposed by the laws of your
-> country of residence.  This software is provided "as is" without
-> warranty of fitness for use or suitability for any purpose, express
-> or implied. Use at your own risk or not at all.
-> ===================================================================
->
-> Incorporating the code into commercial products is permitted; you do
-> not have to make source available or contribute your changes back
-> (though that would be nice).
->
-> --amk                                                    (www.amk.ca)
->
-> For the next PyCrypto release, I would like to take steps to move toward a
-> clearer licensing regime.  I am asking as many copyright holders as I can
-> find if I can release PyCrypto under something clearer and more standard.
-> Below, I have quoted a public domain dedication that was recommended in
-> _Intellectual Property and Open Source: A Practical Guide to Protecting
-> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
-> have all approved the following dedication for their contributions.
->
-> I understand that you have made contributions to PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your contributions to PyCrypto,
-> with the following notice?
->
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
-> Regards,
-> - Dwayne
->
-> --
-> Dwayne C. Litzenberger <dlitz@dlitz.net>
-> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-
-
-From dlitz@dlitz.net Tue May  5 17:53:47 2009
-Date: Tue, 5 May 2009 17:53:47 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: joris@bontje.nl
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090505215347.GB9933@rivest.dlitz.net>
-References: <20090505024914.GA9219@rivest.dlitz.net> <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-In-Reply-To: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3863
-
-Excellent!  Thank you!
-
-On Tue, May 05, 2009 at 09:08:25AM +0200, joris@bontje.nl wrote:
-> Hi Dwayne,
->
-> Thanks for taking over the PyCrypto library and putting in the required 
-> effort to keep this going.
-> I was very excited to read that it is now one of the installed libraries 
-> for Google AppsEngine!
->
-> You have my full permission to dedicate all my contributions to PyCrypto to 
-> the public domain with your suggested notice:
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
->
-> Regards,
-> Joris
->
-> Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
->
->> Hi Joris,
->>
->> I am the new maintainer of the Python Cryptography Toolkit, and I am
->> working on a new release at http://www.pycrypto.org/.
->>
->> People often ask me what license PyCrypto is covered by, if it's
->> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
->> The text in the current LICENSE file (quoted below) is not entirely clear
->> on the point of whether distributing modified versions is allowed.  (It
->> says "distribute and use", but not "modify".)
->>
->> ===================================================================
->> Distribute and use freely; there are no restrictions on further
->> dissemination and usage except those imposed by the laws of your
->> country of residence.  This software is provided "as is" without
->> warranty of fitness for use or suitability for any purpose, express
->> or implied. Use at your own risk or not at all.
->> ===================================================================
->>
->> Incorporating the code into commercial products is permitted; you do
->> not have to make source available or contribute your changes back
->> (though that would be nice).
->>
->> --amk                                                    (www.amk.ca)
->>
->> For the next PyCrypto release, I would like to take steps to move toward a
->> clearer licensing regime.  I am asking as many copyright holders as I can
->> find if I can release PyCrypto under something clearer and more standard.
->> Below, I have quoted a public domain dedication that was recommended in
->> _Intellectual Property and Open Source: A Practical Guide to Protecting
->> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
->> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
->> have all approved the following dedication for their contributions.
->>
->> I understand that you have made contributions to PyCrypto.  May I, on your
->> behalf, dedicate to the public domain all your contributions to PyCrypto,
->> with the following notice?
->>
->> =======================================================================
->> The contents of this file are dedicated to the public domain.  To the
->> extent that dedication to the public domain is not available, everyone
->> is granted a worldwide, perpetual, royalty-free, non-exclusive license
->> to exercise all rights associated with the contents of this file for
->> any purpose whatsoever.  No rights are reserved.
->> =======================================================================
->>
->> Regards,
->> - Dwayne
->>
->> --
->> Dwayne C. Litzenberger <dlitz@dlitz.net>
->> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->
->
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
-
-==========================================================
-Date: Sun, 23 Nov 2008 15:54:35 -0800
-From: Wim Lewis <wiml@hhhh.org>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Cc: Wim Lewis <wiml@hhhh.org>
-Message-Id: <9D5C3135-7414-47D7-9D41-0AC6C3A84D97@hhhh.org>
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On November 23, 2008, you wrote:
->Hi Wim,
->
->I am the new maintainer of the Python Cryptography Toolkit, and I am
->working on a new release at http://www.pycrypto.org/.
->
->I understand that you have made contributions to PyCrypto. May I, on
->your behalf, dedicate to the public domain all your contributions to
->PyCrypto, with the following notice?
->
->   =======================================================================
->   The contents of this file are dedicated to the public domain.  To the
->   extent that dedication to the public domain is not available, everyone
->   is granted a worldwide, perpetual, royalty-free, non-exclusive license
->   to exercise all rights associated with the contents of this file for
->   any purpose whatsoever.  No rights are reserved.
->   =======================================================================
-
-Certainly! I think the only code of mine in PyCrypto is the CAST-5 / CAST-128
-implementation, which already has a public-domain notice at the top of
-the file. But I am happy to have that, any any other code of mine that
-might have wandered in there under an unclear open sourcish license,
-distributed under the public-domain dedication you quote.
-
-Wim.
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.6 (Darwin)
-
-iQCVAwUBSSnnAl8UnN8n93LBAQLp/gQAhr7x8Av1mstc2kxEJDWTm26PTAZxMz4B
-FektbDOzkxgc5580MGGeeX/MVn8aw+1BHg0YD85gsntlDzkcQtb+BR/xAvJ5zKyA
-J/Mn/I+I6ekJQ3juh8IPHLAduOXM9Rtguas/yR+Doaq0xOPKoBx+/5+t1lLJtBcZ
-wrPEa9Oui9s=
-=zSY9
------END PGP SIGNATURE-----
-
-
-
-==========================================================
-From dlitz@dlitz.net Sat Apr 18 09:14:20 2009
-Date: Sat, 18 Apr 2009 09:14:20 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Mark Moraes <moraes@computer.org>
-Subject: PyCrypto license clarification
-Message-ID: <20090418131419.GA14494@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2635
-
-Hi Mark,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-       ===================================================================
-       Distribute and use freely; there are no restrictions on further
-       dissemination and usage except those imposed by the laws of your
-       country of residence.  This software is provided "as is" without
-       warranty of fitness for use or suitability for any purpose, express
-       or implied. Use at your own risk or not at all.
-       ===================================================================
-
-       Incorporating the code into commercial products is permitted; you do
-       not have to make source available or contribute your changes back
-       (though that would be nice).
-
-       --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they have all
-approved the following dedication for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your
-behalf, dedicate to the public domain all your contributions to PyCrypto,
-with the following notice?
-
-       =======================================================================
-       The contents of this file are dedicated to the public domain.  To the
-       extent that dedication to the public domain is not available, everyone
-       is granted a worldwide, perpetual, royalty-free, non-exclusive license
-       to exercise all rights associated with the contents of this file for
-       any purpose whatsoever.  No rights are reserved.
-       =======================================================================
-
-Regards,
-    - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-    Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From markmoraes@yahoo.com Mon Apr 20 19:25:37 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <markmoraes@yahoo.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 5D9AE984FDD
-    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 19:25:37 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id DE41F4025F
-    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
-Received: (vmailmgr-postfix 7604 invoked by uid 1003); 20 Apr 2009 17:25:36 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (yahoo.com: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="markmoraes@yahoo.com"; helo=web32405.mail.mud.yahoo.com; client-ip=68.142.207.198
-Received: from web32405.mail.mud.yahoo.com (web32405.mail.mud.yahoo.com [68.142.207.198])
-    by goedel.dlitz.net (Postfix) with SMTP id B5EAF401EE
-    for <dlitz@dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
-Received: (qmail 34697 invoked by uid 60001); 20 Apr 2009 23:25:33 -0000
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1240269933; bh=OvxqbYnCg7R6tUN3YmlgFURM3CuHh1JeHyXhDzkaThU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=F2h2bFzpQxyKFZ8BhenniyupGw4Zvlekb9BSk91qKU+51W/TkSGBij5YZIhkLQdkQk0qLz5f4g8dT6bOME3sEY1j10hlx0K0u2UD0yoYTINBCmsdMQRoJ7ph9bmt+p/EJhRpe+FiV6aoLV0FONWiHfGDghPT1dulWXfVTqgB2aU=
-DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
-  s=s1024; d=yahoo.com;
-  h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
-  b=r6RShFF5VzQLg+9tcn1xKuo4Rs4IVvXF6fdqOpQrMyRCxeFooebhuTE35grGqlomOJLwM0+mZwRb6rGkDj763caOAlo8Ect/qlADW5izXfmVQaDchTbTqmpsJBmQnTQs9iZ+InrG+3UIwtUSGfX7fhEWmI9P/HBzxf9Wp4b3jeo=;
-Message-ID: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-X-YMail-OSG: FrK8aWMVM1mFJtLpMGbUbCLjbUQC.i.JkIAKUHSFsFn7t9PbtewAewXJ2uhZGCOlGCX6oVnG3u.CgqzAffY4vZSnfTT8wnCkzZNZ_g6k.XUc3ipo_6e.92TXl4p8MxDGAf1tpNF5nXPwcQ7aREs7jGoWWVJYVytp50clsUFSHzf7Zbpa8P1Yoe_xSzf3OAgRSh5fCrbFCC8sHPCuwrL3YhasbtHmkWffteSS.x6gEcBaxf03oz4FeDb5mpJ54g11Xonq8h_TmzX9g84Bin9g_3fJ4WSXm6g6.tohLyfXcUxoz4j036wyWpTKPrWEzIUQaN83Sv_bj_Ghxw--
-Received: from [69.124.140.74] by web32405.mail.mud.yahoo.com via HTTP; Mon, 20 Apr 2009 16:25:32 PDT
-X-Mailer: YahooMailClassic/5.2.15 YahooMailWebService/0.7.289.1
-Date: Mon, 20 Apr 2009 16:25:32 -0700 (PDT)
-From: M Moraes <markmoraes@yahoo.com>
-Reply-To: moraes@computer.org
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii
-Status: RO
-X-Status: A
-Content-Length: 3222
-
-
-Hi Dwayne.
-
-Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
-
-Regards,
-Mark.
-
---- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
-
-> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
-> Subject: PyCrypto license clarification
-> To: "Mark Moraes" <moraes@computer.org>
-> Date: Saturday, April 18, 2009, 9:14 AM
-> Hi Mark,
-> 
-> I am the new maintainer of the Python Cryptography Toolkit,
-> and I am
-> working on a new release at http://www.pycrypto.org/.
-> 
-> People often ask me what license PyCrypto is covered by, if
-> it's
-> GPL-compatible, etc.  Right now, I'm not really sure
-> what to tell them.
-> The text in the current LICENSE file (quoted below) is not
-> entirely clear
-> on the point of whether distributing modified versions is
-> allowed.  (It
-> says "distribute and use", but not "modify".)
-> 
->      
-> ===================================================================
->       Distribute and use freely; there are
-> no restrictions on further
->       dissemination and usage except those
-> imposed by the laws of your
->       country of residence.  This
-> software is provided "as is" without
->       warranty of fitness for use or
-> suitability for any purpose, express
->       or implied. Use at your own risk or
-> not at all.
->      
-> ===================================================================
-> 
->       Incorporating the code into commercial
-> products is permitted; you do
->       not have to make source available or
-> contribute your changes back
->       (though that would be nice).
-> 
->       --amk       
->                
->                
->             (www.amk.ca)
-> 
-> For the next PyCrypto release, I would like to take steps
-> to move toward a
-> clearer licensing regime.  I am asking as many
-> copyright holders as I can
-> find if I can release PyCrypto under something clearer and
-> more standard.
-> Below, I have quoted a public domain dedication that was
-> recommended in
-> _Intellectual Property and Open Source: A Practical Guide
-> to Protecting
-> Code_, by Van Lindberg.  I have already contacted A.
-> M. Kuchling, Robey
-> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
-> have all
-> approved the following dedication for their contributions.
-> 
-> I understand that you have made contributions to
-> PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your
-> contributions to PyCrypto,
-> with the following notice?
-> 
->      
-> =======================================================================
->       The contents of this file are
-> dedicated to the public domain.  To the
->       extent that dedication to the public
-> domain is not available, everyone
->       is granted a worldwide, perpetual,
-> royalty-free, non-exclusive license
->       to exercise all rights associated with
-> the contents of this file for
->       any purpose whatsoever.  No
-> rights are reserved.
->      
-> =======================================================================
-> 
-> Regards,
->    - Dwayne
-> 
-> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
->    Key-signing key   - 19E1
-> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-> 
-
-
-From dlitz@dlitz.net Mon Apr 20 20:01:37 2009
-Date: Mon, 20 Apr 2009 20:01:37 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: moraes@computer.org
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090421000137.GA29012@rivest.dlitz.net>
-References: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-In-Reply-To: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3677
-
-Thanks a lot, and don't worry about not responding to previous emails.  I 
-do that too much myself. :)
-
-On Mon, Apr 20, 2009 at 04:25:32PM -0700, M Moraes wrote:
->
->Hi Dwayne.
->
->Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
->
->Regards,
->Mark.
->
->--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
->
->> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
->> Subject: PyCrypto license clarification
->> To: "Mark Moraes" <moraes@computer.org>
->> Date: Saturday, April 18, 2009, 9:14 AM
->> Hi Mark,
->> 
->> I am the new maintainer of the Python Cryptography Toolkit,
->> and I am
->> working on a new release at http://www.pycrypto.org/.
->> 
->> People often ask me what license PyCrypto is covered by, if
->> it's
->> GPL-compatible, etc.  Right now, I'm not really sure
->> what to tell them.
->> The text in the current LICENSE file (quoted below) is not
->> entirely clear
->> on the point of whether distributing modified versions is
->> allowed.  (It
->> says "distribute and use", but not "modify".)
->> 
->>      
->> ===================================================================
->>       Distribute and use freely; there are
->> no restrictions on further
->>       dissemination and usage except those
->> imposed by the laws of your
->>       country of residence.  This
->> software is provided "as is" without
->>       warranty of fitness for use or
->> suitability for any purpose, express
->>       or implied. Use at your own risk or
->> not at all.
->>      
->> ===================================================================
->> 
->>       Incorporating the code into commercial
->> products is permitted; you do
->>       not have to make source available or
->> contribute your changes back
->>       (though that would be nice).
->> 
->>       --amk       
->>                
->>                
->>             (www.amk.ca)
->> 
->> For the next PyCrypto release, I would like to take steps
->> to move toward a
->> clearer licensing regime.  I am asking as many
->> copyright holders as I can
->> find if I can release PyCrypto under something clearer and
->> more standard.
->> Below, I have quoted a public domain dedication that was
->> recommended in
->> _Intellectual Property and Open Source: A Practical Guide
->> to Protecting
->> Code_, by Van Lindberg.  I have already contacted A.
->> M. Kuchling, Robey
->> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
->> have all
->> approved the following dedication for their contributions.
->> 
->> I understand that you have made contributions to
->> PyCrypto.  May I, on your
->> behalf, dedicate to the public domain all your
->> contributions to PyCrypto,
->> with the following notice?
->> 
->>      
->> =======================================================================
->>       The contents of this file are
->> dedicated to the public domain.  To the
->>       extent that dedication to the public
->> domain is not available, everyone
->>       is granted a worldwide, perpetual,
->> royalty-free, non-exclusive license
->>       to exercise all rights associated with
->> the contents of this file for
->>       any purpose whatsoever.  No
->> rights are reserved.
->>      
->> =======================================================================
->> 
->> Regards,
->>    - Dwayne
->> 
->> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
->>    Key-signing key   - 19E1
->> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->> 
->
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
-
-
-
-==========================================================
-Date: Mon, 16 Feb 2009 12:58:00 -0800
-From: Robey Pointer <robey@lag.net>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Received-SPF: pass (goedel.dlitz.net: domain of robey@lag.net designates 69.61.78.186 as permitted sender)
-Message-Id: <F469A078-6305-4484-BEA8-F4EC38A4154F@lag.net>
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On 23 Nov 2008, at 07:42, Dwayne C. Litzenberger wrote:
-
-> For the next PyCrypto release, I would like to take steps to move  
-> toward a clearer licensing regime.  I am asking as many copyright  
-> holders as I can find if I can release PyCrypto under something  
-> clearer and more standard.  Below, I have quoted a public domain  
-> dedication that was recommended in _Intellectual Property and Open  
-> Source: A Practical Guide to Protecting Code_, by Van Lindberg.  I  
-> have already contacted A. M. Kuchling, and he has approved the  
-> following dedication for his contributions.
->
-> May I, on your behalf, dedicate to the public domain all your  
-> contributions to PyCrypto, with the following notice?
->
->     
-> = 
-> ======================================================================
->    The contents of this file are dedicated to the public domain.  To  
-> the
->    extent that dedication to the public domain is not available,  
-> everyone
->    is granted a worldwide, perpetual, royalty-free, non-exclusive  
-> license
->    to exercise all rights associated with the contents of this file  
-> for
->    any purpose whatsoever.  No rights are reserved.
->     
-> = 
-> ======================================================================
->
-
-In case I haven't replied to this yet: Yes, this is fine with me.
-
-robey
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.8 (Darwin)
-
-iEYEARECAAYFAkmZ01gACgkQQQDkKvyJ6cOLvQCfQmYYuVODvIlyLg0hgCI9LAbQ
-SH8AoLJgaq1lIi7/ZYDc+/Cd8VO0xLbr
-=Mv6g
------END PGP SIGNATURE-----
-
-
-
-==========================================================
-From dlitz@dlitz.net Sun Aug  2 21:48:25 2009
-Date: Sun, 2 Aug 2009 21:48:25 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Paul Swartz <paulswartz@gmail.com>
-Subject: PyCrypto license clarification
-Message-ID: <20090803014825.GA1326@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2631
-
-Hi Paul,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-   ===================================================================
-   Distribute and use freely; there are no restrictions on further
-   dissemination and usage except those imposed by the laws of your
-   country of residence.  This software is provided "as is" without
-   warranty of fitness for use or suitability for any purpose, express
-   or implied. Use at your own risk or not at all.
-   ===================================================================
-
-   Incorporating the code into commercial products is permitted; you do
-   not have to make source available or contribute your changes back
-   (though that would be nice).
-
-   --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, Joris Bontje, and Mark 
-Moraes, and they have all approved the following dedication for their 
-contributions.
-
-I understand that you have made contributions to PyCrypto, under nickname 
-"z3p" and/or other names.  May I, on your behalf, dedicate to the public 
-domain all your contributions to PyCrypto, with the following notice?
-
-   =======================================================================
-   The contents of this file are dedicated to the public domain.  To the
-   extent that dedication to the public domain is not available, everyone
-   is granted a worldwide, perpetual, royalty-free, non-exclusive license
-   to exercise all rights associated with the contents of this file for
-   any purpose whatsoever.  No rights are reserved.
-   =======================================================================
-
-Regards,
-  - Dwayne
-
---
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-   Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From paulswartz@gmail.com Mon Aug  3 12:14:07 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <paulswartz@gmail.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 30B9D984FC4
-    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 12:14:07 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id AD9AE81068
-    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 10:14:06 -0600 (CST)
-Received: (vmailmgr-postfix 32055 invoked by uid 1003);  3 Aug 2009 10:14:06 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: pass (gmail.com ... _spf.google.com: 72.14.220.159 is authorized to use 'paulswartz@gmail.com' in 'mfrom' identity (mechanism 'ip4:72.14.192.0/18' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="paulswartz@gmail.com"; helo=fg-out-1718.google.com; client-ip=72.14.220.159
-Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159])
-    by goedel.dlitz.net (Postfix) with ESMTP id 4E63881066
-    for <dlitz@dlitz.net>; Mon,  3 Aug 2009 10:14:05 -0600 (CST)
-Received: by fg-out-1718.google.com with SMTP id d23so1076840fga.3
-        for <dlitz@dlitz.net>; Mon, 03 Aug 2009 09:14:04 -0700 (PDT)
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
-        d=gmail.com; s=gamma;
-        h=domainkey-signature:mime-version:received:in-reply-to:references
-         :from:date:message-id:subject:to:content-type
-         :content-transfer-encoding;
-        bh=A0RHBf0TnribKS5qOHJ3WYbkZ+b0cuPeuoKAvpApWcc=;
-        b=gyTqkRhKlHadFKIZCBWsRbnMNVDq1PWlJbyC0EvxPskaoHr3HAR96MWQNBePu/40Ac
-         Vn55qlIqTdom4e9zlUEE6MwZo9kqi/Qw0L/SLib0DlQeNqo/eHYqPmuVswltaYwNAyMJ
-         Y9++76rPGzqYdALsfvsmwv7Q3/bEmjVTr0tQE=
-DomainKey-Signature: a=rsa-sha1; c=nofws;
-        d=gmail.com; s=gamma;
-        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
-         :content-type:content-transfer-encoding;
-        b=jze7KSMkUGilfVCXKXaaXMi5NAtGdMQOtVZZfRNyGSy68xOd2sxefjyyig3EfT6Nv6
-         Q3opUMsT96Q6zjZND55w446kTh2uBTNz4d3NwIeEWJnG3xcliRQu/mXPFp8AzPI3CefL
-         1ornJLM1eQ2XyuZA73jem+SJtfdHUcSD1UhgI=
-MIME-Version: 1.0
-Received: by 10.239.157.147 with SMTP id q19mr601802hbc.61.1249316043185; Mon, 
-    03 Aug 2009 09:14:03 -0700 (PDT)
-In-Reply-To: <20090803014825.GA1326@rivest.dlitz.net>
-References: <20090803014825.GA1326@rivest.dlitz.net>
-From: Paul Swartz <paulswartz@gmail.com>
-Date: Mon, 3 Aug 2009 12:13:43 -0400
-Message-ID: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: quoted-printable
-Status: RO
-X-Status: A
-Content-Length: 1450
-
-On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wro=
-te:
-> Hi Paul,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
-
-That's great!
-
-> I understand that you have made contributions to PyCrypto, under nickname
-> "z3p" and/or other names. =C2=A0May I, on your behalf, dedicate to the pu=
-blic
-> domain all your contributions to PyCrypto, with the following notice?
->
-> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-> =C2=A0The contents of this file are dedicated to the public domain. =C2=
-=A0To the
-> =C2=A0extent that dedication to the public domain is not available, every=
-one
-> =C2=A0is granted a worldwide, perpetual, royalty-free, non-exclusive lice=
-nse
-> =C2=A0to exercise all rights associated with the contents of this file fo=
-r
-> =C2=A0any purpose whatsoever. =C2=A0No rights are reserved.
-> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-Yes, that's fine.  Good luck with the new release!
-
--p
---=20
-Paul Swartz
-paulswartz at gmail dot com
-http://paulswartz.net/
-AIM: z3penguin
-
-
-From dlitz@dlitz.net Mon Aug  3 14:35:01 2009
-Date: Mon, 3 Aug 2009 14:35:01 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Paul Swartz <paulswartz@gmail.com>
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090803183501.GA17472@rivest.dlitz.net>
-References: <20090803014825.GA1326@rivest.dlitz.net> <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=iso-8859-1; format=flowed
-Content-Disposition: inline
-Content-Transfer-Encoding: 8bit
-In-Reply-To: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 1250
-
-On Mon, Aug 03, 2009 at 12:13:43PM -0400, Paul Swartz wrote:
->On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wrote:
->> Hi Paul,
->>
->> I am the new maintainer of the Python Cryptography Toolkit, and I am
->> working on a new release at http://www.pycrypto.org/.
->
->That's great!
->
->> I understand that you have made contributions to PyCrypto, under nickname
->> "z3p" and/or other names. �May I, on your behalf, dedicate to the public
->> domain all your contributions to PyCrypto, with the following notice?
->>
->> �=======================================================================
->> �The contents of this file are dedicated to the public domain. �To the
->> �extent that dedication to the public domain is not available, everyone
->> �is granted a worldwide, perpetual, royalty-free, non-exclusive license
->> �to exercise all rights associated with the contents of this file for
->> �any purpose whatsoever. �No rights are reserved.
->> �=======================================================================
->
->Yes, that's fine.  Good luck with the new release!
-
-Perfect!  Thanks for the quick response!
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-
-
-==========================================================
-
-
- - -
- -
-

PyJWT - 1.4.0 -

- - - - - -
The MIT License (MIT)
-
-Copyright (c) 2015 José Padilla
-
-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.
- - -
- -
-

psycopg2 - 2.6.1 -

- - - -
psycopg2 and the LGPL
-=====================
-
-psycopg2 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 3 of the License, or
-(at your option) any later version.
-
-psycopg2 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.
-
-In addition, as a special exception, the copyright holders give
-permission to link this program with the OpenSSL library (or with
-modified versions of OpenSSL that use the same license as OpenSSL),
-and distribute linked combinations including the two.
-
-You must obey the GNU Lesser General Public License in all respects for
-all of the code used other than OpenSSL. If you modify file(s) with this
-exception, you may extend this exception to your version of the file(s),
-but you are not obligated to do so. If you do not wish to do so, delete
-this exception statement from your version. If you delete this exception
-statement from all source files in the program, then also delete it here.
-
-You should have received a copy of the GNU Lesser General Public License
-along with psycopg2 (see the doc/ directory.)
-If not, see .
-
-
-Alternative licenses
-====================
-
-If you prefer you can use the Zope Database Adapter ZPsycopgDA (i.e.,
-every file inside the ZPsycopgDA directory) user the ZPL license as
-published on the Zope web site, http://www.zope.org/Resources/ZPL.
-
-Also, the following BSD-like license applies (at your option) to the
-files following the pattern psycopg/adapter*.{h,c} and
-psycopg/microprotocol*.{h,c}:
-
- 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.
-
- - - -
		   GNU LESSER GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- 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.
-
-
-
-
-
-
-
-
-====================================================================
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- 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.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    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 <http://www.gnu.org/licenses/>.
-
-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:
-
-    <program>  Copyright (C) <year>  <name of author>
-    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
-<http://www.gnu.org/licenses/>.
-
-  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
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
-
-
-
-
- - -
- -
-

django-crispy-forms - 1.5.2 -

- - -
Copyright (c) 2009-2011 Miguel Araujo and contributors.
- - - - -
Copyright (c) 2009-2011 Miguel Araujo and 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.
- - -
- -
-

unicodecsv - 0.14.0 -

- - - - - -
Copyright 2010 Jeremy Dunck. 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 JEREMY DUNCK ``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 JEREMY DUNCK 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 views and conclusions contained in the software and documentation are those of the
-authors and should not be interpreted as representing official policies, either expressed
-or implied, of Jeremy Dunck.
-
- - -
- -
-

django-haystack - 2.4.0 -

- - - - - -
Copyright (c) 2009-2013, Daniel Lindsley.
-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 Haystack 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.
-
----
-
-Prior to April 17, 2009, this software was released under the MIT license.
-
- - -
- -
-

mock - 1.0.1 -

- - -
Copyright (c) 2003-2012, Michael Foord
- - - - -
Copyright (c) 2003-2012, Michael Foord
-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
-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.
-
- - -
- -
-

django-debreach - 1.2.1 -

- - -
Copyright (c) 2013, Luke Pomfrey
- - - - -
Copyright (c) 2013, Luke Pomfrey
-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.
- - -
- -
-

six - 1.9.0 -

- - -
Copyright (c) 2010-2011 Benjamin Peterson
- - - - -
Copyright (c) 2010-2011 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.
-
- - -
- -
-

setuptools - 18.3.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)
-
-    0.9.0 thru 1.2              1991-1995   CWI         yes
-    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
-    1.6             1.5.2       2000        CNRI        no
-    2.0             1.6         2000        BeOpen.com  no
-    1.6.1           1.6         2001        CNRI        yes (2)
-    2.1             2.0+1.6.1   2001        PSF         no
-    2.0.1           2.0+1.6.1   2001        PSF         yes
-    2.1.1           2.1+2.0.1   2001        PSF         yes
-    2.2             2.1.1       2001        PSF         yes
-    2.1.2           2.1.1       2002        PSF         yes
-    2.1.3           2.1.2       2002        PSF         yes
-    2.2.1           2.2         2002        PSF         yes
-    2.2.2           2.2.1       2002        PSF         yes
-    2.2.3           2.2.2       2003        PSF         yes
-    2.3             2.2.2       2002-2003   PSF         yes
-    2.3.1           2.3         2002-2003   PSF         yes
-    2.3.2           2.3.1       2002-2003   PSF         yes
-    2.3.3           2.3.2       2002-2003   PSF         yes
-    2.3.4           2.3.3       2004        PSF         yes
-    2.3.5           2.3.4       2005        PSF         yes
-    2.4             2.3         2004        PSF         yes
-    2.4.1           2.4         2005        PSF         yes
-    2.4.2           2.4.1       2005        PSF         yes
-    2.4.3           2.4.2       2006        PSF         yes
-    2.4.4           2.4.3       2006        PSF         yes
-    2.5             2.4         2006        PSF         yes
-    2.5.1           2.5         2007        PSF         yes
-    2.5.2           2.5.2       2008        PSF         yes
-
-Footnotes:
-
-(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 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.
-
-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-2005 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, Cambridge, UK.
-jseward@acm.org
-bzip2/libbzip2 version 1.0.3 of 15 February 2005
-
-
-This copy of Python includes a copy of db, which is licensed under the following terms:
-
-/*-
- * $Id: LICENSE,v 12.1 2005/06/16 20:20:10 bostic Exp $
- */
-
-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 Sleepycat Software by email at info@sleepycat.com, or on
-the Web at http://www.sleepycat.com.
-
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-/*
- * Copyright (c) 1990-2005
- *	Sleepycat Software.  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 SLEEPYCAT SOFTWARE ``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 SLEEPYCAT SOFTWARE
- * 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.
- */
-
-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-2005 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 (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. 
-
-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 (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.
-
- - -
- -
-

django-auth-ldap - 1.2.6 -

- - -
Copyright (c) 2009, Peter Sagerson
- - - - -
Copyright (c) 2009, Peter Sagerson
-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.
- - -
- -
-

python-ldap - 2.4.20 -

- - - - - -
-The python-ldap package is distributed under Python-style license.
-
-Standard disclaimer:
-   This software is made available by the author(s) to the public for free
-   and "as is".  All users of this free software are solely and entirely
-   responsible for their own choice and use of this software for their
-   own purposes.  By using this software, each user agrees that the
-   author(s) shall not be liable for damages of any kind in relation to
-   its use or performance. The author(s) do not warrant that this software
-   is fit for any purpose.
-
-$Id: LICENCE,v 1.1 2002/09/18 18:51:22 stroeder Exp $
-
- - -
- -
-

certifi - 2015.9.6.2 -

- - - - - - -
- -
-

model_mommy - 1.2.5 -

- - - -
Copyright 2011 Vanderson Mota
-
-   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.
-
- - - -
-                                 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
-
- - -
- -
-

paramiko - 1.15.2 -

- - - - - -
          GNU LESSER GENERAL PUBLIC LICENSE
-               Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
-     51 Franklin Street, Suite 500, Boston, MA  02110-1335  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.
-
-    <one line to give the library's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    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, Suite 500, Boston, MA  02110-1335  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.
-
-  <signature of Ty Coon>, 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
-
- - -
- -
-

celery - 3.1.18 -

- - - - - -
Copyright (c) 2015 Ask Solem & contributors.  All rights reserved.
-Copyright (c) 2012-2014 GoPivotal, Inc.  All rights reserved.
-Copyright (c) 2009, 2010, 2011, 2012 Ask Solem, and individual contributors.  All rights reserved.
-
-Celery is licensed under The BSD License (3 Clause, also known as
-the new BSD license).  The license is an OSI approved Open Source
-license and is GPL-compatible(1).
-
-The license text can also be found here:
-http://www.opensource.org/licenses/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 Ask Solem, 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 Ask Solem 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.
-
-Documentation License
-=====================
-
-The documentation portion of Celery (the rendered contents of the
-"docs" directory of a software distribution or checkout) is supplied
-under the Creative Commons Attribution-Noncommercial-Share Alike 3.0
-United States License as described by
-http://creativecommons.org/licenses/by-nc-sa/3.0/us/
-
-Footnotes
-=========
-(1) A GPL-compatible license makes it possible to
-    combine Celery with other software that is released
-    under the GPL, it does not mean that we're distributing
-    Celery under the GPL license.  The BSD license, unlike the GPL,
-    let you distribute a modified version without making your
-    changes open source.
- - -
- -
-

mockldap - 0.2.5 -

- - -
Copyright (c) 2013, Peter Sagerson
- - - - -
Copyright (c) 2013, Peter Sagerson
-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.
- - -
- -
-

Fabric - 1.10.2 -

- - -
Copyright (c) 2009-2014 Jeffrey E. Forcier
-Copyright (c) 2008-2009 Christian Vest Hansen
- - - - -
Copyright (c) 2009-2014 Jeffrey E. Forcier
-Copyright (c) 2008-2009 Christian Vest Hansen
-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.
-
- - -
- -
-

python-dateutil - 2.4.2 -

- - - - - -
dateutil - Extensions to the standard Python datetime module.
-
-Copyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net>
-Copyright (c) 2012-2014 - Tomi Pieviläinen <tomi.pievilainen@iki.fi>
-Copyright (c) 2014      - Yaron de Leeuw <me@jarondl.net>
-
-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 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.
-
- - -
- -
-

pycrypto - 2.6.1 -

- - - - - -
Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"):
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Previously, the copyright and/or licensing status of the Python
-Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous.  The
-original intention of Andrew M. Kuchling and other contributors has
-been to dedicate PyCrypto to the public domain, but that intention was
-not necessarily made clear in the original disclaimer (see
-LEGAL/copy/LICENSE.orig).
-
-Additionally, some files within PyCrypto had specified their own
-licenses that differed from the PyCrypto license itself.  For example,
-the original RIPEMD.c module simply had a copyright statement and
-warranty disclaimer, without clearly specifying any license terms.
-(An updated version on the author's website came with a license that
-contained a GPL-incompatible advertising clause.)
-
-To rectify this situation for PyCrypto 2.1, the following steps have
-been taken:
-
- 1. Obtaining explicit permission from the original contributors to
-    dedicate their contributions to the public domain if they have not
-    already done so.  (See the "LEGAL/copy/stmts" directory for
-    contributors' statements.)
-
- 2. Replacing some modules with clearly-licensed code from other
-    sources (e.g. the DES and DES3 modules were replaced with new ones
-    based on Tom St. Denis's public-domain LibTomCrypt library.)
-
- 3. Replacing some modules with code written from scratch (e.g. the
-    RIPEMD and Blowfish modules were re-implemented from their
-    respective algorithm specifications without reference to the old
-    implementations).
-
- 4. Removing some modules altogether without replacing them.
-
-To the best of our knowledge, with the exceptions noted below or
-within the files themselves, the files that constitute PyCrypto are in
-the public domain.  Most are distributed with the following notice:
-
-  The contents of this file are dedicated to the public domain.  To
-  the extent that dedication to the public domain is not available,
-  everyone is granted a worldwide, perpetual, royalty-free,
-  non-exclusive license to exercise all rights associated with the
-  contents of this file for any purpose whatsoever.
-  No rights are reserved.
-
-  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.
-
-Exception:
-
- - Portions of HMAC.py and setup.py are derived from Python 2.2, and
-   are therefore Copyright (c) 2001, 2002, 2003 Python Software
-   Foundation (All Rights Reserved).  They are licensed by the PSF
-   under the terms of the Python 2.2 license.  (See the file
-   LEGAL/copy/LICENSE.python-2.2 for details.)
-
-EXPORT RESTRICTIONS:
-
-Note that the export or re-export of cryptographic software and/or
-source code may be subject to regulation in your jurisdiction.
-
-
-
-==================================================================
-LICENSE.python-2.2
-LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
-LICENSE.libtom  LICENSE file from LibTomCrypt
-stmts/          Statements by contributors
-
-==================================================================
-LICENSE.python-2.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)
-
-    0.9.0 thru 1.2              1991-1995   CWI         yes
-    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
-    1.6             1.5.2       2000        CNRI        no
-    2.0             1.6         2000        BeOpen.com  no
-    1.6.1           1.6         2001        CNRI        no
-    2.1             2.0+1.6.1   2001        PSF         no
-    2.0.1           2.0+1.6.1   2001        PSF         yes
-    2.1.1           2.1+2.0.1   2001        PSF         yes
-    2.2             2.1.1       2001        PSF         yes
-    2.1.2           2.1.1       2002        PSF         yes
-    2.1.3           2.1.2       2002        PSF         yes
-    2.2.1           2.2         2002        PSF         yes
-    2.2.2           2.2.1       2002        PSF         yes
-    2.2.3           2.2.2       2003        PSF         yes
-
-Footnotes:
-
-(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.
-
-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
-===============================================================
-
-PSF LICENSE AGREEMENT FOR PYTHON 2.2.3
---------------------------------------
-
-1. This LICENSE AGREEMENT is between the Python Software Foundation
-("PSF"), and the Individual or Organization ("Licensee") accessing and
-otherwise using Python 2.2.3 software 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 2.2.3
-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 Python Software Foundation; All Rights Reserved" are
-retained in Python 2.2.3 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 2.2.3 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 2.2.3.
-
-4. PSF is making Python 2.2.3 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 2.2.3 WILL NOT
-INFRINGE ANY THIRD PARTY RIGHTS.
-
-5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
-2.2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
-A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.2.3,
-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 2.2.3, 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.
-
-
-===================================================================
-LICENSE.orig    Original (deprecated) license for the Python Cryptography Toolkit
-===================================================================
-Distribute and use freely; there are no restrictions on further
-dissemination and usage except those imposed by the laws of your
-country of residence.  This software is provided "as is" without
-warranty of fitness for use or suitability for any purpose, express
-or implied. Use at your own risk or not at all.
-===================================================================
-
-Incorporating the code into commercial products is permitted; you do
-not have to make source available or contribute your changes back
-(though that would be nice).
-
---amk                                                             (www.amk.ca)
-
-
-
-LICENSE.libtom  LICENSE file from LibTomCrypt
-===================================================================
-LibTomCrypt is public domain.  As should all quality software be.
-
-Tom St Denis
-
-
-
-Statements by contributors
-===================================================================
-From dlitz@dlitz.net Sun Nov 23 00:17:22 2008
-Date: Sun, 23 Nov 2008 00:17:22 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: "A. M. Kuchling" <amk@amk.ca>
-Subject: PyCrypto license clarification
-Message-ID: <20081123051722.GA29253@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: multipart/signed; micalg=pgp-sha1;
-    protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4"
-Content-Disposition: inline
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3461
-Lines: 78
-
-
---YiEDa0DAkWCtVeE4
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-Content-Transfer-Encoding: quoted-printable
-
-Hi Andrew,
-
-People often ask me what license PyCrypto is covered by, if it's=20
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them. =20
-The text in the current LICENSE file (quoted below) is not entirely clear=
-=20
-on the point of whether distributing modified versions is allowed.  (It=20
-says "distribute and use", but not "modify".)
-
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-     Distribute and use freely; there are no restrictions on further
-     dissemination and usage except those imposed by the laws of your
-     country of residence.  This software is provided "as is" without
-     warranty of fitness for use or suitability for any purpose, express
-     or implied. Use at your own risk or not at all.
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-     Incorporating the code into commercial products is permitted; you do
-     not have to make source available or contribute your changes back
-     (though that would be nice).
-
-     --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I'd like to take steps to move toward a=20
-clearer licensing regime.  I'm asking as many copyright holders as I can=20
-find, starting with you, if I can release PyCrypto under something clearer=
-=20
-and more standard.  Below, I have quoted a public domain dedication that=20
-was recommended in _Intellectual Property and Open Source: A Practical=20
-Guide to Protecting Code_, by Van Lindberg.
-
-May I, on your behalf, dedicate to the public domain your considerable=20
-contributions to PyCrypto, with the following notice?
-
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-     The contents of this file are dedicated to the public domain.  To the
-     extent that dedication to the public domain is not available, everyone
-     is granted a worldwide, perpetual, royalty-free, non-exclusive license
-     to exercise all rights associated with the contents of this file for
-     any purpose whatsoever.  No rights are reserved.
-     =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-Regards,
-  - Dwayne
-
---=20
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
---YiEDa0DAkWCtVeE4
-Content-Type: application/pgp-signature; name="signature.asc"
-Content-Description: Digital signature
-Content-Disposition: inline
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.5 (GNU/Linux)
-
-iEYEARECAAYFAkko52IACgkQHBG4d+eAS0XPPQCfcyQ2DdAXKg9N7Z+jeSFFD5EZ
-yloAn33a3ZjkteyJaTbzEqImOEW8JGpf
-=aBEW
------END PGP SIGNATURE-----
-
---YiEDa0DAkWCtVeE4--
-
-From amk@amk.ca Sun Nov 23 07:51:59 2008
-X-Maildir-Dup-Checked: Yes
-Return-Path: <amk@amk.ca>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 5C2C75047D
-    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 07:51:59 -0500 (EST)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id D632D10111
-    for <dwon@rivest.dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
-Received: (vmailmgr-postfix 12026 invoked by uid 1003); 23 Nov 2008 06:51:58 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (goedel.dlitz.net: domain of amk@amk.ca does not designate permitted sender hosts)
-Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7])
-    by goedel.dlitz.net (Postfix) with ESMTP id 97DC710105
-    for <dlitz@dlitz.net>; Sun, 23 Nov 2008 06:51:58 -0600 (CST)
-Received: (qmail 3992 invoked from network); 23 Nov 2008 12:51:52 -0000
-Received: from dsl092-163-165.wdc2.dsl.speakeasy.net (HELO localhost) (akuchling@[66.92.163.165])
-          (envelope-sender <amk@amk.ca>)
-          by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP
-          for <dlitz@dlitz.net>; 23 Nov 2008 12:51:52 -0000
-Date: Sun, 23 Nov 2008 07:51:34 -0500
-From: "A.M. Kuchling" <amk@amk.ca>
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Subject: Re: PyCrypto license clarification
-Message-ID: <20081123125134.GA21239@amk.local>
-Reply-To: amk@amk.ca
-References: <20081123051722.GA29253@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii
-Content-Disposition: inline
-In-Reply-To: <20081123051722.GA29253@rivest.dlitz.net>
-User-Agent: Mutt/1.5.13 (2006-08-11)
-Status: RO
-Content-Length: 537
-Lines: 15
-
-> People often ask me what license PyCrypto is covered by, if it's 
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-> The text in the current LICENSE file (quoted below) is not entirely clear 
-> on the point of whether distributing modified versions is allowed.  (It 
-> says "distribute and use", but not "modify".)
-
-The intention is that it be public domain.
-
-> May I, on your behalf, dedicate to the public domain your considerable 
-> contributions to PyCrypto, with the following notice?
-
-You may.
-
---amk
-
-
-================================================
-From dlitz@dlitz.net Sat Feb 28 21:45:09 2009
-Date: Sat, 28 Feb 2009 21:45:09 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Barry A Warsaw <barry@python.org>
-Subject: PyCrypto license clarification
-Message-ID: <20090301024509.GA13195@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2535
-
-Hi Barry,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am 
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's 
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-The text in the current LICENSE file (quoted below) is not entirely clear 
-on the point of whether distributing modified versions is allowed.  (It 
-says "distribute and use", but not "modify".)
-
-  ===================================================================
-  Distribute and use freely; there are no restrictions on further
-  dissemination and usage except those imposed by the laws of your
-  country of residence.  This software is provided "as is" without
-  warranty of fitness for use or suitability for any purpose, express
-  or implied. Use at your own risk or not at all.
-  ===================================================================
-
-  Incorporating the code into commercial products is permitted; you do
-  not have to make source available or contribute your changes back
-  (though that would be nice).
-
-  --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a 
-clearer licensing regime.  I am asking as many copyright holders as I can 
-find if I can release PyCrypto under something clearer and more standard.  
-Below, I have quoted a public domain dedication that was recommended in 
-_Intellectual Property and Open Source: A Practical Guide to Protecting 
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
-Pointer, and Wim Lewis, and they have all approved the following dedication 
-for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your 
-behalf, dedicate to the public domain all your contributions to PyCrypto, 
-with the following notice?
-
-  =======================================================================
-  The contents of this file are dedicated to the public domain.  To the
-  extent that dedication to the public domain is not available, everyone
-  is granted a worldwide, perpetual, royalty-free, non-exclusive license
-  to exercise all rights associated with the contents of this file for
-  any purpose whatsoever.  No rights are reserved.
-  =======================================================================
-
-Regards,
-  - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-     Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From barry@python.org Mon Mar  2 11:29:39 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <barry@python.org>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 6E01AC6640B
-    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 11:29:39 -0500 (EST)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 0644E1007A
-    for <dwon@rivest.dlitz.net>; Mon,  2 Mar 2009 10:29:39 -0600 (CST)
-Received: (vmailmgr-postfix 8668 invoked by uid 1003);  2 Mar 2009 10:29:39 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (python.org: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="barry@python.org"; helo=mail.wooz.org; client-ip=216.15.33.230
-Received: from mail.wooz.org (216-15-33-230.c3-0.slvr-ubr2.lnh-slvr.md.static.cable.rcn.com [216.15.33.230])
-    by goedel.dlitz.net (Postfix) with ESMTP id CCEA110073
-    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 10:29:38 -0600 (CST)
-Received: from snowdog.wooz.org (snowdog.wooz.org [192.168.11.202])
-    by mail.wooz.org (Postfix) with ESMTPSA id ACE30E3C9F
-    for <dlitz@dlitz.net>; Mon,  2 Mar 2009 11:29:35 -0500 (EST)
-Message-Id: <09BF1A39-B015-4820-97A3-8642490C8254@python.org>
-From: Barry Warsaw <barry@python.org>
-To: Dwayne C. Litzenberger <dlitz@dlitz.net>
-In-Reply-To: <20090301024509.GA13195@rivest.dlitz.net>
-Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
-Content-Transfer-Encoding: quoted-printable
-Mime-Version: 1.0 (Apple Message framework v930.3)
-Subject: Re: PyCrypto license clarification
-Date: Mon, 2 Mar 2009 11:29:34 -0500
-References: <20090301024509.GA13195@rivest.dlitz.net>
-X-Pgp-Agent: GPGMail d55 (v55, Leopard)
-X-Mailer: Apple Mail (2.930.3)
-Status: RO
-Content-Length: 869
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On Feb 28, 2009, at 9:45 PM, Dwayne C. Litzenberger wrote:
-
-> I am the new maintainer of the Python Cryptography Toolkit, and I am =20=
-
-> working on a new release at http://www.pycrypto.org/.
-
-Great!  I'm glad to see someone taking up the mantle of this important =20=
-
-Python library.
-
-> I understand that you have made contributions to PyCrypto.  May I, =20
-> on your behalf, dedicate to the public domain all your contributions =20=
-
-> to PyCrypto, with the following notice?
-
-Absolutely yes.
-
-Cheers,
-Barry
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.9 (Darwin)
-
-iQCVAwUBSawJbnEjvBPtnXfVAQLZjgP/ecG+JdZwNvPJRfsa6rhY6+MHLDHI6agk
-evkJnSJQAcVHlZnVlVeR5IXgvDUMakZjU4SOV7MqkhsKA9lIet7PaD9VSYgn3ra5
-gElwI2DQDoOy5GExXMm74gqrrb1PCCbCRmpaYNo+DZohwHkeFBjbwDRA3wItOrH7
-SK4w9VBJtfY=3D
-=3DQduY
------END PGP SIGNATURE-----
-
-
-
-===================================================
-From dlitz@dlitz.net Sat Feb 28 23:24:14 2009
-Date: Sat, 28 Feb 2009 23:24:14 -0500
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Jeethu Rao <jeethurao@gmail.com>
-Subject: PyCrypto license clarification
-Message-ID: <20090301042414.GA15122@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2513
-
-Hi Jeethu,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am 
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's 
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  
-The text in the current LICENSE file (quoted below) is not entirely clear 
-on the point of whether distributing modified versions is allowed.  (It 
-says "distribute and use", but not "modify".)
-
- ===================================================================
- Distribute and use freely; there are no restrictions on further
- dissemination and usage except those imposed by the laws of your
- country of residence.  This software is provided "as is" without
- warranty of fitness for use or suitability for any purpose, express
- or implied. Use at your own risk or not at all.
- ===================================================================
-
- Incorporating the code into commercial products is permitted; you do
- not have to make source available or contribute your changes back
- (though that would be nice).
-
- --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a 
-clearer licensing regime.  I am asking as many copyright holders as I can 
-find if I can release PyCrypto under something clearer and more standard.  
-Below, I have quoted a public domain dedication that was recommended in 
-_Intellectual Property and Open Source: A Practical Guide to Protecting 
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey 
-Pointer, and Wim Lewis, and they have all approved the following text for 
-their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your 
-behalf, dedicate to the public domain all your contributions to PyCrypto, 
-with the following notice?
-
- =======================================================================
- The contents of this file are dedicated to the public domain.  To the
- extent that dedication to the public domain is not available, everyone
- is granted a worldwide, perpetual, royalty-free, non-exclusive license
- to exercise all rights associated with the contents of this file for
- any purpose whatsoever.  No rights are reserved.
- =======================================================================
-
-Regards,
- - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-       Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From jeethurao@gmail.com Sun Mar  8 17:28:16 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <jeethurao@gmail.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 0CC83515D9
-    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 17:28:16 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 4E58F450CB
-    for <dwon@rivest.dlitz.net>; Sun,  8 Mar 2009 15:28:15 -0600 (CST)
-Received: (vmailmgr-postfix 5011 invoked by uid 1003);  8 Mar 2009 15:28:15 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: pass (gmail.com ... _spf.google.com: 209.85.198.249 is authorized to use 'jeethurao@gmail.com' in 'mfrom' identity (mechanism 'ip4:209.85.128.0/17' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="jeethurao@gmail.com"; helo=rv-out-0708.google.com; client-ip=209.85.198.249
-Received: from rv-out-0708.google.com (unknown [209.85.198.249])
-    by goedel.dlitz.net (Postfix) with ESMTP id 3C097449E7
-    for <dlitz@dlitz.net>; Sun,  8 Mar 2009 15:28:12 -0600 (CST)
-Received: by rv-out-0708.google.com with SMTP id k29so1252333rvb.26
-        for <dlitz@dlitz.net>; Sun, 08 Mar 2009 14:27:56 -0700 (PDT)
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
-        d=gmail.com; s=gamma;
-        h=domainkey-signature:mime-version:received:in-reply-to:references
-         :date:message-id:subject:from:to:content-type;
-        bh=YWy9U32WCU/ksRqukHwaOZyJQBUs4Yvt5mI20U6mI/g=;
-        b=oMjI22lIxYiJKge2zNJW3rRiUi9LqFXmey5Wp0pLItuNF+X3duyfhopTuBAKw7MwVY
-         B5E6VQuGVEyzBbNsctyVgq6DhQiQtouCLZymSViobmuDmKn5DtUKoxpDk0xCxQmHYaas
-         L9/A6D3/J66kKrNBgX9mc0GPcZTviVFYkPR0Q=
-DomainKey-Signature: a=rsa-sha1; c=nofws;
-        d=gmail.com; s=gamma;
-        h=mime-version:in-reply-to:references:date:message-id:subject:from:to
-         :content-type;
-        b=Ym7CStuDEfJKay1AJyWZkZmJA1lnTcwCG6akBHAXLld8ht6PFcmlsffzZG8hJCIVJ8
-         vljqcT+G6cywVTBw1pyGX7ECYzr0+vhGvgdpACGrs24zikHfpSSd5GFogzXaLVvGVH8p
-         bqSHpfWKKtEP4gAQkiNeIq1GNtR2j8U3fnRyg=
-MIME-Version: 1.0
-Received: by 10.141.176.13 with SMTP id d13mr2656028rvp.231.1236547674677; 
-    Sun, 08 Mar 2009 14:27:54 -0700 (PDT)
-In-Reply-To: <20090301042414.GA15122@rivest.dlitz.net>
-References: <20090301042414.GA15122@rivest.dlitz.net>
-Date: Mon, 9 Mar 2009 02:57:54 +0530
-Message-ID: <e3c0ddba0903081427p3a7b1058g417dd8624df68d6d@mail.gmail.com>
-Subject: Re: PyCrypto license clarification
-From: Jeethu Rao <jeethurao@gmail.com>
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Content-Type: multipart/alternative; boundary=000e0cd209d0e5a3d40464a23054
-Status: RO
-Content-Length: 7668
-
---000e0cd209d0e5a3d40464a23054
-Content-Type: text/plain; charset=ISO-8859-1
-Content-Transfer-Encoding: 7bit
-
-Hi Dwayne,My contribution to pycrypto are very very minimal (The sha256
-module, IIRC).
-I'd be fine with the public domain license for PyCrypto.
-
-Jeethu Rao
-PS: Apologies for the delay in my response.
-I don't really check this email address all that often,
-please direct any further correspondence to jeethu@jeethurao.com
-
-On Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <dlitz@dlitz.net>wrote:
-
-> Hi Jeethu,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
->
-> People often ask me what license PyCrypto is covered by, if it's
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.  The
-> text in the current LICENSE file (quoted below) is not entirely clear on the
-> point of whether distributing modified versions is allowed.  (It says
-> "distribute and use", but not "modify".)
->
-> ===================================================================
-> Distribute and use freely; there are no restrictions on further
-> dissemination and usage except those imposed by the laws of your
-> country of residence.  This software is provided "as is" without
-> warranty of fitness for use or suitability for any purpose, express
-> or implied. Use at your own risk or not at all.
-> ===================================================================
->
-> Incorporating the code into commercial products is permitted; you do
-> not have to make source available or contribute your changes back
-> (though that would be nice).
->
-> --amk                                                    (www.amk.ca)
->
-> For the next PyCrypto release, I would like to take steps to move toward a
-> clearer licensing regime.  I am asking as many copyright holders as I can
-> find if I can release PyCrypto under something clearer and more standard.
->  Below, I have quoted a public domain dedication that was recommended in
-> _Intellectual Property and Open Source: A Practical Guide to Protecting
-> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-> Pointer, and Wim Lewis, and they have all approved the following text for
-> their contributions.
->
-> I understand that you have made contributions to PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your contributions to PyCrypto,
-> with the following notice?
->
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
-> Regards,
-> - Dwayne
->
-> --
-> Dwayne C. Litzenberger <dlitz@dlitz.net>
->      Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->
-
-
-
--- 
-Jeethu Rao
-
---000e0cd209d0e5a3d40464a23054
-Content-Type: text/html; charset=ISO-8859-1
-Content-Transfer-Encoding: quoted-printable
-
-Hi Dwayne,<div>My contribution to pycrypto are very very minimal (The sha25=
-6 module, IIRC).</div><div>I&#39;d be fine with the public domain license f=
-or PyCrypto.</div><div><br></div><div>Jeethu Rao</div><div>PS: Apologies fo=
-r the delay in my response.=A0</div>
-<div>I don&#39;t really check this email address all that often,</div><div>=
-please direct any further correspondence to <a href=3D"mailto:jeethu@jeethu=
-rao.com">jeethu@jeethurao.com</a><br><div><br><div class=3D"gmail_quote">On=
- Sun, Mar 1, 2009 at 9:54 AM, Dwayne C. Litzenberger <span dir=3D"ltr">&lt;=
-<a href=3D"mailto:dlitz@dlitz.net">dlitz@dlitz.net</a>&gt;</span> wrote:<br=
->
-<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
-x #ccc solid;padding-left:1ex;">Hi Jeethu,<br>
-<br>
-I am the new maintainer of the Python Cryptography Toolkit, and I am workin=
-g on a new release at <a href=3D"http://www.pycrypto.org/" target=3D"_blank=
-">http://www.pycrypto.org/</a>.<br>
-<br>
-People often ask me what license PyCrypto is covered by, if it&#39;s GPL-co=
-mpatible, etc. =A0Right now, I&#39;m not really sure what to tell them. =A0=
-The text in the current LICENSE file (quoted below) is not entirely clear o=
-n the point of whether distributing modified versions is allowed. =A0(It sa=
-ys &quot;distribute and use&quot;, but not &quot;modify&quot;.)<br>
-
-<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-Distribute and use freely; there are no restrictions on further<br>
-dissemination and usage except those imposed by the laws of your<br>
-country of residence. =A0This software is provided &quot;as is&quot; withou=
-t<br>
-warranty of fitness for use or suitability for any purpose, express<br>
-or implied. Use at your own risk or not at all.<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-<br>
-Incorporating the code into commercial products is permitted; you do<br>
-not have to make source available or contribute your changes back<br>
-(though that would be nice).<br>
-<br>
---amk =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
-=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0(<a href=3D"http://www.amk.ca" target=3D=
-"_blank">www.amk.ca</a>)<br>
-<br>
-For the next PyCrypto release, I would like to take steps to move toward a =
-clearer licensing regime. =A0I am asking as many copyright holders as I can=
- find if I can release PyCrypto under something clearer and more standard. =
-=A0Below, I have quoted a public domain dedication that was recommended in =
-_Intellectual Property and Open Source: A Practical Guide to Protecting Cod=
-e_, by Van Lindberg. =A0I have already contacted A. M. Kuchling, Robey Poin=
-ter, and Wim Lewis, and they have all approved the following text for their=
- contributions.<br>
-
-<br>
-I understand that you have made contributions to PyCrypto. =A0May I, on you=
-r behalf, dedicate to the public domain all your contributions to PyCrypto,=
- with the following notice?<br>
-<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-The contents of this file are dedicated to the public domain. =A0To the<br>
-extent that dedication to the public domain is not available, everyone<br>
-is granted a worldwide, perpetual, royalty-free, non-exclusive license<br>
-to exercise all rights associated with the contents of this file for<br>
-any purpose whatsoever. =A0No rights are reserved.<br>
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<br>
-<br>
-Regards,<br>
-- Dwayne<br><font color=3D"#888888">
-<br>
--- <br>
-Dwayne C. Litzenberger &lt;<a href=3D"mailto:dlitz@dlitz.net" target=3D"_bl=
-ank">dlitz@dlitz.net</a>&gt;<br>
- =A0 =A0 =A0Key-signing key =A0 - 19E1 1FE8 B3CF F273 ED17 =A04A24 928C EC1=
-3 39C2 5CF7<br>
-</font></blockquote></div><br><br clear=3D"all"><br>-- <br>Jeethu Rao<br>
-</div></div>
-
---000e0cd209d0e5a3d40464a23054--
-
-
-=======================================================
-From dlitz@dlitz.net Mon May  4 22:49:14 2009
-Date: Mon, 4 May 2009 22:49:14 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Joris Bontje <joris@bontje.nl>
-Subject: PyCrypto license clarification
-Message-ID: <20090505024914.GA9219@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2553
-
-Hi Joris,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-  ===================================================================
-  Distribute and use freely; there are no restrictions on further
-  dissemination and usage except those imposed by the laws of your
-  country of residence.  This software is provided "as is" without
-  warranty of fitness for use or suitability for any purpose, express
-  or implied. Use at your own risk or not at all.
-  ===================================================================
-
-  Incorporating the code into commercial products is permitted; you do
-  not have to make source available or contribute your changes back
-  (though that would be nice).
-
-  --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
-have all approved the following dedication for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your
-behalf, dedicate to the public domain all your contributions to PyCrypto,
-with the following notice?
-
-  =======================================================================
-  The contents of this file are dedicated to the public domain.  To the
-  extent that dedication to the public domain is not available, everyone
-  is granted a worldwide, perpetual, royalty-free, non-exclusive license
-  to exercise all rights associated with the contents of this file for
-  any purpose whatsoever.  No rights are reserved.
-  =======================================================================
-
-Regards,
- - Dwayne
-
---
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From joris@bontje.nl Tue May  5 03:08:32 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <joris@bontje.nl>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 7AA4B9E5078
-    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 03:08:32 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id 2315B40583
-    for <dwon@rivest.dlitz.net>; Tue,  5 May 2009 01:08:32 -0600 (CST)
-Received: (vmailmgr-postfix 16890 invoked by uid 1003);  5 May 2009 01:08:32 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (bontje.nl: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="joris@bontje.nl"; helo=smtp6.versatel.nl; client-ip=62.58.50.97
-Received: from smtp6.versatel.nl (smtp6.versatel.nl [62.58.50.97])
-    by goedel.dlitz.net (Postfix) with ESMTP id 2D76A4052C
-    for <dlitz@dlitz.net>; Tue,  5 May 2009 01:08:30 -0600 (CST)
-Received: (qmail 4224 invoked by uid 0); 5 May 2009 07:08:25 -0000
-Received: from qmail06.zonnet.nl (HELO dell062.admin.zonnet.nl) ([10.170.1.123])
-          (envelope-sender <joris@bontje.nl>)
-          by 10.170.1.96 (qmail-ldap-1.03) with SMTP
-          for < >; 5 May 2009 07:08:25 -0000
-Received: by dell062.admin.zonnet.nl (Postfix, from userid 33)
-    id 9BE9B15759B; Tue,  5 May 2009 09:08:25 +0200 (CEST)
-Received: from firewall66.interaccess.nl (firewall66.interaccess.nl
-    [193.173.35.66]) by www.webmail.vuurwerk.nl (Horde MIME library) with HTTP;
-    Tue, 05 May 2009 09:08:25 +0200
-Message-ID: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-Date: Tue, 05 May 2009 09:08:25 +0200
-From: joris@bontje.nl
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Subject: Re: PyCrypto license clarification
-References: <20090505024914.GA9219@rivest.dlitz.net>
-In-Reply-To: <20090505024914.GA9219@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain;
-    charset=ISO-8859-1;
-    format="flowed"
-Content-Disposition: inline
-Content-Transfer-Encoding: 7bit
-User-Agent: Internet Messaging Program (IMP) H3 (4.1.3)
-Status: RO
-X-Status: A
-Content-Length: 3488
-
-Hi Dwayne,
-
-Thanks for taking over the PyCrypto library and putting in the required 
-effort to keep this going.
-I was very excited to read that it is now one of the installed 
-libraries for Google AppsEngine!
-
-You have my full permission to dedicate all my contributions to 
-PyCrypto to the public domain with your suggested notice:
-=======================================================================
-The contents of this file are dedicated to the public domain.  To the
-extent that dedication to the public domain is not available, everyone
-is granted a worldwide, perpetual, royalty-free, non-exclusive license
-to exercise all rights associated with the contents of this file for
-any purpose whatsoever.  No rights are reserved.
-=======================================================================
-
-
-Regards,
-Joris
-
-Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
-
-> Hi Joris,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
->
-> People often ask me what license PyCrypto is covered by, if it's
-> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-> The text in the current LICENSE file (quoted below) is not entirely clear
-> on the point of whether distributing modified versions is allowed.  (It
-> says "distribute and use", but not "modify".)
->
-> ===================================================================
-> Distribute and use freely; there are no restrictions on further
-> dissemination and usage except those imposed by the laws of your
-> country of residence.  This software is provided "as is" without
-> warranty of fitness for use or suitability for any purpose, express
-> or implied. Use at your own risk or not at all.
-> ===================================================================
->
-> Incorporating the code into commercial products is permitted; you do
-> not have to make source available or contribute your changes back
-> (though that would be nice).
->
-> --amk                                                    (www.amk.ca)
->
-> For the next PyCrypto release, I would like to take steps to move toward a
-> clearer licensing regime.  I am asking as many copyright holders as I can
-> find if I can release PyCrypto under something clearer and more standard.
-> Below, I have quoted a public domain dedication that was recommended in
-> _Intellectual Property and Open Source: A Practical Guide to Protecting
-> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
-> have all approved the following dedication for their contributions.
->
-> I understand that you have made contributions to PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your contributions to PyCrypto,
-> with the following notice?
->
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
-> Regards,
-> - Dwayne
->
-> --
-> Dwayne C. Litzenberger <dlitz@dlitz.net>
-> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-
-
-From dlitz@dlitz.net Tue May  5 17:53:47 2009
-Date: Tue, 5 May 2009 17:53:47 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: joris@bontje.nl
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090505215347.GB9933@rivest.dlitz.net>
-References: <20090505024914.GA9219@rivest.dlitz.net> <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-In-Reply-To: <20090505090825.gsq1ps7hg08wwwok@www.webmail.vuurwerk.nl>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3863
-
-Excellent!  Thank you!
-
-On Tue, May 05, 2009 at 09:08:25AM +0200, joris@bontje.nl wrote:
-> Hi Dwayne,
->
-> Thanks for taking over the PyCrypto library and putting in the required 
-> effort to keep this going.
-> I was very excited to read that it is now one of the installed libraries 
-> for Google AppsEngine!
->
-> You have my full permission to dedicate all my contributions to PyCrypto to 
-> the public domain with your suggested notice:
-> =======================================================================
-> The contents of this file are dedicated to the public domain.  To the
-> extent that dedication to the public domain is not available, everyone
-> is granted a worldwide, perpetual, royalty-free, non-exclusive license
-> to exercise all rights associated with the contents of this file for
-> any purpose whatsoever.  No rights are reserved.
-> =======================================================================
->
->
-> Regards,
-> Joris
->
-> Citeren "Dwayne C. Litzenberger" <dlitz@dlitz.net>:
->
->> Hi Joris,
->>
->> I am the new maintainer of the Python Cryptography Toolkit, and I am
->> working on a new release at http://www.pycrypto.org/.
->>
->> People often ask me what license PyCrypto is covered by, if it's
->> GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
->> The text in the current LICENSE file (quoted below) is not entirely clear
->> on the point of whether distributing modified versions is allowed.  (It
->> says "distribute and use", but not "modify".)
->>
->> ===================================================================
->> Distribute and use freely; there are no restrictions on further
->> dissemination and usage except those imposed by the laws of your
->> country of residence.  This software is provided "as is" without
->> warranty of fitness for use or suitability for any purpose, express
->> or implied. Use at your own risk or not at all.
->> ===================================================================
->>
->> Incorporating the code into commercial products is permitted; you do
->> not have to make source available or contribute your changes back
->> (though that would be nice).
->>
->> --amk                                                    (www.amk.ca)
->>
->> For the next PyCrypto release, I would like to take steps to move toward a
->> clearer licensing regime.  I am asking as many copyright holders as I can
->> find if I can release PyCrypto under something clearer and more standard.
->> Below, I have quoted a public domain dedication that was recommended in
->> _Intellectual Property and Open Source: A Practical Guide to Protecting
->> Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
->> Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, and Mark Moraes, and they
->> have all approved the following dedication for their contributions.
->>
->> I understand that you have made contributions to PyCrypto.  May I, on your
->> behalf, dedicate to the public domain all your contributions to PyCrypto,
->> with the following notice?
->>
->> =======================================================================
->> The contents of this file are dedicated to the public domain.  To the
->> extent that dedication to the public domain is not available, everyone
->> is granted a worldwide, perpetual, royalty-free, non-exclusive license
->> to exercise all rights associated with the contents of this file for
->> any purpose whatsoever.  No rights are reserved.
->> =======================================================================
->>
->> Regards,
->> - Dwayne
->>
->> --
->> Dwayne C. Litzenberger <dlitz@dlitz.net>
->> Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->
->
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
-
-==========================================================
-Date: Sun, 23 Nov 2008 15:54:35 -0800
-From: Wim Lewis <wiml@hhhh.org>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Cc: Wim Lewis <wiml@hhhh.org>
-Message-Id: <9D5C3135-7414-47D7-9D41-0AC6C3A84D97@hhhh.org>
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On November 23, 2008, you wrote:
->Hi Wim,
->
->I am the new maintainer of the Python Cryptography Toolkit, and I am
->working on a new release at http://www.pycrypto.org/.
->
->I understand that you have made contributions to PyCrypto. May I, on
->your behalf, dedicate to the public domain all your contributions to
->PyCrypto, with the following notice?
->
->   =======================================================================
->   The contents of this file are dedicated to the public domain.  To the
->   extent that dedication to the public domain is not available, everyone
->   is granted a worldwide, perpetual, royalty-free, non-exclusive license
->   to exercise all rights associated with the contents of this file for
->   any purpose whatsoever.  No rights are reserved.
->   =======================================================================
-
-Certainly! I think the only code of mine in PyCrypto is the CAST-5 / CAST-128
-implementation, which already has a public-domain notice at the top of
-the file. But I am happy to have that, any any other code of mine that
-might have wandered in there under an unclear open sourcish license,
-distributed under the public-domain dedication you quote.
-
-Wim.
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.6 (Darwin)
-
-iQCVAwUBSSnnAl8UnN8n93LBAQLp/gQAhr7x8Av1mstc2kxEJDWTm26PTAZxMz4B
-FektbDOzkxgc5580MGGeeX/MVn8aw+1BHg0YD85gsntlDzkcQtb+BR/xAvJ5zKyA
-J/Mn/I+I6ekJQ3juh8IPHLAduOXM9Rtguas/yR+Doaq0xOPKoBx+/5+t1lLJtBcZ
-wrPEa9Oui9s=
-=zSY9
------END PGP SIGNATURE-----
-
-
-
-==========================================================
-From dlitz@dlitz.net Sat Apr 18 09:14:20 2009
-Date: Sat, 18 Apr 2009 09:14:20 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Mark Moraes <moraes@computer.org>
-Subject: PyCrypto license clarification
-Message-ID: <20090418131419.GA14494@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2635
-
-Hi Mark,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-       ===================================================================
-       Distribute and use freely; there are no restrictions on further
-       dissemination and usage except those imposed by the laws of your
-       country of residence.  This software is provided "as is" without
-       warranty of fitness for use or suitability for any purpose, express
-       or implied. Use at your own risk or not at all.
-       ===================================================================
-
-       Incorporating the code into commercial products is permitted; you do
-       not have to make source available or contribute your changes back
-       (though that would be nice).
-
-       --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they have all
-approved the following dedication for their contributions.
-
-I understand that you have made contributions to PyCrypto.  May I, on your
-behalf, dedicate to the public domain all your contributions to PyCrypto,
-with the following notice?
-
-       =======================================================================
-       The contents of this file are dedicated to the public domain.  To the
-       extent that dedication to the public domain is not available, everyone
-       is granted a worldwide, perpetual, royalty-free, non-exclusive license
-       to exercise all rights associated with the contents of this file for
-       any purpose whatsoever.  No rights are reserved.
-       =======================================================================
-
-Regards,
-    - Dwayne
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-    Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From markmoraes@yahoo.com Mon Apr 20 19:25:37 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <markmoraes@yahoo.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 5D9AE984FDD
-    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 19:25:37 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id DE41F4025F
-    for <dwon@rivest.dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
-Received: (vmailmgr-postfix 7604 invoked by uid 1003); 20 Apr 2009 17:25:36 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: none (yahoo.com: No applicable sender policy available) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="markmoraes@yahoo.com"; helo=web32405.mail.mud.yahoo.com; client-ip=68.142.207.198
-Received: from web32405.mail.mud.yahoo.com (web32405.mail.mud.yahoo.com [68.142.207.198])
-    by goedel.dlitz.net (Postfix) with SMTP id B5EAF401EE
-    for <dlitz@dlitz.net>; Mon, 20 Apr 2009 17:25:36 -0600 (CST)
-Received: (qmail 34697 invoked by uid 60001); 20 Apr 2009 23:25:33 -0000
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1240269933; bh=OvxqbYnCg7R6tUN3YmlgFURM3CuHh1JeHyXhDzkaThU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=F2h2bFzpQxyKFZ8BhenniyupGw4Zvlekb9BSk91qKU+51W/TkSGBij5YZIhkLQdkQk0qLz5f4g8dT6bOME3sEY1j10hlx0K0u2UD0yoYTINBCmsdMQRoJ7ph9bmt+p/EJhRpe+FiV6aoLV0FONWiHfGDghPT1dulWXfVTqgB2aU=
-DomainKey-Signature:a=rsa-sha1; q=dns; c=nofws;
-  s=s1024; d=yahoo.com;
-  h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type;
-  b=r6RShFF5VzQLg+9tcn1xKuo4Rs4IVvXF6fdqOpQrMyRCxeFooebhuTE35grGqlomOJLwM0+mZwRb6rGkDj763caOAlo8Ect/qlADW5izXfmVQaDchTbTqmpsJBmQnTQs9iZ+InrG+3UIwtUSGfX7fhEWmI9P/HBzxf9Wp4b3jeo=;
-Message-ID: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-X-YMail-OSG: FrK8aWMVM1mFJtLpMGbUbCLjbUQC.i.JkIAKUHSFsFn7t9PbtewAewXJ2uhZGCOlGCX6oVnG3u.CgqzAffY4vZSnfTT8wnCkzZNZ_g6k.XUc3ipo_6e.92TXl4p8MxDGAf1tpNF5nXPwcQ7aREs7jGoWWVJYVytp50clsUFSHzf7Zbpa8P1Yoe_xSzf3OAgRSh5fCrbFCC8sHPCuwrL3YhasbtHmkWffteSS.x6gEcBaxf03oz4FeDb5mpJ54g11Xonq8h_TmzX9g84Bin9g_3fJ4WSXm6g6.tohLyfXcUxoz4j036wyWpTKPrWEzIUQaN83Sv_bj_Ghxw--
-Received: from [69.124.140.74] by web32405.mail.mud.yahoo.com via HTTP; Mon, 20 Apr 2009 16:25:32 PDT
-X-Mailer: YahooMailClassic/5.2.15 YahooMailWebService/0.7.289.1
-Date: Mon, 20 Apr 2009 16:25:32 -0700 (PDT)
-From: M Moraes <markmoraes@yahoo.com>
-Reply-To: moraes@computer.org
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii
-Status: RO
-X-Status: A
-Content-Length: 3222
-
-
-Hi Dwayne.
-
-Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
-
-Regards,
-Mark.
-
---- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
-
-> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
-> Subject: PyCrypto license clarification
-> To: "Mark Moraes" <moraes@computer.org>
-> Date: Saturday, April 18, 2009, 9:14 AM
-> Hi Mark,
-> 
-> I am the new maintainer of the Python Cryptography Toolkit,
-> and I am
-> working on a new release at http://www.pycrypto.org/.
-> 
-> People often ask me what license PyCrypto is covered by, if
-> it's
-> GPL-compatible, etc.  Right now, I'm not really sure
-> what to tell them.
-> The text in the current LICENSE file (quoted below) is not
-> entirely clear
-> on the point of whether distributing modified versions is
-> allowed.  (It
-> says "distribute and use", but not "modify".)
-> 
->      
-> ===================================================================
->       Distribute and use freely; there are
-> no restrictions on further
->       dissemination and usage except those
-> imposed by the laws of your
->       country of residence.  This
-> software is provided "as is" without
->       warranty of fitness for use or
-> suitability for any purpose, express
->       or implied. Use at your own risk or
-> not at all.
->      
-> ===================================================================
-> 
->       Incorporating the code into commercial
-> products is permitted; you do
->       not have to make source available or
-> contribute your changes back
->       (though that would be nice).
-> 
->       --amk       
->                
->                
->             (www.amk.ca)
-> 
-> For the next PyCrypto release, I would like to take steps
-> to move toward a
-> clearer licensing regime.  I am asking as many
-> copyright holders as I can
-> find if I can release PyCrypto under something clearer and
-> more standard.
-> Below, I have quoted a public domain dedication that was
-> recommended in
-> _Intellectual Property and Open Source: A Practical Guide
-> to Protecting
-> Code_, by Van Lindberg.  I have already contacted A.
-> M. Kuchling, Robey
-> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
-> have all
-> approved the following dedication for their contributions.
-> 
-> I understand that you have made contributions to
-> PyCrypto.  May I, on your
-> behalf, dedicate to the public domain all your
-> contributions to PyCrypto,
-> with the following notice?
-> 
->      
-> =======================================================================
->       The contents of this file are
-> dedicated to the public domain.  To the
->       extent that dedication to the public
-> domain is not available, everyone
->       is granted a worldwide, perpetual,
-> royalty-free, non-exclusive license
->       to exercise all rights associated with
-> the contents of this file for
->       any purpose whatsoever.  No
-> rights are reserved.
->      
-> =======================================================================
-> 
-> Regards,
->    - Dwayne
-> 
-> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
->    Key-signing key   - 19E1
-> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-> 
-
-
-From dlitz@dlitz.net Mon Apr 20 20:01:37 2009
-Date: Mon, 20 Apr 2009 20:01:37 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: moraes@computer.org
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090421000137.GA29012@rivest.dlitz.net>
-References: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-In-Reply-To: <551071.34569.qm@web32405.mail.mud.yahoo.com>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 3677
-
-Thanks a lot, and don't worry about not responding to previous emails.  I 
-do that too much myself. :)
-
-On Mon, Apr 20, 2009 at 04:25:32PM -0700, M Moraes wrote:
->
->Hi Dwayne.
->
->Sure, the new license sounds fine for all my contributions to PyCrypto, and thanks for taking it on.  My apologies for not responding to your previous e-mail.
->
->Regards,
->Mark.
->
->--- On Sat, 4/18/09, Dwayne C. Litzenberger <dlitz@dlitz.net> wrote:
->
->> From: Dwayne C. Litzenberger <dlitz@dlitz.net>
->> Subject: PyCrypto license clarification
->> To: "Mark Moraes" <moraes@computer.org>
->> Date: Saturday, April 18, 2009, 9:14 AM
->> Hi Mark,
->> 
->> I am the new maintainer of the Python Cryptography Toolkit,
->> and I am
->> working on a new release at http://www.pycrypto.org/.
->> 
->> People often ask me what license PyCrypto is covered by, if
->> it's
->> GPL-compatible, etc.  Right now, I'm not really sure
->> what to tell them.
->> The text in the current LICENSE file (quoted below) is not
->> entirely clear
->> on the point of whether distributing modified versions is
->> allowed.  (It
->> says "distribute and use", but not "modify".)
->> 
->>      
->> ===================================================================
->>       Distribute and use freely; there are
->> no restrictions on further
->>       dissemination and usage except those
->> imposed by the laws of your
->>       country of residence.  This
->> software is provided "as is" without
->>       warranty of fitness for use or
->> suitability for any purpose, express
->>       or implied. Use at your own risk or
->> not at all.
->>      
->> ===================================================================
->> 
->>       Incorporating the code into commercial
->> products is permitted; you do
->>       not have to make source available or
->> contribute your changes back
->>       (though that would be nice).
->> 
->>       --amk       
->>                
->>                
->>             (www.amk.ca)
->> 
->> For the next PyCrypto release, I would like to take steps
->> to move toward a
->> clearer licensing regime.  I am asking as many
->> copyright holders as I can
->> find if I can release PyCrypto under something clearer and
->> more standard.
->> Below, I have quoted a public domain dedication that was
->> recommended in
->> _Intellectual Property and Open Source: A Practical Guide
->> to Protecting
->> Code_, by Van Lindberg.  I have already contacted A.
->> M. Kuchling, Robey
->> Pointer, Wim Lewis, Jeethu Rao, and Barry Warsaw, and they
->> have all
->> approved the following dedication for their contributions.
->> 
->> I understand that you have made contributions to
->> PyCrypto.  May I, on your
->> behalf, dedicate to the public domain all your
->> contributions to PyCrypto,
->> with the following notice?
->> 
->>      
->> =======================================================================
->>       The contents of this file are
->> dedicated to the public domain.  To the
->>       extent that dedication to the public
->> domain is not available, everyone
->>       is granted a worldwide, perpetual,
->> royalty-free, non-exclusive license
->>       to exercise all rights associated with
->> the contents of this file for
->>       any purpose whatsoever.  No
->> rights are reserved.
->>      
->> =======================================================================
->> 
->> Regards,
->>    - Dwayne
->> 
->> -- Dwayne C. Litzenberger <dlitz@dlitz.net>
->>    Key-signing key   - 19E1
->> 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
->> 
->
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-  Annual key (2008) - 4B2A FD82 FC7D 9E38 38D9  179F 1C11 B877 E780 4B45
-
-
-
-
-==========================================================
-Date: Mon, 16 Feb 2009 12:58:00 -0800
-From: Robey Pointer <robey@lag.net>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Received-SPF: pass (goedel.dlitz.net: domain of robey@lag.net designates 69.61.78.186 as permitted sender)
-Message-Id: <F469A078-6305-4484-BEA8-F4EC38A4154F@lag.net>
-
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-On 23 Nov 2008, at 07:42, Dwayne C. Litzenberger wrote:
-
-> For the next PyCrypto release, I would like to take steps to move  
-> toward a clearer licensing regime.  I am asking as many copyright  
-> holders as I can find if I can release PyCrypto under something  
-> clearer and more standard.  Below, I have quoted a public domain  
-> dedication that was recommended in _Intellectual Property and Open  
-> Source: A Practical Guide to Protecting Code_, by Van Lindberg.  I  
-> have already contacted A. M. Kuchling, and he has approved the  
-> following dedication for his contributions.
->
-> May I, on your behalf, dedicate to the public domain all your  
-> contributions to PyCrypto, with the following notice?
->
->     
-> = 
-> ======================================================================
->    The contents of this file are dedicated to the public domain.  To  
-> the
->    extent that dedication to the public domain is not available,  
-> everyone
->    is granted a worldwide, perpetual, royalty-free, non-exclusive  
-> license
->    to exercise all rights associated with the contents of this file  
-> for
->    any purpose whatsoever.  No rights are reserved.
->     
-> = 
-> ======================================================================
->
-
-In case I haven't replied to this yet: Yes, this is fine with me.
-
-robey
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.8 (Darwin)
-
-iEYEARECAAYFAkmZ01gACgkQQQDkKvyJ6cOLvQCfQmYYuVODvIlyLg0hgCI9LAbQ
-SH8AoLJgaq1lIi7/ZYDc+/Cd8VO0xLbr
-=Mv6g
------END PGP SIGNATURE-----
-
-
-
-==========================================================
-From dlitz@dlitz.net Sun Aug  2 21:48:25 2009
-Date: Sun, 2 Aug 2009 21:48:25 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Paul Swartz <paulswartz@gmail.com>
-Subject: PyCrypto license clarification
-Message-ID: <20090803014825.GA1326@rivest.dlitz.net>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=us-ascii; format=flowed
-Content-Disposition: inline
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 2631
-
-Hi Paul,
-
-I am the new maintainer of the Python Cryptography Toolkit, and I am
-working on a new release at http://www.pycrypto.org/.
-
-People often ask me what license PyCrypto is covered by, if it's
-GPL-compatible, etc.  Right now, I'm not really sure what to tell them.
-The text in the current LICENSE file (quoted below) is not entirely clear
-on the point of whether distributing modified versions is allowed.  (It
-says "distribute and use", but not "modify".)
-
-   ===================================================================
-   Distribute and use freely; there are no restrictions on further
-   dissemination and usage except those imposed by the laws of your
-   country of residence.  This software is provided "as is" without
-   warranty of fitness for use or suitability for any purpose, express
-   or implied. Use at your own risk or not at all.
-   ===================================================================
-
-   Incorporating the code into commercial products is permitted; you do
-   not have to make source available or contribute your changes back
-   (though that would be nice).
-
-   --amk                                                    (www.amk.ca)
-
-For the next PyCrypto release, I would like to take steps to move toward a
-clearer licensing regime.  I am asking as many copyright holders as I can
-find if I can release PyCrypto under something clearer and more standard.
-Below, I have quoted a public domain dedication that was recommended in
-_Intellectual Property and Open Source: A Practical Guide to Protecting
-Code_, by Van Lindberg.  I have already contacted A. M. Kuchling, Robey
-Pointer, Barry Warsaw, Wim Lewis, Jeethu Rao, Joris Bontje, and Mark 
-Moraes, and they have all approved the following dedication for their 
-contributions.
-
-I understand that you have made contributions to PyCrypto, under nickname 
-"z3p" and/or other names.  May I, on your behalf, dedicate to the public 
-domain all your contributions to PyCrypto, with the following notice?
-
-   =======================================================================
-   The contents of this file are dedicated to the public domain.  To the
-   extent that dedication to the public domain is not available, everyone
-   is granted a worldwide, perpetual, royalty-free, non-exclusive license
-   to exercise all rights associated with the contents of this file for
-   any purpose whatsoever.  No rights are reserved.
-   =======================================================================
-
-Regards,
-  - Dwayne
-
---
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-   Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-From paulswartz@gmail.com Mon Aug  3 12:14:07 2009
-X-Maildir-Dup-Checked: Yes
-Return-Path: <paulswartz@gmail.com>
-X-Original-To: dwon@rivest.dlitz.net
-Delivered-To: dwon@rivest.dlitz.net
-Received: from goedel.dlitz.net (unknown [10.159.255.6])
-    by rivest.dlitz.net (Postfix) with ESMTP id 30B9D984FC4
-    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 12:14:07 -0400 (EDT)
-Received: from localhost (localhost [127.0.0.1])
-    by goedel.dlitz.net (Postfix) with QMQP id AD9AE81068
-    for <dwon@rivest.dlitz.net>; Mon,  3 Aug 2009 10:14:06 -0600 (CST)
-Received: (vmailmgr-postfix 32055 invoked by uid 1003);  3 Aug 2009 10:14:06 -0600
-Delivered-To: m-dlitz-dlitz@dlitz.net
-Received-SPF: pass (gmail.com ... _spf.google.com: 72.14.220.159 is authorized to use 'paulswartz@gmail.com' in 'mfrom' identity (mechanism 'ip4:72.14.192.0/18' matched)) receiver=goedel.dlitz.net; identity=mfrom; envelope-from="paulswartz@gmail.com"; helo=fg-out-1718.google.com; client-ip=72.14.220.159
-Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159])
-    by goedel.dlitz.net (Postfix) with ESMTP id 4E63881066
-    for <dlitz@dlitz.net>; Mon,  3 Aug 2009 10:14:05 -0600 (CST)
-Received: by fg-out-1718.google.com with SMTP id d23so1076840fga.3
-        for <dlitz@dlitz.net>; Mon, 03 Aug 2009 09:14:04 -0700 (PDT)
-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
-        d=gmail.com; s=gamma;
-        h=domainkey-signature:mime-version:received:in-reply-to:references
-         :from:date:message-id:subject:to:content-type
-         :content-transfer-encoding;
-        bh=A0RHBf0TnribKS5qOHJ3WYbkZ+b0cuPeuoKAvpApWcc=;
-        b=gyTqkRhKlHadFKIZCBWsRbnMNVDq1PWlJbyC0EvxPskaoHr3HAR96MWQNBePu/40Ac
-         Vn55qlIqTdom4e9zlUEE6MwZo9kqi/Qw0L/SLib0DlQeNqo/eHYqPmuVswltaYwNAyMJ
-         Y9++76rPGzqYdALsfvsmwv7Q3/bEmjVTr0tQE=
-DomainKey-Signature: a=rsa-sha1; c=nofws;
-        d=gmail.com; s=gamma;
-        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
-         :content-type:content-transfer-encoding;
-        b=jze7KSMkUGilfVCXKXaaXMi5NAtGdMQOtVZZfRNyGSy68xOd2sxefjyyig3EfT6Nv6
-         Q3opUMsT96Q6zjZND55w446kTh2uBTNz4d3NwIeEWJnG3xcliRQu/mXPFp8AzPI3CefL
-         1ornJLM1eQ2XyuZA73jem+SJtfdHUcSD1UhgI=
-MIME-Version: 1.0
-Received: by 10.239.157.147 with SMTP id q19mr601802hbc.61.1249316043185; Mon, 
-    03 Aug 2009 09:14:03 -0700 (PDT)
-In-Reply-To: <20090803014825.GA1326@rivest.dlitz.net>
-References: <20090803014825.GA1326@rivest.dlitz.net>
-From: Paul Swartz <paulswartz@gmail.com>
-Date: Mon, 3 Aug 2009 12:13:43 -0400
-Message-ID: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-Subject: Re: PyCrypto license clarification
-To: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: quoted-printable
-Status: RO
-X-Status: A
-Content-Length: 1450
-
-On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wro=
-te:
-> Hi Paul,
->
-> I am the new maintainer of the Python Cryptography Toolkit, and I am
-> working on a new release at http://www.pycrypto.org/.
-
-That's great!
-
-> I understand that you have made contributions to PyCrypto, under nickname
-> "z3p" and/or other names. =C2=A0May I, on your behalf, dedicate to the pu=
-blic
-> domain all your contributions to PyCrypto, with the following notice?
->
-> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-> =C2=A0The contents of this file are dedicated to the public domain. =C2=
-=A0To the
-> =C2=A0extent that dedication to the public domain is not available, every=
-one
-> =C2=A0is granted a worldwide, perpetual, royalty-free, non-exclusive lice=
-nse
-> =C2=A0to exercise all rights associated with the contents of this file fo=
-r
-> =C2=A0any purpose whatsoever. =C2=A0No rights are reserved.
-> =C2=A0=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
-=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
-
-Yes, that's fine.  Good luck with the new release!
-
--p
---=20
-Paul Swartz
-paulswartz at gmail dot com
-http://paulswartz.net/
-AIM: z3penguin
-
-
-From dlitz@dlitz.net Mon Aug  3 14:35:01 2009
-Date: Mon, 3 Aug 2009 14:35:01 -0400
-From: "Dwayne C. Litzenberger" <dlitz@dlitz.net>
-To: Paul Swartz <paulswartz@gmail.com>
-Subject: Re: PyCrypto license clarification
-Message-ID: <20090803183501.GA17472@rivest.dlitz.net>
-References: <20090803014825.GA1326@rivest.dlitz.net> <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-MIME-Version: 1.0
-Content-Type: text/plain; charset=iso-8859-1; format=flowed
-Content-Disposition: inline
-Content-Transfer-Encoding: 8bit
-In-Reply-To: <324cfb540908030913x71d331f0kb069052f74e5ae6b@mail.gmail.com>
-X-Primary-Address: dlitz@dlitz.net
-X-Homepage: http://www.dlitz.net/
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=19E11FE8B3CFF273ED174A24928CEC1339C25CF7 (only for key signing);
-    preference=unprotected
-X-OpenPGP: url=http://www.dlitz.net/go/gpgkey/;
-    id=4B2AFD82FC7D9E3838D9179F1C11B877E7804B45 (2008);
-    preference=signencrypt
-User-Agent: Mutt/1.5.16 (2007-06-11)
-Status: RO
-Content-Length: 1250
-
-On Mon, Aug 03, 2009 at 12:13:43PM -0400, Paul Swartz wrote:
->On Sun, Aug 2, 2009 at 9:48 PM, Dwayne C. Litzenberger<dlitz@dlitz.net> wrote:
->> Hi Paul,
->>
->> I am the new maintainer of the Python Cryptography Toolkit, and I am
->> working on a new release at http://www.pycrypto.org/.
->
->That's great!
->
->> I understand that you have made contributions to PyCrypto, under nickname
->> "z3p" and/or other names. �May I, on your behalf, dedicate to the public
->> domain all your contributions to PyCrypto, with the following notice?
->>
->> �=======================================================================
->> �The contents of this file are dedicated to the public domain. �To the
->> �extent that dedication to the public domain is not available, everyone
->> �is granted a worldwide, perpetual, royalty-free, non-exclusive license
->> �to exercise all rights associated with the contents of this file for
->> �any purpose whatsoever. �No rights are reserved.
->> �=======================================================================
->
->Yes, that's fine.  Good luck with the new release!
-
-Perfect!  Thanks for the quick response!
-
--- 
-Dwayne C. Litzenberger <dlitz@dlitz.net>
-  Key-signing key   - 19E1 1FE8 B3CF F273 ED17  4A24 928C EC13 39C2 5CF7
-
-
-
-==========================================================
-
-
- - -
- -
-

billiard - 3.3.0.20 -

- - - - - -
Copyright (c) 2006-2008, R Oudkerk 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 author 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 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 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.
-
- - -
- -
-

oauthlib - 1.0.3 -

- - - - - - -
- -
-

kombu - 3.0.26 -

- - - - - -
Copyright (c) 2015 Ask Solem & contributors.  All rights reserved.
-Copyright (c) 2012-2014 GoPivotal Inc & contributors.  All rights reserved.
-Copyright (c) 2009-2012, Ask Solem & 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:
-    * 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 Ask Solem 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 Ask Solem 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.
- - -
- -
-

django-reversion - 1.8.7 -

- - - - - -
Copyright (c) 2009, David Hall.
-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 David Hall 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.
- - -
- -
-

django-extensions - 1.5.7 -

- - -
Copyright (c) 2007 Michael Trier
- - - - -
Copyright (c) 2007 Michael Trier
-
-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.
- - -
- -
-

requests - 2.7.0 -

- - - -
Copyright 2013 Kenneth Reitz
-
-   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.
- - - -
-                                 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
-
- - -
- -
-

django-haystack-panel - 0.2.1 -

- - -
Copyright (c) 2012, Chris Streeter
- - - - -
Copyright (c) 2012, Chris Streeter
-
-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.
-
- - -
- -
-

Supervisor - 3.1.3 -

- - - -
Supervisor is Copyright (c) 2006-2013 Agendaless Consulting and Contributors.
-(http://www.agendaless.com), All Rights Reserved
-
-  This software is subject to the provisions of the license at
-  http://www.repoze.org/LICENSE.txt . A copy of this license should
-  accompany this distribution.  THIS SOFTWARE IS PROVIDED "AS IS" AND
-  ANY AND ALL EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING,
-  BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,
-  MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS FOR A PARTICULAR
-  PURPOSE.
-
-TrackRefs code Copyright (c) 2007 Zope Corporation and Contributors
-
-  This software is subject to the provisions of the Zope Public License,
-  Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
-  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-  WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-  WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-  FOR A PARTICULAR PURPOSE.
-
-medusa was (is?) Copyright (c) Sam Rushing.
-
-http_client.py code Copyright (c) by Daniel Krech, http://eikeon.com/.
-
-  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.
-
-
- - - -
Supervisor is licensed under the following license:
-
-  A copyright notice accompanies this license document that identifies
-  the copyright holders.
-
-  Redistribution and use in source and binary forms, with or without
-  modification, are permitted provided that the following conditions are
-  met:
-
-  1.  Redistributions in source code must retain the accompanying
-      copyright notice, this list of conditions, and the following
-      disclaimer.
-
-  2.  Redistributions in binary form must reproduce the accompanying
-      copyright notice, this list of conditions, and the following
-      disclaimer in the documentation and/or other materials provided
-      with the distribution.
-
-  3.  Names of the copyright holders must not be used to endorse or
-      promote products derived from this software without prior
-      written permission from the copyright holders.
-
-  4.  If any files are modified, you must cause the modified files to
-      carry prominent notices stating that you changed the files and
-      the date of any change.
-
-  Disclaimer
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 COPYRIGHT
-    HOLDERS 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.
-
-http_client.py code is based on code by Daniel Krech, which was
-released under this license:
-
-  LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1
-  ------------------------------------------------
-  Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/
-  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 Daniel Krech 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.
-
-Medusa, the asynchronous communications framework upon which
-supervisor's server and client code is based, was created by Sam
-Rushing:
-
-  Medusa was once distributed under a 'free for non-commercial use'
-  license, but in May of 2000 Sam Rushing changed the license to be
-  identical to the standard Python license at the time.  The standard
-  Python license has always applied to the core components of Medusa,
-  this change just frees up the rest of the system, including the http
-  server, ftp server, utilities, etc.  Medusa is therefore under the
-  following license:
-
-  ==============================
-  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 Sam Rushing not be
-  used in advertising or publicity pertaining to distribution of the
-  software without specific, written prior permission.
-
-  SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
-  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
-  NO EVENT SHALL SAM RUSHING 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.
-  ==============================
-
-Some software in this distribution is released under the Zope Public
-License (as marked in its file header):
-
-  Zope Public License (ZPL) Version 2.1
-  -------------------------------------
-
-  A copyright notice accompanies this license document that
-  identifies the copyright holders.
-
-  This license has been certified as open source. It has also
-  been designated as GPL compatible by the Free Software
-  Foundation (FSF).
-
-  Redistribution and use in source and binary forms, with or
-  without modification, are permitted provided that the
-  following conditions are met:
-
-  1. Redistributions in source code must retain the
-     accompanying copyright notice, this list of conditions,
-     and the following disclaimer.
-
-  2. Redistributions in binary form must reproduce the accompanying
-     copyright notice, this list of conditions, and the
-     following disclaimer in the documentation and/or other
-     materials provided with the distribution.
-
-  3. Names of the copyright holders must not be used to
-     endorse or promote products derived from this software
-     without prior written permission from the copyright
-     holders.
-
-  4. The right to distribute this software or to use it for
-     any purpose does not give you the right to use
-     Servicemarks (sm) or Trademarks (tm) of the copyright
-     holders. Use of them is covered by separate agreement
-     with the copyright holders.
-
-  5. If any files are modified, you must cause the modified
-     files to carry prominent notices stating that you changed
-     the files and the date of any change.
-
-  Disclaimer
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 COPYRIGHT HOLDERS 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.
- - -
- -
-

Whoosh - 2.7.0 -

- - - - - - -
- -
-

django-tastypie - 0.12.2 -

- - - - - -
Copyright (c) 2010, Daniel Lindsley
-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 tastypie 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 tastypie 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-mimeparse - 0.1.4 -

- - -
Copyright (c) 2010 Joe Gregorio
- - - - -
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.
- - -
- -
-

amqp - 1.4.6 -

- - - - - -
		  GNU LESSER GENERAL PUBLIC LICENSE
-		       Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  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
- - -
- -
-

requests-oauthlib - 0.5.0 -

- - - - - -
Copyright (c) 2013 Kenneth Reitz.
-
-Permission to use, copy, modify, and/or 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" 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.
-
- - -
- -
-

Grappelli - 2.7.1 -

- - - - - -
django-grappelli
-----------------
-
-Copyright (c) Patrick Kranzlmueller, Axel Swoboda (vonautomatisch werkstaetten),
-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 FileBrowser 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.
-
-django-grappelli contains code from django-admin-tools
-------------------------------------------------------
-
-copyright (c) 2010 David JEAN LOUIS
-
-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.
- - -
- -
-

sqlparse - 0.1.16 -

- - -
Copyright (c) 2009, Andi Albrecht 
- - - - -
Copyright (c) 2009, Andi Albrecht <albrecht.andi@gmail.com>
-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 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.
- - -
- -
-

elasticsearch-py - 1.6.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.
-
- - -
- -
-

virtualenv - 12.0.5 -

- - -
Copyright (c) 2007 Ian Bicking and Contributors
-Copyright (c) 2009 Ian Bicking, The Open Planning Project
-Copyright (c) 2011-2015 The virtualenv developers
- - - - -
Copyright (c) 2007 Ian Bicking and Contributors
-Copyright (c) 2009 Ian Bicking, The Open Planning Project
-Copyright (c) 2011-2014 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.
-
- - -
- -
-

meld3 - 1.0.2 -

- - - - - -
Zope Public License (ZPL) Version 2.1
--------------------------------------
-
-A copyright notice accompanies this license document that
-identifies the copyright holders.
-
-This license has been certified as open source. It has also
-been designated as GPL compatible by the Free Software
-Foundation (FSF).
-
-Redistribution and use in source and binary forms, with or
-without modification, are permitted provided that the
-following conditions are met:
-
-1. Redistributions in source code must retain the
-   accompanying copyright notice, this list of conditions,
-   and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the accompanying
-   copyright notice, this list of conditions, and the
-   following disclaimer in the documentation and/or other
-   materials provided with the distribution.
-
-3. Names of the copyright holders must not be used to
-   endorse or promote products derived from this software
-   without prior written permission from the copyright
-   holders.
-
-4. The right to distribute this software or to use it for
-   any purpose does not give you the right to use
-   Servicemarks (sm) or Trademarks (tm) of the copyright
-   holders. Use of them is covered by separate agreement
-   with the copyright holders.
-
-5. If any files are modified, you must cause the modified
-   files to carry prominent notices stating that you changed
-   the files and the date of any change.
-
-Disclaimer
-
-  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``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 COPYRIGHT HOLDERS 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 - 15.8.2 -

- - -
Copyright (C) 2012 Mike Kazantsev 
- - - - -
            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
-                    Version 2, December 2004
-
- Copyright (C) 2012 Mike Kazantsev <mk.fraggod@gmail.com>
-
- 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.
- - -
- -
-

python-openid - 2.2.5 -

- - - - - -
-                                 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
-
- - -
- -
-

pip - 7.1.2 -

- - - - - -
Copyright (c) 2008-2014 The pip developers (see AUTHORS.txt file)
-
-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 for Bundle of CA Root Certificates (pip/cacert.pem)
-===========================================================
-
-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 St, Fifth Floor, Boston, MA
-02110-1301
-
- - -
- -
-

natsort - 4.0.3 -

- - -
Copyright (c) 2012-2014 Seth M. Morton
- - - - -
Copyright (c) 2012-2014 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.
- - -
- -
-

wincertstore - 0.2 -

- - - - - -
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 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.
-
-
- - -
- -
-

JNA - 4.1.0 -

- - -
Copyright (c) 2007 Timothy Wall, All Rights Reserved
- - -
JNA is dual-licensed under 2 alternative Open Source/Free 
-licenses: LGPL 2.1 and Apache License 2.0. (starting with
-JNA version 4.0.0). 
-
-What this means is that one can choose either one of these
-licenses (for purposes of re-distributing JNA; usually by
-including it as one of jars another application or
-library uses) by downloading corresponding jar file,
-using it, and living happily everafter. 
-
-You may obtain a copy of the LGPL License at:
-
-http://www.gnu.org/licenses/licenses.html
-
-A copy is also included in the downloadable source code package
-containing JNA, in file "LGPL2.1", under the same directory
-as this file.
-
-You may obtain a copy of the ASL License at:
-
-http://www.apache.org/licenses/
-
-A copy is also included in the downloadable source code package
-containing JNA, in file "ASL2.0", under the same directory
-as this file.
-
- - - -
-                                 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.
-
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from unicode conversion examples available at
-http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
-from those sources:
-
-/*
- * Copyright 2001-2004 Unicode, Inc.
- * 
- * Disclaimer
- * 
- * This source code is provided as is by Unicode, Inc. No claims are
- * made as to fitness for any particular purpose. No warranties of any
- * kind are expressed or implied. The recipient agrees to determine
- * applicability of information provided. If this file has been
- * purchased on magnetic or optical media from Unicode, Inc., the
- * sole remedy for any claim will be exchange of defective media
- * within 90 days of receipt.
- * 
- * Limitations on Rights to Redistribute This Code
- * 
- * Unicode, Inc. hereby grants the right to freely use the information
- * supplied in this file in the creation of products supporting the
- * Unicode Standard, and to make copies of this file in any form
- * for internal or external distribution as long as this notice
- * remains attached.
- */
-
-
-Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
-derived from Python 2.4.2 sources available at
-http://www.python.org. Full license is here:
-
-  http://www.python.org/download/releases/2.4.2/license/
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from ICU (http://www.icu-project.org)
-The full license is available here: 
-  http://source.icu-project.org/repos/icu/icu/trunk/license.html
-
-/*
- * Copyright (C) 1999-2010, 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.
- */
-
-The following license applies to the Snowball stemmers:
-
-Copyright (c) 2001, Dr Martin Porter
-Copyright (c) 2002, Richard Boulton
-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 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 following license applies to the KStemmer:
-
-Copyright © 2003,
-Center for Intelligent Information Retrieval,
-University of Massachusetts, Amherst.
-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. The names "Center for Intelligent Information Retrieval" and
-"University of Massachusetts" must not be used to endorse or promote products
-derived from this software without prior written permission. To obtain
-permission, contact info@ciir.cs.umass.edu.
-
-THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
-
- - -
- -
-

Sigar - 1.6.4 -

- - - -
Hyperic SIGAR includes some third-party open source components 
-in its distribution. The list below identifies the community or 
-organization and links to their appropriate license terms.
-
-The Hyperic team would like to thank all the communities 
-of the projects listed below for their contributions. 
----------------------------------------------------------------------
-
-The following components are included without modification:
-
-- log4j -
-Information: http://logging.apache.org/
-License: http://www.apache.org/licenses/LICENSE-2.0
-
-The following components are included with modification:
-
-- cpptasks -
-Information: http://ant-contrib.sourceforge.net/
-License: http://ant-contrib.sourceforge.net/LICENSE.txt
-
-- (portions of) APR -
-Information: http://apr.apache.org/
-License: http://www.apache.org/licenses/LICENSE-2.0
-
-- solaris get_mib2 -
-Information: ftp://vic.cc.purdue.edu/pub/tools/unix/solaris/get_mib2/
-License: within src/os/solaris/get_mib2.[ch]
-
-- getline by Chris Thewalt -
-Information: http://tinyurl.com/r438r
-License: within src/sigar_getline.c
-
-- PrintfFormat.java -
-Information: http://java.sun.com/developer/technicalArticles/Programming/sprintf/PrintfFormat.java
-License: within bindings/java/src/org/hyperic/sigar/util/PrintfFormat.java 
-
- - - -
-                                 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.
-
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from unicode conversion examples available at
-http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
-from those sources:
-
-/*
- * Copyright 2001-2004 Unicode, Inc.
- * 
- * Disclaimer
- * 
- * This source code is provided as is by Unicode, Inc. No claims are
- * made as to fitness for any particular purpose. No warranties of any
- * kind are expressed or implied. The recipient agrees to determine
- * applicability of information provided. If this file has been
- * purchased on magnetic or optical media from Unicode, Inc., the
- * sole remedy for any claim will be exchange of defective media
- * within 90 days of receipt.
- * 
- * Limitations on Rights to Redistribute This Code
- * 
- * Unicode, Inc. hereby grants the right to freely use the information
- * supplied in this file in the creation of products supporting the
- * Unicode Standard, and to make copies of this file in any form
- * for internal or external distribution as long as this notice
- * remains attached.
- */
-
-
-Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
-derived from Python 2.4.2 sources available at
-http://www.python.org. Full license is here:
-
-  http://www.python.org/download/releases/2.4.2/license/
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from ICU (http://www.icu-project.org)
-The full license is available here: 
-  http://source.icu-project.org/repos/icu/icu/trunk/license.html
-
-/*
- * Copyright (C) 1999-2010, 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.
- */
-
-The following license applies to the Snowball stemmers:
-
-Copyright (c) 2001, Dr Martin Porter
-Copyright (c) 2002, Richard Boulton
-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 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 following license applies to the KStemmer:
-
-Copyright © 2003,
-Center for Intelligent Information Retrieval,
-University of Massachusetts, Amherst.
-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. The names "Center for Intelligent Information Retrieval" and
-"University of Massachusetts" must not be used to endorse or promote products
-derived from this software without prior written permission. To obtain
-permission, contact info@ciir.cs.umass.edu.
-
-THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
-
- - -
- -
-

ASM Commons - 4.1 -

- - -
Copyright (c) 2000-2011 INRIA, France Telecom
- - - - -
ASM: a very small and fast Java bytecode manipulation framework
-Copyright (c) 2000-2011 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.
-
- - -
- -
-

Apache Log4J - 1.2.17 -

- - - -
Apache log4j
-Copyright 2007 The Apache Software Foundation
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
- - - -
-                                 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.
-
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from unicode conversion examples available at
-http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
-from those sources:
-
-/*
- * Copyright 2001-2004 Unicode, Inc.
- * 
- * Disclaimer
- * 
- * This source code is provided as is by Unicode, Inc. No claims are
- * made as to fitness for any particular purpose. No warranties of any
- * kind are expressed or implied. The recipient agrees to determine
- * applicability of information provided. If this file has been
- * purchased on magnetic or optical media from Unicode, Inc., the
- * sole remedy for any claim will be exchange of defective media
- * within 90 days of receipt.
- * 
- * Limitations on Rights to Redistribute This Code
- * 
- * Unicode, Inc. hereby grants the right to freely use the information
- * supplied in this file in the creation of products supporting the
- * Unicode Standard, and to make copies of this file in any form
- * for internal or external distribution as long as this notice
- * remains attached.
- */
-
-
-Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
-derived from Python 2.4.2 sources available at
-http://www.python.org. Full license is here:
-
-  http://www.python.org/download/releases/2.4.2/license/
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from ICU (http://www.icu-project.org)
-The full license is available here: 
-  http://source.icu-project.org/repos/icu/icu/trunk/license.html
-
-/*
- * Copyright (C) 1999-2010, 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.
- */
-
-The following license applies to the Snowball stemmers:
-
-Copyright (c) 2001, Dr Martin Porter
-Copyright (c) 2002, Richard Boulton
-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 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 following license applies to the KStemmer:
-
-Copyright © 2003,
-Center for Intelligent Information Retrieval,
-University of Massachusetts, Amherst.
-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. The names "Center for Intelligent Information Retrieval" and
-"University of Massachusetts" must not be used to endorse or promote products
-derived from this software without prior written permission. To obtain
-permission, contact info@ciir.cs.umass.edu.
-
-THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
-
- - -
- -
-

JTS Topology Suite - 1.13 -

- - -
Copyright (C) 2001 Vivid Solutions
- - -
The JTS Topology Suite is a collection of Java classes that
-implement the fundamental operations required to validate a given
-geo-spatial data set to a known topological specification.
-
-Copyright (C) 2001 Vivid Solutions
-
-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
-
-For more information, contact:
-
-    Vivid Solutions
-    Suite #1A
-    2328 Government Street
-    Victoria BC  V8T 5G5
-    Canada
-
-    (250)385-6040
-    www.vividsolutions.com
-
- - - -
		  GNU LESSER GENERAL PUBLIC LICENSE
-		       Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  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.
-
-    <one line to give the library's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    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
-
-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.
-
-  <signature of Ty Coon>, 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
-
- - -
- -
-

ANTLR runtime - 3.5 -

- - -
Copyright (c) 2005-2009 Terence Parr
- - - - -
 Copyright (c) 2005-2009 Terence Parr
- 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. 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.
-
- - -
- -
-

Apache Lucene - 4.10.4 -

- - - -
Apache Lucene
-Copyright 2012 The Apache Software Foundation
-
-This product includes software developed by
-The Apache Software Foundation (http://www.apache.org/).
-
-The snowball stemmers in
-  contrib/analyzers/common/src/java/net/sf/snowball
-were developed by Martin Porter and Richard Boulton.
-The snowball stopword lists in
-  contrib/analyzers/common/src/resources/org/apache/lucene/analysis/snowball
-were developed by Martin Porter and Richard Boulton.
-The full snowball package is available from
-  http://snowball.tartarus.org/
-
-The KStem stemmer in
-  common/src/org/apache/lucene/analysis/en
-was developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)
-under the BSD-license.
-
-The Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (contrib/analyzers) come with a default
-stopword list that is BSD-licensed created by Jacques Savoy.  These files reside in:
-contrib/analyzers/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,
-contrib/analyzers/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,
-contrib/analyzers/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,
-contrib/analyzers/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,
-contrib/analyzers/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt
-See http://members.unine.ch/jacques.savoy/clef/index.html.
-
-The German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers
-(common) are based on BSD-licensed reference implementations created by Jacques Savoy and
-Ljiljana Dolamic. These files reside in:
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java
-contrib/analyzers/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java
-
-The Stempel analyzer (contrib/analyzers) includes BSD-licensed software developed 
-by the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,
-and Edmond Nolan.
-
-The Polish analyzer (contrib/analyzers) comes with a default
-stopword list that is BSD-licensed created by the Carrot2 project. The file resides
-in contrib/analyzers/stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.
-See http://project.carrot2.org/license.html.
-
-Includes software from other Apache Software Foundation projects,
-including, but not limited to:
- - Apache Ant
- - Apache Jakarta Regexp
- - Commons Compress
- - Xerces
-
-The SmartChineseAnalyzer source code (under contrib/analyzers) was
-provided by Xiaoping Gao and copyright 2009 by www.imdict.net.
-
-ICU4J, (under contrib/icu) is licensed under an MIT styles license
-(contrib/icu/lib/ICU-LICENSE.txt) and Copyright (c) 1995-2008 
-International Business Machines Corporation and others
-
-Some files (contrib/analyzers/common/src/test/.../WordBreakTestUnicode_*.java
-and data files under contrib/icu/src/data/) are derived from Unicode data such
-as the Unicode Character Database. See http://unicode.org/copyright.html for more
-details.
-
-The class org.apache.lucene.SorterTemplate was inspired by CGLIB's class with
-the same name. The implementation part is mainly done using pre-existing
-Lucene sorting code. In-place stable mergesort was borrowed from CGLIB,
-which is Apache-licensed.
-
-The class org.apache.lucene.util.WeakIdentityMap was derived from
-the Apache CXF project and is Apache License 2.0.
-
-The Google Code Prettify is Apache License 2.0.
-See http://code.google.com/p/google-code-prettify/
-
-JUnit (junit-4.10) is licensed under the Common Public License v. 1.0
-See http://junit.sourceforge.net/cpl-v10.html
-
-This product includes code (JaspellTernarySearchTrie) from Java Spelling Checking Package (jaspell): http://jaspell.sourceforge.net/
-License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
-
-===========================================================================
-Kuromoji Japanese Morphological Analyzer - Apache Lucene Integration
-===========================================================================
-
-This software includes a binary and/or source version of data from
-
-  mecab-ipadic-2.7.0-20070801
-
-which can be obtained from
-
-  http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz
-
-or
-
-  http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz
-
-===========================================================================
-mecab-ipadic-2.7.0-20070801 Notice
-===========================================================================
-
-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.
-
- - - -
-                                 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.
-
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from unicode conversion examples available at
-http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
-from those sources:
-
-/*
- * Copyright 2001-2004 Unicode, Inc.
- * 
- * Disclaimer
- * 
- * This source code is provided as is by Unicode, Inc. No claims are
- * made as to fitness for any particular purpose. No warranties of any
- * kind are expressed or implied. The recipient agrees to determine
- * applicability of information provided. If this file has been
- * purchased on magnetic or optical media from Unicode, Inc., the
- * sole remedy for any claim will be exchange of defective media
- * within 90 days of receipt.
- * 
- * Limitations on Rights to Redistribute This Code
- * 
- * Unicode, Inc. hereby grants the right to freely use the information
- * supplied in this file in the creation of products supporting the
- * Unicode Standard, and to make copies of this file in any form
- * for internal or external distribution as long as this notice
- * remains attached.
- */
-
-
-Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
-derived from Python 2.4.2 sources available at
-http://www.python.org. Full license is here:
-
-  http://www.python.org/download/releases/2.4.2/license/
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from ICU (http://www.icu-project.org)
-The full license is available here: 
-  http://source.icu-project.org/repos/icu/icu/trunk/license.html
-
-/*
- * Copyright (C) 1999-2010, 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.
- */
-
-The following license applies to the Snowball stemmers:
-
-Copyright (c) 2001, Dr Martin Porter
-Copyright (c) 2002, Richard Boulton
-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 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 following license applies to the KStemmer:
-
-Copyright © 2003,
-Center for Intelligent Information Retrieval,
-University of Massachusetts, Amherst.
-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. The names "Center for Intelligent Information Retrieval" and
-"University of Massachusetts" must not be used to endorse or promote products
-derived from this software without prior written permission. To obtain
-permission, contact info@ciir.cs.umass.edu.
-
-THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
-
- - -
- -
-

ASM - 4.1 -

- - -
Copyright (c) 2000-2011 INRIA, France Telecom
- - - - -
ASM: a very small and fast Java bytecode manipulation framework
-Copyright (c) 2000-2011 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.
-
- - -
- -
-

Spatial4J - 0.4.1 -

- - - -
 Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements.  See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You 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.
-
- - - -
-                                 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.
-
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from unicode conversion examples available at
-http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
-from those sources:
-
-/*
- * Copyright 2001-2004 Unicode, Inc.
- * 
- * Disclaimer
- * 
- * This source code is provided as is by Unicode, Inc. No claims are
- * made as to fitness for any particular purpose. No warranties of any
- * kind are expressed or implied. The recipient agrees to determine
- * applicability of information provided. If this file has been
- * purchased on magnetic or optical media from Unicode, Inc., the
- * sole remedy for any claim will be exchange of defective media
- * within 90 days of receipt.
- * 
- * Limitations on Rights to Redistribute This Code
- * 
- * Unicode, Inc. hereby grants the right to freely use the information
- * supplied in this file in the creation of products supporting the
- * Unicode Standard, and to make copies of this file in any form
- * for internal or external distribution as long as this notice
- * remains attached.
- */
-
-
-Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
-derived from Python 2.4.2 sources available at
-http://www.python.org. Full license is here:
-
-  http://www.python.org/download/releases/2.4.2/license/
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from ICU (http://www.icu-project.org)
-The full license is available here: 
-  http://source.icu-project.org/repos/icu/icu/trunk/license.html
-
-/*
- * Copyright (C) 1999-2010, 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.
- */
-
-The following license applies to the Snowball stemmers:
-
-Copyright (c) 2001, Dr Martin Porter
-Copyright (c) 2002, Richard Boulton
-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 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 following license applies to the KStemmer:
-
-Copyright © 2003,
-Center for Intelligent Information Retrieval,
-University of Massachusetts, Amherst.
-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. The names "Center for Intelligent Information Retrieval" and
-"University of Massachusetts" must not be used to endorse or promote products
-derived from this software without prior written permission. To obtain
-permission, contact info@ciir.cs.umass.edu.
-
-THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
-
- - -
- -
-

Groovy - 2.4.0 -

- - -
Copyright 2003-2008 the original author or authors.
- - -
Copyright 2003-2008 the original author or authors.
-
-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.
-
-
-
-
- Apache Commons CLI
-Copyright 2001-2009 The Apache Software Foundation
-
-This product includes software developed by
-The Apache Software Foundation (http://www.apache.org/).
- 
- - - -
-                                 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.
-
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from unicode conversion examples available at
-http://www.unicode.org/Public/PROGRAMS/CVTUTF.  Here is the copyright
-from those sources:
-
-/*
- * Copyright 2001-2004 Unicode, Inc.
- * 
- * Disclaimer
- * 
- * This source code is provided as is by Unicode, Inc. No claims are
- * made as to fitness for any particular purpose. No warranties of any
- * kind are expressed or implied. The recipient agrees to determine
- * applicability of information provided. If this file has been
- * purchased on magnetic or optical media from Unicode, Inc., the
- * sole remedy for any claim will be exchange of defective media
- * within 90 days of receipt.
- * 
- * Limitations on Rights to Redistribute This Code
- * 
- * Unicode, Inc. hereby grants the right to freely use the information
- * supplied in this file in the creation of products supporting the
- * Unicode Standard, and to make copies of this file in any form
- * for internal or external distribution as long as this notice
- * remains attached.
- */
-
-
-Some code in src/java/org/apache/lucene/util/ArrayUtil.java was
-derived from Python 2.4.2 sources available at
-http://www.python.org. Full license is here:
-
-  http://www.python.org/download/releases/2.4.2/license/
-
-
-Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was
-derived from ICU (http://www.icu-project.org)
-The full license is available here: 
-  http://source.icu-project.org/repos/icu/icu/trunk/license.html
-
-/*
- * Copyright (C) 1999-2010, 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.
- */
-
-The following license applies to the Snowball stemmers:
-
-Copyright (c) 2001, Dr Martin Porter
-Copyright (c) 2002, Richard Boulton
-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 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 following license applies to the KStemmer:
-
-Copyright © 2003,
-Center for Intelligent Information Retrieval,
-University of Massachusetts, Amherst.
-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. The names "Center for Intelligent Information Retrieval" and
-"University of Massachusetts" must not be used to endorse or promote products
-derived from this software without prior written permission. To obtain
-permission, contact info@ciir.cs.umass.edu.
-
-THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER 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.
-
- - -
- -
- -

Common Licenses Used in This Product

- - - - -

End

- - \ No newline at end of file
- -

For instructions on how to obtain a copy of any source code - being made publicly available by Starship Technology related to - software used in this product you may send your request in - writing to:

- - Starship Technology LLC.
- OSS Management
- 7829 Montague Expressway
- Santa Clara, CA 95031
- USA
- -

The Starship Technology website www.dejacode.com also - contains information regarding Starship Technology's use of open - source. Starship Technology has created the www.dejacode.org to - serve as a portal for interaction with the software - community-at-large.

- -

This document contains additional information regarding - licenses, acknowledgments and required copyright notices for - open source packages used in this Starship Technology product. - This Starship Technology product contains the following open - source software components

- -